blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fdf49dbea17d68b224fed51fb1c0770301d77668 | 1ea0b8bc590172ea2be423467aa8765246121539 | /cpp/Mesh/general_mesh.h | 886ab625165481b4c059c377bae49ad0d2be39c6 | [
"MIT",
"Python-2.0"
] | permissive | rstebbing/common | 95bcac8a53bcc6a2f84a08db858383243943b0d5 | 10f22490325fd692c6704ea044b2ff8cbd59e6a0 | refs/heads/master | 2021-01-23T12:18:04.647102 | 2015-12-22T20:12:57 | 2015-12-22T20:20:06 | 25,832,864 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,967 | h | general_mesh.h | ////////////////////////////////////////////
// File: general_mesh.h //
// Copyright Richard Stebbing 2014. //
// Distributed under the MIT License. //
// (See accompany file LICENSE or copy at //
// http://opensource.org/licenses/MIT) //
////////////////////////////////////////////
#ifndef MESH_GENERAL_MESH_H
#define MESH_GENERAL_MESH_H
// Includes
#include "mesh.h"
// mesh
namespace mesh {
// GeneralMeshBase
class GeneralMeshBase : public FaceArray {
public:
template <typename T>
explicit GeneralMeshBase(T&& cell_array)
: FaceArray(std::forward<T>(cell_array)) {
Initialise();
}
inline int half_edge_face_index(int half_edge_index) const {
return _half_edge_face_indices[half_edge_index];
}
inline int half_edge_face_offset(int half_edge_index) const {
return _half_edge_offsets[half_edge_index];
}
inline int half_edge_index(int face_index, int edge_offset) const {
return _face_offsets[face_index] + edge_offset;
}
private:
void Initialise() {
int k = 0;
for (int i = 0; i < number_of_faces(); ++i) {
_face_offsets.push_back(k);
for (int j = 0; j < number_of_sides(i); ++j) {
_half_edge_face_indices.push_back(i);
_half_edge_offsets.push_back(j);
++k;
}
}
}
private:
std::vector<int> _half_edge_face_indices;
std::vector<int> _half_edge_offsets;
std::vector<int> _face_offsets;
};
// GeneralMesh
typedef Mesh<GeneralMeshBase> GeneralMesh;
// begin (GeneralMesh::EdgeIterator)
inline GeneralMesh::EdgeIterator& begin(
std::pair<GeneralMesh::EdgeIterator, GeneralMesh::EdgeIterator>& a) {
return a.first;
}
// end (GeneralMesh::EdgeIterator)
inline GeneralMesh::EdgeIterator& end(
std::pair<GeneralMesh::EdgeIterator, GeneralMesh::EdgeIterator>& a) {
return a.second;
}
} // namespace mesh
#endif // MESH_GENERAL_MESH_H
|
5a57cd84ced67e7b699a3e29ca725e97965b8bd3 | f779f1e1cf478eb64dfd069ae23db5fa442fbacb | /jni/EventLoop.hpp | 99b06d8b6a7adf4b2457b024577826f8481664d7 | [] | no_license | likeleon/RocketCommanderDroid | ebc3390898663ad7e0477e3b778ba8d13399dce4 | 892c6eed83df093bf5d9acb513441a3b631b0a64 | refs/heads/master | 2021-01-24T06:41:23.136241 | 2013-03-17T07:14:17 | 2013-03-17T07:14:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,115 | hpp | EventLoop.hpp | #ifndef _EVENT_LOOP_HPP_
#define _EVENT_LOOP_HPP_
#include "ActivityHandler.hpp"
#include "Types.hpp"
#include <android_native_app_glue.h>
#include "SensorHandler.hpp"
namespace likeleon
{
class EventLoop
{
public:
EventLoop(android_app* pApplication);
void run(ActivityHandler* pActivityHandler, SensorHandler* pSensorHandler);
protected:
void activate();
void deactivate();
void processAppEvent(int32_t pCommand);
int32_t handleInputEvent(AInputEvent* pEvent);
void processSensorEvent();
private:
static void callback_event(android_app* pApplication, int32_t pCommand);
static int32_t handle_input(android_app* pApplication, AInputEvent* event);
static void callback_sensor(android_app* pApplication, android_poll_source* pSource);
private:
friend class Sensor;
bool m_enabled;
bool m_quit;
ActivityHandler* m_pActivityHandler;
android_app* m_pApplication;
SensorHandler* m_pSensorHandler;
ASensorManager* m_pSensorManager;
ASensorEventQueue* m_pSensorEventQueue;
android_poll_source m_sensorPollSource;
};
}
#endif
|
a9a14e30b15104a9959d89e9d0b25ccd1dcf200c | de1eab3e33546f0762300141cb2db070a58bff5a | /Views/Cards/CardView.cpp | e65391407d5f19f347f09bab10409ed6cc13badc | [] | no_license | alexkarpovich/qt-china-tut | c12cea76d3eef9a530501b50b1cf6dc786558971 | 0fd7a94b4d2647e67f48c41106407dd440832339 | refs/heads/master | 2020-08-07T00:57:32.256246 | 2019-12-10T12:09:12 | 2019-12-10T12:09:12 | 213,229,350 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 458 | cpp | CardView.cpp | #include <QVBoxLayout>
#include <Views/TrainingView.h>
#include "CardAskView.h"
#include "CardView.h"
CardView::CardView(TrainingView *parent)
: CardAbstractView(parent)
{
QVBoxLayout *rootLayout = new QVBoxLayout;
if (getModel()->isNew()) {
setAskView();
getModel()->nextWord();
} else {
setCompleteView();
}
rootLayout->addWidget(container());
setFixedSize(350, 200);
setLayout(rootLayout);
}
|
c433f205ce9fe2b06fd3ef929d1163fff91aef0d | 85c91b680d74357b379204ecf7643ae1423f8d1e | /tags/rel_0_0_3/qedo/ComponentInstaller/DOMOutput.h | db965ef2c81521e0887494723dd8a8fd1c9b90f2 | [] | no_license | BackupTheBerlios/qedo-svn | 6fdec4ca613d24b99a20b138fb1488f1ae9a80a2 | 3679ffe8ac7c781483b012dbef70176e28fea174 | refs/heads/master | 2020-11-26T09:42:37.603285 | 2010-07-02T10:00:26 | 2010-07-02T10:00:26 | 40,806,890 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,754 | h | DOMOutput.h | /***************************************************************************/
/* Qedo - Qualitiy of Service Enabled Distributed Objects */
/* */
/* http://qedo.berlios.de/ */
/* */
/* Copyright (C) 2002 by the Qedo Team */
/* */
/* This library is free software; you can redistribute it and/or */
/* modify it under the terms of the GNU Lesser General Public */
/* License as published by the Free Software Foundation; either */
/* version 2.1 of the License, or (at your option) any later version. */
/* */
/* This library is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */
/* Lesser General Public License for more details. */
/* */
/* You should have received a copy of the GNU Lesser General Public */
/* License along with this library; if not, write to the Free Software */
/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/***************************************************************************/
#ifndef __DOM_OUTPUT_H__
#define __DOM_OUTPUT_H__
#include <xercesc/util/PlatformUtils.hpp>
#include <xercesc/util/XMLString.hpp>
#include <xercesc/util/XMLUniDefs.hpp>
#include <xercesc/framework/XMLFormatter.hpp>
#include <xercesc/dom/DOM.hpp>
//#include <stdlib.h>
#include <iostream>
// ---------------------------------------------------------------------------
// output operators
// ---------------------------------------------------------------------------
std::ostream& operator<<(std::ostream& target, const DOMString& toWrite);
XMLFormatter& operator<< (XMLFormatter& strm, const DOMString& s);
//ostream& operator<<(ostream& target, DOM_Node& toWrite);
/**
*
*/
class DOMOutput : public XMLFormatTarget
{
public:
std::ostream& target_;
XMLCh* encodingName_;
XMLFormatter* formatter_;
XMLFormatter::UnRepFlags unRepFlags_;
public:
DOMOutput (std::ostream&);
~DOMOutput();
// -----------------------------------------------------------------------
// Implementations of the format target interface
// -----------------------------------------------------------------------
void writeChars(const XMLByte* const toWrite,
const unsigned int count,
XMLFormatter * const formatter)
{
// Surprisingly, Solaris was the only platform on which
// required the char* cast to print out the string correctly.
// Without the cast, it was printing the pointer value in hex.
// Quite annoying, considering every other platform printed
// the string with the explicit cast to char* below.
target_.write((char *) toWrite, (int) count);
};
//
DOMOutput& operator<<( DOM_Node& toWrite );
private:
// -----------------------------------------------------------------------
// Unimplemented methods.
// -----------------------------------------------------------------------
DOMOutput(const DOMOutput& other);
void operator=(const DOMOutput& rhs);
};
/**
*
*/
class XMLInitializer
{
public:
XMLInitializer();
~XMLInitializer();
};
#endif |
9cb5e445527b662ba6a77f4bdf1239ccd6189759 | 733335a50de426f8d37594f62bc8363fba71108b | /world_control/transport.hpp | e5807bf42ecd9ab8883da3a080dce06efb0831f7 | [] | no_license | SPECSDev/iqr-gazebo | 77b0fa5747fd1c587af119a94435b7ddab07d390 | ab95232fa0cafd356ac56e11bec0608fa35ed903 | refs/heads/master | 2016-09-10T23:00:59.243540 | 2015-03-04T15:12:46 | 2015-03-04T15:12:46 | 32,143,625 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,511 | hpp | transport.hpp | #ifndef TRANSPORT_H
#define TRANSPORT_H
#include <QObject>
#include <QTimer>
#include <QVector>
#include <QList>
#include <QMutex>
#include <boost/bind.hpp>
#include <boost/program_options.hpp>
#include "gazebo/transport/transport.hh"
#include "gazebo/msgs/msgs.hh"
#include "gazebo/msgs/vector3d.pb.h"
#include "gazebo/gui/GuiIface.hh"
namespace gazebo
{
typedef struct side_t Side;
struct side_t{
float pos_x;
float pos_y;
float prob;
float radius;
};
enum State {AVAILABLE, GOOD, BAD};
typedef struct resource_t Resource;
struct resource_t{
int id;
State state;
int age;
bool grasped;
};
const int MAX_RESOURCES=16;
const math::Pose DEFAULT_POSE = math::Pose(0,0,0,0,0,0);
const int NAME_KEY = 19299;
const int MAX_AGE =50;
const int TURN_AGE =30;
const int N_SIDES = 6;
const float LOCATIONS_SIDE[N_SIDES][2] =
{{-3,3},
{0,7.5},
{-6,6},
{7.5,4},
{10.5,10.5},
{12,4.5}};
const float PROBABILITY_SIDE [2] = {0.15, 0.1};
class Transport : public QObject
{
Q_OBJECT
public:
Transport();
~Transport();
public slots:
void reset();
void start();
void stop();
void close();
private:
transport::NodePtr node;
transport::SubscriberPtr resourceSubscriber;
transport::PublisherPtr createPub;
transport::PublisherPtr deletePub;
transport::PublisherPtr modelPub;
transport::PublisherPtr controlPub;
transport::PublisherPtr visualPub;
msgs::Request deleteMsg;
msgs::Factory createMsg;
sdf::ElementPtr modelElem;
boost::shared_ptr<sdf::SDF> sdf;
void setPoseResource(int modelNumber, math::Pose pose);
void resetResource(int modelNumber);
void createResource(math::Pose pose);
void recycleResource(int index, math::Pose pose);
void setColorResource(int index, std::string color);
void initResourceSides();
int findAvailableResource();
std::string indexToName(int index);
int nameToIndex(int name);
math::Pose addNoisePose(math::Pose pose, float radius);
void OnScore(ConstVector3dPtr &msg);
QTimer *timer;
QMutex *mutex;
QList<Side> resourceSides; // x,y,prob,spread
QList<Resource> resources;
private slots:
void spawnResource();
signals:
void plusPointA();
void plusPointB();
void minusPointA();
void minusPointB();
};
}
#endif
|
56dbc932fbcec35a2008136e7b9abc211efa0f41 | 334558bf31b6a8fd3caaf09c24898ff331c7e2da | /GenieWindow/plugins/GeniePlugin_MapV2/powerline/plc_appengine/plcmainpipe/plcapi/plcdriver.cpp | 807c448a8064227d8ec78860b29d19441b2cb90e | [] | no_license | roygaogit/Bigit_Genie | e38bac558e81d9966ec6efbdeef0a7e2592156a7 | 936a56154a5f933b1e9c049ee044d76ff1d6d4db | refs/heads/master | 2020-03-31T04:20:04.177461 | 2013-12-09T03:38:15 | 2013-12-09T03:38:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,980 | cpp | plcdriver.cpp | #include "plcdriver.h"
#include <QLibrary>
PLCDriver::PLCDriver(QLibrary *libDriver):
m_libDriver(libDriver)
{
ResolveSymbols();
}
PLCDriver::~PLCDriver()
{
if(m_libDriver != NULL){
//m_libDriver->unload();
delete m_libDriver;
}
}
void PLCDriver::ResolveSymbols()
{
#ifndef DUMP_LAYER2_API
PLCDiscovery = (PLCDiscovery_t) m_libDriver->resolve("PLCDiscovery");
PLCGetLocalDevice = (PLCGetLocalDevice_t) m_libDriver->resolve("PLCGetLocalDevice");
PLCGetDeviceModelName = (PLCGetDeviceModelName_t) m_libDriver->resolve("PLCGetDeviceModelName");
PLCGetDeviceFWVersion = (PLCGetDeviceFWVersion_t) m_libDriver->resolve("PLCGetDeviceFWVersion");
PLCGetDeviceName = (PLCGetDeviceName_t) m_libDriver->resolve("PLCGetDeviceName");
PLCGetNetworkType = (PLCGetNetworkType_t) m_libDriver->resolve("PLCGetNetworkType");
PLCGetDeviceLedStatus = (PLCGetDeviceLedStatus_t) m_libDriver->resolve("PLCGetDeviceLedStatus");
PLCGetDeviceLinkRate = (PLCGetDeviceLinkRate_t) m_libDriver->resolve("PLCGetDeviceLinkRate");
PLCGetDeviceQoSStatus = (PLCGetDeviceQoSStatus_t) m_libDriver->resolve("PLCGetDeviceQoSStatus");
PLCGetDeviceForwardtable = (PLCGetDeviceForwardtable_t) m_libDriver->resolve("PLCGetDeviceForwardtable");
PLCGetDeviceFWUpgradeVersion = (PLCGetDeviceFWUpgradeVersion_t) m_libDriver->resolve("PLCGetDeviceFWUpgradeVersion");
PLCGetDeviceFWUpgradeRegion = (PLCGetDeviceFWUpgradeRegion_t) m_libDriver->resolve("PLCGetDeviceFWUpgradeRegion");
PLCSetDeviceName = (PLCSetDeviceName_t) m_libDriver->resolve("PLCSetDeviceName");
PLCSetDeviceLedStatus = (PLCSetDeviceLedStatus_t) m_libDriver->resolve("PLCSetDeviceLedStatus");
PLCSetDeviceSecurityKey = (PLCSetDeviceSecurityKey_t) m_libDriver->resolve("PLCSetDeviceSecurityKey");
PLCSetDeviceQoS = (PLCSetDeviceQoS_t) m_libDriver->resolve("PLCSetDeviceQoS");
PLCSetDeviceResetDefault = (PLCSetDeviceResetDefault_t) m_libDriver->resolve("PLCSetDeviceResetDefault");
PLCCheckDevicePassword = (PLCCheckDevicePassword_t) m_libDriver->resolve("PLCCheckDevicePassword");
#else
PLCDiscovery_f = (PLCDiscovery_t) m_libDriver->resolve("PLCDiscovery");
PLCGetLocalDevice_f = (PLCGetLocalDevice_t) m_libDriver->resolve("PLCGetLocalDevice");
PLCGetDeviceModelName_f = (PLCGetDeviceModelName_t) m_libDriver->resolve("PLCGetDeviceModelName");
PLCGetDeviceFWVersion_f = (PLCGetDeviceFWVersion_t) m_libDriver->resolve("PLCGetDeviceFWVersion");
PLCGetDeviceName_f = (PLCGetDeviceName_t) m_libDriver->resolve("PLCGetDeviceName");
PLCGetNetworkType_f = (PLCGetNetworkType_t) m_libDriver->resolve("PLCGetNetworkType");
PLCGetDeviceLedStatus_f = (PLCGetDeviceLedStatus_t) m_libDriver->resolve("PLCGetDeviceLedStatus");
PLCGetDeviceLinkRate_f = (PLCGetDeviceLinkRate_t) m_libDriver->resolve("PLCGetDeviceLinkRate");
PLCGetDeviceQoSStatus_f = (PLCGetDeviceQoSStatus_t) m_libDriver->resolve("PLCGetDeviceQoSStatus");
PLCGetDeviceForwardtable_f = (PLCGetDeviceForwardtable_t) m_libDriver->resolve("PLCGetDeviceForwardtable");
PLCGetDeviceFWUpgradeVersion_f = (PLCGetDeviceFWUpgradeVersion_t) m_libDriver->resolve("PLCGetDeviceFWUpgradeVersion");
PLCGetDeviceFWUpgradeRegion_f = (PLCGetDeviceFWUpgradeRegion_t) m_libDriver->resolve("PLCGetDeviceFWUpgradeRegion");
PLCSetDeviceName_f = (PLCSetDeviceName_t) m_libDriver->resolve("PLCSetDeviceName");
PLCSetDeviceLedStatus_f = (PLCSetDeviceLedStatus_t) m_libDriver->resolve("PLCSetDeviceLedStatus");
PLCSetDeviceSecurityKey_f = (PLCSetDeviceSecurityKey_t) m_libDriver->resolve("PLCSetDeviceSecurityKey");
PLCSetDeviceQoS_f = (PLCSetDeviceQoS_t) m_libDriver->resolve("PLCSetDeviceQoS");
PLCSetDeviceResetDefault_f = (PLCSetDeviceResetDefault_t) m_libDriver->resolve("PLCSetDeviceResetDefault");
PLCCheckDevicePassword_f = (PLCCheckDevicePassword_t) m_libDriver->resolve("PLCCheckDevicePassword");
#endif
}
QString PLCDriver::GetLibraryPathName() const
{
if(m_libDriver != NULL){
return m_libDriver->fileName();
}else{
return QString();
}
}
#ifdef DUMP_LAYER2_API
#include <QTextStream>
#include <QFile>
#include <QDir>
#include <QDesktopServices>
#include <QDateTime>
#include "helperroutines.h"
void PLCDriver::dumpMsg(const QString &msg) const
{
const QString dumpFileName = "plc_layer2api_dump.txt";
const QString netgearGenieDirName = "NETGEARGenie";
const QString strAppDataDir = QStandardPaths::writableLocation(QStandardPaths::DataLocation);
if(!QDir(strAppDataDir + QDir::separator() + netgearGenieDirName).exists()){
QDir appDataDir(strAppDataDir);
if(!appDataDir.mkdir(netgearGenieDirName)){
return;
}
}
//QFile file(strAppDataDir + QDir::separator() + netgearGenieDirName + QDir::separator() + dumpFileName);
QFile file(strAppDataDir + QDir::separator() + dumpFileName);
if(file.size() > 200*1024){//200KB
file.resize(0);
}
file.open(QFile::WriteOnly | QFile::Text | QFile::Append);
QTextStream dumpStream(&file);
dumpStream << "[" + QDateTime::currentDateTime().toString("dd.MM.yyyy-hh:mm:ss.zzz")+ "]" + " <driver:" + GetLibraryPathName() + "> " + msg << "\r\n";
dumpStream.flush();
file.close();
}
BOOL PLCDriver::PLCDiscovery(int *count, PLC_DiscoveryDeviceList *devList)
{
BOOL retCode = PLCDiscovery_f(count, devList);
QString tmp;
QString msg = "PLCDiscovery return code = ";
msg += tmp.setNum(retCode);
if(retCode){
msg += ",count = ";
msg += tmp.setNum(*count);
msg += ",Device List = [";
for(int idx = 0 ; idx < *count ; ++idx){
msg += PLCDeviceMacAddr2String(devList->PLC_DeviceMACAddr[idx]);
if(idx != (*count - 1)){
msg += ",";
}
}
msg += "].";
}else{
msg += ".";
}
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCGetLocalDevice(PLC_MACAddress mac)
{
BOOL retCode = PLCGetLocalDevice_f(mac);
QString tmp;
QString msg = "PLCGetLocalDevice return code = ";
msg += tmp.setNum(retCode);
if(retCode){
msg += ", local device mac = ";
msg += PLCDeviceMacAddr2String(mac);
}
msg += ".";
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCGetDeviceModelName(PLC_MACAddress mac, char *model)
{
BOOL retCode = PLCGetDeviceModelName_f(mac, model);
QString tmp;
QString msg = "PLCGetDeviceModelName return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
if(retCode){
msg += ", Device Model Name = ";
msg += model;
}
msg += ".";
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCGetDeviceFWVersion(PLC_MACAddress mac, char *Fwversion)
{
BOOL retCode = PLCGetDeviceFWVersion_f(mac, Fwversion);
QString tmp;
QString msg = "PLCGetDeviceFWVersion return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
if(retCode){
msg += ", Firmware Version = ";
msg += Fwversion;
}
msg += ".";
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCGetDeviceName(PLC_MACAddress mac, char *devName)
{
BOOL retCode = PLCGetDeviceName_f(mac, devName);
QString tmp;
QString msg = "PLCGetDeviceName return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
if(retCode){
msg += ", Device Name = ";
msg += devName;
}
msg += ".";
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCGetNetworkType(PLC_MACAddress mac, char *netType)
{
BOOL retCode = PLCGetNetworkType_f(mac, netType);
QString tmp;
QString msg = "PLCGetNetworkType return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
if(retCode){
msg += ", Network Type = ";
msg += netType;
}
msg += ".";
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCGetDeviceLedStatus(PLC_MACAddress mac, int *ledStatus)
{
BOOL retCode = PLCGetDeviceLedStatus_f(mac, ledStatus);
QString tmp;
QString msg = "PLCGetDeviceLedStatus return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
if(retCode){
msg += ", LED Status = ";
msg += tmp.setNum(*ledStatus);
}
msg += ".";
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCGetDeviceLinkRate(PLC_MACAddress mac, int *count, PLC_DeviceLinkRateTable *linkRateTable)
{
BOOL retCode = PLCGetDeviceLinkRate_f(mac, count, linkRateTable);
QString tmp;
QString msg = "PLCGetDeviceLinkRate return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
if(retCode){
msg += ",count = ";
msg += tmp.setNum(*count);
msg += ",Link Rate Table = [";
for(int idx = 0 ; idx < *count ; ++idx){
msg += "(mac:";
msg += PLCDeviceMacAddr2String(linkRateTable->PLC_DeviceMACAddr[idx]);
msg += " Rx:";
msg += tmp.setNum(linkRateTable->PLC_DeviceRXRate[idx]);
msg += " Tx:";
msg += tmp.setNum(linkRateTable->PLC_DeviceTXRate[idx]);
msg += ")";
if(idx != (*count - 1)){
msg += ",";
}
}
msg += "].";
}else{
msg += ".";
}
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCGetDeviceQoSStatus(PLC_MACAddress mac, PLC_DeviceQoSStatus *qosStatus)
{
return PLCGetDeviceQoSStatus_f(mac, qosStatus);
}
BOOL PLCDriver::PLCGetDeviceForwardtable(PLC_MACAddress mac, int *count, PLC_DeviceForwardTableList *forwardTable)
{
BOOL retCode = PLCGetDeviceForwardtable_f(mac, count, forwardTable);
QString tmp;
QString msg = "PLCGetDeviceForwardtable return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
if(retCode){
msg += ",count = ";
msg += tmp.setNum(*count);
msg += ",Forward Table = [";
for(int idx = 0 ; idx < *count ; ++idx){
msg += PLCDeviceMacAddr2String(forwardTable->PLC_DeviceForwardMACAddr[idx]);
if(idx != (*count - 1)){
msg += ",";
}
}
msg += "].";
}else{
msg += ".";
}
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCGetDeviceFWUpgradeVersion(PLC_MACAddress mac, char* FwUpVersion)
{
BOOL retCode = PLCGetDeviceFWUpgradeVersion_f(mac, FwUpVersion);
QString tmp;
QString msg = "PLCGetDeviceFWUpgradeVersion return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
if(retCode){
msg += ", Firmware Upgrade Version = ";
msg += FwUpVersion;
}
msg += ".";
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCGetDeviceFWUpgradeRegion(PLC_MACAddress mac, char* FwUpRegion)
{
BOOL retCode = PLCGetDeviceFWUpgradeRegion_f(mac, FwUpRegion);
QString tmp;
QString msg = "PLCGetDeviceFWUpgradeRegion return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
if(retCode){
msg += ", Firmware Upgrade Region = ";
msg += FwUpRegion;
}
msg += ".";
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCSetDeviceName(PLC_MACAddress mac, char devName[])
{
BOOL retCode = PLCSetDeviceName_f(mac, devName);
QString tmp;
QString msg = "PLCSetDeviceName return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
msg += ", Device Name = ";
msg += devName;
msg += ".";
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCSetDeviceLedStatus(PLC_MACAddress mac, int ledStatus)
{
BOOL retCode = PLCSetDeviceLedStatus_f(mac, ledStatus);
QString tmp;
QString msg = "PLCSetDeviceLedStatus return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
msg += ", LED Status = ";
msg += tmp.setNum(ledStatus);
msg += ".";
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCSetDeviceSecurityKey( PLC_MACAddress mac, char key[], char pwd[])
{
BOOL retCode = PLCSetDeviceSecurityKey_f(mac, key, pwd);
QString tmp;
QString msg = "PLCSetDeviceSecurityKey return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
msg += ", Key = ";
msg += key;
msg += ", Password = ";
msg += pwd;
msg += ".";
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCSetDeviceQoS(PLC_MACAddress mac, PLC_DeviceQoSStatus* qos)
{
return PLCSetDeviceQoS(mac, qos);
}
BOOL PLCDriver::PLCSetDeviceResetDefault(PLC_MACAddress mac)
{
BOOL retCode = PLCSetDeviceResetDefault_f(mac);
QString tmp;
QString msg = "PLCSetDeviceResetDefault return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
msg += ".";
dumpMsg(msg);
return retCode;
}
BOOL PLCDriver::PLCCheckDevicePassword(PLC_MACAddress mac, char pwd[])
{
if(!PLCCheckDevicePassword_f){
dumpMsg("PLCCheckDevicePassword not implemented!!!");
return PLC_GET_FAIL;
}
BOOL retCode = PLCCheckDevicePassword_f(mac, pwd);
QString tmp;
QString msg = "PLCCheckDevicePassword return code = ";
msg += tmp.setNum(retCode);
msg += ",target dev mac = ";
msg += PLCDeviceMacAddr2String(mac);
msg += ",DAK = ";
msg += pwd;
msg += ".";
dumpMsg(msg);
return retCode;
}
#endif
|
cc7e0a5c57fd97ad34a56ec942bb1d754838bd5c | b0f634107d51bd503e87476cd73b1471883adbd8 | /tankgame/graphicsEngine.hpp | 7da5cd43f6d38b933e929319fdbf38ce5ae2d199 | [] | no_license | eminayar/tank-game | a3529e81e593449318dd9d05fada328de138e0f0 | b0ab32f03e0371774d51e536540e926e7d736f63 | refs/heads/master | 2020-11-30T21:55:09.391488 | 2019-12-30T08:59:27 | 2019-12-30T08:59:27 | 230,489,022 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,733 | hpp | graphicsEngine.hpp | #ifndef graphicsEngine_hpp
#define graphicsEngine_hpp
#define GL_SILENCE_DEPRECATION
#define AD_PORT 12345
#define AD_RESP_PORT 12347
#define GAME_PORT 12346
#define PLAYER_PORT 12348
#include <GLUT/GLUT.h>
#include "gameState.h"
#include <chrono>
#include <fstream>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <ifaddrs.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/select.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <ctime>
#include <thread>
#include <chrono>
#include <unistd.h>
#include <netdb.h>
#include "physicsEngine.hpp"
void read_map();
void graphics_engine_init(int *argcp, char **argv);
void render();
void reshape(int w, int h);
void keyboard(unsigned char key, int x, int y);
void keyboard_up(unsigned char key, int x, int y);
void special_key(int key, int x, int y);
void special_key_up(int key, int x, int y);
void MouseMotion(int x,int y);
static int WINDOW_WIDTH=2000;
static int WINDOW_HEIGHT=2000;
static int GAME_WINDOW_LEN=500;
static double TANK_SPEED=0.4;
static double BULLET_SPEED=2;
static double SHIFT_WIDTH=0;
static double SHIFT_HEIGHT=0;
static double TANK_SIZE=0.06;
static double BULLET_SIZE=0.02;
static bool w_pressed=false;
static bool a_pressed=false;
static bool s_pressed=false;
static bool d_pressed=false;
static bool space_pressed=false;
static unsigned long last_frame_nano=0;
static unsigned long last_state_nano=0;
static unsigned long last_bullet_nano=0;
extern Player me;
extern bool new_data_available;
extern std::string server_ip;
extern std::string my_ip;
struct mycolor{
double r,g,b;
mycolor(double _r=0, double _g=0, double _b=0){
r=_r;
g=_g;
b=_b;
}
};
#endif /* graphicsEngine_hpp */
|
bd58d94a3c4865ec613bc1d39f21d61cf2ed3103 | b49a1ebd1a26b85e9a7fa1a4e56f5b6c241d3b64 | /codeforces/codeforces7.cpp | 4aeb4241f1f97246b5bd2654ed155b771e73d0af | [] | no_license | sahilnare/acm-icpc-prob | d00e3fe95c4d8e1b3268fa2995f1c0108f74f3fa | f70e82e1e86cd424ebc94e6110b7c884cc76f8c9 | refs/heads/master | 2020-12-03T18:14:04.504508 | 2020-01-02T17:09:03 | 2020-01-02T17:09:03 | 231,425,375 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 281 | cpp | codeforces7.cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
long int first;
cin >> first;
if(first % 2 == 0) {
cout << "Mahmoud";
}
else {
cout << "Ehab";
}
return 0;
}
|
76532e497968a8307b812c27dc207aae6bab1b3a | 6d427c7b04cb92cee6cc8d37df07cf8b129fdada | /10000 - 10999/10842.cpp | 934227122799e198a994ab331b413d143d623ef4 | [] | no_license | FForhad/Online-Judge-Ex.-Uva-Solutions | 3c5851d72614274cafac644bcdbc9e065fd5d8d8 | b7fdf62d274a80333dec260f5a420f9d6efdbdaf | refs/heads/master | 2023-03-20T23:47:30.116053 | 2021-03-10T02:07:49 | 2021-03-10T02:07:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,467 | cpp | 10842.cpp | #pragma comment(linker, "/stack:200000000")
#include<bits/stdc++.h>
using namespace std;
#define inf (1e8+9)
#define mxs 102
#define pii pair < int , int >
vector < pii > graph [ mxs ];
priority_queue < pii > pq;
int n , m , a , b, c , t , cases , ans , i , j , sz;
bool visited [ mxs ];
int cost [ mxs ];
void mst();
int main()
{
//ios_base::sync_with_stdio(false);
//cin.tie(NULL);
scanf("%d",&t);
while ( t-- )
{
scanf("%d%d",&n,&m);
for ( i = 0; i <= n; i++ )
{
visited [ i ] = cost [ i ] = 0;
graph[ i ].clear();
}
while ( m-- )
{
scanf("%d%d%d",&a,&b,&c);
graph[ a ].push_back ( { b , c } );
graph[ b ].push_back ( { a , c } );
}
mst();
printf("Case #%d: %d\n",++cases,ans);
}
return 0;
}
void mst()
{
pq.push( { 0 , 0 } );
cost [ 0 ] = 0;
while ( !pq.empty() )
{
a = pq.top().second;
pq.pop();
if ( visited [ a ] )continue;
visited [ a ] = 1;
sz = graph [ a ].size();
for ( i = 0; i != sz; i++ )
{
b = graph [ a ] [ i ].first;
c = graph [ a ] [ i ].second;
if ( !visited [ b ] && cost [ b ] < c )
{
pq.push( { c , b } );
cost [ b ] = c;
}
}
}
ans = INT_MAX;
for ( i = 1; i < n; i++ )ans = min( ans, cost [ i ] );
}
|
4c564afc4f1fdfc9bba5d99dcb46cf6b66599af5 | bb84ce17ebf8c61739776b70370206e23e60a9a8 | /optimization/bilbo's.forest/main.cpp | 75dbf38319a8acb5777657369b036a551d6420c3 | [
"MIT"
] | permissive | kvirund/codingame | af28a29c7783a95b93bae3345ae2b2f3da2d5af4 | 1676a765f6e5e6ddc8fc22db4cafbc3996b520eb | refs/heads/master | 2020-04-21T20:06:17.590641 | 2016-02-18T19:53:53 | 2016-02-18T19:53:53 | 26,226,958 | 3 | 3 | null | 2016-02-18T19:53:24 | 2014-11-05T15:54:23 | C++ | UTF-8 | C++ | false | false | 4,923 | cpp | main.cpp | /**
* \author Anton Gorev aka Veei
* \date 2015-08-09
*/
#include <assert.h>
#include <iostream>
#include <string>
#include <vector>
#include <sstream>
#include <algorithm>
#include <map>
using namespace std;
const int TAPE_LENGTH = 30;
const int LETTERS_COUNT = ('Z' - 'A' + 1) + 1; // letters count plus ' '
class debug
{
public:
static void log(const std::string& message)
{
if (s_on)
{
std::cerr << message << std::endl;
}
}
private:
static bool s_on;
};
bool debug::s_on = false;
template <int MODULUS>
class CNumber
{
public:
typedef CNumber<MODULUS> type;
CNumber(): m_number(0) {}
CNumber(const int number): m_number((number % MODULUS + MODULUS) % MODULUS) {}
type operator+(const type& right) const { return type(m_number + right.m_number); }
type operator-(const type& right) const { return type(m_number - right.m_number); }
bool operator<(const type& right) const { return m_number < right.m_number; }
operator int() const { return m_number; }
int shortest(const type& right) const
{
// 1, 20 mod 30
// 20 - 1 = 19
// 1 - 20 = -19 mod 30 = 11
if (*this < right)
{
return shortest_helper(right);
}
return -right.shortest_helper(*this);
}
private:
int shortest_helper(const type& right) const
{
type p = right - *this;
type n = *this - right;
if (p < n)
{
return int(p);
}
return -int(n);
}
int m_number;
};
class CTape
{
public:
CTape(const int tape_lentgh = TAPE_LENGTH): m_tape(tape_lentgh)
{
m_l2t[' '] = 0;
for (char i = 'A'; i <= 'Z'; ++i)
{
m_l2t[i] = i - 'A' + 1;
}
for (l2t_t::const_iterator i = m_l2t.begin(); i != m_l2t.end(); ++i)
{
std::stringstream ss;
ss << i->first << " -> " << i->second;
debug::log(ss.str());
}
}
std::string optimize(const std::string& algorithm)
{
// TODO: Implement me
return algorithm;
}
std::string produce(const std::string& phrase)
{
std::string result;
for (std::string::size_type i = 0; i < phrase.size(); ++i)
{
result += produce_letter(phrase[i]);
}
result = optimize(result);
return result;
}
private:
typedef std::map<char, int> l2t_t;
typedef std::vector<CNumber<LETTERS_COUNT> > tape_t;
static std::string repeat(char what, int count)
{
std::string result;
while (count--)
{
result += what;
}
return result;
}
static std::string get_algorithm(int move, int change)
{
std::stringstream r;
r << "getting algorithm with " << move << " movings and " << change << " changes";
debug::log(r.str());
char dir = 0 < move ? '>' : '<';
char cdir = 0 < change ? '+' : '-';
return repeat(dir, std::abs(move)) + repeat(cdir, std::abs(change)) + '.';
}
std::string produce_letter(const char letter)
{
debug::log(std::string("producing letter ") + letter);
std::string result;
int min_pos = -1;
int min_dist = TAPE_LENGTH + LETTERS_COUNT; // Above in any way
int min_move, min_change;
for (tape_t::size_type i = 0; i < m_tape.size(); ++i)
{
int dist_move = m_pos.shortest(i);
int dist_change = m_tape[i].shortest(m_l2t[letter]);
int dist_res = std::abs(dist_move) + std::abs(dist_change);
if (min_dist > dist_res)
{
min_dist = dist_res;
min_move = dist_move;
min_change = dist_change;
min_pos = i;
}
}
if (-1 == min_pos)
{
assert("broken logic");
}
result = get_algorithm(min_move, min_change);
m_tape[min_pos] = m_l2t[letter]; // change tape
m_pos = min_pos; // move pointer
debug::log("produced result: " + result);
return result;
}
tape_t m_tape;
CNumber<TAPE_LENGTH> m_pos;
l2t_t m_l2t;
};
int main()
{
string magicPhrase;
getline(cin, magicPhrase);
CTape tape;
cout << tape.produce(magicPhrase) << endl;
return 0;
}
|
78874e9a42afb2f2e1030fd7d4282e0aa6e1a9d5 | 5ecda5c1ee27722360a10f8b171464218edd97e5 | /tut2/Q3.cpp | 40621b4a8afdbe47834ac9bddd2a4b61111ff1ba | [] | no_license | RDPerera/C-LecPrac | 78a7bb0cab757b1be54c2c49f5c2aca35b836f65 | 5f4264d92a8792b47116b50d22fba8df32009590 | refs/heads/master | 2020-09-28T14:27:03.347735 | 2020-03-29T08:04:11 | 2020-03-29T08:04:11 | 226,796,277 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,407 | cpp | Q3.cpp | #include<iostream>
using namespace std;
class ThreeNos
{
private :
int n1;
int n2;
int n3;
public:
ThreeNos(); //initialize numbers to 0
ThreeNos(int x, int y, int z); //initialize numbers to x,y,z
int getMax(int x, int y, int z); //return the maximum of the three numbers
int getMin(int x, int y, int z); // return the minimum of the three numbers
int getMin();
int getMax();
int sum();
float average();
};
ThreeNos ::ThreeNos()
{
n1 = 0;
n2 = 0;
n3 = 0;
}
ThreeNos ::ThreeNos(int x, int y, int z)
{
n1 = x;
n2 = y;
n3 = z;
}
int ThreeNos ::getMax(int x, int y, int z)
{
return x > y && x > y ? x : y > z ? y : z;
}
int ThreeNos ::getMax()
{
return n1 > n2 && n1 > n3 ? n1 : n2 > n3 ? n2 : n3;
}
int ThreeNos ::getMin(int x, int y, int z)
{
return x < y && x < z ? x : y < z ? y : z;
}
int ThreeNos ::getMin()
{
return n1 < n2 && n1 < n3 ? n1 : n2 < n3 ? n2 : n3;
}
int ThreeNos ::sum()
{
return n1 + n2 + n3;
}
float ThreeNos ::average()
{
return sum() / 3;
}
int main()
{
ThreeNos t1(5,9,7);
cout << "SUM = " << t1.sum() << " AVG = " << t1.average() << endl;
cout << "MAX = "<< t1.getMax() << " MIN = "<< t1.getMin() << endl;
cout << "MAX = "<< t1.getMax(2,3,4)<< " MIN = " << t1.getMin(2,3,4) << endl;
return 0;
} |
6281c7361ca4b35b0f39b5a5f63f633834eaa4a4 | 9eb4f472070b39db09e7088b173edb24d2af4652 | /Hadrons/A2AVectors.hpp | 7cbd19efe4f66d487716f669878bcf811ed7b977 | [] | no_license | guelpers/Hadrons | 55dd3b2e5e87605e459f5066f47238ab452aeae0 | 735e5c0f10bbfaaf52e2efc5ead1010f5ac50bc6 | refs/heads/master | 2023-02-23T12:13:29.085574 | 2020-03-27T17:53:07 | 2020-03-27T17:53:07 | 252,408,759 | 0 | 0 | null | 2020-04-02T09:17:12 | 2020-04-02T09:17:11 | null | UTF-8 | C++ | false | false | 12,137 | hpp | A2AVectors.hpp | /*************************************************************************************
Grid physics library, www.github.com/paboyle/Grid
Source file: Hadrons/A2AVectors.hpp
Copyright (C) 2015-2019
Author: Antonin Portelli <antonin.portelli@me.com>
Author: fionnoh <fionnoh@gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
See the full license in the file "LICENSE" in the top level distribution directory
*************************************************************************************/
/* END LEGAL */
#ifndef A2A_Vectors_hpp_
#define A2A_Vectors_hpp_
#include <Hadrons/Global.hpp>
#include <Hadrons/Environment.hpp>
#include <Hadrons/Solver.hpp>
BEGIN_HADRONS_NAMESPACE
/******************************************************************************
* Class to generate V & W all-to-all vectors *
******************************************************************************/
template <typename FImpl>
class A2AVectorsSchurDiagTwo
{
public:
FERM_TYPE_ALIASES(FImpl,);
SOLVER_TYPE_ALIASES(FImpl,);
public:
A2AVectorsSchurDiagTwo(FMat &action, Solver &solver);
virtual ~A2AVectorsSchurDiagTwo(void) = default;
void makeLowModeV(FermionField &vout,
const FermionField &evec, const Real &eval);
void makeLowModeV5D(FermionField &vout_4d, FermionField &vout_5d,
const FermionField &evec, const Real &eval);
void makeLowModeW(FermionField &wout,
const FermionField &evec, const Real &eval);
void makeLowModeW5D(FermionField &wout_4d, FermionField &wout_5d,
const FermionField &evec, const Real &eval);
void makeHighModeV(FermionField &vout, const FermionField &noise);
void makeHighModeV5D(FermionField &vout_4d, FermionField &vout_5d,
const FermionField &noise_5d);
void makeHighModeW(FermionField &wout, const FermionField &noise);
void makeHighModeW5D(FermionField &vout_5d, FermionField &wout_5d,
const FermionField &noise_5d);
private:
FMat &action_;
Solver &solver_;
GridBase *fGrid_, *frbGrid_, *gGrid_;
bool is5d_;
FermionField src_o_, sol_e_, sol_o_, tmp_, tmp5_;
SchurDiagTwoOperator<FMat, FermionField> op_;
};
/******************************************************************************
* Methods for V & W all-to-all vectors I/O *
******************************************************************************/
class A2AVectorsIo
{
public:
struct Record: Serializable
{
GRID_SERIALIZABLE_CLASS_MEMBERS(Record,
unsigned int, index);
Record(void): index(0) {}
};
public:
template <typename Field>
static void write(const std::string fileStem, std::vector<Field> &vec,
const bool multiFile, const int trajectory = -1);
template <typename Field>
static void read(std::vector<Field> &vec, const std::string fileStem,
const bool multiFile, const int trajectory = -1);
private:
static inline std::string vecFilename(const std::string stem, const int traj,
const bool multiFile)
{
std::string t = (traj < 0) ? "" : ("." + std::to_string(traj));
if (multiFile)
{
return stem + t;
}
else
{
return stem + t + ".bin";
}
}
};
/******************************************************************************
* A2AVectorsSchurDiagTwo template implementation *
******************************************************************************/
template <typename FImpl>
A2AVectorsSchurDiagTwo<FImpl>::A2AVectorsSchurDiagTwo(FMat &action, Solver &solver)
: action_(action)
, solver_(solver)
, fGrid_(action_.FermionGrid())
, frbGrid_(action_.FermionRedBlackGrid())
, gGrid_(action_.GaugeGrid())
, src_o_(frbGrid_)
, sol_e_(frbGrid_)
, sol_o_(frbGrid_)
, tmp_(frbGrid_)
, tmp5_(fGrid_)
, op_(action_)
{}
template <typename FImpl>
void A2AVectorsSchurDiagTwo<FImpl>::makeLowModeV(FermionField &vout, const FermionField &evec, const Real &eval)
{
src_o_ = evec;
src_o_.Checkerboard() = Odd;
pickCheckerboard(Even, sol_e_, vout);
pickCheckerboard(Odd, sol_o_, vout);
/////////////////////////////////////////////////////
// v_ie = -(1/eval_i) * MeeInv Meo MooInv evec_i
/////////////////////////////////////////////////////
action_.MooeeInv(src_o_, tmp_);
assert(tmp_.Checkerboard() == Odd);
action_.Meooe(tmp_, sol_e_);
assert(sol_e_.Checkerboard() == Even);
action_.MooeeInv(sol_e_, tmp_);
assert(tmp_.Checkerboard() == Even);
sol_e_ = (-1.0 / eval) * tmp_;
assert(sol_e_.Checkerboard() == Even);
/////////////////////////////////////////////////////
// v_io = (1/eval_i) * MooInv evec_i
/////////////////////////////////////////////////////
action_.MooeeInv(src_o_, tmp_);
assert(tmp_.Checkerboard() == Odd);
sol_o_ = (1.0 / eval) * tmp_;
assert(sol_o_.Checkerboard() == Odd);
setCheckerboard(vout, sol_e_);
assert(sol_e_.Checkerboard() == Even);
setCheckerboard(vout, sol_o_);
assert(sol_o_.Checkerboard() == Odd);
}
template <typename FImpl>
void A2AVectorsSchurDiagTwo<FImpl>::makeLowModeV5D(FermionField &vout_4d, FermionField &vout_5d, const FermionField &evec, const Real &eval)
{
makeLowModeV(vout_5d, evec, eval);
action_.ExportPhysicalFermionSolution(vout_5d, vout_4d);
}
template <typename FImpl>
void A2AVectorsSchurDiagTwo<FImpl>::makeLowModeW(FermionField &wout, const FermionField &evec, const Real &eval)
{
src_o_ = evec;
src_o_.Checkerboard() = Odd;
pickCheckerboard(Even, sol_e_, wout);
pickCheckerboard(Odd, sol_o_, wout);
/////////////////////////////////////////////////////
// w_ie = - MeeInvDag MoeDag Doo evec_i
/////////////////////////////////////////////////////
op_.Mpc(src_o_, tmp_);
assert(tmp_.Checkerboard() == Odd);
action_.MeooeDag(tmp_, sol_e_);
assert(sol_e_.Checkerboard() == Even);
action_.MooeeInvDag(sol_e_, tmp_);
assert(tmp_.Checkerboard() == Even);
sol_e_ = (-1.0) * tmp_;
/////////////////////////////////////////////////////
// w_io = Doo evec_i
/////////////////////////////////////////////////////
op_.Mpc(src_o_, sol_o_);
assert(sol_o_.Checkerboard() == Odd);
setCheckerboard(wout, sol_e_);
assert(sol_e_.Checkerboard() == Even);
setCheckerboard(wout, sol_o_);
assert(sol_o_.Checkerboard() == Odd);
}
template <typename FImpl>
void A2AVectorsSchurDiagTwo<FImpl>::makeLowModeW5D(FermionField &wout_4d,
FermionField &wout_5d,
const FermionField &evec,
const Real &eval)
{
makeLowModeW(tmp5_, evec, eval);
action_.DminusDag(tmp5_, wout_5d);
action_.ExportPhysicalFermionSource(wout_5d, wout_4d);
}
template <typename FImpl>
void A2AVectorsSchurDiagTwo<FImpl>::makeHighModeV(FermionField &vout,
const FermionField &noise)
{
solver_(vout, noise);
}
template <typename FImpl>
void A2AVectorsSchurDiagTwo<FImpl>::makeHighModeV5D(FermionField &vout_4d,
FermionField &vout_5d,
const FermionField &noise)
{
if (noise.Grid()->Dimensions() == fGrid_->Dimensions() - 1)
{
action_.ImportPhysicalFermionSource(noise, tmp5_);
}
else
{
tmp5_ = noise;
}
makeHighModeV(vout_5d, tmp5_);
action_.ExportPhysicalFermionSolution(vout_5d, vout_4d);
}
template <typename FImpl>
void A2AVectorsSchurDiagTwo<FImpl>::makeHighModeW(FermionField &wout,
const FermionField &noise)
{
wout = noise;
}
template <typename FImpl>
void A2AVectorsSchurDiagTwo<FImpl>::makeHighModeW5D(FermionField &wout_4d,
FermionField &wout_5d,
const FermionField &noise)
{
if (noise.Grid()->Dimensions() == fGrid_->Dimensions() - 1)
{
action_.ImportUnphysicalFermion(noise, wout_5d);
wout_4d = noise;
}
else
{
wout_5d = noise;
action_.ExportPhysicalFermionSource(wout_5d, wout_4d);
}
}
/******************************************************************************
* all-to-all vectors I/O template implementation *
******************************************************************************/
template <typename Field>
void A2AVectorsIo::write(const std::string fileStem, std::vector<Field> &vec,
const bool multiFile, const int trajectory)
{
Record record;
GridBase *grid = vec[0].Grid();
ScidacWriter binWriter(grid->IsBoss());
std::string filename = vecFilename(fileStem, trajectory, multiFile);
if (multiFile)
{
std::string fullFilename;
for (unsigned int i = 0; i < vec.size(); ++i)
{
fullFilename = filename + "/elem" + std::to_string(i) + ".bin";
LOG(Message) << "Writing vector " << i << std::endl;
makeFileDir(fullFilename, grid);
binWriter.open(fullFilename);
record.index = i;
binWriter.writeScidacFieldRecord(vec[i], record);
binWriter.close();
}
}
else
{
makeFileDir(filename, grid);
binWriter.open(filename);
for (unsigned int i = 0; i < vec.size(); ++i)
{
LOG(Message) << "Writing vector " << i << std::endl;
record.index = i;
binWriter.writeScidacFieldRecord(vec[i], record);
}
binWriter.close();
}
}
template <typename Field>
void A2AVectorsIo::read(std::vector<Field> &vec, const std::string fileStem,
const bool multiFile, const int trajectory)
{
Record record;
ScidacReader binReader;
std::string filename = vecFilename(fileStem, trajectory, multiFile);
if (multiFile)
{
std::string fullFilename;
for (unsigned int i = 0; i < vec.size(); ++i)
{
fullFilename = filename + "/elem" + std::to_string(i) + ".bin";
LOG(Message) << "Reading vector " << i << std::endl;
binReader.open(fullFilename);
binReader.readScidacFieldRecord(vec[i], record);
binReader.close();
if (record.index != i)
{
HADRONS_ERROR(Io, "vector index mismatch");
}
}
}
else
{
binReader.open(filename);
for (unsigned int i = 0; i < vec.size(); ++i)
{
LOG(Message) << "Reading vector " << i << std::endl;
binReader.readScidacFieldRecord(vec[i], record);
if (record.index != i)
{
HADRONS_ERROR(Io, "vector index mismatch");
}
}
binReader.close();
}
}
END_HADRONS_NAMESPACE
#endif // A2A_Vectors_hpp_
|
e561416c8fcfa856148718a75f7751837bd6882b | 4d317369bd7de599e0364e9097e50f381845e22c | /2021/Div 2/742/Programs/Carrying Conundrum.cpp | 01dd6bccbe67b283115d08d35d4b172f98cab688 | [] | no_license | MathProgrammer/CodeForces | 4865f0bad799c674ff9e6fde9a008b988af2aed0 | e3483c1ac4a7c81662f6a0bc8af20be69e0c0a98 | refs/heads/master | 2023-04-07T11:27:31.766011 | 2023-04-01T06:29:19 | 2023-04-01T06:29:19 | 84,833,335 | 256 | 114 | null | 2021-10-02T21:14:47 | 2017-03-13T14:02:57 | C++ | UTF-8 | C++ | false | false | 666 | cpp | Carrying Conundrum.cpp | #include <iostream>
using namespace std;
void solve()
{
string n;
cin >> n;
long long odd_places = 0, even_places = 0;
for(int i = 0; i < n.size(); i++)
{
int digit = n[i] - '0';
switch(i%2)
{
case 1 : odd_places = odd_places*10 + digit;
break;
case 0 : even_places = even_places*10 + digit;
break;
}
}
long long total_ways = (odd_places + 1)*(even_places + 1) - 2;
cout << total_ways << "\n";
}
int main()
{
int no_of_test_cases;
cin >> no_of_test_cases;
while(no_of_test_cases--)
solve();
return 0;
}
|
fcc9c21da2929ffa5d64beaed7b7d5589a132c8b | ee90310e5a04924320074b1ad328b19850ec6cc4 | /longbow_infantry.h | f9a9447f166438318830e50fa64cdb61963a4355 | [] | no_license | Darkborderman/Fake-Emblem | 2a148a85aec28939ca63e73cbd90061889968b9a | b6607a6dfc6a9837d0d90c552047bb4b89cfcae4 | refs/heads/master | 2021-01-19T10:40:04.279184 | 2017-06-28T17:52:36 | 2017-06-28T17:52:36 | 95,696,080 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 175 | h | longbow_infantry.h | #ifndef LONGBOW_INFANTRY_H
#define LONGBOW_INFANTRY_H
#include"unit.h"
class longbow_infantry: public unit
{
public:
longbow_infantry();
};
#endif // LONGBOW_INFANTRY_H
|
9150b8e9f42cbbfe82d0fc6954cebc0fcdb5004e | e37a4775935435eda9f176c44005912253a720d8 | /datadriven/src/sgpp/datadriven/application/LearnerSGD.hpp | f477ee4e2b35fd412a4f960161a5d8019c28c048 | [] | no_license | JihoYang/SGpp | b1d90d2d9e8f8be0092e1a9fa0f37a5f49213c29 | 7e547110584891beed194d496e23194dd90ccd20 | refs/heads/master | 2020-04-25T10:27:58.081281 | 2018-09-29T19:33:13 | 2018-09-29T19:33:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,355 | hpp | LearnerSGD.hpp | // Copyright (C) 2008-today The SG++ project
// This file is part of the SG++ project. For conditions of distribution and
// use, please see the copyright notice provided with SG++ or at
// sgpp.sparsegrids.org
#ifndef LEARNERSGD_HPP
#define LEARNERSGD_HPP
#include <sgpp/base/datatypes/DataMatrix.hpp>
#include <sgpp/base/datatypes/DataVector.hpp>
#include <sgpp/base/grid/Grid.hpp>
#include <sgpp/globaldef.hpp>
#include <string>
#include <vector>
namespace sgpp {
namespace datadriven {
/**
* LearnerSGD learns the data using stochastic gradient descent.
*/
class LearnerSGD {
public:
/**
* Constructor.
*
* @param gridConfig The grid configuration
* @param adaptivityConfig The refinement configuration
* @param pTrainData The training dataset
* @param pTrainLabels The corresponding training labels
* @param pTestData The test dataset
* @param pTestLabels The corresponding test labels
* @param pValData The validation dataset
* @param pValLabels The corresponding validation labels
* @param lambda The regularization parameter
* @param gamma The learning parameter (i.e. step width)
* @param batchSize The number of data points which are considered
* to compute the error contributions for predictive refinement
* @param useValidData Specifies if validation data should be used
* for all error computations
*/
LearnerSGD(base::RegularGridConfiguration& gridConfig,
base::AdpativityConfiguration& adaptivityConfig,
base::DataMatrix& pTrainData,
base::DataVector& pTrainLabels,
base::DataMatrix& pTestData,
base::DataVector& pTestLabels,
base::DataMatrix* pValData,
base::DataVector* pValLabels,
double lambda, double gamma,
size_t batchSize, bool useValidData);
/**
* Destructor.
*/
~LearnerSGD();
/**
* Initializes the SGD learner (creates grid etc.).
*/
void initialize();
/**
* Implements online learning using stochastic gradient descent.
*
* @param maxDataPasses The number of passes over the whole training data
* @param refType The refinement indicator (surplus, zero-crossings or
* data-based)
* @param refMonitor The refinement strategy (periodic or convergence-based)
* @param refPeriod The refinement interval (if periodic refinement is chosen)
* @param errorDeclineThreshold The convergence threshold
* (if convergence-based refinement is chosen)
* @param errorDeclineBufferSize The number of error measurements which are
* used to check
* convergence (if convergence-based refinement is chosen)
* @param minRefInterval The minimum number of data points which have to be
* processed before next refinement can be scheduled (if
* convergence-based refinement
* is chosen)
*/
void train(size_t maxDataPasses, std::string refType, std::string refMonitor,
size_t refPeriod, double errorDeclineThreshold,
size_t errorDeclineBufferSize, size_t minRefInterval);
/**
* Computes the classification accuracy on the given dataset.
*
* @param testData The data for which class labels should be predicted
* @param testLabels The corresponding actual class labels
* @param threshold The decision threshold (e.g. for class labels -1, 1 ->
* threshold = 0)
* @return The resulting accuracy
*/
double getAccuracy(sgpp::base::DataMatrix& testData,
sgpp::base::DataVector& testLabels, double threshold);
/**
* Stores classified data, grids and function evaluations to csv files.
*
* @param testDataset Data points for which the model is evaluated
*/
void storeResults(base::DataMatrix& testDataset);
// The final classification error
double error;
// A vector to store error evaluations
sgpp::base::DataVector avgErrors;
protected:
/**
* Generates a regular grid.
*
* @return The created grid
*/
std::unique_ptr<base::Grid> createRegularGrid();
/**
* Computes specified error type (e.g. MSE).
*
* @param data The data points
* @param labels The corresponding class labels
* @param errorType The type of the error measurement (MSE or Hinge loss)
* @return The error estimation
*/
double getError(sgpp::base::DataMatrix& data, sgpp::base::DataVector& labels,
std::string errorType);
/**
* Computes error contribution for each data point of the given
* data set (required for predictive refinement indicator).
*
* @param data The data points
* @param labels The corresponding class labels
*/
void getBatchError(sgpp::base::DataMatrix& data,
const sgpp::base::DataVector& labels);
/**
* Computes the classification accuracy.
*
* @param testLabels The actual class labels
* @param threshold The decision threshold (e.g. for class labels -1, 1 ->
* threshold = 0)
* @param predictedLabels The predicted class labels
* @return The resulting accuracy
*/
double getAccuracy(sgpp::base::DataVector& testLabels, double threshold,
sgpp::base::DataVector& predictedLabels);
/**
* Predicts class labels based on the trained model.
*
* @param testData The data for which class labels should be predicted
* @param predictedLabels The predicted class labels
*/
void predict(base::DataMatrix& testData,
base::DataVector& predictedLabels);
/**
* Stores the last 'batchSize' processed data points
* if no validation data is provided.
*
* @param x The current data point
* @param y The corresponding class label
*/
void pushToBatch(sgpp::base::DataVector& x, double y);
std::unique_ptr<base::Grid> grid;
base::DataVector alpha;
base::DataVector alphaAvg;
base::DataMatrix& trainData;
base::DataVector& trainLabels;
base::DataMatrix& testData;
base::DataVector& testLabels;
base::DataMatrix* batchData;
base::DataVector* batchLabels;
base::DataVector batchError;
base::RegularGridConfiguration gridConfig;
base::AdpativityConfiguration adaptivityConfig;
double lambda;
double gamma;
double currentGamma;
size_t batchSize;
bool useValidData;
};
} // namespace datadriven
} // namespace sgpp
#endif /* LEARNERSGD_HPP */
|
3306c1d40fa7f3feeb00eb065b417c317398cc36 | 419e3b4f150e91c98da95627b40bd36e159bc957 | /figura.h | 17039da6fdc7de9f9237f6f343873144477d30b7 | [] | no_license | ChristianVJ/OPENGL | 1f318b7449a25bbe7f0a81c068e99cded7703626 | 6ca44de318457e25629387a33d1d53a9715786bf | refs/heads/main | 2022-12-25T08:02:17.665391 | 2020-10-02T14:59:01 | 2020-10-02T14:59:01 | 300,649,607 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,413 | h | figura.h |
#include <GL/gl.h>
#include <GL/glut.h>
#include <vector>
#include "stdlib.h"
#include "vertex.h"
#include <math.h>
#include "Tipo_luz_material.h"
#include "Materiales.h"
#ifndef _MALLATVT_H_
#define _MALLATVT_H_
#define MATERIAL 4
using namespace std;
class Figura { // CLASE PARA VISUALIZAR Y REVOLUCIONAR
private:
int puntos_perfil; // puntos_perfil inicial
vector<float> v_vertices_ply; // vector de vértices relacionados con el ply
vector<int> v_caras_ply; // vector de caras relacionados con el ply
vector< _vertex3f > Vertices; // Vector de vértices
vector< _vertex3ui > Caras; // Vector de caras
vector< _vertex3f > normal_vertices; // Vector de normales de los vértices
vector< _vertex3f > normal_caras; // Vector de normales de las caras
/*1*/ vector< _vertex2f > v_texturas; // Vector de texturas
Material * material;
public:
Figura();
Figura(const char * archivo_textura);
~Figura();
void Constructor(const char * filename); // Constructor
void revolucionar(const char * filename); // Revoluciona (no funciona visualizar normales)
void Dibujar(visual_t visualization); // Función que dibuja según el modo seleccionado
void setAmbiental(GLfloat ambiental[MATERIAL-1]);
void setDifusa(GLfloat difusa[MATERIAL-1]);
void setEspecular(GLfloat especular[MATERIAL-1]);
void setBrillo(GLfloat brillo);
};
#endif
|
2f97d048b5140975ad2772209b5d7db7b66742c3 | de390163287fda86b73df015d6b6a3dc5e1bf736 | /Codeforces/Good Bye 2018/C.cpp | 59a3ed7583c724d6bc812a7cae7c745284dcae2a | [] | no_license | iamarshsingh/Competative_programming | fb71a7b62d4ba2846deae25203f9087f31a0b675 | 09418842d029b20d2df0f5b5a5e87619f44a18b3 | refs/heads/master | 2020-06-26T14:39:59.199295 | 2020-03-28T14:05:26 | 2020-03-28T14:05:26 | 97,026,462 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 985 | cpp | C.cpp | #include <bits/stdc++.h>
#define MOD 1000000007
#define ll long long int
using namespace std;
vector<ll> printDivisors(ll n)
{
vector<ll> ans;
ans.clear();
for (ll i=1; i<=sqrt(n); i++)
{
if (n%i == 0)
{
if (n/i == i)
ans.push_back(i);
else{
ans.push_back(i);
ans.push_back(n/i);
}
}
}
return ans;
}
vector<ll> solve(ll n, vector<ll> factors){
vector<ll> ans;
ans.clear();
for(ll i=0;i<factors.size();i++){
ll p = (n/factors[i]);
ll temp = p + ((factors[i]*p*(p-1))/2);
ans.push_back(temp);
}
return ans;
}
int main(){
ll n;
cin>>n;
vector<ll> factors = printDivisors(n);
vector<ll> ans = solve(n, factors);
sort(ans.begin(),ans.end());
for(int i=0;i<ans.size();i++){
cout<<ans[i]<<" ";
}
cout<<endl;
return 0;
}
|
fd5fc00e0a3bb8293f8df819be81508e3f46abef | a5edd00159a2ba88ff6307566dcc515f96254196 | /Sigcreator/main.cpp | 220a568c2bd30e4711347a697176504abdf11fb3 | [] | no_license | McSimp/driver-sf-modtools | c61eab0c6d8a8a36bf6d9c90f1cc362784731429 | a2e561aa07bbb446c2c948ccd6a223cdca325d4a | refs/heads/master | 2020-12-24T13:45:04.671360 | 2012-07-07T15:28:57 | 2012-07-07T15:28:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 966 | cpp | main.cpp | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
int main() {
int i, len, out_i = 0, mask_i = 0;
char *sig, *out, *mask;
sig = (char*)calloc(1024, sizeof(char));
printf("?");
fgets(sig, 1022, stdin);
len = strlen(sig);
out = (char*)calloc(len*2, sizeof(char));
mask = (char*)calloc(len*2, sizeof(char));
for(i = 0;i < len;i++) {
if(isalnum(sig[i]) && isalnum(sig[i+1])) {
out[out_i++] = '\\';
out[out_i++] = 'x';
out[out_i++] = sig[i];
out[out_i++] = sig[i+1];
if(sig[i+2] == '?') {
mask[mask_i++] = '?';
i += 2;
}
else {
mask[mask_i++] = 'x';
i++;
}
}
}
printf("\n\nSize%d\n\nSig:\n%s\n\nMask:\n%s", strlen(mask), out, mask);
getchar();
free(sig);
free(out);
free(mask);
return 0;
} |
e3c4bf168a93f0129f3eec9290865683085219c1 | f225567d44480b5c96f60f1d23b6b0bd3bc6b5c9 | /DIP/hw1/prob1.cpp | 958c4f3dfd78001a99539f639afadad50755b756 | [] | no_license | johnjohnlin/MyCourseProjects | c0fa93c65b2d35ccacd62d5924e2db1bab14756d | ec729d95dec98966c98aaaa545fcbfe51fb05245 | refs/heads/master | 2020-12-24T15:58:12.265515 | 2015-04-17T15:41:28 | 2015-04-17T15:41:28 | 34,122,406 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,047 | cpp | prob1.cpp | #include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
#include "pgm.h"
inline int clamp(int x, const int l, const int h)
{
return std::max(std::min(x, h), l);
}
void dump_hist(const unsigned *in)
{
printf("Hist:\n");
for (int i = 0; i < 256; ++i) {
printf("%u\n", in[i]);
}
printf("----\n");
}
void calc_hist(const unsigned char *in, unsigned *const hist, const int siz)
{
memset(hist, 0, 256*sizeof(unsigned));
for (int i = 0; i < siz; ++i) {
++(hist[*in]);
++in;
}
}
void transfunc_mapping(unsigned char *out, const unsigned char *in, unsigned *const trFunc, const int siz)
{
for (int i = 0; i < siz; ++i) {
*out = trFunc[*in];
++in;
++out;
}
}
void divided_by2(unsigned char *out, const unsigned char *in, const int w, const int h)
{
int iSiz = w*h;
for (int i = 0; i < iSiz; ++i) {
unsigned short t = *in;
*out = (t + 1) >> 1;
++in;
++out;
}
{
unsigned hist[256];
calc_hist(out-iSiz, hist, iSiz);
dump_hist(hist);
}
}
void ghist_eq(unsigned char *out, const unsigned char *in, const int w, const int h)
{
unsigned hist[256];
int iSiz = w*h;
calc_hist(in, hist, iSiz);
for (int i = 1; i < 256; ++i) {
hist[i] += hist[i-1];
}
for (int i = 0; i < 255; ++i) {
hist[i] *= 256;
hist[i] /= hist[255];
}
hist[255] = 255;
transfunc_mapping(out, in, hist, iSiz);
{
unsigned hist[256];
calc_hist(out, hist, iSiz);
dump_hist(hist);
}
}
void lhist_eq(unsigned char *out, const unsigned char *in, const int w, const int h, const int win)
{
int ww = 2*win+1;
ww = ww*ww;
for (int i = 0; i < h; ++i) {
for (int j = 0; j < w; ++j) {
int cnt = 0;
for (int k = i-win; k <= i+win; ++k) {
for (int l = j-win; l <= j+win; ++l) {
int K = clamp(k, 0, h-1);
int L = clamp(l, 0, w-1);
if (in[w*i+j] > in[w*K+L]) {
++cnt;
}
}
}
out[w*i+j] = cnt*255/ww;
}
}
{
unsigned hist[256];
calc_hist(out, hist, w*h);
dump_hist(hist);
}
}
void power_law(unsigned char *out, const unsigned char *in, const int w, const int h)
{
unsigned trFunc[256];
int iSiz = w*h;
for (int i = 0; i < 256; ++i) {
unsigned y = powf(i/256.0f, 0.35f) * 256.0f;
trFunc[i] = y;
}
transfunc_mapping(out, in, trFunc, iSiz);
{
unsigned hist[256];
calc_hist(out, hist, w*h);
dump_hist(hist);
}
}
void exp_law(unsigned char *out, const unsigned char *in, const int w, const int h)
{
unsigned trFunc[256];
int iSiz = w*h;
for (int i = 0; i < 256; ++i) {
static const float mulFactor1 = 1.0f/25600.0f;
static const float mulFactor2 = 255.0f / (exp2f(255*mulFactor1) - 1);
unsigned y = (exp2f(i*mulFactor1) - 1.0f) * mulFactor2;
trFunc[i] = y;
}
transfunc_mapping(out, in, trFunc, iSiz);
{
unsigned hist[256];
calc_hist(out, hist, w*h);
dump_hist(hist);
}
}
void log_law(unsigned char *out, const unsigned char *in, const int w, const int h)
{
unsigned trFunc[256];
int iSiz = w*h;
for (int i = 0; i < 256; ++i) {
static const float offset = 10.0f;
static const float mulFactor = 255.0f / log2f((255+offset)/offset);
static const float subFactor = log2f(offset);
unsigned y = (log2f(i+offset) - subFactor) * mulFactor;
trFunc[i] = y;
}
transfunc_mapping(out, in, trFunc, iSiz);
{
unsigned hist[256];
calc_hist(out, hist, w*h);
dump_hist(hist);
}
}
void otsu_threshold(unsigned char *out, const unsigned char *in, const int w, const int h)
{
unsigned hist[256];
unsigned xhist[256];
int iSiz = w*h;
calc_hist(in, hist, iSiz);
unsigned sumNX = 0, sumN = 0;
for (int i = 0; i < 256; ++i) {
xhist[i] = hist[i] * i;
sumN += hist[i];
sumNX += xhist[i];
}
unsigned char th;
for (unsigned char i = 1; i < 255; ++i) {
static float maxG = -1.0f;
static unsigned sumN0 = hist[0];
static unsigned sumNX0 = xhist[0];
unsigned sumN1 = sumN - sumN0;
unsigned sumNX1 = sumNX - sumNX0;
if (sumN0 == 0 || sumN1 == 0) {
break;
}
float du = (float)sumNX0/sumN0 - (float)sumNX1/sumN1;
float g = (sumN0 * sumN1) * du * du;
if (g > maxG) {
th = i;
maxG = g;
}
sumN0 += hist[i];
sumNX0 += xhist[i];
}
for (int i = 0; i < iSiz; ++i) {
*out = (*in < th) ? 0: 255;
++in;
++out;
}
}
int main(int argc, char const* argv[])
{
if (argc != 4) {
printf("Usage: %s filename w h\n", argv[0]);
abort();
}
int w, h;
w = atoi(argv[2]);
h = atoi(argv[3]);
unsigned char *imgI = new unsigned char[w*h];
unsigned char *imgD = new unsigned char[w*h];
unsigned char *imgH = new unsigned char[w*h];
unsigned char *imgL = new unsigned char[w*h];
unsigned char *imgP1 = new unsigned char[w*h];
unsigned char *imgP2 = new unsigned char[w*h];
unsigned char *imgP3 = new unsigned char[w*h];
unsigned char *imgO = new unsigned char[w*h];
// read file
FILE *fpIn = fopen(argv[1], "rb");
fread(imgI, w*h, 1, fpIn);
fclose(fpIn);
{
unsigned hist[256];
calc_hist(imgI, hist, w*h);
dump_hist(hist);
}
// divided by 2
divided_by2(imgD, imgI, w, h);
// global histogram
ghist_eq(imgH, imgD, w, h);
// local histogram
lhist_eq(imgL, imgD, w, h, 7);
// power law etc
power_law(imgP1, imgD, w, h);
exp_law (imgP2, imgD, w, h);
log_law (imgP3, imgD, w, h);
// Otsu
otsu_threshold(imgO, imgI, w, h);
FILE *fpPgmI = fopen("I.pgm", "wb");
FILE *fpPgmD = fopen("D.pgm", "wb");
FILE *fpPgmH = fopen("H.pgm", "wb");
FILE *fpPgmL = fopen("L.pgm", "wb");
FILE *fpPgmO = fopen("O.pgm", "wb");
FILE *fpPgmP1 = fopen("P1.pgm", "wb");
FILE *fpPgmP2 = fopen("P2.pgm", "wb");
FILE *fpPgmP3 = fopen("P3.pgm", "wb");
save_P5_pgm(fpPgmI, w, h, imgI);
save_P5_pgm(fpPgmD, w, h, imgD);
save_P5_pgm(fpPgmH, w, h, imgH);
save_P5_pgm(fpPgmL, w, h, imgL);
save_P5_pgm(fpPgmP1, w, h, imgP1);
save_P5_pgm(fpPgmP2, w, h, imgP2);
save_P5_pgm(fpPgmP3, w, h, imgP3);
save_P5_pgm(fpPgmO, w, h, imgO);
fclose(fpPgmI);
fclose(fpPgmD);
fclose(fpPgmH);
fclose(fpPgmL);
fclose(fpPgmO);
fclose(fpPgmP1);
fclose(fpPgmP2);
fclose(fpPgmP3);
delete[] imgI, imgD, imgH, imgL, imgP1, imgP2, imgP3, imgO;
return 0;
}
|
c0331fff840e072fdf0db5c7d708f3b5dca0f94a | cf96c6e7d06aea5f11a6de8cce54031a7ece5b3b | /lista.cpp | 408010922cd2187bdf542b8648a4eacb2592e70a | [] | no_license | FernandaCano08/cop | dc541072595f937343b15461a04021f0e511c7bc | 8531f761f905d3fa5bcb0cb55ba0d46fd8f9a45b | refs/heads/master | 2020-07-08T08:02:43.549442 | 2019-08-21T15:26:15 | 2019-08-21T15:26:15 | 203,611,951 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 506 | cpp | lista.cpp | #include "lista.h"
#include <iostream>
using namespace std;
//fallamos :c creo que neceitamos mas practica antes de reiniciar mi cerebro
///Perdon
lista::lista()
{
//ctor
}
lista::~lista()
{
//dtor
}
void lista::mostrar()
{
}
void lista::agregar()
{
nodo* aux;
if (vacia()){
elemento.siguiente= aux;
}
int a;
cout<<"Captura un entero"<<endl;
cin>>a;
//elemento.getDato(a);
cout<<"elemento";
}
bool lista::vacia()
{
}
|
a0a651aca82a7a1f05ab2014240a1b167879177a | 1a1b98a049063b542c85c5f767e1a8227baa0799 | /957.cpp | c6e0e7658bc35562be88234514704b4b79d3589f | [] | no_license | Bhabaranjan19966/COMPETITIVE-PROGRAMMING--ACCEPTED-CODE | 79fdcf60147a66efbeaf35e159195d9fb2e7695a | 9c8e0ea035e4b5cfd0c77134e54f3fe83b3e55fb | refs/heads/master | 2020-03-28T21:26:39.318002 | 2018-09-17T16:39:03 | 2018-09-17T16:39:03 | 149,156,737 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,870 | cpp | 957.cpp | #include<bits/stdc++.h>
#define opt ios_base::sync_with_stdio(0)
#define rep(i,a,b) for(int i=a;i<b;i++)
#define repd(i,a,b) for(int i=a;i>b;i--)
#define trace1(x) cerr << #x << ": " << x << endl;
#define trace2(x, y) cerr << #x << ": " << x << " | " << #y << ": " << y << endl;
#define trace3(x, y, z) cerr << #x << ": " << x << " | " << #y << ": " << y << " | " << #z << ": " << z << endl;
#define trace4(a, b, c, d) cerr << #a << ": " << a << " | " << #b << ": " << b << " | " << #c << ": " << c << " | " << #d << ": " << d << endl;
#define trace5(a, b, c, d, e) cerr << #a << ": " << a << " | " << #b << ": " << b << " | " << #c << ": " << c << " | " << #d << ": " << d << " | " << #e << ": " << e << endl;
#define trace6(a, b, c, d, e, f) cerr << #a << ": " << a << " | " << #b << ": " << b << " | " << #c << ": " << c << " | " << #d << ": " << d << " | " << #e << ": " << e << " | " << #f << ": " << f << endl;
#define MP make_pair
#define PB push_back
#define ff first
#define ss second
#define nl cout<<"\n"
typedef long long ll;
/*---------end of temp--------- */
using namespace std;
int main()
{
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
freopen("details.txt", "w", stderr);
#endif
ll n ;
cin>>n;
string arr;
cin>>arr;
for(int i =0 ; i+1 < n ;i++) {
if(arr[i]!='?' && arr[i] == arr[i+1] ) {
cout<<"No"; return 0;
}
}
if ( (arr[0] == '?')||(arr[n-1] == '?') ) {
cout<<"Yes";return 0;
}
for(int i=1 ; i+1 < n ; i++) {
if(arr[i]=='?' && arr[i-1]== arr[i+1]) {
cout<<"Yes"; return 0;
}
}
for(int i=1 ; i+1 < n ; i++) {
if(arr[i]=='?' && arr[i+1]== '?') {
cout<<"Yes"; return 0;
}
}
cout<< "No";
} |
250ca673a589d57f71058832d9d0b97b4520c8d9 | 9c246730628d95b1e5f766d2b7a8bdbb5e068674 | /11661 - Burger Time/11661 - Burger Time.cpp | bca62514467e540a3d9010908120895646acad72 | [] | no_license | AngieMeG/Uva-Online-Judge | e4c2e463e34c8237fccd048dd367cf20565db9c6 | 963b7dc8247018bc7a41e63b1e7ca79ec4e05489 | refs/heads/master | 2023-05-13T20:04:23.450075 | 2021-05-25T21:25:48 | 2021-05-25T21:25:48 | 293,392,003 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 662 | cpp | 11661 - Burger Time.cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
int cases;
cin >> cases;
while(cases != 0){
int ans = cases, d = -cases, r = -cases;
string highway;
cin >> highway;
for (int i = 0; i < cases; i++){
if (highway[i] == 'Z'){
ans = 0;
break;
}
else if(highway[i] == 'D'){
ans = min(ans, i - r);
d = i;
}
else if(highway[i] == 'R'){
ans = min(ans, i -d);
r = i;
}
}
cout <<ans <<endl;
cin >> cases;
}
return 0;
}
|
2bdab2ece002571a231c80be2b563cd9b2abf4ea | 496ac9605493ae14b5bb8e12dd20a82f61fe144b | /src/context/GlfwInputManager.cpp | 706fb07e23e68ec4ad60e172d088908e9ee0618c | [] | no_license | ennioquaglia/GameEngine | f17d9cbdebe8ff143f7f1f8fcdd2c125ac7c4ca8 | 8a83a26e9b52eaa2d66f59c76b7852e8e66e9f21 | refs/heads/master | 2020-05-19T21:26:59.455956 | 2017-03-30T19:15:10 | 2017-03-30T19:15:10 | 39,824,096 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,653 | cpp | GlfwInputManager.cpp | #include "GlfwInputManager.h"
#include "GlfwWindow.h"
#include <glm/glm.hpp>
#include "Debug.h"
namespace Engine {
GlfwInputManager::GlfwInputManager() :window(0), engine_window(0)
{
}
GlfwInputManager::GlfwInputManager(GlfwWindow *w) : engine_window(w) {
setup(engine_window);
}
GlfwInputManager::~GlfwInputManager()
{
}
bool GlfwInputManager::isKeyDown(int key)const
{
return input.key[key];
}
bool GlfwInputManager::isKeyPressed(int key)const
{
return input.key[key] && !input_pre.key[key];
}
bool GlfwInputManager::isKeyReleased(int key)const
{
return !input.key[key] && input_pre.key[key];
}
glm::vec2 GlfwInputManager::getMousePos()const
{
return glm::vec2(input.mouse.x, input.mouse.y);
}
glm::vec2 GlfwInputManager::getMousePositionDelta()const
{
return glm::vec2(input_pre.mouse.x, input_pre.mouse.y) - glm::vec2(input.mouse.x, input.mouse.y);
}
glm::vec2 GlfwInputManager::getMousePositionDeltaAndCenter(float centerZone)
{
glm::vec2 size = glm::vec2(engine_window->getWidth(), engine_window->getHeight()) / 2.0f;
glm::vec2 pos = getMousePos();
float centro = centerZone;
if (pos.x>(size.x + centro) || pos.x<(size.x - centro) || pos.y>(size.y + centro) || pos.y<(size.y - centro)) {
setMousePos(glm::vec2(-1));
float deltaX = (float)pos.x - (size.x);
float deltaY = (float)pos.y - (size.y);
return glm::vec2(deltaX, deltaY);
}
return glm::vec2(0);
}
void GlfwInputManager::setMousePos(glm::vec2 pos)//todo
{
//engine_window->setMousePos(pos);
_mouseMoveCallback(window, pos.x, pos.y);
}
bool GlfwInputManager::isMouseButtonDown(int button)const
{
return input.mouse.button[button];
}
bool GlfwInputManager::isMouseButtonPressed(int button)const
{
return input.mouse.button[button] && !input_pre.mouse.button[button];
}
bool GlfwInputManager::isMouseButtonReleased(int button)const
{
return !input.mouse.button[button] && input_pre.mouse.button[button];
}
int GlfwInputManager::getDeltaMouseScroll()const
{
return input.mouse.wheelDelta;
}
glm::vec3 GlfwInputManager::getPositionMovement()const
{
float x = 0, y = 0, z = 0;
//float xrotrad = 0;
if (isKeyDown(ENGINE_KEY_W))z++;
if (isKeyDown(ENGINE_KEY_A))x--;
if (isKeyDown(ENGINE_KEY_S))z--;
if (isKeyDown(ENGINE_KEY_D))x++;
if (isKeyDown(ENGINE_KEY_Q))y--;
if (isKeyDown(ENGINE_KEY_E))y++;
glm::vec3 dir = glm::vec3(x, y, z);
if(dir!=glm::vec3(0))dir=glm::normalize(dir);
return dir;
}
glm::vec3 GlfwInputManager::getPositionMovementRotated(float ang)const
{
ang = glm::radians(-ang + 90);
glm::vec3 p(0);
glm::vec3 pos = getPositionMovement();
glm::vec3 rot = glm::vec3(cos(ang), 0, sin(ang));
p += pos.z*rot;
rot = glm::vec3(cos(ang + 1.57), 0, sin(ang + 1.57));
p += pos.x*rot;
p.y = pos.y;
return p;
}
std::map<GLFWwindow*, GlfwInputManager*> GlfwInputManager::windowsMap = std::map<GLFWwindow*, GlfwInputManager*>();
void GlfwInputManager::setup(GlfwWindow* w) {
engine_window = w;
window = w->m_Window;
windowsMap[window] = this;
glfwSetKeyCallback(window, _keyCallback);
glfwSetCursorPosCallback(window, _mouseMoveCallback);
glfwSetMouseButtonCallback(window, _mouseButtonCallback);
glfwSetScrollCallback(window, _mouseScrollCallback);
QENGINE_INFO("new window in GlfwInputManager");
//Debug("\n\n\nnew window in GlfwInputManager\n\n\n");
}
void GlfwInputManager::Update() {
//QENGINE_INFO("GlfwInputManager::Update");
//QENGINE_INFO("mouse : "+input.mouse.x+" "+input.mouse.y);
//if(input.mouse.x!=input_pre.mouse.x)QENGINE_INFO("mouse move");
input_pre = input;
input.mouse.wheelDelta = 0;
}
void GlfwInputManager::_keyCallback(GLFWwindow* window, int key, int scancode, int action, int mods) {
GlfwInputManager *w = windowsMap.find(window) != windowsMap.end() ? windowsMap[window] : 0;
if (!w) return;
//QENGINE_INFO("key input: "+key+","+action+" (where A="+ENGINE_KEY_A);
if (key == ENGINE_KEY_ESCAPE && action == GLFW_PRESS)w->engine_window->Close();
w->input.key[key] = action;
/*
switch (action) {
case 1: //ignores 2: key repeat
case 0:
{
Event e;
e.setType(Event::input);
InputEvent i(InputEvent::keyboard);
// i.setData(i);
//e.setChildEvent(i);
w->send(e);
}
break;
}
*/
}
void GlfwInputManager::_mouseMoveCallback(GLFWwindow *window, double x, double y)
{
//QENGINE_INFO("mouse : "+x+" "+y);
GlfwInputManager *w = windowsMap.find(window) != windowsMap.end() ? windowsMap[window] : 0;
//if (!w) { Debug("no istance"); return; }
w->input.mouse.x = x;
w->input.mouse.y = y;
}
void GlfwInputManager::_mouseButtonCallback(GLFWwindow *window, int button, int action, int mods)
{
GlfwInputManager *w = windowsMap.find(window) != windowsMap.end() ? windowsMap[window] : 0;
//if (!w) { Debug("no istance"); return; }
switch (button) {
case GLFW_MOUSE_BUTTON_LEFT:
w->input.mouse.button[MouseState::LEFT_BUTTON] = action;
break;
case GLFW_MOUSE_BUTTON_RIGHT:
w->input.mouse.button[MouseState::RIGHT_BUTTON] = action;
break;
case GLFW_MOUSE_BUTTON_MIDDLE:
w->input.mouse.button[MouseState::MIDDLE_BUTTON] = action;
break;
default:break;
}
}
void GlfwInputManager::_mouseScrollCallback(GLFWwindow *window, double non_so, double delta)
{
GlfwInputManager *w = windowsMap.find(window) != windowsMap.end() ? windowsMap[window] : 0;
//if (!w) { Debug("no istance"); return; }
w->input.mouse.wheelDelta = delta;
}
}
|
eea74aee7ec0170ed0d75e7641a2537d17d95dde | d7ee43d59443b19c8715b7087bf9de296c44670a | /student.h | 3327602fbb9da4b3268cfd858b79fff514fa6bb1 | [] | no_license | JohDor/C867-New-SPA | 76991190e466271e09e60fad0a294374cabbdc1e | b3a16f465b46bd541af93941bb1c83405aa59a29 | refs/heads/master | 2022-03-25T23:29:23.730778 | 2020-01-10T07:53:50 | 2020-01-10T07:53:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,925 | h | student.h | /*
C867 - Scripting and Programming Applications
Ryl Johann Lolor Dorado
Student ID: 001231016
C++
*/
#ifndef STUDENT_HEADER
#define STUDENT_HEADER
#include"degree.h"
#include<iostream>
#include<string>
using namespace std;
class Student {
public:
// 2.c. constructor using all of the input parameters provided in the table
Student(string studentID, string firstName, string lastName, string emailAddress, int age, int* numberOfDays, Degree degree);
// Note : All accessand changes to the instance variables of the Student class should be done through the accessorand mutator functions.
//accessor(i.e., getter) 2.a. an accessor (i.e., getter) for each instance variable from part D1
string getStudentID();
string getFirstName();
string getLastName();
string getEmailAddress();
int getAge();
int *getNumberOfDays();
// 2.f. virtual getDegreeProgram()
// Note: Leave the implementation of the getDegreeProgram() function empty.
virtual Degree getDegreeProgram() = 0;
//2.b. a mutator (i.e., setter) for each instance variable from part D1
void setStudentID(string studentID);
void setFirstName(string firstName);
void setLastName(string lastName);
void setEmail(string emailAddress);
void setAge(int age);
void setNumDays(int *numberOfDays);
void setDegrees(Degree degree);
// 2.d. virtual print() to print specific student data
virtual void print() = 0;
// 2.e. destructor
~Student();
/*1. Create the base class Student in the files student.h and student.cpp, which includes each of the following variables :
• student ID
• first name
• last name
• email address
• age
• array of number of days to complete each course
• degree types
*/
private:
string studentID;
string firstName;
string lastName;
string email;
int age = -1;
int numberOfDays[3] = {0, 0, 0};
Degree degreeProgram;
};
#endif |
3172b72c60b376283a328c471f20998d22b1b268 | f1f24d86d2ddd7a7b265ff53a8e3b7154a29176d | /rome/include/ROMEAnalyzer.h | 21730b55e3956be8b6fca91f13d83875685edba0 | [] | no_license | cjpl/rome | 0409725419291c48cc58dd46268dc20174f73040 | d23af1df807144e96e6df630e4ead1169c24ebe3 | refs/heads/master | 2021-01-16T20:25:22.140962 | 2013-07-17T09:14:59 | 2013-07-17T09:14:59 | 3,942,387 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 40,851 | h | ROMEAnalyzer.h | /********************************************************************
ROMEAnalyzer.h, M. Schneebeli PSI
$Id$
********************************************************************/
#ifndef ROMEAnalyzer_H
#define ROMEAnalyzer_H
#include <stdlib.h>
#include <RConfig.h>
#if defined( R__VISUAL_CPLUSPLUS )
# pragma warning( push )
# pragma warning( disable : 4800 )
#endif // R__VISUAL_CPLUSPLUS
#include <TTask.h>
#include <TFolder.h>
#include <TFile.h>
#include <TSystem.h>
#if (ROOT_VERSION_CODE >= ROOT_VERSION(5,15,2))
# include <TDirectoryFile.h>
#endif
#if defined( R__VISUAL_CPLUSPLUS )
# pragma warning( pop )
#endif // R__VISUAL_CPLUSPLUS
#include "ROME.h"
#include "Riostream.h"
#include "ROMEPrint.h"
#include "ROMEString.h"
#include "ROMEStrArray.h"
#include "ROMEDAQSystem.h"
#include "ROMETree.h"
#include "ROMERint.h"
#include "ROMEDataBase.h"
#include "ROMETask.h"
#include "ROMENetFolder.h"
#include "ROMEConfig.h"
#include "TArrayL64.h"
#if defined ( HAVE_MIDAS ) && !defined ( __MAKECINT__ )
# include "midas.h"
#else
typedef Int_t HNDLE;
#endif
class TObjArray;
class TSocket;
class TTree;
class ROMEDAQSystem;
class ROMEAnalyzer;
class ArgusWindow;
class ROMENetFolderServer;
typedef struct {
Double_t processedEvents; //! Processed Events
Double_t eventsPerSecond; //! Events per Second
Double_t writtenEvents; //! Written Events
} Statistics;
extern ROMEAnalyzer *gROME; // global ROMEAnalyzer Handle
const Int_t kMaxSocketClients = 100;
const Long64_t kEventNumberInit = -2;
const Long64_t kEventNumberBeginOfRun = -1;
const Long64_t kEventNumberEndOfRun = kMaxLong64 - 1;
const Long64_t kEventNumberTerminate = kMaxLong64;
const Int_t kROMEECodeAnyError = 1<<0;
const Int_t kROMEECodeUnexpectedEndOfInputFile = 1<<1;
class ROMEAnalyzer : public TObject
{
friend class ArgusWindow;
public:
// Analysis Mode
enum {
kAnalyzeNotSpecified,
kAnalyzeOffline,
kAnalyzeOnline
};
// IO type
enum {
kNotBased,
kRunNumberBased,
kRunNumberAndFileNameBased,
kFileNameBased
};
// Program Mode
enum {
kStandAloneROME,
kStandAloneARGUS,
kROMEAndARGUS,
kROMEMonitor
};
// Folder Storage Status
enum {
kStorageFree,
kStorageWriting,
kStorageReading
};
protected:
// Program Mode
Int_t fProgramMode;
// Window Closed
Bool_t fWindowClosed; //! Window closed flag
// Application
ROMERint *fApplication; //! Application Handle
// Cint
ROMEString fCintInitialisation; //! Initialization String for the Cint
// Active DAQ System
ROMEDAQSystem *fActiveDAQ; //! Handle to the active DAQ system
// Modes
Int_t fAnalysisMode; //! Analysis mode flag
Int_t fAnalysisModeConfig; //! Analysis mode flag in config XML file
Bool_t fBatchMode; //! Batch mode flag
Bool_t fDaemonMode; //! Daemon mode flag
Bool_t fQuitMode; //! Quit mode flag
Bool_t fGraphicalConfigEdit; //! Configuration edit flag
Bool_t fPreserveConfig; //! Flag if analyzer overwrites existing config file
Bool_t fNoGraphics; //! No graphics flag
Bool_t fSplashScreen; //! Splash screen flag
Bool_t fDontReadNextEvent; //! Don't read the next event from file/buffer
Bool_t fSkipEvent; //! Prevents the analyzer from analyzing the subsequent tasks of an event
// Directories
ROMEString fInputDir; //! General Input Directory
ROMEString fInputDirConstructed; //! General Input Directory (parsed)
ROMEString fOutputDir; //! General Output Directory
ROMEString fOutputDirConstructed; //! General Output Directory (parsed)
ROMEString fOutputFileOption; //! General Output File Option
Int_t fOutputObjOption; //! General Write Option
ROMEString *fDataBaseDir; //! Data Base File Directories
ROMEString *fDataBaseDirConstructed; //! Data Base File Directories (parsed)
ROMEString fConfigDir; //! Configuration File Directory
ROMEString fConfigDirConstructed; //! Configuration File Directory (parsed)
Bool_t fMakeOutputDirectory; //! Flag if create directory for output file
// Run Numbers
Long64_t fCurrentRunNumber; //! Currently Analyzed Run Number
TArrayL64 fRunNumber; //! Run Numbers to Analyze
ROMEString fRunNumberString; //! Run Numbers in Input String Format
// Event Numbers
Long64_t fCurrentEventNumber; //! Currently Analyzed Event Number
TArrayL64 fEventNumber; //! Event Numbers to Analyze
ROMEString fEventNumberString; //! Event Numbers in Input String Format
// Input File Names
ROMEString fCurrentInputFileName; //! Name of Currently Analyzed Input File
ROMEStrArray fInputFileNames; //! Input File Names to Analyze
ROMEString fInputFileNamesString; //! Original Input File Names in Input String Format
// IO type
Int_t fIOType; //! IO type
// User Events
Bool_t fUserEvent; //! General User Event Flag
Bool_t fUserEventQ; //! Flag for User Event of Type Q
Bool_t fUserEventE; //! Flag for User Event of Type E
Bool_t fUserEventS; //! Flag for User Event of Type S
Bool_t fUserEventR; //! Flag for User Event of Type R
Bool_t fUserEventO; //! Flag for User Event of Type O
Bool_t fUserEventC; //! Flag for User Event of Type C
Bool_t fUserEventJ; //! Flag for User Event of Type J
Long64_t fUserEventJEventNumber; //! Event Number for User Event of Type J
Bool_t fUserEventG; //! Flag for User Event of Type G
Long64_t fUserEventGRunNumber; //! Run Number for User Event of Type G
Long64_t fUserEventGEventNumber; //! Event Number for User Event of Type G
Bool_t fUserEventI; //! Flag for User Event of Type I
// Event ID
int fEventID; //! Event ID of current Event
// Flags
Bool_t fTerminate; //! Termination flag
Bool_t fProgramTerminated; //! Program termination flag
Bool_t fFillEvent; //! Fill Event Flag
// Object Handles
TObjArray *fTaskObjects; //! Handle to Task Objects
ROMETask *fMainTask; //! Handle to Main Task
TFolder *fMainFolder; //! Handle to Main Folder
TFile *fHistoFiles; //! Handle to Histogram Files
ROMENetFolderServer *fNetFolderServer; //! Handle to NetFolder server
// Trees
TObjArray *fTreeObjects; //! Handle to Tree Objects
Bool_t fTreeAccumulation; //! Accumulation of runs in Trees
// Histogram Folders
TFolder *fMainHistoFolder; //! Handle to Main Histogram Folder (histos)
TObjArray *fHistoFolders; //! Handle to Histogram Folder Objects
Bool_t fHistoRead; //! Histogram read flag
ROMEString fHistoRun; //! Read Histograms of the specified Run Numbers
ROMEString fHistoInputPath; //! Input path to the Histograms of this Run
ROMEString fHistoInputPathConstructed; //! Input path to the Histograms of this Run after replacing #,##...
ROMEString fHistoInputFileName; //! Input filename to the Histograms of this Run
ROMEString fHistoInputFileNameConstructed; //! Input filename to the Histograms of this Run after replacing #,##...
Bool_t fHistoWrite; //! Histogram write flag
ROMEString fHistoOutputPath; //! Output path to the Histograms of this Run
ROMEString fHistoOutputPathConstructed; //! Output path to the Histograms of this Run after replacing #,##...
ROMEString fHistoOutputFileName; //! Output filename to the Histograms of this Run
ROMEString fHistoOutputFileNameConstructed; //! Output filename to the Histograms of this Run after replacing #,##...
Bool_t fHistoAccumulateAll; //! Accmulate all histograms and graphs
Bool_t fHistoDeactivateAll; //! Deactivate all histograms and graphs
#if (ROOT_VERSION_CODE < ROOT_VERSION(5,27,6))
ULong_t fHistoAutoSavePeriod; //! Period for auto save
#else
ULong64_t fHistoAutoSavePeriod; //! Period for auto save
#endif
ROMEString fHistoSnapShotFileName; //! Output filename to the Histograms of snap shot. "##" is replaced with event number
ROMEString fHistoSnapShotFileNameConstructed; //! Output filename to the Histograms of snap shot after replacing #,##...
ULong64_t fHistoSnapShotEvents; //! Snap shot is written every n-th events.
// Program name
ROMEString fProgramName; //! Name of this Program
// Online
ROMEString fOnlineHost; //! Name of the Online Host
ROMEString fOnlineExperiment; //! Name of the Online Experiment
ROMEString fOnlineAnalyzerName; //! The name of the analyzer in the midas environment
ROMEString fOnlineMemoryBuffer; //! The name of the midas memory buffer
// Socket Server
Bool_t fSocketServerActive; //! Socket active
Int_t fSocketServerPortNumber; //! Port Number for TSocket
Bool_t fObjectStorageUpdated; //! Object storage update flag
// Socket Client
ROMENetFolder *fSocketClientNetFolder; //! Handle to the ROMENetFolder of the socket connection to ROME
ROMEString fSocketClientHost; //! Socket connection to ROME host
Int_t fSocketClientPort; //! Socket connection to ROME port
// Statistics
Statistics *fStatistics; //! Event statistics for each event types
Int_t fMaxEventID; //! Max EventID
// Data base
ROMEDataBase **fDataBaseHandle; //! DataBase Handles
ROMEString *fDataBaseName; //! DataBase name
ROMEString *fDataBaseConnection; //! DataBase connection strings
Int_t fNumberOfDataBases; //! Number of DataBases available
// Configuration
ROMEConfig *fConfiguration; //! Configuration Handle
// Run Stat
Bool_t fShowRunStat; //! Show Run Statistics
// Event Based Data Base
Bool_t fEventBasedDataBase; //! Flag for Event Based Data Base
// NetFolder
Int_t fNumberOfNetFolders; //! Number of net folders
ROMENetFolder **fNetFolder; //! netfolder handle
Bool_t *fNetFolderActive; //! active flag
Bool_t *fNetFolderReconnect; //! reconnect flag
TSocket **fNetFolderSocket; //! socket connection handle
Int_t *fNetFolderPort; //! port number
ROMEString *fNetFolderName; //! name
ROMEString *fNetFolderHost; //! server host name
ROMEString *fNetFolderRoot; //! root directory name
// Monitor
ArgusWindow *fWindow; //! Handle to Argus Window
Int_t fWindowUpdatePeriod; //! Update period of Argus window, in ms
// Midas
HNDLE fMidasOnlineDataBase; //! Handle to the Midas Online Data Base
Int_t fErrorCode; //! Exit code in case ::Start returns false.
// Max Tree Memory
Long64_t fMaxTreeMemory; //! maximum memory size used for baskets
// Report summary output
TString fReportSummaryFileName; //! File name of report summary output
Int_t fReportSummaryFileLevel; //! Verbose level of report summary output
Int_t fReportSummaryFileLineLength; //! Line legth limit for report summary output
private:
ROMEAnalyzer(const ROMEAnalyzer &analyzer); // not implemented
ROMEAnalyzer &operator=(const ROMEAnalyzer &rhs); // not implemented
public:
ROMEAnalyzer();
ROMEAnalyzer(ROMERint *app, Bool_t batch, Bool_t daemon, Bool_t nographics, Int_t analysisMode,
const char* programName, const char* onlineName, ROMEConfig* config, int numNetFolder);
virtual ~ROMEAnalyzer();
// Program Mode
Bool_t IsStandAloneROME() const { return fProgramMode == kStandAloneROME; }
Bool_t IsStandAloneARGUS() const { return fProgramMode == kStandAloneARGUS; }
Bool_t IsROMEAndARGUS() const { return fProgramMode == kROMEAndARGUS; }
Bool_t IsROMEMonitor() const { return fProgramMode == kROMEMonitor; }
void SetStandAloneROME() { fProgramMode = kStandAloneROME; }
void SetStandAloneARGUS() { fProgramMode = kStandAloneARGUS; }
void SetROMEAndARGUS() { fProgramMode = kROMEAndARGUS; }
void SetROMEMonitor() { fProgramMode = kROMEMonitor; }
// Window Closed
Bool_t IsWindowClosed() const { return fWindowClosed; }
void WindowClosed() { fWindowClosed = true; }
// Application Handle
ROMERint *GetApplication() const { return fApplication; }
// Cint
const char *GetCintInitialisation() const { return fCintInitialisation.Data(); }
void SetCintInitialisation(const char *str) { fCintInitialisation = str; }
// Active DAQ System
const char *GetNameOfActiveDAQ() const { if (fActiveDAQ == 0) { return "none"; } return fActiveDAQ->GetName(); }
ROMEDAQSystem *GetActiveDAQ() const;
Bool_t IsActiveDAQ(const char* daqName) const {
if (!fActiveDAQ) {
return false;
}
return strcmp(fActiveDAQ->GetName(),daqName) == 0;
}
Bool_t isActiveDAQSet() const { return fActiveDAQ != 0; }
void SetActiveDAQ(ROMEDAQSystem *handle) { fActiveDAQ = handle; }
// Data Base Handle
const char *GetDataBaseName(Int_t i) const { return fDataBaseName[i].Data(); }
void SetDataBaseName(Int_t i,const char *name) { fDataBaseName[i] = name; }
const char *GetDataBaseConnection(Int_t i) const { return fDataBaseConnection[i].Data(); }
void SetDataBaseConnection(Int_t i,const char *connection) { fDataBaseConnection[i] = connection; }
ROMEDataBase *GetDataBase(Int_t i) const;
ROMEDataBase *GetDataBase(const char *name) const;
Bool_t isDataBaseActive(const char *name) const;
void SetDataBase(Int_t i,ROMEDataBase *dataBase);
Int_t GetNumberOfDataBases() const { return fNumberOfDataBases; }
void InitDataBases(Int_t number);
// NetFolderServer
ROMENetFolderServer *GetNetFolderServer() const { return fNetFolderServer; }
// modes
Bool_t isSplashScreen() const { return fSplashScreen; }
Bool_t isBatchMode() const { return fBatchMode; }
Bool_t isDaemonMode() const { return fDaemonMode; }
Bool_t isQuitMode() const { return fQuitMode; }
Bool_t isGraphicalConfigEdit() const { return fGraphicalConfigEdit; }
Bool_t isPreserveConfig() const { return fPreserveConfig; }
Bool_t isNoGraphics() const { return fNoGraphics; }
void SetSplashScreen(Bool_t flag = true) { fSplashScreen = flag; }
void SetBatchMode(Bool_t flag = true) { fBatchMode = flag; }
void SetDaemonMode(Bool_t flag = true) { fDaemonMode = flag; }
void SetQuitMode(Bool_t flag = true) { fQuitMode = flag; }
void SetGraphicalConfigEdit(Bool_t flag = true) { fGraphicalConfigEdit = flag; }
void SetPreserveConfig(Bool_t flag = true) { fPreserveConfig = flag; }
void SetNoGraphics(Bool_t flag = true) { fNoGraphics = flag; }
// Analysis Mode
Bool_t isOnline() const { return fAnalysisMode == kAnalyzeOnline; }
Bool_t isOffline() const { return fAnalysisMode == kAnalyzeOffline; }
Bool_t ConfigIsOnline() const { return fAnalysisModeConfig == kAnalyzeOnline; }
Bool_t ConfigIsOffline() const { return fAnalysisModeConfig == kAnalyzeOffline; }
void SetOnline() { fAnalysisMode = kAnalyzeOnline; }
void SetOffline() { fAnalysisMode = kAnalyzeOffline; }
void SetConfigOnline() { fAnalysisModeConfig = kAnalyzeOnline; }
void SetConfigOffline() { fAnalysisModeConfig = kAnalyzeOffline; }
// Directories
const char *GetInputDir() { return GetInputDirString().Data(); }
const char *GetOutputDir() { return GetOutputDirString().Data(); }
const char *GetOutputFileOption() const { return fOutputFileOption.Data(); }
Int_t GetOutputObjOption() const { return fOutputObjOption; }
const char *GetDataBaseDir(Int_t i) { return GetDataBaseDirString(i).Data(); }
const char *GetConfigDir() { return GetConfigDirString().Data(); }
const char *GetRawInputDir() const { return fInputDir.Data(); }
const char *GetRawOutputDir() const { return fOutputDir.Data(); }
const char *GetRawDataBaseDir(Int_t i) const { return fDataBaseDir[i].Data(); }
const char *GetRawConfigDir() const { return fConfigDir.Data(); }
const ROMEString &GetInputDirString();
const ROMEString &GetOutputDirString();
const ROMEString &GetDataBaseDirString(Int_t i);
const ROMEString &GetConfigDirString();
const ROMEString &GetRawInputDirString() const { return fInputDir; }
const ROMEString &GetRawOutputDirString() const { return fOutputDir; }
const ROMEString &GetRawDataBaseDirString(Int_t i) const { return fDataBaseDir[i]; }
const ROMEString &GetRawConfigDirString() const { return fConfigDir; }
void SetInputDir(const char *dir) { fInputDir = dir; }
void SetInputDir(ROMEString &dir) { fInputDir = dir; }
void SetOutputDir(const char *dir) { fOutputDir = dir; }
void SetOutputDir(ROMEString &dir) { fOutputDir = dir; }
void SetOutputFileOption(const char *opt) { SetOutputFileOption(ROMEString(opt)); }
void SetOutputFileOption(ROMEString &opt)
{
opt.ToUpper();
if (opt == "UPDATE") {
fOutputObjOption = 0;
} else {
fOutputObjOption = TObject::kOverwrite;
}
fOutputFileOption = opt;
}
void SetDataBaseDir(Int_t i,const char *dir) { fDataBaseDir[i] = dir; }
void SetDataBaseDir(Int_t i,ROMEString &dir) { fDataBaseDir[i] = dir; }
void SetConfigDir(const char *dir) { fConfigDir = dir; }
void SetConfigDir(ROMEString &dir) { fConfigDir = dir; }
void SetMakeOutputDirectory(Bool_t flag) { fMakeOutputDirectory = flag; }
Bool_t isMakeOutputDirectory() const { return fMakeOutputDirectory; }
// Fill Event Flag
Bool_t isFillEvent() const { return fFillEvent; }
void SetFillEvent(Bool_t fillEvent = true) { fFillEvent = fillEvent; }
// Termination Flag
Bool_t isTerminationFlag() const { return fTerminate; }
void SetTerminationFlag() { fTerminate = true; }
Bool_t IsProgramTerminated() const;
void SetProgramTerminated() { fProgramTerminated = true; }
// Event Read Flag
Bool_t IsDontReadNextEvent() const { return fDontReadNextEvent; }
void SetDontReadNextEvent(Bool_t flag = true) { fDontReadNextEvent = flag; }
// Skip Event
Bool_t IsSkipEvent() const { return fSkipEvent; }
void SetSkipEvent(Bool_t skip = true) { fSkipEvent = skip; }
// Tree IO
Bool_t isTreeAccumulation() const { return fTreeAccumulation; }
void SetTreeAccumulation(Bool_t flag = true) { fTreeAccumulation = flag; }
// Tasks
void AddTask(TTask *task) { fTaskObjects->AddLast(task); }
ROMETask *GetTaskObjectAt(Int_t index) const { return static_cast<ROMETask*>(fTaskObjects->At(index)); }
Int_t GetTaskObjectEntries() const { return fTaskObjects->GetEntries(); }
Bool_t IsTaskActive(Int_t taskIndex);
// Trees
void AddTree(TTree *tree) { fTreeObjects->Add(new ROMETree(tree)); }
ROMETree *GetTreeObjectAt(Int_t index) const { return static_cast<ROMETree*>(fTreeObjects->At(index)); }
Int_t GetTreeObjectEntries() const { return fTreeObjects->GetEntries(); }
// Histogram Folders
TFolder *GetMainHistoFolder() const { return fMainHistoFolder; }
TFolder *GetHistoFolderAt(int index) const { return static_cast<TFolder*>(fHistoFolders->At(index)); }
Bool_t IsHistosRead() const { return fHistoRead; }
const char* GetHistosRun() const { return fHistoRun.Data(); }
const char* GetHistosPath() const { return fHistoInputPath.Data(); } // for backward compatibility
const char* GetHistosInputRawPath() { return fHistoInputPath; }
const char* GetHistosInputPath();
const char* GetHistosInputRawFileName() { return fHistoInputFileName; }
const char* GetHistosInputFileName(Long64_t run);
Bool_t IsHistosWrite() const { return fHistoWrite; }
const char* GetHistosOutputRawPath() { return fHistoOutputPath; }
const char* GetHistosOutputPath();
const char* GetHistosOutputRawFileName() { return fHistoOutputFileName; }
const char* GetHistosOutputFileName();
Bool_t IsHistosAccumulateAll() const { return fHistoAccumulateAll; }
Bool_t IsHistosDeactivateAll() const { return fHistoDeactivateAll; }
#if (ROOT_VERSION_CODE < ROOT_VERSION(5,27,6))
ULong_t GetHistosAutoSavePeriod() const { return fHistoAutoSavePeriod; }
#else
ULong64_t GetHistosAutoSavePeriod() const { return fHistoAutoSavePeriod; }
#endif
const char* GetHistosSnapShotRawFileName() { return fHistoSnapShotFileName; }
const char* GetHistosSnapShotFileName();
ULong64_t GetHistosSnapShotEvents() const { return fHistoSnapShotEvents; }
void SetHistosRead(Bool_t flag) { fHistoRead = flag; }
void SetHistosRun(const char* runNumber) { fHistoRun = runNumber; }
void SetHistosPath(const char* path) { fHistoInputPath = path; } // for backward compatibility
void SetHistosInputPath(const char* path) { fHistoInputPath = path; }
void SetHistosInputFileName(const char* file) { fHistoInputFileName = file; }
void SetHistosWrite(Bool_t flag) { fHistoWrite = flag; }
void SetHistosOutputPath(const char* path) { fHistoOutputPath = path; }
void SetHistosOutputFileName(const char* file) { fHistoOutputFileName = file; }
void SetHistosAccumulateAll(Bool_t flag) { fHistoAccumulateAll = flag; }
void SetHistosDeactivateAll(Bool_t flag) { fHistoDeactivateAll = flag; }
#if (ROOT_VERSION_CODE < ROOT_VERSION(5,27,6))
void SetHistosAutoSavePeriod(ULong_t period) { fHistoAutoSavePeriod = period; }
#else
void SetHistosAutoSavePeriod(ULong64_t period) { fHistoAutoSavePeriod = period; }
#endif
void SetHistosSnapShotFileName(const char* file) { fHistoSnapShotFileName = file; }
void SetHistosSnapShotEvents(ULong64_t n) { fHistoSnapShotEvents = n; }
void ReplaceWithRunAndEventNumber(ROMEString &buffer);
ROMEString& ConstructFilePath(const ROMEString &dir, const ROMEString &base, ROMEString& filename);
Bool_t IsHistoActive(Int_t taskIndex,Int_t histoIndex);
Bool_t IsGraphActive(Int_t taskIndex,Int_t graphIndex);
// Run Number
void GetRunNumberStringAt(ROMEString &buffer,Int_t i, const char* format = 0) const;
Long64_t GetRunNumberAt(Int_t i) const { if (i >= fRunNumber.GetSize()) { return 0; } return fRunNumber.At(i); }
void GetCurrentRunNumberString(ROMEString &buffer, const char* format = 0);
Long64_t GetCurrentRunNumber();
Int_t GetNumberOfRunNumbers() const { return fRunNumber.GetSize(); }
const char *GetRunNumberStringOriginal() const { return fRunNumberString.Data(); }
Long64_t GetFirstRunNumber();
Long64_t GetLastRunNumber();
void SetCurrentRunNumber(Long64_t runNumber);
void SetRunNumbers(ROMEString &numbers) {
fRunNumberString = numbers;
DecodeNumbers(numbers,fRunNumber);
}
void SetRunNumbers(const char *numbers) {
fRunNumberString = numbers;
DecodeNumbers(fRunNumberString,fRunNumber);
}
Long64_t GetNextRunNumber(const Long64_t runNumber) const;
// Event Number
Long64_t GetCurrentEventNumber();
const char *GetEventNumberStringOriginal() const { return fEventNumberString.Data(); }
void SetCurrentEventNumber(Long64_t eventNumber);
void SetEventNumbers(ROMEString &numbers) {
fEventNumberString = numbers;
DecodeNumbers(numbers,fEventNumber);
}
void SetEventNumbers(const char *numbers) {
fEventNumberString = numbers;
DecodeNumbers(fEventNumberString,fEventNumber);
}
// Input File Names
ROMEString GetInputFileNameAt(Int_t i) const { return fInputFileNames.At(i); }
ROMEString GetCurrentInputFileName() const { return fCurrentInputFileName; }
Int_t GetNumberOfInputFileNames() const { return fInputFileNames.GetEntriesFast(); }
const char *GetInputFileNamesStringOriginal() const { return fInputFileNamesString.Data(); }
void SetCurrentInputFileName(ROMEString &inputFileName) { fCurrentInputFileName = inputFileName; }
void SetCurrentInputFileName(const char *inputFileName) { fCurrentInputFileName = inputFileName; }
void SetInputFileNames(ROMEString &names) {
fInputFileNamesString = names;
DecodeInputFileNames(names,fInputFileNames);
}
void SetInputFileNames(const char *numbers) {
fInputFileNamesString = numbers;
DecodeInputFileNames(fInputFileNamesString,fInputFileNames);
}
// IO type
Bool_t IsRunNumberBasedIO() const { return (fIOType == kRunNumberBased); }
Bool_t IsRunNumberAndFileNameBasedIO() const { return (fIOType == kRunNumberAndFileNameBased); }
Bool_t IsFileNameBasedIO() const { return (fIOType == kFileNameBased); }
void SetIOType(Int_t type) { fIOType = type; }
// User Events
void SetUserEventQ() { fUserEvent = true; fUserEventQ = true; }
void SetUserEventE() { fUserEvent = true; fUserEventE = true; }
void SetUserEventS() { fUserEvent = true; fUserEventS = true; }
void SetUserEventR() { fUserEvent = true; fUserEventR = true; }
void SetUserEventO() { fUserEvent = true; fUserEventO = true; }
void SetUserEventC() { fUserEvent = true; fUserEventC = true; }
void SetUserEventJ(Long64_t eventNumber) {
fUserEvent = true;
fUserEventJ = true;
fUserEventJEventNumber = eventNumber;
}
void SetUserEventG(Long64_t runNumber,Long64_t eventNumber) {
fUserEvent = true;
fUserEventG = true;
fUserEventGRunNumber = runNumber;
fUserEventGEventNumber = eventNumber;
}
void SetUserEventI() { fUserEvent = true; fUserEventI = true; }
Bool_t HasUserEvent() const { return fUserEvent; }
void DeleteUserEvent() {
fUserEvent = false;
fUserEventQ = false;
fUserEventE = false;
fUserEventS = false;
fUserEventR = false;
fUserEventO = false;
fUserEventC = false;
fUserEventJ = false;
fUserEventG = false;
fUserEventI = false;
}
Bool_t IsUserEventQ() const { return fUserEventQ; }
Bool_t IsUserEventE() const { return fUserEventE; }
Bool_t IsUserEventS() const { return fUserEventS; }
Bool_t IsUserEventR() const { return fUserEventR; }
Bool_t IsUserEventO() const { return fUserEventO; }
Bool_t IsUserEventC() const { return fUserEventC; }
Bool_t IsUserEventJ() const { return fUserEventJ; }
Long64_t GetUserEventJEventNumber() const { return fUserEventJEventNumber; }
Bool_t IsUserEventG() const { return fUserEventG; }
Long64_t GetUserEventGRunNumber() const { return fUserEventGRunNumber; }
Long64_t GetUserEventGEventNumber() const { return fUserEventGEventNumber; }
Bool_t IsUserEventI() const { return fUserEventI; }
// Event ID
Int_t GetEventID() const { return fEventID; }
void SetEventID(Int_t eventID) { fEventID = eventID; }
// Processed Events
Double_t GetProcessedEvents() const { return fStatistics[0].processedEvents; }
Double_t GetProcessedEventsAt(Int_t id) const { return id < fMaxEventID && id >= 0 ? fStatistics[id].processedEvents : 0; }
// main objects
TFolder *GetMainFolder() const { return fMainFolder; }
TTask *GetMainTask() const { return fMainTask; }
TFile *GetHistoFileHandle() const { return fHistoFiles; }
void SetHistoFileHandle(TFile *file) { fHistoFiles = file; }
const char *GetProgramName() const { return fProgramName.Data(); }
// Online
const char *GetOnlineHost() const { return fOnlineHost.Data(); }
const char *GetOnlineExperiment() const { return fOnlineExperiment.Data(); }
const char *GetOnlineAnalyzerName() const { return fOnlineAnalyzerName.Data(); }
const char *GetOnlineMemoryBuffer() const { return fOnlineMemoryBuffer.Data(); }
void SetOnlineHost(const char *host) { fOnlineHost = host; }
void SetOnlineExperiment(const char *experiment) { fOnlineExperiment = experiment; }
void SetOnlineAnalyzerName(const char *analyzerName) { fOnlineAnalyzerName = analyzerName; }
void SetOnlineMemoryBuffer(const char *memoryBufferName) { fOnlineMemoryBuffer = memoryBufferName; }
// Socket Server
Int_t GetSocketServerPortNumber() const { return fSocketServerPortNumber; }
Bool_t isSocketServerActive() const { return fSocketServerActive; }
void SetSocketServerPortNumber(Int_t portNumber) { fSocketServerPortNumber = portNumber; }
void SetSocketServerPortNumber(const char *portNumber) { char *cstop; fSocketServerPortNumber = strtol(portNumber,&cstop,10); }
void SetSocketServerActive(Bool_t flag = true) { fSocketServerActive = flag; }
static THREADTYPE FillObjectsInNetFolderServer(ROMEAnalyzer *localThis);
virtual void FillObjectStorage() = 0;
void UpdateObjectStorage();
Bool_t IsObjectStorageUpdated() const;
void SetObjectStorageUpdated();
virtual void FillConfigParametersFolder() = 0;
virtual void SaveConfigParametersFolder() const = 0;
// Socket Client
const char *GetSocketClientHost() const { return fSocketClientHost.Data(); }
Int_t GetSocketClientPort() const { return fSocketClientPort; }
ROMENetFolder *GetSocketClientNetFolder() { ConnectSocketClient(); return fSocketClientNetFolder; }
void SetSocketClientHost(const char *host) { fSocketClientHost = host; }
void SetSocketClientPort(Int_t portNumber) { fSocketClientPort = portNumber; }
void SetSocketClientPort(const char *portNumber) { char *cstop; fSocketClientPort = strtol(portNumber,&cstop,10); }
// Midas ODB
HNDLE GetMidasOnlineDataBase() const { return fMidasOnlineDataBase; }
HNDLE* GetMidasOnlineDataBasePointer() { return &fMidasOnlineDataBase; }
// Configuration
ROMEConfig *GetConfiguration() const { return fConfiguration; }
Bool_t WriteConfigurationFile(ROMEString &configFile) const;
virtual Bool_t ShowConfigurationFile() = 0;
// Statistics
Statistics *GetStatisticsAt(Int_t id) const { return id < fMaxEventID && id >= 0 ? &fStatistics[id] : 0; }
Statistics *GetTriggerStatistics() { return &fStatistics[0]; }
Statistics *GetScalerStatistics() { return &fStatistics[1]; }
Int_t GetMaxEventID() const { return fMaxEventID; }
// Start Method
Bool_t Start(int argc = 0, char **argv = 0);
// Run/Event Number Handling
static void DecodeNumbers(ROMEString &str,TArrayL64 &arr);
static void DecodeInputFileNames(ROMEString &str,ROMEStrArray &arr);
Int_t CheckEventNumber(Long64_t eventNumber) const;
Int_t CheckRunNumber(Long64_t runNumber) const;
static Int_t CheckNumber(Long64_t eventNumber, const TArrayL64 &numbers);
// Run Stat
void ShowRunStat(Bool_t flag = true) { fShowRunStat = flag; }
Bool_t IsShowRunStat() const { return fShowRunStat; }
// Event Based Data Base
void SetEventBasedDataBase(Bool_t flag = true) { fEventBasedDataBase = flag; }
Bool_t IsEventBasedDataBase() const { return fEventBasedDataBase; }
// NetFolder
Bool_t IsNetFolderActive(const char *name) const;
ROMENetFolder *GetNetFolder(const char *name) const;
const char *GetNetFolderName(Int_t i) const { return fNetFolderName[i].Data(); }
const char *GetNetFolderHost(Int_t i) const { return fNetFolderHost[i].Data(); }
Int_t GetNetFolderPort(Int_t i) const { return fNetFolderPort[i]; }
const char *GetNetFolderRoot(Int_t i) const { return fNetFolderRoot[i].Data(); }
Bool_t GetNetFolderActive(Int_t i) const { return fNetFolderActive[i]; }
Bool_t GetNetFolderReconnect(Int_t i) const { return fNetFolderReconnect[i]; }
void SetNetFolderName(Int_t i,const char *name) { fNetFolderName[i] = name; }
void SetNetFolderName(Int_t i,ROMEString &name) { fNetFolderName[i] = name; }
void SetNetFolderHost(Int_t i,const char *host) { fNetFolderHost[i] = host; }
void SetNetFolderHost(Int_t i,ROMEString &host) { fNetFolderHost[i] = host; }
void SetNetFolderPort(Int_t i,Int_t port) { fNetFolderPort[i] = port; }
void SetNetFolderPort(Int_t i,const char *port) { char *cstop; fNetFolderPort[i] = strtol(port,&cstop,10); }
void SetNetFolderPort(Int_t i,ROMEString &port) { SetNetFolderPort(i, port.Data()); }
void SetNetFolderRoot(Int_t i,const char *root) { fNetFolderRoot[i] = root; }
void SetNetFolderRoot(Int_t i,ROMEString &root) { fNetFolderRoot[i] = root; }
void SetNetFolderActive(Int_t i,Bool_t active) { fNetFolderActive[i] = active; }
void SetNetFolderReconnect(Int_t i,Bool_t reconnect) { fNetFolderReconnect[i] = reconnect; }
Int_t GetNumberOfNetFolders() const { return fNumberOfNetFolders; }
// NetFolder connection
Bool_t ConnectNetFolder(const char *name) const;
Bool_t ConnectNetFolder(Int_t i) const;
Bool_t DisconnectNetFolder(const char *name) const;
Bool_t DisconnectNetFolder(Int_t i) const;
Bool_t ConnectNetFolders() const;
Bool_t DisconnectNetFolders() const;
void InitNetFolders(Int_t number);
// Folder dump and load
virtual Bool_t DumpFolders(const char* filename, Bool_t only_database) const = 0;
virtual Bool_t LoadFolders(const char* filename, Bool_t only_database) = 0;
// Monitor
ArgusWindow *GetWindow() const { return fWindow; }
Bool_t StartWindow();
Int_t GetWindowUpdatePeriod() const { return fWindowUpdatePeriod; }
void SetWindowUpdatePeriod(Int_t period) { fWindowUpdatePeriod = period; }
Bool_t IsWindowBusy() const;
// Error code
Int_t GetErrorCode() const { return fErrorCode; }
void SetErrorCode(Int_t ecode) { fErrorCode = ecode; }
void AddErrorCode(Int_t ecode) { fErrorCode |= ecode; }
// Program Steering
void NextEvent();
void GotoEvent(Long64_t eventNumber);
virtual Bool_t ReadSingleDataBaseFolders() = 0;
virtual Bool_t ReadArrayDataBaseFolders() = 0;
static char GetChar();
static Int_t ss_getchar(UInt_t reset);
static UInt_t ss_kbhit();
Int_t ss_daemon_init(Bool_t keep_stdout);
static Int_t ss_batch_init();
static Bool_t strtobool(const char *str);
static Int_t stricmp(const char*,const char*);
static Bool_t toBool(Int_t value);
static void redirectOutput(Bool_t redirect = kTRUE);
static void restoreOutput() { redirectOutput(kFALSE); }
static void Cleaning();
static Bool_t STDOutIsTerminal();
static Bool_t STDErrIsTerminal();
static void CopyTObjectWithStreamer(TBuffer *buffer,TObject* source,TObject* destination);
virtual Bool_t CheckDependences() const { return kTRUE; }
virtual void UpdateConfigParameters() {}
Bool_t ConnectSocketClient(const char* hostname = 0, Int_t port = 0);
virtual void ConstructHistoFolders(TFolder *f, Bool_t addToArray) = 0;
virtual void ConstructHistoDirectories(TDirectory *d, TObjArray *cratedDir) = 0;
// Max Tree Memory
void SetMaxTreeMemory(Long64_t size) { fMaxTreeMemory = size; }
Long64_t GetMaxTreeMemory() const { return fMaxTreeMemory; }
// Report Summary File
void SetReportSummaryFileName(const char *name) { fReportSummaryFileName = name; }
const char *GetReportSummaryFileName() const { return fReportSummaryFileName; }
void SetReportSummaryFileLevel(Int_t level) { fReportSummaryFileLevel = level; }
Int_t GetReportSummaryFileLevel() const { return fReportSummaryFileLevel; }
void SetReportSummaryFileLineLength(Int_t l) { fReportSummaryFileLineLength = l; }
Int_t GetReportSummaryFileLineLength() const { return fReportSummaryFileLineLength; }
#if (ROOT_VERSION_CODE < ROOT_VERSION(5,27,6))
ULong_t Now() { return static_cast<ULong_t>(gSystem->Now()); }
#else
ULong64_t Now() { return static_cast<ULong64_t>(gSystem->Now()); }
#endif
protected:
Bool_t CreateHistoFolders(TList *,TFolder *) const;
virtual Bool_t ReadParameters(int argc, char *argv[]);
virtual Bool_t ReadUserParameter(const char* /*opt*/, const char* /*value*/, Int_t &/*i*/) { return false; }
virtual void ParameterUsage() const;
virtual void UserParameterUsage() const {}
virtual void startSplashScreen() = 0;
virtual void consoleStartScreen() = 0;
virtual Bool_t ConnectSocketClientNetFolder(TSocket *sock) = 0;
virtual void StartNetFolderServer() = 0;
virtual void StopNetFolderServer();
virtual Bool_t CheckTreeFileNames() const = 0;
ClassDef(ROMEAnalyzer,0) // Base analyzer class
};
#endif // ROMEAnalyzer_H
|
99766dbbcb54b39f5fa86d7cd4b798caf6a13cfb | f2db06db198810be7c046e2e241e359f95e47e8d | /trial_targets/shared_library_on_pic.cc | 4ee5a752145bbc01bb79da365ed05943b7954cf5 | [
"MIT"
] | permissive | adambreland/cpp-simple_bazel_cpp_toolchain | 87c8fee3ec638585cf4a45a349f46a7f563400b0 | 9530aad19a03b3ede56d51f6700b726249d51fe9 | refs/heads/master | 2023-04-08T02:54:47.866574 | 2021-04-20T20:11:03 | 2021-04-20T20:11:03 | 340,477,263 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 187 | cc | shared_library_on_pic.cc | #include "shared_library_on_pic.h"
#include <string>
#include "pic1.h"
std::string so_on_pic_func()
{
std::string result {"so_on_"};
result.append(pic1_func());
return result;
}
|
f2d4bdabb538d107bbb9ee1e2d5fb49f4c48d7d9 | 8a819b2a0a643b659097b96d041c52e5df81b4a1 | /books/Design_Pattern/Parser/dog/AbstractNode.h | 103dd6854f3fda279101379c15648bee776e689b | [] | no_license | hackerlank/Norman | 82e9112eaa838b7fc8e8fd79030f57ca9d58ef59 | db414c7855dacf923edf60849e413c3e2f572922 | refs/heads/master | 2021-01-12T08:57:19.805317 | 2016-07-02T07:33:44 | 2016-07-02T07:33:44 | 76,732,695 | 0 | 1 | null | 2016-12-17T15:53:07 | 2016-12-17T15:53:07 | null | UTF-8 | C++ | false | false | 824 | h | AbstractNode.h | /**
* - version 1.0
* -------------------------------
* Copyright (C) 2016-2016 by Norman (none_lih@163.com)
* Report bugs and download new versions at https//github.com/evely211
*
* This library is distributed under the MIT License. See notice at the end of this file.
* This work is based on POSIX,which is:
* Copyright (C) 2016,by Norman
*/
#ifndef _ABSTRACTNODE_H_
#define _ABSTRACTNODE_H_
#include <iostream>
#include <vector>
#include <string.h>
using namespace std;
#define MAX_SIZE 256
#define SAFE_DELETE(p) if(p){ delete p; p = NULL;}
const char *const DOWN = "down";
const char *const UP = "up";
const char *const LEFT = "left";
const char *const RIGH = "right";
const char *const MOVE = "move";
const char *const WALK = "walk";
class AbstractNode{
public:
virtual char *Interpret() = 0;
};
#endif
|
7baa0dd9b11d0720aee7f5b8dd73b839eebc1032 | 03b64789ab199ba9e249b0cee16e89f1f6b16289 | /Kalashcode/Score.h | 0d6ba2875fbe4d58c4655e1a8ee8bd845f4d97ab | [] | no_license | mrcapucon/GoogleHashcode | ef521dc7ea0318dead856b1de71581cd0dc7f355 | 15eba638410dc099cba3f69ff9a28c23126b95e1 | refs/heads/master | 2021-01-18T03:33:53.260469 | 2017-03-22T09:59:45 | 2017-03-22T09:59:45 | 85,811,073 | 0 | 0 | null | null | null | null | IBM852 | C++ | false | false | 3,282 | h | Score.h | #pragma once
#include <iostream>
#include <string>
#include <fstream>
#include <sstream>
#include <vector>
#include "Univers.h"
#include "ImagesCollection.h"
#include "Satellite.h"
#include "Utils.h"
int calculerScore(std::string, std::string);
// Fonction qui calcule le score en fonction du nom de fichier sans l'extension
// Par exemple, pour la collection forever_alone --> calculerScore("forever_alone") cherche forever_alone.in et forever_alone.out dans les ressources du projet
// et calcule le score. Pour l'instant dans les ressources, il faudra changer ša
int calculerScore(std::string filepathIN, std::string filepathOUT) {
std::ifstream fichierIN;
fichierIN.open(filepathIN);
Univers u(filepathIN);
std::ifstream fichierOUT;
fichierOUT.open(filepathOUT);
if (fichierOUT.is_open()) std::cout << "File " << filepathOUT << " loaded successfully..." << std::endl;
else std::cout << "Error reading " << filepathOUT << std::endl;
/*if (!fichierIN.is_open()) { std::cout << "FICHIERIN NOTOK" << std::endl;}
else { std::cout << "FICHIERIN OK" << std::endl; }
if (!fichierOUT.is_open()) { std::cout << "FICHIEROUT NOTOK" << std::endl;}
else { std::cout << "FICHIEROUT OK" << std::endl; }*/
std::vector<ImagesCollection> v = u.getListeImagesCollection();
int score = 0, nbPhotos = 0, nbRestant = 0;
std::string line;
bool collectionScored = false, imageFound = false, timeRangeFound = false;
// PARCOURS DE TOUTES LES COLLECTIONS
for (int i = 0; i < v.size(); i++) {
int k = v[i].getImages().size();
int kk = v[i].getTimeRanges().size();
//std::cout << "size of collection:\t" << k << std::endl;
collectionScored = false;
// PARCOURS DE TOUTES LES IMAGES
int j = 0;
while ((j < k) && !collectionScored) {
imageFound = false;
//std::cout << "Image a tester classe:\tlat: " << v[i].getImage(j)[0] << "\tlongi: " << v[i].getImage(j)[1] << std::endl;
collectionScored = false;
getline(fichierOUT, line);
while (getline(fichierOUT, line) && !imageFound) {
int lat, longi, t, id;
std::string linePic = line;
//std::cout << "ligne fichier a tester: " << linePic << std::endl;
std::vector<std::string> varPic;
split(linePic, ' ', varPic);
lat = stoi(varPic[0]);
longi = stoi(varPic[1]);
t = stoi(varPic[2]);
id = stoi(varPic[3]);
//std::cout << "Image a tester fichier:\tlat: " << lat << "\tlongi: " << longi << std::endl;
if (lat == v[i].getImage(j)[0] && longi == v[i].getImage(j)[1]) {
int jj = 0;
while ((jj < kk) && !imageFound) {
if (t >= v[i].getTimeRange(jj)[0] && t <= v[i].getTimeRange(jj)[1]) {
imageFound = true;
}
jj++;
}
//std::cout << "j:\t" << j+1 << std::endl;
if ((j + 1) == k && imageFound) { collectionScored = true; }
}
//std::cout << "MATCH: " << imageFound << std::endl;
varPic.clear();
//std::cout << collectionScored << std::endl;
}
j++;
//std::cout << "SORTIE DE WHILE" << std::endl;
fichierOUT.clear();
//if (!getline(fichierOUT, line))
fichierOUT.seekg(0, std::ios_base::beg);
//std::cout << "SCORED: " << collectionScored << std::endl;
if (collectionScored)
score += v[i].getScore();
//std::cout << "SCORE: " << score << std::endl;
}
}
return score;
} |
b5292936155e540d3b9df961c9c8f4e5bbf63caa | 2d7249c50b3e8cc3821fa20faf629554982424f5 | /Sources/Player.cpp | 50603204f58035bdcf9f43075d06ceb09ec94478 | [
"MIT"
] | permissive | WeyrSDev/CBomberman | 9ea3052232a09e4042ee5d922ea61164a14cb989 | 9aa39da7cc5c3683130d883f953c9b2585acfe42 | refs/heads/master | 2021-07-20T09:27:34.673196 | 2017-09-20T19:05:11 | 2017-09-20T19:05:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,107 | cpp | Player.cpp | #include "../Headers/Player.h"
Player::Player(sf::Texture* txtr, sf::Vector2u imgCount, float switchTime, float speed) :
animatioff(txtr, imgCount, switchTime)
{
this->speed = speed;
row = 0;
faceRight = true;
body.setSize(sf::Vector2f(50.0f, 50.0f));
body.setOrigin(body.getSize() / 2.0f);
body.setPosition(0.0f, 220.0f);
body.setTexture(txtr);
}
Player::~Player()
{
}
void Player::Update(float deltaTime)
{
sf::Vector2f movemnt(0.0f, 0.0f);
if (sf::Keyboard::isKeyPressed(sf::Keyboard::A))
movemnt.x -= speed * deltaTime;
if (sf::Keyboard::isKeyPressed(sf::Keyboard::D))
movemnt.x += speed * deltaTime;
if (sf::Keyboard::isKeyPressed(sf::Keyboard::W))
movemnt.y -= speed * deltaTime;
if (sf::Keyboard::isKeyPressed(sf::Keyboard::S))
movemnt.y += speed * deltaTime;
if (movemnt.x == 0.0f)
row = 0;
else
{
row = 1;
if (movemnt.x > 0.0f)
faceRight = true;
else
faceRight = false;
}
animatioff.Update(row, deltaTime, faceRight);
body.setTextureRect(animatioff.uvRect);
body.move(movemnt);
}
void Player::Draw(sf::RenderWindow& window)
{
window.draw(body);
} |
93bf734a826b9abf76eb00b1b55da62e577c741c | 5e561d21184a0f006892201c10129bbba1795b11 | /streams/stream_ciphers/estream/py/py6.cpp | 3d6359f2743ee17e96ab9dd0c16839a37b8ffc6b | [
"MIT"
] | permissive | crocs-muni/CryptoStreams | c5bf432a14aa161ff2aa6dbfa38448152293ebb1 | b92d96ad16679c24a9402b0d33378d1f318db23a | refs/heads/master | 2022-11-13T06:57:04.333740 | 2022-11-11T20:44:47 | 2022-11-11T20:48:36 | 84,541,435 | 9 | 5 | MIT | 2022-11-11T20:48:37 | 2017-03-10T09:11:32 | C | UTF-8 | C++ | false | false | 13,270 | cpp | py6.cpp | /* py.c */
/* Inventors: Eli Biham and Jennifer Seberry */
/* This cipher is submitted as a response to the */
/* Ecrypt call for stream ciphers */
/* The designers/authors of Py (pronounced Roo) */
/* keep their rights on the design and the name */
/* However, no royalty will be necessary for use */
/* of Py, nor for using the submitted code. */
#include "ecrypt-sync.h"
#include <string.h>
#ifdef DEBUG
#include <stdio.h>
#endif
namespace stream_ciphers {
namespace estream {
/* This is a permutation of all the values between 0 and 255, */
/* used by the key setup and IV setup. */
/* It is computed by the init function. It can also be */
/* computed in advance and put into the code. */
u8 internal_permutation[256];
/*
* Key setup. It is the user's responsibility to select a legal
* keysize and ivsize, from the set of supported value.
*/
void ECRYPT_Py::ECRYPT_keysetup(const u8* key,
u32 keysize, /* Key size in bits. */
u32 ivsize) /* IV size in bits. */
{
PY_ctx* ctx = &_ctx;
int i, j;
u32 s;
ctx->keysize = keysize;
ctx->ivsize = ivsize;
int keysizeb = (keysize + 7) >> 3;
int ivsizeb = (ivsize + 7) >> 3;
#define Y(x) (ctx->KPY[(x) - (YMININD)][0])
s = (u32)internal_permutation[keysizeb - 1];
s = (s << 8) | (u32)internal_permutation[(s ^ (ivsizeb - 1)) & 0xFF];
s = (s << 8) | (u32)internal_permutation[(s ^ key[0]) & 0xFF];
s = (s << 8) | (u32)internal_permutation[(s ^ key[keysizeb - 1]) & 0xFF];
for (j = 0; j < keysizeb; j++) {
s = s + key[j];
u8 s0 = internal_permutation[s & 0xFF];
s = ROTL32(s, 8) ^ (u32)s0;
}
/* Again */
for (j = 0; j < keysizeb; j++) {
s = s + key[j];
u8 s0 = internal_permutation[s & 0xFF];
s ^= ROTL32(s, 8) + (u32)s0;
}
for (i = YMININD, j = 0; i <= YMAXIND; i++) {
s = s + key[j];
u8 s0 = internal_permutation[s & 0xFF];
s = ROTL32(s, 8) ^ (u32)s0;
Y(i) = s;
j++;
if (j < keysizeb)
continue;
j = 0;
}
}
#undef P
#undef Y
/*
* IV setup. After having called ECRYPT_keysetup(), the user is
* allowed to call ECRYPT_ivsetup() different times in order to
* encrypt/decrypt different messages with the same key but different
* IV's.
*/
void ECRYPT_Py::ECRYPT_ivsetup(const u8* iv) {
PY_ctx* ctx = &_ctx;
int i;
u32 s;
int keysize = ctx->keysize;
int ivsize = ctx->ivsize;
int ivsizeb = (ivsize + 7) >> 3;
#define P(x) (((u8*)&(ctx->KPY[x][1]))[0])
#define KY(x) (ctx->KPY[(x) - (YMININD)][0])
#define EIV(x) (((u8*)&(ctx->KPY[x + 64 - ivsizeb][1]))[2])
/* Create an initial permutation */
u8 v = iv[0] ^ ((KY(0) >> 16) & 0xFF);
u8 d = (iv[1 % ivsizeb] ^ ((KY(1) >> 16) & 0xFF)) | 1;
for (i = 0; i < 64; i++) {
P(i) = v & 0x3F;
v += d;
}
v &= 0x3F;
#ifdef DEBUG
/* Check that P is really a permutation */
u8 permcheck[64];
int j;
for (j = 0; j < 64; j++)
permcheck[j] = 0;
for (j = 0; j < 64; j++)
permcheck[P(j)]++;
for (j = 0; j < 64; j++)
if (permcheck[j] != 1)
fprintf(stderr,
"Error in creation of the permutation in ivsetup: %02X appears %d times\n",
j,
permcheck[j]);
#endif
/* Initial s */
s = ((u32)v << 24) ^ ((u32)d << 16) ^ ((u32)P(62) << 8) ^ ((u32)P(63));
s ^= KY(YMININD) + KY(YMAXIND);
for (i = 0; i < ivsizeb; i++) {
s = s + iv[i] + KY(YMININD + i);
u8 s0 = P(s & 0x3F);
EIV(i) = s0;
s = ROTL32(s, 6) ^ (u32)s0;
}
/* Again, but with the last words of KY, and update EIV */
for (i = 0; i < ivsizeb; i++) {
s = s + iv[i] + KY(YMAXIND - i);
u8 s0 = P(s & 0x3F);
EIV(i) += s0;
EIV(i) &= 0x3F;
s = ROTL32(s, 6) ^ (u32)s0;
}
#undef P
#undef Y
#undef EIV
#define P(i8, j) (((u8*)ctx->KPY)[(i8) + 8 * (j) + 4])
/* access P[i+j] where i8=8*i. */
/* P is byte 4 of the 8-byte record */
#define EIV(i8, j) (((u8*)ctx->KPY)[(i8) + 8 * (j + 64 - ivsizeb) + 6])
/* access P[i+j] where i8=8*i. */
/* EIV is byte 6 of the 8-byte record */
#define Y(i8, j) (((u32*)&(((u8*)ctx->KPY)[(i8) + 8 * ((j) - (YMININD))]))[0])
/* access Y[i+j+1] where i8=8*i. */
/* Y is word 0 of the 2-word record */
for (i = 0; i < PYSIZE * 8; i += 8) {
u32 x0 = EIV(i, ivsizeb) = EIV(i, 0) ^ (s & 0x3F);
P(i, 64) = P(i, x0);
P(i, x0) = P(i, 0);
Y(i, YMAXIND + 1) = s = (s ^ Y(i, YMININD)) + Y(i, x0);
}
s = s + Y(i, 8) + Y(i, 21) + Y(i, 48);
if (s == 0)
s = keysize + (ivsize << 16) + 0x87654321;
ctx->s = s;
#ifdef DEBUG
/* Check that P is really a permutation */
/* Assumes that i was not changed after the last loop */
for (j = 0; j < 64; j++)
permcheck[j] = 0;
for (j = 0; j < 64; j++)
permcheck[P(i, j)]++;
for (j = 0; j < 64; j++)
if (permcheck[j] != 1)
fprintf(stderr,
"Error in creation of the permutation in ivsetup: %02X appears %d times\n",
j,
permcheck[j]);
#endif
}
#undef P
#undef Y
#define NUMBLOCKSATONCE 4000 /* A near-optimal value for the static array */
/* All computations are made in multiples of */
/* NUMBLOCKSATONCE*8 bytes, if possible */
static u32 PY[(NUMBLOCKSATONCE + PYSIZE) * 2];
#define P(i8, j) (((u8*)PY)[(i8) + 8 * (j) + 4])
/* access P[i+j] where i8=8*i. */
/* P is byte 4 of the 8-byte record */
#define Y(i8, j) (((u32*)&(((u8*)PY)[(i8) + 8 * ((j) - (YMININD))]))[0])
/* access Y[i+j+1] where i8=8*i. */
/* Y is word 0 of the 2-word record */
void ECRYPT_Py::PY_process_bytes(int action, /* 0 = encrypt; 1 = decrypt; */
void* ctxa,
const u8* input,
u8* output,
u32 msglen) /* Message length in bytes. */
/* If the msglen is not a multiple of 8, this must be */
/* the last call for this stream, or either you will */
/* loose a few bytes */
{
PY_ctx* ctx = (PY_ctx*)ctxa;
int i;
u32 s = ctx->s;
while (msglen >= NUMBLOCKSATONCE * 8) {
memcpy(PY, ctx->PY, PYSIZE * 8);
for (i = 0; i < NUMBLOCKSATONCE * 8; i += 8) {
u32 x0 = (Y(i, 43) & 0x3F);
P(i, 64) = P(i, x0);
P(i, x0) = P(i, 0);
s += Y(i, P(i, 1 + 18));
s -= Y(i, P(i, 1 + 57));
s = ROTL32(s, (P(i, 1 + 26) & 31));
Y(i, YMAXIND + 1) = (s ^ Y(i, YMININD)) + Y(i, P(i, 1 + 48));
s = ROTL32(s, 11);
u32 output1 = (s ^ Y(i, 64)) + Y(i, P(i, 1 + 8));
u8 output1b[4];
U32TO8_LITTLE(output1b, output1);
((u32*)(output + i))[0] = ((u32*)output1b)[0] ^ ((u32*)(input + i))[0];
s = ROTL32(s, 7);
u32 output2 = (s ^ Y(i, -1)) + Y(i, P(i, 1 + 21));
u8 output2b[4];
U32TO8_LITTLE(output2b, output2);
((u32*)(output + i + 4))[0] = ((u32*)output2b)[0] ^ ((u32*)(input + i + 4))[0];
}
memcpy(ctx->PY, ((u8*)PY) + i, PYSIZE * 8);
msglen -= NUMBLOCKSATONCE * 8;
input += NUMBLOCKSATONCE * 8;
output += NUMBLOCKSATONCE * 8;
}
if (msglen > 0) {
memcpy(PY, ctx->PY, PYSIZE * 8);
for (i = 0; i < (msglen & (~7)); i += 8) {
u32 x0 = (Y(i, 43) & 0x3F);
P(i, 64) = P(i, x0);
P(i, x0) = P(i, 0);
s += Y(i, P(i, 1 + 18));
s -= Y(i, P(i, 1 + 57));
s = ROTL32(s, (P(i, 1 + 26) & 31));
Y(i, YMAXIND + 1) = (s ^ Y(i, YMININD)) + Y(i, P(i, 1 + 48));
s = ROTL32(s, 11);
u32 output1 = (s ^ Y(i, 64)) + Y(i, P(i, 1 + 8));
u8 output1b[4];
U32TO8_LITTLE(output1b, output1);
((u32*)(output + i))[0] = ((u32*)output1b)[0] ^ ((u32*)(input + i))[0];
s = ROTL32(s, 7);
u32 output2 = (s ^ Y(i, -1)) + Y(i, P(i, 1 + 21));
u8 output2b[4];
U32TO8_LITTLE(output2b, output2);
((u32*)(output + i + 4))[0] = ((u32*)output2b)[0] ^ ((u32*)(input + i + 4))[0];
}
if (msglen & 7) {
int ii;
u32 x0 = (Y(i, 43) & 0x3F);
P(i, 64) = P(i, x0);
P(i, x0) = P(i, 0);
s += Y(i, P(i, 1 + 18));
s -= Y(i, P(i, 1 + 57));
s = ROTL32(s, (P(i, 1 + 26) & 31));
Y(i, YMAXIND + 1) = (s ^ Y(i, YMININD)) + Y(i, P(i, 1 + 48));
s = ROTL32(s, 11);
u32 output1 = (s ^ Y(i, 64)) + Y(i, P(i, 1 + 8));
u8 outputb[8];
U32TO8_LITTLE(outputb, output1);
s = ROTL32(s, 7);
u32 output2 = (s ^ Y(i, -1)) + Y(i, P(i, 1 + 21));
U32TO8_LITTLE(outputb + 4, output2);
for (ii = 0; ii < (msglen & 7); ii++)
(output + i)[ii] = outputb[ii] ^ (input + i)[ii];
}
memcpy(ctx->PY, ((u8*)PY) + i, PYSIZE * 8);
}
ctx->s = s;
}
void ECRYPT_Py::PY_keystream_bytes(PY_ctx* ctx,
u8* keystream,
u32 length) /* Length of keystream in bytes. */
/* If the length is not a multiple of 8, this must be the */
/* last call for this stream, or either you will loose a few bytes */
{
int i;
u32 s = ctx->s;
while (length >= NUMBLOCKSATONCE * 8) {
memcpy(PY, ctx->PY, PYSIZE * 8);
for (i = 0; i < NUMBLOCKSATONCE * 8; i += 8) {
u32 x0 = (Y(i, 43) & 0x3F);
P(i, 64) = P(i, x0);
P(i, x0) = P(i, 0);
s += Y(i, P(i, 1 + 18));
s -= Y(i, P(i, 1 + 57));
s = ROTL32(s, (P(i, 1 + 26) & 31));
Y(i, YMAXIND + 1) = (s ^ Y(i, YMININD)) + Y(i, P(i, 1 + 48));
s = ROTL32(s, 11);
u32 output1 = (s ^ Y(i, 64)) + Y(i, P(i, 1 + 8));
U32TO8_LITTLE(keystream + i, output1);
s = ROTL32(s, 7);
u32 output2 = (s ^ Y(i, -1)) + Y(i, P(i, 1 + 21));
U32TO8_LITTLE(keystream + i + 4, output2);
}
memcpy(ctx->PY, ((u8*)PY) + i, PYSIZE * 8);
length -= NUMBLOCKSATONCE * 8;
keystream += NUMBLOCKSATONCE * 8;
}
if (length > 0) {
memcpy(PY, ctx->PY, PYSIZE * 8);
for (i = 0; i < (length & (~7)); i += 8) {
u32 x0 = (Y(i, 43) & 0x3F);
P(i, 64) = P(i, x0);
P(i, x0) = P(i, 0);
s += Y(i, P(i, 1 + 18));
s -= Y(i, P(i, 1 + 57));
s = ROTL32(s, (P(i, 1 + 26) & 31));
Y(i, YMAXIND + 1) = (s ^ Y(i, YMININD)) + Y(i, P(i, 1 + 48));
s = ROTL32(s, 11);
u32 output1 = (s ^ Y(i, 64)) + Y(i, P(i, 1 + 8));
U32TO8_LITTLE(keystream + i, output1);
s = ROTL32(s, 7);
u32 output2 = (s ^ Y(i, -1)) + Y(i, P(i, 1 + 21));
U32TO8_LITTLE(keystream + i + 4, output2);
}
if (length & 7) {
int ii;
u32 x0 = (Y(i, 43) & 0x3F);
P(i, 64) = P(i, x0);
P(i, x0) = P(i, 0);
s += Y(i, P(i, 1 + 18));
s -= Y(i, P(i, 1 + 57));
s = ROTL32(s, (P(i, 1 + 26) & 31));
Y(i, YMAXIND + 1) = (s ^ Y(i, YMININD)) + Y(i, P(i, 1 + 48));
s = ROTL32(s, 11);
u32 output1 = (s ^ Y(i, 64)) + Y(i, P(i, 1 + 8));
u8 outputb[8];
U32TO8_LITTLE(outputb, output1);
s = ROTL32(s, 7);
u32 output2 = (s ^ Y(i, -1)) + Y(i, P(i, 1 + 21));
U32TO8_LITTLE(outputb + 4, output2);
for (ii = 0; ii < (length & 7); ii++)
(keystream + i)[ii] = outputb[ii];
}
memcpy(ctx->PY, ((u8*)PY) + i, PYSIZE * 8);
}
ctx->s = s;
}
#undef P
#undef Y
void ECRYPT_Py::ECRYPT_init(void) {
int i;
u8 j = 0;
static u8 str[] =
"This is the seed for generating the fixed internal permutation for Py. "
"The permutation is used in the key setup and IV setup as a source of nonlinearity. "
"The shifted special keys on a keyboard are ~!@#$%^&*()_+{}:|<>?";
u8* p = str;
for (i = 0; i < 256; i++)
internal_permutation[i] = i;
for (i = 0; i < 256 * 16; i++) {
j += p[0];
u8 tmp = internal_permutation[i & 0xFF];
internal_permutation[i & 0xFF] = internal_permutation[j & 0xFF];
internal_permutation[j & 0xFF] = tmp;
p++;
if (p[0] == 0)
p = str;
}
}
void ECRYPT_Py::ECRYPT_encrypt_bytes(const u8* plaintext, u8* ciphertext, u32 msglen) {
PY_process_bytes(0, &_ctx, plaintext, ciphertext, msglen);
}
void ECRYPT_Py::ECRYPT_decrypt_bytes(const u8* ciphertext, u8* plaintext, u32 msglen) {
PY_process_bytes(1, &_ctx, ciphertext, plaintext, msglen);
}
} // namespace estream
} // namespace stream_ciphers
|
d122c80daac326e4732c21196be42de029f3d5aa | f390eab7e59d3c10e88161c388b8024c2b04874a | /Algoritmo/Trabalho Algoritmo/Atividade 01/SalarioLiquido.cpp | 7867f8b7e7f40b18aeed1e292dc970efa240e01d | [] | no_license | Bryant-Anjos/Fatec | 198bb5c49bc04297806cf0a516cffba34eedebfa | d2da865b17dd239c9f5ee5894b445b118147d862 | refs/heads/master | 2020-03-22T06:29:35.652257 | 2019-10-15T13:33:46 | 2019-10-15T13:33:46 | 139,638,361 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 381 | cpp | SalarioLiquido.cpp | #include <stdio.h>
main()
{
float bruto, liquido;
int funcionario;
for (funcionario = 1; funcionario <= 100; funcionario++)
{
printf("Digite o salario bruto do funcionario %d: ", funcionario);
scanf("%f",&bruto);
liquido = bruto - bruto * 0.2;
printf("\nO salario liquido do funcionario %d eh de RS %.2f \n\n", funcionario, liquido);
}
return 0;
}
|
441470975957cc764399323042c8770923595ef7 | d4b0364977c3ce73376f80c13b95579031a9ff9f | /my_httplib/http1.0.hpp | 55b21611f27ccc35f126985141e330f5e0b69171 | [] | no_license | xiaotaohe/Project | f0845f9a09e8b21d5eb2f57caeae49d8cf7c7083 | dabb352561ceef0c1d619947ee3cda681e0077d0 | refs/heads/master | 2020-05-26T11:01:58.010062 | 2020-03-29T06:24:58 | 2020-03-29T06:24:58 | 188,208,581 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,009 | hpp | http1.0.hpp | /*************************************************************************
> File Name: http0.hpp
> Author: 陶超
> Mail: taochao1997@qq.com
> Created Time: Fri 21 Jun 2019 01:30:42 AM PDT
************************************************************************/
#include"tcp.hpp"
#include"show_error.hpp"
#include<iostream>
#include<stdio.h>
#include<unistd.h>
#include<fcntl.h>
#include<sys/fcntl.h>
#include<sys/types.h>
#include<stdlib.h>
#include<string.h>
#include<assert.h>
#include<sys/stat.h>
#include<sys/sendfile.h>
#include<string.h>
#include<pthread.h>
#include<atomic>
using namespace std;
#define BUF_MAX 1024
#define METHOD 10
void handler_get(int sock,char* path);
void handler_post(int sock,char* path);
//解析时要保存的数据
char* method = new char[METHOD],*query_string = new char[BUF_MAX],*path = new char[BUF_MAX];
void clear_tmp()
{
delete method;
delete query_string;
delete path;
}
//1.处理含有可执行程序的请求
void go_exe(char* path,char html[])
{
//1.子进程进行程序替换,将结果写入管道
//2.父进程读去结果写入html
//通过管道,将可执行程序的结果,写入html
int fd[2];
pipe(fd);
char new_path[BUF_MAX];
sprintf(new_path,"./%s",path);
pid_t pid = fork();
if(pid == 0)
{
//子进程进行程序替换
//子进程写入结果
close(fd[0]);
dup2(fd[1],1);
execlp(new_path,new_path,NULL);
}
else
{
close(fd[1]);
wait(pid);
int rz = read(fd[0],html,BUF_MAX);
}
}
//2.解析http请求报文,按行获取
int get_line(int sock,char line[],int num)
{
assert(line);
assert(num>0);
char c = 'A';
int i = 0;
while(i<num-1 && c!='\n')
{
int s = recv(sock,&c,1,0);
if(s > 0)
{
if(c == '\r')
{
//窥探
recv(sock,&c,1,MSG_PEEK);
if(c == '\n')
recv(sock,&c,1,0);
else
c = '\n';
}
line[i++] = c;
}
}
line[i] = '\0';
return i;
}
//3.清除报头
void clear_header(int sock)
{
char line[BUF_MAX];
do{
get_line(sock,line,1023);
}while(strcmp(line,"\n"));
}
//4.获取首行
int get_first(int sock,char line[],int num)
{
return get_line(sock,line,num);
}
//5.分析http的请求方法
void parse_method(char first[],char** method,char** query_string,char** path = NULL, int num = 0)
{
int i = 0;
char* url = NULL;
char* version = NULL;
int index = 0;
*method = first;
//1.分离出method //GET http:// ?zhangsan=nan&sex=nan HTTP/1.0 ---> GET
while(i<num-1 && first[i] != ' ')
i++;
first[i++] = '\0';
//2.分离url
url = first+i;
while(i<num-1 && first[i] != ' ' && first[i] != '?')
i++;
if(first[i] == '?')
{
first[i++] = '\0';
*query_string = first+i;
while(i<num-1 &&first[i] != ' ')
i++;
}
first[i++] = '\0';
//3.分离出协议版本
version = first+i;
if(path != NULL){
*path = url;
}
//用于测试分析
/*
cout<<"url: "<<url<<endl;
cout<<"version: "<<version<<endl;
*/
}
//6.请求的分流
void* handler(void* arg)
{
cout<<"handler run"<<endl;
char buf[BUF_MAX];
//1.先获取首行进行分析
int sock = *((int*)arg);
cout<<"client_sock: "<<sock<<endl;
int num = get_first(sock,buf,1023);
parse_method(buf,&method,&query_string,&path,num);
cout<<path<<endl;
if(strcmp(method,"GET") == 0)
{
cout<<"get_func"<<endl;
handler_get(sock,path);
close(sock);
return NULL;
}
else if(strcmp(method,"POST") == 0)
{
handler_post(sock,path);
close(sock);
return NULL;
}
return NULL;
}
//7.错误页处理
void echo_error(int sock,int error)/*{{{*/
{
switch(error)
{
case 400:
break;
case 403:
break;
case 404:
{
cout<<"send over!"<<endl;
show_404(sock);
break;
}
}
}/*}}}*/
//8.处理本地要回显给浏览器的文件
void show_file(int sock,char* path)
{
//1.先处理html文件
struct stat st;
bool n_is_file = false;
if(stat(path,&st)<0)
n_is_file = true;
cout<<"size: "<<st.st_size<<endl;
//2.构造html页面
char buf[BUF_MAX];
sprintf(buf,"HTTP/1.0 200 OK\r\n");
send(sock,buf,strlen(buf),0);
sprintf(buf,"Content-Type:text/html;charset=utf-8\r\n");
send(sock,buf,strlen(buf),0);
sprintf(buf,"\r\n");
send(sock,buf,strlen(buf),0);
int fd = open(path,O_RDONLY);
//1.如果是文件
if(!n_is_file)
sendfile(sock,fd,NULL,st.st_size);
//2.如果是输出结果
else
{
sprintf(buf,"<html><body style=\"font-size:80px\">%s</body></html>",path);
send(sock,buf,strlen(buf),0);
}
cout<<"sendfile over!"<<endl;
//close(sock);//所有的关闭client_sock统一由handler处理
}
//9.处理get方法
void handler_get(int sock,char* path_ptr)
{
//1.根据需要,此时的报头就不再处理了
clear_header(sock);
//2.拼接路径
char path[BUF_MAX] = {0};
sprintf(path,"wwwroot%s",path_ptr);
cout<<"ptah: "<<path<<endl;
struct stat st;
//3.判断文件/目录属性
if(stat(path,&st)<0)//文件不存在
{
cout<<"file not existed!"<<endl;
echo_error(sock,404);
goto end;
}
else
{
//1.判断文件文件的可读性
if(!(st.st_mode & S_IROTH))
{
echo_error(sock,404);
goto end;
}
if(S_ISDIR(st.st_mode)){
struct stat st_index;
strcat(path,"/index.html");
if(stat(path,&st_index)<0)
{
echo_error(sock,404);
goto end;
}
}
//判断是否为可执行程序,约定可执行程序后缀为.exe
char* exe = path+(strlen(path)-4);
cout<<"exe: "<<exe<<endl;
if(strcmp(exe,".exe") == 0)
{
//1.是exe文件,先判断是否存在
struct stat st;
if(stat(path,&st)<0)
echo_error(sock,404);
else
{
cout<<"this is exe file"<<endl;
char html[BUF_MAX];
go_exe(path,html);//执行
show_file(sock,html);
}
goto end;
}
}
cout<<"show_file"<<endl;
show_file(sock,path);//发送文件
cout<<"path:\t"<<path<<endl;
end:
{}
}
//10.处理post方法
void handler_post(int sock,char* path)
{}
void* start(void* arg)
{
int sock = *((int*)arg);
handler(&sock);
close(sock);
}
class Http_Server
{
public:
Http_Server(const string& ip,uint16_t port)
:server(NULL)
{
server = new Server(ip,port);
if(server == NULL)
{
cout<<"Server create error!";
exit(-1);
}
}
~Http_Server()
{
clear_tmp();
delete server;
}
void Http_Work()
{
//1.采用多线程模型
cout<<"server start...."<<endl;
int client_sock;
while(1)
{
server->Accept(&client_sock);
cout<<"get new link...."<<endl;
//2.通过子线程来服务新连接
pthread_t ret = 0;
pthread_create(&ret,NULL,&start,(void*)&client_sock);
pthread_detach(ret);
}
}
private:
Server* server;
};
|
c7be6e79373e1f15b6f185857b42e37c127ffb19 | ec44b61e4552ff446d89dcbf898a3dbb4afd0ad9 | /client/client_app.h | 97351b408a5d1034e76cc9fbe872ed3a71ff862f | [] | no_license | napalm201905/cef_browser | e3d98a90cc64128ec3256ed365582873b8654cbe | 42679f0b7e0f54501c6b33031482ababac6c4b42 | refs/heads/master | 2020-06-24T00:20:41.235650 | 2017-08-03T15:21:58 | 2017-08-03T15:21:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,416 | h | client_app.h | // Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#pragma once
#include "include/cef_app.h"
class ClientApp :
public CefApp,
public CefBrowserProcessHandler,
public CefRenderProcessHandler,
public CefV8Handler
{
public:
ClientApp();
// CefApp methods:
// CefApp methods:
virtual CefRefPtr<CefBrowserProcessHandler> GetBrowserProcessHandler()
OVERRIDE {
return this;
}
virtual CefRefPtr<CefRenderProcessHandler> GetRenderProcessHandler()
OVERRIDE {
return this;
}
// CefBrowserProcessHandler methods:
virtual void OnContextInitialized() OVERRIDE;
// CefRenderProcessHandler methods:
virtual void OnContextCreated(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame,
CefRefPtr<CefV8Context> context) OVERRIDE;
virtual void OnWebKitInitialized() OVERRIDE;
virtual bool OnProcessMessageReceived(CefRefPtr<CefBrowser> browser,
CefProcessId source_process,
CefRefPtr<CefProcessMessage> message) OVERRIDE;
//CefV8Handler
virtual bool Execute(const CefString& name,
CefRefPtr<CefV8Value> object,
const CefV8ValueList& arguments,
CefRefPtr<CefV8Value>& retval,
CefString& exception) OVERRIDE;
private:
// Include the default reference counting implementation.
IMPLEMENT_REFCOUNTING(ClientApp);
};
|
14b68f2df609ca6a8f7de7d4f6ec49242fe69d63 | 4afd8f383a9548ddece248bd7c08246e8ce62fce | /gcf/test/gcf/src/gcf/tab/BinaryLoader.h | 98b9b67a0d22382c7011af35fcd94e6c1b458648 | [] | no_license | xuantao/small-idea | 4f161ae77eadf846e50a3ba8e50f38428cb014d6 | a421668bee717bd07880aa6606ebf0d9fd7d867f | refs/heads/master | 2020-06-22T06:29:39.837841 | 2020-05-20T15:43:44 | 2020-05-20T15:43:44 | 74,754,319 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,061 | h | BinaryLoader.h | #pragma once
#include "TabDef.h"
#include "../serialize/SerUtility.h"
#include "../serialize/SerBinary.h"
#include "../serialize/SerMemoryStream.h"
namespace tab
{
template <class Ty>
class BinaryLoader : public ILoader<Ty>
{
public:
bool Setup(const void* data, size_t size)
{
if (!_stream.Init(data, size))
return false;
serialize::BinaryReader reader(&_stream);
if (!reader.Read(_count, nullptr))
return false;
if (_count == 0)
return false;
return true;
}
public:
virtual bool Load(Ty& val)
{
if (_index == _count)
return false;
serialize::BinaryReader reader(&_stream);
if (!serialize::utility::Read(reader, val, nullptr))
return false;
++_index;
return true;
}
protected:
int _index = 0;
int _count = 0;
serialize::MemoryReadOnly _stream;
};
}
|
b034f668fdf73644c391e8ae52c05d1178831d90 | c2ed15b173e6c382aa5ff27c6771d6b27d98f5d8 | /Advanced/Lab09/09-05/Slopes.h | 0bff7acb9811abe1c47b1ad56c67227bf7b6bad8 | [] | no_license | Odinra/Intro-and-Advance-C- | 998eb1049ed4e0198c4c6896215c2a9e205ef44c | 9272be2375af363529201f00f12a73e06a2f56e6 | refs/heads/master | 2020-04-05T05:16:34.632060 | 2015-07-06T18:23:35 | 2015-07-06T18:23:35 | 38,602,358 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 338 | h | Slopes.h | /* Christopher King
Section 1031
Snow condition Structure Header
CK 05/08/12 - 12:55-01:42 Started Program
CK 05/10/12 - 11:00ish - 11:37 Finished product
*/
#ifndef SLOPES_H
#define SLOPES_H
#include <string>
using namespace std;
struct Slopes
{
string sMonth;
int iDate[7];
double dBase[7];
void setDates(int startDate);
};
#endif
|
e50d52f83c6066abd765d9adde307c95e4de503b | b059cd4dfca19b0798a76428d8f36555de2ac9b1 | /max.cpp | 6c5138c864b7e04ce07746de25bdc0fbbb18e4e2 | [] | no_license | SakshiRathore982/data-structure | e66f0f9e5a9edb5ec7228bf4d57abb0ee4c8cd81 | 1ba6341c238eac2003f8e1053d538637cb33e1da | refs/heads/main | 2023-04-04T04:10:50.018178 | 2021-04-18T18:27:59 | 2021-04-18T18:27:59 | 336,478,744 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 410 | cpp | max.cpp | #include<iostream>
using namespace std;
int main()
{
int arr[] = {4, 45, 30, 60, 20, 8};
int max1=0,max2=0;
for(int i=0;i<sizeof(arr)/sizeof(arr[0]);i++)
{
if(arr[i]>max1 )
{
max2=max1;
max1=arr[i];
}
else if(arr[i]>max2 && arr[i]!=max1)
{
max2=arr[i];
}
}
cout<<max1<<" "<<max2;
return 0;
}
|
4cf50f64019aed912868e5de12d7a62b99246a30 | 86dd7ae97c6f222048034faa26860335faa5b582 | /01_C++ 基礎入門/02 整型/Project2/04 字符型.cpp | 253c32acaee4a71f3931f200dc47307d24acaea4 | [] | no_license | XinTWK/CPP-prac | d13f980c45a81fd76d4126563501230146731906 | 52b5e7138c47b071536cd8d88054aa2e55d7fac0 | refs/heads/main | 2023-06-23T16:43:52.333444 | 2021-07-17T06:18:11 | 2021-07-17T06:18:11 | 383,211,963 | 0 | 0 | null | null | null | null | BIG5 | C++ | false | false | 275 | cpp | 04 字符型.cpp | #include <iostream>
using namespace std;
int main4() {
char ch = 'A';
cout << ch << endl;
cout << "char字符形變量所佔內存: " << sizeof(char) << endl;
//字元變數對應ASCII編碼
//a-97
//A-65
cout << (int)ch << endl;
system("pause");
return 0;
} |
d04afbaf709b40de92d216b3dee8fd4b71d1d799 | 010279e2ba272d09e9d2c4e903722e5faba2cf7a | /library/cpp/threading/future/wait/wait-inl.h | 2753d5446cc2b913806fe59d5da2fef54a38fa50 | [
"Apache-2.0"
] | permissive | catboost/catboost | 854c1a1f439a96f1ae6b48e16644be20aa04dba2 | f5042e35b945aded77b23470ead62d7eacefde92 | refs/heads/master | 2023-09-01T12:14:14.174108 | 2023-09-01T10:01:01 | 2023-09-01T10:22:12 | 97,556,265 | 8,012 | 1,425 | Apache-2.0 | 2023-09-11T03:32:32 | 2017-07-18T05:29:04 | Python | UTF-8 | C++ | false | false | 1,155 | h | wait-inl.h | #pragma once
#if !defined(INCLUDE_FUTURE_INL_H)
#error "you should never include wait-inl.h directly"
#endif // INCLUDE_FUTURE_INL_H
namespace NThreading {
namespace NImpl {
template <typename TContainer>
TVector<TFuture<void>> ToVoidFutures(const TContainer& futures) {
TVector<TFuture<void>> voidFutures;
voidFutures.reserve(futures.size());
for (const auto& future: futures) {
voidFutures.push_back(future.IgnoreResult());
}
return voidFutures;
}
}
template <typename TContainer>
[[nodiscard]] NImpl::EnableGenericWait<TContainer> WaitAll(const TContainer& futures) {
return WaitAll(NImpl::ToVoidFutures(futures));
}
template <typename TContainer>
[[nodiscard]] NImpl::EnableGenericWait<TContainer> WaitExceptionOrAll(const TContainer& futures) {
return WaitExceptionOrAll(NImpl::ToVoidFutures(futures));
}
template <typename TContainer>
[[nodiscard]] NImpl::EnableGenericWait<TContainer> WaitAny(const TContainer& futures) {
return WaitAny(NImpl::ToVoidFutures(futures));
}
}
|
87170efc5a16fa17b835ff0160f7a87c631b1579 | 4bebd8afd27db2237ca3a0d276ffd9100511ce3d | /源代码/seetaface/qdlglogin.h | e1905bc040df0df257c80dfacf7884f8176e5fa1 | [] | no_license | qaz734913414/Shopping-mall-payment-system | ec8a000e6f4c54b71b7a573783474916b41e8d33 | d4bc31efe35435e2ff7117734547fd772cf67cf9 | refs/heads/master | 2022-11-16T08:47:20.458264 | 2020-07-16T11:33:19 | 2020-07-16T11:33:19 | 291,867,879 | 2 | 0 | null | 2020-09-01T01:47:44 | 2020-09-01T01:47:43 | null | UTF-8 | C++ | false | false | 504 | h | qdlglogin.h | #ifndef QDLGLOGIN_H
#define QDLGLOGIN_H
#include <QDialog>
#include <QMessageBox>
#include <QSqlDatabase>
#include <QSqlTableModel>
#include <QDebug>
#include "g.h"
namespace Ui {
class QDlgLogin;
}
class QDlgLogin : public QDialog
{
Q_OBJECT
private:
int m_tryCount = 0;//试错次数
public:
explicit QDlgLogin(QWidget *parent = 0);
~QDlgLogin();
private slots:
void on_btnOk_clicked();
void on_btnExit_clicked();
private:
Ui::QDlgLogin *ui;
};
#endif // QDLGLOGIN_H
|
c3d33248520202e7f0aad12a6f676701d92d3ca2 | 2868b9c83758c746233305cb6874d8bdd5d3dc05 | /week6/main.cpp | daa47eed844c99b6a3aaaad746c407a795c51115 | [] | no_license | schmcory/CS161 | b5671fe169ba71d4c8716da276479a819592a455 | bd8aba7b5aecfc24b0286a032331d35b70bc33f7 | refs/heads/master | 2020-07-05T23:02:28.825182 | 2019-08-18T16:00:37 | 2019-08-18T16:00:37 | 202,810,019 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 662 | cpp | main.cpp | #include "player.hpp"
#include "team.hpp"
#include <iostream>
int main() {
Player p1("Charlotte", 24, 10, 7);
Player p2("Emily", 21, 13, 9);
Player p3("Anne", 20, 10, 8);
Player p4("Jane", 19, 10, 10);
Player p5("Mary", 18, 11, 8);
p1.setRebounds(9);
p2.setRebounds(5);
p3.setRebounds(14);
p4.setRebounds(3);
p5.setRebounds(12);
Team team1(p1, p2, p3, p4, p5);
Player p1 = team1.getShootingGuard();
std::cout << "Name: " << p1.getName() << std::endl;
std::cout << "Points: " << p1.getPoints() << std::endl;
std::cout << "Rebounds: " << p1.getRebounds() << std::endl;
std::cout << "Assists: " << p1.getAssists() << std::endl;
}
|
29b9b31a94a0eac6741cf9a5cc9bb981920bac75 | b8d438bea9a3dd601ca0fd4b3e3d893f8926201d | /C_C++/Samsung/StackQueue/Bai1.cpp | caa676611b734774fde0221a07876bbb36a56f10 | [] | no_license | lng8212/DSA | dfa43e6ab3cd4f4b81f16dd52820dcaaa3ce410c | affd23596e19cc1595b3a8f339163621e9ceb3b1 | refs/heads/main | 2023-06-16T09:52:35.363218 | 2021-07-17T08:44:26 | 2021-07-17T08:44:26 | 386,876,462 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 698 | cpp | Bai1.cpp | #include<bits/stdc++.h>
using namespace std;
int main (){
int T;
cin >>T;
while (T--){
string a;
cin >>a;
stack <char> check ;
for (int i=0;i<a.size();i++){
if (a[i]=='(') check.push(a[i]);
if (a[i]==')'){
if (check.size()!=0 && check.top()=='('){
check.pop();
}
else check.push(a[i]);
}
}
int d1=0,d2=0;
while (check.size()){
if (check.top()=='(') d1++;
else d2++;
check.pop();
}
int sum = d1/2+d2/2+d1%2+d2%2;
cout <<sum<<endl;
}
return 0;
} |
f95143518d01c978b8526520e2ee4f9b77807c2b | 81c66c9c0b78f8e9c698dcbb8507ec2922efc8b7 | /src/tysh/TyTcl.cc | 8ab0d956d32ae6df203cc789f17d09a04e61df13 | [
"MIT-Modern-Variant"
] | permissive | Argonnite/ptolemy | 3394f95d3f58e0170995f926bd69052e6e8909f2 | 581de3a48a9b4229ee8c1948afbf66640568e1e6 | refs/heads/master | 2021-01-13T00:53:43.646959 | 2015-10-21T20:49:36 | 2015-10-21T20:49:36 | 44,703,423 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,455 | cc | TyTcl.cc | /**************************************************************************
Version identification:
@(#)TyTcl.cc 1.5 08/24/98
Programmer: Edward A. Lee (based on code by Alan Kamas and Joe Buck)
This file implements in a class C++ extensions to Tcl used
in the Tycho system. The constructor registers these
commands with the interpreter passed as a argument.
Copyright (c) 1990-1995 The Regents of the University of California.
All rights reserved.
Permission is hereby granted, without written agreement and without
license or royalty fees, to use, copy, modify, and distribute this
software and its documentation for any purpose, provided that the
above copyright notice and the following two paragraphs appear in all
copies of this software.
IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
ENHANCEMENTS, OR MODIFICATIONS.
PT_COPYRIGHT_VERSION_2
COPYRIGHTENDKEY
**************************************************************************/
static const char file_id[] = "TyTcl.cc";
#ifdef __GNUG__
#pragma implementation
#endif
#include "TyTcl.h"
#include "tk.h"
#include <string.h> // sol2.cfront wants this for strcpy()
// FIXME: This include is only needed for the "quote" macro
// Seems silly to include so much extra baggage - aok
#include "isa.h"
// we want to be able to map Tcl_interp pointers to TyTcl objects.
// this is done with a table storing all the TyTcl objects.
// for now, we allow up to MAX_TyTcl TyTcl objects at a time.
const int MAX_TyTcl = 10;
static TyTcl* ptable[MAX_TyTcl];
/////////////////////////////////////////////////////////////////////////
// FIXME: What we really want here is a way to check a font to see
// whether it exists. Here, we actually allocate the font. This
// implies that we should also free it later. So this function is
// not used for now.
//
// Tcl callable functions. If you add functions here, be sure to
// add them to the TyTcl.h file and the funcTable below.
int TyTcl::ptkCheckFont(int argc, char** argv) {
if (argc != 2) return usage ("ptkCheckFont <fontName>");
#if TCL_MAJOR_VERSION < 8
XFontStruct *xf = Tk_GetFontStruct(interp, tkwin, argv[1]);
#else
Tk_Font xf = Tk_GetFont(interp,tkwin,argv[1]);
#endif
if (!xf) {
result("");
} else {
#if TCL_MAJOR_VERSION < 8
result(Tk_NameOfFontStruct(xf));
#else
result(Tk_NameOfFont(xf));
#endif
}
return TCL_OK;
}
/////////////////////////////////////////////////////////////////////
// Given a pointer to an interpreter, identify the corresponding TyTcl object.
TyTcl* TyTcl::findTyTcl(Tcl_Interp* arg) {
for (int i = 0; i < MAX_TyTcl; i++)
if (ptable[i]->interp == arg) return ptable[i];
return 0;
}
void TyTcl::makeEntry() {
int i = 0;
while (ptable[i] != 0 && i < MAX_TyTcl) i++;
if (i >= MAX_TyTcl) return;
ptable[i] = this;
}
void TyTcl::removeEntry() {
for (int i = 0; i < MAX_TyTcl; i++) {
if (ptable[i] == this) {
ptable[i] = 0;
}
}
}
/////////////////////////////////////////////////////////////////////
// constructor
TyTcl::TyTcl(Tcl_Interp* i, Tk_Window tk)
{
interp = i;
tkwin = tk;
// FIXME: check for validity of interpreter here
// may want to create interp if pointer invalid
// if so, set myInterp True
myInterp = 0;
makeEntry();
registerFuncs();
}
// destructor
TyTcl::~TyTcl() {
removeEntry();
if (myInterp) {
Tcl_DeleteInterp(interp);
interp = 0;
}
}
////////////////////////////////////////////////////////////////////////
// An InterpFuncP is a pointer to a Tcl Obj function that takes an argc-argv
// argument list and returns TCL_OK or TCL_ERROR.
typedef int (TyTcl::*InterpFuncP)(int,char**);
struct InterpTableEntry {
char* name;
InterpFuncP func;
};
// These macros define entries for the table
#define ENTRY(verb) { quote(verb), &TyTcl::verb }
// synonyms or overloads on argv[0]
#define ENTRY2(verb,action) { quote(verb), &TyTcl::action }
// Here is the table. Make sure it ends with "0,0"
static InterpTableEntry funcTable[] = {
ENTRY(ptkCheckFont),
{ 0, 0 }
};
// register all the functions.
void TyTcl::registerFuncs() {
int i = 0;
while (funcTable[i].name) {
Tcl_CreateCommand (interp, funcTable[i].name,
TyTcl::dispatcher, (ClientData)i, 0);
i++;
}
}
// dispatch the functions.
int TyTcl::dispatcher(ClientData which,Tcl_Interp* interp,int argc,char* argv[])
{
TyTcl* obj = findTyTcl(interp);
if (obj == 0) {
strcpy(interp->result,
"Internal error in TyTcl::dispatcher!");
return TCL_ERROR;
}
int i = int(which);
// this code makes an effective stack of active Tcl interpreters.
return (obj->*(funcTable[i].func))(argc,argv);
}
|
e2f76e5f1817e0cc1eb93051f9b41e4035bb079e | db6f3e6486ad8367c62163a4f124da185a64ab5d | /include/retdec/llvmir2hll/graphs/cfg/cfg_writer.h | 46442b561e31934130f27a94589fd494b3aa577a | [
"MIT",
"Zlib",
"JSON",
"LicenseRef-scancode-unknown-license-reference",
"MPL-2.0",
"BSD-3-Clause",
"GPL-2.0-only",
"NCSA",
"WTFPL",
"BSL-1.0",
"LicenseRef-scancode-proprietary-license",
"Apache-2.0"
] | permissive | avast/retdec | c199854e06454a0e41f5af046ba6f5b9bfaaa4b4 | b9791c884ad8f5b1c1c7f85c88301316010bc6f2 | refs/heads/master | 2023-08-31T16:03:49.626430 | 2023-08-07T08:15:07 | 2023-08-14T14:09:09 | 113,967,646 | 3,111 | 483 | MIT | 2023-08-17T05:02:35 | 2017-12-12T09:04:24 | C++ | UTF-8 | C++ | false | false | 1,535 | h | cfg_writer.h | /**
* @file include/retdec/llvmir2hll/graphs/cfg/cfg_writer.h
* @brief A base class of all control-flow graph (CFG) writers.
* @copyright (c) 2017 Avast Software, licensed under the MIT license
*/
#ifndef RETDEC_LLVMIR2HLL_GRAPHS_CFG_CFG_WRITER_H
#define RETDEC_LLVMIR2HLL_GRAPHS_CFG_CFG_WRITER_H
#include <map>
#include <ostream>
#include <string>
#include "retdec/llvmir2hll/graphs/cfg/cfg.h"
#include "retdec/llvmir2hll/support/smart_ptr.h"
#include "retdec/utils/non_copyable.h"
namespace retdec {
namespace llvmir2hll {
/**
* @brief A base class of all control-flow graph (CFG) writers.
*
* Every CFG writer should subclass this class and override emitCFG().
*
* Instances of this class have reference object semantics.
*/
class CFGWriter: private retdec::utils::NonCopyable {
public:
virtual ~CFGWriter() = default;
/**
* @brief Returns the ID of the writer.
*/
virtual std::string getId() const = 0;
/**
* @brief Emits the given CFG into the given output stream.
*
* The format of the written data depends on the subclass of this class.
*
* @return @c true if some code has been emitted, @c false otherwise.
*/
virtual bool emitCFG() = 0;
protected:
/// Mapping between a node and its label.
using NodeLabelMapping = std::map<ShPtr<CFG::Node>, std::string>;
protected:
CFGWriter(ShPtr<CFG> cfg, std::ostream &out);
protected:
/// CFG to be emitted.
ShPtr<CFG> cfg;
/// Stream, where the resulting CFG will be emitted.
std::ostream &out;
};
} // namespace llvmir2hll
} // namespace retdec
#endif
|
44266ce130e10bdeab058a02119f823741fe4c0d | 5ecc22627a3b94bcd3d61d529525791b3433c101 | /Numbers and Series/Patterns/Pattern 2.0/invertedpattern.cpp | 3d83d5bf2eded9b3d441e33b0204a8b5da19422a | [] | no_license | bashu22tiwari/Apna-College | c4ef6b41e25024b9108dfd39c71015131899aab2 | 82a5018b9c2f27770b08b68cdb896338c47959f2 | refs/heads/main | 2023-08-03T07:19:59.686927 | 2021-09-23T06:40:49 | 2021-09-23T06:40:49 | 328,662,653 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 544 | cpp | invertedpattern.cpp | // In this we are going to make a inverted pattern suing the numbers
#include<iostream>
using namespace std;
int main()
{
int n;
cout << "Enter n\n" ;
cin >> n ;
int a;
for (int i = 1; i <= n; i++)
{
a=0;
for (int j=1 ; j <= n ; j++)
{
if (i+j <= n+1)
{
++a;
cout << a << " ";
}
else
{
cout << " " ;
}
}
cout << "\n" ;
}
} |
94b8f124e27df040a3b813c9d62555f03f3966c6 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_2749486_0/C++/Franklinquestionmark/b.cpp | 8a62610196f5df97ce2f6d8d8a17b0b24eff253f | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 3,586 | cpp | b.cpp | #include<cmath>
#include<cstdlib>
#include<cstring>
#include<cstdio>
#include<limits>
#include<iomanip>
#include<algorithm>
#include<functional>
#include<iostream>
#include<fstream>
#include<sstream>
#include<vector>
#include<array>
#include<string>
#include<map>
using namespace std;
//debuggery
// #define NDEBUG
#ifdef NDEBUG
//These will turn off cerr statements
//This is due to short-circuit evaluation:
//http://en.wikipedia.org/wiki/Short-circuit_evaluation
#define cerr false&&cerr
#define fprintf false&&fprintf
#endif
typedef long long lint;
typedef unsigned long long ull;
typedef long long int mint; //my integer
typedef long double dbl; //my double
typedef string ans_t; //answer type
//integer arrays
typedef vector<mint> vi;
typedef vector<vi> vvi;
//double arrays
typedef vector<dbl> vd;
typedef vector<vd> vvd;
//dynamic array types
typedef map<mint,ans_t> da;
typedef map<mint,da> dda;
typedef map<mint,dda> ddda;
typedef istringstream iss;
typedef ostringstream oss;
typedef stringstream ss;
string input; //sample input
void init();
void read(istream& in);
ans_t solve();
template<class Int> Int gcd(Int a, Int b){ return a==0?b:gcd(b%a,a); }
template<class Int> Int combination(int n, int k){
//breaks at 68 choose 34.
k = min(k,n-k);
if( k <= 0 ) return k==0?1:0;
static vector<vector<Int>> dyar;
while(dyar.size() < n)
dyar.push_back(vector<Int>((dyar.size()+1)/2));
if(dyar.at(n-1).at(k-1) == 0)
dyar[n-1][k-1] = combination<Int>(n-1,k) + combination<Int>(n-1,k-1);
if(dyar[n-1][k-1] == 0)
dyar[n-1][k-1] = combination<Int>(n-1,k) + combination<Int>(n-1,k-1);
return dyar[n-1][k-1];
}
ull (*comb)(int, int) = combination<ull>;
//position of highest bit (counts 0 and 1 as 0)
template<class Int>int lg(Int n){
int rv=0;
while(n>>=1)
rv++;
return rv;
}
int main(int argc, char** argv){
init();
ifstream fin; ofstream fout; iss sin(input);
if(argc>1)
fin.open(argv[1]), fout.open(argv[1]);
istream& in = argc>1? fin: input.empty()? cin: sin;
ostream& out = argc>1? fout: cout;
int t; in>>t;
for(int i = 0; i<t; i++){
read(in); //get input
ans_t ans = solve(); //solve
out<<"Case #"<<(i+1)<<": "<<ans<<endl; //output
cerr<<"Case #"<<(i+1)<<": "<<ans<<endl;
}
return 0;
}
//// write input vars here ////
int x,y;
void read(istream& in){
//! read input vars here !//
in>>x>>y;
//! clear dyars if necessary here !//
// cout<<"test";
}
ans_t rv;
void move(char c, int i){
rv+=c;
switch(c){
case 'E':x+=i;break;
case 'W':x-=i;break;
case 'N':y+=i;break;
case 'S':y-=i;break;
}
}
ans_t solve(){
rv="";
//reverse
x=-x;
y=-y;
int i=1;
for(;x!=0;i++){
if((x>0 && x-i>=0) ||x+i>0)
move('W',i);
else
move('E',i);
}
for(;y!=0;i++){
if((y>0 && y-i>=0) ||y+i>0)
move('S',i);
else
move('N',i);
}
// if(x%2==0){
// rv+='N';
// y+=1;
// }else{
// rv+='E';
// x+=1;
// }
// for(int i=2; x != 0 || y != 0 ;i++){
// if(abs(x)>abs(y)){
// if((x>0&&x<=i) || x>=-i){
// rv+='W';
// x-=i;
// }else{
// rv+='E';
// x+=i;
// }
// }
// else{
// if((y>0&&y<=i) || y>=-i){
// rv+='S';
// y-=i;
// }else{
// rv+='N';
// y+=i;
// }
// }
// cerr<<rv<<endl;
// }
return rv;
}
//precomputation and such
void init(){
//! if there is a sample input, set it here !//
// input = "2 3 4 -3 4";
//! if there is precomputation, do it here !//
}
|
b9e941a0df9877e2b7bd418e1f6d1a27f10d10e1 | 62696604d9b9768a6b23b0ef0cf240e6f1574b64 | /tetromino.cpp | 1897fd40a29f2c2fc5b4631309f782aea031028a | [] | no_license | leon0128/Tetris_v3 | 2a8fe899ad5e02a2823a19ea654130b7f07b3e6d | f50b278d2755f62fa2c280cdfbbb8dd2a15c7c0e | refs/heads/master | 2023-07-18T05:49:10.108975 | 2021-09-03T23:00:48 | 2021-09-03T23:00:48 | 192,396,289 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,041 | cpp | tetromino.cpp | #include "tetromino.hpp"
#include "game_board.hpp"
Tetromino::Tetromino(Game* game,
int order,
GameBoard* gameBoard,
EType type):
Actor(game, order),
mGameBoard(gameBoard),
mType(type),
mDownFrame(0),
mMoveFrame(0),
mIsQuickDrop(false)
{
createBlock(mType);
mDownFrame = mGameBoard->getUpdateFrame();
mMoveFrame = mGameBoard->getUpdateFrame();
}
Tetromino::~Tetromino()
{
for(int i = 0; i < (int)mBlock.size(); i++)
{
delete mShadowBlock[i];
}
}
void Tetromino::update()
{
for(auto block : mBlock)
{
block->updatePosition();
}
for(auto block : mShadowBlock)
{
block->updatePosition();
}
}
bool Tetromino::parallelMove(int direction)
{
if(direction == 0)
{
return true;
}
storeCoordinate(mBlock);
for(auto block : mBlock)
{
Vector2 temp = block->getCoordinate();
temp.x += direction;
block->setCoordinate(temp);
}
if(!isCoordinateCorrect(mBlock))
{
restoreCoordinate(mBlock);
return false;
}
return true;
}
bool Tetromino::verticalMove(int direction)
{
if(direction == 0 &&
mGameBoard->getUpdateFrame() - mDownFrame < DROP_COUNT)
{
return true;
}
storeCoordinate(mBlock);
// 1マス移動
for(auto block : mBlock)
{
Vector2 temp = block->getCoordinate();
temp.y -= 1;
block->setCoordinate(temp);
}
if(!isCoordinateCorrect(mBlock))
{
restoreCoordinate(mBlock);
return false;
}
else
{
// 下に下がった時のフレームの更新
mDownFrame = mGameBoard->getUpdateFrame();
return true;
}
}
bool Tetromino::rotationMove(int direction)
{
if(direction == 0)
{
return true;
}
// 優先度の高いブロックを中心として処理
for(int i = 0; i < (int)mBlock.size(); i++)
{
storeCoordinate(mBlock);
for(auto block : mBlock)
{
Vector2 target, distance;
target = block->getCoordinate();
distance = target - mBlock[i]->getCoordinate();
target.x += direction *
distance.y -
distance.x;
target.y += -1 *
direction *
distance.x -
distance.y;
block->setCoordinate(target);
}
if(isCoordinateCorrect(mBlock))
{
return true;
}
else
{
// 変更後の座標を1段下げて再計算
Vector2 temp;
for(auto block : mBlock)
{
temp = block->getCoordinate();
temp.y -= 1;
block->setCoordinate(temp);
}
if(isCoordinateCorrect(mBlock))
{
return true;
}
else
{
restoreCoordinate(mBlock);
}
}
}
return false;
}
void Tetromino::quickDrop(bool isQuickDrop)
{
if(!isQuickDrop)
{
mIsQuickDrop = false;
return;
}
// 移動が失敗するまで下方向に移動
bool isCorrectMove = true;
while(isCorrectMove)
{
isCorrectMove = verticalMove((int)-1);
}
mIsQuickDrop = true;
}
void Tetromino::updateShadow()
{
if(mMoveFrame != mGameBoard->getUpdateFrame())
{
return ;
}
// mBlockの座標をmShadowBlockにコピー
for(int i = 0; i < (int)mBlock.size(); i++)
{
mShadowBlock[i]->setCoordinate(mBlock[i]->getCoordinate());
}
// 移動が失敗するまで下に移動
bool isCorrectMove = true;
while(isCorrectMove)
{
storeCoordinate(mShadowBlock);
for(auto block : mShadowBlock)
{
Vector2 temp = block->getCoordinate();
temp.y -= 1;
block->setCoordinate(temp);
}
if(!isCoordinateCorrect(mShadowBlock))
{
restoreCoordinate(mShadowBlock);
isCorrectMove = false;
}
}
}
bool Tetromino::isCoordinateCorrect(std::vector<Block*> blocks)
{
auto gameState = mGameBoard->getGameState();
Vector2 coordinate;
for(auto block : blocks)
{
coordinate = block->getCoordinate();
if(coordinate.x < 0 ||
coordinate.x > GAMEBOARD_PARALLEL - 1 ||
coordinate.y < 0)
{
return false;
}
if(gameState[coordinate.y][coordinate.x])
{
return false;
}
}
mMoveFrame = mGameBoard->getUpdateFrame();
return true;
}
void Tetromino::storeCoordinate(std::vector<Block*> blocks)
{
mBackup.clear();
for(auto block : blocks)
{
mBackup.push_back(block->getCoordinate());
}
}
void Tetromino::restoreCoordinate(std::vector<Block*> blocks)
{
for(int i = 0; i < (int)blocks.size(); i++)
{
blocks[i]->setCoordinate(mBackup[i]);
}
}
void Tetromino::createBlock(EType type)
{
std::array<Vector2, 4> tempCoordinate;
SDL_Texture* texture;
// 作成するブロックの各座標を設定
switch(type)
{
case(I):
tempCoordinate[0].set(4, 19);
tempCoordinate[1].set(5, 19);
tempCoordinate[2].set(3, 19);
tempCoordinate[3].set(6, 19);
texture = mGame->getTexture("image/blocks/i.png");
break;
case(O):
tempCoordinate[0].set(4, 19);
tempCoordinate[1].set(4, 18);
tempCoordinate[2].set(5, 18);
tempCoordinate[3].set(5, 19);
texture = mGame->getTexture("image/blocks/o.png");
break;
case(T):
tempCoordinate[0].set(4, 18);
tempCoordinate[1].set(4, 19);
tempCoordinate[2].set(3, 18);
tempCoordinate[3].set(5, 18);
texture = mGame->getTexture("image/blocks/t.png");
break;
case(L):
tempCoordinate[0].set(4, 18);
tempCoordinate[1].set(5, 18);
tempCoordinate[2].set(3, 18);
tempCoordinate[3].set(5, 19);
texture = mGame->getTexture("image/blocks/l.png");
break;
case(J):
tempCoordinate[0].set(4, 18);
tempCoordinate[1].set(3, 18);
tempCoordinate[2].set(5, 18);
tempCoordinate[3].set(3, 19);
texture = mGame->getTexture("image/blocks/j.png");
break;
case(S):
tempCoordinate[0].set(4, 18);
tempCoordinate[1].set(4, 19);
tempCoordinate[2].set(3, 18);
tempCoordinate[3].set(5, 19);
texture = mGame->getTexture("image/blocks/s.png");
break;
case(Z):
tempCoordinate[0].set(4, 18);
tempCoordinate[1].set(4, 19);
tempCoordinate[2].set(5, 18);
tempCoordinate[3].set(3, 19);
texture = mGame->getTexture("image/blocks/z.png");
break;
case(NONE):
SDL_Log("Can not crate Tetromino: Tetromino::createBlock()");
break;
}
Block* block = nullptr;
for(auto coordinate : tempCoordinate)
{
// mBlock
block = new Block(mGame, 100, mGameBoard, coordinate);
block->setTexture(texture);
block->setScale(static_cast<float>(BLOCK_SIZE) / 60.0f);
mBlock.push_back(block);
// mShadowBlock
block = new Block(mGame, 90, mGameBoard, coordinate);
block->setTexture(texture);
block->setScale(static_cast<float>(BLOCK_SIZE) / 60.0f);
block->setClear(0.35f);
mShadowBlock.push_back(block);
mBackup.push_back(coordinate);
}
if(!isCoordinateCorrect(mBlock))
{
mGameBoard->gameover();
}
} |
0cc3bb98a84edb7f789e33ceb4444925ffee1a6a | 88e11e9e124fc6c74aa78aaa6ff49d60ed25b2cd | /Algorithms/n-th-tribonacci-number.cpp | 47c000b1c0353f458c5a305e43ec2dbdfd950618 | [] | no_license | shuvokr/LeetCode_Solution | daa4d8f6d3911feaf112e66ee9e84ad5adf9a752 | d57e6b131f139704c9441250c3e1f3d85fbc76e0 | refs/heads/master | 2021-01-12T09:53:17.672455 | 2019-10-18T19:42:19 | 2019-10-18T19:42:19 | 76,286,340 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 367 | cpp | n-th-tribonacci-number.cpp | // Link : https://leetcode.com/problems/n-th-tribonacci-number
class Solution {
public:
int tribonacci(int n) {
if(n == 0) return 0;
if(n == 1 || n == 2) return 1;
int res = 2, a = 1, b = 1, c = 2;
for(int i = 3; i < n; i++) {
res = a + b + c;
a = b; b = c; c = res;
}
return res;
}
};
|
05abe22e483f1fcb1c3c34737291d5b50a545655 | a5a99f646e371b45974a6fb6ccc06b0a674818f2 | /DataFormats/Common/interface/CloningPtr.h | fc12a5d9c379e0179adae1cd01db5a76d4d833cd | [
"Apache-2.0"
] | permissive | cms-sw/cmssw | 4ecd2c1105d59c66d385551230542c6615b9ab58 | 19c178740257eb48367778593da55dcad08b7a4f | refs/heads/master | 2023-08-23T21:57:42.491143 | 2023-08-22T20:22:40 | 2023-08-22T20:22:40 | 10,969,551 | 1,006 | 3,696 | Apache-2.0 | 2023-09-14T19:14:28 | 2013-06-26T14:09:07 | C++ | UTF-8 | C++ | false | false | 1,536 | h | CloningPtr.h | #ifndef DataFormats_Common_CloningPtr_h
#define DataFormats_Common_CloningPtr_h
// -*- C++ -*-
//
// Package: Common
// Class : CloningPtr
//
/**\class CloningPtr CloningPtr.h DataFormats/Common/interface/CloningPtr.h
Description: A smart pointer that owns its pointer and clones it when necessary
Usage:
<usage>
*/
//
// Original Author: Chris Jones
// Created: Mon Apr 3 16:43:29 EDT 2006
//
// system include files
#include <algorithm>
#include <memory>
// user include files
#include "DataFormats/Common/interface/ClonePolicy.h"
// forward declarations
namespace edm {
template <class T, class P = ClonePolicy<T> >
class CloningPtr {
public:
CloningPtr() : ptr_(nullptr) {}
CloningPtr(const T& iPtr) : ptr_(P::clone(iPtr)) {}
CloningPtr(std::unique_ptr<T> iPtr) : ptr_(iPtr.release()) {}
CloningPtr(const CloningPtr<T, P>& iPtr) : ptr_(P::clone(*(iPtr.ptr_))) {}
CloningPtr<T, P>& operator=(const CloningPtr<T, P>& iRHS) {
CloningPtr<T, P> temp(iRHS);
swap(temp);
return *this;
}
void swap(CloningPtr<T, P>& iPtr) { std::swap(ptr_, iPtr.ptr_); }
~CloningPtr() { delete ptr_; }
// ---------- const member functions ---------------------
T& operator*() { return *ptr_; }
T* operator->() { return ptr_; }
T* get() { return ptr_; }
private:
T* ptr_;
};
// Free swap function
template <class T, class P>
inline void swap(CloningPtr<T, P>& a, CloningPtr<T, P>& b) {
a.swap(b);
}
} // namespace edm
#endif
|
52c940a4f75814aa22fea6ceecd4ee5cdd88b295 | 0a5645154953b0a09d3f78753a1711aaa76928ff | /sampleapp/qt/qtnavigator_console_plugin/src/placemanager.cpp | 675694bc5e451712969a1ba76f0ceb15698ffe00 | [] | no_license | GENIVI/navigation-next | 3a6f26063350ac8862b4d0e2e9d3522f6f249328 | cb8f7ec5ec4c78ef57aa573315b75960b2a5dd36 | refs/heads/master | 2023-08-04T17:44:45.239062 | 2023-07-25T19:22:19 | 2023-07-25T19:22:19 | 116,230,587 | 17 | 11 | null | 2018-05-18T20:00:38 | 2018-01-04T07:43:22 | C++ | UTF-8 | C++ | false | false | 19,164 | cpp | placemanager.cpp | /*
Copyright (c) 2018, TeleCommunication Systems, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* 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.
* Neither the name of the TeleCommunication Systems, Inc., 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 TELECOMMUNICATION SYSTEMS, INC.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.
*/
//#include <QGuiApplication>
#include "placemanager.h"
#define MAX_RECENT_COUNT 100
#define MAX_FAV_COUNT 200
PlaceManager *PlaceManager::sInstance = 0;
PlaceManager::PlaceManager() {
qDebug()<<"PlaceManager::PlaceManager()";
// mRecentPlaces = readRecentsJson();
// mFavPlaces = readFavoritesJson();
}
PlaceManager::~PlaceManager() {
}
PlaceManager* PlaceManager::getInstance() {
if (!sInstance)
sInstance = new PlaceManager();
return sInstance;
}
void PlaceManager::setAppDirPath(QString path) {
qDebug()<<"PlaceManager::setAppDirPath "<<path;
mAppDirPath = path;
readRecentsJson();
readFavoritesJson();
}
void PlaceManager::readRecentsJson() {
QString recentsJsonPath = mAppDirPath + "/resource/jsons/recents/recents.json";
// Read JSON file
QFile file(recentsJsonPath);
file.open(QIODevice::ReadOnly);
QByteArray rawData = file.readAll();
file.close();
// Parse document
QJsonDocument doc(QJsonDocument::fromJson(rawData));
// Get JSON object
QJsonObject json = doc.object();
mRecentPlaces.clear();
// Access properties
for(int i = 0; i < MAX_RECENT_COUNT; i++) {
QString idx = QString::number(i);
QVariantMap tempMap;
tempMap.insert("lat", json[idx].toObject()["lat"].toString() );
tempMap.insert("lon", json[idx].toObject()["lon"].toString() );
tempMap.insert("isExists", json[idx].toObject()["isExists"].toString());
mRecentPlaces.insert(idx, tempMap);
}
}
void PlaceManager::readFavoritesJson() {
QString favouritesJson = mAppDirPath + "/resource/jsons/favourites/favourites.json";
// Read JSON file
QFile file(favouritesJson);
file.open(QIODevice::ReadOnly);
QByteArray rawData = file.readAll();
file.close();
// Parse document
QJsonDocument doc(QJsonDocument::fromJson(rawData));
// Get JSON object
QJsonObject json = doc.object();
mFavPlaces.clear();
// Access properties
for(int i = 0; i < MAX_FAV_COUNT; i++) {
QString idx = QString::number(i);
QVariantMap tempMap;
tempMap.insert("lat", json[idx].toObject()["lat"].toString() );
tempMap.insert("lon", json[idx].toObject()["lon"].toString() );
tempMap.insert("isExists", json[idx].toObject()["isExists"].toString());
mFavPlaces.insert(idx, tempMap);
}
}
bool PlaceManager::favoriteExists(double latitude, double longitude) {
QString c_lat = QString::number(latitude);
QString c_long = QString::number(longitude);
for(int i = 0; i <MAX_FAV_COUNT; i++) {
QString t_lat = mFavPlaces[QString::number(i)].toMap()["lat"].toString();
QString t_long = mFavPlaces[QString::number(i)].toMap()["lon"].toString();
bool isExists = mFavPlaces[QString::number(i)].toMap()["isExists"].toBool();
if(t_lat == c_lat && t_long == c_long && isExists)
return true;
//qDebug() << "PlaceManager::favoriteExists................true";
}
// qDebug() << "PlaceManager::favoriteExists...............false";
return false;
}
bool PlaceManager::addToFavorites(QJsonObject jsonObject) {
qDebug()<<"######################## PlaceManager::addToFavorites";
QJsonObject location = jsonObject["place"].toObject()["location"].toObject();
double latitude = location["latitude"].toDouble();
double longitude = location["longitude"].toDouble();
// Check if favorite exists - Favorites list contains only one instance of POI
if(!favoriteExists(latitude, longitude)) {
QString filePostFix = getFavoriteWriteLocation();
QString favoritesFile = mAppDirPath + "/resource/jsons/favourites/favourites_"+ filePostFix +".json";
// Write to file on local machine
QFile jsonFile(favoritesFile);
jsonFile.open(QFile::WriteOnly);
jsonFile.write(QJsonDocument(jsonObject).toJson(QJsonDocument::Compact));
jsonFile.close();
// Should not show any popOver - Inherent action
if(writeFavoritesConfig(filePostFix, latitude, longitude) ){
qDebug()<<"Favorites Successfully added";
return true;
}
else{
qDebug()<<"Favorites could not be added";
}
}else{
return false;
qDebug()<<"Favorites Already added";
}
}
// Write POI details to favorite's config
bool PlaceManager::writeFavoritesConfig(QString nextWriteLocation, double latitude, double longitude) {
QVariantMap tempMap;
tempMap.insert("lat", QString::number(latitude));
tempMap.insert("lon", QString::number(longitude));
tempMap.insert("isExists", "1");
mFavPlaces.insert(nextWriteLocation, tempMap);
QJsonObject jsonObject = QJsonObject::fromVariantHash(mFavPlaces);
QString favoritesFile = mAppDirPath + "/resource/jsons/favourites/favourites.json";
QFile jsonFile(favoritesFile);
jsonFile.open(QFile::WriteOnly);
jsonFile.write(QJsonDocument(jsonObject).toJson(QJsonDocument::Compact));
jsonFile.close();
return fileExists(favoritesFile);
}
// Reset to no favorites
bool PlaceManager::resetFavorites() {
return false;
// QVector<QString> pathList = getExistingFavourites();
// int count = 0;
// for(QVector<QString>::iterator it = pathList.begin(); it != pathList.end(); ++it) {
// QFile file(*it);
// if(file.remove())
// ++count;
// }
// QVariantMap* tempMap;
// QVariantMap* tempMap1;
// for(int i = 0; i <= 10; ++i) {
// tempMap = new QVariantMap();
// tempMap1 = new QVariantMap();
// if(i == 0){
// tempMap->insert("lat", "1" );
// tempMap->insert("lon", "1" );
// mFavPlaces.insert("0", *tempMap);
// }
// else{
// tempMap->insert("lat", "" );
// tempMap->insert("lon", "" );
// mFavPlaces.insert(QString::number(i), *tempMap);
// tempMap1->insert("isExists","0");
// mExistingFav.insert(QString::number(i), *tempMap1);
// }
// }
// //qDebug()<<mFavPlaces;
// QJsonObject jsonObject = QJsonObject::fromVariantHash(mFavPlaces);
// QJsonObject jsonObject1 = QJsonObject::fromVariantHash(mExistingFav);
// QString favoriteFile = mAppDirPath + "/resource/jsons/favourites/favourites.json";
// QFile jsonFile(favoriteFile);
// jsonFile.open(QFile::WriteOnly);
// jsonFile.write(QJsonDocument(jsonObject).toJson(QJsonDocument::Compact));
// jsonFile.close();
// QString existingFavouriteFile = mAppDirPath + "/resource/jsons/favourites/existingFavourites.json";
// QFile jsonFile1(existingFavouriteFile);
// jsonFile1.open(QFile::WriteOnly);
// jsonFile1.write(QJsonDocument(jsonObject1).toJson(QJsonDocument::Compact));
// jsonFile1.close();
// return (fileExists(favoriteFile) && fileExists(existingFavouriteFile) && count==pathList.size());
}
// Get all the active favorite POIs in memory
QVector<QJsonObject> PlaceManager::getFavorites() {
QVector<QJsonObject> favObjects;
for(int i = 0; i < MAX_FAV_COUNT; ++i) {
QString path = mAppDirPath + "/resource/jsons/favourites/favourites_" + QString::number(i) + ".json";
if( fileExists(path)) {
// Read JSON file
QFile file(path);
file.open(QIODevice::ReadOnly);
QByteArray rawData = file.readAll();
file.close();
// Parse document
QJsonDocument doc(QJsonDocument::fromJson(rawData));
// Get JSON object
QJsonObject obj = doc.object();
favObjects.append(obj);
}
}
return favObjects;
}
// Get the instance number 0 - MAX_FAV_COUNT-1 where the favorite pOI info needs to be written
QString PlaceManager::getFavoriteWriteLocation() {
// TODO: Consider to replace the oldest
int i;
for(i = 0; i < mFavPlaces.count(); i++) {
// check for empty(becuase of delete) recent slot
if(mFavPlaces[QString::number(i)].toMap()["isExists"].toInt() != 1)
break;
}
// use slots upto max count or replace the 0 index
if(i >= MAX_FAV_COUNT)
i = 0;
qDebug()<<"PlaceManager::getRecentWriteLocation "<<i;
return QString::number(i);
}
bool PlaceManager::fileExists(QString path) {
QFileInfo checkFile(path);
// check if file exists and if yes: Is it really a file and no directory?
if (checkFile.exists() && checkFile.isFile()) {
return true;
}
else {
return false;
}
}
// Get the instance number 0 - MAX_RECENT_COUNT-1 where the recent pOI info needs to be written
QString PlaceManager::getRecentWriteLocation() {
// TODO: Consider to replace the oldest
int i;
for(i = 0; i < mRecentPlaces.count(); i++) {
// check for empty(becuase of delete) recent slot
if(mRecentPlaces[QString::number(i)].toMap()["isExists"].toInt() != 1)
break;
}
// use slots upto max count or replace the 0 index
if(i >= MAX_RECENT_COUNT)
i = 0;
qDebug()<<"PlaceManager::getRecentWriteLocation "<<i;
return QString::number(i);
}
QVector<QJsonObject> PlaceManager::getRecents() {
QVector<QJsonObject> recentObjects;
for(int i = 0; i < MAX_RECENT_COUNT; ++i) {
QString path = mAppDirPath + "/resource/jsons/recents/recents_" + QString::number(i) + ".json";
if( fileExists(path)) {
// Read JSON file
QFile file(path);
file.open(QIODevice::ReadOnly);
QByteArray rawData = file.readAll();
file.close();
// Parse document
QJsonDocument doc(QJsonDocument::fromJson(rawData));
// Get JSON object
QJsonObject obj = doc.object();
recentObjects.append(obj);
}
}
return recentObjects;
}
bool PlaceManager::writeRecentsConfig(QString nextWriteLocation, double latitude, double longitude) {
QVariantMap tempMap;
tempMap.insert("lat", QString::number(latitude));
tempMap.insert("lon", QString::number(longitude));
tempMap.insert("isExists", "1");
mRecentPlaces.insert(nextWriteLocation, tempMap);
QJsonObject jsonObject = QJsonObject::fromVariantHash(mRecentPlaces);
QString recentsFile = mAppDirPath + "/resource/jsons/recents/recents.json";
QFile jsonFile(recentsFile);
jsonFile.open(QFile::WriteOnly);
jsonFile.write(QJsonDocument(jsonObject).toJson(QJsonDocument::Compact));
jsonFile.close();
return fileExists(recentsFile);
}
bool PlaceManager::recentExists(double latitude, double longitude) {
QString c_lat = QString::number(latitude);
QString c_long = QString::number(longitude);
for(int i = 0; i < MAX_RECENT_COUNT; i++) {
QString t_lat = mRecentPlaces[QString::number(i)].toMap()["lat"].toString();
QString t_long = mRecentPlaces[QString::number(i)].toMap()["lon"].toString();
bool isExists = mRecentPlaces[QString::number(i)].toMap()["isExists"].toBool();
if(t_lat == c_lat && t_long == c_long && isExists)
return true;
// qDebug() << "PlaceManager::recentExists................true";
}
// qDebug() << "PlaceManager::recentExists...............false";
return false;
}
bool PlaceManager::addToRecents(QJsonObject jsonObject) {
qDebug()<<"######################## PlaceManager::addToRecents";
QJsonObject location = jsonObject["place"].toObject()["location"].toObject();
double latitude = location["latitude"].toDouble();
double longitude = location["longitude"].toDouble();
// Check if recent exists - Recents list contains only one instance of POI
if(!recentExists(latitude, longitude)) {
QString filePostFix = getRecentWriteLocation();
QString recentsFile = mAppDirPath + "/resource/jsons/recents/recents_"+ filePostFix +".json";
// Write to file on local machine
QFile jsonFile(recentsFile);
jsonFile.open(QFile::WriteOnly);
jsonFile.write(QJsonDocument(jsonObject).toJson(QJsonDocument::Compact));
jsonFile.close();
// Should not show any popOver - Inherent action
if(writeRecentsConfig(filePostFix, latitude, longitude) ){
qDebug()<<"Recents Successfully added";
}
else{
qDebug()<<"Recents could not be added";
}
}
}
void PlaceManager::onClearAllRecentsClicked() {
mRecentPlaces.clear();
QJsonObject jsonObject = QJsonObject::fromVariantHash(mRecentPlaces);
QString recentsFile = mAppDirPath + "/resource/jsons/recents/recents.json";
QFile jsonFile(recentsFile);
jsonFile.open(QFile::WriteOnly);
jsonFile.write(QJsonDocument(jsonObject).toJson(QJsonDocument::Compact));
jsonFile.close();
for(int i = 0; i < MAX_RECENT_COUNT; ++i) {
QString path = mAppDirPath + "/resource/jsons/recents/recents_" + QString::number(i) + ".json";
if( fileExists(path)) {
QFile file(path);
file.remove();
}
}
}
void PlaceManager::onClearAllFavoritesClicked() {
mFavPlaces.clear();
QJsonObject jsonObject = QJsonObject::fromVariantHash(mFavPlaces);
QString recentsFile = mAppDirPath + "/resource/jsons/favourites/favourites.json";
QFile jsonFile(recentsFile);
jsonFile.open(QFile::WriteOnly);
jsonFile.write(QJsonDocument(jsonObject).toJson(QJsonDocument::Compact));
jsonFile.close();
for(int i = 0; i < MAX_FAV_COUNT; ++i) {
QString path = mAppDirPath + "/resource/jsons/favourites/favourites_" + QString::number(i) + ".json";
if( fileExists(path)) {
QFile file(path);
file.remove();
}
}
}
bool PlaceManager::onDeleteSelectiveFav(double latitude, double longitude) {
qDebug() << "PlaceManager::onDeleteSelectiveFav..............................";
// QString latitude = QString::number(lat, 'g', 6);
// QString longitude = QString::number(lon, 'g', 6);
QString fileName;
QString c_lat = QString::number(latitude);
QString c_long = QString::number(longitude);
QString* filePath = new QString();
for(int i =0; i <= MAX_FAV_COUNT; i++) {
QString t_lat = mFavPlaces[QString::number(i)].toMap()["lat"].toString();
QString t_long = mFavPlaces[QString::number(i)].toMap()["lon"].toString();
bool isExist = mFavPlaces[QString::number(i)].toMap()["isExists"].toBool();
if(t_lat == c_lat && t_long == c_long && isExist) {
*filePath = mAppDirPath + "/resource/jsons/favourites/favourites_"+ QString::number(i) +".json";
fileName = mAppDirPath + "/resource/jsons/favourites/favourites_"+ QString::number(i) +".json" ;
}
}
qDebug() << "fileName"<<latitude<<longitude<<fileName;
QString locEnd = fileName.right(6);
QString currentLocation = locEnd.left(1);
QVariantMap* tempMap = new QVariantMap();
tempMap->insert("lat", "" );
tempMap->insert("long", "" );
tempMap->insert("isExists", "");
mFavPlaces.insert(currentLocation, *tempMap);
QJsonObject jsonObject1 = QJsonObject::fromVariantHash(mFavPlaces);
QString favouritesFile = mAppDirPath + "/resource/jsons/favourites/favourites.json";
QFile jsonFile1(favouritesFile);
jsonFile1.open(QFile::WriteOnly);
jsonFile1.write(QJsonDocument(jsonObject1).toJson(QJsonDocument::Compact));
jsonFile1.close();
QString path = mAppDirPath + "/resource/jsons/favourites/favourites_" + currentLocation + ".json";
if(fileExists(path)) {
QFile file(path);
file.remove();
return true;
}
return false;
}
bool PlaceManager::removeFromFavorites(double latitude, double longitude) {
QString c_lat = QString::number(latitude);
QString c_long = QString::number(longitude);
for(int i = 0; i < MAX_FAV_COUNT; i++) {
QString t_lat = mFavPlaces[QString::number(i)].toMap()["lat"].toString();
QString t_long = mFavPlaces[QString::number(i)].toMap()["lon"].toString();
bool isExists = mFavPlaces[QString::number(i)].toMap()["isExists"].toBool();
if(t_lat == c_lat && t_long == c_long && isExists) {
QVariantMap tempMap;
tempMap.insert("lat", "");
tempMap.insert("lon", "");
tempMap.insert("isExists", "");
mFavPlaces.insert(QString::number(i), tempMap);
QJsonObject jsonObject = QJsonObject::fromVariantHash(mFavPlaces/*mRecentPlaces*/);
QString favoritesFile = mAppDirPath + "/resource/jsons/favourites/favourites.json";
QFile jsonFile(favoritesFile);
jsonFile.open(QFile::WriteOnly);
jsonFile.write(QJsonDocument(jsonObject).toJson(QJsonDocument::Compact));
jsonFile.close();
QString path = mAppDirPath + "/resource/jsons/favourites/favourites_" + QString::number(i) + ".json";
if(fileExists(path)) {
QFile file(path);
file.remove();
}
return true;
}
}
return false;
}
bool PlaceManager::deleteExistingFavConfig(double lat,double lon)
{
onDeleteSelectiveFav(lat,lon);
}
void PlaceManager::clearAllFavorites() {
onClearAllFavoritesClicked();
}
void PlaceManager::clearAllRecents() {
onClearAllRecentsClicked();
}
|
562b3b92e56a421790d2710da32e37d79de9d224 | b83aaa752f3dd6a4c3cf04cb473003c08366f16a | /Raspberry-Pi/quiz3.cpp | 5dd5e70b744dd435b571881b851d09b7e7fe0d71 | [] | no_license | Hyeongwon/IoT_Device_Dev | e09c40b2b641af9d9b09e28d668b0f578ef3d61b | a0d4172c3a81bd9eebffed64c80c5aeeb644edaf | refs/heads/master | 2020-12-03T00:42:52.425750 | 2017-09-07T08:37:47 | 2017-09-07T08:37:47 | 96,067,186 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,552 | cpp | quiz3.cpp | #if 0
#include <stdio.h>
#include <string.h>
void callee(const char arr[], const char** reply) { // 1. 리턴타입을 완성하여 동작하게 합니다.
static const char arr_reply[] = "Hello! caller, I'm fine";
printf("%s\n", arr);
*reply = arr_reply;
}
int main() { // caller
const char arr[] = "Hello! callee, How are you?";
const char *reply;
callee(arr, &reply);
printf("%s\n", reply);
}
#endif
#if 0
#include <stdio.h>
#include <string.h>
void callee(const char aarr[][20], const char (** reply)[20]) { // 2. 리턴타입을 완성하여 동작하게 합니다.
static const char aarr_reply[][20] = {"Hello! callee,", " I'm fine"};
for(int i=0;i<2;i++)
printf("%s", aarr[i]);
printf("\n");
*reply = aarr_reply;
}
int main() { // caller
const char aarr[][20] = {"Hello! caller,", " How are you?"};
const char (*aarr_reply)[20];
callee(aarr, &aarr_reply); // 2. 리턴타입을 완성하여 동작하게 합니다.
for(int i=0;i<2;i++)
printf("%s", aarr_reply[i]);
printf("\n");
}
#endif
#if 0
#include <stdio.h>
#include <string.h>
void callee(const char *parr[], const char*** reply) {// 3. 리턴타입을 완성하여 동작하게 합니다.
static const char *parr_reply[] = {"Hello! caller,", " I'm fine"};
for(int i=0;i<2;i++)
printf("%s", parr[i]);
printf("\n");
*reply = parr_reply;
}
int main() { // caller
const char *parr[] = {"Hello! callee,", " How are you?"};
const char **reply;
callee(parr, &reply);// 3. 리턴타입을 완성하여 동작하게 합니다.
for(int i=0;i<2;i++)
printf("%s", reply[i]);
printf("\n");
}
#endif
#if 1
#include <stdio.h>
#include <string.h>
void func() {
printf("Hello! callee, How are you?\n");
}
void func_reply() {
printf("Hello! caller, I'm fine\n");
}
void callee(void (*func)(), void (**reply)()) {// 4. 리턴타입을 완성하여 동작하게 합니다.
func();
*reply = func_reply;
}
int main() { // caller
void (*fp)();
callee(func, &fp);// 4. 리턴타입을 완성하여 동작하게 합니다.
fp();
}
#endif
|
56585a974ca5eea70d11c7ad08467d1d01fbc1ac | b39b0652150a981c9e08d63b78a5b8d57197601e | /doom_py/src/vizdoom/src/g_strife/a_inquisitor.cpp | b93933422f99b399b10154d51905dfffb846b31b | [
"MIT"
] | permissive | jaekyeom/doom-py | 476026afd7dad6ecd47cf2633c745e3b09fa5c9c | a7d08a0f2e92b0ba4be538e182791be4c5a11a1b | refs/heads/master | 2020-03-06T18:52:38.651857 | 2018-04-05T14:28:14 | 2018-04-05T14:28:14 | 127,015,715 | 1 | 0 | MIT | 2018-03-27T16:29:10 | 2018-03-27T16:29:10 | null | UTF-8 | C++ | false | false | 3,036 | cpp | a_inquisitor.cpp | /*
#include "actor.h"
#include "m_random.h"
#include "a_action.h"
#include "p_local.h"
#include "p_enemy.h"
#include "s_sound.h"
#include "thingdef/thingdef.h"
*/
static FRandom pr_inq ("Inquisitor");
DEFINE_ACTION_FUNCTION(AActor, A_InquisitorWalk)
{
S_Sound (self, CHAN_BODY, "inquisitor/walk", 1, ATTN_NORM);
A_Chase (self);
}
bool InquisitorCheckDistance (AActor *self)
{
if (self->reactiontime == 0 && P_CheckSight (self, self->target))
{
return self->AproxDistance (self->target) < 264*FRACUNIT;
}
return false;
}
DEFINE_ACTION_FUNCTION(AActor, A_InquisitorDecide)
{
if (self->target == NULL)
return;
A_FaceTarget (self);
if (!InquisitorCheckDistance (self))
{
self->SetState (self->FindState("Grenade"));
}
if (self->target->Z() != self->Z())
{
if (self->Top() + 54*FRACUNIT < self->ceilingz)
{
self->SetState (self->FindState("Jump"));
}
}
}
DEFINE_ACTION_FUNCTION(AActor, A_InquisitorAttack)
{
AActor *proj;
if (self->target == NULL)
return;
A_FaceTarget (self);
self->AddZ(32*FRACUNIT);
self->angle -= ANGLE_45/32;
proj = P_SpawnMissileZAimed (self, self->Z(), self->target, PClass::FindClass("InquisitorShot"));
if (proj != NULL)
{
proj->velz += 9*FRACUNIT;
}
self->angle += ANGLE_45/16;
proj = P_SpawnMissileZAimed (self, self->Z(), self->target, PClass::FindClass("InquisitorShot"));
if (proj != NULL)
{
proj->velz += 16*FRACUNIT;
}
self->AddZ(-32*FRACUNIT);
}
DEFINE_ACTION_FUNCTION(AActor, A_InquisitorJump)
{
fixed_t dist;
fixed_t speed;
angle_t an;
if (self->target == NULL)
return;
S_Sound (self, CHAN_ITEM|CHAN_LOOP, "inquisitor/jump", 1, ATTN_NORM);
self->AddZ(64*FRACUNIT);
A_FaceTarget (self);
an = self->angle >> ANGLETOFINESHIFT;
speed = self->Speed * 2/3;
self->velx += FixedMul (speed, finecosine[an]);
self->vely += FixedMul (speed, finesine[an]);
dist = self->AproxDistance (self->target);
dist /= speed;
if (dist < 1)
{
dist = 1;
}
self->velz = (self->target->Z() - self->Z()) / dist;
self->reactiontime = 60;
self->flags |= MF_NOGRAVITY;
}
DEFINE_ACTION_FUNCTION(AActor, A_InquisitorCheckLand)
{
self->reactiontime--;
if (self->reactiontime < 0 ||
self->velx == 0 ||
self->vely == 0 ||
self->Z() <= self->floorz)
{
self->SetState (self->SeeState);
self->reactiontime = 0;
self->flags &= ~MF_NOGRAVITY;
S_StopSound (self, CHAN_ITEM);
return;
}
if (!S_IsActorPlayingSomething (self, CHAN_ITEM, -1))
{
S_Sound (self, CHAN_ITEM|CHAN_LOOP, "inquisitor/jump", 1, ATTN_NORM);
}
}
DEFINE_ACTION_FUNCTION(AActor, A_TossArm)
{
AActor *foo = Spawn("InquisitorArm", self->PosPlusZ(24*FRACUNIT), ALLOW_REPLACE);
foo->angle = self->angle - ANGLE_90 + (pr_inq.Random2() << 22);
foo->velx = FixedMul (foo->Speed, finecosine[foo->angle >> ANGLETOFINESHIFT]) >> 3;
foo->vely = FixedMul (foo->Speed, finesine[foo->angle >> ANGLETOFINESHIFT]) >> 3;
foo->velz = pr_inq() << 10;
}
|
cd03929a241c38597b5b6d58020a43749eb9bf57 | 02d70c967416f60447356b4657903bed939c8cf2 | /Pila.cpp | 417e35a6f71570ddc6a3c1f93b190231394a9725 | [] | no_license | juanmartinnn/tarealistas_pilas | f21775871a6f9153fd0618ebbbeedf2c883c7fa7 | 67f1ae412b0d2751b4e70263c61ded0ffadaad1d | refs/heads/master | 2021-01-10T09:28:37.691101 | 2015-11-26T07:35:57 | 2015-11-26T07:35:57 | 46,911,016 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 736 | cpp | Pila.cpp | #include<iostream>
#include"Pila.h"
using namespace std;
int main(){
Pila pila;
int x;
int op;
do
{
menu(); cin>> op;
switch(op)
{
case 1: cout<< "\n\t INGRESE NUMERO : "; cin>> x;
pila.Apilar(x);
cout<<"\n\n\t\tNumero " << x << " apilado...\n\n";
break;
case 2:
cout << "\n\n\t MOSTRANDO PILA\n\n";
if(pila.PilaVacia()!=true)
pila.MostrarPila( );
else
cout<<"\n\n\tPila vacia..!"<<endl;
break;
}
cout<<endl<<endl;
}while(op!=3);
return 0;
}
|
61e413691254631fb4fc38c28f83cb6df57b3edc | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir7941/dir22441/dir28114/dir28512/file28530.cpp | 36172b292e3e2d661da045b6af62be8e21f43a48 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | file28530.cpp | #ifndef file28530
#error "macro file28530 must be defined"
#endif
static const char* file28530String = "file28530"; |
3b52550b99db4ae1b02a896322268ca38c087a9b | d77775087bcc0c0ea68bf02550486b7c807a95f1 | /SystemExplorer/SelectColumnsDlg.h | 98dfc40db5ced86686f6c3554529fa53d1c13f19 | [
"MIT"
] | permissive | zodiacon/SystemExplorer | 7dcbd08e95a1f64c81b9fc7faadc2866b271dd73 | f5d51f63581807dbd2a8957bc4bc9dae4aa001cc | refs/heads/master | 2023-06-21T20:03:41.393103 | 2023-06-10T20:44:16 | 2023-06-10T20:44:16 | 204,397,104 | 593 | 113 | MIT | 2021-08-28T09:48:59 | 2019-08-26T04:41:32 | C | UTF-8 | C++ | false | false | 1,999 | h | SelectColumnsDlg.h | #pragma once
#include "DialogHelper.h"
#include "VirtualListView.h"
#include "resource.h"
#include "ColumnManager.h"
class CSelectColumnsDlg :
public CDialogImpl<CSelectColumnsDlg>,
public CVirtualListView <CSelectColumnsDlg> {
public:
enum { IDD = IDD_COLUMNS };
CSelectColumnsDlg(ColumnManager* cm);
CString GetColumnText(HWND, int row, int col) const;
ListViewRowCheck IsRowChecked(int row) const;
void DoSort(const SortInfo* si);
BEGIN_MSG_MAP(CSelectColumnsDlg)
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
COMMAND_ID_HANDLER(IDOK, OnCloseCmd)
COMMAND_ID_HANDLER(IDCANCEL, OnCloseCmd)
NOTIFY_CODE_HANDLER(LVN_KEYDOWN, OnListKeyDown)
NOTIFY_CODE_HANDLER(NM_CLICK, OnListClick)
NOTIFY_CODE_HANDLER(TVN_ITEMCHANGED, OnTreeItemChanged)
COMMAND_RANGE_HANDLER(IDC_TYPE, IDC_TYPE + 1, OnSelectList)
CHAIN_MSG_MAP(CVirtualListView<CSelectColumnsDlg>)
END_MSG_MAP()
private:
LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/);
LRESULT OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnListKeyDown(int /*idCtrl*/, LPNMHDR hdr, BOOL& /*bHandled*/);
LRESULT OnListClick(int /*idCtrl*/, LPNMHDR hdr, BOOL& /*bHandled*/);
LRESULT OnSelectList(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnTreeItemChanged(int /*idCtrl*/, LPNMHDR hdr, BOOL& /*bHandled*/);
const ColumnManager::ColumnInfo& GetColumn(int index) const;
void ToggleSelected();
void UpdateVisibility();
void CheckItemCategory(const CString& category, bool check);
void CheckTreeChildren(HTREEITEM hParent, bool check);
private:
struct TreeItem {
CString Text;
HTREEITEM hItem;
};
struct Item {
CString Name, Category;
int Index;
HTREEITEM hItem;
bool Visible;
};
std::vector<Item> m_Items;
std::vector<TreeItem> m_TreeItems;
ColumnManager* m_ColMgr;
CListViewCtrl m_List;
CTreeViewCtrl m_Tree;
inline static bool s_UseList{ true };
bool m_Init{ true };
};
|
bb231c41c079b2f6bcd16e71d80d283688309907 | 2c7cce3f798a3d0ae5348853f4c8de8245f407cd | /Old/esp8266-rc-car-controller-master/esp8266-rc-car/esp8266-rc-car.ino | c88588766479a78dcdf100a54b6ad8247991e4cf | [
"MIT"
] | permissive | abhinavsreesan/Tanks | 899211627d360a929f8b4754e832ca9eda1b0ec2 | df7bbf7d915e1ba77d2a189057a50f44bd825218 | refs/heads/master | 2021-09-07T12:00:39.153682 | 2018-02-22T14:54:01 | 2018-02-22T14:54:01 | 122,491,012 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,976 | ino | esp8266-rc-car.ino | #include <WiFiUdp.h>
#include <ESP8266WiFi.h>
#include<Servo.h>
#define m1 6 //Motor Driver Connection
#define m2 5 //Motor Driver Connection
#define ser 4 //Servo Motor Connection
Servo myservo;
const char* ssid = "Slyphen"; //Enter your wifi network SSID
const char* password = "12345678*"; //Enter your wifi network password
const int SERVER_PORT = 1111;
const int BAUD_RATE = 9600;
byte incomingByte = 0;
bool forwardsPressed = false;
bool backwardsPressed = false;
bool rightPressed = false;
bool leftPressed = false;
const int FORWARDS_PRESSED = 1;
const int FORWARDS_RELEASED = 2;
const int BACKWARDS_PRESSED = 3;
const int BACKWARDS_RELEASED = 4;
const int RIGHT_PRESSED = 5;
const int RIGHT_RELEASED = 6;
const int LEFT_PRESSED = 7;
const int LEFT_RELEASED = 8;
byte packetBuffer[512];
WiFiUDP Udp;
void connectWifi() {
Serial.println();
Serial.println();
Serial.print("Connecting to WIFI network");
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Udp.begin(SERVER_PORT);
}
void moveForwards() {
Serial.println("Forwards");
analogWrite(m1,150);
analogWrite(m2,0);
}
void moveBackwards() {
Serial.println("Backward");
analogWrite(m1,0);
analogWrite(m2,150);
}
void turnRight() {
Serial.println("Right");
myservo.write(180);
}
void turnLeft() {
Serial.println("Left");
myservo.write(120);
}
void turnforwardLeft() {
Serial.println("Forward Left");
analogWrite(m1,150);
analogWrite(m2,0);
myservo.write(120);
}
void turnforwardRight() {
Serial.println("Forward Right");
analogWrite(m1,150);
analogWrite(m2,0);
myservo.write(180);
}
void turnbackwardLeft() {
Serial.println("Backward Left");
analogWrite(m1,0);
analogWrite(m2,150);
myservo.write(120);
}
void turnbackwardRight() {
Serial.println("Backward Right");
analogWrite(m1,0);
analogWrite(m2,150);
myservo.write(180);
}
void resetSteering() {
Serial.println("Reset Steering");
myservo.write(150);
}
void resetEngine() {
Serial.println("Reset Engine");
analogWrite(m1,0);
analogWrite(m2,0);
}
void detectKeyPresses() {
if (incomingByte == FORWARDS_PRESSED) {
forwardsPressed = true;
}
else if (incomingByte == BACKWARDS_PRESSED) {
backwardsPressed = true;
}
if (incomingByte == FORWARDS_RELEASED) {
forwardsPressed = false;
}
else if (incomingByte == BACKWARDS_RELEASED) {
backwardsPressed = false;
}
if (incomingByte == RIGHT_PRESSED) {
rightPressed = true;
}
else if (incomingByte == LEFT_PRESSED) {
leftPressed = true;
}
if (incomingByte == RIGHT_RELEASED) {
rightPressed = false;
}
else if (incomingByte == LEFT_RELEASED) {
leftPressed = false;
}
}
void handlePinOutputs() {
while (forwardsPressed == true ) {
moveForwards();
}
while (backwardsPressed == true) {
moveBackwards();
}
while (backwardsPressed = false && forwardsPressed == false) {
resetEngine();
}
while (rightPressed == true) {
turnRight();
}
while (leftPressed == true) {
turnLeft();
}
while (rightPressed == false && leftPressed == false){
resetSteering();
}
}
void setup() {
Serial.begin(BAUD_RATE);
delay(10);
connectWifi();
pinMode(ser,OUTPUT);
pinMode(m1,OUTPUT);
pinMode(m2,OUTPUT);
myservo.attach(4);
}
void loop() {
int noBytes = Udp.parsePacket();
String received_command = "";
if ( noBytes ) {
Serial.print(millis() / 1000);
Serial.print(":Packet of ");
Serial.print(noBytes);
Serial.print(" received from ");
Serial.print(Udp.remoteIP());
Serial.print(":");
Serial.println(Udp.remotePort());
Udp.read(packetBuffer,noBytes);
Serial.println();
Serial.println(packetBuffer[0]);
incomingByte = packetBuffer[0];
Serial.println();
}
detectKeyPresses();
handlePinOutputs();
}
|
650f8ddf1d78e7953319e10d4f6c553c5a3831c0 | f90de00314d0a7fda3a9a2a9577a0e6a1469d88b | /cpp_primer/11/11_12.cpp | b4da88263808ca30b177e2ba34a3a1c131422325 | [] | no_license | 1iuyzh/exercise | fdb4c6c34c47e512c5474c4b90c7533f81c1177f | 95f0b9e91dd8fb7fd9c51566fd47eff4f033d1be | refs/heads/master | 2020-05-20T12:59:51.518359 | 2018-10-25T03:36:11 | 2018-10-25T03:36:11 | 80,420,443 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 721 | cpp | 11_12.cpp | #include<iostream>
#include<string>
#include<vector>
#include<utility>
using std::cin; using std::cout; using std::endl;
using std::string;
using std::vector;
using std::pair;
int main() {
vector<string> svec = { "the", "but", "and", "or", "an" };
vector<int> ivec = { 0, 1, 2, 3, 4 };
vector<pair<string, int>> vec;
auto sp = svec.cbegin();
auto ip = ivec.cbegin();
while (sp != svec.cend()) {
vec.push_back(make_pair(*sp, *ip));
// vec.emplace_back(*sp, *ip);
// vec.push_back({*sp, *ip});
// vec.push_back(pair<string, int>(*sp, *ip));
sp++;
ip++;
}
for (auto i : vec)
cout << i.first << ' ' << i.second << endl;
return 0;
} |
8aef931e191a2c01b73d8df47cded4a1a06420b5 | f71bf901621d075d652a20323ec41fb5e46fbfa3 | /example/mirror/repeat_message_args.cpp | 084a4d81557e35871b70f6e825f3940ac41db2a1 | [
"BSL-1.0",
"GPL-1.0-or-later",
"GPL-3.0-only"
] | permissive | matus-chochlik/mirror | c801a5037d51ebb9f267df9941da10ac8175348a | a04ae0fd2c06d953f895f3396583b3d644e5c5e7 | refs/heads/develop | 2022-07-23T04:30:50.495521 | 2022-07-13T15:35:38 | 2022-07-13T15:35:38 | 14,149,419 | 110 | 13 | BSL-1.0 | 2021-12-22T06:00:19 | 2013-11-05T18:01:00 | C++ | UTF-8 | C++ | false | false | 1,696 | cpp | repeat_message_args.cpp | /// @example mirror/repeat_message_args.cpp
///
/// Copyright Matus Chochlik.
/// Distributed under the Boost Software License, Version 1.0.
/// See accompanying file LICENSE_1_0.txt or copy at
/// http://www.boost.org/LICENSE_1_0.txt
///
#include <mirror/program_args.hpp>
#include <mirror/sequence.hpp>
#include <chrono>
#include <iostream>
#include <ranges>
#include <thread>
struct options {
std::string message{"Hello world!"};
std::chrono::milliseconds interval{500};
int count{3};
};
template <typename T>
static auto parse(T& opts, const mirror::program_args& args) -> bool {
bool parsed = true;
const auto mo = mirror(T);
for(const auto& arg : args) {
for_each(get_data_members(mo), [&](auto mdm) {
if(arg.is_long_tag(get_name(mdm))) {
if(const auto opt{mirror::from_string(
arg.next(), get_reflected_type(get_type(mdm)))};
mirror::has_value(opt)) {
get_reference(mdm, opts) = mirror::extract(opt);
} else {
std::cerr << "invalid value '" << arg.next()
<< "' for option " << arg << "!" << std::endl;
parsed = false;
}
}
});
}
return parsed;
}
int main(int argc, const char** argv) {
const mirror::program_args args{argc, argv};
options opts;
if(parse(opts, args)) {
for(int i : std::ranges::views::iota(1, opts.count + 1)) {
std::cout << i << ": " << opts.message << std::endl;
std::this_thread::sleep_for(opts.interval);
}
return 0;
} else {
return 1;
}
}
|
43d342b9a7a54141bddee38f812c93547f31fff9 | da71886e4daf3336b4f495ecd25933c7ab2ebf06 | /205_4/Mul.cpp | af3c68da8488547e18a601a7a0b55ef0dfc896a4 | [] | no_license | Ranch13/Cpp | c00aa282f39cd834dc68646bdb01cc1ee0e66497 | b7b8bdbd5e2459cb933dfe1f7351cfd3c0c5f4a5 | refs/heads/master | 2016-08-12T14:08:41.805495 | 2016-03-08T01:44:07 | 2016-03-08T01:44:07 | 53,273,790 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 335 | cpp | Mul.cpp | #include "Mul.h"
bool Mul::supportsOpearion(string operation)
{
return !(operation.compare("Mul") && operation.compare("*"));
}
double Mul::calcResult(double currVal, vector<string> parameters)
{
if (parameters.size() != numberOfParameters)
throw "Not Enoough Params!";
return currVal * stod(parameters[0]);
}
Mul::~Mul()
{
} |
8a8c5d54840e6e397dd26f333c522766cae8a404 | 868e8628acaa0bf276134f9cc3ced379679eab10 | /firstCrude2D/we123/h10_refined2/0.003/U | 152234fc093762f75a4e54ffa7c92d59a96a5a6a | [] | no_license | stigmn/droplet | 921af6851f88c0acf8b1cd84f5e2903f1d0cb87a | 1649ceb0a9ce5abb243fb77569211558c2f0dc96 | refs/heads/master | 2020-04-04T20:08:37.912624 | 2015-11-25T11:20:32 | 2015-11-25T11:20:32 | 45,102,907 | 0 | 0 | null | 2015-10-28T09:46:30 | 2015-10-28T09:46:29 | null | UTF-8 | C++ | false | false | 1,451,644 | U | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0.003";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
57600
(
(-7.63471e-05 7.45325e-06 0)
(-0.000246336 5.59061e-06 0)
(-0.000579746 1.01621e-05 0)
(-0.00113776 1.88405e-05 0)
(-0.00205184 3.34919e-05 0)
(-0.00347697 5.64675e-05 0)
(-0.00558496 9.03529e-05 0)
(-0.00854834 0.000137486 0)
(-0.0125146 0.000199183 0)
(-0.0175709 0.00027459 0)
(-0.0236998 0.000359169 0)
(-0.0307362 0.00044339 0)
(-0.0383359 0.00051233 0)
(-0.0459821 0.000547312 0)
(-0.0530395 0.00052991 0)
(-0.0588577 0.000447235 0)
(-0.0628952 0.000296347 0)
(-0.06482 8.56068e-05 0)
(-0.0645558 -0.000167522 0)
(-0.0622624 -0.000441318 0)
(-0.0582698 -0.000714223 0)
(-0.0529956 -0.000968819 0)
(-0.0468714 -0.00119331 0)
(-0.0402859 -0.00138162 0)
(-0.0335616 -0.0015324 0)
(-0.0269424 -0.00164751 0)
(-0.0205991 -0.00173095 0)
(-0.0146407 -0.00178741 0)
(-0.0091282 -0.00182176 0)
(-0.00408238 -0.00183865 0)
(-7.63493e-05 2.11047e-05 0)
(-0.000323 2.75478e-05 0)
(-0.00071206 5.09368e-05 0)
(-0.00136364 9.37239e-05 0)
(-0.00241926 0.000164537 0)
(-0.00404417 0.000273945 0)
(-0.00641807 0.000433133 0)
(-0.00971613 0.000651682 0)
(-0.0140806 0.00093387 0)
(-0.0195819 0.0012733 0)
(-0.0261728 0.00164634 0)
(-0.0336447 0.00200667 0)
(-0.0416012 0.00228483 0)
(-0.0494741 0.00239725 0)
(-0.0565898 0.00226537 0)
(-0.0622833 0.00183954 0)
(-0.0660282 0.00111671 0)
(-0.067532 0.000143671 0)
(-0.0667705 -0.000995857 0)
(-0.0639554 -0.0022033 0)
(-0.0594595 -0.0033864 0)
(-0.0537284 -0.0044736 0)
(-0.0472073 -0.00541956 0)
(-0.0402889 -0.00620369 0)
(-0.033289 -0.00682448 0)
(-0.0264475 -0.00729322 0)
(-0.0199241 -0.00762846 0)
(-0.013821 -0.00785186 0)
(-0.0081912 -0.00798447 0)
(-0.00305065 -0.00804603 0)
(-7.59286e-05 3.47015e-05 0)
(-0.000321431 4.87407e-05 0)
(-0.000708579 9.01203e-05 0)
(-0.00135695 0.000165825 0)
(-0.00240742 0.000291121 0)
(-0.00402447 0.000484729 0)
(-0.00638715 0.00076649 0)
(-0.00967038 0.00115347 0)
(-0.0140171 0.00165348 0)
(-0.0195005 0.00225565 0)
(-0.0260789 0.00291883 0)
(-0.0335526 0.0035618 0)
(-0.0415366 0.0040621 0)
(-0.0494729 0.00427132 0)
(-0.0566922 0.00404854 0)
(-0.0625241 0.00330282 0)
(-0.0664262 0.0020257 0)
(-0.0680834 0.000298015 0)
(-0.0674499 -0.00173196 0)
(-0.0647217 -0.00388805 0)
(-0.0602645 -0.00600436 0)
(-0.0545256 -0.00795167 0)
(-0.0479573 -0.00964749 0)
(-0.0409621 -0.011054 0)
(-0.0338661 -0.0121681 0)
(-0.0269181 -0.0130096 0)
(-0.0202849 -0.0136118 0)
(-0.0140742 -0.0140128 0)
(-0.00834207 -0.0142509 0)
(-0.0031072 -0.0143616 0)
(-7.53041e-05 4.82057e-05 0)
(-0.000318992 6.98016e-05 0)
(-0.000703169 0.000129057 0)
(-0.00134657 0.000237472 0)
(-0.00238901 0.000416914 0)
(-0.00399384 0.000694217 0)
(-0.00633907 0.00109787 0)
(-0.0095992 0.00165247 0)
(-0.0139183 0.00236964 0)
(-0.0193737 0.00323457 0)
(-0.025932 0.00418963 0)
(-0.0334077 0.00512009 0)
(-0.0414332 0.0058517 0)
(-0.0494671 0.0061715 0)
(-0.0568474 0.00587446 0)
(-0.0628956 0.00482457 0)
(-0.0670447 0.00300313 0)
(-0.0689447 0.000521244 0)
(-0.0685151 -0.00240992 0)
(-0.0659263 -0.0055353 0)
(-0.0615328 -0.00861237 0)
(-0.0557837 -0.0114503 0)
(-0.0491423 -0.0139261 0)
(-0.0420267 -0.0159824 0)
(-0.0347791 -0.0176128 0)
(-0.0276629 -0.018845 0)
(-0.0208563 -0.0197274 0)
(-0.0144751 -0.0203151 0)
(-0.0085815 -0.0206642 0)
(-0.00319656 -0.0208261 0)
(-7.44768e-05 6.15794e-05 0)
(-0.000315691 9.06713e-05 0)
(-0.000695845 0.000167639 0)
(-0.00133251 0.000308469 0)
(-0.0023641 0.000541577 0)
(-0.00395237 0.00090185 0)
(-0.00627394 0.0014264 0)
(-0.00950272 0.00214747 0)
(-0.0137843 0.00308081 0)
(-0.0192011 0.00420851 0)
(-0.0257315 0.00545787 0)
(-0.0332083 0.00668262 0)
(-0.041288 0.00765863 0)
(-0.049452 0.00810882 0)
(-0.0570496 0.00776172 0)
(-0.0633927 0.00643085 0)
(-0.0678815 0.00408034 0)
(-0.0701185 0.000845582 0)
(-0.0699742 -0.00300172 0)
(-0.0675832 -0.00712619 0)
(-0.0632829 -0.011204 0)
(-0.0575239 -0.0149774 0)
(-0.0507845 -0.0182776 0)
(-0.0435042 -0.0210238 0)
(-0.0360477 -0.0232046 0)
(-0.0286986 -0.0248545 0)
(-0.0216512 -0.0260366 0)
(-0.0150334 -0.0268244 0)
(-0.00891458 -0.0272925 0)
(-0.00332113 -0.0275096 0)
(-7.34488e-05 7.47875e-05 0)
(-0.000311536 0.000111292 0)
(-0.000686627 0.000205761 0)
(-0.00131482 0.000378622 0)
(-0.00233273 0.000664768 0)
(-0.00390015 0.00110706 0)
(-0.00619191 0.00175122 0)
(-0.00938114 0.00263724 0)
(-0.0136151 0.00378543 0)
(-0.0189828 0.00517581 0)
(-0.0254765 0.00672246 0)
(-0.0329522 0.00825015 0)
(-0.0410969 0.00948741 0)
(-0.0494213 0.0100938 0)
(-0.0572911 0.00972875 0)
(-0.064008 0.00814828 0)
(-0.0689328 0.00529007 0)
(-0.071607 0.00130572 0)
(-0.0718378 -0.00347644 0)
(-0.0697111 -0.00863882 0)
(-0.0655401 -0.0137707 0)
(-0.059776 -0.0185395 0)
(-0.0529151 -0.022724 0)
(-0.0454247 -0.0262148 0)
(-0.0376989 -0.028992 0)
(-0.0300482 -0.0310959 0)
(-0.0226879 -0.0326048 0)
(-0.0157615 -0.033611 0)
(-0.0093494 -0.0342091 0)
(-0.0034836 -0.0344865 0)
(-7.22236e-05 8.77944e-05 0)
(-0.000306539 0.000131608 0)
(-0.00067554 0.000243321 0)
(-0.00129354 0.000447742 0)
(-0.002295 0.000786155 0)
(-0.00383733 0.00130931 0)
(-0.00609319 0.0020715 0)
(-0.00923466 0.00312058 0)
(-0.0134109 0.00448197 0)
(-0.0187184 0.00613481 0)
(-0.0251659 0.00798219 0)
(-0.0326367 0.00982314 0)
(-0.0408544 0.0113421 0)
(-0.0493668 0.0121366 0)
(-0.0575616 0.0117938 0)
(-0.0647321 0.0100042 0)
(-0.0701933 0.00666704 0)
(-0.0734133 0.0019394 0)
(-0.0741195 -0.0037991 0)
(-0.0723343 -0.0100474 0)
(-0.0683377 -0.0163004 0)
(-0.0625786 -0.0221414 0)
(-0.055575 -0.0272875 0)
(-0.0478282 -0.0315934 0)
(-0.0397691 -0.0350269 0)
(-0.0317422 -0.0376325 0)
(-0.0239902 -0.0395033 0)
(-0.0166768 -0.0407519 0)
(-0.00989599 -0.0414942 0)
(-0.00368811 -0.0418384 0)
(-7.08033e-05 0.000100565 0)
(-0.000300714 0.000151565 0)
(-0.000662614 0.000280215 0)
(-0.00126873 0.000515638 0)
(-0.00225101 0.000905409 0)
(-0.00376407 0.00150806 0)
(-0.00597799 0.00238638 0)
(-0.00906356 0.00359627 0)
(-0.0131719 0.00516881 0)
(-0.0184078 0.00708367 0)
(-0.0247985 0.00923555 0)
(-0.0322586 0.0114015 0)
(-0.0405543 0.0132259 0)
(-0.0492785 0.0142463 0)
(-0.0578485 0.0139749 0)
(-0.0655524 0.0120266 0)
(-0.0716555 0.00824826 0)
(-0.0755398 0.00278844 0)
(-0.0768348 -0.00392974 0)
(-0.0754824 -0.0113208 0)
(-0.0717168 -0.018777 0)
(-0.065981 -0.0257853 0)
(-0.0588166 -0.0319894 0)
(-0.0507656 -0.0371995 0)
(-0.0423046 -0.0413653 0)
(-0.0338202 -0.0445327 0)
(-0.0255894 -0.0468102 0)
(-0.0178016 -0.0483316 0)
(-0.0105681 -0.0492368 0)
(-0.00393951 -0.0496564 0)
(-6.91923e-05 0.000113066 0)
(-0.000294076 0.000171108 0)
(-0.000647885 0.000316341 0)
(-0.00124045 0.000582124 0)
(-0.00220087 0.0010222 0)
(-0.00368056 0.00170275 0)
(-0.0058466 0.00269503 0)
(-0.00886819 0.00406309 0)
(-0.0128984 0.00584432 0)
(-0.0180508 0.00802048 0)
(-0.024373 0.0104808 0)
(-0.0318142 0.0129847 0)
(-0.0401893 0.0151413 0)
(-0.0491446 0.0164313 0)
(-0.0581362 0.0162892 0)
(-0.0664531 0.0142441 0)
(-0.0733091 0.0100735 0)
(-0.0779879 0.00389968 0)
(-0.0800015 -0.00382197 0)
(-0.0791905 -0.0124209 0)
(-0.075728 -0.0211782 0)
(-0.0700437 -0.0294696 0)
(-0.0627047 -0.0368506 0)
(-0.0543009 -0.0430752 0)
(-0.0453637 -0.0480679 0)
(-0.0363318 -0.0518727 0)
(-0.0275247 -0.0546129 0)
(-0.0191638 -0.0564456 0)
(-0.0113824 -0.0575365 0)
(-0.00424409 -0.0580426 0)
(-6.73945e-05 0.000125265 0)
(-0.000286644 0.000190184 0)
(-0.000631393 0.000351603 0)
(-0.0012088 0.000647023 0)
(-0.00214472 0.00113622 0)
(-0.003587 0.00189287 0)
(-0.00569932 0.00299662 0)
(-0.00864891 0.00451984 0)
(-0.0125906 0.00650686 0)
(-0.0176474 0.00894321 0)
(-0.0238879 0.0117158 0)
(-0.0312995 0.0145713 0)
(-0.0397512 0.0170897 0)
(-0.0489515 0.0186987 0)
(-0.0584063 0.0187533 0)
(-0.0674147 0.0166862 0)
(-0.0751401 0.0121856 0)
(-0.0807573 0.00532573 0)
(-0.0836391 -0.0034206 0)
(-0.0834999 -0.0133014 0)
(-0.0804315 -0.0234747 0)
(-0.0748404 -0.0331883 0)
(-0.0673193 -0.0418908 0)
(-0.0585131 -0.0492655 0)
(-0.0490192 -0.0552019 0)
(-0.0393393 -0.0597379 0)
(-0.0298454 -0.0630108 0)
(-0.020799 -0.0652024 0)
(-0.0123605 -0.0665082 0)
(-0.00460997 -0.0671142 0)
(-6.54149e-05 0.000137129 0)
(-0.000278439 0.000208741 0)
(-0.000613184 0.000385903 0)
(-0.00117384 0.000710154 0)
(-0.00208271 0.00124714 0)
(-0.00348365 0.0020779 0)
(-0.00553651 0.00329035 0)
(-0.00840617 0.0049653 0)
(-0.012249 0.00715474 0)
(-0.0171973 0.00984969 0)
(-0.0233419 0.0129381 0)
(-0.0307103 0.0161596 0)
(-0.039231 0.0190713 0)
(-0.0486837 0.0210539 0)
(-0.0586372 0.0213827 0)
(-0.0684132 0.0193827 0)
(-0.0771299 0.0146307 0)
(-0.0838445 0.00712603 0)
(-0.0877673 -0.00266242 0)
(-0.0884574 -0.0139046 0)
(-0.0858985 -0.0256274 0)
(-0.0804598 -0.0369286 0)
(-0.0727576 -0.0471275 0)
(-0.0634994 -0.0558177 0)
(-0.0533606 -0.0628417 0)
(-0.0429195 -0.0682246 0)
(-0.0326126 -0.072117 0)
(-0.0227508 -0.074727 0)
(-0.0135285 -0.0762834 0)
(-0.00504703 -0.0770061 0)
(-6.32584e-05 0.000148627 0)
(-0.000269485 0.000226728 0)
(-0.000593308 0.000419145 0)
(-0.00113568 0.000771342 0)
(-0.00201501 0.00135467 0)
(-0.00337078 0.00225734 0)
(-0.00535856 0.00357542 0)
(-0.00814048 0.00539826 0)
(-0.011874 0.00778623 0)
(-0.0167005 0.0107376 0)
(-0.0227335 0.014145 0)
(-0.0300422 0.0177467 0)
(-0.0386189 0.021085 0)
(-0.0483239 0.0235007 0)
(-0.0588037 0.0241911 0)
(-0.0694193 0.0223633 0)
(-0.079254 0.0174583 0)
(-0.0872416 0.00936801 0)
(-0.0924068 -0.00147063 0)
(-0.0941158 -0.0141599 0)
(-0.0922128 -0.027585 0)
(-0.0870083 -0.0406694 0)
(-0.0791375 -0.0525751 0)
(-0.0693785 -0.0627823 0)
(-0.0584982 -0.07107 0)
(-0.0471678 -0.0774428 0)
(-0.0359022 -0.082062 0)
(-0.0250738 -0.0851645 0)
(-0.0149197 -0.0870161 0)
(-0.00556777 -0.0878763 0)
(-6.09302e-05 0.00015973 0)
(-0.000259806 0.000244098 0)
(-0.000571818 0.000451242 0)
(-0.00109442 0.000830425 0)
(-0.00194179 0.00145851 0)
(-0.00324866 0.00243069 0)
(-0.00516592 0.00385104 0)
(-0.00785238 0.00581757 0)
(-0.0114662 0.00839963 0)
(-0.0161573 0.0116045 0)
(-0.0220615 0.0153333 0)
(-0.0292906 0.019329 0)
(-0.0379045 0.0231282 0)
(-0.0478532 0.0260407 0)
(-0.058877 0.0271903 0)
(-0.0703977 0.0256576 0)
(-0.0814803 0.0207218 0)
(-0.0909348 0.0121282 0)
(-0.0975751 0.000246754 0)
(-0.100534 -0.0139794 0)
(-0.0994717 -0.0292803 0)
(-0.0946127 -0.0443787 0)
(-0.0866022 -0.0582439 0)
(-0.0762957 -0.0702126 0)
(-0.0645683 -0.0799803 0)
(-0.0522022 -0.0875193 0)
(-0.039809 -0.0929985 0)
(-0.0278364 -0.0966854 0)
(-0.0165756 -0.0988884 0)
(-0.00618788 -0.0999123 0)
(-5.84362e-05 0.000170406 0)
(-0.000249428 0.0002608 0)
(-0.000548774 0.000482101 0)
(-0.00105017 0.000887235 0)
(-0.00186327 0.00155838 0)
(-0.00311764 0.00259747 0)
(-0.00495906 0.00411644 0)
(-0.00754252 0.006222 0)
(-0.0110262 0.00899312 0)
(-0.0155678 0.0124479 0)
(-0.0213246 0.0164994 0)
(-0.0284511 0.020902 0)
(-0.0370772 0.0251963 0)
(-0.047251 0.0286726 0)
(-0.0588246 0.030389 0)
(-0.0713063 0.0292935 0)
(-0.0837675 0.0244773 0)
(-0.0949009 0.0154929 0)
(-0.103287 0.0025941 0)
(-0.107774 -0.0132543 0)
(-0.107787 -0.0306261 0)
(-0.103423 -0.0480088 0)
(-0.0953237 -0.0641364 0)
(-0.0844278 -0.0781639 0)
(-0.0717375 -0.0896765 0)
(-0.0581684 -0.0985995 0)
(-0.0444498 -0.105104 0)
(-0.0311236 -0.109491 0)
(-0.0185476 -0.112115 0)
(-0.00692657 -0.113335 0)
(-5.57822e-05 0.000180633 0)
(-0.000238383 0.00027679 0)
(-0.000524239 0.000511639 0)
(-0.00100305 0.000941618 0)
(-0.00177964 0.001654 0)
(-0.00297806 0.00275723 0)
(-0.00473849 0.00437089 0)
(-0.00721159 0.00661042 0)
(-0.0105547 0.00956495 0)
(-0.0149323 0.013265 0)
(-0.020522 0.0176393 0)
(-0.0275196 0.0224604 0)
(-0.0361261 0.0272831 0)
(-0.0464954 0.0313926 0)
(-0.0586098 0.0337922 0)
(-0.0720952 0.0332971 0)
(-0.0860629 0.0287836 0)
(-0.0991052 0.0195596 0)
(-0.109549 0.00570046 0)
(-0.115904 -0.0118504 0)
(-0.11729 -0.0315095 0)
(-0.11362 -0.0514933 0)
(-0.10551 -0.0702465 0)
(-0.0939913 -0.086694 0)
(-0.0802118 -0.100277 0)
(-0.0652477 -0.110853 0)
(-0.0499716 -0.11859 0)
(-0.0350418 -0.12382 0)
(-0.0209009 -0.126954 0)
(-0.00780846 -0.128413 0)
(-5.29735e-05 0.000190383 0)
(-0.000226698 0.000292023 0)
(-0.00049828 0.000539777 0)
(-0.000953196 0.000993424 0)
(-0.00169113 0.00174511 0)
(-0.00283027 0.00290952 0)
(-0.00450478 0.00461367 0)
(-0.00686034 0.0069817 0)
(-0.0100526 0.0101133 0)
(-0.0142516 0.0140531 0)
(-0.019653 0.0187487 0)
(-0.0264919 0.0239977 0)
(-0.0350404 0.0293806 0)
(-0.0455634 0.0341931 0)
(-0.0581922 0.0374007 0)
(-0.0727059 0.0376904 0)
(-0.0883003 0.033701 0)
(-0.103498 0.0244371 0)
(-0.11636 0.00971687 0)
(-0.124995 -0.00960041 0)
(-0.128127 -0.0317844 0)
(-0.125414 -0.0547396 0)
(-0.117414 -0.0765542 0)
(-0.10525 -0.0958609 0)
(-0.0902451 -0.111913 0)
(-0.0736655 -0.124478 0)
(-0.0565587 -0.133707 0)
(-0.0397264 -0.139963 0)
(-0.0237181 -0.143719 0)
(-0.00886464 -0.145468 0)
(-5.00165e-05 0.000199635 0)
(-0.000214408 0.000306459 0)
(-0.000470967 0.000566435 0)
(-0.000900738 0.00104251 0)
(-0.00159798 0.00183145 0)
(-0.00267469 0.00305392 0)
(-0.00425852 0.00484408 0)
(-0.0064896 0.0073347 0)
(-0.00952098 0.0106365 0)
(-0.0135264 0.0148092 0)
(-0.0187173 0.019823 0)
(-0.025365 0.0255067 0)
(-0.0338099 0.0314783 0)
(-0.0444315 0.0370624 0)
(-0.0575277 0.0412091 0)
(-0.0730704 0.0424899 0)
(-0.0903964 0.0392893 0)
(-0.108006 0.030246 0)
(-0.1237 0.0148221 0)
(-0.135114 -0.00629658 0)
(-0.140466 -0.0312628 0)
(-0.139059 -0.0576215 0)
(-0.131339 -0.0830207 0)
(-0.118528 -0.105721 0)
(-0.102151 -0.124734 0)
(-0.0837037 -0.139704 0)
(-0.0644436 -0.150751 0)
(-0.0453491 -0.158266 0)
(-0.027105 -0.162789 0)
(-0.0101351 -0.164898 0)
(-4.69164e-05 0.000208368 0)
(-0.000201546 0.000320056 0)
(-0.000442375 0.000591541 0)
(-0.000845819 0.00108874 0)
(-0.00150045 0.00191279 0)
(-0.00251171 0.00319002 0)
(-0.00400036 0.00506146 0)
(-0.00610027 0.00766836 0)
(-0.00896082 0.0111326 0)
(-0.0127577 0.0155305 0)
(-0.017715 0.0208572 0)
(-0.0241359 0.0269791 0)
(-0.0324248 0.0335636 0)
(-0.0430761 0.0399847 0)
(-0.0565691 0.0452051 0)
(-0.0731109 0.0477042 0)
(-0.0922489 0.0456054 0)
(-0.112534 0.0371179 0)
(-0.131526 0.0212274 0)
(-0.146327 -0.00168409 0)
(-0.1545 -0.0297001 0)
(-0.154854 -0.0599683 0)
(-0.147652 -0.0895827 0)
(-0.134219 -0.116327 0)
(-0.116317 -0.138904 0)
(-0.095716 -0.156798 0)
(-0.0739233 -0.170077 0)
(-0.0521329 -0.179154 0)
(-0.0312006 -0.184633 0)
(-0.0116725 -0.187192 0)
(-4.36788e-05 0.000216564 0)
(-0.000188148 0.000332777 0)
(-0.000412582 0.000615026 0)
(-0.00078859 0.001132 0)
(-0.0013988 0.00198891 0)
(-0.00234178 0.00331744 0)
(-0.00373095 0.00526517 0)
(-0.00569331 0.00798163 0)
(-0.0083734 0.0116001 0)
(-0.0119468 0.0162139 0)
(-0.0166468 0.0218461 0)
(-0.0228028 0.0284059 0)
(-0.0308768 0.035622 0)
(-0.0414742 0.0429396 0)
(-0.0552666 0.0493681 0)
(-0.0727394 0.0533314 0)
(-0.0937326 0.0526991 0)
(-0.116947 0.0451932 0)
(-0.139762 0.0291803 0)
(-0.158684 0.00456783 0)
(-0.170443 -0.0267817 0)
(-0.173158 -0.0615519 0)
(-0.166801 -0.0961441 0)
(-0.152804 -0.127724 0)
(-0.133222 -0.154603 0)
(-0.110147 -0.176067 0)
(-0.0853804 -0.192108 0)
(-0.0603711 -0.203141 0)
(-0.0361901 -0.209833 0)
(-0.0135478 -0.212966 0)
(-4.03075e-05 0.00022421 0)
(-0.000174252 0.000344588 0)
(-0.000381672 0.000636826 0)
(-0.000729209 0.00117215 0)
(-0.00129331 0.00205959 0)
(-0.00216536 0.00343581 0)
(-0.00345103 0.00545462 0)
(-0.00526978 0.00827349 0)
(-0.00776013 0.012037 0)
(-0.0110954 0.0168564 0)
(-0.015514 0.022784 0)
(-0.0213651 0.0297773 0)
(-0.0291593 0.0376366 0)
(-0.0396045 0.045901 0)
(-0.0535696 0.0536675 0)
(-0.0718584 0.0593547 0)
(-0.0946966 0.0606075 0)
(-0.12107 0.0546166 0)
(-0.14828 0.0389684 0)
(-0.172208 0.0128504 0)
(-0.188537 -0.0220974 0)
(-0.1944 -0.0620699 0)
(-0.189326 -0.102568 0)
(-0.174865 -0.139943 0)
(-0.15345 -0.172022 0)
(-0.127557 -0.197855 0)
(-0.099313 -0.217339 0)
(-0.0704594 -0.230859 0)
(-0.0423313 -0.239121 0)
(-0.0158611 -0.243007 0)
(-3.68066e-05 0.000231297 0)
(-0.000159895 0.000355455 0)
(-0.000349726 0.000656879 0)
(-0.000667836 0.00120909 0)
(-0.00118426 0.00212463 0)
(-0.00198293 0.0035448 0)
(-0.00316134 0.00562923 0)
(-0.00483076 0.00854301 0)
(-0.00712251 0.0124418 0)
(-0.0102052 0.017455 0)
(-0.0143182 0.0236656 0)
(-0.019823 0.0310828 0)
(-0.0272674 0.0395886 0)
(-0.0374483 0.0488382 0)
(-0.0514274 0.0580618 0)
(-0.0703617 0.0657398 0)
(-0.0949625 0.0693484 0)
(-0.12467 0.0655309 0)
(-0.156886 0.0509222 0)
(-0.186886 0.0236684 0)
(-0.209046 -0.0151046 0)
(-0.219105 -0.0611199 0)
(-0.215887 -0.108671 0)
(-0.201105 -0.153006 0)
(-0.17771 -0.191356 0)
(-0.148647 -0.222534 0)
(-0.116381 -0.24634 0)
(-0.08295 -0.263077 0)
(-0.0500044 -0.273431 0)
(-0.0187681 -0.278351 0)
(-3.31779e-05 0.00023782 0)
(-0.000145118 0.000365351 0)
(-0.000316834 0.000675133 0)
(-0.000604639 0.00124272 0)
(-0.00107195 0.00218385 0)
(-0.00179497 0.00364409 0)
(-0.00286265 0.00578848 0)
(-0.00437743 0.00878929 0)
(-0.00646219 0.0128129 0)
(-0.00927856 0.0180067 0)
(-0.0130621 0.0244851 0)
(-0.0181784 0.0323116 0)
(-0.0251989 0.0414576 0)
(-0.0349907 0.0517153 0)
(-0.0487921 0.062497 0)
(-0.0681372 0.0724301 0)
(-0.0943228 0.0789105 0)
(-0.12745 0.0780643 0)
(-0.165289 0.0654135 0)
(-0.202625 0.0376504 0)
(-0.232263 -0.0050915 0)
(-0.24793 -0.0581715 0)
(-0.247292 -0.114227 0)
(-0.232354 -0.166923 0)
(-0.206836 -0.212795 0)
(-0.174284 -0.250466 0)
(-0.137472 -0.279733 0)
(-0.0986338 -0.300712 0)
(-0.0598146 -0.313961 0)
(-0.0225472 -0.320429 0)
(-2.94222e-05 0.00024378 0)
(-0.000129962 0.000374246 0)
(-0.000283087 0.000691537 0)
(-0.000539793 0.00127294 0)
(-0.000956688 0.00223709 0)
(-0.00160201 0.0037334 0)
(-0.00255579 0.00593189 0)
(-0.00391103 0.00901149 0)
(-0.00578098 0.0131489 0)
(-0.00831784 0.0185088 0)
(-0.0117486 0.025237 0)
(-0.0164344 0.0334526 0)
(-0.0229547 0.0432218 0)
(-0.0322219 0.0544911 0)
(-0.0456215 0.0669058 0)
(-0.0650706 0.0793418 0)
(-0.0925423 0.089241 0)
(-0.129034 0.092312 0)
(-0.173064 0.0828454 0)
(-0.219215 0.0555814 0)
(-0.25851 0.00892116 0)
(-0.281721 -0.0525063 0)
(-0.284539 -0.118984 0)
(-0.269574 -0.181714 0)
(-0.241752 -0.236525 0)
(-0.205485 -0.281911 0)
(-0.163836 -0.318118 0)
(-0.118606 -0.344828 0)
(-0.0728529 -0.362128 0)
(-0.0278819 -0.371388 0)
(-2.55379e-05 0.000249189 0)
(-0.000114469 0.000382116 0)
(-0.000248576 0.000706047 0)
(-0.000473472 0.00129967 0)
(-0.00083879 0.0022842 0)
(-0.00140456 0.00381247 0)
(-0.0022416 0.00605901 0)
(-0.00343285 0.00920884 0)
(-0.00508078 0.0134482 0)
(-0.00732585 0.0189585 0)
(-0.0103818 0.0259158 0)
(-0.0145958 0.0344946 0)
(-0.020539 0.0448586 0)
(-0.0291387 0.0571209 0)
(-0.0418814 0.0712071 0)
(-0.0610506 0.0863612 0)
(-0.0893633 0.100233 0)
(-0.128953 0.10831 0)
(-0.179609 0.103632 0)
(-0.236243 0.0784362 0)
(-0.288072 0.0282818 0)
(-0.321633 -0.0431708 0)
(-0.328886 -0.122762 0)
(-0.313823 -0.19742 0)
(-0.283406 -0.262838 0)
(-0.243151 -0.31681 0)
(-0.197435 -0.361689 0)
(-0.143339 -0.397001 0)
(-0.0907732 -0.418556 0)
(-0.0367713 -0.435203 0)
(-2.15212e-05 0.000254059 0)
(-9.86819e-05 0.000388936 0)
(-0.000213397 0.000718622 0)
(-0.000405859 0.00132285 0)
(-0.000718579 0.00232504 0)
(-0.00120318 0.00388107 0)
(-0.00192094 0.00616944 0)
(-0.00294424 0.00938065 0)
(-0.00436367 0.0137096 0)
(-0.00630567 0.0193533 0)
(-0.0089661 0.0265164 0)
(-0.012669 0.0354268 0)
(-0.0179594 0.046345 0)
(-0.025746 0.0595566 0)
(-0.0375506 0.0753061 0)
(-0.0559765 0.093341 0)
(-0.0845157 0.111707 0)
(-0.126646 0.125998 0)
(-0.184088 0.128154 0)
(-0.252967 0.107393 0)
(-0.321136 0.0549364 0)
(-0.369414 -0.0287509 0)
(-0.381899 -0.125756 0)
(-0.366097 -0.213917 0)
(-0.332491 -0.292898 0)
(-0.283612 -0.355474 0)
(-0.226822 -0.407877 0)
(-0.154508 -0.46517 0)
(-0.0929953 -0.479075 0)
(-0.0414057 -0.514211 0)
(-1.73644e-05 0.000258401 0)
(-8.26446e-05 0.000394687 0)
(-0.000177648 0.000729225 0)
(-0.000337141 0.00134239 0)
(-0.000596386 0.0023595 0)
(-0.000998424 0.00393899 0)
(-0.00159472 0.00626282 0)
(-0.00244662 0.00952628 0)
(-0.00363183 0.013932 0)
(-0.0052607 0.0196909 0)
(-0.00750679 0.0270339 0)
(-0.0106621 0.0362388 0)
(-0.0152278 0.0476586 0)
(-0.0220583 0.061749 0)
(-0.0326252 0.0790945 0)
(-0.049767 0.1001 0)
(-0.0777364 0.123395 0)
(-0.12146 0.145169 0)
(-0.18537 0.156677 0)
(-0.268131 0.143804 0)
(-0.357484 0.0917206 0)
(-0.427945 -0.00691239 0)
(-0.445616 -0.129682 0)
(-0.424987 -0.230439 0)
(-0.376973 -0.33825 0)
(-0.267409 -0.415807 0)
(-0.114603 -0.514542 0)
(0.0165932 -0.521538 0)
(-0.0103671 -0.503658 0)
(0.00210271 -0.554484 0)
(-1.30522e-05 0.000262227 0)
(-6.63997e-05 0.00039935 0)
(-0.000141427 0.000737828 0)
(-0.000267503 0.00135825 0)
(-0.000472545 0.00238747 0)
(-0.000790847 0.00398605 0)
(-0.00126385 0.00633885 0)
(-0.00194143 0.00964521 0)
(-0.00288752 0.0141143 0)
(-0.00419454 0.0199693 0)
(-0.00600972 0.027464 0)
(-0.00858471 0.0369209 0)
(-0.0123595 0.0487783 0)
(-0.0180999 0.06365 0)
(-0.0271236 0.0824531 0)
(-0.042367 0.106429 0)
(-0.0687988 0.134928 0)
(-0.112672 0.165412 0)
(-0.181988 0.18923 0)
(-0.279742 0.189082 0)
(-0.395734 0.142556 0)
(-0.502355 0.0277307 0)
(-0.523289 -0.14191 0)
(-0.468405 -0.256769 0)
(-0.38084 -0.43019 0)
(-0.270038 -0.490522 0)
(-0.263131 -0.599818 0)
(-0.208726 -0.574193 0)
(-0.11032 -0.578878 0)
(-0.0277541 -0.593352 0)
(-8.56395e-06 0.000265551 0)
(-4.99908e-05 0.00040291 0)
(-0.000104833 0.000744408 0)
(-0.000197135 0.00137039 0)
(-0.00034739 0.00240886 0)
(-0.00058102 0.00402211 0)
(-0.000929243 0.00639727 0)
(-0.00143014 0.00973698 0)
(-0.00213311 0.0142558 0)
(-0.00311102 0.0201868 0)
(-0.00448132 0.0278028 0)
(-0.00644774 0.0374649 0)
(-0.00937356 0.0496846 0)
(-0.0139059 0.0652158 0)
(-0.0210939 0.0852526 0)
(-0.0337505 0.112096 0)
(-0.0575621 0.145808 0)
(-0.0995352 0.186046 0)
(-0.172132 0.225388 0)
(-0.285778 0.245118 0)
(-0.437106 0.209448 0)
(-0.599813 0.0586287 0)
(-0.675035 -0.15482 0)
(-0.614744 -0.351894 0)
(-0.480308 -0.466526 0)
(-0.378752 -0.567145 0)
(-0.276599 -0.657328 0)
(-0.181929 -0.666486 0)
(-0.10907 -0.665669 0)
(-0.0382805 -0.670465 0)
(-3.87031e-06 0.000268396 0)
(-3.34619e-05 0.000405355 0)
(-6.79662e-05 0.000748952 0)
(-0.000126229 0.00137877 0)
(-0.000221265 0.00242363 0)
(-0.000369519 0.00404705 0)
(-0.00059186 0.00643789 0)
(-0.000914286 0.00980125 0)
(-0.00137103 0.0143555 0)
(-0.00201421 0.0203417 0)
(-0.00292856 0.0280468 0)
(-0.0042636 0.0378622 0)
(-0.00629228 0.0503578 0)
(-0.00952045 0.0664036 0)
(-0.0146235 0.0873409 0)
(-0.0239008 0.11682 0)
(-0.0440574 0.155278 0)
(-0.0814297 0.205859 0)
(-0.154588 0.263598 0)
(-0.309394 0.315472 0)
(-0.387825 0.286578 0)
(-0.826549 0.148117 0)
(-0.912209 -0.0662468 0)
(-0.886313 -0.505138 0)
(-0.545087 -0.592986 0)
(-0.438221 -0.697627 0)
(-0.298995 -0.726638 0)
(-0.202162 -0.7575 0)
(-0.11778 -0.756819 0)
(-0.0426803 -0.757099 0)
(-3.48514e-07 0.000281445 0)
(-1.69696e-05 0.000400595 0)
(-3.10792e-05 0.000740234 0)
(-5.51684e-05 0.00136289 0)
(-9.46993e-05 0.0023961 0)
(-0.000157095 0.00400216 0)
(-0.000252756 0.00636892 0)
(-0.000395319 0.00970092 0)
(-0.000603404 0.014217 0)
(-0.000907357 0.020162 0)
(-0.00135727 0.0278303 0)
(-0.00204347 0.0376343 0)
(-0.00313776 0.0501861 0)
(-0.0049875 0.0664548 0)
(-0.00784141 0.0877157 0)
(-0.0126798 0.119385 0)
(-0.0291861 0.161727 0)
(-0.065204 0.224152 0)
(-0.129979 0.303984 0)
(-0.256556 0.392275 0)
(-0.427944 0.40588 0)
(-0.766093 0.342891 0)
(0.100651 0.441617 0)
(-0.494545 -0.481022 0)
(-0.665305 -0.820275 0)
(-0.480987 -0.723079 0)
(-0.356203 -0.837695 0)
(-0.219593 -0.878241 0)
(-0.127079 -0.854065 0)
(-0.0433931 -0.860094 0)
(0.000550798 -0.00184272 0)
(0.00524256 -0.00183593 0)
(0.0104068 -0.00181538 0)
(0.016036 -0.00177614 0)
(0.0220999 -0.00171359 0)
(0.0285269 -0.00162287 0)
(0.0351961 -0.00149926 0)
(0.041916 -0.00133934 0)
(0.0484263 -0.00114175 0)
(0.0543838 -0.000908979 0)
(0.0593862 -0.000648421 0)
(0.0629995 -0.000373279 0)
(0.0648191 -0.000102305 0)
(0.0645495 0.000142466 0)
(0.0620847 0.000339841 0)
(0.0575651 0.000474265 0)
(0.0513816 0.000540071 0)
(0.044115 0.000542943 0)
(0.0364227 0.000497672 0)
(0.0289196 0.000423243 0)
(0.0220826 0.000337694 0)
(0.0162106 0.000254692 0)
(0.0114281 0.000182429 0)
(0.00772212 0.00012438 0)
(0.00498664 8.07267e-05 0)
(0.00306502 4.97995e-05 0)
(0.0017827 2.91423e-05 0)
(0.000970888 1.6191e-05 0)
(0.00048019 8.69033e-06 0)
(0.000184689 4.93096e-06 0)
(0.00178303 -0.00805239 0)
(0.00680023 -0.00800667 0)
(0.0123101 -0.00789431 0)
(0.0183 -0.00769645 0)
(0.0247279 -0.00739188 0)
(0.0315051 -0.0069593 0)
(0.0384898 -0.00637857 0)
(0.0454606 -0.00563638 0)
(0.0521229 -0.00473003 0)
(0.0580997 -0.00367497 0)
(0.0629558 -0.00250986 0)
(0.0662393 -0.00129979 0)
(0.06755 -0.000133003 0)
(0.0666273 0.000891584 0)
(0.0634308 0.00168417 0)
(0.0581859 0.0021869 0)
(0.0513675 0.00238989 0)
(0.0436184 0.00233228 0)
(0.0356216 0.00208767 0)
(0.0279815 0.00174057 0)
(0.0211408 0.00136529 0)
(0.0153549 0.0010143 0)
(0.010707 0.000716517 0)
(0.00715216 0.000482062 0)
(0.00456185 0.000308729 0)
(0.00276609 0.000187875 0)
(0.001584 0.000108431 0)
(0.000845423 5.95281e-05 0)
(0.000402534 3.19553e-05 0)
(0.000130831 1.90829e-05 0)
(0.00181591 -0.0143732 0)
(0.00692552 -0.014291 0)
(0.0125357 -0.0140891 0)
(0.0186325 -0.0137337 0)
(0.0251701 -0.0131869 0)
(0.0320554 -0.0124102 0)
(0.0391398 -0.0113679 0)
(0.0461933 -0.0100363 0)
(0.0529115 -0.00841122 0)
(0.058907 -0.00652098 0)
(0.0637365 -0.00443609 0)
(0.0669451 -0.00227424 0)
(0.068137 -0.000194355 0)
(0.0670654 0.00162664 0)
(0.0637104 0.00302904 0)
(0.0583205 0.00391205 0)
(0.0513886 0.00426105 0)
(0.043566 0.00414851 0)
(0.0355336 0.00370692 0)
(0.0278863 0.00308666 0)
(0.0210555 0.00241902 0)
(0.0152868 0.00179609 0)
(0.010657 0.00126831 0)
(0.00711784 0.000853111 0)
(0.00453966 0.000546292 0)
(0.00275256 0.000332419 0)
(0.00157623 0.000191846 0)
(0.000841284 0.000105321 0)
(0.000400573 5.65377e-05 0)
(0.000130198 3.3764e-05 0)
(0.00186807 -0.0208432 0)
(0.00712449 -0.0207227 0)
(0.0128938 -0.020427 0)
(0.019159 -0.0199059 0)
(0.0258702 -0.0191047 0)
(0.0329261 -0.0179671 0)
(0.0401678 -0.0164415 0)
(0.0473513 -0.0144943 0)
(0.0541563 -0.0121208 0)
(0.0601795 -0.00936467 0)
(0.0649648 -0.00633137 0)
(0.0680526 -0.00319495 0)
(0.0690551 -0.000188439 0)
(0.0677473 0.00243128 0)
(0.0641427 0.00443563 0)
(0.0585258 0.00568418 0)
(0.0514174 0.00616235 0)
(0.0434814 0.00598013 0)
(0.0353947 0.00533117 0)
(0.0277372 0.00443195 0)
(0.0209224 0.00346955 0)
(0.0151807 0.00257433 0)
(0.0105792 0.00181713 0)
(0.00706447 0.00122198 0)
(0.00450517 0.000782406 0)
(0.00273152 0.000476063 0)
(0.00156417 0.000274738 0)
(0.000834853 0.000150825 0)
(0.000397526 8.09662e-05 0)
(0.000129215 4.8355e-05 0)
(0.00194078 -0.0275325 0)
(0.00740116 -0.027371 0)
(0.0133918 -0.0269743 0)
(0.0198917 -0.026276 0)
(0.0268438 -0.0252023 0)
(0.0341362 -0.0236788 0)
(0.041595 -0.0216377 0)
(0.0489568 -0.019036 0)
(0.0558792 -0.0158704 0)
(0.0619365 -0.0122033 0)
(0.0666557 -0.0081797 0)
(0.0695713 -0.00403577 0)
(0.0703077 -8.39125e-05 0)
(0.0686716 0.00333752 0)
(0.0647231 0.00593165 0)
(0.058796 0.00752387 0)
(0.0514489 0.00810664 0)
(0.0433612 0.00783346 0)
(0.035203 0.00696232 0)
(0.0275333 0.00577587 0)
(0.0207412 0.0045154 0)
(0.0150367 0.00334745 0)
(0.0104738 0.00236166 0)
(0.00699219 0.00158772 0)
(0.00445847 0.00101644 0)
(0.00270305 0.000618418 0)
(0.00154784 0.00035688 0)
(0.000826147 0.000195915 0)
(0.000393401 0.000105173 0)
(0.000127884 6.28154e-05 0)
(0.00203573 -0.0345158 0)
(0.00776242 -0.0343094 0)
(0.0140417 -0.0338027 0)
(0.0208472 -0.0329105 0)
(0.0281127 -0.0315398 0)
(0.0357118 -0.0295965 0)
(0.0434509 -0.0269962 0)
(0.0510409 -0.0236873 0)
(0.0581103 -0.0196707 0)
(0.0642049 -0.0150318 0)
(0.0688298 -0.00996222 0)
(0.0715142 -0.00476762 0)
(0.0718996 0.000154292 0)
(0.0698361 0.00437908 0)
(0.0654449 0.00754554 0)
(0.0591233 0.00945167 0)
(0.0514762 0.0101063 0)
(0.0432004 0.00971433 0)
(0.0349557 0.00860186 0)
(0.0272735 0.00711768 0)
(0.0205117 0.00555499 0)
(0.0148549 0.00411383 0)
(0.0103408 0.00290058 0)
(0.00690114 0.00194939 0)
(0.00439968 0.00124776 0)
(0.0026672 0.000759094 0)
(0.00152728 0.000438047 0)
(0.000815191 0.000240467 0)
(0.00038821 0.00012909 0)
(0.00012621 7.71058e-05 0)
(0.00215504 -0.0418749 0)
(0.00821667 -0.0416187 0)
(0.0148588 -0.0409897 0)
(0.022048 -0.0398826 0)
(0.029706 -0.0381827 0)
(0.0376879 -0.0357752 0)
(0.0457747 -0.0325588 0)
(0.0536446 -0.0284746 0)
(0.0608895 -0.0235309 0)
(0.0670195 -0.0178425 0)
(0.0715141 -0.0116563 0)
(0.0738973 -0.0053573 0)
(0.0738361 0.000562973 0)
(0.0712371 0.00559197 0)
(0.0662993 0.00930679 0)
(0.0594974 0.0114882 0)
(0.0514904 0.0121733 0)
(0.0429932 0.0116281 0)
(0.0346497 0.0102509 0)
(0.0269564 0.00845644 0)
(0.0202335 0.00658667 0)
(0.0146353 0.00487185 0)
(0.0101806 0.00343261 0)
(0.00679154 0.00230605 0)
(0.00432894 0.00147577 0)
(0.00262409 0.000897716 0)
(0.00150256 0.000518019 0)
(0.000802015 0.000284363 0)
(0.000381968 0.000152653 0)
(0.000124196 9.11885e-05 0)
(0.0023017 -0.049701 0)
(0.00877504 -0.0493886 0)
(0.0158629 -0.0486215 0)
(0.0235228 -0.0472723 0)
(0.031661 -0.0452023 0)
(0.0401092 -0.0422745 0)
(0.0486164 -0.0383699 0)
(0.0568202 -0.0334243 0)
(0.0642671 -0.0274579 0)
(0.0704241 -0.0206235 0)
(0.0747413 -0.0132341 0)
(0.0767401 -0.00576632 0)
(0.0761229 0.00118466 0)
(0.0728692 0.00701496 0)
(0.0672744 0.0112459 0)
(0.0599051 0.0136537 0)
(0.0514807 0.0143189 0)
(0.0427322 0.0135792 0)
(0.034281 0.0119101 0)
(0.0265805 0.00979087 0)
(0.0199062 0.00760864 0)
(0.0143782 0.00561984 0)
(0.00999339 0.00395641 0)
(0.00666363 0.00265678 0)
(0.00424644 0.00169984 0)
(0.00257382 0.00103391 0)
(0.00147373 0.000596578 0)
(0.000786655 0.00032748 0)
(0.000374691 0.000175799 0)
(0.000121849 0.000105026 0)
(0.00247945 -0.0580963 0)
(0.0094517 -0.0577197 0)
(0.0170793 -0.056795 0)
(0.0253079 -0.0551694 0)
(0.0340248 -0.052678 0)
(0.043032 -0.0491593 0)
(0.0520389 -0.0444767 0)
(0.0606328 -0.0385628 0)
(0.0683053 -0.0314561 0)
(0.0744722 -0.0233577 0)
(0.0785508 -0.0146611 0)
(0.0800648 -0.00594973 0)
(0.0787651 0.00206682 0)
(0.0747245 0.00869011 0)
(0.0683554 0.0133945 0)
(0.0603305 0.0159684 0)
(0.0514342 0.0165532 0)
(0.0424092 0.0155712 0)
(0.0338452 0.0135793 0)
(0.0261438 0.0111193 0)
(0.0195295 0.00861895 0)
(0.0140836 0.00635607 0)
(0.00977953 0.00447066 0)
(0.0065177 0.00300063 0)
(0.00415238 0.00191936 0)
(0.00251652 0.00116729 0)
(0.00144089 0.000673507 0)
(0.000769152 0.0003697 0)
(0.000366401 0.000198464 0)
(0.000119176 0.00011858 0)
(0.00269308 -0.0671784 0)
(0.0102645 -0.0667275 0)
(0.0185394 -0.0656205 0)
(0.0274492 -0.0636761 0)
(0.0368564 -0.0606993 0)
(0.0465267 -0.0565022 0)
(0.0561202 -0.0509301 0)
(0.0651628 -0.0439164 0)
(0.0730801 -0.0355258 0)
(0.0792281 -0.0260211 0)
(0.0829892 -0.0158942 0)
(0.083896 -0.00585367 0)
(0.0817669 0.00326335 0)
(0.0767918 0.0106633 0)
(0.0695233 0.0157855 0)
(0.0607545 0.0184518 0)
(0.051336 0.0188855 0)
(0.0420146 0.0176068 0)
(0.0333373 0.0152577 0)
(0.0256445 0.0124399 0)
(0.019103 0.00961552 0)
(0.0137519 0.00707878 0)
(0.00953939 0.00497405 0)
(0.00635409 0.00333672 0)
(0.004047 0.00213376 0)
(0.00245236 0.00129751 0)
(0.00140411 0.0007486 0)
(0.000749554 0.00041091 0)
(0.000357119 0.000220587 0)
(0.000116184 0.000131816 0)
(0.00294829 -0.0770827 0)
(0.0112353 -0.076545 0)
(0.0202827 -0.0752252 0)
(0.0300032 -0.072909 0)
(0.0402289 -0.0693673 0)
(0.0506801 -0.0643835 0)
(0.0609559 -0.057785 0)
(0.0705081 -0.0495106 0)
(0.0786834 -0.0396619 0)
(0.0847686 -0.0285809 0)
(0.0881101 -0.0168798 0)
(0.0882609 -0.0054145 0)
(0.0851304 0.00483605 0)
(0.0790553 0.0129846 0)
(0.0707546 0.0184528 0)
(0.0611541 0.0211224 0)
(0.0511688 0.0213232 0)
(0.0415378 0.019687 0)
(0.0327522 0.0169438 0)
(0.0250806 0.0137501 0)
(0.0186263 0.0105961 0)
(0.0133833 0.00778617 0)
(0.00927341 0.00546527 0)
(0.00617318 0.00366413 0)
(0.00393057 0.00234245 0)
(0.00238149 0.00142421 0)
(0.0013635 0.000821649 0)
(0.000727915 0.000450996 0)
(0.000346871 0.000242107 0)
(0.00011288 0.000144698 0)
(0.00325238 -0.0879677 0)
(0.0123918 -0.0873275 0)
(0.0223581 -0.0857569 0)
(0.0330406 -0.0830028 0)
(0.0442329 -0.078798 0)
(0.0555988 -0.0728936 0)
(0.0666635 -0.0651005 0)
(0.0767881 -0.0553691 0)
(0.0852254 -0.0438522 0)
(0.0911838 -0.0309925 0)
(0.0939745 -0.0175506 0)
(0.0931876 -0.00455618 0)
(0.0888536 0.00685571 0)
(0.0814934 0.0157085 0)
(0.0720202 0.021431 0)
(0.0615027 0.0239977 0)
(0.0509134 0.023872 0)
(0.0409674 0.0218115 0)
(0.0320843 0.0186349 0)
(0.0244502 0.0150471 0)
(0.0180993 0.0115581 0)
(0.0129783 0.00847635 0)
(0.00898212 0.00594297 0)
(0.0059754 0.00398196 0)
(0.00380339 0.00254485 0)
(0.00230411 0.00154705 0)
(0.00131916 0.000892452 0)
(0.000704293 0.000489847 0)
(0.000335686 0.000262965 0)
(0.000109276 0.000157191 0)
(0.00361456 -0.100021 0)
(0.0137685 -0.0992588 0)
(0.0248269 -0.0973899 0)
(0.036649 -0.0941158 0)
(0.0489806 -0.0891254 0)
(0.0614152 -0.0821352 0)
(0.0733868 -0.0729408 0)
(0.0841475 -0.0615135 0)
(0.0928388 -0.0480749 0)
(0.0985801 -0.0331967 0)
(0.100652 -0.0178224 0)
(0.098703 -0.00318716 0)
(0.0929296 0.00940365 0)
(0.0840773 0.0188946 0)
(0.0732844 0.0247553 0)
(0.0617694 0.0270931 0)
(0.0505482 0.0265354 0)
(0.0402911 0.0239785 0)
(0.0313278 0.0203276 0)
(0.0237512 0.0163276 0)
(0.0175217 0.0124991 0)
(0.0125373 0.00914745 0)
(0.00866608 0.00640587 0)
(0.00576121 0.00428937 0)
(0.00366579 0.00274042 0)
(0.00222042 0.00166568 0)
(0.00127121 0.000960819 0)
(0.000678753 0.000527359 0)
(0.000323593 0.000283105 0)
(0.000105381 0.000169264 0)
(0.00404615 -0.113465 0)
(0.0154084 -0.112556 0)
(0.0277654 -0.110329 0)
(0.0409378 -0.106432 0)
(0.0546109 -0.100504 0)
(0.0682914 -0.0922238 0)
(0.0813013 -0.0813744 0)
(0.0927611 -0.0679602 0)
(0.101681 -0.0522949 0)
(0.107081 -0.0351151 0)
(0.108218 -0.0175899 0)
(0.104835 -0.00119883 0)
(0.0973432 0.0125729 0)
(0.0867682 0.0226069 0)
(0.074504 0.02846 0)
(0.0619185 0.0304211 0)
(0.0500497 0.029314 0)
(0.039496 0.0261838 0)
(0.0304771 0.0220172 0)
(0.0229821 0.0175877 0)
(0.0168937 0.0134162 0)
(0.012061 0.00979749 0)
(0.00832596 0.00685262 0)
(0.00553114 0.00458547 0)
(0.00351813 0.00292861 0)
(0.00213065 0.00177977 0)
(0.0012198 0.00102656 0)
(0.000651365 0.000563425 0)
(0.000310626 0.000302469 0)
(0.000101207 0.000180882 0)
(0.0045617 -0.128567 0)
(0.0173661 -0.127481 0)
(0.0312695 -0.124821 0)
(0.0460435 -0.120172 0)
(0.0612967 -0.113116 0)
(0.0764278 -0.103292 0)
(0.090622 -0.090475 0)
(0.102841 -0.0747194 0)
(0.111941 -0.0564603 0)
(0.11683 -0.0366445 0)
(0.116756 -0.0167216 0)
(0.111605 0.00154586 0)
(0.102068 0.01647 0)
(0.0895159 0.0269139 0)
(0.0756269 0.0325783 0)
(0.0619097 0.033991 0)
(0.0493926 0.0322052 0)
(0.0385691 0.0284214 0)
(0.0295267 0.0236979 0)
(0.0221411 0.0188232 0)
(0.0162153 0.0143064 0)
(0.01155 0.0104245 0)
(0.00796248 0.00728197 0)
(0.00528576 0.00486945 0)
(0.00336079 0.0031089 0)
(0.00203504 0.00188902 0)
(0.00116505 0.00108949 0)
(0.000622204 0.000597949 0)
(0.00029682 0.000321005 0)
(9.67654e-05 0.000192018 0)
(0.00517972 -0.145654 0)
(0.0197106 -0.14435 0)
(0.0354608 -0.141161 0)
(0.0521381 -0.135596 0)
(0.0692538 -0.127173 0)
(0.0860724 -0.115489 0)
(0.101612 -0.100321 0)
(0.114646 -0.0817915 0)
(0.123844 -0.0604962 0)
(0.127995 -0.03765 0)
(0.126357 -0.0150515 0)
(0.119027 0.00519948 0)
(0.107063 0.0212162 0)
(0.0922552 0.0318878 0)
(0.0765911 0.0371406 0)
(0.0616977 0.0378073 0)
(0.0485499 0.0352026 0)
(0.0374968 0.0306828 0)
(0.0284713 0.0253628 0)
(0.0212272 0.0200291 0)
(0.015487 0.0151667 0)
(0.0110052 0.0110265 0)
(0.00757643 0.00769262 0)
(0.00502567 0.0051405 0)
(0.00319419 0.0032808 0)
(0.00193385 0.00199313 0)
(0.00110712 0.00114944 0)
(0.000591349 0.000630836 0)
(0.000282214 0.000338662 0)
(9.20711e-05 0.000202641 0)
(0.00592403 -0.165121 0)
(0.022531 -0.163549 0)
(0.0404949 -0.159705 0)
(0.0594393 -0.153015 0)
(0.0787521 -0.142923 0)
(0.0975316 -0.128986 0)
(0.114595 -0.110993 0)
(0.128486 -0.0891625 0)
(0.13766 -0.0642974 0)
(0.140767 -0.0379551 0)
(0.137116 -0.0123714 0)
(0.1271 0.00995502 0)
(0.112266 0.0269481 0)
(0.0949025 0.0376025 0)
(0.0773233 0.0421718 0)
(0.0612325 0.0418682 0)
(0.0474935 0.0382951 0)
(0.0362664 0.032957 0)
(0.0273063 0.027004 0)
(0.0202395 0.0212003 0)
(0.0147095 0.0159936 0)
(0.0104276 0.0116015 0)
(0.00716871 0.00808333 0)
(0.00475153 0.00539782 0)
(0.00301876 0.00344381 0)
(0.00182735 0.0020918 0)
(0.00104616 0.00120625 0)
(0.000558886 0.000661995 0)
(0.000266847 0.000355392 0)
(8.71383e-05 0.000212725 0)
(0.0068264 -0.187462 0)
(0.0259443 -0.185552 0)
(0.0465738 -0.180891 0)
(0.0682264 -0.172804 0)
(0.0901319 -0.160656 0)
(0.111186 -0.143975 0)
(0.129964 -0.122574 0)
(0.14474 -0.0967997 0)
(0.15371 -0.0677194 0)
(0.15537 -0.0373307 0)
(0.149128 -0.00842198 0)
(0.135805 0.0160402 0)
(0.117586 0.0338185 0)
(0.0973527 0.0441318 0)
(0.0777381 0.0476902 0)
(0.0604593 0.0461647 0)
(0.0461949 0.0414669 0)
(0.0348653 0.0352306 0)
(0.0260277 0.0286121 0)
(0.0191776 0.0223311 0)
(0.0138835 0.016784 0)
(0.00981835 0.0121475 0)
(0.00674027 0.00845287 0)
(0.00446403 0.00564069 0)
(0.00283497 0.00359748 0)
(0.00171583 0.00218476 0)
(0.000982338 0.00125976 0)
(0.000524902 0.000691341 0)
(0.000250762 0.000371148 0)
(8.19824e-05 0.000222245 0)
(0.00792938 -0.213296 0)
(0.0301075 -0.210955 0)
(0.0539651 -0.205254 0)
(0.0788607 -0.195407 0)
(0.103824 -0.18071 0)
(0.127506 -0.160668 0)
(0.148203 -0.135145 0)
(0.163869 -0.104645 0)
(0.172383 -0.0705662 0)
(0.172061 -0.0354758 0)
(0.162486 -0.00287369 0)
(0.145092 0.0237272 0)
(0.122899 0.0419952 0)
(0.0994742 0.0515448 0)
(0.077737 0.0537028 0)
(0.0593198 0.0506784 0)
(0.0446256 0.0446963 0)
(0.0332827 0.0374872 0)
(0.0246325 0.0301769 0)
(0.0180418 0.0234154 0)
(0.0130105 0.0175342 0)
(0.00917867 0.0126624 0)
(0.00629214 0.00880006 0)
(0.00416393 0.00586837 0)
(0.00264331 0.00374138 0)
(0.00159959 0.00227176 0)
(0.000915831 0.00130982 0)
(0.000489491 0.000718795 0)
(0.000234003 0.000385886 0)
(7.66205e-05 0.000231176 0)
(0.00929404 -0.243416 0)
(0.0352413 -0.240505 0)
(0.0630342 -0.23345 0)
(0.0918185 -0.221355 0)
(0.120372 -0.203464 0)
(0.147069 -0.179296 0)
(0.169895 -0.148783 0)
(0.186429 -0.112609 0)
(0.194147 -0.0725754 0)
(0.191135 -0.0319979 0)
(0.177269 0.00469598 0)
(0.154861 0.033339 0)
(0.128031 0.0516576 0)
(0.101105 0.0599007 0)
(0.0772088 0.0602019 0)
(0.0577529 0.0553796 0)
(0.0427587 0.0479555 0)
(0.031509 0.0397077 0)
(0.023119 0.031687 0)
(0.0168331 0.024447 0)
(0.0120919 0.0182409 0)
(0.00851007 0.0131443 0)
(0.00582549 0.00912374 0)
(0.00385202 0.00608017 0)
(0.00244431 0.00387509 0)
(0.00147895 0.00235254 0)
(0.000846822 0.0013563 0)
(0.000452751 0.000744279 0)
(0.000216615 0.000399566 0)
(7.10712e-05 0.000239498 0)
(0.0110129 -0.278873 0)
(0.0416764 -0.275175 0)
(0.0743019 -0.266292 0)
(0.107739 -0.25126 0)
(0.140466 -0.229333 0)
(0.170575 -0.200099 0)
(0.195742 -0.16356 0)
(0.213099 -0.120569 0)
(0.219578 -0.0734026 0)
(0.212936 -0.0263703 0)
(0.193523 0.0148075 0)
(0.164949 0.0452564 0)
(0.132748 0.0629919 0)
(0.102049 0.0692411 0)
(0.0760298 0.0671607 0)
(0.0556964 0.060226 0)
(0.0405694 0.0512106 0)
(0.0295371 0.0418708 0)
(0.0214868 0.0331302 0)
(0.0155531 0.0254191 0)
(0.0111297 0.0189006 0)
(0.00781416 0.0135913 0)
(0.00534149 0.00942284 0)
(0.00352913 0.00627547 0)
(0.00223849 0.00399822 0)
(0.00135423 0.00242689 0)
(0.000775498 0.00139906 0)
(0.000414781 0.000767725 0)
(0.000198646 0.00041215 0)
(6.53549e-05 0.000247191 0)
(0.0132435 -0.321141 0)
(0.0499638 -0.316249 0)
(0.0885439 -0.304756 0)
(0.127495 -0.285798 0)
(0.164972 -0.258728 0)
(0.198849 -0.223312 0)
(0.226568 -0.179548 0)
(0.244706 -0.128377 0)
(0.249399 -0.072591 0)
(0.237863 -0.0179088 0)
(0.211244 0.0281421 0)
(0.175093 0.059922 0)
(0.136738 0.0761795 0)
(0.102073 0.0795791 0)
(0.0740662 0.0745274 0)
(0.0530896 0.0651603 0)
(0.038037 0.0544209 0)
(0.0273628 0.0439528 0)
(0.0197369 0.0344939 0)
(0.0142042 0.0263254 0)
(0.0101261 0.0195097 0)
(0.00709272 0.0140016 0)
(0.00484143 0.00969633 0)
(0.00319612 0.00645366 0)
(0.00202641 0.00411042 0)
(0.00122577 0.00249459 0)
(0.000702054 0.00143799 0)
(0.000375685 0.000789071 0)
(0.000180143 0.000423604 0)
(5.94949e-05 0.000254239 0)
(0.0163358 -0.372572 0)
(0.0612358 -0.365429 0)
(0.106925 -0.349902 0)
(0.152312 -0.325665 0)
(0.194937 -0.291943 0)
(0.232791 -0.249153 0)
(0.263315 -0.196837 0)
(0.282244 -0.135891 0)
(0.284556 -0.0695513 0)
(0.266388 -0.00564606 0)
(0.230326 0.0455697 0)
(0.184891 0.0778372 0)
(0.139598 0.0913779 0)
(0.100904 0.0908847 0)
(0.0711778 0.0822193 0)
(0.0498764 0.0701088 0)
(0.0351464 0.0575391 0)
(0.0249854 0.0459277 0)
(0.0178725 0.0357648 0)
(0.0127897 0.027159 0)
(0.00908387 0.0200649 0)
(0.00634773 0.0143733 0)
(0.00432668 0.00994323 0)
(0.0028539 0.00661417 0)
(0.00180865 0.00421137 0)
(0.00109394 0.00255545 0)
(0.000626692 0.00147298 0)
(0.000335571 0.000808258 0)
(0.000161159 0.000433898 0)
(5.35167e-05 0.000260625 0)
(0.0213957 -0.438034 0)
(0.0779 -0.424367 0)
(0.130216 -0.402351 0)
(0.184093 -0.371605 0)
(0.231421 -0.32882 0)
(0.273208 -0.277933 0)
(0.307031 -0.215546 0)
(0.326913 -0.143079 0)
(0.326352 -0.0635316 0)
(0.299067 0.011794 0)
(0.250479 0.0682044 0)
(0.193742 0.0995487 0)
(0.140809 0.108694 0)
(0.0982347 0.103069 0)
(0.0672239 0.0901179 0)
(0.0460088 0.0749807 0)
(0.0318899 0.0605128 0)
(0.022408 0.0477689 0)
(0.0158983 0.0369295 0)
(0.0113137 0.0279135 0)
(0.008006 0.0205631 0)
(0.00558129 0.0147049 0)
(0.00379868 0.0101627 0)
(0.00250342 0.00675651 0)
(0.00158581 0.00430077 0)
(0.000959071 0.00260931 0)
(0.000549618 0.00150393 0)
(0.000294547 0.000825234 0)
(0.000141741 0.000443001 0)
(4.74494e-05 0.000266335 0)
(0.0250834 -0.523496 0)
(0.0801924 -0.487586 0)
(0.139679 -0.46274 0)
(0.213449 -0.422683 0)
(0.26961 -0.369124 0)
(0.319763 -0.311217 0)
(0.358836 -0.2356 0)
(0.380018 -0.150328 0)
(0.376817 -0.0535139 0)
(0.336454 0.036416 0)
(0.271094 0.0974568 0)
(0.200779 0.125609 0)
(0.139727 0.128141 0)
(0.0937325 0.115959 0)
(0.0620717 0.0980639 0)
(0.0414521 0.079667 0)
(0.0282694 0.0632844 0)
(0.0196384 0.0494486 0)
(0.0138212 0.037975 0)
(0.0097812 0.0285826 0)
(0.00689588 0.0210011 0)
(0.00479568 0.0149949 0)
(0.00325891 0.0103538 0)
(0.00214564 0.00688022 0)
(0.0013585 0.00437835 0)
(0.000821547 0.00265599 0)
(0.000471043 0.00153076 0)
(0.000252725 0.000839952 0)
(0.000121943 0.000450888 0)
(4.13269e-05 0.000271357 0)
(0.012949 -0.567588 0)
(0.0115532 -0.513716 0)
(-0.0079779 -0.51985 0)
(0.0756021 -0.520029 0)
(0.239577 -0.435256 0)
(0.350817 -0.366491 0)
(0.417131 -0.255895 0)
(0.442437 -0.159878 0)
(0.439461 -0.0379694 0)
(0.378912 0.0713835 0)
(0.291004 0.135033 0)
(0.204777 0.156499 0)
(0.135573 0.149577 0)
(0.0870566 0.129278 0)
(0.0556074 0.105855 0)
(0.0361902 0.0840405 0)
(0.024298 0.0657939 0)
(0.0166892 0.0509394 0)
(0.0116501 0.0388885 0)
(0.0081981 0.0291604 0)
(0.00575733 0.0213763 0)
(0.00399334 0.0152418 0)
(0.00270899 0.010516 0)
(0.0017816 0.00698489 0)
(0.00112736 0.00444388 0)
(0.000681749 0.00269537 0)
(0.000391188 0.0015534 0)
(0.000210222 0.000852372 0)
(0.000101818 0.000457535 0)
(3.51888e-05 0.000275694 0)
(0.014471 -0.597217 0)
(0.0897644 -0.576257 0)
(0.186425 -0.56792 0)
(0.271578 -0.577187 0)
(0.259139 -0.50057 0)
(0.358556 -0.473611 0)
(0.447598 -0.288992 0)
(0.514246 -0.181559 0)
(0.521171 -0.0135083 0)
(0.425699 0.121481 0)
(0.308195 0.18282 0)
(0.204073 0.192492 0)
(0.127453 0.172639 0)
(0.0778919 0.142614 0)
(0.0477468 0.113254 0)
(0.0302322 0.0879574 0)
(0.0200018 0.0679816 0)
(0.0135774 0.0522155 0)
(0.00939602 0.0396584 0)
(0.00657099 0.0296418 0)
(0.00459439 0.0216862 0)
(0.00317683 0.0154445 0)
(0.00215052 0.0106486 0)
(0.00141231 0.00707016 0)
(0.000893027 0.00449714 0)
(0.000540056 0.00272733 0)
(0.000310272 0.00157178 0)
(0.000167154 0.00086246 0)
(8.14195e-05 0.000462925 0)
(2.90794e-05 0.000279364 0)
(0.0220842 -0.671448 0)
(0.09088 -0.665625 0)
(0.1702 -0.655577 0)
(0.243203 -0.635516 0)
(0.345286 -0.626416 0)
(0.451323 -0.522642 0)
(0.575519 -0.372556 0)
(0.702953 -0.199847 0)
(0.637141 0.0154708 0)
(0.480068 0.188549 0)
(0.321197 0.243075 0)
(0.19655 0.233418 0)
(0.114392 0.196639 0)
(0.0660024 0.155384 0)
(0.0384402 0.119998 0)
(0.0236214 0.091258 0)
(0.015421 0.0697917 0)
(0.010325 0.0532528 0)
(0.00707148 0.0402743 0)
(0.00490722 0.0300219 0)
(0.00341141 0.0219288 0)
(0.0023488 0.0156019 0)
(0.00158518 0.010751 0)
(0.00103882 0.00713575 0)
(0.000656149 0.00453796 0)
(0.000396857 0.00275178 0)
(0.000228518 0.00158585 0)
(0.000123638 0.000870186 0)
(6.08004e-05 0.00046704 0)
(2.30483e-05 0.000282382 0)
(0.026369 -0.758304 0)
(0.0987199 -0.757355 0)
(0.174065 -0.748806 0)
(0.274967 -0.745736 0)
(0.375109 -0.700271 0)
(0.530988 -0.635901 0)
(0.798308 -0.56262 0)
(0.927073 -0.218563 0)
(0.794626 0.0514806 0)
(0.431908 0.25683 0)
(0.365836 0.322283 0)
(0.181419 0.277991 0)
(0.0955862 0.220262 0)
(0.0513225 0.16663 0)
(0.0276513 0.125774 0)
(0.0164496 0.093748 0)
(0.010609 0.0711686 0)
(0.00695784 0.0540269 0)
(0.00469093 0.040726 0)
(0.00321481 0.0302964 0)
(0.002213 0.022102 0)
(0.00151203 0.0157133 0)
(0.0010147 0.0108228 0)
(0.000662222 0.00718144 0)
(0.0004174 0.00456622 0)
(0.000252555 0.00276865 0)
(0.000146153 0.00159557 0)
(7.97969e-05 0.000875535 0)
(4.0016e-05 0.000469873 0)
(1.71501e-05 0.000284777 0)
(0.0285113 -0.859066 0)
(0.111428 -0.85751 0)
(0.19244 -0.862537 0)
(0.325083 -0.850637 0)
(0.441929 -0.750648 0)
(0.637865 -0.826026 0)
(0.507103 -0.578553 0)
(-0.234583 -0.418398 0)
(0.687448 0.220014 0)
(0.460036 0.406848 0)
(0.296686 0.40554 0)
(0.158003 0.327034 0)
(0.0799936 0.243222 0)
(0.034809 0.174504 0)
(0.0151724 0.129373 0)
(0.00886765 0.0943614 0)
(0.00562331 0.0713115 0)
(0.00350218 0.0538892 0)
(0.00226774 0.0405037 0)
(0.00150051 0.0300732 0)
(0.00100281 0.0219122 0)
(0.00066883 0.0155647 0)
(0.000440692 0.0107135 0)
(0.00028368 0.00710528 0)
(0.000177639 0.00451592 0)
(0.000107773 0.00273735 0)
(6.35926e-05 0.00157726 0)
(3.5942e-05 0.000865404 0)
(1.93063e-05 0.000464366 0)
(1.15729e-05 0.000282296 0)
(-0.0018029 -1.92634e-05 0)
(-0.00089456 0.000421849 0)
(-0.000941261 0.000770574 0)
(-0.000953643 0.00140376 0)
(-0.000932885 0.00244788 0)
(-0.000908711 0.00406366 0)
(-0.000902376 0.00643552 0)
(-0.000921014 0.00976142 0)
(-0.00100054 0.0142412 0)
(-0.00111227 0.0201225 0)
(-0.0012433 0.0276134 0)
(-0.00142338 0.0369669 0)
(-0.00174674 0.0486401 0)
(-0.00220495 0.0642984 0)
(-0.00127539 0.0865298 0)
(0.00672646 0.121098 0)
(-0.0314127 0.165225 0)
(-0.0456536 0.236157 0)
(-0.0676347 0.331559 0)
(-0.230652 0.465993 0)
(-0.484551 0.525035 0)
(-0.61378 0.334024 0)
(-0.661941 -0.32958 0)
(-0.24711 -0.531929 0)
(-0.294184 -0.702491 0)
(-0.442481 -0.850543 0)
(-0.475055 -0.916384 0)
(-0.445283 -0.946579 0)
(-0.336196 -0.970434 0)
(-0.13932 -0.997672 0)
(-0.00405163 -0.000210532 0)
(-0.00388647 0.000423607 0)
(-0.004755 0.000779336 0)
(-0.0060034 0.00141797 0)
(-0.00761936 0.00247522 0)
(-0.00973114 0.00412047 0)
(-0.0124712 0.006552 0)
(-0.0160408 0.00997634 0)
(-0.0208497 0.0145681 0)
(-0.0264879 0.0205858 0)
(-0.0337134 0.0285027 0)
(-0.0464802 0.0388035 0)
(-0.0723 0.0515801 0)
(-0.14987 0.0744102 0)
(-0.900083 0.0551487 0)
(-0.256115 0.11999 0)
(-0.289971 0.148635 0)
(-0.0691128 0.246048 0)
(-0.0382098 0.348706 0)
(-0.165163 0.524161 0)
(-0.442754 0.594215 0)
(-0.640108 0.400107 0)
(-0.435016 -0.394573 0)
(-0.145015 -0.601895 0)
(-0.0659613 -0.660096 0)
(-0.175207 -0.796679 0)
(-0.272175 -0.895354 0)
(-0.289537 -0.979742 0)
(-0.211643 -1.04738 0)
(-0.106188 -1.12678 0)
(-0.00484728 -0.000243596 0)
(-0.00508053 0.000462192 0)
(-0.00626742 0.00084636 0)
(-0.00798928 0.00150844 0)
(-0.0102592 0.00259695 0)
(-0.013268 0.00429037 0)
(-0.0172467 0.00680962 0)
(-0.0225109 0.0103759 0)
(-0.0298751 0.0151647 0)
(-0.0394271 0.0214425 0)
(-0.0529013 0.0299288 0)
(-0.0768557 0.0417974 0)
(-0.128694 0.0595842 0)
(-0.298638 0.119234 0)
(-1.47982 0.167749 0)
(-2.75042 0.0438426 0)
(-1.00149 0.0868406 0)
(-0.512432 0.205044 0)
(-0.338482 0.315459 0)
(-0.144013 0.595746 0)
(-0.467313 0.628582 0)
(-0.687609 0.447299 0)
(-0.373021 -0.543737 0)
(-0.136231 -0.674354 0)
(0.0260239 -0.68092 0)
(0.0559852 -0.751175 0)
(-0.000315812 -0.867758 0)
(-0.023494 -0.980047 0)
(-0.016857 -1.07486 0)
(-0.0204812 -1.22508 0)
(-0.00504741 -0.000220532 0)
(-0.00543546 0.000509802 0)
(-0.00670948 0.000928442 0)
(-0.00854604 0.00162088 0)
(-0.0109882 0.00275132 0)
(-0.0142226 0.00450693 0)
(-0.0185393 0.00713831 0)
(-0.0242573 0.010887 0)
(-0.0322371 0.0159453 0)
(-0.0427303 0.0226298 0)
(-0.0579196 0.032024 0)
(-0.0851354 0.0462331 0)
(-0.143691 0.0716042 0)
(-0.320248 0.171991 0)
(-1.15007 0.51752 0)
(-1.99576 -0.148403 0)
(-1.00387 -0.0877082 0)
(-0.718768 0.117009 0)
(-0.263612 0.191869 0)
(-0.119259 0.648232 0)
(-0.528314 0.711088 0)
(-0.60578 0.291244 0)
(-0.378547 -0.635345 0)
(-0.144781 -0.76112 0)
(0.0303756 -0.745753 0)
(0.143942 -0.760182 0)
(0.164673 -0.853592 0)
(0.154309 -0.964073 0)
(0.11612 -1.05995 0)
(0.0595146 -1.16693 0)
(-0.00509091 -0.000182049 0)
(-0.00554484 0.000560456 0)
(-0.00683803 0.00101443 0)
(-0.00869061 0.00174085 0)
(-0.0111713 0.002919 0)
(-0.0144266 0.00474133 0)
(-0.0187708 0.00748987 0)
(-0.0244696 0.0114306 0)
(-0.0322791 0.0167996 0)
(-0.0426696 0.023954 0)
(-0.0579941 0.0344074 0)
(-0.0850977 0.0512589 0)
(-0.141752 0.0847736 0)
(-0.288095 0.216355 0)
(-0.50264 0.788138 0)
(-0.873865 -0.29242 0)
(-0.626446 -0.174521 0)
(-0.557228 0.104055 0)
(-0.568678 0.147645 0)
(-0.00626728 0.680248 0)
(-0.566972 0.837551 0)
(-0.690832 0.298132 0)
(-0.647838 -0.681693 0)
(-0.146804 -0.865505 0)
(0.0302572 -0.81836 0)
(0.14393 -0.807767 0)
(0.201342 -0.86151 0)
(0.204709 -0.951403 0)
(0.160563 -1.02209 0)
(0.0783124 -1.07228 0)
(-0.00510014 -0.00013991 0)
(-0.00560142 0.000615148 0)
(-0.00689656 0.00110661 0)
(-0.00874867 0.00187438 0)
(-0.0112412 0.00311094 0)
(-0.0144773 0.00501074 0)
(-0.0187683 0.0078849 0)
(-0.0243231 0.0120244 0)
(-0.0317571 0.0177134 0)
(-0.0417657 0.0253604 0)
(-0.0567051 0.0369292 0)
(-0.0824794 0.056449 0)
(-0.133465 0.0974804 0)
(-0.237386 0.245186 0)
(-0.0281573 0.812268 0)
(0.164561 -0.301847 0)
(-0.376401 -0.178251 0)
(-0.433284 0.123046 0)
(-0.452311 0.121586 0)
(-0.723233 0.698975 0)
(-0.586424 0.959856 0)
(-1.00339 0.849213 0)
(-0.439689 -1.00628 0)
(-0.113772 -0.986089 0)
(0.0469884 -0.886684 0)
(0.132924 -0.855967 0)
(0.178383 -0.879959 0)
(0.181021 -0.939881 0)
(0.142902 -0.969854 0)
(0.0662897 -0.976087 0)
(-0.00509459 -9.638e-05 0)
(-0.00563859 0.000673027 0)
(-0.00692855 0.00120444 0)
(-0.0087779 0.00202031 0)
(-0.0112705 0.00332374 0)
(-0.0144765 0.0053098 0)
(-0.0186796 0.00831416 0)
(-0.0240479 0.0126524 0)
(-0.0310663 0.018666 0)
(-0.0406017 0.0268261 0)
(-0.0548603 0.0395211 0)
(-0.0786096 0.0615792 0)
(-0.12182 0.108732 0)
(-0.183705 0.257914 0)
(0.100059 0.654397 0)
(0.551827 -0.162015 0)
(-0.228853 -0.110319 0)
(-0.398707 0.154335 0)
(-0.438088 0.0240105 0)
(-0.810221 0.798068 0)
(-0.628579 1.09432 0)
(-1.64317 1.28243 0)
(-0.357006 -1.45126 0)
(-0.0203171 -1.09961 0)
(0.0862892 -0.940388 0)
(0.133694 -0.887789 0)
(0.150948 -0.889875 0)
(0.135992 -0.920333 0)
(0.0956117 -0.923466 0)
(0.0413848 -0.899311 0)
(-0.00507794 -5.18307e-05 0)
(-0.00565839 0.000734081 0)
(-0.00693931 0.00130906 0)
(-0.00878438 0.00217962 0)
(-0.0112649 0.00355665 0)
(-0.0144307 0.00563707 0)
(-0.0185175 0.00877466 0)
(-0.0236668 0.0133085 0)
(-0.0302536 0.0196418 0)
(-0.0392318 0.0283312 0)
(-0.0525361 0.0421209 0)
(-0.0736602 0.0664476 0)
(-0.10777 0.117794 0)
(-0.133948 0.257239 0)
(0.116231 0.499715 0)
(0.423763 -0.0107235 0)
(-0.140202 -0.0173645 0)
(-0.379551 0.215508 0)
(-0.396463 0.202394 0)
(-0.575611 0.630088 0)
(-0.792487 1.10709 0)
(-0.489806 0.896073 0)
(0.124441 -1.63885 0)
(0.137729 -1.15264 0)
(0.147461 -0.963886 0)
(0.148334 -0.896643 0)
(0.135778 -0.881898 0)
(0.102685 -0.887778 0)
(0.0585341 -0.880388 0)
(0.0201227 -0.8512 0)
(-0.00505251 -6.40449e-06 0)
(-0.00566074 0.00079823 0)
(-0.00693111 0.00142144 0)
(-0.00876908 0.00235286 0)
(-0.0112253 0.00380833 0)
(-0.0143382 0.00598988 0)
(-0.018282 0.00926241 0)
(-0.0231805 0.0139855 0)
(-0.0293149 0.020625 0)
(-0.037634 0.0298484 0)
(-0.0497113 0.0446545 0)
(-0.0676713 0.0708373 0)
(-0.0920648 0.124167 0)
(-0.0911269 0.247001 0)
(0.112392 0.390258 0)
(0.281253 0.0832224 0)
(-0.0735834 0.0740686 0)
(-0.341311 0.326731 0)
(-0.878634 0.316751 0)
(-1.34026 0.843014 0)
(-0.0113245 -0.0884905 0)
(0.528635 0.335933 0)
(0.611174 -1.46117 0)
(0.306797 -1.10322 0)
(0.217912 -0.94477 0)
(0.173289 -0.878868 0)
(0.134902 -0.854669 0)
(0.0908978 -0.845309 0)
(0.0452568 -0.836023 0)
(0.0126957 -0.822034 0)
(-0.00501868 3.97084e-05 0)
(-0.00564474 0.000865313 0)
(-0.00690369 0.00154213 0)
(-0.00873047 0.00254005 0)
(-0.0111499 0.00407714 0)
(-0.0141943 0.00636496 0)
(-0.0179697 0.00977184 0)
(-0.0225859 0.0146752 0)
(-0.0282381 0.0215992 0)
(-0.0357857 0.0313401 0)
(-0.0463731 0.0470315 0)
(-0.0607345 0.074521 0)
(-0.07552 0.127606 0)
(-0.0561439 0.23095 0)
(0.102378 0.315011 0)
(0.19901 0.137584 0)
(-0.0129707 0.150222 0)
(-0.193014 0.474337 0)
(-0.794037 0.410251 0)
(-0.320317 0.42475 0)
(0.264424 -0.248533 0)
(1.42252 -0.444122 0)
(0.777237 -1.0857 0)
(0.421174 -0.975062 0)
(0.278155 -0.8841 0)
(0.200973 -0.835408 0)
(0.14489 -0.811597 0)
(0.0962081 -0.797797 0)
(0.0530471 -0.78973 0)
(0.0184687 -0.791102 0)
(-0.00497792 8.63455e-05 0)
(-0.00561168 0.000935355 0)
(-0.00685746 0.00167164 0)
(-0.00866695 0.00274094 0)
(-0.0110372 0.00436193 0)
(-0.013994 0.0067596 0)
(-0.0175761 0.0102972 0)
(-0.021877 0.015369 0)
(-0.027006 0.0225489 0)
(-0.0336665 0.0327623 0)
(-0.042524 0.0491524 0)
(-0.0529985 0.0772892 0)
(-0.0589132 0.128132 0)
(-0.0285194 0.2121 0)
(0.0924617 0.262901 0)
(0.155233 0.167512 0)
(0.0461143 0.20048 0)
(0.0253653 0.487866 0)
(0.412709 1.03512 0)
(0.654214 -0.163415 0)
(0.842099 -0.233341 0)
(1.01678 -0.435532 0)
(0.728138 -0.79235 0)
(0.462524 -0.823294 0)
(0.313922 -0.796196 0)
(0.222511 -0.772037 0)
(0.157104 -0.756746 0)
(0.105515 -0.747113 0)
(0.0638448 -0.742384 0)
(0.0258154 -0.743989 0)
(-0.00493226 0.00013332 0)
(-0.00556513 0.00100832 0)
(-0.00679491 0.00180993 0)
(-0.00857913 0.00295455 0)
(-0.0108887 0.00466128 0)
(-0.0137357 0.00717048 0)
(-0.0171008 0.0108314 0)
(-0.02105 0.0160559 0)
(-0.0256063 0.0234553 0)
(-0.0312668 0.0340637 0)
(-0.0381933 0.0509086 0)
(-0.0446719 0.0789662 0)
(-0.0429186 0.12598 0)
(-0.00710354 0.192514 0)
(0.0855237 0.225603 0)
(0.134945 0.180309 0)
(0.0994483 0.22084 0)
(0.169549 0.413361 0)
(0.613533 0.562697 0)
(0.91373 -0.0165619 0)
(0.792214 -0.206217 0)
(0.775872 -0.401415 0)
(0.628414 -0.611407 0)
(0.451031 -0.685154 0)
(0.322453 -0.69875 0)
(0.231912 -0.696868 0)
(0.164018 -0.69287 0)
(0.109755 -0.690038 0)
(0.0640554 -0.688804 0)
(0.0240099 -0.686797 0)
(-0.00487923 0.000180321 0)
(-0.00550497 0.00108414 0)
(-0.00671461 0.00195621 0)
(-0.00846459 0.0031792 0)
(-0.0107026 0.00497328 0)
(-0.0134178 0.00759289 0)
(-0.0165434 0.0113664 0)
(-0.0201031 0.0167217 0)
(-0.0240323 0.024294 0)
(-0.0285905 0.0351871 0)
(-0.0334428 0.05219 0)
(-0.0360073 0.0794309 0)
(-0.0280466 0.121528 0)
(0.00946805 0.173345 0)
(0.0821743 0.1971 0)
(0.128251 0.180014 0)
(0.141095 0.215382 0)
(0.244009 0.319058 0)
(0.526607 0.321374 0)
(0.71177 0.0308661 0)
(0.681374 -0.182882 0)
(0.633911 -0.352326 0)
(0.533371 -0.494769 0)
(0.412556 -0.571514 0)
(0.309455 -0.604343 0)
(0.228086 -0.617593 0)
(0.163096 -0.62307 0)
(0.109487 -0.625503 0)
(0.0638009 -0.626711 0)
(0.0237873 -0.627543 0)
(-0.00481559 0.000226776 0)
(-0.00542907 0.00116314 0)
(-0.00661289 0.00210953 0)
(-0.0083187 0.00341304 0)
(-0.0104731 0.00529563 0)
(-0.0130358 0.00802054 0)
(-0.0159001 0.0118928 0)
(-0.0190334 0.0173506 0)
(-0.0222832 0.0250368 0)
(-0.025655 0.0360724 0)
(-0.0283619 0.0528951 0)
(-0.0272716 0.0786287 0)
(-0.014617 0.115208 0)
(0.0224163 0.155073 0)
(0.0817502 0.173302 0)
(0.128104 0.169696 0)
(0.168004 0.192655 0)
(0.270201 0.233207 0)
(0.448086 0.188754 0)
(0.564589 0.0112479 0)
(0.567048 -0.162487 0)
(0.524471 -0.302367 0)
(0.450445 -0.410659 0)
(0.363839 -0.479792 0)
(0.282969 -0.518681 0)
(0.213538 -0.539836 0)
(0.154808 -0.55151 0)
(0.104636 -0.558098 0)
(0.0610083 -0.561725 0)
(0.0225631 -0.563307 0)
(-0.00474059 0.000271855 0)
(-0.00533828 0.00124581 0)
(-0.00648925 0.00226911 0)
(-0.00813972 0.00365405 0)
(-0.010196 0.00562455 0)
(-0.0125854 0.00844456 0)
(-0.0151666 0.0123982 0)
(-0.0178385 0.0179227 0)
(-0.0203627 0.0256498 0)
(-0.0224925 0.0366559 0)
(-0.0230685 0.0529384 0)
(-0.0187366 0.0765723 0)
(-0.00281389 0.107444 0)
(0.0326027 0.137702 0)
(0.0830229 0.151727 0)
(0.129661 0.152302 0)
(0.180684 0.161291 0)
(0.268347 0.163629 0)
(0.38253 0.106895 0)
(0.456365 -0.0164781 0)
(0.464712 -0.148043 0)
(0.432679 -0.259368 0)
(0.377572 -0.345281 0)
(0.313129 -0.404867 0)
(0.249726 -0.443149 0)
(0.192039 -0.466926 0)
(0.140962 -0.481561 0)
(0.0959612 -0.490467 0)
(0.0561501 -0.4956 0)
(0.0207132 -0.497957 0)
(-0.00465193 0.000314678 0)
(-0.00523382 0.00133327 0)
(-0.00634603 0.00243528 0)
(-0.00792896 0.00390125 0)
(-0.00987191 0.00595628 0)
(-0.0120666 0.00885599 0)
(-0.0143406 0.0128685 0)
(-0.0165201 0.0184151 0)
(-0.0182817 0.0260941 0)
(-0.0191493 0.036875 0)
(-0.017701 0.05226 0)
(-0.0106569 0.0733341 0)
(0.00730138 0.0986263 0)
(0.0405633 0.121085 0)
(0.0846794 0.131101 0)
(0.129983 0.1307 0)
(0.181784 0.127724 0)
(0.251682 0.109659 0)
(0.326209 0.0530468 0)
(0.37251 -0.038864 0)
(0.3785 -0.137591 0)
(0.354629 -0.224206 0)
(0.313277 -0.292642 0)
(0.264273 -0.342658 0)
(0.214369 -0.377257 0)
(0.16713 -0.400402 0)
(0.123877 -0.415562 0)
(0.084831 -0.425237 0)
(0.0497589 -0.431035 0)
(0.0182741 -0.433818 0)
(-0.00454529 0.000354548 0)
(-0.00511315 0.00142705 0)
(-0.00618157 0.00260933 0)
(-0.00768498 0.00415516 0)
(-0.00950025 0.00628786 0)
(-0.0114805 0.00924825 0)
(-0.0134246 0.0132899 0)
(-0.0150867 0.0188039 0)
(-0.0160637 0.0263298 0)
(-0.0156891 0.0366743 0)
(-0.0124094 0.0508309 0)
(-0.00325536 0.0690329 0)
(0.015706 0.0890713 0)
(0.0465478 0.105079 0)
(0.0856179 0.111022 0)
(0.127665 0.107429 0)
(0.174527 0.0958823 0)
(0.227878 0.0685599 0)
(0.276814 0.0167273 0)
(0.305108 -0.0541629 0)
(0.307285 -0.128724 0)
(0.288645 -0.195383 0)
(0.257077 -0.249412 0)
(0.219278 -0.290388 0)
(0.179875 -0.320049 0)
(0.141576 -0.340804 0)
(0.105671 -0.354944 0)
(0.0726727 -0.364291 0)
(0.0426874 -0.370112 0)
(0.0156005 -0.373013 0)
(-0.00441791 0.000392063 0)
(-0.00497212 0.00152766 0)
(-0.00599179 0.00279183 0)
(-0.00740618 0.00441575 0)
(-0.00908077 0.00661651 0)
(-0.0108306 0.00961639 0)
(-0.0124262 0.0136501 0)
(-0.0135563 0.0190662 0)
(-0.0137468 0.02632 0)
(-0.0121981 0.0360141 0)
(-0.00735373 0.0486597 0)
(0.00328681 0.0638301 0)
(0.0223994 0.0790438 0)
(0.0506353 0.0896384 0)
(0.0850995 0.0916197 0)
(0.122384 0.0844864 0)
(0.161828 0.067766 0)
(0.201271 0.0376631 0)
(0.233201 -0.00774478 0)
(0.249695 -0.0633017 0)
(0.248651 -0.12007 0)
(0.233326 -0.171136 0)
(0.208697 -0.213311 0)
(0.179213 -0.24613 0)
(0.148077 -0.270584 0)
(0.117311 -0.288177 0)
(0.0880138 -0.30047 0)
(0.0607388 -0.308817 0)
(0.0357164 -0.314221 0)
(0.0129826 -0.317031 0)
(-0.00426863 0.000428576 0)
(-0.00480643 0.00163404 0)
(-0.00577138 0.002981 0)
(-0.00708785 0.00467986 0)
(-0.00860934 0.00693727 0)
(-0.0101165 0.00995305 0)
(-0.011352 0.0139356 0)
(-0.0119506 0.0191797 0)
(-0.0113805 0.0260349 0)
(-0.00877645 0.0348772 0)
(-0.00269386 0.0457947 0)
(0.00882801 0.0579214 0)
(0.0274022 0.0688006 0)
(0.0528481 0.0748453 0)
(0.0827783 0.07328 0)
(0.11447 0.0632525 0)
(0.145995 0.0441347 0)
(0.174335 0.0148014 0)
(0.194762 -0.023863 0)
(0.203562 -0.0676483 0)
(0.200307 -0.111114 0)
(0.187273 -0.15014 0)
(0.16769 -0.182717 0)
(0.14451 -0.208489 0)
(0.119946 -0.228042 0)
(0.095485 -0.242349 0)
(0.0719945 -0.252487 0)
(0.0499363 -0.259461 0)
(0.0294912 -0.264044 0)
(0.0107023 -0.266453 0)
(-0.00409464 0.000464241 0)
(-0.00461261 0.00174396 0)
(-0.00551638 0.00317303 0)
(-0.00672682 0.00494249 0)
(-0.00808382 0.00724299 0)
(-0.00934121 0.0102484 0)
(-0.0102134 0.0141327 0)
(-0.010297 0.0191242 0)
(-0.00902337 0.0254538 0)
(-0.00553034 0.0332699 0)
(0.00142594 0.0423206 0)
(0.0132583 0.0515052 0)
(0.0307515 0.0585889 0)
(0.0532401 0.0608773 0)
(0.078646 0.0564322 0)
(0.104562 0.0445398 0)
(0.128729 0.0250325 0)
(0.148486 -0.0017345 0)
(0.161075 -0.0339684 0)
(0.164933 -0.0684634 0)
(0.160386 -0.101816 0)
(0.149139 -0.131563 0)
(0.133363 -0.156497 0)
(0.115042 -0.176408 0)
(0.0957096 -0.191688 0)
(0.0764327 -0.202985 0)
(0.0578518 -0.211018 0)
(0.0402995 -0.216436 0)
(0.0238817 -0.219744 0)
(0.00863752 -0.221287 0)
(-0.00389329 0.00049877 0)
(-0.00438806 0.00185616 0)
(-0.0052244 0.00336493 0)
(-0.00632181 0.00519889 0)
(-0.00750459 0.00752628 0)
(-0.00851035 0.010492 0)
(-0.00902743 0.0142278 0)
(-0.00863169 0.0188853 0)
(-0.00674485 0.0245704 0)
(-0.00256943 0.0312257 0)
(0.00488943 0.0383683 0)
(0.0165196 0.0448062 0)
(0.0325142 0.0486576 0)
(0.0519374 0.0479598 0)
(0.0729326 0.0414326 0)
(0.0933798 0.0287167 0)
(0.111228 0.0101359 0)
(0.124527 -0.0132905 0)
(0.131798 -0.0397107 0)
(0.132563 -0.0667786 0)
(0.127434 -0.0923414 0)
(0.117716 -0.114931 0)
(0.104914 -0.133856 0)
(0.0903802 -0.14903 0)
(0.0751605 -0.160734 0)
(0.0599961 -0.1694 0)
(0.0453488 -0.175495 0)
(0.0314925 -0.179421 0)
(0.0185681 -0.18154 0)
(0.00665356 -0.182328 0)
(-0.00366083 0.000532238 0)
(-0.00412974 0.00196916 0)
(-0.00489271 0.00355407 0)
(-0.00587046 0.00544372 0)
(-0.00687418 0.00778072 0)
(-0.00763305 0.0106754 0)
(-0.00781692 0.0142111 0)
(-0.00699786 0.0184562 0)
(-0.00461933 0.0233959 0)
(1.04635e-06 0.0288021 0)
(0.00759406 0.0340718 0)
(0.0185978 0.0380497 0)
(0.0327995 0.0392456 0)
(0.0491473 0.0363074 0)
(0.066003 0.0284974 0)
(0.0815916 0.015825 0)
(0.0942977 -0.00106433 0)
(0.102858 -0.0209713 0)
(0.106582 -0.0423074 0)
(0.105512 -0.0634131 0)
(0.100309 -0.0829296 0)
(0.091977 -0.0999923 0)
(0.0815729 -0.114226 0)
(0.0700259 -0.125624 0)
(0.0580595 -0.134401 0)
(0.0461989 -0.14086 0)
(0.0347857 -0.145333 0)
(0.02404 -0.148116 0)
(0.0140915 -0.149506 0)
(0.00500094 -0.149944 0)
(-0.00339354 0.000564408 0)
(-0.00383384 0.00208096 0)
(-0.00451825 0.00373733 0)
(-0.0053716 0.00567293 0)
(-0.00619655 0.00800052 0)
(-0.00672102 0.0107918 0)
(-0.00660851 0.0140771 0)
(-0.00544283 0.0178411 0)
(-0.00272103 0.0219621 0)
(0.00210211 0.0261007 0)
(0.00948287 0.0295983 0)
(0.0195248 0.0314565 0)
(0.0317609 0.030567 0)
(0.0451391 0.0260819 0)
(0.0582683 0.0176939 0)
(0.0697543 0.00569259 0)
(0.0784539 -0.0091404 0)
(0.0836343 -0.0256847 0)
(0.0850712 -0.0426927 0)
(0.083027 -0.0590264 0)
(0.0781084 -0.0738385 0)
(0.0710758 -0.0866337 0)
(0.0626817 -0.097232 0)
(0.0535716 -0.105681 0)
(0.0442489 -0.112161 0)
(0.0350849 -0.116906 0)
(0.0263265 -0.120161 0)
(0.018134 -0.122152 0)
(0.0105936 -0.123114 0)
(0.00373018 -0.123393 0)
(-0.00308713 0.000595229 0)
(-0.0034972 0.00219002 0)
(-0.00409798 0.00391142 0)
(-0.00482482 0.00588182 0)
(-0.00547727 0.00818072 0)
(-0.00578941 0.0108383 0)
(-0.00543148 0.0138283 0)
(-0.00401692 0.017059 0)
(-0.00112016 0.0203229 0)
(0.00365774 0.0232213 0)
(0.010533 0.025123 0)
(0.0193735 0.0252324 0)
(0.0295893 0.0227977 0)
(0.0402128 0.0173722 0)
(0.0501218 0.00896247 0)
(0.0582917 -0.00198074 0)
(0.0639909 -0.0146757 0)
(0.066852 -0.0281893 0)
(0.0668996 -0.0415996 0)
(0.0644645 -0.0541501 0)
(0.0600611 -0.0653256 0)
(0.0542602 -0.0748588 0)
(0.0475969 -0.0826865 0)
(0.0405179 -0.0888877 0)
(0.0333667 -0.0936221 0)
(0.0263953 -0.0970792 0)
(0.0197684 -0.0994488 0)
(0.013592 -0.100898 0)
(0.00792261 -0.101598 0)
(0.0027738 -0.101798 0)
(-0.00273792 0.000624522 0)
(-0.0031157 0.00229379 0)
(-0.00362968 0.00407333 0)
(-0.00423039 0.00606625 0)
(-0.00472259 0.00831846 0)
(-0.00485413 0.0108162 0)
(-0.0043165 0.0134776 0)
(-0.00276774 0.016145 0)
(0.000124907 0.01855 0)
(0.00462544 0.0202935 0)
(0.0107597 0.0208195 0)
(0.0182535 0.0195545 0)
(0.0264968 0.0160574 0)
(0.0346614 0.0101831 0)
(0.0418925 0.00214061 0)
(0.0474928 -0.00755937 0)
(0.0510305 -0.0182247 0)
(0.0523777 -0.0291254 0)
(0.0516709 -0.0396149 0)
(0.0492319 -0.0492084 0)
(0.0454713 -0.0576085 0)
(0.0408097 -0.0646886 0)
(0.035625 -0.0704524 0)
(0.0302237 -0.0749899 0)
(0.024836 -0.0784358 0)
(0.0196258 -0.0809365 0)
(0.014696 -0.0826369 0)
(0.0101088 -0.083668 0)
(0.00589337 -0.084161 0)
(0.00205465 -0.0842964 0)
(-0.00234217 0.000651252 0)
(-0.00268607 0.0023895 0)
(-0.00311112 0.00421896 0)
(-0.00358894 0.00622284 0)
(-0.00393912 0.00841378 0)
(-0.00393171 0.0107338 0)
(-0.00329201 0.0130492 0)
(-0.0017367 0.0151522 0)
(0.000979355 0.0167484 0)
(0.00499174 0.0174573 0)
(0.0102107 0.0168526 0)
(0.0162987 0.0145677 0)
(0.0226963 0.0104123 0)
(0.0287434 0.00445124 0)
(0.0338281 -0.00299832 0)
(0.0375076 -0.0114358 0)
(0.0395609 -0.0202923 0)
(0.0399887 -0.0290278 0)
(0.0389637 -0.0372066 0)
(0.0367613 -0.0445322 0)
(0.0336928 -0.0508472 0)
(0.0300581 -0.0561095 0)
(0.0261162 -0.0603581 0)
(0.0220727 -0.0636826 0)
(0.0180802 -0.0661957 0)
(0.0142468 -0.0680115 0)
(0.0106391 -0.0692361 0)
(0.00729765 -0.0699596 0)
(0.00424121 -0.0702752 0)
(0.00146926 -0.0703337 0)
(-0.00189625 0.00067478 0)
(-0.00220516 0.00247425 0)
(-0.00253992 0.00434472 0)
(-0.00290139 0.00634986 0)
(-0.0031325 0.00847017 0)
(-0.00303503 0.010606 0)
(-0.00238119 0.0125805 0)
(-0.000951164 0.0141503 0)
(0.00141984 0.0150185 0)
(0.00477255 0.0148577 0)
(0.00895954 0.0133721 0)
(0.0136485 0.0103792 0)
(0.0183764 0.00587639 0)
(0.0226524 5.93492e-05 0)
(0.0260713 -0.00670947 0)
(0.0283687 -0.013986 0)
(0.0294562 -0.021322 0)
(0.0293926 -0.0283338 0)
(0.0283405 -0.0347403 0)
(0.026515 -0.040371 0)
(0.0241414 -0.0451548 0)
(0.0214259 -0.0490964 0)
(0.0185402 -0.0522502 0)
(0.0156176 -0.054701 0)
(0.0127559 -0.0565447 0)
(0.0100247 -0.0578737 0)
(0.00746612 -0.0587725 0)
(0.00510646 -0.0593144 0)
(0.00295866 -0.05957 0)
(0.00102063 -0.0596345 0)
(-0.00139772 0.000694286 0)
(-0.00167007 0.00254499 0)
(-0.00191434 0.00444716 0)
(-0.00216759 0.0064464 0)
(-0.00230547 0.00849487 0)
(-0.00217232 0.0104571 0)
(-0.00159563 0.0121219 0)
(-0.000420393 0.0132258 0)
(0.00145304 0.0134863 0)
(0.0040095 0.0126414 0)
(0.00709511 0.0105147 0)
(0.0104339 0.00706926 0)
(0.0136827 0.00243146 0)
(0.0165098 -0.00312818 0)
(0.0186628 -0.00924935 0)
(0.020003 -0.0155515 0)
(0.0205092 -0.0216917 0)
(0.0202526 -0.0274034 0)
(0.0193623 -0.0325115 0)
(0.0179913 -0.0369267 0)
(0.0162918 -0.0406308 0)
(0.0143997 -0.0436543 0)
(0.0124268 -0.0460577 0)
(0.0104582 -0.047916 0)
(0.00855252 -0.0493076 0)
(0.00674669 -0.050307 0)
(0.00505738 -0.0509798 0)
(0.0034895 -0.0513759 0)
(0.00204097 -0.0515452 0)
(0.000709835 -0.0515712 0)
(-0.000844575 0.000708342 0)
(-0.00107866 0.00259805 0)
(-0.00123182 0.00452212 0)
(-0.00138528 0.00651266 0)
(-0.001456 0.00849904 0)
(-0.0013406 0.0103182 0)
(-0.000928439 0.0117356 0)
(-0.000126706 0.0124789 0)
(0.00111763 0.0122871 0)
(0.00276985 0.0109583 0)
(0.00471181 0.00841003 0)
(0.00675835 0.00470495 0)
(0.00869674 5.00367e-05 0)
(0.0103336 -0.00524612 0)
(0.0115289 -0.0108459 0)
(0.012221 -0.0164238 0)
(0.012415 -0.0217139 0)
(0.0121661 -0.0265288 0)
(0.0115578 -0.0307604 0)
(0.0106833 -0.0343689 0)
(0.00963182 -0.0373664 0)
(0.00848061 -0.0397979 0)
(0.00729053 -0.0417252 0)
(0.00610557 -0.0432143 0)
(0.0049572 -0.0443285 0)
(0.00387029 -0.045125 0)
(0.00286238 -0.0456499 0)
(0.00194412 -0.0459353 0)
(0.00111898 -0.0460208 0)
(0.000382793 -0.0459974 0)
(-0.000237801 0.000715603 0)
(-0.000429564 0.00262896 0)
(-0.000490011 0.00456537 0)
(-0.000549337 0.00654893 0)
(-0.000573668 0.0084954 0)
(-0.000521034 0.0102256 0)
(-0.000347001 0.0114921 0)
(-1.61997e-05 0.0120206 0)
(0.000488766 0.0115669 0)
(0.00114766 0.00996964 0)
(0.00190585 0.00720211 0)
(0.00268675 0.00337497 0)
(0.00342974 -0.00126414 0)
(0.00403752 -0.00637734 0)
(0.0044689 -0.0116618 0)
(0.00470728 -0.016822 0)
(0.00475753 -0.0216353 0)
(0.00464312 -0.0259569 0)
(0.00439729 -0.0297132 0)
(0.00405552 -0.0328882 0)
(0.0036502 -0.0355057 0)
(0.00320851 -0.0376138 0)
(0.00275244 -0.0392739 0)
(0.00229921 -0.0405526 0)
(0.00186152 -0.0415117 0)
(0.00144839 -0.0422043 0)
(0.00106569 -0.0426771 0)
(0.00071812 -0.0429677 0)
(0.00040911 -0.0431075 0)
(0.00013788 -0.0431415 0)
(0.080887 -1.00499 0)
(0.286039 -0.982971 0)
(0.420622 -0.947391 0)
(0.471394 -0.920996 0)
(0.454056 -0.869555 0)
(0.332816 -0.748736 0)
(0.22746 -0.584357 0)
(0.470917 -0.417113 0)
(0.75169 0.275311 0)
(0.579483 0.533137 0)
(0.290729 0.491887 0)
(0.12508 0.355654 0)
(0.0295076 0.260177 0)
(0.0394282 0.177754 0)
(-0.000711947 0.132075 0)
(0.000909012 0.0937162 0)
(0.00228297 0.0692318 0)
(0.00179184 0.0521119 0)
(0.00146098 0.039656 0)
(0.00126714 0.0297764 0)
(0.00112222 0.0218439 0)
(0.00101041 0.0155774 0)
(0.000922814 0.0107669 0)
(0.000898543 0.00717211 0)
(0.000899996 0.00457912 0)
(0.00092263 0.00279175 0)
(0.000950544 0.00162085 0)
(0.000960871 0.000898212 0)
(0.000933684 0.000487666 0)
(0.00092555 0.000299632 0)
(0.0562808 -1.14739 0)
(0.194351 -1.07308 0)
(0.268926 -0.990223 0)
(0.283327 -0.91193 0)
(0.205317 -0.82825 0)
(0.0821912 -0.691163 0)
(0.111161 -0.61499 0)
(0.306221 -0.510274 0)
(0.724338 0.231168 0)
(0.48417 0.577908 0)
(0.239186 0.55527 0)
(0.107096 0.372139 0)
(-0.0237557 0.280533 0)
(0.292769 0.158027 0)
(0.167079 0.127919 0)
(0.56625 0.0796633 0)
(0.175862 0.0817004 0)
(0.0765658 0.0555408 0)
(0.0491337 0.0416757 0)
(0.0351328 0.030818 0)
(0.0273335 0.0223724 0)
(0.0216256 0.0159334 0)
(0.0167363 0.0110151 0)
(0.0130384 0.00731007 0)
(0.0102502 0.00464516 0)
(0.00808453 0.0028203 0)
(0.00641754 0.00163024 0)
(0.00516065 0.000902038 0)
(0.00424249 0.000490139 0)
(0.00381803 0.000285462 0)
(0.012021 -1.21269 0)
(0.0164058 -1.07098 0)
(0.0285037 -1.01589 0)
(0.00820754 -0.892245 0)
(-0.0409043 -0.782816 0)
(-0.0476236 -0.689344 0)
(0.0884211 -0.681069 0)
(0.344919 -0.56429 0)
(0.53594 0.0638118 0)
(0.497755 0.61495 0)
(0.231074 0.623883 0)
(0.190021 0.376251 0)
(0.500335 0.230195 0)
(0.806196 0.142617 0)
(2.46863 -0.0899732 0)
(1.73059 0.116437 0)
(0.357229 0.149922 0)
(0.1417 0.064897 0)
(0.0824981 0.0450742 0)
(0.0559646 0.0324006 0)
(0.0412925 0.023306 0)
(0.0313382 0.0166064 0)
(0.0237262 0.0114696 0)
(0.0182086 0.00759647 0)
(0.0141008 0.00482603 0)
(0.0109623 0.00294192 0)
(0.00858475 0.0017116 0)
(0.00682457 0.000962265 0)
(0.0055629 0.000533142 0)
(0.00494514 0.000289808 0)
(-0.0339856 -1.17761 0)
(-0.108859 -1.07246 0)
(-0.146631 -0.997844 0)
(-0.160592 -0.882339 0)
(-0.153561 -0.779684 0)
(-0.0634526 -0.743509 0)
(0.0959688 -0.761295 0)
(0.422518 -0.623407 0)
(0.758597 0.0123709 0)
(0.628674 0.692206 0)
(0.203317 0.723943 0)
(0.0465316 0.221383 0)
(0.674153 0.136938 0)
(0.967879 -0.0242021 0)
(1.76039 -0.339035 0)
(1.49761 0.44045 0)
(0.373857 0.220325 0)
(0.158605 0.0793037 0)
(0.0916704 0.050128 0)
(0.0615043 0.0347469 0)
(0.0449644 0.0246177 0)
(0.0339591 0.0174895 0)
(0.0256587 0.0120497 0)
(0.0196351 0.00795937 0)
(0.015145 0.00505862 0)
(0.0117345 0.00309759 0)
(0.00916091 0.00181483 0)
(0.00725783 0.00103792 0)
(0.00590124 0.000584932 0)
(0.00522244 0.000297304 0)
(-0.0434557 -1.0795 0)
(-0.140301 -1.0351 0)
(-0.195648 -0.972926 0)
(-0.202403 -0.885172 0)
(-0.160782 -0.816385 0)
(-0.0594012 -0.811725 0)
(0.0947482 -0.852644 0)
(0.337036 -0.85414 0)
(0.731842 0.316767 0)
(0.649491 0.772834 0)
(0.223568 0.765661 0)
(0.55873 0.317439 0)
(0.586232 0.113792 0)
(0.610989 -0.0895878 0)
(0.735326 -0.479563 0)
(0.670237 0.729086 0)
(0.322481 0.271402 0)
(0.155738 0.0949506 0)
(0.0915511 0.0558593 0)
(0.0616606 0.0374142 0)
(0.0450292 0.026073 0)
(0.0340516 0.018443 0)
(0.025876 0.0126628 0)
(0.019873 0.00834569 0)
(0.0153411 0.00531448 0)
(0.0118858 0.00326973 0)
(0.00926668 0.00193058 0)
(0.00731811 0.00112192 0)
(0.00593257 0.000638431 0)
(0.00524004 0.000304797 0)
(-0.0362892 -0.974357 0)
(-0.122331 -0.973547 0)
(-0.170968 -0.952212 0)
(-0.178784 -0.895979 0)
(-0.144151 -0.858291 0)
(-0.0687109 -0.874069 0)
(0.0657064 -0.953223 0)
(0.432327 -1.07129 0)
(1.53928 0.517313 0)
(0.641698 0.8399 0)
(0.634453 0.728382 0)
(0.361178 0.229329 0)
(0.462167 0.135022 0)
(0.390838 -0.0905492 0)
(-0.123935 -0.445495 0)
(-0.0489455 0.794161 0)
(0.252469 0.297665 0)
(0.145265 0.109735 0)
(0.0884649 0.0617625 0)
(0.0602548 0.0402239 0)
(0.0441168 0.0276037 0)
(0.0334945 0.0194397 0)
(0.025677 0.013319 0)
(0.0198388 0.0087767 0)
(0.0153589 0.00561204 0)
(0.0119135 0.003472 0)
(0.00927916 0.00206861 0)
(0.00730705 0.00121936 0)
(0.00590581 0.000695388 0)
(0.00520906 0.000313391 0)
(-0.0213986 -0.892334 0)
(-0.0788398 -0.919797 0)
(-0.122827 -0.92514 0)
(-0.146264 -0.898951 0)
(-0.136386 -0.885402 0)
(-0.0969098 -0.921251 0)
(-0.0101396 -1.04477 0)
(0.260176 -1.346 0)
(1.3303 -0.084807 0)
(0.697541 0.898042 0)
(0.588923 0.666948 0)
(0.340927 0.127756 0)
(0.433318 0.164581 0)
(0.268225 -0.0355797 0)
(-0.393077 -0.250981 0)
(-0.227406 0.643353 0)
(0.184679 0.302613 0)
(0.130861 0.122372 0)
(0.0839181 0.0675541 0)
(0.0581731 0.0431005 0)
(0.0428623 0.0291892 0)
(0.0327348 0.0204627 0)
(0.0253403 0.0140011 0)
(0.0197131 0.00924152 0)
(0.0153241 0.00594214 0)
(0.0119109 0.00370008 0)
(0.00927218 0.00222715 0)
(0.00728657 0.00132916 0)
(0.00587614 0.0007561 0)
(0.00517438 0.000323473 0)
(-0.00875461 -0.844493 0)
(-0.0439374 -0.875044 0)
(-0.0877156 -0.888681 0)
(-0.125536 -0.884722 0)
(-0.142338 -0.890924 0)
(-0.143763 -0.941468 0)
(-0.13368 -1.08839 0)
(-0.115132 -1.49679 0)
(-0.216761 -0.710611 0)
(0.803997 0.971055 0)
(0.728357 0.824952 0)
(-0.389657 0.554745 0)
(0.436182 0.223283 0)
(0.188705 0.0447055 0)
(-0.30819 -0.0610436 0)
(-0.195779 0.481827 0)
(0.126572 0.292414 0)
(0.113877 0.132005 0)
(0.0781364 0.0729763 0)
(0.0555226 0.0459726 0)
(0.0413424 0.0308126 0)
(0.0318274 0.0215011 0)
(0.0248941 0.0147024 0)
(0.0195116 0.00973638 0)
(0.0152447 0.00629982 0)
(0.0118833 0.00395242 0)
(0.00925336 0.0024054 0)
(0.00726192 0.00145083 0)
(0.00584956 0.000821905 0)
(0.0051408 0.000336176 0)
(-0.00447312 -0.819368 0)
(-0.0317094 -0.833337 0)
(-0.0755857 -0.844161 0)
(-0.120847 -0.853341 0)
(-0.159798 -0.872072 0)
(-0.200311 -0.925071 0)
(-0.269201 -1.05406 0)
(-0.475718 -1.3591 0)
(-1.01656 -0.83464 0)
(-0.571626 0.896949 0)
(1.37965 0.979559 0)
(0.921103 0.287906 0)
(0.459528 0.351924 0)
(0.119875 0.130571 0)
(-0.214431 0.0586951 0)
(-0.157259 0.373625 0)
(0.0799622 0.273205 0)
(0.0953707 0.138162 0)
(0.0711961 0.0777627 0)
(0.0522976 0.0487509 0)
(0.0395464 0.0324469 0)
(0.0307679 0.022542 0)
(0.0243334 0.015417 0)
(0.0192299 0.0102563 0)
(0.015115 0.00668047 0)
(0.0118253 0.00422704 0)
(0.00922085 0.00260183 0)
(0.0072307 0.00158361 0)
(0.00582405 0.000893775 0)
(0.00510688 0.000352327 0)
(-0.00848208 -0.792021 0)
(-0.040396 -0.789902 0)
(-0.0818098 -0.796079 0)
(-0.129059 -0.809242 0)
(-0.182488 -0.830073 0)
(-0.251565 -0.872058 0)
(-0.369631 -0.953265 0)
(-0.644645 -1.07713 0)
(-1.34429 -0.864423 0)
(-0.311172 0.206253 0)
(0.0357856 0.387511 0)
(1.30086 0.631954 0)
(0.266249 0.605727 0)
(0.0469181 0.205648 0)
(-0.16022 0.130377 0)
(-0.127412 0.303647 0)
(0.0441481 0.249889 0)
(0.0763828 0.140745 0)
(0.0632333 0.0816505 0)
(0.0484985 0.0513259 0)
(0.0374596 0.0340513 0)
(0.0295481 0.0235696 0)
(0.0236541 0.0161374 0)
(0.0188652 0.0107947 0)
(0.0149314 0.00708024 0)
(0.0117334 0.00452165 0)
(0.0091726 0.00281447 0)
(0.00719253 0.00172671 0)
(0.00579796 0.000972112 0)
(0.00507172 0.000372405 0)
(-0.0136896 -0.744742 0)
(-0.0519058 -0.7429 0)
(-0.0918517 -0.746432 0)
(-0.14066 -0.755611 0)
(-0.20194 -0.769932 0)
(-0.284871 -0.792961 0)
(-0.41487 -0.823478 0)
(-0.646934 -0.824872 0)
(-0.99882 -0.593955 0)
(-0.831449 -0.187385 0)
(-0.637959 -0.166379 0)
(0.0641912 1.02565 0)
(-0.0654379 0.617231 0)
(-0.0312764 0.251951 0)
(-0.134231 0.170927 0)
(-0.106938 0.257295 0)
(0.0172489 0.225746 0)
(0.0578158 0.139989 0)
(0.0544511 0.0844158 0)
(0.0441444 0.0535792 0)
(0.0350729 0.035575 0)
(0.028159 0.0245662 0)
(0.0228522 0.0168558 0)
(0.0184158 0.0113456 0)
(0.014692 0.00749693 0)
(0.0116059 0.00483422 0)
(0.00910511 0.00304139 0)
(0.00714591 0.00187942 0)
(0.0057675 0.00105699 0)
(0.00503345 0.000396643 0)
(-0.0129226 -0.686511 0)
(-0.0517393 -0.689008 0)
(-0.0958803 -0.690675 0)
(-0.147684 -0.693617 0)
(-0.21168 -0.698224 0)
(-0.295686 -0.702287 0)
(-0.41392 -0.696505 0)
(-0.5827 -0.646827 0)
(-0.763279 -0.471568 0)
(-0.785627 -0.238833 0)
(-0.871496 -0.104739 0)
(-0.812751 0.529301 0)
(-0.232107 0.482696 0)
(-0.102045 0.262512 0)
(-0.126345 0.189108 0)
(-0.0950173 0.224627 0)
(-0.00291079 0.202569 0)
(0.0403673 0.136348 0)
(0.0451134 0.0858874 0)
(0.0392817 0.055386 0)
(0.0323834 0.0369557 0)
(0.0265885 0.0255093 0)
(0.0219201 0.0175613 0)
(0.0178762 0.011902 0)
(0.0143913 0.00792799 0)
(0.0114377 0.00516234 0)
(0.00901159 0.0032806 0)
(0.00708571 0.00204073 0)
(0.00572672 0.00114811 0)
(0.00498843 0.000425058 0)
(-0.0132661 -0.627818 0)
(-0.0521093 -0.62746 0)
(-0.0962824 -0.626814 0)
(-0.147773 -0.625305 0)
(-0.209758 -0.621477 0)
(-0.286956 -0.611648 0)
(-0.385295 -0.586298 0)
(-0.505338 -0.524059 0)
(-0.619303 -0.39596 0)
(-0.675649 -0.226416 0)
(-0.718198 -0.0398831 0)
(-0.6129 0.2803 0)
(-0.299903 0.348427 0)
(-0.154652 0.244499 0)
(-0.128384 0.190235 0)
(-0.0898249 0.19912 0)
(-0.0182793 0.181074 0)
(0.0244952 0.130373 0)
(0.0355215 0.0859655 0)
(0.0339881 0.0566246 0)
(0.0293979 0.0381231 0)
(0.024828 0.0263713 0)
(0.0208525 0.01824 0)
(0.0172429 0.0124558 0)
(0.0140258 0.00836914 0)
(0.0112269 0.00550289 0)
(0.00888908 0.00353011 0)
(0.00700933 0.00220929 0)
(0.00567398 0.00124484 0)
(0.00493608 0.000457416 0)
(-0.0129945 -0.563588 0)
(-0.0503159 -0.562724 0)
(-0.0926391 -0.560018 0)
(-0.141165 -0.554702 0)
(-0.197823 -0.545046 0)
(-0.264879 -0.527334 0)
(-0.343857 -0.494341 0)
(-0.431432 -0.434126 0)
(-0.512189 -0.33483 0)
(-0.563956 -0.201066 0)
(-0.578946 -0.0365973 0)
(-0.495954 0.158279 0)
(-0.312633 0.241324 0)
(-0.186033 0.210039 0)
(-0.133923 0.178727 0)
(-0.0891039 0.176745 0)
(-0.0303057 0.161209 0)
(0.0104301 0.122606 0)
(0.0259779 0.0846269 0)
(0.0283677 0.0571882 0)
(0.026134 0.0390057 0)
(0.0228741 0.0271205 0)
(0.0196493 0.0188753 0)
(0.0165153 0.0129975 0)
(0.0135946 0.00881403 0)
(0.0109737 0.00585232 0)
(0.00873708 0.00378807 0)
(0.00691547 0.00238391 0)
(0.00560924 0.00134646 0)
(0.0048771 0.000493315 0)
(-0.0122783 -0.498292 0)
(-0.0467636 -0.496751 0)
(-0.0855065 -0.492652 0)
(-0.129283 -0.485115 0)
(-0.179021 -0.472466 0)
(-0.235453 -0.451678 0)
(-0.298274 -0.417817 0)
(-0.363998 -0.364144 0)
(-0.423552 -0.284529 0)
(-0.463441 -0.17849 0)
(-0.468453 -0.0496649 0)
(-0.411603 0.0839863 0)
(-0.298712 0.161757 0)
(-0.198796 0.169637 0)
(-0.138578 0.158826 0)
(-0.0906173 0.155341 0)
(-0.0398685 0.142625 0)
(-0.0017371 0.113509 0)
(0.0167787 0.0819222 0)
(0.0225583 0.0569937 0)
(0.0226318 0.0395328 0)
(0.0207376 0.0277196 0)
(0.0183151 0.0194458 0)
(0.0156936 0.0135134 0)
(0.0130964 0.00925294 0)
(0.0106752 0.00620564 0)
(0.00855248 0.00405229 0)
(0.00679984 0.00256373 0)
(0.00552854 0.00145236 0)
(0.00480771 0.000532369 0)
(-0.0111392 -0.434175 0)
(-0.0418129 -0.432218 0)
(-0.0760254 -0.427417 0)
(-0.114182 -0.419023 0)
(-0.15659 -0.405616 0)
(-0.203202 -0.384907 0)
(-0.253097 -0.353601 0)
(-0.303355 -0.307696 0)
(-0.348022 -0.243648 0)
(-0.377873 -0.160655 0)
(-0.380997 -0.0627587 0)
(-0.344563 0.035148 0)
(-0.272936 0.103554 0)
(-0.197752 0.129975 0)
(-0.139985 0.13441 0)
(-0.0924689 0.134057 0)
(-0.0473998 0.124937 0)
(-0.0120293 0.103498 0)
(0.00818283 0.0779638 0)
(0.0167178 0.0559909 0)
(0.0189511 0.0396387 0)
(0.0184383 0.0281251 0)
(0.0168572 0.0199249 0)
(0.0147785 0.0139871 0)
(0.0125289 0.00967552 0)
(0.010326 0.0065578 0)
(0.0083303 0.00432148 0)
(0.0066563 0.00274916 0)
(0.00542689 0.00156294 0)
(0.00472308 0.000574625 0)
(-0.00976165 -0.373363 0)
(-0.0361767 -0.371241 0)
(-0.065485 -0.366292 0)
(-0.0978316 -0.358032 0)
(-0.133188 -0.345342 0)
(-0.171184 -0.326508 0)
(-0.210792 -0.299296 0)
(-0.249691 -0.261235 0)
(-0.283745 -0.210236 0)
(-0.306662 -0.145979 0)
(-0.310534 -0.0718127 0)
(-0.288504 0.00245692 0)
(-0.242578 0.0610296 0)
(-0.187575 0.0944453 0)
(-0.137383 0.108645 0)
(-0.0932927 0.112896 0)
(-0.0530199 0.107898 0)
(-0.0204614 0.0928425 0)
(0.000416724 0.0729033 0)
(0.0110197 0.0541657 0)
(0.015173 0.0392684 0)
(0.0160067 0.0282915 0)
(0.0152858 0.0202845 0)
(0.0137707 0.0144024 0)
(0.0118891 0.0100737 0)
(0.00992175 0.00690515 0)
(0.00806755 0.00459549 0)
(0.00648199 0.00294177 0)
(0.00530209 0.00167952 0)
(0.00462012 0.000620321 0)
(-0.0083462 -0.317354 0)
(-0.0305281 -0.315235 0)
(-0.0550138 -0.310543 0)
(-0.0818024 -0.303063 0)
(-0.11073 -0.291915 0)
(-0.141346 -0.275795 0)
(-0.172728 -0.253156 0)
(-0.203094 -0.222424 0)
(-0.229532 -0.182367 0)
(-0.247817 -0.132951 0)
(-0.252875 -0.0765496 0)
(-0.240572 -0.0191968 0)
(-0.21131 0.0300678 0)
(-0.171966 0.0643513 0)
(-0.131029 0.0838027 0)
(-0.0922992 0.0923182 0)
(-0.0567008 0.0914528 0)
(-0.0270617 0.0818143 0)
(-0.00635239 0.0669523 0)
(0.00564025 0.0515443 0)
(0.0113959 0.038385 0)
(0.013484 0.0281776 0)
(0.0136149 0.0204977 0)
(0.0126737 0.0147444 0)
(0.0111755 0.0104415 0)
(0.00945903 0.00724478 0)
(0.00776144 0.00487375 0)
(0.00627529 0.00314242 0)
(0.0051529 0.00180287 0)
(0.00449736 0.000669183 0)
(-0.00703434 -0.26672 0)
(-0.025408 -0.264876 0)
(-0.0454716 -0.260851 0)
(-0.0671829 -0.254542 0)
(-0.090413 -0.245284 0)
(-0.114783 -0.232093 0)
(-0.139546 -0.213883 0)
(-0.163371 -0.189622 0)
(-0.184222 -0.158555 0)
(-0.199263 -0.120732 0)
(-0.205198 -0.0776826 0)
(-0.199279 -0.0330437 0)
(-0.181068 0.00778237 0)
(-0.153574 0.0398607 0)
(-0.121696 0.0613022 0)
(-0.0892132 0.0729272 0)
(-0.0584098 0.0757261 0)
(-0.0318575 0.0706655 0)
(-0.0119813 0.0603066 0)
(0.000749441 0.0481908 0)
(0.00773088 0.0369776 0)
(0.0109255 0.0277526 0)
(0.0118693 0.0205404 0)
(0.0114992 0.0149987 0)
(0.0103929 0.0107709 0)
(0.00893915 0.00757146 0)
(0.00741234 0.00515317 0)
(0.00603551 0.00334916 0)
(0.00497796 0.00193206 0)
(0.00435327 0.000720408 0)
(-0.0058296 -0.221441 0)
(-0.0207634 -0.220275 0)
(-0.0369078 -0.217425 0)
(-0.0542028 -0.212559 0)
(-0.0725813 -0.205212 0)
(-0.0917764 -0.194756 0)
(-0.111235 -0.180466 0)
(-0.12999 -0.161654 0)
(-0.14662 -0.137823 0)
(-0.15921 -0.108994 0)
(-0.165555 -0.0760921 0)
(-0.163707 -0.0412908 0)
(-0.152888 -0.00790337 0)
(-0.134204 0.0205875 0)
(-0.110314 0.0418719 0)
(-0.0841446 0.0552656 0)
(-0.0581949 0.060947 0)
(-0.034895 0.0596513 0)
(-0.0163781 0.0531979 0)
(-0.00351366 0.0442249 0)
(0.00429591 0.0350624 0)
(0.00839928 0.026998 0)
(0.0100835 0.0203918 0)
(0.0102627 0.0151504 0)
(0.00954725 0.011051 0)
(0.00836379 0.00787759 0)
(0.00701932 0.0054288 0)
(0.00576086 0.00355814 0)
(0.00477478 0.00206443 0)
(0.00418514 0.000772762 0)
(-0.00459983 -0.182388 0)
(-0.0162508 -0.181814 0)
(-0.0289381 -0.180058 0)
(-0.0425824 -0.176588 0)
(-0.0570666 -0.171031 0)
(-0.072156 -0.162999 0)
(-0.0874444 -0.152028 0)
(-0.102254 -0.137664 0)
(-0.115611 -0.119559 0)
(-0.126212 -0.0976886 0)
(-0.132548 -0.0725768 0)
(-0.133193 -0.0455078 0)
(-0.127295 -0.0185379 0)
(-0.115049 0.00591482 0)
(-0.097771 0.025753 0)
(-0.0774409 0.0397202 0)
(-0.0562111 0.0473804 0)
(-0.0362572 0.0490349 0)
(-0.0194985 0.0458677 0)
(-0.00701976 0.0397773 0)
(0.00120984 0.0326845 0)
(0.00598284 0.0259121 0)
(0.00829947 0.0200379 0)
(0.0089846 0.0151851 0)
(0.00864706 0.01127 0)
(0.00773485 0.00815553 0)
(0.00657977 0.00569553 0)
(0.00544799 0.00376608 0)
(0.00453948 0.00219809 0)
(0.00398935 0.000825506 0)
(-0.0035445 -0.149966 0)
(-0.0124171 -0.14965 0)
(-0.0221586 -0.148516 0)
(-0.0327192 -0.146077 0)
(-0.0439876 -0.142012 0)
(-0.0557669 -0.136028 0)
(-0.0677521 -0.127797 0)
(-0.0794599 -0.117002 0)
(-0.0902151 -0.103389 0)
(-0.0991222 -0.0868996 0)
(-0.10513 -0.067807 0)
(-0.107185 -0.0468573 0)
(-0.104501 -0.0253246 0)
(-0.0968643 -0.00485623 0)
(-0.0848169 0.0128597 0)
(-0.0695586 0.0264871 0)
(-0.0527107 0.0352572 0)
(-0.0360775 0.0390667 0)
(-0.0213471 0.0385585 0)
(-0.00968038 0.0350134 0)
(-0.00142558 0.0299241 0)
(0.00375793 0.0245133 0)
(0.00656651 0.0194734 0)
(0.00769079 0.0150931 0)
(0.00770353 0.0114187 0)
(0.00705565 0.00839876 0)
(0.00609297 0.00594748 0)
(0.00509378 0.00396992 0)
(0.00426855 0.00233145 0)
(0.00376242 0.000878126 0)
(-0.00271207 -0.123401 0)
(-0.00940611 -0.123195 0)
(-0.0167784 -0.122411 0)
(-0.0248121 -0.120667 0)
(-0.0334378 -0.117707 0)
(-0.0425147 -0.113311 0)
(-0.051821 -0.107233 0)
(-0.0610116 -0.0992321 0)
(-0.069616 -0.0891063 0)
(-0.0770136 -0.0767694 0)
(-0.0824654 -0.0623385 0)
(-0.085192 -0.0462309 0)
(-0.0845245 -0.0292264 0)
(-0.0801001 -0.0124228 0)
(-0.0720328 0.0029111 0)
(-0.0609697 0.0155866 0)
(-0.0480094 0.0247323 0)
(-0.0345397 0.0299655 0)
(-0.0219769 0.0315021 0)
(-0.0114476 0.0301144 0)
(-0.00352443 0.0268845 0)
(0.00180421 0.0228423 0)
(0.00493819 0.0187066 0)
(0.00641165 0.0148703 0)
(0.00673173 0.0114906 0)
(0.00633113 0.00860166 0)
(0.00555829 0.00617989 0)
(0.00469544 0.00416649 0)
(0.00395904 0.00246227 0)
(0.00350046 0.000930199 0)
(-0.0020535 -0.1018 0)
(-0.00707225 -0.101649 0)
(-0.0126106 -0.101073 0)
(-0.0186617 -0.0997969 0)
(-0.0251801 -0.0976362 0)
(-0.0320715 -0.0944271 0)
(-0.0391876 -0.0899835 0)
(-0.0462954 -0.0841142 0)
(-0.053075 -0.0766463 0)
(-0.0590993 -0.0674783 0)
(-0.063848 -0.056634 0)
(-0.0667478 -0.0443289 0)
(-0.0672562 -0.0310263 0)
(-0.0649863 -0.0174396 0)
(-0.0598393 -0.00447796 0)
(-0.0520998 0.00690266 0)
(-0.0424452 0.0158703 0)
(-0.0318663 0.0219014 0)
(-0.0214853 0.0249099 0)
(-0.0123133 0.0252693 0)
(-0.00501539 0.0236876 0)
(0.000196432 0.0209598 0)
(0.00346906 0.017762 0)
(0.00518164 0.0145217 0)
(0.00574932 0.0114836 0)
(0.00556826 0.00875948 0)
(0.00497632 0.00638791 0)
(0.00425082 0.00435201 0)
(0.00360724 0.00258877 0)
(0.00320016 0.000980982 0)
(-0.00155039 -0.0842956 0)
(-0.00529446 -0.0841907 0)
(-0.00941436 -0.0837818 0)
(-0.0139068 -0.0828696 0)
(-0.0187493 -0.0813167 0)
(-0.0238884 -0.0789951 0)
(-0.0292332 -0.075762 0)
(-0.0346323 -0.0714706 0)
(-0.039873 -0.0659796 0)
(-0.0446641 -0.0591872 0)
(-0.048642 -0.0510654 0)
(-0.0513907 -0.0417073 0)
(-0.0524885 -0.0313731 0)
(-0.0515845 -0.0205084 0)
(-0.0484944 -0.00973576 0)
(-0.0432859 0.000217538 0)
(-0.0363356 0.00864311 0)
(-0.0282963 0.0149792 0)
(-0.0200055 0.0189576 0)
(-0.0123086 0.0206587 0)
(-0.00586455 0.0204743 0)
(-0.00101523 0.0189632 0)
(0.00221064 0.0166819 0)
(0.00403434 0.014064 0)
(0.00477553 0.0114011 0)
(0.00477543 0.00886997 0)
(0.00434843 0.00656772 0)
(0.00375761 0.00452303 0)
(0.00321004 0.00270838 0)
(0.00285746 0.00102988 0)
(-0.00112898 -0.0703265 0)
(-0.00383042 -0.070281 0)
(-0.00681378 -0.070026 0)
(-0.0100818 -0.0693916 0)
(-0.0136205 -0.0682759 0)
(-0.0173944 -0.0665903 0)
(-0.0213447 -0.0642316 0)
(-0.0253721 -0.0610884 0)
(-0.0293365 -0.0570457 0)
(-0.0330431 -0.052008 0)
(-0.0362444 -0.0459223 0)
(-0.0386477 -0.038809 0)
(-0.0399396 -0.0307995 0)
(-0.0398314 -0.0221583 0)
(-0.0381222 -0.0132963 0)
(-0.0347711 -0.00473611 0)
(-0.0299499 0.00295109 0)
(-0.0240625 0.00924304 0)
(-0.0176921 0.0137815 0)
(-0.0114986 0.0164508 0)
(-0.00606837 0.0173937 0)
(-0.00178838 0.0169474 0)
(0.00120565 0.0155275 0)
(0.00300241 0.0135265 0)
(0.00382855 0.0112542 0)
(0.00396132 0.00893453 0)
(0.00367684 0.00671659 0)
(0.0032142 0.00467544 0)
(0.00276427 0.00281825 0)
(0.00246887 0.00107516 0)
(-0.000791235 -0.0596313 0)
(-0.0026782 -0.0595788 0)
(-0.00477222 -0.0593651 0)
(-0.00707796 -0.0588835 0)
(-0.00958525 -0.0580604 0)
(-0.0122707 -0.0568247 0)
(-0.0150973 -0.0550943 0)
(-0.0180013 -0.0527793 0)
(-0.0208925 -0.049783 0)
(-0.0236449 -0.0460179 0)
(-0.0260961 -0.0414215 0)
(-0.0280472 -0.0359758 0)
(-0.029275 -0.0297345 0)
(-0.0295591 -0.0228442 0)
(-0.0287218 -0.015563 0)
(-0.0266779 -0.00825444 0)
(-0.0234817 -0.00135644 0)
(-0.0193638 0.00468121 0)
(-0.0147003 0.00947478 0)
(-0.00997164 0.0127922 0)
(-0.00565245 0.0145956 0)
(-0.00210634 0.0150327 0)
(0.000482817 0.0143777 0)
(0.00211028 0.012953 0)
(0.0029243 0.0110619 0)
(0.00313269 0.00895861 0)
(0.0029628 0.00683375 0)
(0.00261904 0.00480577 0)
(0.00226686 0.00291515 0)
(0.00203098 0.0011155 0)
(-0.000546643 -0.0515654 0)
(-0.0018471 -0.0515443 0)
(-0.00326515 -0.0514072 0)
(-0.00480087 -0.0510583 0)
(-0.00645726 -0.0504424 0)
(-0.00823124 -0.0495125 0)
(-0.0101096 -0.0482068 0)
(-0.0120596 -0.0464525 0)
(-0.0140287 -0.0441714 0)
(-0.0159375 -0.0412881 0)
(-0.0176802 -0.0377381 0)
(-0.0191264 -0.0334827 0)
(-0.0201263 -0.0285287 0)
(-0.0205258 -0.0229477 0)
(-0.0201884 -0.016896 0)
(-0.0190279 -0.0106195 0)
(-0.0170434 -0.00444542 0)
(-0.014347 0.00124978 0)
(-0.0111695 0.00610016 0)
(-0.00782789 0.00981271 0)
(-0.00466789 0.0122289 0)
(-0.0019835 0.0133513 0)
(4.65281e-05 0.0133255 0)
(0.00136992 0.0124015 0)
(0.00207161 0.0108537 0)
(0.00229404 0.00895225 0)
(0.002207 0.00691965 0)
(0.00197034 0.00491089 0)
(0.00171527 0.00299564 0)
(0.00154095 0.00114947 0)
(-0.000301651 -0.0459868 0)
(-0.00101672 -0.0460062 0)
(-0.00181838 -0.0459478 0)
(-0.00271238 -0.045705 0)
(-0.00369686 -0.0452289 0)
(-0.00476282 -0.044489 0)
(-0.00589469 -0.043443 0)
(-0.00706879 -0.0420367 0)
(-0.00825559 -0.0402078 0)
(-0.00941387 -0.0378911 0)
(-0.0104869 -0.0350237 0)
(-0.0114014 -0.0315556 0)
(-0.0120703 -0.0274668 0)
(-0.0124008 -0.0227835 0)
(-0.012306 -0.0175983 0)
(-0.0117231 -0.0120798 0)
(-0.0106345 -0.00647644 0)
(-0.00908663 -0.00110192 0)
(-0.00720304 0.00370647 0)
(-0.00516644 0.00763257 0)
(-0.0031892 0.0104433 0)
(-0.00146388 0.0120435 0)
(-0.000124531 0.0124838 0)
(0.000772767 0.0119422 0)
(0.00126731 0.010667 0)
(0.00144278 0.00893048 0)
(0.00140734 0.00697649 0)
(0.00126619 0.00498707 0)
(0.001107 0.00305577 0)
(0.000996528 0.00117513 0)
(-0.000111974 -0.0431393 0)
(-0.000374678 -0.0431114 0)
(-0.000673918 -0.0429933 0)
(-0.00101182 -0.0427322 0)
(-0.00138545 -0.0422959 0)
(-0.00179008 -0.0416492 0)
(-0.00222027 -0.0407473 0)
(-0.00266796 -0.0395392 0)
(-0.00312187 -0.0379652 0)
(-0.00356585 -0.0359598 0)
(-0.00397894 -0.0334599 0)
(-0.00433499 -0.030414 0)
(-0.00460266 -0.0267927 0)
(-0.00474701 -0.0226013 0)
(-0.00473388 -0.0178998 0)
(-0.00453707 -0.0128155 0)
(-0.00414698 -0.00755227 0)
(-0.0035769 -0.00238909 0)
(-0.00285521 0.00236418 0)
(-0.00208032 0.00638802 0)
(-0.00131294 0.00939964 0)
(-0.000627871 0.011262 0)
(-8.64554e-05 0.0119703 0)
(0.000282399 0.0116548 0)
(0.000489775 0.010545 0)
(0.000567077 0.00891059 0)
(0.000557403 0.00700662 0)
(0.000503367 0.00503068 0)
(0.000440844 0.00309076 0)
(0.000396928 0.0011902 0)
(-0.00018464 4.92749e-06 0)
(-0.000480004 8.68445e-06 0)
(-0.000970481 1.61823e-05 0)
(-0.00178196 2.91281e-05 0)
(-0.00306367 4.97753e-05 0)
(-0.00498441 8.06858e-05 0)
(-0.00771862 0.000124318 0)
(-0.0114228 0.000182343 0)
(-0.0162032 0.000254577 0)
(-0.0220725 0.000337552 0)
(-0.0289068 0.000423084 0)
(-0.0364074 0.000497532 0)
(-0.0440977 0.000542867 0)
(-0.0513646 0.000540112 0)
(-0.0575494 0.000474489 0)
(-0.0620729 0.000340294 0)
(-0.0645434 0.000143176 0)
(-0.0648205 -0.000101329 0)
(-0.0630094 -0.000372115 0)
(-0.0594054 -0.000647093 0)
(-0.0544107 -0.000907639 0)
(-0.0484613 -0.00114042 0)
(-0.0419576 -0.00133814 0)
(-0.035243 -0.00149825 0)
(-0.028578 -0.001622 0)
(-0.0221541 -0.00171295 0)
(-0.0160923 -0.00177562 0)
(-0.0104645 -0.00181501 0)
(-0.00530006 -0.00183577 0)
(-0.000608466 -0.00184275 0)
(-0.000130884 1.53974e-05 0)
(-0.000402699 2.57796e-05 0)
(-0.000845742 4.80222e-05 0)
(-0.00158458 8.7482e-05 0)
(-0.00276706 0.000151569 0)
(-0.00456338 0.000249069 0)
(-0.00715443 0.000388881 0)
(-0.0107101 0.000577975 0)
(-0.0153587 0.000818087 0)
(-0.0211447 0.00110101 0)
(-0.027984 0.00140338 0)
(-0.0356201 0.00168282 0)
(-0.0436085 0.00187945 0)
(-0.0513453 0.00192524 0)
(-0.0581459 0.00176111 0)
(-0.0633707 0.00135575 0)
(-0.066547 0.000717325 0)
(-0.067453 -0.00010754 0)
(-0.066132 -0.00104666 0)
(-0.062846 -0.00202054 0)
(-0.0579941 -0.00295855 0)
(-0.0520292 -0.00380805 0)
(-0.0453831 -0.00453808 0)
(-0.0384318 -0.00513609 0)
(-0.0314679 -0.00560424 0)
(-0.0247116 -0.00595318 0)
(-0.0183039 -0.00619902 0)
(-0.0123327 -0.00635894 0)
(-0.00683933 -0.00645017 0)
(-0.0018375 -0.00648769 0)
(-0.000130341 3.0089e-05 0)
(-0.000401017 5.03781e-05 0)
(-0.000842191 9.38458e-05 0)
(-0.00157792 0.000170958 0)
(-0.00275544 0.000296215 0)
(-0.00454434 0.000486793 0)
(-0.00712499 0.000760165 0)
(-0.0106672 0.00113007 0)
(-0.0153003 0.00160018 0)
(-0.0210717 0.00215489 0)
(-0.0279026 0.00274912 0)
(-0.035545 0.00330067 0)
(-0.0435643 0.00369254 0)
(-0.0513645 0.00379096 0)
(-0.0582628 0.00347838 0)
(-0.0636121 0.00269085 0)
(-0.0669245 0.00144206 0)
(-0.0679581 -0.000177779 0)
(-0.0667388 -0.00202691 0)
(-0.063517 -0.00394794 0)
(-0.0586878 -0.00580052 0)
(-0.0527067 -0.00747962 0)
(-0.0460128 -0.00892338 0)
(-0.0389905 -0.0101065 0)
(-0.031941 -0.0110329 0)
(-0.0250921 -0.0117235 0)
(-0.0185902 -0.0122101 0)
(-0.0125277 -0.0125267 0)
(-0.00694787 -0.0127071 0)
(-0.00186669 -0.0127813 0)
(-0.000129446 4.46986e-05 0)
(-0.000398242 7.48387e-05 0)
(-0.000836334 0.000139412 0)
(-0.00156693 0.000253965 0)
(-0.00273629 0.000440053 0)
(-0.00451293 0.000723214 0)
(-0.0070764 0.00112949 0)
(-0.0105964 0.00167949 0)
(-0.0152038 0.00237908 0)
(-0.0209506 0.00320588 0)
(-0.027767 0.0040941 0)
(-0.035419 0.00492294 0)
(-0.0434879 0.00551932 0)
(-0.0513915 0.00568348 0)
(-0.0584503 0.00523737 0)
(-0.064006 0.00408073 0)
(-0.0675447 0.00222853 0)
(-0.0687923 -0.000188445 0)
(-0.0677444 -0.0029595 0)
(-0.0646318 -0.00584786 0)
(-0.0598423 -0.00864037 0)
(-0.0538361 -0.0111763 0)
(-0.0470634 -0.01336 0)
(-0.0399233 -0.0151516 0)
(-0.0327313 -0.0165555 0)
(-0.0257279 -0.0176028 0)
(-0.0190689 -0.0183409 0)
(-0.0128535 -0.0188214 0)
(-0.00712974 -0.0190949 0)
(-0.00191558 -0.0192073 0)
(-0.000128202 5.91885e-05 0)
(-0.000394388 9.90944e-05 0)
(-0.000828199 0.000184598 0)
(-0.00155167 0.000336281 0)
(-0.00270968 0.000582702 0)
(-0.0044693 0.000957715 0)
(-0.00700886 0.00149593 0)
(-0.0104979 0.00222496 0)
(-0.0150693 0.00315327 0)
(-0.0207815 0.00425257 0)
(-0.027577 0.00543787 0)
(-0.0352406 0.00655165 0)
(-0.0433768 0.00736623 0)
(-0.0514224 0.00761575 0)
(-0.0587043 0.00705873 0)
(-0.0645489 0.005553 0)
(-0.0684075 0.00310843 0)
(-0.0699598 -0.000108558 0)
(-0.0691583 -0.00381889 0)
(-0.0662046 -0.00770485 0)
(-0.0614759 -0.0114757 0)
(-0.0554373 -0.01491 0)
(-0.0485553 -0.0178737 0)
(-0.0412495 -0.0203093 0)
(-0.0338562 -0.0222203 0)
(-0.0266333 -0.0236471 0)
(-0.0197509 -0.0246532 0)
(-0.0133181 -0.0253085 0)
(-0.00738886 -0.0256817 0)
(-0.00198548 -0.0258348 0)
(-0.000126614 7.35195e-05 0)
(-0.000389466 0.00012308 0)
(-0.000817808 0.000229281 0)
(-0.00153217 0.000417681 0)
(-0.00267569 0.000723775 0)
(-0.00441354 0.00118967 0)
(-0.00692253 0.00185854 0)
(-0.0103719 0.00276516 0)
(-0.014897 0.00392114 0)
(-0.0205641 0.00529342 0)
(-0.0273314 0.00677974 0)
(-0.0350075 0.0081884 0)
(-0.0432264 0.00923924 0)
(-0.051451 0.0096003 0)
(-0.0590174 0.008963 0)
(-0.065235 0.00713588 0)
(-0.0695108 0.00411502 0)
(-0.0714649 9.60861e-05 0)
(-0.0709925 -0.00457681 0)
(-0.0682549 -0.00950089 0)
(-0.0636132 -0.0143023 0)
(-0.0575385 -0.0186914 0)
(-0.0505174 -0.0224903 0)
(-0.0429967 -0.0256189 0)
(-0.0353397 -0.0280777 0)
(-0.0278286 -0.0299156 0)
(-0.0206518 -0.0312129 0)
(-0.0139317 -0.032058 0)
(-0.00773127 -0.0325395 0)
(-0.00207776 -0.032737 0)
(-0.000124685 8.76513e-05 0)
(-0.000383488 0.000146732 0)
(-0.000805189 0.000273335 0)
(-0.0015085 0.00049794 0)
(-0.0026344 0.000862887 0)
(-0.00434581 0.00141845 0)
(-0.0068176 0.00221638 0)
(-0.0102185 0.00329878 0)
(-0.014687 0.00468105 0)
(-0.0202982 0.00632677 0)
(-0.0270288 0.00811879 0)
(-0.0347164 0.00983439 0)
(-0.0430311 0.0111437 0)
(-0.0514688 0.0116491 0)
(-0.0593798 0.0109707 0)
(-0.0660557 0.00885851 0)
(-0.0708513 0.00528359 0)
(-0.0733128 0.000461573 0)
(-0.0732621 -0.00520112 0)
(-0.0708075 -0.0112143 0)
(-0.0662871 -0.0171128 0)
(-0.0601769 -0.0225301 0)
(-0.0529881 -0.0272356 0)
(-0.0452014 -0.0311215 0)
(-0.0372147 -0.0341815 0)
(-0.0293409 -0.0364723 0)
(-0.0217924 -0.0380906 0)
(-0.0147092 -0.0391459 0)
(-0.00816532 -0.039747 0)
(-0.00219476 -0.0399936 0)
(-0.000122422 0.00010155 0)
(-0.000376473 0.000169982 0)
(-0.000790377 0.000316642 0)
(-0.00148071 0.000576842 0)
(-0.00258593 0.000999662 0)
(-0.00426627 0.00164346 0)
(-0.0066943 0.00256851 0)
(-0.0100381 0.00382452 0)
(-0.0144393 0.00543136 0)
(-0.0199834 0.00735088 0)
(-0.0266678 0.00945386 0)
(-0.0343637 0.0114904 0)
(-0.042784 0.0130845 0)
(-0.0514655 0.0137737 0)
(-0.0597792 0.0131022 0)
(-0.0670002 0.0107511 0)
(-0.0724241 0.00665221 0)
(-0.0755091 0.00102895 0)
(-0.0759859 -0.00565483 0)
(-0.073894 -0.0128186 0)
(-0.069539 -0.0198966 0)
(-0.0634 -0.0264336 0)
(-0.0560168 -0.0321361 0)
(-0.0479109 -0.0368606 0)
(-0.0395233 -0.0405899 0)
(-0.0312056 -0.0433867 0)
(-0.0232002 -0.045365 0)
(-0.0156693 -0.0466558 0)
(-0.00870144 -0.0473917 0)
(-0.00233935 -0.0476937 0)
(-0.00011983 0.000115175 0)
(-0.000368438 0.000192768 0)
(-0.000773412 0.000359082 0)
(-0.00144887 0.000654168 0)
(-0.0025304 0.00113373 0)
(-0.00417512 0.00186408 0)
(-0.00655291 0.00291402 0)
(-0.009831 0.00434105 0)
(-0.0141542 0.00617035 0)
(-0.0196192 0.00836383 0)
(-0.0262465 0.0107834 0)
(-0.033945 0.0131564 0)
(-0.042477 0.0150654 0)
(-0.0514287 0.0159846 0)
(-0.0602005 0.0153778 0)
(-0.0680543 0.0128451 0)
(-0.074222 0.00826201 0)
(-0.0780594 0.00184436 0)
(-0.0791852 -0.00589464 0)
(-0.077552 -0.014281 0)
(-0.0734199 -0.0226379 0)
(-0.067267 -0.0304068 0)
(-0.0596652 -0.0372181 0)
(-0.0511847 -0.0428827 0)
(-0.042319 -0.0473666 0)
(-0.0334671 -0.0507361 0)
(-0.0249093 -0.053123 0)
(-0.0168357 -0.054682 0)
(-0.00935306 -0.0555712 0)
(-0.00251507 -0.055936 0)
(-0.000116918 0.00012849 0)
(-0.000359406 0.000215026 0)
(-0.000754342 0.000400537 0)
(-0.00141308 0.000729705 0)
(-0.00246797 0.00126472 0)
(-0.00407259 0.00207972 0)
(-0.00639376 0.00325197 0)
(-0.00959749 0.00484704 0)
(-0.0138319 0.00689626 0)
(-0.0192053 0.00936356 0)
(-0.0257632 0.0121055 0)
(-0.0334556 0.0148319 0)
(-0.0421008 0.0170891 0)
(-0.0513441 0.0182909 0)
(-0.0606252 0.0178169 0)
(-0.0692002 0.0151729 0)
(-0.0762346 0.0101578 0)
(-0.0809674 0.00296011 0)
(-0.082884 -0.00586907 0)
(-0.0818258 -0.0155607 0)
(-0.0779909 -0.0253143 0)
(-0.0718501 -0.0344509 0)
(-0.0640094 -0.0425077 0)
(-0.0550967 -0.0492372 0)
(-0.0456682 -0.0545815 0)
(-0.0361814 -0.0586069 0)
(-0.0269633 -0.0614631 0)
(-0.0182386 -0.0633305 0)
(-0.0101371 -0.0643964 0)
(-0.00272648 -0.0648341 0)
(-0.000113693 0.000141459 0)
(-0.000349402 0.000236693 0)
(-0.000733216 0.000440897 0)
(-0.00137344 0.00080325 0)
(-0.00239879 0.00139227 0)
(-0.00395895 0.00228979 0)
(-0.00621722 0.00358148 0)
(-0.00933805 0.00534119 0)
(-0.0134727 0.0076073 0)
(-0.0187414 0.0103479 0)
(-0.0252158 0.013418 0)
(-0.0328903 0.0165155 0)
(-0.0416452 0.0191573 0)
(-0.051195 0.0207009 0)
(-0.0610316 0.0204387 0)
(-0.0704156 0.0177682 0)
(-0.0784473 0.0123885 0)
(-0.0842363 0.00443557 0)
(-0.087109 -0.00551737 0)
(-0.0867674 -0.0166069 0)
(-0.0833257 -0.0278955 0)
(-0.077237 -0.0385623 0)
(-0.0691431 -0.0480304 0)
(-0.059738 -0.0559781 0)
(-0.0496535 -0.0623129 0)
(-0.0394179 -0.0670972 0)
(-0.0294159 -0.0704981 0)
(-0.0199153 -0.0727245 0)
(-0.0110745 -0.0739962 0)
(-0.00297925 -0.0745187 0)
(-0.000110164 0.000154049 0)
(-0.000338452 0.000257713 0)
(-0.000710093 0.000480047 0)
(-0.00133004 0.0008746 0)
(-0.00232305 0.00151605 0)
(-0.00383449 0.00249373 0)
(-0.0060237 0.00390164 0)
(-0.00905316 0.00582216 0)
(-0.0130769 0.00830163 0)
(-0.0182272 0.0113143 0)
(-0.0246023 0.0147179 0)
(-0.0322436 0.0182048 0)
(-0.041099 0.0212699 0)
(-0.0509625 0.0232206 0)
(-0.0613938 0.0232606 0)
(-0.0716728 0.0206654 0)
(-0.0808403 0.0150075 0)
(-0.0878653 0.00633927 0)
(-0.0918875 -0.00476713 0)
(-0.0924356 -0.017356 0)
(-0.0895107 -0.0303399 0)
(-0.0835331 -0.0427303 0)
(-0.0751796 -0.0538105 0)
(-0.0652203 -0.0631631 0)
(-0.0543766 -0.0706485 0)
(-0.0432628 -0.0763187 0)
(-0.0323343 -0.0803579 0)
(-0.0219124 -0.083006 0)
(-0.0121918 -0.0845197 0)
(-0.00328071 -0.0851417 0)
(-0.000106343 0.000166227 0)
(-0.000326589 0.000278025 0)
(-0.000685038 0.000517883 0)
(-0.001283 0.00094356 0)
(-0.00224096 0.0016357 0)
(-0.00369953 0.00269096 0)
(-0.00581367 0.00421158 0)
(-0.0087434 0.00628866 0)
(-0.012645 0.00897735 0)
(-0.0176625 0.0122603 0)
(-0.0239209 0.0160022 0)
(-0.0315098 0.0198966 0)
(-0.04045 0.0234255 0)
(-0.0506259 0.0258541 0)
(-0.0616822 0.0262987 0)
(-0.072938 0.0238994 0)
(-0.0833864 0.0180729 0)
(-0.0918485 0.00874955 0)
(-0.0972473 -0.00352926 0)
(-0.0988973 -0.0177282 0)
(-0.0966476 -0.0325921 0)
(-0.0908645 -0.0469356 0)
(-0.0822568 -0.0598694 0)
(-0.0716803 -0.0708546 0)
(-0.0599628 -0.0796871 0)
(-0.0478226 -0.0864004 0)
(-0.0358017 -0.0911939 0)
(-0.0242882 -0.0943416 0)
(-0.0135218 -0.0961427 0)
(-0.00363966 -0.0968829 0)
(-0.00010224 0.000177958 0)
(-0.000313843 0.000297576 0)
(-0.000658117 0.000554302 0)
(-0.00123247 0.00100994 0)
(-0.00215274 0.00175091 0)
(-0.00355442 0.00288096 0)
(-0.00558763 0.00451044 0)
(-0.0084094 0.00673936 0)
(-0.0121777 0.00963252 0)
(-0.0170474 0.0131832 0)
(-0.0231697 0.0172671 0)
(-0.0306833 0.0215865 0)
(-0.0396855 0.0256204 0)
(-0.0501621 0.0286026 0)
(-0.0618622 0.0295662 0)
(-0.0741699 0.027505 0)
(-0.0860498 0.0216476 0)
(-0.0961729 0.0117563 0)
(-0.103216 -0.00170104 0)
(-0.106227 -0.0176241 0)
(-0.104855 -0.0345786 0)
(-0.0993823 -0.0511464 0)
(-0.0905416 -0.0662248 0)
(-0.0792853 -0.0791196 0)
(-0.0665664 -0.0895406 0)
(-0.0532293 -0.0974911 0)
(-0.039922 -0.103184 0)
(-0.027115 -0.106928 0)
(-0.0151055 -0.109073 0)
(-0.00406695 -0.109955 0)
(-9.78662e-05 0.000189214 0)
(-0.000300251 0.000316311 0)
(-0.000629404 0.000589201 0)
(-0.00117856 0.00107357 0)
(-0.00205861 0.00186135 0)
(-0.00339953 0.00306319 0)
(-0.00534614 0.0047974 0)
(-0.00805185 0.00717297 0)
(-0.0116756 0.0102652 0)
(-0.0163818 0.01408 0)
(-0.0223471 0.0185084 0)
(-0.0297585 0.023269 0)
(-0.0387925 0.0278493 0)
(-0.0495461 0.0314646 0)
(-0.0618949 0.0330735 0)
(-0.0753189 0.0315156 0)
(-0.0887834 0.0257989 0)
(-0.100816 0.0154624 0)
(-0.109815 0.000845155 0)
(-0.114505 -0.016919 0)
(-0.114272 -0.0362031 0)
(-0.109267 -0.055315 0)
(-0.100236 -0.0728883 0)
(-0.0882399 -0.0880304 0)
(-0.0743783 -0.100337 0)
(-0.059647 -0.109765 0)
(-0.0448245 -0.116537 0)
(-0.030484 -0.121001 0)
(-0.0169946 -0.123561 0)
(-0.00457688 -0.124614 0)
(-9.32365e-05 0.000199966 0)
(-0.000285849 0.000334178 0)
(-0.000598978 0.000622489 0)
(-0.00112144 0.00113425 0)
(-0.00195884 0.00196672 0)
(-0.00323529 0.00323715 0)
(-0.00508979 0.00507162 0)
(-0.00767155 0.00758821 0)
(-0.0111394 0.0108733 0)
(-0.0156663 0.0149475 0)
(-0.0214519 0.0197215 0)
(-0.02873 0.0249376 0)
(-0.0377576 0.0301042 0)
(-0.0487515 0.0344345 0)
(-0.0617362 0.036826 0)
(-0.0763255 0.0359623 0)
(-0.0915258 0.0305979 0)
(-0.105739 0.0199849 0)
(-0.117063 0.00425935 0)
(-0.123821 -0.0154566 0)
(-0.125057 -0.0373388 0)
(-0.120733 -0.0593721 0)
(-0.111586 -0.0798619 0)
(-0.0987946 -0.097663 0)
(-0.0836335 -0.11222 0)
(-0.0672801 -0.123426 0)
(-0.0506719 -0.131504 0)
(-0.0345098 -0.136842 0)
(-0.0192545 -0.139908 0)
(-0.00518689 -0.14117 0)
(-8.83642e-05 0.000210185 0)
(-0.000270678 0.00035113 0)
(-0.000566923 0.000654073 0)
(-0.00106124 0.00119184 0)
(-0.00185369 0.00206673 0)
(-0.00306211 0.00340235 0)
(-0.00481923 0.00533233 0)
(-0.00726936 0.00798383 0)
(-0.0105702 0.011455 0)
(-0.0149013 0.0157827 0)
(-0.0204831 0.0209012 0)
(-0.0275932 0.0265844 0)
(-0.0365678 0.0323747 0)
(-0.0477504 0.0375025 0)
(-0.0613372 0.0408239 0)
(-0.0771196 0.0408717 0)
(-0.0941988 0.0361182 0)
(-0.110887 0.0254563 0)
(-0.124961 0.00872382 0)
(-0.134267 -0.0130405 0)
(-0.137397 -0.0378205 0)
(-0.134037 -0.0632202 0)
(-0.124888 -0.0871348 0)
(-0.111257 -0.108097 0)
(-0.0946238 -0.125356 0)
(-0.0763847 -0.138713 0)
(-0.0576701 -0.148381 0)
(-0.0393391 -0.154791 0)
(-0.0219688 -0.15848 0)
(-0.00591962 -0.159998 0)
(-8.32645e-05 0.000219845 0)
(-0.000254779 0.000367119 0)
(-0.000533324 0.000683865 0)
(-0.000998151 0.00124616 0)
(-0.00174345 0.00216111 0)
(-0.00288045 0.00355833 0)
(-0.00453514 0.00557878 0)
(-0.0068462 0.0083586 0)
(-0.00996899 0.0120081 0)
(-0.0140878 0.0165821 0)
(-0.0194402 0.0220419 0)
(-0.0263437 0.0282006 0)
(-0.0352106 0.0346482 0)
(-0.0465143 0.0406541 0)
(-0.0606445 0.0450602 0)
(-0.0776188 0.046264 0)
(-0.0967029 0.0424338 0)
(-0.116178 0.0320252 0)
(-0.133496 0.0144556 0)
(-0.14594 -0.00942657 0)
(-0.151505 -0.0374333 0)
(-0.149488 -0.0667244 0)
(-0.140503 -0.094678 0)
(-0.126003 -0.119414 0)
(-0.107711 -0.139929 0)
(-0.0872833 -0.155905 0)
(-0.0660821 -0.167528 0)
(-0.0451612 -0.175265 0)
(-0.0252469 -0.179729 0)
(-0.0068047 -0.181568 0)
(-7.79543e-05 0.000228924 0)
(-0.000238195 0.000382099 0)
(-0.000498276 0.000711784 0)
(-0.000932329 0.00129708 0)
(-0.00162842 0.00224958 0)
(-0.00269081 0.00370464 0)
(-0.00423826 0.00581021 0)
(-0.00640311 0.00871132 0)
(-0.0093371 0.0125307 0)
(-0.0132268 0.0173423 0)
(-0.0183233 0.0231378 0)
(-0.0249784 0.029776 0)
(-0.0336745 0.0369088 0)
(-0.0450147 0.0438689 0)
(-0.0596005 0.0495187 0)
(-0.0777283 0.052149 0)
(-0.0989138 0.0496151 0)
(-0.121495 0.0398549 0)
(-0.142626 0.0217144 0)
(-0.15893 -0.00430211 0)
(-0.167626 -0.0358967 0)
(-0.167452 -0.069701 0)
(-0.158869 -0.102437 0)
(-0.143492 -0.131692 0)
(-0.123343 -0.156147 0)
(-0.100383 -0.175326 0)
(-0.0762464 -0.189371 0)
(-0.0522248 -0.198771 0)
(-0.029234 -0.204215 0)
(-0.00788158 -0.206462 0)
(-7.24513e-05 0.000237399 0)
(-0.000220974 0.000396029 0)
(-0.000461873 0.000737752 0)
(-0.000863958 0.00134444 0)
(-0.0015089 0.00233191 0)
(-0.00249368 0.00384087 0)
(-0.00392937 0.00602595 0)
(-0.0059412 0.00904083 0)
(-0.00867592 0.0130208 0)
(-0.0123199 0.0180598 0)
(-0.0171334 0.0241824 0)
(-0.0234953 0.0312997 0)
(-0.0319497 0.0391382 0)
(-0.0432241 0.0471209 0)
(-0.0581448 0.054173 0)
(-0.07734 0.0585234 0)
(-0.100678 0.0577242 0)
(-0.126678 0.0491221 0)
(-0.152266 0.0308091 0)
(-0.173319 0.00272667 0)
(-0.186044 -0.0328402 0)
(-0.188375 -0.0719039 0)
(-0.180515 -0.110328 0)
(-0.164285 -0.145008 0)
(-0.142073 -0.174236 0)
(-0.116199 -0.197349 0)
(-0.0886082 -0.21442 0)
(-0.0608663 -0.225935 0)
(-0.0341307 -0.232645 0)
(-0.00920511 -0.235423 0)
(-6.67755e-05 0.00024525 0)
(-0.00020316 0.00040887 0)
(-0.000424215 0.000761697 0)
(-0.000793225 0.00138812 0)
(-0.00138523 0.00240786 0)
(-0.00228961 0.00396663 0)
(-0.00360929 0.00622534 0)
(-0.00546164 0.00934604 0)
(-0.00798702 0.0134765 0)
(-0.0113689 0.0187311 0)
(-0.0158716 0.0251695 0)
(-0.0218934 0.0327597 0)
(-0.0300285 0.0413158 0)
(-0.0411172 0.0503776 0)
(-0.0562153 0.0589843 0)
(-0.0763336 0.0653657 0)
(-0.101808 0.0668082 0)
(-0.131512 0.0600116 0)
(-0.16227 0.0421041 0)
(-0.189168 0.0121492 0)
(-0.207086 -0.0277836 0)
(-0.212798 -0.0730083 0)
(-0.206088 -0.11823 0)
(-0.189056 -0.159429 0)
(-0.164577 -0.194433 0)
(-0.13539 -0.222386 0)
(-0.103761 -0.243275 0)
(-0.0715563 -0.257531 0)
(-0.0402318 -0.265926 0)
(-0.0108593 -0.269426 0)
(-6.09491e-05 0.000252462 0)
(-0.000184804 0.000420582 0)
(-0.000385405 0.000783553 0)
(-0.000720324 0.001428 0)
(-0.00125774 0.00247722 0)
(-0.00207915 0.00408156 0)
(-0.00327888 0.00640777 0)
(-0.00496571 0.00962589 0)
(-0.00727215 0.0138959 0)
(-0.0103759 0.0193528 0)
(-0.0145404 0.0260922 0)
(-0.0201737 0.0341433 0)
(-0.0279059 0.043418 0)
(-0.0386721 0.0535999 0)
(-0.0537507 0.063899 0)
(-0.0745777 0.0726308 0)
(-0.102081 0.0768878 0)
(-0.135706 0.0727063 0)
(-0.172405 0.0560243 0)
(-0.206482 0.0246031 0)
(-0.231132 -0.0200763 0)
(-0.241395 -0.0725841 0)
(-0.23637 -0.12599 0)
(-0.218604 -0.175016 0)
(-0.19166 -0.216971 0)
(-0.158784 -0.250861 0)
(-0.12251 -0.276616 0)
(-0.084978 -0.294501 0)
(-0.0480064 -0.305237 0)
(-0.0129909 -0.309808 0)
(-5.49969e-05 0.000259016 0)
(-0.000165956 0.000431133 0)
(-0.000345549 0.000803256 0)
(-0.000645454 0.00146397 0)
(-0.00112679 0.0025398 0)
(-0.00186286 0.00418532 0)
(-0.00293904 0.00657269 0)
(-0.00445475 0.00987941 0)
(-0.00653323 0.0142773 0)
(-0.00934366 0.0199215 0)
(-0.0131428 0.026944 0)
(-0.0183387 0.0354375 0)
(-0.0255804 0.0454199 0)
(-0.0358722 0.0567422 0)
(-0.0506933 0.068848 0)
(-0.0719337 0.0802445 0)
(-0.101234 0.087946 0)
(-0.138881 0.0873719 0)
(-0.18231 0.0730555 0)
(-0.225186 0.0408995 0)
(-0.258628 -0.00885964 0)
(-0.27503 -0.0700774 0)
(-0.272307 -0.13344 0)
(-0.253855 -0.191834 0)
(-0.224236 -0.242065 0)
(-0.187413 -0.283125 0)
(-0.145994 -0.31518 0)
(-0.102126 -0.337941 0)
(-0.0583348 -0.352101 0)
(-0.0159501 -0.358572 0)
(-4.89469e-05 0.000264899 0)
(-0.000146666 0.000440494 0)
(-0.000304753 0.000820756 0)
(-0.000568818 0.00149592 0)
(-0.000992714 0.00259541 0)
(-0.00164133 0.00427761 0)
(-0.00259069 0.00671957 0)
(-0.00393016 0.0101057 0)
(-0.00577231 0.0146189 0)
(-0.00827495 0.020434 0)
(-0.0116826 0.0277184 0)
(-0.0163926 0.036629 0)
(-0.023054 0.0472947 0)
(-0.0327076 0.0597531 0)
(-0.0469923 0.0737454 0)
(-0.0682608 0.0880982 0)
(-0.0989692 0.0999102 0)
(-0.140552 0.104132 0)
(-0.191442 0.093734 0)
(-0.245051 0.0620813 0)
(-0.290096 0.0071342 0)
(-0.314873 -0.06478 0)
(-0.315038 -0.140472 0)
(-0.295847 -0.209974 0)
(-0.2632 -0.269954 0)
(-0.222423 -0.3192 0)
(-0.176076 -0.359769 0)
(-0.123899 -0.388942 0)
(-0.0731538 -0.407977 0)
(-0.0208075 -0.419322 0)
(-4.28323e-05 0.000270101 0)
(-0.000126988 0.000448638 0)
(-0.000263131 0.000836 0)
(-0.000490629 0.00152377 0)
(-0.000855902 0.00264391 0)
(-0.00141519 0.00435817 0)
(-0.00223481 0.00684794 0)
(-0.00339345 0.0103039 0)
(-0.00499166 0.0149193 0)
(-0.00717318 0.0208871 0)
(-0.0101647 0.028409 0)
(-0.014342 0.0377045 0)
(-0.0203335 0.0490149 0)
(-0.0291779 0.0625759 0)
(-0.0426089 0.0784866 0)
(-0.0634243 0.0960427 0)
(-0.0949575 0.112632 0)
(-0.140109 0.123026 0)
(-0.199011 0.118614 0)
(-0.265568 0.0894738 0)
(-0.326116 0.029678 0)
(-0.36266 -0.0557747 0)
(-0.365831 -0.147223 0)
(-0.345722 -0.229447 0)
(-0.308886 -0.301476 0)
(-0.262427 -0.358723 0)
(-0.21245 -0.409964 0)
(-0.141592 -0.448651 0)
(-0.0859287 -0.471154 0)
(-0.025974 -0.49937 0)
(-3.66908e-05 0.000274617 0)
(-0.000106975 0.000455541 0)
(-0.000220795 0.00084895 0)
(-0.000411103 0.00154744 0)
(-0.000716726 0.00268516 0)
(-0.00118505 0.00442675 0)
(-0.00187239 0.00695741 0)
(-0.00284615 0.0104733 0)
(-0.00419367 0.0151769 0)
(-0.00604201 0.0212781 0)
(-0.0085946 0.0290098 0)
(-0.0121952 0.0386513 0)
(-0.0174304 0.0505531 0)
(-0.0252933 0.0651505 0)
(-0.0375204 0.0829499 0)
(-0.0573069 0.103887 0)
(-0.0888565 0.125862 0)
(-0.13681 0.143962 0)
(-0.203894 0.148203 0)
(-0.285748 0.12471 0)
(-0.367146 0.0615592 0)
(-0.421338 -0.0417718 0)
(-0.425666 -0.154973 0)
(-0.403805 -0.249445 0)
(-0.349602 -0.346138 0)
(-0.262092 -0.418322 0)
(-0.120956 -0.471761 0)
(-0.0357502 -0.522238 0)
(-0.0181311 -0.518742 0)
(-0.00401499 -0.574156 0)
(-3.0565e-05 0.000278465 0)
(-8.66793e-05 0.000461186 0)
(-0.00017786 0.000859569 0)
(-0.000330456 0.00156686 0)
(-0.000575567 0.00271905 0)
(-0.000951552 0.00448316 0)
(-0.00150445 0.00704762 0)
(-0.00228988 0.0106133 0)
(-0.00338082 0.0153906 0)
(-0.00488542 0.0216043 0)
(-0.00697883 0.0295155 0)
(-0.00996246 0.0394576 0)
(-0.0143606 0.0518832 0)
(-0.0210771 0.0674165 0)
(-0.031726 0.0869956 0)
(-0.049821 0.111403 0)
(-0.080335 0.139228 0)
(-0.129792 0.166641 0)
(-0.204549 0.182845 0)
(-0.303827 0.169653 0)
(-0.412958 0.107208 0)
(-0.496585 -0.0204941 0)
(-0.493641 -0.169937 0)
(-0.447081 -0.276165 0)
(-0.341781 -0.452037 0)
(-0.22326 -0.495503 0)
(-0.212249 -0.577439 0)
(-0.169071 -0.549585 0)
(-0.0683063 -0.548953 0)
(-0.0135308 -0.584837 0)
(-2.45039e-05 0.000281662 0)
(-6.61567e-05 0.000465558 0)
(-0.000134442 0.000867827 0)
(-0.000248913 0.00158199 0)
(-0.000432816 0.00274548 0)
(-0.00071534 0.00452726 0)
(-0.00113204 0.00711829 0)
(-0.00172629 0.0107233 0)
(-0.00255578 0.0155594 0)
(-0.00370774 0.0218637 0)
(-0.0053246 0.0299212 0)
(-0.00765619 0.0401125 0)
(-0.0111451 0.0529808 0)
(-0.0165676 0.069316 0)
(-0.0252539 0.0904667 0)
(-0.040923 0.118335 0)
(-0.0691143 0.1522 0)
(-0.118107 0.190479 0)
(-0.198933 0.222532 0)
(-0.316608 0.22596 0)
(-0.458792 0.175385 0)
(-0.598657 0.0183866 0)
(-0.617628 -0.196089 0)
(-0.509153 -0.346405 0)
(-0.439631 -0.508253 0)
(-0.340737 -0.588378 0)
(-0.229611 -0.618634 0)
(-0.157573 -0.643484 0)
(-0.088141 -0.645419 0)
(-0.0232952 -0.649725 0)
(-1.85611e-05 0.000284236 0)
(-4.54604e-05 0.000468647 0)
(-9.06588e-05 0.000873705 0)
(-0.000166694 0.00159277 0)
(-0.000288863 0.00276438 0)
(-0.000477065 0.00455891 0)
(-0.000756197 0.00716918 0)
(-0.00115705 0.0108029 0)
(-0.00172124 0.0156822 0)
(-0.00251353 0.0220544 0)
(-0.00363973 0.030223 0)
(-0.00529029 0.0406073 0)
(-0.00780865 0.0538255 0)
(-0.0118179 0.0708031 0)
(-0.0181713 0.0931944 0)
(-0.0306173 0.124461 0)
(-0.0550232 0.164101 0)
(-0.100786 0.214685 0)
(-0.183632 0.266827 0)
(-0.296033 0.292538 0)
(-0.506066 0.292817 0)
(-0.727786 0.175322 0)
(-0.884242 -0.177459 0)
(-0.719881 -0.477767 0)
(-0.531007 -0.604963 0)
(-0.350841 -0.675239 0)
(-0.264416 -0.720855 0)
(-0.172629 -0.720426 0)
(-0.0970805 -0.734278 0)
(-0.0256422 -0.735793 0)
(-1.2804e-05 0.000286163 0)
(-2.46566e-05 0.000470312 0)
(-4.66461e-05 0.000876954 0)
(-8.40421e-05 0.00159894 0)
(-0.000144125 0.00277572 0)
(-0.000237426 0.00457907 0)
(-0.000378059 0.007204 0)
(-0.000583991 0.0108618 0)
(-0.000880237 0.0157808 0)
(-0.00130805 0.0222184 0)
(-0.00193353 0.0304953 0)
(-0.00288165 0.0410649 0)
(-0.00438185 0.0546087 0)
(-0.00689822 0.0721689 0)
(-0.0106126 0.0954672 0)
(-0.0189399 0.130317 0)
(-0.0374931 0.174484 0)
(-0.0725732 0.238151 0)
(-0.155768 0.31396 0)
(-0.314573 0.371656 0)
(-0.452844 0.400735 0)
(-0.788581 0.286603 0)
(-0.678991 -0.210451 0)
(-0.715343 -0.57691 0)
(-0.604632 -0.749093 0)
(-0.437405 -0.827691 0)
(-0.304497 -0.825081 0)
(-0.18613 -0.830799 0)
(-0.10806 -0.830001 0)
(-0.0279166 -0.830995 0)
(0.00402379 -0.00183863 0)
(0.00906937 -0.00182205 0)
(0.0145841 -0.00178785 0)
(0.0205443 -0.00173164 0)
(0.0268904 -0.0016484 0)
(0.0335135 -0.00153349 0)
(0.0402422 -0.00138283 0)
(0.0468346 -0.00119459 0)
(0.0529662 -0.000970135 0)
(0.0582487 -0.000715527 0)
(0.0622502 -0.000442515 0)
(0.0645523 -0.000168538 0)
(0.0648244 8.48157e-05 0)
(0.0629059 0.000295819 0)
(0.0588727 0.000446945 0)
(0.0530567 0.000529825 0)
(0.0459994 0.000547367 0)
(0.0383517 0.000512457 0)
(0.0307497 0.000443546 0)
(0.0237105 0.000359316 0)
(0.0175788 0.000274706 0)
(0.0125204 0.000199274 0)
(0.00855223 0.000137546 0)
(0.00558742 9.0389e-05 0)
(0.00347848 5.64902e-05 0)
(0.00205273 3.35039e-05 0)
(0.00113823 1.88483e-05 0)
(0.000579968 1.01639e-05 0)
(0.000246414 5.5911e-06 0)
(2.43291e-05 3.89493e-06 0)
(0.00298101 -0.00648298 0)
(0.0081056 -0.00643395 0)
(0.0137209 -0.0063276 0)
(0.0198084 -0.00614857 0)
(0.0263166 -0.00587908 0)
(0.0331445 -0.0055024 0)
(0.0401329 -0.00500311 0)
(0.0470457 -0.00437223 0)
(0.0535665 -0.00361085 0)
(0.0593046 -0.00273548 0)
(0.0638157 -0.00178257 0)
(0.0666538 -0.000809597 0)
(0.0674443 0.000109226 0)
(0.0659723 0.000894486 0)
(0.0622577 0.00147857 0)
(0.0565895 0.00182356 0)
(0.0494915 0.00193152 0)
(0.0416279 0.00184218 0)
(0.0336737 0.00161873 0)
(0.0261994 0.00132855 0)
(0.0196037 0.00102778 0)
(0.0140973 0.000753934 0)
(0.0097279 0.000526171 0)
(0.00642589 0.000349735 0)
(0.00404911 0.000221206 0)
(0.00242221 0.000132862 0)
(0.00136528 7.56801e-05 0)
(0.000712911 4.11261e-05 0)
(0.00032337 2.2244e-05 0)
(7.65066e-05 1.42888e-05 0)
(0.0030284 -0.0127719 0)
(0.00823415 -0.012675 0)
(0.0139373 -0.0124647 0)
(0.0201172 -0.0121102 0)
(0.0267198 -0.0115769 0)
(0.0336393 -0.0108314 0)
(0.0407105 -0.0098434 0)
(0.0476896 -0.00859534 0)
(0.0542513 -0.00708974 0)
(0.0599965 -0.00535975 0)
(0.0644749 -0.00347827 0)
(0.0672389 -0.00155981 0)
(0.0679198 0.000248281 0)
(0.0663162 0.00178911 0)
(0.0624667 0.00293017 0)
(0.0566793 0.00359859 0)
(0.0494917 0.003801 0)
(0.0415732 0.00361766 0)
(0.0335952 0.00317386 0)
(0.0261191 0.0026019 0)
(0.0195339 0.00201121 0)
(0.0140429 0.00147453 0)
(0.00968862 0.00102871 0)
(0.00639933 0.000683616 0)
(0.00403218 0.000432325 0)
(0.00241204 0.000259649 0)
(0.00135954 0.000147894 0)
(0.00070992 8.03701e-05 0)
(0.000322021 4.34679e-05 0)
(7.61896e-05 2.7924e-05 0)
(0.00310779 -0.0191933 0)
(0.00844931 -0.0190461 0)
(0.014299 -0.0187273 0)
(0.0206334 -0.0181891 0)
(0.0273934 -0.0173804 0)
(0.0344656 -0.0162499 0)
(0.0416747 -0.014753 0)
(0.0487635 -0.0128636 0)
(0.0553923 -0.0105871 0)
(0.0611477 -0.00797543 0)
(0.0655693 -0.0051409 0)
(0.0682077 -0.00225857 0)
(0.0687043 0.000448429 0)
(0.0668805 0.00274454 0)
(0.0628065 0.00443375 0)
(0.0568221 0.00541169 0)
(0.0494877 0.00569373 0)
(0.0414799 0.00540413 0)
(0.0334636 0.00473178 0)
(0.0259855 0.00387371 0)
(0.0194184 0.00299155 0)
(0.0139529 0.00219202 0)
(0.00962375 0.00152875 0)
(0.0063555 0.00101571 0)
(0.00400426 0.000642279 0)
(0.00239526 0.000385728 0)
(0.00135008 0.000219701 0)
(0.000704988 0.000119394 0)
(0.000319797 6.45731e-05 0)
(7.56664e-05 4.14828e-05 0)
(0.00322081 -0.0258155 0)
(0.00875595 -0.025615 0)
(0.0148144 -0.02518 0)
(0.0213688 -0.0244463 0)
(0.0283526 -0.023344 0)
(0.0356415 -0.0218042 0)
(0.0430452 -0.0197673 0)
(0.0502881 -0.0171996 0)
(0.0570093 -0.0141113 0)
(0.0627756 -0.0105767 0)
(0.0671123 -0.00675231 0)
(0.0695684 -0.00287847 0)
(0.0698008 0.000741448 0)
(0.0676641 0.00379187 0)
(0.0632736 0.00601538 0)
(0.0570139 0.00728155 0)
(0.0494758 0.00762093 0)
(0.0413457 0.00720674 0)
(0.0332781 0.00629371 0)
(0.0257984 0.00514321 0)
(0.0192572 0.00396731 0)
(0.0138275 0.00290491 0)
(0.00953354 0.00202509 0)
(0.00629459 0.00134518 0)
(0.00396547 0.000850518 0)
(0.00237195 0.000510761 0)
(0.00133693 0.000290911 0)
(0.000698136 0.000158092 0)
(0.000316709 8.55019e-05 0)
(7.49395e-05 5.49312e-05 0)
(0.00337027 -0.0327121 0)
(0.00916116 -0.0324535 0)
(0.0154956 -0.0318923 0)
(0.0223401 -0.030946 0)
(0.0296185 -0.0295251 0)
(0.037192 -0.027542 0)
(0.0448501 -0.0249221 0)
(0.0522922 -0.0216253 0)
(0.0591298 -0.0176695 0)
(0.0649037 -0.0131558 0)
(0.0691214 -0.00829145 0)
(0.0713311 -0.00338946 0)
(0.0712119 0.00116131 0)
(0.0686635 0.00496341 0)
(0.0638613 0.00770154 0)
(0.0572472 0.0092267 0)
(0.0494502 0.00959331 0)
(0.0411667 0.00903017 0)
(0.0330364 0.00786053 0)
(0.0255571 0.00640937 0)
(0.0190503 0.00493687 0)
(0.013667 0.00361166 0)
(0.00941816 0.00251652 0)
(0.00621674 0.00167117 0)
(0.00391591 0.00105648 0)
(0.00234218 0.000634409 0)
(0.00132013 0.000361327 0)
(0.000689385 0.000196359 0)
(0.000312764 0.000106198 0)
(7.40108e-05 6.8232e-05 0)
(0.00355973 -0.0399625 0)
(0.00967469 -0.0396396 0)
(0.0163584 -0.0389389 0)
(0.0235698 -0.0377576 0)
(0.0312199 -0.0359853 0)
(0.0391508 -0.0335144 0)
(0.0471265 -0.0302553 0)
(0.0548142 -0.026163 0)
(0.0617904 -0.0212669 0)
(0.0675632 -0.0157016 0)
(0.0716195 -0.00973365 0)
(0.0735086 -0.0037577 0)
(0.0729403 0.00174492 0)
(0.0698741 0.00629336 0)
(0.0645606 0.00951935 0)
(0.0575124 0.0112654 0)
(0.049403 0.011621 0)
(0.0409378 0.0108786 0)
(0.0327361 0.00943274 0)
(0.0252604 0.00767098 0)
(0.0187973 0.00589854 0)
(0.0134715 0.0043107 0)
(0.00927781 0.00300181 0)
(0.00612212 0.00199281 0)
(0.0038557 0.00125962 0)
(0.00230601 0.000756334 0)
(0.00129974 0.000430755 0)
(0.000678757 0.000234088 0)
(0.000307974 0.000126608 0)
(7.2883e-05 8.13482e-05 0)
(0.00379373 -0.0476557 0)
(0.010309 -0.0472602 0)
(0.0174237 -0.0464026 0)
(0.025087 -0.0449577 0)
(0.0331938 -0.0427919 0)
(0.0415618 -0.0397764 0)
(0.0499226 -0.0358065 0)
(0.0579035 -0.0308345 0)
(0.0650374 -0.0249065 0)
(0.0707934 -0.0181993 0)
(0.074635 -0.0110493 0)
(0.0761162 -0.00394468 0)
(0.0749889 0.00253306 0)
(0.0712888 0.00781821 0)
(0.0653598 0.0114967 0)
(0.0577976 0.0134158 0)
(0.0493248 0.0137136 0)
(0.040653 0.0127555 0)
(0.032374 0.0110105 0)
(0.0249072 0.00892666 0)
(0.0184982 0.00685055 0)
(0.0132411 0.00500044 0)
(0.00911277 0.00347976 0)
(0.00601097 0.00230927 0)
(0.003785 0.00145938 0)
(0.00226355 0.000876206 0)
(0.00127579 0.000499009 0)
(0.000666282 0.000271177 0)
(0.000302351 0.000146671 0)
(7.15591e-05 9.42483e-05 0)
(0.00407813 -0.05589 0)
(0.0110798 -0.0554122 0)
(0.0187179 -0.054376 0)
(0.0269288 -0.0526314 0)
(0.035587 -0.0500191 0)
(0.0444799 -0.0463875 0)
(0.0532987 -0.0416173 0)
(0.0616216 -0.035661 0)
(0.0689285 -0.0285881 0)
(0.0746425 -0.0206283 0)
(0.0782018 -0.0122024 0)
(0.0791711 -0.00390522 0)
(0.0773595 0.00357123 0)
(0.0728982 0.00957701 0)
(0.066244 0.0136622 0)
(0.058088 0.0156954 0)
(0.0492042 0.0158797 0)
(0.0403053 0.0146635 0)
(0.0319465 0.0125932 0)
(0.0244963 0.0101747 0)
(0.0181527 0.007791 0)
(0.012976 0.00567928 0)
(0.00892334 0.00394914 0)
(0.00588354 0.0026197 0)
(0.00370399 0.00165523 0)
(0.00221492 0.000993696 0)
(0.00124837 0.000565897 0)
(0.000651994 0.000307524 0)
(0.000295912 0.000166334 0)
(7.00424e-05 0.000106894 0)
(0.00442047 -0.0647788 0)
(0.0120071 -0.064206 0)
(0.0202741 -0.062964 0)
(0.0291414 -0.0608746 0)
(0.0384581 -0.0577496 0)
(0.0479739 -0.0534134 0)
(0.05733 -0.047732 0)
(0.0660444 -0.0406625 0)
(0.0735339 -0.0323069 0)
(0.0791682 -0.0229615 0)
(0.0823594 -0.0131486 0)
(0.0826925 -0.00358787 0)
(0.080052 0.00491047 0)
(0.0746892 0.0116118 0)
(0.0671946 0.0160451 0)
(0.0583658 0.0181209 0)
(0.049028 0.0181265 0)
(0.0398866 0.0166043 0)
(0.0314498 0.0141798 0)
(0.0240261 0.011413 0)
(0.0177607 0.00871788 0)
(0.0126767 0.00634553 0)
(0.0087099 0.00440872 0)
(0.00574013 0.00292327 0)
(0.00361288 0.00184663 0)
(0.00216023 0.00110848 0)
(0.00121753 0.000631236 0)
(0.000635931 0.000343025 0)
(0.000288674 0.000185542 0)
(6.83372e-05 0.000119254 0)
(0.00482996 -0.0744525 0)
(0.0131162 -0.073769 0)
(0.0221336 -0.0722872 0)
(0.0317828 -0.0697969 0)
(0.0418803 -0.0660774 0)
(0.0521288 -0.0609268 0)
(0.0621086 -0.0541977 0)
(0.0712646 -0.0458576 0)
(0.0789387 -0.0360523 0)
(0.0844391 -0.0251624 0)
(0.0871537 -0.0138337 0)
(0.0867003 -0.00292927 0)
(0.0830643 0.00660857 0)
(0.0766447 0.013968 0)
(0.0681888 0.0186751 0)
(0.0586102 0.0207081 0)
(0.0487812 0.0204601 0)
(0.039388 0.0185786 0)
(0.0308796 0.0157687 0)
(0.0234953 0.0126394 0)
(0.0173221 0.00962906 0)
(0.0123433 0.00699755 0)
(0.00847287 0.00485733 0)
(0.0055811 0.00321918 0)
(0.00351191 0.00203307 0)
(0.00209965 0.00122026 0)
(0.00118338 0.00069485 0)
(0.000618139 0.000377589 0)
(0.000280657 0.000204242 0)
(6.64479e-05 0.000131295 0)
(0.00531806 -0.0850631 0)
(0.0144377 -0.084249 0)
(0.0243483 -0.0824855 0)
(0.0349247 -0.0795244 0)
(0.0459435 -0.0751089 0)
(0.0570493 -0.0690085 0)
(0.0677476 -0.0610643 0)
(0.0773949 -0.0512619 0)
(0.0852445 -0.0398058 0)
(0.090536 -0.0271833 0)
(0.092636 -0.0141904 0)
(0.0912152 -0.00185763 0)
(0.0863897 0.00873093 0)
(0.0787417 0.0166944 0)
(0.0691986 0.0215821 0)
(0.0587969 0.0234714 0)
(0.048447 0.0228848 0)
(0.0388001 0.0205854 0)
(0.0302316 0.0173572 0)
(0.0229025 0.013851 0)
(0.0168368 0.0105223 0)
(0.0119765 0.00763362 0)
(0.00821274 0.00529374 0)
(0.00540681 0.00350661 0)
(0.00340133 0.00221403 0)
(0.00203332 0.00132871 0)
(0.00114599 0.000756563 0)
(0.000598665 0.000411116 0)
(0.000271884 0.000222383 0)
(6.43792e-05 0.000142984 0)
(0.00589928 -0.0967892 0)
(0.0160108 -0.0958202 0)
(0.0269821 -0.0937224 0)
(0.0386562 -0.0902038 0)
(0.0507593 -0.0849663 0)
(0.0628643 -0.0777491 0)
(0.0743847 -0.0683848 0)
(0.0845713 -0.0568869 0)
(0.0925728 -0.0435384 0)
(0.0975526 -0.0289615 0)
(0.0988638 -0.0141355 0)
(0.0962556 -0.000287627 0)
(0.0900161 0.0113517 0)
(0.0809501 0.0198434 0)
(0.0701905 0.0247959 0)
(0.0588982 0.026423 0)
(0.0480067 0.0254026 0)
(0.0381125 0.0226225 0)
(0.0295012 0.0189419 0)
(0.0222462 0.0150449 0)
(0.016305 0.0113951 0)
(0.0115766 0.008252 0)
(0.00793006 0.00571676 0)
(0.00521771 0.00378478 0)
(0.00328144 0.00238902 0)
(0.00196143 0.00143355 0)
(0.00110548 0.000816209 0)
(0.000577563 0.000443519 0)
(0.000262379 0.000239915 0)
(6.21365e-05 0.000154292 0)
(0.00659169 -0.109843 0)
(0.0178836 -0.108689 0)
(0.0301152 -0.106191 0)
(0.0430882 -0.102006 0)
(0.0564657 -0.0957904 0)
(0.0697319 -0.0872503 0)
(0.0821885 -0.0762145 0)
(0.0929585 -0.0627381 0)
(0.101068 -0.0472073 0)
(0.105598 -0.0304155 0)
(0.105899 -0.0135659 0)
(0.101837 0.00188767 0)
(0.0939228 0.014555 0)
(0.0832311 0.0234706 0)
(0.0711239 0.0283449 0)
(0.0588822 0.0295724 0)
(0.0474402 0.0280131 0)
(0.0373146 0.024686 0)
(0.0286839 0.0205186 0)
(0.0215254 0.0162175 0)
(0.0157267 0.012245 0)
(0.0111444 0.00885093 0)
(0.00762544 0.00612521 0)
(0.00501427 0.00405292 0)
(0.00315256 0.00255757 0)
(0.00188418 0.00153448 0)
(0.00106194 0.000873622 0)
(0.000554891 0.000474707 0)
(0.000252168 0.00025679 0)
(5.97252e-05 0.000165189 0)
(0.00741798 -0.124481 0)
(0.0201175 -0.123102 0)
(0.033848 -0.120121 0)
(0.0483589 -0.115135 0)
(0.063234 -0.107745 0)
(0.0778475 -0.0976272 0)
(0.0913646 -0.0846113 0)
(0.102755 -0.0688125 0)
(0.110903 -0.0507519 0)
(0.114797 -0.0314396 0)
(0.11381 -0.0123549 0)
(0.107971 0.00478695 0)
(0.0980789 0.0184354 0)
(0.0855352 0.0276343 0)
(0.071951 0.0322558 0)
(0.0587134 0.0329259 0)
(0.0467258 0.0307132 0)
(0.0363956 0.0267702 0)
(0.0277755 0.0220821 0)
(0.020739 0.017365 0)
(0.0151025 0.0130694 0)
(0.0106804 0.00942864 0)
(0.00729954 0.00651794 0)
(0.00479697 0.0043103 0)
(0.00301501 0.0027192 0)
(0.00180176 0.00163122 0)
(0.00101551 0.00092865 0)
(0.000530711 0.000504594 0)
(0.000241281 0.000272961 0)
(5.7151e-05 0.000175648 0)
(0.00840735 -0.141009 0)
(0.0227897 -0.139356 0)
(0.0383071 -0.135787 0)
(0.0546417 -0.129827 0)
(0.0712769 -0.121021 0)
(0.0874511 -0.109008 0)
(0.102164 -0.0936337 0)
(0.114201 -0.0750943 0)
(0.12228 -0.054087 0)
(0.125295 -0.0318969 0)
(0.122664 -0.010343 0)
(0.114656 0.00855648 0)
(0.102438 0.0230992 0)
(0.0877996 0.0323948 0)
(0.0726155 0.0365518 0)
(0.0583522 0.0364853 0)
(0.0458409 0.0334962 0)
(0.0353446 0.0288672 0)
(0.026772 0.0236263 0)
(0.0198863 0.0184831 0)
(0.0144327 0.0138654 0)
(0.0101857 0.00998333 0)
(0.00695314 0.00689378 0)
(0.00456638 0.00455618 0)
(0.00286917 0.00287346 0)
(0.00171441 0.00172352 0)
(0.000966308 0.000981133 0)
(0.000505088 0.000533101 0)
(0.000229746 0.000288385 0)
(5.44198e-05 0.000185643 0)
(0.00959685 -0.159805 0)
(0.0259995 -0.157814 0)
(0.0436541 -0.153521 0)
(0.0621553 -0.14637 0)
(0.0808599 -0.135838 0)
(0.0988395 -0.121539 0)
(0.114893 -0.10334 0)
(0.127587 -0.0815515 0)
(0.135442 -0.0570965 0)
(0.137254 -0.0316108 0)
(0.132534 -0.00733422 0)
(0.121879 0.0133683 0)
(0.106935 0.0286643 0)
(0.0899455 0.0378123 0)
(0.0730517 0.0412512 0)
(0.0577555 0.0402468 0)
(0.0447618 0.0363515 0)
(0.0341512 0.0309674 0)
(0.0256698 0.0251441 0)
(0.0189669 0.0195673 0)
(0.0137182 0.0146302 0)
(0.00966111 0.0105132 0)
(0.00658701 0.00725161 0)
(0.00432309 0.00478985 0)
(0.00271543 0.00301993 0)
(0.00162236 0.00181112 0)
(0.000914465 0.00103093 0)
(0.000478092 0.000560148 0)
(0.000217597 0.000303021 0)
(5.15374e-05 0.00019515 0)
(0.0110355 -0.181332 0)
(0.0298759 -0.17892 0)
(0.050097 -0.173726 0)
(0.071178 -0.165101 0)
(0.0923164 -0.152457 0)
(0.11238 -0.135381 0)
(0.129927 -0.113786 0)
(0.143265 -0.0881291 0)
(0.150679 -0.0596232 0)
(0.150862 -0.0303538 0)
(0.143486 -0.00308266 0)
(0.129604 0.0194258 0)
(0.111479 0.0352602 0)
(0.0918756 0.043945 0)
(0.0731842 0.0463648 0)
(0.0568765 0.0442002 0)
(0.0434649 0.0392645 0)
(0.0328054 0.0330587 0)
(0.024466 0.0266275 0)
(0.0179807 0.0206126 0)
(0.0129598 0.0153609 0)
(0.00910768 0.0110165 0)
(0.00620205 0.00759037 0)
(0.00406771 0.00501066 0)
(0.00255418 0.0031582 0)
(0.00152585 0.00189377 0)
(0.000860122 0.00107791 0)
(0.000449798 0.00058566 0)
(0.000204867 0.000316826 0)
(4.85096e-05 0.000204148 0)
(0.0127889 -0.206172 0)
(0.0345909 -0.203223 0)
(0.0579085 -0.19689 0)
(0.0820672 -0.186424 0)
(0.106064 -0.171171 0)
(0.128523 -0.15071 0)
(0.147722 -0.125021 0)
(0.161659 -0.094742 0)
(0.168334 -0.0614558 0)
(0.166329 -0.0278289 0)
(0.155575 0.00271832 0)
(0.137764 0.0269674 0)
(0.115946 0.0430254 0)
(0.0934703 0.0508449 0)
(0.0729274 0.0518934 0)
(0.0556662 0.0483268 0)
(0.041927 0.0422158 0)
(0.0312985 0.035127 0)
(0.0231585 0.0280676 0)
(0.0169284 0.0216139 0)
(0.012159 0.0160544 0)
(0.00852667 0.0114915 0)
(0.00579921 0.00790898 0)
(0.00380093 0.00521794 0)
(0.00238587 0.00328788 0)
(0.00142516 0.00197125 0)
(0.000803431 0.00112194 0)
(0.000420282 0.000609568 0)
(0.000191591 0.000329761 0)
(4.53419e-05 0.000212617 0)
(0.0149489 -0.235061 0)
(0.0403817 -0.231413 0)
(0.0674554 -0.223614 0)
(0.0952874 -0.210814 0)
(0.122627 -0.192316 0)
(0.147822 -0.167718 0)
(0.168834 -0.137084 0)
(0.183286 -0.101268 0)
(0.188819 -0.0623136 0)
(0.18389 -0.0236512 0)
(0.168836 0.0104449 0)
(0.146245 0.0362714 0)
(0.120171 0.0521047 0)
(0.0945853 0.058553 0)
(0.0721859 0.0578245 0)
(0.0540738 0.0525988 0)
(0.0401264 0.0451809 0)
(0.0296234 0.037156 0)
(0.0217463 0.0294548 0)
(0.015811 0.0225657 0)
(0.0113171 0.0167077 0)
(0.00791942 0.0119365 0)
(0.00537952 0.00820643 0)
(0.00352344 0.0054111 0)
(0.00221095 0.0034086 0)
(0.00132055 0.00204334 0)
(0.000744547 0.00116289 0)
(0.000389627 0.000631804 0)
(0.000177807 0.00034179 0)
(4.20393e-05 0.000220542 0)
(0.0176529 -0.268968 0)
(0.0475945 -0.26437 0)
(0.0792481 -0.254625 0)
(0.111451 -0.238817 0)
(0.142665 -0.216257 0)
(0.170949 -0.186603 0)
(0.193929 -0.150004 0)
(0.208777 -0.107542 0)
(0.212638 -0.0618236 0)
(0.203812 -0.0173164 0)
(0.183263 0.0205754 0)
(0.154874 0.047659 0)
(0.123938 0.062643 0)
(0.0950489 0.0670931 0)
(0.0708554 0.0641285 0)
(0.0520485 0.0569774 0)
(0.0380434 0.0481302 0)
(0.0277747 0.0391274 0)
(0.0202294 0.0307788 0)
(0.0146301 0.0234624 0)
(0.010436 0.0173178 0)
(0.00728741 0.0123497 0)
(0.00494405 0.00848176 0)
(0.00323598 0.00558955 0)
(0.00202988 0.00352002 0)
(0.00121231 0.00210984 0)
(0.000683628 0.00120066 0)
(0.000357916 0.000652309 0)
(0.000163553 0.000352879 0)
(3.86058e-05 0.000227912 0)
(0.0211285 -0.309214 0)
(0.0567754 -0.30323 0)
(0.0940208 -0.290792 0)
(0.131376 -0.271031 0)
(0.166988 -0.24336 0)
(0.198694 -0.207561 0)
(0.223801 -0.163805 0)
(0.238902 -0.113355 0)
(0.240418 -0.0594918 0)
(0.226381 -0.00815908 0)
(0.19879 0.0337055 0)
(0.163383 0.061493 0)
(0.126965 0.0747734 0)
(0.0946604 0.0764617 0)
(0.0688247 0.0707544 0)
(0.0495416 0.0614118 0)
(0.0356621 0.051029 0)
(0.0257495 0.041021 0)
(0.0186093 0.0320288 0)
(0.0133882 0.0242985 0)
(0.00951779 0.0178818 0)
(0.00663227 0.0127295 0)
(0.00449398 0.00873405 0)
(0.00293933 0.00575277 0)
(0.00184317 0.00362182 0)
(0.00110074 0.00217055 0)
(0.000620842 0.00123514 0)
(0.000325235 0.000671024 0)
(0.000148868 0.000362992 0)
(3.50446e-05 0.000234718 0)
(0.0258499 -0.357787 0)
(0.0689196 -0.349434 0)
(0.112844 -0.333089 0)
(0.156175 -0.308042 0)
(0.196558 -0.273918 0)
(0.231948 -0.230787 0)
(0.259374 -0.178519 0)
(0.27462 -0.118478 0)
(0.272962 -0.0546602 0)
(0.251916 0.00474804 0)
(0.215243 0.0505834 0)
(0.171386 0.0781719 0)
(0.128896 0.0886019 0)
(0.093191 0.086618 0)
(0.0659793 0.0776257 0)
(0.0465092 0.0658379 0)
(0.0329712 0.0538377 0)
(0.0235478 0.0428155 0)
(0.0168887 0.0331937 0)
(0.012088 0.0250683 0)
(0.00856484 0.0183969 0)
(0.00595577 0.0130746 0)
(0.00403051 0.00896244 0)
(0.0026343 0.00590025 0)
(0.00165132 0.0037137 0)
(0.00098614 0.00222533 0)
(0.000556362 0.00126624 0)
(0.000291673 0.000687896 0)
(0.000133793 0.000372102 0)
(3.1357e-05 0.00024096 0)
(0.033189 -0.418346 0)
(0.0860478 -0.404299 0)
(0.136802 -0.382484 0)
(0.187486 -0.350258 0)
(0.232336 -0.30797 0)
(0.271633 -0.256545 0)
(0.301677 -0.194216 0)
(0.317132 -0.122716 0)
(0.311356 -0.0464319 0)
(0.280728 0.0226223 0)
(0.232267 0.0721386 0)
(0.178327 0.0981123 0)
(0.129286 0.104183 0)
(0.0903874 0.09747 0)
(0.0622061 0.0846359 0)
(0.042915 0.0701783 0)
(0.0299657 0.0565124 0)
(0.0211727 0.0444882 0)
(0.015072 0.0342624 0)
(0.0107333 0.0257663 0)
(0.00757985 0.0188601 0)
(0.00525977 0.0133833 0)
(0.00355492 0.00916617 0)
(0.00232171 0.00603156 0)
(0.00145485 0.00379542 0)
(0.000868822 0.002274 0)
(0.000490361 0.00129386 0)
(0.000257322 0.000702881 0)
(0.000118369 0.000380182 0)
(2.75431e-05 0.000246643 0)
(0.0430927 -0.497608 0)
(0.0996403 -0.466056 0)
(0.158045 -0.441684 0)
(0.223077 -0.39703 0)
(0.273177 -0.345144 0)
(0.318596 -0.285653 0)
(0.35172 -0.210905 0)
(0.367976 -0.126168 0)
(0.357197 -0.0334877 0)
(0.313032 0.0472778 0)
(0.249211 0.0995029 0)
(0.183429 0.121708 0)
(0.127594 0.121481 0)
(0.0859815 0.108858 0)
(0.0574003 0.0916452 0)
(0.0387349 0.0743412 0)
(0.0266482 0.0590056 0)
(0.0186312 0.0460162 0)
(0.0131653 0.0352238 0)
(0.00932852 0.0263873 0)
(0.00656587 0.0192691 0)
(0.00454634 0.0136545 0)
(0.00306857 0.00934451 0)
(0.00200244 0.00614627 0)
(0.00125431 0.00386671 0)
(0.000749116 0.00231644 0)
(0.000423023 0.00131793 0)
(0.000222277 0.000715935 0)
(0.00010264 0.000387208 0)
(2.36009e-05 0.000251782 0)
(0.026233 -0.559087 0)
(0.0303549 -0.513708 0)
(0.0464646 -0.527761 0)
(0.152907 -0.477468 0)
(0.280339 -0.395275 0)
(0.368313 -0.32446 0)
(0.409215 -0.227975 0)
(0.429232 -0.130109 0)
(0.413029 -0.01372 0)
(0.348746 0.0813117 0)
(0.264961 0.133995 0)
(0.185639 0.149266 0)
(0.123187 0.140331 0)
(0.0797073 0.120539 0)
(0.0514735 0.0984795 0)
(0.033961 0.0782221 0)
(0.0230302 0.0612685 0)
(0.015934 0.0473768 0)
(0.0111761 0.0360673 0)
(0.00787873 0.0269263 0)
(0.00552621 0.0196214 0)
(0.00381762 0.0138868 0)
(0.00257284 0.00949683 0)
(0.00167739 0.00624403 0)
(0.00105025 0.0039274 0)
(0.000627351 0.00235253 0)
(0.000354532 0.00133839 0)
(0.000186635 0.000727026 0)
(8.66473e-05 0.000393158 0)
(1.95254e-05 0.000256386 0)
(0.0166245 -0.57095 0)
(0.091253 -0.547374 0)
(0.191364 -0.541389 0)
(0.206952 -0.614124 0)
(0.237454 -0.482517 0)
(0.376029 -0.407237 0)
(0.458429 -0.249289 0)
(0.50428 -0.140169 0)
(0.483255 0.0173693 0)
(0.386844 0.128433 0)
(0.277719 0.177024 0)
(0.183571 0.18089 0)
(0.115351 0.160374 0)
(0.0713294 0.132174 0)
(0.0443601 0.104931 0)
(0.0286073 0.0817054 0)
(0.0191331 0.0632526 0)
(0.0130953 0.0485483 0)
(0.00911377 0.0367833 0)
(0.0063896 0.0273788 0)
(0.0044644 0.0199148 0)
(0.00307583 0.0140793 0)
(0.00206917 0.00962258 0)
(0.00134745 0.00632456 0)
(0.000843223 0.00397731 0)
(0.000503863 0.00238217 0)
(0.000285072 0.00135518 0)
(0.00015049 0.000736121 0)
(7.04348e-05 0.000398015 0)
(1.53058e-05 0.000260469 0)
(0.0363098 -0.647964 0)
(0.105428 -0.645055 0)
(0.179039 -0.643826 0)
(0.264545 -0.642696 0)
(0.380823 -0.55371 0)
(0.456581 -0.450721 0)
(0.55941 -0.32132 0)
(0.624407 -0.160878 0)
(0.574275 0.0804916 0)
(0.4226 0.194554 0)
(0.284566 0.229654 0)
(0.17549 0.216333 0)
(0.103331 0.180999 0)
(0.0606933 0.143314 0)
(0.0360214 0.110761 0)
(0.0227169 0.0846676 0)
(0.0149886 0.0649123 0)
(0.0101336 0.0495106 0)
(0.00698895 0.0373627 0)
(0.00486749 0.0277408 0)
(0.00338425 0.0201477 0)
(0.00232336 0.0142311 0)
(0.00155906 0.00972129 0)
(0.00101357 0.00638759 0)
(0.000633818 0.00401629 0)
(0.000378998 0.00240528 0)
(0.000214837 0.00136825 0)
(0.000113945 0.000743198 0)
(5.40463e-05 0.000401765 0)
(1.09254e-05 0.000264043 0)
(0.0410705 -0.734299 0)
(0.115691 -0.734872 0)
(0.193955 -0.739912 0)
(0.286977 -0.705031 0)
(0.419014 -0.651352 0)
(0.542328 -0.566242 0)
(0.796523 -0.463919 0)
(0.880984 -0.0844337 0)
(0.537824 0.271208 0)
(0.478698 0.29914 0)
(0.26613 0.290168 0)
(0.158992 0.255024 0)
(0.0863725 0.201419 0)
(0.0478187 0.153444 0)
(0.0264327 0.115714 0)
(0.0163706 0.0869889 0)
(0.0106375 0.0662105 0)
(0.00707045 0.0502468 0)
(0.00481364 0.0377985 0)
(0.0033192 0.0280092 0)
(0.00228972 0.0203185 0)
(0.00156263 0.0143413 0)
(0.00104403 0.00979259 0)
(0.000676704 0.00643293 0)
(0.000422617 0.00404426 0)
(0.000253102 0.0024218 0)
(0.000144019 0.00137756 0)
(7.70978e-05 0.000748241 0)
(3.75253e-05 0.000404397 0)
(6.36022e-06 0.000267121 0)
(0.0424341 -0.830719 0)
(0.12332 -0.827306 0)
(0.217518 -0.834566 0)
(0.321897 -0.820714 0)
(0.395807 -0.774386 0)
(0.671589 -0.819326 0)
(0.665567 -0.436793 0)
(1.35456 0.206141 0)
(0.698051 0.32177 0)
(0.425696 0.406988 0)
(0.254913 0.367629 0)
(0.125512 0.294597 0)
(0.0605059 0.220676 0)
(0.0330961 0.162698 0)
(0.015546 0.120092 0)
(0.00970252 0.0889896 0)
(0.00613076 0.0674076 0)
(0.00393247 0.0509289 0)
(0.00260214 0.0381996 0)
(0.00175266 0.0282489 0)
(0.00118533 0.020463 0)
(0.000796355 0.0144281 0)
(0.000525759 0.00984432 0)
(0.000337883 0.00646335 0)
(0.000210263 0.00406182 0)
(0.000126549 0.00243159 0)
(7.28343e-05 0.00138286 0)
(4.0066e-05 0.000751027 0)
(2.09236e-05 0.000405786 0)
(1.58588e-06 0.000269565 0)
(-0.000103748 0.000279276 0)
(-0.000119692 0.0004582 0)
(-0.000152473 0.000856809 0)
(-0.000193831 0.00156596 0)
(-0.000241418 0.00272006 0)
(-0.000295065 0.00447731 0)
(-0.000355308 0.00700692 0)
(-0.000423228 0.0104801 0)
(-0.000508431 0.0150917 0)
(-0.000614644 0.0211079 0)
(-0.000758682 0.0289194 0)
(-0.000989613 0.0391564 0)
(-0.00139518 0.0528964 0)
(-0.00224702 0.0711581 0)
(-0.00363778 0.0946057 0)
(-0.013997 0.132259 0)
(-0.0232466 0.177963 0)
(-0.0251711 0.256584 0)
(-0.146376 0.352902 0)
(-0.302493 0.470494 0)
(-0.587633 0.512249 0)
(-0.702205 0.230763 0)
(-0.49804 -0.353144 0)
(-0.271007 -0.583499 0)
(-0.401465 -0.762839 0)
(-0.497801 -0.871693 0)
(-0.482594 -0.917726 0)
(-0.419668 -0.93678 0)
(-0.284103 -0.954484 0)
(-0.0841301 -0.971183 0)
(-0.00315066 0.000284418 0)
(-0.00355144 0.000487486 0)
(-0.00433169 0.00089932 0)
(-0.00540232 0.00162705 0)
(-0.00679532 0.0028126 0)
(-0.0086026 0.00462669 0)
(-0.0109184 0.00726652 0)
(-0.013887 0.0109409 0)
(-0.0175494 0.0158276 0)
(-0.0213831 0.0222841 0)
(-0.0266047 0.0307464 0)
(-0.0367116 0.0415509 0)
(-0.0510742 0.055356 0)
(-0.117152 0.077357 0)
(-0.0768272 0.0948563 0)
(-0.102631 0.126429 0)
(-0.0953746 0.16983 0)
(0.065426 0.273377 0)
(-0.119692 0.369725 0)
(-0.258513 0.524604 0)
(-0.497501 0.565733 0)
(-0.714294 0.229945 0)
(-0.348544 -0.48009 0)
(-0.13065 -0.603966 0)
(-0.139265 -0.700308 0)
(-0.278241 -0.841452 0)
(-0.351969 -0.917378 0)
(-0.331421 -0.979992 0)
(-0.237687 -1.05981 0)
(-0.0757247 -1.1113 0)
(-0.00455728 0.000284505 0)
(-0.00522646 0.000542235 0)
(-0.00646303 0.000975278 0)
(-0.00821252 0.00172792 0)
(-0.0105447 0.00294735 0)
(-0.0136237 0.0048044 0)
(-0.017631 0.00750838 0)
(-0.0228935 0.0113033 0)
(-0.0301943 0.0163187 0)
(-0.0398283 0.0229894 0)
(-0.0539876 0.0320651 0)
(-0.0801684 0.0443921 0)
(-0.141082 0.0630673 0)
(-0.387014 0.16637 0)
(-1.72105 0.0601423 0)
(-2.1476 -0.096576 0)
(-0.541899 0.181255 0)
(-0.479176 0.225413 0)
(-0.0473134 0.402723 0)
(-0.254356 0.604349 0)
(-0.470324 0.598553 0)
(-0.675155 0.136195 0)
(-0.306463 -0.545734 0)
(-0.0883089 -0.66256 0)
(0.0310112 -0.680811 0)
(-0.0106603 -0.790849 0)
(-0.0720182 -0.895922 0)
(-0.0956033 -1.01628 0)
(-0.0591932 -1.07418 0)
(-0.0123167 -1.20246 0)
(-0.00497889 0.000287972 0)
(-0.00572997 0.000614646 0)
(-0.00709307 0.00107675 0)
(-0.00904547 0.00186618 0)
(-0.0116633 0.00313693 0)
(-0.0151239 0.00506283 0)
(-0.0196627 0.00786663 0)
(-0.0256593 0.011842 0)
(-0.0340651 0.0170881 0)
(-0.0453717 0.024186 0)
(-0.062506 0.034388 0)
(-0.0944399 0.0495965 0)
(-0.168124 0.0786438 0)
(-0.421662 0.25038 0)
(-1.86161 0.353952 0)
(-1.83956 -0.418186 0)
(-0.970066 0.0353763 0)
(-0.611246 0.157553 0)
(-0.285521 0.329015 0)
(-0.224522 0.707955 0)
(-0.596209 0.665459 0)
(-0.558183 0.099057 0)
(-0.430921 -0.593217 0)
(-0.0928697 -0.74027 0)
(0.066681 -0.725366 0)
(0.141348 -0.773914 0)
(0.132283 -0.883043 0)
(0.114562 -1.00282 0)
(0.0855978 -1.0732 0)
(0.0203102 -1.19637 0)
(-0.00508204 0.000293874 0)
(-0.00583792 0.000690965 0)
(-0.00722825 0.00118573 0)
(-0.00923991 0.00201838 0)
(-0.0119311 0.00334996 0)
(-0.0154495 0.00536197 0)
(-0.0200551 0.00828597 0)
(-0.0261059 0.0124699 0)
(-0.0345276 0.0180009 0)
(-0.0459461 0.0256123 0)
(-0.0634844 0.0371192 0)
(-0.0957668 0.0556803 0)
(-0.167917 0.0961964 0)
(-0.365929 0.308364 0)
(-1.06141 0.668158 0)
(-0.968975 -0.605369 0)
(-0.645503 -0.0294186 0)
(-0.611873 0.115112 0)
(-0.550858 0.166341 0)
(-0.160237 0.778763 0)
(-0.640399 0.762579 0)
(-0.622233 0.21892 0)
(-0.340019 -0.773758 0)
(-0.0943842 -0.829087 0)
(0.0626655 -0.793535 0)
(0.167495 -0.8035 0)
(0.204376 -0.88168 0)
(0.194903 -0.977557 0)
(0.139927 -1.04639 0)
(0.0482802 -1.10574 0)
(-0.00511685 0.000301487 0)
(-0.0058604 0.000764527 0)
(-0.00725998 0.00129498 0)
(-0.00929878 0.00217538 0)
(-0.0120153 0.00357377 0)
(-0.0155162 0.00568391 0)
(-0.0200635 0.00873861 0)
(-0.0259765 0.013138 0)
(-0.0340798 0.0189915 0)
(-0.0451544 0.0271749 0)
(-0.0622665 0.040044 0)
(-0.0929406 0.0620137 0)
(-0.157208 0.112949 0)
(-0.283029 0.336527 0)
(-0.117676 0.812086 0)
(-0.119087 -0.606749 0)
(-0.432229 -0.0516879 0)
(-0.473123 0.131868 0)
(-0.427698 0.168371 0)
(-0.566988 0.754866 0)
(-0.619873 0.826698 0)
(-1.33966 0.591408 0)
(-0.418121 -1.03058 0)
(-0.0726064 -0.92834 0)
(0.0685638 -0.858362 0)
(0.152076 -0.847011 0)
(0.19129 -0.89169 0)
(0.185833 -0.956465 0)
(0.136262 -0.98852 0)
(0.0450604 -0.999937 0)
(-0.00513505 0.000311103 0)
(-0.00586754 0.000834153 0)
(-0.00727342 0.00140404 0)
(-0.00932567 0.0023367 0)
(-0.0120476 0.00380726 0)
(-0.0155122 0.00602475 0)
(-0.0199619 0.00921721 0)
(-0.0256822 0.0138316 0)
(-0.0333723 0.0200339 0)
(-0.0439588 0.0288324 0)
(-0.0602565 0.0430657 0)
(-0.0883754 0.0682637 0)
(-0.1416 0.127264 0)
(-0.202375 0.339319 0)
(0.308577 0.70831 0)
(0.291297 -0.416239 0)
(-0.312217 -0.0244596 0)
(-0.434465 0.157627 0)
(-0.286148 0.113312 0)
(-0.706595 0.702235 0)
(-0.670457 0.91961 0)
(-1.63034 0.096824 0)
(-0.315066 -1.27429 0)
(-0.0083025 -1.02422 0)
(0.0923839 -0.910156 0)
(0.141289 -0.878844 0)
(0.158077 -0.898088 0)
(0.139358 -0.932053 0)
(0.0947344 -0.932255 0)
(0.0302969 -0.910292 0)
(-0.00514234 0.000323509 0)
(-0.00586673 0.000900831 0)
(-0.00727659 0.0015147 0)
(-0.00933163 0.00250447 0)
(-0.01204 0.00405252 0)
(-0.0154544 0.00638409 0)
(-0.0197802 0.00971982 0)
(-0.0252712 0.0145472 0)
(-0.0324985 0.021112 0)
(-0.0424897 0.0305494 0)
(-0.0576504 0.0460988 0)
(-0.0824675 0.0741429 0)
(-0.123023 0.138126 0)
(-0.134462 0.324445 0)
(0.284401 0.520467 0)
(0.289857 -0.179505 0)
(-0.228477 0.0371923 0)
(-0.442388 0.208886 0)
(-0.867462 0.35262 0)
(-0.594009 0.741447 0)
(-0.769708 0.965143 0)
(-0.0570407 -0.59237 0)
(0.021607 -1.48411 0)
(0.105854 -1.0825 0)
(0.135294 -0.93776 0)
(0.143833 -0.890093 0)
(0.133533 -0.888691 0)
(0.098892 -0.897989 0)
(0.0552116 -0.885824 0)
(0.0152681 -0.85389 0)
(-0.00513909 0.000339504 0)
(-0.00585708 0.000966335 0)
(-0.00726792 0.00162909 0)
(-0.00931637 0.00268121 0)
(-0.0119918 0.0043117 0)
(-0.0153406 0.00676105 0)
(-0.019517 0.010244 0)
(-0.0247416 0.015281 0)
(-0.0314631 0.0222094 0)
(-0.0407366 0.0322878 0)
(-0.054446 0.049047 0)
(-0.0753081 0.0793605 0)
(-0.102772 0.145015 0)
(-0.0813846 0.299506 0)
(0.217103 0.390788 0)
(0.214027 -0.0163255 0)
(-0.155133 0.113752 0)
(-0.461617 0.308727 0)
(-0.810934 0.291778 0)
(-1.16528 0.931838 0)
(0.523344 1.26515 0)
(0.849868 -0.738842 0)
(0.411297 -1.41012 0)
(0.243028 -1.06671 0)
(0.190507 -0.930381 0)
(0.158578 -0.877255 0)
(0.124393 -0.861332 0)
(0.080231 -0.85516 0)
(0.0360197 -0.84361 0)
(0.00801436 -0.824868 0)
(-0.00512536 0.000359667 0)
(-0.00583757 0.00103274 0)
(-0.00724607 0.00174927 0)
(-0.00927816 0.00286901 0)
(-0.0119032 0.00458568 0)
(-0.0151684 0.00715332 0)
(-0.0191689 0.010785 0)
(-0.0240895 0.0160262 0)
(-0.0302625 0.0233069 0)
(-0.0386813 0.0340005 0)
(-0.0506372 0.0517959 0)
(-0.0670376 0.0836297 0)
(-0.0820633 0.147859 0)
(-0.0418767 0.270508 0)
(0.167328 0.310618 0)
(0.163641 0.0828007 0)
(-0.0786041 0.187902 0)
(-0.35674 0.553381 0)
(-1.07836 0.490095 0)
(-0.645457 0.704334 0)
(0.135069 0.205062 0)
(1.40873 -0.900173 0)
(0.629406 -1.1399 0)
(0.354292 -0.978031 0)
(0.243831 -0.885326 0)
(0.180188 -0.840495 0)
(0.129537 -0.81993 0)
(0.0824686 -0.807499 0)
(0.0401671 -0.800747 0)
(0.0100396 -0.800392 0)
(-0.00510108 0.000384526 0)
(-0.00580746 0.00110253 0)
(-0.00721009 0.00187778 0)
(-0.00921507 0.00306978 0)
(-0.0117754 0.00487492 0)
(-0.014937 0.00755833 0)
(-0.018733 0.0113372 0)
(-0.0233111 0.0167731 0)
(-0.0288909 0.0243827 0)
(-0.0363129 0.0356327 0)
(-0.046241 0.0542198 0)
(-0.0578806 0.0867005 0)
(-0.0619501 0.146968 0)
(-0.0133093 0.241413 0)
(0.133363 0.259853 0)
(0.137527 0.141152 0)
(0.00417478 0.239465 0)
(0.00803796 0.644155 0)
(-0.686347 0.826474 0)
(0.403731 0.0175299 0)
(0.803709 -0.209968 0)
(1.07051 -0.622392 0)
(0.657644 -0.871127 0)
(0.411362 -0.851414 0)
(0.281351 -0.811162 0)
(0.200447 -0.784198 0)
(0.140564 -0.768473 0)
(0.0922686 -0.758346 0)
(0.0524737 -0.754767 0)
(0.0154471 -0.758556 0)
(-0.00506566 0.000414151 0)
(-0.00576521 0.00117772 0)
(-0.00715727 0.00201693 0)
(-0.00912414 0.00328468 0)
(-0.0116081 0.00517909 0)
(-0.0146435 0.00797327 0)
(-0.0182061 0.011894 0)
(-0.0224011 0.01751 0)
(-0.027338 0.0254124 0)
(-0.0336276 0.0371227 0)
(-0.0413018 0.0561909 0)
(-0.0481258 0.0883912 0)
(-0.0432154 0.142907 0)
(0.00722575 0.214284 0)
(0.112314 0.225661 0)
(0.128498 0.17129 0)
(0.0815724 0.256861 0)
(0.203335 0.512575 0)
(0.866223 0.598559 0)
(0.885597 -0.10398 0)
(0.810933 -0.246027 0)
(0.800533 -0.48786 0)
(0.599876 -0.678241 0)
(0.418394 -0.722372 0)
(0.296589 -0.722288 0)
(0.212142 -0.714835 0)
(0.148486 -0.708532 0)
(0.0974384 -0.704788 0)
(0.0544885 -0.703096 0)
(0.015415 -0.70109 0)
(-0.00501802 0.00044786 0)
(-0.00571008 0.00125935 0)
(-0.00708434 0.00216792 0)
(-0.00900276 0.00351331 0)
(-0.0113996 0.00549602 0)
(-0.0142847 0.00839372 0)
(-0.0175861 0.0124468 0)
(-0.0213559 0.0182214 0)
(-0.0255945 0.0263652 0)
(-0.0306318 0.0384027 0)
(-0.0358982 0.0575862 0)
(-0.038101 0.0886034 0)
(-0.0263456 0.136351 0)
(0.0222537 0.189869 0)
(0.101036 0.200044 0)
(0.129649 0.180665 0)
(0.141314 0.244399 0)
(0.288502 0.373108 0)
(0.642051 0.313008 0)
(0.746939 -0.0403915 0)
(0.701685 -0.231823 0)
(0.645352 -0.410243 0)
(0.52247 -0.54671 0)
(0.393848 -0.608619 0)
(0.291242 -0.631358 0)
(0.212286 -0.639056 0)
(0.149608 -0.6416 0)
(0.0977129 -0.642513 0)
(0.0530319 -0.643001 0)
(0.0143224 -0.643298 0)
(-0.00495692 0.000485178 0)
(-0.00564196 0.00134871 0)
(-0.00698899 0.00233186 0)
(-0.00884902 0.00375535 0)
(-0.0111472 0.00582369 0)
(-0.0138576 0.008815 0)
(-0.0168718 0.0129856 0)
(-0.0201742 0.0188877 0)
(-0.0236567 0.027203 0)
(-0.0273454 0.0393994 0)
(-0.0301425 0.0582969 0)
(-0.0281363 0.0873251 0)
(-0.0115581 0.12795 0)
(0.0336338 0.167975 0)
(0.0963701 0.178189 0)
(0.134921 0.174808 0)
(0.178965 0.213336 0)
(0.310548 0.259412 0)
(0.51494 0.177416 0)
(0.60419 -0.0337762 0)
(0.587439 -0.20629 0)
(0.533418 -0.347209 0)
(0.447247 -0.451823 0)
(0.354002 -0.513385 0)
(0.271209 -0.545768 0)
(0.201929 -0.562534 0)
(0.143977 -0.571479 0)
(0.0946634 -0.57643 0)
(0.0518203 -0.579033 0)
(0.0139672 -0.579937 0)
(-0.00488138 0.000525952 0)
(-0.0055598 0.00144711 0)
(-0.00686995 0.00250978 0)
(-0.00866108 0.00401075 0)
(-0.010847 0.00616112 0)
(-0.0133592 0.00923346 0)
(-0.0160603 0.0134997 0)
(-0.0188557 0.0194865 0)
(-0.0215289 0.027882 0)
(-0.0238061 0.0400372 0)
(-0.0241761 0.0582346 0)
(-0.018541 0.084622 0)
(0.00110877 0.118248 0)
(0.0425195 0.148059 0)
(0.0954518 0.157487 0)
(0.139849 0.1586 0)
(0.196509 0.174498 0)
(0.301484 0.174592 0)
(0.42636 0.096125 0)
(0.488959 -0.0467205 0)
(0.483728 -0.183123 0)
(0.441632 -0.295024 0)
(0.378334 -0.378669 0)
(0.308666 -0.434175 0)
(0.242702 -0.46848 0)
(0.184033 -0.489171 0)
(0.132721 -0.501636 0)
(0.0877927 -0.509067 0)
(0.0481517 -0.513165 0)
(0.0128415 -0.514814 0)
(-0.00479096 0.000569532 0)
(-0.00546245 0.0015545 0)
(-0.00672728 0.00270085 0)
(-0.00843883 0.00427821 0)
(-0.010497 0.00650642 0)
(-0.0127901 0.00964568 0)
(-0.0151516 0.0139785 0)
(-0.0174053 0.0199949 0)
(-0.0192274 0.0283592 0)
(-0.0200725 0.0402468 0)
(-0.0181642 0.057343 0)
(-0.00958718 0.0806231 0)
(0.0117374 0.107713 0)
(0.0494921 0.129541 0)
(0.0959245 0.13684 0)
(0.141823 0.136397 0)
(0.198747 0.135204 0)
(0.278204 0.112628 0)
(0.357088 0.0429048 0)
(0.397731 -0.0608903 0)
(0.395011 -0.164802 0)
(0.363526 -0.252574 0)
(0.316175 -0.319957 0)
(0.263023 -0.36779 0)
(0.210575 -0.400039 0)
(0.161901 -0.421163 0)
(0.117857 -0.434756 0)
(0.0783654 -0.443262 0)
(0.0430095 -0.448153 0)
(0.0113314 -0.45021 0)
(-0.0046851 0.000614761 0)
(-0.00534773 0.00166929 0)
(-0.00655992 0.00290159 0)
(-0.00818182 0.00455466 0)
(-0.0100965 0.00685553 0)
(-0.0121517 0.0100461 0)
(-0.0141488 0.0144092 0)
(-0.0158332 0.0203892 0)
(-0.0167796 0.0285934 0)
(-0.0162225 0.0399717 0)
(-0.0122805 0.0556039 0)
(-0.00149736 0.0754926 0)
(0.0204112 0.096627 0)
(0.0547357 0.111984 0)
(0.0960678 0.116117 0)
(0.139856 0.11176 0)
(0.19064 0.0993678 0)
(0.249025 0.067422 0)
(0.299525 0.00726477 0)
(0.324404 -0.07115 0)
(0.321002 -0.149875 0)
(0.296956 -0.217954 0)
(0.260948 -0.271759 0)
(0.219854 -0.311667 0)
(0.178161 -0.340009 0)
(0.138329 -0.359518 0)
(0.101393 -0.372611 0)
(0.0676846 -0.381109 0)
(0.0371752 -0.386193 0)
(0.00968464 -0.388409 0)
(-0.00456284 0.000661395 0)
(-0.00521091 0.00179002 0)
(-0.00636411 0.00310806 0)
(-0.00788679 0.00483544 0)
(-0.00964383 0.00720093 0)
(-0.0114454 0.0104239 0)
(-0.0130581 0.0147752 0)
(-0.0141572 0.020644 0)
(-0.0142284 0.028548 0)
(-0.0123559 0.0391762 0)
(-0.0067049 0.0530438 0)
(0.00556567 0.0694463 0)
(0.0272082 0.0852488 0)
(0.0582258 0.0951879 0)
(0.094822 0.0957336 0)
(0.134054 0.0873024 0)
(0.176207 0.0686342 0)
(0.218157 0.0345074 0)
(0.250368 -0.0164252 0)
(0.264515 -0.0768927 0)
(0.259786 -0.13674 0)
(0.240687 -0.189167 0)
(0.21279 -0.231558 0)
(0.180715 -0.263956 0)
(0.147616 -0.287726 0)
(0.115392 -0.304599 0)
(0.0850061 -0.316245 0)
(0.0569113 -0.324041 0)
(0.0312601 -0.328903 0)
(0.0080443 -0.3311 0)
(-0.00442145 0.000709627 0)
(-0.00504662 0.00191496 0)
(-0.00613456 0.00331629 0)
(-0.0075486 0.00511576 0)
(-0.00913542 0.00753378 0)
(-0.010671 0.0107665 0)
(-0.0118877 0.0150577 0)
(-0.0124012 0.0207319 0)
(-0.0116288 0.02819 0)
(-0.00858631 0.0378456 0)
(-0.00161263 0.0497284 0)
(0.0114641 0.0626959 0)
(0.0321882 0.0738082 0)
(0.0598923 0.0791743 0)
(0.0917118 0.0763087 0)
(0.125113 0.0647161 0)
(0.158373 0.0433794 0)
(0.187844 0.0107721 0)
(0.207975 -0.031686 0)
(0.215036 -0.078765 0)
(0.20925 -0.12445 0)
(0.193564 -0.164631 0)
(0.171579 -0.1976 0)
(0.146388 -0.223291 0)
(0.120199 -0.242529 0)
(0.094441 -0.25644 0)
(0.0699057 -0.266199 0)
(0.0470041 -0.27286 0)
(0.0258869 -0.277135 0)
(0.00660392 -0.279113 0)
(-0.00425704 0.000759907 0)
(-0.00485225 0.00204405 0)
(-0.00586838 0.0035257 0)
(-0.00716498 0.00539271 0)
(-0.0085703 0.0078471 0)
(-0.00983209 0.011061 0)
(-0.0106505 0.0152385 0)
(-0.0105967 0.02063 0)
(-0.00904756 0.0274983 0)
(-0.00503173 0.035993 0)
(0.00285234 0.0457707 0)
(0.0161126 0.0554699 0)
(0.0354123 0.0625322 0)
(0.0597323 0.06411 0)
(0.0867094 0.0584293 0)
(0.113949 0.0449292 0)
(0.139145 0.0233331 0)
(0.159299 -0.00600619 0)
(0.171368 -0.040911 0)
(0.173882 -0.0776685 0)
(0.167534 -0.112613 0)
(0.154394 -0.143283 0)
(0.136852 -0.168635 0)
(0.116996 -0.188623 0)
(0.0963681 -0.203783 0)
(0.076017 -0.214867 0)
(0.0565397 -0.222675 0)
(0.0382247 -0.227913 0)
(0.0211386 -0.231087 0)
(0.00534274 -0.232446 0)
(-0.00406614 0.000812143 0)
(-0.00462552 0.00217618 0)
(-0.00556363 0.00373488 0)
(-0.00673489 0.0056611 0)
(-0.00794989 0.0081347 0)
(-0.00893607 0.0112977 0)
(-0.00936587 0.0153034 0)
(-0.00878456 0.0203207 0)
(-0.00656179 0.0264678 0)
(-0.00181171 0.0336607 0)
(0.00656492 0.0413089 0)
(0.0194716 0.0480069 0)
(0.0369637 0.0516592 0)
(0.0578495 0.0502296 0)
(0.0800764 0.0425376 0)
(0.10146 0.0283214 0)
(0.11986 0.00794175 0)
(0.133177 -0.017466 0)
(0.13987 -0.0457944 0)
(0.139578 -0.0744473 0)
(0.133129 -0.101156 0)
(0.122035 -0.12446 0)
(0.10793 -0.143762 0)
(0.0922335 -0.159074 0)
(0.0760074 -0.170766 0)
(0.0599865 -0.179336 0)
(0.0446038 -0.185292 0)
(0.0300985 -0.189063 0)
(0.0165775 -0.191034 0)
(0.00412877 -0.191708 0)
(-0.00384531 0.000866006 0)
(-0.00436345 0.00230919 0)
(-0.00521795 0.00394097 0)
(-0.0062573 0.00591797 0)
(-0.00727742 0.00838954 0)
(-0.00799367 0.011465 0)
(-0.00805921 0.0152408 0)
(-0.0070132 0.0197969 0)
(-0.00425423 0.0251137 0)
(0.000965599 0.0309198 0)
(0.00942906 0.0365026 0)
(0.0215447 0.0405457 0)
(0.0369664 0.0414252 0)
(0.0544543 0.0377605 0)
(0.0722244 0.0288865 0)
(0.0884252 0.0149016 0)
(0.101377 -0.00345783 0)
(0.109771 -0.0248687 0)
(0.11294 -0.0475809 0)
(0.111028 -0.0698126 0)
(0.104834 -0.0901581 0)
(0.0954799 -0.107764 0)
(0.0841009 -0.122316 0)
(0.0716682 -0.133862 0)
(0.0589134 -0.142669 0)
(0.046359 -0.149081 0)
(0.0343326 -0.153449 0)
(0.0230431 -0.15608 0)
(0.0126082 -0.157308 0)
(0.0030906 -0.157643 0)
(-0.00359073 0.000919643 0)
(-0.00406297 0.00244205 0)
(-0.00482862 0.00414055 0)
(-0.00573152 0.00615683 0)
(-0.00655782 0.0086047 0)
(-0.00701889 0.0115559 0)
(-0.00676047 0.0150453 0)
(-0.00533587 0.0190646 0)
(-0.00220618 0.0234727 0)
(0.00321502 0.0278808 0)
(0.011394 0.0315329 0)
(0.022382 0.0333156 0)
(0.0355924 0.0320432 0)
(0.0498338 0.0268675 0)
(0.0636075 0.0175442 0)
(0.0754608 0.00444691 0)
(0.0842185 -0.0115465 0)
(0.0891549 -0.0292157 0)
(0.0900919 -0.0472173 0)
(0.0873729 -0.064355 0)
(0.0816911 -0.0797659 0)
(0.0738809 -0.0929672 0)
(0.0647392 -0.103817 0)
(0.0549409 -0.112395 0)
(0.0449979 -0.118913 0)
(0.0352843 -0.123625 0)
(0.026039 -0.12679 0)
(0.017415 -0.128649 0)
(0.00948995 -0.129476 0)
(0.00229085 -0.129676 0)
(-0.00329855 0.000972516 0)
(-0.00372094 0.00257056 0)
(-0.00439312 0.00433045 0)
(-0.00515794 0.00637266 0)
(-0.00579805 0.00877501 0)
(-0.00602918 0.0115665 0)
(-0.00550342 0.0147211 0)
(-0.00380802 0.0181442 0)
(-0.000494898 0.0216035 0)
(0.00485913 0.0246561 0)
(0.0124473 0.0265874 0)
(0.0220756 0.0265272 0)
(0.0330535 0.0236855 0)
(0.0443114 0.0176322 0)
(0.0546527 0.00843131 0)
(0.0630175 -0.00339126 0)
(0.0686671 -0.0169769 0)
(0.0712623 -0.0313195 0)
(0.0708762 -0.045443 0)
(0.0678995 -0.0585637 0)
(0.0629019 -0.070165 0)
(0.0565003 -0.0799907 0)
(0.0492568 -0.0880046 0)
(0.0416374 -0.0943053 0)
(0.0339936 -0.0990731 0)
(0.0265833 -0.10251 0)
(0.01957 -0.104816 0)
(0.0130571 -0.106166 0)
(0.00709426 -0.106758 0)
(0.0016919 -0.106893 0)
(-0.00296495 0.00102258 0)
(-0.00333391 0.00269319 0)
(-0.00390943 0.00450609 0)
(-0.00453781 0.0065609 0)
(-0.00500639 0.00889779 0)
(-0.00504367 0.0114997 0)
(-0.00432279 0.01428 0)
(-0.00248276 0.0170752 0)
(0.000824457 0.0195939 0)
(0.00585887 0.0213867 0)
(0.0126152 0.0218488 0)
(0.0207539 0.0203595 0)
(0.0295832 0.0164649 0)
(0.0382029 0.0100443 0)
(0.0457094 0.0013569 0)
(0.0513917 -0.00902452 0)
(0.0548262 -0.0203527 0)
(0.0559168 -0.0318514 0)
(0.0548417 -0.0428444 0)
(0.0519666 -0.0528358 0)
(0.0477402 -0.0615318 0)
(0.0426136 -0.0688145 0)
(0.0369817 -0.0747063 0)
(0.0311639 -0.0793106 0)
(0.0253945 -0.0827771 0)
(0.0198401 -0.0852633 0)
(0.0146013 -0.0869231 0)
(0.00974054 -0.0878932 0)
(0.00528743 -0.0883203 0)
(0.00124821 -0.0884174 0)
(-0.00258629 0.00106925 0)
(-0.00289864 0.00280653 0)
(-0.00337585 0.00466408 0)
(-0.00387305 0.00671886 0)
(-0.00419147 0.00897332 0)
(-0.00408158 0.0113632 0)
(-0.00325202 0.01375 0)
(-0.00140578 0.0159147 0)
(0.00170844 0.0175431 0)
(0.0062052 0.01822 0)
(0.0119584 0.0174863 0)
(0.018569 0.0149533 0)
(0.0254142 0.0104335 0)
(0.0317838 0.00401793 0)
(0.0370384 -0.0039343 0)
(0.0407326 -0.0128807 0)
(0.0426626 -0.0222132 0)
(0.0428588 -0.0313661 0)
(0.041527 -0.0398886 0)
(0.0389744 -0.0474822 0)
(0.0355385 -0.0539949 0)
(0.0315404 -0.0593922 0)
(0.0272504 -0.0637259 0)
(0.0228835 -0.0670936 0)
(0.0185954 -0.0696167 0)
(0.0144966 -0.0714159 0)
(0.0106515 -0.0726026 0)
(0.00709726 -0.0732709 0)
(0.00384675 -0.0735313 0)
(0.000898789 -0.0735655 0)
(-0.00215896 0.00111155 0)
(-0.00241202 0.00290764 0)
(-0.00279071 0.00480123 0)
(-0.00316548 0.00684437 0)
(-0.00336095 0.00900563 0)
(-0.00315973 0.0111762 0)
(-0.0023184 0.0131711 0)
(-0.000609442 0.0147384 0)
(0.00213287 0.015566 0)
(0.00591933 0.0153066 0)
(0.0105626 0.0136494 0)
(0.0156777 0.0104069 0)
(0.0207519 0.00558752 0)
(0.0252609 -0.000590366 0)
(0.0287853 -0.00773171 0)
(0.031066 -0.0153675 0)
(0.0320323 -0.0230265 0)
(0.0317683 -0.0303122 0)
(0.0304627 -0.0369381 0)
(0.0283542 -0.0427353 0)
(0.0256864 -0.0476389 0)
(0.0226803 -0.0516597 0)
(0.0195156 -0.0548617 0)
(0.0163323 -0.0573349 0)
(0.0132305 -0.0591795 0)
(0.0102817 -0.0604912 0)
(0.00752799 -0.0613568 0)
(0.00499554 -0.0618499 0)
(0.00269522 -0.0620504 0)
(0.00062316 -0.0620818 0)
(-0.00167993 0.00114756 0)
(-0.00187145 0.00299314 0)
(-0.00215244 0.00491326 0)
(-0.00241621 0.00693825 0)
(-0.0025201 0.00900486 0)
(-0.00228955 0.0109645 0)
(-0.00153767 0.012599 0)
(-0.000105073 0.0136368 0)
(0.00210643 0.0137926 0)
(0.00504765 0.0127947 0)
(0.00852733 0.0104692 0)
(0.0122239 0.0067858 0)
(0.0157554 0.0018857 0)
(0.0187649 -0.00394214 0)
(0.0209942 -0.0103201 0)
(0.0223118 -0.0168529 0)
(0.0227128 -0.0231878 0)
(0.0222895 -0.0290556 0)
(0.0211919 -0.0342816 0)
(0.0195912 -0.0387805 0)
(0.0176534 -0.0425389 0)
(0.0155254 -0.0455908 0)
(0.0133245 -0.0480026 0)
(0.011139 -0.0498539 0)
(0.00902815 -0.0512289 0)
(0.00703192 -0.0522063 0)
(0.00517086 -0.0528554 0)
(0.00345265 -0.0532307 0)
(0.00187491 -0.0533883 0)
(0.000435693 -0.0534153 0)
(-0.0011467 0.00117566 0)
(-0.00127457 0.003059 0)
(-0.00145892 0.00499774 0)
(-0.00162387 0.0070024 0)
(-0.00166855 0.0089841 0)
(-0.00147134 0.0107647 0)
(-0.000906906 0.0121017 0)
(0.000122973 0.0127195 0)
(0.00166591 0.0123612 0)
(0.00366011 0.0108322 0)
(0.00595272 0.00806384 0)
(0.00831945 0.00413654 0)
(0.0105124 -0.000726534 0)
(0.0123191 -0.00620767 0)
(0.0135939 -0.0119589 0)
(0.0142801 -0.0176528 0)
(0.0143966 -0.0230248 0)
(0.0140154 -0.0278923 0)
(0.0132372 -0.0321521 0)
(0.0121705 -0.0357703 0)
(0.0109173 -0.0387639 0)
(0.00956502 -0.0411815 0)
(0.0081816 -0.0430896 0)
(0.00681663 -0.0445563 0)
(0.00550356 -0.0456441 0)
(0.00426685 -0.0464063 0)
(0.00312094 -0.0468871 0)
(0.00207228 -0.0471226 0)
(0.0011195 -0.0471667 0)
(0.000258274 -0.0471328 0)
(-0.000557909 0.00119394 0)
(-0.000619568 0.00310146 0)
(-0.000707285 0.00505027 0)
(-0.000783263 0.0070391 0)
(-0.000797041 0.0089613 0)
(-0.000688533 0.0106196 0)
(-0.000397298 0.0117579 0)
(0.000121041 0.0121036 0)
(0.000882402 0.0114217 0)
(0.0018472 0.00957474 0)
(0.00293198 0.00656042 0)
(0.00403026 0.00251711 0)
(0.00503687 -0.00228053 0)
(0.00584146 -0.00750836 0)
(0.00638948 -0.0128485 0)
(0.00666355 -0.0180174 0)
(0.00667784 -0.0228038 0)
(0.00646944 -0.027075 0)
(0.00608685 -0.0307676 0)
(0.00558011 -0.0338742 0)
(0.00499385 -0.0364248 0)
(0.00436471 -0.0384702 0)
(0.00372176 -0.0400739 0)
(0.00308871 -0.0413011 0)
(0.00248228 -0.0422135 0)
(0.00191296 -0.0428635 0)
(0.00138699 -0.0432951 0)
(0.000910248 -0.0435425 0)
(0.000485616 -0.043641 0)
(0.000109741 -0.0436523 0)
(0.128958 -0.966696 0)
(0.32331 -0.947629 0)
(0.4381 -0.937467 0)
(0.486489 -0.914652 0)
(0.49067 -0.856615 0)
(0.358078 -0.721284 0)
(0.286604 -0.517427 0)
(0.689691 -0.311761 0)
(0.620286 0.328848 0)
(0.499376 0.509349 0)
(0.234013 0.453775 0)
(0.121951 0.325797 0)
(0.0167975 0.236215 0)
(0.0225971 0.166247 0)
(0.00922232 0.120309 0)
(0.00326723 0.0881644 0)
(0.00193164 0.0661944 0)
(0.00125529 0.0491068 0)
(0.000905012 0.0363451 0)
(0.000705517 0.0267854 0)
(0.000578194 0.0194655 0)
(0.000484373 0.0138274 0)
(0.000407709 0.00951935 0)
(0.00034452 0.0062966 0)
(0.000288233 0.00397497 0)
(0.000234219 0.00238308 0)
(0.00018596 0.0013537 0)
(0.000142871 0.000733281 0)
(0.000110388 0.000395072 0)
(9.05754e-05 0.00023699 0)
(0.118562 -1.09716 0)
(0.259163 -1.03409 0)
(0.346254 -0.971516 0)
(0.338921 -0.902348 0)
(0.246544 -0.813125 0)
(0.113642 -0.668426 0)
(0.158821 -0.583664 0)
(0.449455 -0.372899 0)
(0.626121 0.376895 0)
(0.461313 0.580202 0)
(0.191703 0.505428 0)
(0.11367 0.332452 0)
(-0.0789904 0.251309 0)
(0.107475 0.157502 0)
(0.0945651 0.114766 0)
(0.142409 0.0885352 0)
(0.0696699 0.0696915 0)
(0.0441116 0.0513647 0)
(0.0323208 0.0386477 0)
(0.024371 0.0284289 0)
(0.0199576 0.0205073 0)
(0.0162763 0.0144847 0)
(0.0128149 0.00991944 0)
(0.0101803 0.00652186 0)
(0.00813291 0.0041055 0)
(0.00644223 0.00246218 0)
(0.00513007 0.00140552 0)
(0.00407098 0.000770548 0)
(0.00330717 0.000420254 0)
(0.00313189 -0.000135242 0)
(0.0374728 -1.21356 0)
(0.0565287 -1.07143 0)
(0.0889758 -0.986445 0)
(0.062501 -0.873312 0)
(-0.00798492 -0.759982 0)
(-0.0141589 -0.67146 0)
(0.135703 -0.656313 0)
(0.39396 -0.493195 0)
(0.700062 0.443251 0)
(0.447812 0.613216 0)
(0.154825 0.567437 0)
(0.164685 0.34599 0)
(0.507724 0.205762 0)
(0.796746 0.153531 0)
(2.44804 0.146762 0)
(1.31238 0.166981 0)
(0.242929 0.0943116 0)
(0.112826 0.0563585 0)
(0.0694813 0.040786 0)
(0.0485709 0.029463 0)
(0.0364216 0.0211259 0)
(0.0277182 0.0149455 0)
(0.0211591 0.0102393 0)
(0.0164847 0.00674509 0)
(0.0129013 0.00426669 0)
(0.009997 0.00257452 0)
(0.00779349 0.00148756 0)
(0.00606332 0.000836085 0)
(0.00485081 0.000465809 0)
(0.00451762 -0.000208801 0)
(-0.050318 -1.18986 0)
(-0.091078 -1.06662 0)
(-0.120874 -0.969132 0)
(-0.134412 -0.856086 0)
(-0.130924 -0.754448 0)
(-0.0295668 -0.728639 0)
(0.143731 -0.736547 0)
(0.332558 -0.607465 0)
(0.633633 0.288185 0)
(0.506822 0.687836 0)
(0.125909 0.620772 0)
(0.313274 0.28287 0)
(0.727314 0.128042 0)
(1.21682 -0.107015 0)
(2.39162 0.11659 0)
(1.09729 0.473972 0)
(0.289714 0.1386 0)
(0.1343 0.0665081 0)
(0.0812855 0.0446745 0)
(0.0559076 0.031304 0)
(0.0414185 0.0221641 0)
(0.0313028 0.0156542 0)
(0.023766 0.0107136 0)
(0.0184017 0.00707314 0)
(0.0143049 0.00449986 0)
(0.011041 0.00273364 0)
(0.00857399 0.00160045 0)
(0.00665966 0.000923683 0)
(0.00533147 0.000525378 0)
(0.00492359 -0.000176587 0)
(-0.0725892 -1.09841 0)
(-0.150256 -1.0359 0)
(-0.198211 -0.955995 0)
(-0.197363 -0.85916 0)
(-0.14334 -0.796111 0)
(-0.02601 -0.800596 0)
(0.151187 -0.835744 0)
(0.617702 -0.659395 0)
(0.617604 0.354445 0)
(0.563266 0.813837 0)
(0.149655 0.870619 0)
(0.604536 0.214965 0)
(0.6275 0.0921959 0)
(0.762661 -0.227625 0)
(1.23705 -0.0174637 0)
(0.562451 0.735777 0)
(0.274694 0.181219 0)
(0.135327 0.0782073 0)
(0.0825098 0.0492284 0)
(0.0567992 0.0334815 0)
(0.0420102 0.0233915 0)
(0.0317757 0.0164823 0)
(0.0241958 0.0112666 0)
(0.018734 0.00745495 0)
(0.0145378 0.00476981 0)
(0.011242 0.00291667 0)
(0.00872299 0.00172742 0)
(0.00679135 0.00101858 0)
(0.0054648 0.000587078 0)
(0.00501788 -0.00011549 0)
(-0.0656416 -0.999621 0)
(-0.148156 -0.983533 0)
(-0.186857 -0.944492 0)
(-0.181939 -0.877124 0)
(-0.130937 -0.846371 0)
(-0.0367941 -0.870686 0)
(0.131161 -0.952799 0)
(0.48933 -0.857496 0)
(0.765471 0.651658 0)
(0.586341 0.940692 0)
(0.817374 0.627693 0)
(0.484168 0.183243 0)
(0.462409 0.107419 0)
(0.413741 -0.242179 0)
(0.0585617 -0.0784468 0)
(0.133502 0.781121 0)
(0.235997 0.212907 0)
(0.129039 0.0899061 0)
(0.080469 0.0540066 0)
(0.0558085 0.0358321 0)
(0.0413469 0.0247227 0)
(0.0314068 0.0173655 0)
(0.0240867 0.0118577 0)
(0.0186979 0.00786612 0)
(0.014517 0.00506153 0)
(0.0112611 0.00311509 0)
(0.00873383 0.00186252 0)
(0.00682035 0.00111489 0)
(0.00551856 0.00064532 0)
(0.0050435 -5.32008e-05 0)
(-0.0430486 -0.915787 0)
(-0.102838 -0.935057 0)
(-0.14272 -0.927706 0)
(-0.152795 -0.890463 0)
(-0.127889 -0.883162 0)
(-0.0691661 -0.929886 0)
(0.0577475 -1.07336 0)
(0.410405 -1.36299 0)
(1.35627 1.19008 0)
(0.598957 1.0602 0)
(0.502278 0.588189 0)
(0.399424 0.087235 0)
(0.404699 0.135081 0)
(0.220305 -0.162568 0)
(-0.538393 -0.0268326 0)
(-0.0150339 0.650683 0)
(0.190416 0.231103 0)
(0.11934 0.100674 0)
(0.0770949 0.0588035 0)
(0.0541455 0.0382858 0)
(0.0403021 0.0261262 0)
(0.0308119 0.0182826 0)
(0.0238404 0.0124744 0)
(0.0185782 0.00829981 0)
(0.014454 0.00537124 0)
(0.011244 0.00332765 0)
(0.00871962 0.00200535 0)
(0.00682817 0.00121212 0)
(0.00554886 0.000699521 0)
(0.00505036 3.72581e-06 0)
(-0.0204928 -0.860754 0)
(-0.0618556 -0.891677 0)
(-0.104968 -0.89815 0)
(-0.134104 -0.887357 0)
(-0.139037 -0.898585 0)
(-0.12505 -0.963431 0)
(-0.0856594 -1.14993 0)
(0.0363284 -1.62933 0)
(1.10101 1.09999 0)
(0.800641 1.12618 0)
(0.443792 0.510301 0)
(0.471547 0.164193 0)
(0.379094 0.18839 0)
(0.126047 -0.0526633 0)
(-0.46233 0.0636032 0)
(-0.056938 0.509097 0)
(0.145456 0.236858 0)
(0.107245 0.109803 0)
(0.0726973 0.0634424 0)
(0.0520021 0.0407789 0)
(0.0390166 0.0275796 0)
(0.0300825 0.019224 0)
(0.0235026 0.013113 0)
(0.0184071 0.00875433 0)
(0.0143713 0.00569825 0)
(0.0112067 0.00355477 0)
(0.00869652 0.00215707 0)
(0.00682579 0.00131159 0)
(0.00556352 0.000751054 0)
(0.00504566 5.49216e-05 0)
(-0.00965032 -0.82884 0)
(-0.042474 -0.848077 0)
(-0.088057 -0.85783 0)
(-0.129967 -0.864894 0)
(-0.162157 -0.888104 0)
(-0.195103 -0.95672 0)
(-0.25945 -1.12928 0)
(-0.498822 -1.54461 0)
(-0.403483 0.415351 0)
(0.878816 0.979658 0)
(1.02404 0.757216 0)
(0.680992 0.288847 0)
(0.347018 0.283717 0)
(0.0654827 0.0518539 0)
(-0.30338 0.125887 0)
(-0.0720346 0.403919 0)
(0.104776 0.232842 0)
(0.0933459 0.116749 0)
(0.0673165 0.0677301 0)
(0.0493855 0.0432389 0)
(0.0374971 0.0290568 0)
(0.0292178 0.0201796 0)
(0.0230647 0.0137701 0)
(0.0181797 0.009228 0)
(0.0142616 0.00604174 0)
(0.0111478 0.00379677 0)
(0.00866552 0.00231912 0)
(0.00681352 0.0014148 0)
(0.00556495 0.000801856 0)
(0.00503151 0.000101074 0)
(-0.0131258 -0.800523 0)
(-0.0467679 -0.802272 0)
(-0.0907021 -0.811301 0)
(-0.138398 -0.825553 0)
(-0.190577 -0.851163 0)
(-0.26056 -0.906536 0)
(-0.393401 -1.01822 0)
(-0.756277 -1.19658 0)
(-1.33408 -0.419764 0)
(0.0747433 -0.180094 0)
(1.552 0.767422 0)
(0.907347 0.387867 0)
(0.241617 0.431775 0)
(0.0128016 0.138389 0)
(-0.208433 0.163717 0)
(-0.0749809 0.328714 0)
(0.0700174 0.22212 0)
(0.0782982 0.121164 0)
(0.0610083 0.071456 0)
(0.0462854 0.0455795 0)
(0.0357338 0.0305232 0)
(0.0282064 0.0211358 0)
(0.0225164 0.0144403 0)
(0.0178878 0.00971729 0)
(0.0141149 0.00639984 0)
(0.0110645 0.0040531 0)
(0.00862423 0.00249262 0)
(0.00679024 0.00152321 0)
(0.00555468 0.000853979 0)
(0.00500881 0.000142863 0)
(-0.0220612 -0.757818 0)
(-0.0592854 -0.755363 0)
(-0.100777 -0.761626 0)
(-0.151598 -0.773514 0)
(-0.215277 -0.792345 0)
(-0.304632 -0.824219 0)
(-0.455299 -0.868339 0)
(-0.749317 -0.867783 0)
(-1.14653 -0.469276 0)
(-0.74232 -0.200658 0)
(-0.171363 -0.169595 0)
(0.228589 0.806206 0)
(0.026334 0.496725 0)
(-0.0400768 0.198042 0)
(-0.157274 0.185153 0)
(-0.0734832 0.27514 0)
(0.0414618 0.207448 0)
(0.0627965 0.122925 0)
(0.0538837 0.074411 0)
(0.0426997 0.0477046 0)
(0.0337158 0.0319368 0)
(0.0270374 0.0220769 0)
(0.0218513 0.0151166 0)
(0.0175231 0.010218 0)
(0.0139221 0.00677058 0)
(0.0109539 0.00432345 0)
(0.00856837 0.00267883 0)
(0.00675492 0.00163879 0)
(0.005533 0.000909775 0)
(0.00497779 0.000181106 0)
(-0.0229648 -0.701748 0)
(-0.0627058 -0.70416 0)
(-0.107287 -0.706611 0)
(-0.161067 -0.711679 0)
(-0.229028 -0.71934 0)
(-0.321187 -0.727511 0)
(-0.456972 -0.723848 0)
(-0.657312 -0.657886 0)
(-0.836333 -0.415756 0)
(-0.806753 -0.207637 0)
(-0.996144 -0.0821533 0)
(-0.626456 0.678207 0)
(-0.13928 0.440625 0)
(-0.0910429 0.2265 0)
(-0.132888 0.193837 0)
(-0.071888 0.236143 0)
(0.0185371 0.190922 0)
(0.0474881 0.122123 0)
(0.046109 0.0764095 0)
(0.0386453 0.0495129 0)
(0.0314357 0.0332503 0)
(0.0257018 0.0229855 0)
(0.0210654 0.0157906 0)
(0.0170782 0.0107254 0)
(0.0136774 0.00715185 0)
(0.0108136 0.00460729 0)
(0.00849347 0.00287849 0)
(0.006707 0.00176348 0)
(0.00549976 0.000971009 0)
(0.00493816 0.00021642 0)
(-0.0220668 -0.643469 0)
(-0.0622556 -0.643516 0)
(-0.108591 -0.643432 0)
(-0.162908 -0.642825 0)
(-0.229327 -0.640165 0)
(-0.314023 -0.630897 0)
(-0.424639 -0.60242 0)
(-0.559713 -0.52534 0)
(-0.672019 -0.367512 0)
(-0.712912 -0.190729 0)
(-0.773681 0.0253099 0)
(-0.554376 0.379737 0)
(-0.231523 0.349311 0)
(-0.133612 0.22651 0)
(-0.124346 0.191743 0)
(-0.0719803 0.206251 0)
(0.000291793 0.173878 0)
(0.0329122 0.119007 0)
(0.0379002 0.0773085 0)
(0.0341662 0.0509012 0)
(0.0288929 0.0344099 0)
(0.0241939 0.0238378 0)
(0.0201571 0.0164488 0)
(0.0165487 0.0112325 0)
(0.0133772 0.0075401 0)
(0.010641 0.00490271 0)
(0.00839568 0.00309112 0)
(0.00664507 0.00189829 0)
(0.00545462 0.00103841 0)
(0.00488951 0.000248982 0)
(-0.0222212 -0.580017 0)
(-0.0612443 -0.579108 0)
(-0.105628 -0.576372 0)
(-0.157048 -0.571083 0)
(-0.217888 -0.561162 0)
(-0.290982 -0.541978 0)
(-0.378017 -0.504281 0)
(-0.473385 -0.432858 0)
(-0.55455 -0.316357 0)
(-0.599917 -0.168573 0)
(-0.605977 0.0186411 0)
(-0.472033 0.222948 0)
(-0.268657 0.259766 0)
(-0.163128 0.206416 0)
(-0.123915 0.180676 0)
(-0.073923 0.181495 0)
(-0.0142791 0.157026 0)
(0.0194593 0.113918 0)
(0.0294996 0.0770212 0)
(0.0293326 0.0517704 0)
(0.0260934 0.0353558 0)
(0.0225106 0.0246034 0)
(0.019126 0.0170737 0)
(0.0159324 0.0117313 0)
(0.0130179 0.00793164 0)
(0.0104322 0.00520823 0)
(0.0082717 0.00331653 0)
(0.00656636 0.00204431 0)
(0.00539669 0.00111294 0)
(0.00483087 0.000279467 0)
(-0.0210113 -0.51474 0)
(-0.0573663 -0.512826 0)
(-0.0983316 -0.508292 0)
(-0.144929 -0.500132 0)
(-0.198307 -0.48632 0)
(-0.25936 -0.463142 0)
(-0.327496 -0.42451 0)
(-0.397744 -0.362331 0)
(-0.458031 -0.270743 0)
(-0.493489 -0.151683 0)
(-0.486568 -0.00822601 0)
(-0.402352 0.128896 0)
(-0.272476 0.185006 0)
(-0.178716 0.175439 0)
(-0.126176 0.162823 0)
(-0.0770036 0.159295 0)
(-0.0259583 0.140587 0)
(0.00738525 0.107225 0)
(0.0211622 0.0755214 0)
(0.0242435 0.0520298 0)
(0.0230588 0.0360227 0)
(0.0206562 0.0252456 0)
(0.0179742 0.0176455 0)
(0.0152293 0.0122135 0)
(0.0125967 0.00832381 0)
(0.0101824 0.00552353 0)
(0.00811806 0.00355486 0)
(0.00646718 0.00220263 0)
(0.00532395 0.00119574 0)
(0.00476043 0.000309023 0)
(-0.0190564 -0.450031 0)
(-0.0516445 -0.447518 0)
(-0.0880761 -0.44203 0)
(-0.128831 -0.432646 0)
(-0.174299 -0.417645 0)
(-0.224421 -0.394285 0)
(-0.277939 -0.358637 0)
(-0.331024 -0.306062 0)
(-0.376102 -0.233064 0)
(-0.402351 -0.139833 0)
(-0.395842 -0.0322802 0)
(-0.342898 0.0680717 0)
(-0.258391 0.126308 0)
(-0.182274 0.140875 0)
(-0.127697 0.140669 0)
(-0.0801842 0.138229 0)
(-0.035251 0.124562 0)
(-0.00315796 0.0992775 0)
(0.0131413 0.0728436 0)
(0.0190253 0.0516081 0)
(0.0198308 0.0363484 0)
(0.0186445 0.0257283 0)
(0.0167066 0.0181449 0)
(0.0144397 0.0126707 0)
(0.0121109 0.00871406 0)
(0.0098865 0.00584742 0)
(0.00793039 0.00380491 0)
(0.00634331 0.00237265 0)
(0.0052325 0.00128659 0)
(0.00467619 0.000338145 0)
(-0.0167255 -0.38817 0)
(-0.0449754 -0.385398 0)
(-0.0763398 -0.379663 0)
(-0.110984 -0.370283 0)
(-0.148882 -0.355895 0)
(-0.189577 -0.334496 0)
(-0.231754 -0.303509 0)
(-0.272499 -0.260135 0)
(-0.306666 -0.202323 0)
(-0.326763 -0.130393 0)
(-0.323723 -0.0494181 0)
(-0.291054 0.0272552 0)
(-0.23553 0.0813283 0)
(-0.176802 0.107366 0)
(-0.126699 0.116626 0)
(-0.0824816 0.11775 0)
(-0.042431 0.108898 0)
(-0.0121104 0.0904136 0)
(0.00566843 0.0690726 0)
(0.0138215 0.0504615 0)
(0.0164682 0.0362776 0)
(0.0164965 0.0260157 0)
(0.0153279 0.0185521 0)
(0.0135619 0.0130922 0)
(0.0115557 0.00909783 0)
(0.00953853 0.0061767 0)
(0.00770392 0.00406374 0)
(0.00619083 0.00255137 0)
(0.00511854 0.00138387 0)
(0.00457621 0.000366614 0)
(-0.0142816 -0.330825 0)
(-0.0381165 -0.328037 0)
(-0.064427 -0.322563 0)
(-0.0931965 -0.313986 0)
(-0.124224 -0.301224 0)
(-0.156957 -0.282799 0)
(-0.190239 -0.256976 0)
(-0.221881 -0.222016 0)
(-0.248314 -0.176745 0)
(-0.264532 -0.121598 0)
(-0.264826 -0.0601327 0)
(-0.245417 -0.000344729 0)
(-0.209019 0.0473398 0)
(-0.165252 0.0773757 0)
(-0.122629 0.0927088 0)
(-0.0831815 0.0978983 0)
(-0.0475954 0.0936048 0)
(-0.0194105 0.0808911 0)
(-0.00104841 0.0643363 0)
(0.00878689 0.0485826 0)
(0.0130466 0.0357689 0)
(0.0142413 0.0260741 0)
(0.0138469 0.0188448 0)
(0.0125968 0.0134633 0)
(0.0109298 0.00946565 0)
(0.00913589 0.00650506 0)
(0.00743705 0.00432701 0)
(0.00600848 0.00273558 0)
(0.00498155 0.00148624 0)
(0.00445872 0.000394608 0)
(-0.0119951 -0.278846 0)
(-0.0317506 -0.276315 0)
(-0.0533507 -0.271504 0)
(-0.0767398 -0.264177 0)
(-0.101717 -0.253486 0)
(-0.127788 -0.238328 0)
(-0.154019 -0.217504 0)
(-0.1788 -0.189902 0)
(-0.199661 -0.154839 0)
(-0.213282 -0.112685 0)
(-0.215996 -0.065725 0)
(-0.205248 -0.0187229 0)
(-0.181745 0.022036 0)
(-0.150061 0.0519268 0)
(-0.115696 0.0703827 0)
(-0.0819222 0.0790246 0)
(-0.0507725 0.0787988 0)
(-0.0250418 0.0709865 0)
(-0.00685254 0.0588237 0)
(0.004079 0.0460028 0)
(0.00965802 0.0347965 0)
(0.0119213 0.025871 0)
(0.012282 0.0189986 0)
(0.0115526 0.0137671 0)
(0.0102374 0.00980651 0)
(0.00868012 0.00682505 0)
(0.00713077 0.0045905 0)
(0.00579661 0.00292206 0)
(0.00482208 0.0015922 0)
(0.00432146 0.000422726 0)
(-0.00995885 -0.232257 0)
(-0.0260946 -0.230465 0)
(-0.0435047 -0.226801 0)
(-0.0621536 -0.220969 0)
(-0.0819348 -0.212392 0)
(-0.102486 -0.20032 0)
(-0.123104 -0.183941 0)
(-0.142622 -0.16252 0)
(-0.159331 -0.135621 0)
(-0.171005 -0.103481 0)
(-0.175207 -0.0674915 0)
(-0.170058 -0.0305025 0)
(-0.155341 0.00357815 0)
(-0.133061 0.0311844 0)
(-0.106505 0.0505469 0)
(-0.0786746 0.0615624 0)
(-0.0520142 0.0646812 0)
(-0.0290114 0.0609636 0)
(-0.0116068 0.0527134 0)
(-0.000149641 0.0427852 0)
(0.00640573 0.0333578 0)
(0.00959166 0.0253825 0)
(0.0106599 0.0189922 0)
(0.0104416 0.0139871 0)
(0.00948329 0.0101093 0)
(0.00817158 0.00713073 0)
(0.00678353 0.00485186 0)
(0.00555259 0.00311057 0)
(0.00463725 0.00170178 0)
(0.00416176 0.000451845 0)
(-0.0079069 -0.191615 0)
(-0.0206349 -0.190659 0)
(-0.0344159 -0.188256 0)
(-0.0491682 -0.183947 0)
(-0.0647616 -0.177342 0)
(-0.0809123 -0.167988 0)
(-0.0971157 -0.155362 0)
(-0.112555 -0.138971 0)
(-0.126058 -0.118509 0)
(-0.136118 -0.0940861 0)
(-0.141059 -0.0665122 0)
(-0.139455 -0.0374902 0)
(-0.130722 -0.0094904 0)
(-0.115561 0.0148692 0)
(-0.0957857 0.0336398 0)
(-0.0736578 0.0458936 0)
(-0.0514401 0.0515009 0)
(-0.031362 0.0510877 0)
(-0.0152287 0.0462247 0)
(-0.00377686 0.0390538 0)
(0.0033978 0.0314752 0)
(0.0073174 0.0245972 0)
(0.00901443 0.018808 0)
(0.00927873 0.01411 0)
(0.00867266 0.0103657 0)
(0.00761012 0.00741675 0)
(0.00639252 0.00510678 0)
(0.00527255 0.0033 0)
(0.00442297 0.00181422 0)
(0.00397638 0.000482278 0)
(-0.00607995 -0.157593 0)
(-0.0158301 -0.157068 0)
(-0.0264893 -0.155499 0)
(-0.0379838 -0.152426 0)
(-0.0501749 -0.147534 0)
(-0.0628246 -0.140504 0)
(-0.0755601 -0.130976 0)
(-0.0878086 -0.118611 0)
(-0.098764 -0.103182 0)
(-0.107394 -0.0847127 0)
(-0.112527 -0.0636515 0)
(-0.113073 -0.0410081 0)
(-0.10836 -0.0183437 0)
(-0.0984532 0.00248141 0)
(-0.084246 0.0197527 0)
(-0.0672397 0.0322727 0)
(-0.0492511 0.0395018 0)
(-0.0321825 0.0416187 0)
(-0.0176805 0.0395851 0)
(-0.0066871 0.034926 0)
(0.000741993 0.0291983 0)
(0.00517085 0.0235206 0)
(0.00738667 0.0184371 0)
(0.00808471 0.0141244 0)
(0.00781355 0.0105651 0)
(0.0069975 0.00767657 0)
(0.00595588 0.00535308 0)
(0.00495347 0.00348789 0)
(0.00417563 0.00192761 0)
(0.00376174 0.000513964 0)
(-0.00463721 -0.12964 0)
(-0.0120166 -0.129301 0)
(-0.0201195 -0.128217 0)
(-0.028908 -0.126017 0)
(-0.0382871 -0.122446 0)
(-0.0480824 -0.117259 0)
(-0.0580217 -0.110192 0)
(-0.067697 -0.100991 0)
(-0.0765468 -0.0894733 0)
(-0.0838561 -0.0756013 0)
(-0.088795 -0.0596017 0)
(-0.0905372 -0.0420599 0)
(-0.0884518 -0.0239534 0)
(-0.0823204 -0.00656541 0)
(-0.0724871 0.00874179 0)
(-0.059848 0.0208025 0)
(-0.045716 0.0288763 0)
(-0.0316121 0.0327922 0)
(-0.0189738 0.0330215 0)
(-0.00880791 0.0305635 0)
(-0.0014758 0.0266111 0)
(0.00322595 0.0221772 0)
(0.00582292 0.0178808 0)
(0.0068846 0.0140238 0)
(0.00691677 0.0107001 0)
(0.00633683 0.00790348 0)
(0.00547226 0.00558514 0)
(0.00459238 0.00367123 0)
(0.00389162 0.00204119 0)
(0.00351407 0.000545546 0)
(-0.00350255 -0.106865 0)
(-0.00904218 -0.106624 0)
(-0.0151428 -0.105836 0)
(-0.0217848 -0.104231 0)
(-0.0289055 -0.101621 0)
(-0.0363854 -0.0978266 0)
(-0.044038 -0.092645 0)
(-0.0515829 -0.0858743 0)
(-0.0586344 -0.0773513 0)
(-0.0646973 -0.0670033 0)
(-0.0691823 -0.0549215 0)
(-0.0714695 -0.041429 0)
(-0.0710173 -0.0271255 0)
(-0.0675075 -0.01287 0)
(-0.0609785 0.000319811 0)
(-0.0519025 0.0114515 0)
(-0.0411415 0.0197432 0)
(-0.0298331 0.0248078 0)
(-0.0191647 0.02675 0)
(-0.0101021 0.0261388 0)
(-0.00317704 0.0238154 0)
(0.0015537 0.0206132 0)
(0.00437233 0.0171529 0)
(0.00570707 0.0138098 0)
(0.00599628 0.0107658 0)
(0.0056329 0.00809241 0)
(0.00494103 0.0057984 0)
(0.00418648 0.00384718 0)
(0.00356752 0.00215108 0)
(0.00322957 0.000577064 0)
(-0.00263733 -0.0883954 0)
(-0.00677758 -0.0882169 0)
(-0.0113311 -0.0876436 0)
(-0.0162865 -0.0864832 0)
(-0.021606 -0.0845969 0)
(-0.027217 -0.0818443 0)
(-0.033003 -0.0780689 0)
(-0.0387812 -0.0731116 0)
(-0.0442921 -0.0668329 0)
(-0.0491955 -0.0591451 0)
(-0.0530749 -0.0500606 0)
(-0.0554717 -0.0397413 0)
(-0.0559473 -0.0285392 0)
(-0.0541759 -0.0170102 0)
(-0.05005 -0.00587535 0)
(-0.0437633 0.00407733 0)
(-0.0358346 0.0121343 0)
(-0.0270558 0.0178089 0)
(-0.0183507 0.0209612 0)
(-0.0105713 0.0218274 0)
(-0.00430612 0.0209305 0)
(0.000219056 0.0188946 0)
(0.00308307 0.016284 0)
(0.00458207 0.0134901 0)
(0.00506783 0.0107633 0)
(0.00489177 0.00824038 0)
(0.00436222 0.00598841 0)
(0.00373327 0.00401132 0)
(0.00319984 0.00225618 0)
(0.0029043 0.000606703 0)
(-0.00193727 -0.0735533 0)
(-0.00495879 -0.0734635 0)
(-0.00828342 -0.0730925 0)
(-0.0119091 -0.0722791 0)
(-0.0158164 -0.0709221 0)
(-0.0199607 -0.0689234 0)
(-0.024267 -0.0661687 0)
(-0.0286147 -0.0625356 0)
(-0.0328308 -0.057908 0)
(-0.0366857 -0.0521971 0)
(-0.0398917 -0.0453726 0)
(-0.0421194 -0.0374972 0)
(-0.0430326 -0.0287631 0)
(-0.0423444 -0.0195145 0)
(-0.0398919 -0.0102421 0)
(-0.0357068 -0.0015365 0)
(-0.0300729 0.00600539 0)
(-0.023498 0.0118821 0)
(-0.0166585 0.0158139 0)
(-0.0102518 0.0177983 0)
(-0.00484095 0.0180936 0)
(-0.000738809 0.0171171 0)
(0.00199836 0.015321 0)
(0.00353881 0.0130867 0)
(0.00414725 0.0106973 0)
(0.00412004 0.00834633 0)
(0.00373653 0.00615205 0)
(0.00323052 0.00416045 0)
(0.00278513 0.00235356 0)
(0.00253444 0.000634531 0)
(-0.00136542 -0.0620709 0)
(-0.003492 -0.0619958 0)
(-0.00584865 -0.0617142 0)
(-0.00843521 -0.061115 0)
(-0.0112364 -0.0601233 0)
(-0.0142219 -0.0586637 0)
(-0.0173422 -0.0566461 0)
(-0.0205189 -0.0539728 0)
(-0.0236404 -0.0505459 0)
(-0.0265572 -0.0462804 0)
(-0.029077 -0.0411258 0)
(-0.0309713 -0.0350891 0)
(-0.0319939 -0.0282629 0)
(-0.0319148 -0.0208488 0)
(-0.0305696 -0.0131669 0)
(-0.0279152 -0.00564009 0)
(-0.024075 0.00125424 0)
(-0.0193593 0.0070586 0)
(-0.0142273 0.0114291 0)
(-0.00920925 0.0142077 0)
(-0.00478794 0.0154482 0)
(-0.0012922 0.0153802 0)
(0.00114996 0.0143288 0)
(0.00260198 0.0126319 0)
(0.00324858 0.0105827 0)
(0.00332359 0.00841224 0)
(0.00306461 0.00628601 0)
(0.0026761 0.00429124 0)
(0.00232006 0.00244085 0)
(0.00211647 0.000659959 0)
(-0.000951818 -0.0534059 0)
(-0.00242463 -0.0533434 0)
(-0.00403506 -0.0531235 0)
(-0.00578615 -0.0526689 0)
(-0.00767882 -0.0519264 0)
(-0.00970182 -0.0508381 0)
(-0.0118291 -0.0493317 0)
(-0.0140163 -0.0473266 0)
(-0.0161963 -0.0447401 0)
(-0.0182737 -0.0414948 0)
(-0.020122 -0.0375327 0)
(-0.0215887 -0.0328307 0)
(-0.0225041 -0.0274208 0)
(-0.0227007 -0.0214122 0)
(-0.0220409 -0.0150059 0)
(-0.0204569 -0.00849694 0)
(-0.0179873 -0.00225321 0)
(-0.0148024 0.00333043 0)
(-0.0111925 0.00789675 0)
(-0.00752823 0.0111975 0)
(-0.00418067 0.0131417 0)
(-0.00143704 0.0138037 0)
(0.000552231 0.0133885 0)
(0.00178678 0.0121728 0)
(0.00238139 0.0104396 0)
(0.00250632 0.00844524 0)
(0.0023467 0.00638996 0)
(0.00206794 0.00439921 0)
(0.00180186 0.00251502 0)
(0.00164739 0.000681545 0)
(-0.000569546 -0.0471338 0)
(-0.00145272 -0.0471508 0)
(-0.00242836 -0.0470549 0)
(-0.00350001 -0.0467485 0)
(-0.00466724 -0.0461862 0)
(-0.00592159 -0.0453315 0)
(-0.00724611 -0.0441379 0)
(-0.00861418 -0.0425497 0)
(-0.00998792 -0.0405032 0)
(-0.0113132 -0.0379297 0)
(-0.0125164 -0.0347674 0)
(-0.013506 -0.0309746 0)
(-0.0141774 -0.026547 0)
(-0.014423 -0.0215365 0)
(-0.014148 -0.0160672 0)
(-0.0132934 -0.0103448 0)
(-0.01186 -0.00465282 0)
(-0.00992872 0.000672334 0)
(-0.00766725 0.00528778 0)
(-0.00530219 0.00889961 0)
(-0.00307853 0.0113228 0)
(-0.00120357 0.0125199 0)
(0.00019666 0.0125969 0)
(0.00109178 0.0117678 0)
(0.00154611 0.0102978 0)
(0.00166742 0.00845421 0)
(0.00158129 0.00646381 0)
(0.00140375 0.00448155 0)
(0.00122809 0.00257239 0)
(0.00112473 0.000698283 0)
(-0.000248982 -0.0436471 0)
(-0.000636179 -0.0436129 0)
(-0.00107351 -0.0434711 0)
(-0.00156255 -0.0431688 0)
(-0.00209907 -0.0426729 0)
(-0.00267671 -0.0419478 0)
(-0.00328844 -0.0409477 0)
(-0.00392277 -0.0396176 0)
(-0.00456092 -0.0378947 0)
(-0.00517779 -0.0357136 0)
(-0.0057423 -0.0330142 0)
(-0.00621582 -0.0297503 0)
(-0.0065518 -0.0259012 0)
(-0.0066999 -0.0214881 0)
(-0.00661395 -0.0165923 0)
(-0.00626222 -0.0113676 0)
(-0.00563907 -0.00604526 0)
(-0.00477157 -0.00092287 0)
(-0.00372916 0.00368337 0)
(-0.00262678 0.00745339 0)
(-0.00156797 0.0101492 0)
(-0.000655674 0.0116715 0)
(3.92929e-05 0.0120602 0)
(0.000492014 0.0114852 0)
(0.000728709 0.010192 0)
(0.000798972 0.00845215 0)
(0.00076397 0.00650771 0)
(0.000681111 0.00453312 0)
(0.000597174 0.00260952 0)
(0.000547238 0.000709199 0)
(-7.41044e-05 4.10902e-06 0)
(-0.000323392 1.69173e-05 0)
(-0.000712931 3.12813e-05 0)
(-0.00136531 5.75563e-05 0)
(-0.00242222 0.00010104 0)
(-0.00404909 0.000168217 0)
(-0.00642576 0.000265939 0)
(-0.00972743 0.00040006 0)
(-0.0140961 0.000573152 0)
(-0.0196013 0.000781192 0)
(-0.0261942 0.00100955 0)
(-0.0336637 0.00122969 0)
(-0.0416101 0.00139895 0)
(-0.0494626 0.00146622 0)
(-0.0565463 0.00138374 0)
(-0.0621984 0.00112157 0)
(-0.0658974 0.000678265 0)
(-0.0673571 8.26518e-05 0)
(-0.0665596 -0.000614139 0)
(-0.0637209 -0.00135201 0)
(-0.0592153 -0.0020749 0)
(-0.0534882 -0.00273919 0)
(-0.0469824 -0.00331724 0)
(-0.0400876 -0.00379644 0)
(-0.033117 -0.00417595 0)
(-0.0263075 -0.00446246 0)
(-0.0198168 -0.00466752 0)
(-0.0137457 -0.00480405 0)
(-0.00814629 -0.00488535 0)
(-0.00303413 -0.00492326 0)
(-2.5115e-05 1.3716e-05 0)
(-0.000322324 3.81574e-05 0)
(-0.000710562 7.05529e-05 0)
(-0.00136076 0.000129819 0)
(-0.00241416 0.000227906 0)
(-0.00403569 0.000379464 0)
(-0.00640476 0.000600006 0)
(-0.00969644 0.000902848 0)
(-0.0140533 0.00129402 0)
(-0.0195469 0.00176481 0)
(-0.0261324 0.00228275 0)
(-0.0336052 0.00278392 0)
(-0.0415736 0.00317225 0)
(-0.0494739 0.00333172 0)
(-0.0566342 0.00315278 0)
(-0.0623872 0.00256549 0)
(-0.0661996 0.00156457 0)
(-0.0677691 0.000214192 0)
(-0.0670624 -0.00136952 0)
(-0.0642844 -0.00304927 0)
(-0.0598049 -0.0046963 0)
(-0.0540704 -0.0062106 0)
(-0.047529 -0.0075286 0)
(-0.0405775 -0.00862126 0)
(-0.0335364 -0.00948654 0)
(-0.0266493 -0.0101399 0)
(-0.0200789 -0.0106073 0)
(-0.0139296 -0.0109186 0)
(-0.00825589 -0.0111034 0)
(-0.00307513 -0.0111894 0)
(-2.50112e-05 2.68012e-05 0)
(-0.00032032 5.92914e-05 0)
(-0.000706115 0.000109626 0)
(-0.00135222 0.000201717 0)
(-0.00239903 0.000354137 0)
(-0.00401052 0.00058967 0)
(-0.00636525 0.00093248 0)
(-0.00963796 0.00140339 0)
(-0.0139722 0.00201209 0)
(-0.0194428 0.00274563 0)
(-0.0260121 0.00355449 0)
(-0.0334868 0.00434048 0)
(-0.0414899 0.00495504 0)
(-0.0494708 0.00521745 0)
(-0.0567635 0.004955 0)
(-0.0626938 0.00405477 0)
(-0.066708 0.00250393 0)
(-0.0684752 0.00039907 0)
(-0.0679338 -0.00207991 0)
(-0.0652684 -0.00471749 0)
(-0.0608397 -0.00730996 0)
(-0.0550959 -0.00969787 0)
(-0.0484942 -0.0117791 0)
(-0.0414443 -0.0135062 0)
(-0.0342795 -0.014875 0)
(-0.0272553 -0.0159091 0)
(-0.0205437 -0.0166492 0)
(-0.0142557 -0.0171422 0)
(-0.00845047 -0.0174351 0)
(-0.00314772 -0.0175708 0)
(-2.48394e-05 3.98143e-05 0)
(-0.000317449 8.02637e-05 0)
(-0.000699745 0.000148399 0)
(-0.00134 0.000273063 0)
(-0.00237737 0.000479408 0)
(-0.00397445 0.000798299 0)
(-0.00630862 0.00126254 0)
(-0.00955411 0.00190054 0)
(-0.0138557 0.00272593 0)
(-0.0192931 0.00372225 0)
(-0.0258385 0.00482412 0)
(-0.0333149 0.00590075 0)
(-0.0413661 0.00675269 0)
(-0.0494611 0.00713483 0)
(-0.0569431 0.00680926 0)
(-0.0631288 0.00561548 0)
(-0.067436 0.00352725 0)
(-0.0694924 0.000668606 0)
(-0.0691948 -0.00271844 0)
(-0.0666971 -0.00633907 0)
(-0.0623462 -0.0099107 0)
(-0.0565919 -0.0132098 0)
(-0.0499045 -0.0160913 0)
(-0.0427122 -0.0184866 0)
(-0.0353675 -0.0203874 0)
(-0.0281431 -0.0218244 0)
(-0.0212249 -0.0228537 0)
(-0.0147338 -0.0235396 0)
(-0.00873591 -0.0239469 0)
(-0.00325435 -0.0241359 0)
(-2.46007e-05 5.27199e-05 0)
(-0.00031372 0.000101016 0)
(-0.000691471 0.000186764 0)
(-0.00132412 0.000343663 0)
(-0.00234922 0.000603377 0)
(-0.00392759 0.00100479 0)
(-0.00623503 0.00158933 0)
(-0.00944506 0.00239308 0)
(-0.0137041 0.00343403 0)
(-0.0190977 0.00469309 0)
(-0.0256109 0.00609069 0)
(-0.0330875 0.00746572 0)
(-0.0411985 0.00857002 0)
(-0.0494391 0.00909471 0)
(-0.057166 0.00873412 0)
(-0.0636861 0.00727398 0)
(-0.0683806 0.00466652 0)
(-0.0708232 0.00105641 0)
(-0.0708546 -0.0032558 0)
(-0.0685869 -0.0078938 0)
(-0.0643462 -0.0124911 0)
(-0.0585838 -0.0167537 0)
(-0.0517864 -0.0204876 0)
(-0.0444068 -0.0235983 0)
(-0.0368234 -0.0260707 0)
(-0.0293324 -0.0279423 0)
(-0.022138 -0.029284 0)
(-0.0153752 -0.0301784 0)
(-0.00911869 -0.0307099 0)
(-0.00339751 -0.0309565 0)
(-2.42955e-05 6.54837e-05 0)
(-0.000309142 0.000121492 0)
(-0.000681315 0.000224618 0)
(-0.00130462 0.000413323 0)
(-0.00231466 0.000725708 0)
(-0.00387006 0.0012086 0)
(-0.00614463 0.00191199 0)
(-0.00931099 0.00287979 0)
(-0.0135173 0.00413482 0)
(-0.0188563 0.00565647 0)
(-0.0253282 0.00735303 0)
(-0.0328021 0.00903597 0)
(-0.0409824 0.0104113 0)
(-0.0493976 0.0111074 0)
(-0.0574235 0.0107479 0)
(-0.0643572 0.00905721 0)
(-0.0695373 0.0059554 0)
(-0.0724703 0.00159836 0)
(-0.0729255 -0.00365918 0)
(-0.0709591 -0.00935794 0)
(-0.066869 -0.0150411 0)
(-0.0611057 -0.0203353 0)
(-0.0541759 -0.0249898 0)
(-0.0465632 -0.0288782 0)
(-0.038679 -0.0319752 0)
(-0.0308498 -0.0343232 0)
(-0.023304 -0.0360081 0)
(-0.0161945 -0.0371321 0)
(-0.00960793 -0.0378003 0)
(-0.0035804 -0.03811 0)
(-2.39245e-05 7.80713e-05 0)
(-0.000303729 0.000141634 0)
(-0.000669305 0.000261857 0)
(-0.00128157 0.000481854 0)
(-0.00227378 0.000846069 0)
(-0.003802 0.00140916 0)
(-0.00603763 0.00222967 0)
(-0.00915217 0.00335945 0)
(-0.0132957 0.00482669 0)
(-0.0185689 0.00661062 0)
(-0.0249894 0.00860976 0)
(-0.0324557 0.0106117 0)
(-0.040712 0.0122802 0)
(-0.0493276 0.0131825 0)
(-0.0577039 0.0128688 0)
(-0.0651311 0.0109928 0)
(-0.0708997 0.00742969 0)
(-0.0744363 0.00233419 0)
(-0.0754218 -0.00389122 0)
(-0.0738406 -0.0107032 0)
(-0.0699516 -0.0175465 0)
(-0.0642013 -0.0239581 0)
(-0.0571194 -0.0296198 0)
(-0.0492265 -0.0343654 0)
(-0.0409753 -0.0381545 0)
(-0.0327303 -0.0410325 0)
(-0.0247504 -0.0431004 0)
(-0.0172114 -0.0444811 0)
(-0.0102155 -0.0453023 0)
(-0.00380754 -0.0456831 0)
(-2.3489e-05 9.04482e-05 0)
(-0.000297495 0.000161391 0)
(-0.000655473 0.00029838 0)
(-0.00125502 0.000549069 0)
(-0.0022267 0.000964133 0)
(-0.00372358 0.00160594 0)
(-0.0059143 0.00254153 0)
(-0.00896889 0.00383086 0)
(-0.0130394 0.00550808 0)
(-0.0182351 0.0075537 0)
(-0.0245931 0.0098593 0)
(-0.0320449 0.0121926 0)
(-0.0403804 0.0141795 0)
(-0.0492181 0.0153289 0)
(-0.0579933 0.0151143 0)
(-0.0659938 0.0131091 0)
(-0.0724591 0.00912777 0)
(-0.0767236 0.00330814 0)
(-0.0783606 -0.00390904 0)
(-0.077264 -0.0118952 0)
(-0.0736399 -0.0199886 0)
(-0.0679255 -0.0276226 0)
(-0.0606752 -0.0343989 0)
(-0.052454 -0.0401009 0)
(-0.0437646 -0.044667 0)
(-0.0350182 -0.0481426 0)
(-0.0265122 -0.0506437 0)
(-0.0184511 -0.0523154 0)
(-0.0109563 -0.0533102 0)
(-0.00408454 -0.0537714 0)
(-2.29901e-05 0.000102581 0)
(-0.000290458 0.000180707 0)
(-0.000639857 0.000334086 0)
(-0.00122504 0.000614783 0)
(-0.00217354 0.00107957 0)
(-0.00363502 0.00179841 0)
(-0.00577492 0.00284676 0)
(-0.00876151 0.00429279 0)
(-0.0127487 0.00617731 0)
(-0.0178549 0.00848373 0)
(-0.024138 0.0110997 0)
(-0.0315659 0.0137777 0)
(-0.03998 0.0161113 0)
(-0.0490564 0.0175543 0)
(-0.0582747 0.0175015 0)
(-0.0669277 0.0154352 0)
(-0.0742034 0.0110908 0)
(-0.0793325 0.00456981 0)
(-0.08176 -0.00366158 0)
(-0.0812673 -0.0128919 0)
(-0.077989 -0.0223417 0)
(-0.0723451 -0.0313253 0)
(-0.0649155 -0.0393472 0)
(-0.0563168 -0.0461281 0)
(-0.0471118 -0.0515765 0)
(-0.0377691 -0.0557338 0)
(-0.0286334 -0.0587307 0)
(-0.0199449 -0.0607362 0)
(-0.0118495 -0.0619305 0)
(-0.0044188 -0.0624846 0)
(-2.24285e-05 0.000114438 0)
(-0.000282637 0.00019953 0)
(-0.000622501 0.000368879 0)
(-0.00119172 0.000678819 0)
(-0.00211444 0.00119208 0)
(-0.00353654 0.00198605 0)
(-0.00561983 0.00314452 0)
(-0.00853044 0.00474405 0)
(-0.012424 0.00683273 0)
(-0.0174281 0.00939861 0)
(-0.0236226 0.0123287 0)
(-0.0310145 0.0153654 0)
(-0.039502 0.0180764 0)
(-0.048828 0.019865 0)
(-0.0585281 0.0200465 0)
(-0.067911 0.0180008 0)
(-0.0761165 0.0133634 0)
(-0.0822615 0.00617507 0)
(-0.0856407 -0.00309039 0)
(-0.0858945 -0.0136417 0)
(-0.0830646 -0.0245719 0)
(-0.077541 -0.0350568 0)
(-0.0699285 -0.0444835 0)
(-0.0609026 -0.0524932 0)
(-0.0510977 -0.0589535 0)
(-0.0410523 -0.063897 0)
(-0.0311688 -0.0674676 0)
(-0.0217322 -0.0698602 0)
(-0.0129187 -0.0712862 0)
(-0.00481884 -0.0719483 0)
(-2.18055e-05 0.000125985 0)
(-0.000274054 0.000217809 0)
(-0.000603451 0.000402661 0)
(-0.00115515 0.000741001 0)
(-0.00204956 0.00130135 0)
(-0.00342839 0.00216835 0)
(-0.0054494 0.00343402 0)
(-0.00827616 0.00518342 0)
(-0.0120656 0.00747264 0)
(-0.0169547 0.0102961 0)
(-0.0230456 0.0135437 0)
(-0.0303864 0.0169535 0)
(-0.038937 0.0200743 0)
(-0.0485164 0.0222657 0)
(-0.0587302 0.0227638 0)
(-0.0689173 0.0208356 0)
(-0.078177 0.0159934 0)
(-0.085505 0.00818727 0)
(-0.0900219 -0.00212504 0)
(-0.0911955 -0.0140808 0)
(-0.088944 -0.0266344 0)
(-0.0836105 -0.0388007 0)
(-0.0758215 -0.0498242 0)
(-0.0663189 -0.0592452 0)
(-0.055822 -0.0668767 0)
(-0.0449534 -0.0727348 0)
(-0.0341867 -0.0769756 0)
(-0.0238619 -0.0798217 0)
(-0.0141939 -0.0815194 0)
(-0.00529607 -0.082308 0)
(-2.11225e-05 0.000137192 0)
(-0.000264734 0.000235493 0)
(-0.000582761 0.000435342 0)
(-0.00111543 0.000801157 0)
(-0.00197908 0.00140707 0)
(-0.00331086 0.00234481 0)
(-0.00526405 0.00371445 0)
(-0.0079992 0.00560969 0)
(-0.0116742 0.00809529 0)
(-0.0164347 0.0111738 0)
(-0.0224056 0.0147417 0)
(-0.0296771 0.0185387 0)
(-0.0382751 0.0221031 0)
(-0.0481037 0.024759 0)
(-0.0588539 0.0256662 0)
(-0.0699144 0.0239694 0)
(-0.0803567 0.0190321 0)
(-0.0890524 0.0106781 0)
(-0.0949238 -0.000683822 0)
(-0.0972258 -0.0141302 0)
(-0.0957174 -0.0284703 0)
(-0.0906696 -0.0425305 0)
(-0.0827242 -0.0553814 0)
(-0.0726969 -0.0664357 0)
(-0.061407 -0.0754335 0)
(-0.0495783 -0.082365 0)
(-0.0377717 -0.0873956 0)
(-0.0263952 -0.0907775 0)
(-0.0157116 -0.092797 0)
(-0.00586422 -0.0937356 0)
(-2.03807e-05 0.000148029 0)
(-0.000254703 0.000252535 0)
(-0.000560487 0.00046683 0)
(-0.00107266 0.000859123 0)
(-0.00190318 0.00150896 0)
(-0.00318425 0.00251493 0)
(-0.00506424 0.00398506 0)
(-0.00770014 0.00602171 0)
(-0.0112502 0.00869896 0)
(-0.0158683 0.0120293 0)
(-0.0217012 0.0159193 0)
(-0.0288821 0.020117 0)
(-0.0375056 0.0241594 0)
(-0.0475699 0.0273453 0)
(-0.0588687 0.0287642 0)
(-0.0708636 0.0274311 0)
(-0.0826192 0.0225344 0)
(-0.0928855 0.0137291 0)
(-0.100362 0.00133407 0)
(-0.104047 -0.0136928 0)
(-0.10349 -0.0300032 0)
(-0.0988567 -0.0462072 0)
(-0.0907936 -0.0611622 0)
(-0.0801972 -0.0741194 0)
(-0.0680035 -0.0847229 0)
(-0.0550584 -0.0929237 0)
(-0.0420291 -0.0988927 0)
(-0.0294083 -0.102913 0)
(-0.0175182 -0.105317 0)
(-0.00654098 -0.106435 0)
(-1.95814e-05 0.000158463 0)
(-0.000243987 0.000268886 0)
(-0.000536689 0.00049704 0)
(-0.00102696 0.00091474 0)
(-0.00182207 0.00160674 0)
(-0.0030489 0.00267826 0)
(-0.00485045 0.00424509 0)
(-0.00737964 0.00641829 0)
(-0.0107943 0.00928186 0)
(-0.0152557 0.0128599 0)
(-0.0209316 0.0170729 0)
(-0.0279971 0.0216834 0)
(-0.0366178 0.0262379 0)
(-0.0468938 0.0300221 0)
(-0.0587399 0.0320649 0)
(-0.0717192 0.0312479 0)
(-0.084918 0.0265579 0)
(-0.096976 0.017432 0)
(-0.106349 0.00404362 0)
(-0.111724 -0.0126477 0)
(-0.112382 -0.0311339 0)
(-0.108336 -0.0497744 0)
(-0.100219 -0.0671653 0)
(-0.0890155 -0.0823531 0)
(-0.075797 -0.0948557 0)
(-0.0615561 -0.104568 0)
(-0.0470901 -0.11166 0)
(-0.0329961 -0.116448 0)
(-0.0196719 -0.119315 0)
(-0.0073478 -0.120649 0)
(-1.87254e-05 0.000168467 0)
(-0.000232618 0.000284504 0)
(-0.000511433 0.000525888 0)
(-0.000978458 0.000967853 0)
(-0.00173598 0.00170013 0)
(-0.00290516 0.00283434 0)
(-0.00462324 0.00449379 0)
(-0.00703845 0.00679828 0)
(-0.0103074 0.00984219 0)
(-0.0145976 0.0136629 0)
(-0.0200958 0.0181981 0)
(-0.027018 0.0232321 0)
(-0.0356007 0.0283312 0)
(-0.0460529 0.0327834 0)
(-0.058429 0.035571 0)
(-0.0724268 0.0354439 0)
(-0.0871937 0.0311621 0)
(-0.101282 0.0218898 0)
(-0.112887 0.00758446 0)
(-0.120325 -0.010843 0)
(-0.122532 -0.0317337 0)
(-0.119303 -0.0531533 0)
(-0.11123 -0.0733776 0)
(-0.0993903 -0.0911943 0)
(-0.0850156 -0.105956 0)
(-0.0692732 -0.117481 0)
(-0.0531188 -0.125928 0)
(-0.0372785 -0.131645 0)
(-0.0222455 -0.135074 0)
(-0.00831245 -0.13667 0)
(-1.78137e-05 0.000178013 0)
(-0.000220627 0.000299344 0)
(-0.000484788 0.000553295 0)
(-0.000927284 0.00101832 0)
(-0.00164512 0.00178889 0)
(-0.00275343 0.00298273 0)
(-0.00438318 0.00473046 0)
(-0.00667735 0.00716055 0)
(-0.00979044 0.0103782 0)
(-0.0138945 0.0144353 0)
(-0.0191935 0.0192906 0)
(-0.0259411 0.0247562 0)
(-0.0344439 0.0304301 0)
(-0.045024 0.03562 0)
(-0.0578937 0.0392805 0)
(-0.0729235 0.0400386 0)
(-0.0893719 0.0364076 0)
(-0.105743 0.0272172 0)
(-0.119966 0.012121 0)
(-0.129922 -0.00809498 0)
(-0.134097 -0.0316367 0)
(-0.131988 -0.0562355 0)
(-0.124102 -0.0797708 0)
(-0.111614 -0.100701 0)
(-0.0959417 -0.118166 0)
(-0.0784619 -0.131875 0)
(-0.060322 -0.141967 0)
(-0.0424078 -0.14882 0)
(-0.0253325 -0.152939 0)
(-0.00946998 -0.154858 0)
(-1.68463e-05 0.000187072 0)
(-0.000208046 0.000313365 0)
(-0.000456826 0.000579187 0)
(-0.000873576 0.00106599 0)
(-0.00154975 0.00187276 0)
(-0.00259409 0.00312304 0)
(-0.00413088 0.00495444 0)
(-0.00629719 0.00750402 0)
(-0.00924438 0.0108881 0)
(-0.0131474 0.0151744 0)
(-0.0182244 0.0203455 0)
(-0.0247633 0.0262481 0)
(-0.0331372 0.0325234 0)
(-0.0437832 0.0385182 0)
(-0.0570882 0.0431848 0)
(-0.0731364 0.0450452 0)
(-0.0913604 0.0423532 0)
(-0.110275 0.0335407 0)
(-0.127557 0.0178478 0)
(-0.14058 -0.00417084 0)
(-0.147259 -0.0306292 0)
(-0.146667 -0.0588745 0)
(-0.139171 -0.086295 0)
(-0.126044 -0.110928 0)
(-0.108924 -0.13164 0)
(-0.0894379 -0.147999 0)
(-0.0689627 -0.160104 0)
(-0.0485796 -0.168358 0)
(-0.0290539 -0.173332 0)
(-0.0108664 -0.175652 0)
(-1.58229e-05 0.000195616 0)
(-0.000194912 0.000326528 0)
(-0.000427625 0.000603491 0)
(-0.000817484 0.00111075 0)
(-0.00145013 0.00195152 0)
(-0.00242759 0.00325484 0)
(-0.00386702 0.00516506 0)
(-0.00589894 0.0078276 0)
(-0.00867044 0.01137 0)
(-0.0123574 0.0158771 0)
(-0.0171891 0.0213576 0)
(-0.0234824 0.0276988 0)
(-0.0316717 0.0345972 0)
(-0.0423073 0.0414595 0)
(-0.055964 0.0472674 0)
(-0.0729826 0.0504668 0)
(-0.0930456 0.0490523 0)
(-0.114765 0.040996 0)
(-0.135599 0.0249933 0)
(-0.15236 0.00121729 0)
(-0.162219 -0.0284338 0)
(-0.163667 -0.0608726 0)
(-0.156841 -0.0928708 0)
(-0.143115 -0.121924 0)
(-0.124393 -0.14655 0)
(-0.102597 -0.166139 0)
(-0.0793763 -0.180725 0)
(-0.0560481 -0.190723 0)
(-0.0335694 -0.196772 0)
(-0.0125623 -0.199599 0)
(-1.47423e-05 0.000203619 0)
(-0.00018126 0.000338799 0)
(-0.000397262 0.000626141 0)
(-0.000759159 0.00115247 0)
(-0.00134652 0.00202494 0)
(-0.00225436 0.00337777 0)
(-0.00359226 0.00536171 0)
(-0.00548356 0.00813029 0)
(-0.00806992 0.0118224 0)
(-0.0115261 0.0165404 0)
(-0.0160884 0.0223217 0)
(-0.0220971 0.0290992 0)
(-0.0300396 0.0366359 0)
(-0.0405741 0.0444212 0)
(-0.0544706 0.051503 0)
(-0.0723691 0.0562951 0)
(-0.09429 0.0565497 0)
(-0.119058 0.0497272 0)
(-0.143996 0.0338252 0)
(-0.1653 0.00842621 0)
(-0.179205 -0.0246894 0)
(-0.183381 -0.0619665 0)
(-0.177603 -0.0993834 0)
(-0.163359 -0.133729 0)
(-0.142879 -0.163085 0)
(-0.118439 -0.186622 0)
(-0.092 -0.204289 0)
(-0.0651535 -0.216488 0)
(-0.0390962 -0.223913 0)
(-0.0146413 -0.227395 0)
(-1.3602e-05 0.000211055 0)
(-0.000167128 0.000350141 0)
(-0.000365822 0.000647074 0)
(-0.00069876 0.00119103 0)
(-0.00123921 0.00209282 0)
(-0.00207486 0.0034915 0)
(-0.00330735 0.00554382 0)
(-0.00505213 0.00841111 0)
(-0.00744426 0.0122435 0)
(-0.010655 0.0171613 0)
(-0.0149238 0.0232322 0)
(-0.020607 0.030439 0)
(-0.0282353 0.0386217 0)
(-0.0385632 0.0473748 0)
(-0.0525571 0.0558559 0)
(-0.0711939 0.0625051 0)
(-0.0949291 0.0648739 0)
(-0.122952 0.0598791 0)
(-0.152588 0.0446524 0)
(-0.179407 0.0179067 0)
(-0.19847 -0.0189274 0)
(-0.206283 -0.0618084 0)
(-0.202056 -0.105673 0)
(-0.187414 -0.146369 0)
(-0.165027 -0.181438 0)
(-0.137592 -0.209809 0)
(-0.107406 -0.23133 0)
(-0.0763616 -0.246352 0)
(-0.0459453 -0.255581 0)
(-0.017227 -0.259938 0)
(-1.23979e-05 0.000217894 0)
(-0.000152556 0.000360526 0)
(-0.000333393 0.000666234 0)
(-0.000636455 0.00122632 0)
(-0.00112849 0.00215498 0)
(-0.00188961 0.00359567 0)
(-0.00301306 0.00571081 0)
(-0.00460581 0.00866911 0)
(-0.00679507 0.0126317 0)
(-0.00974631 0.0177369 0)
(-0.0136975 0.0240835 0)
(-0.0190134 0.0317075 0)
(-0.0262552 0.0405348 0)
(-0.0362579 0.0502867 0)
(-0.0501742 0.0602782 0)
(-0.0693476 0.0690514 0)
(-0.0947699 0.074029 0)
(-0.126184 0.0715884 0)
(-0.161136 0.0578261 0)
(-0.194632 0.030219 0)
(-0.220294 -0.010531 0)
(-0.232957 -0.0599344 0)
(-0.230927 -0.111533 0)
(-0.216047 -0.159857 0)
(-0.191609 -0.201801 0)
(-0.160836 -0.236073 0)
(-0.126356 -0.262448 0)
(-0.090331 -0.281154 0)
(-0.0545899 -0.292832 0)
(-0.0205214 -0.298437 0)
(-1.11231e-05 0.00022411 0)
(-0.000137585 0.000369925 0)
(-0.000300062 0.000683569 0)
(-0.000572411 0.00125826 0)
(-0.00101467 0.00221123 0)
(-0.00169908 0.00369001 0)
(-0.00271019 0.0058622 0)
(-0.00414579 0.00890345 0)
(-0.00612408 0.0129854 0)
(-0.00880229 0.0182641 0)
(-0.0124123 0.0248699 0)
(-0.0173186 0.0328938 0)
(-0.0240986 0.0423542 0)
(-0.0336455 0.0531185 0)
(-0.0472761 0.0647095 0)
(-0.0667163 0.0758646 0)
(-0.0935908 0.0839849 0)
(-0.128419 0.0849698 0)
(-0.169288 0.0737358 0)
(-0.210833 0.0460661 0)
(-0.244986 0.00134059 0)
(-0.26414 -0.0557293 0)
(-0.265113 -0.116722 0)
(-0.250153 -0.174207 0)
(-0.22351 -0.224361 0)
(-0.189122 -0.265742 0)
(-0.149894 -0.298269 0)
(-0.108007 -0.321886 0)
(-0.0658297 -0.337002 0)
(-0.0249413 -0.344618 0)
(-9.76785e-06 0.000229675 0)
(-0.000122254 0.000378311 0)
(-0.00026592 0.000699032 0)
(-0.000506804 0.00128675 0)
(-0.000898046 0.00226142 0)
(-0.00150381 0.00377423 0)
(-0.00239955 0.00599751 0)
(-0.00367332 0.00911332 0)
(-0.00543311 0.0133032 0)
(-0.00782555 0.0187404 0)
(-0.0110716 0.0255859 0)
(-0.0155265 0.0339867 0)
(-0.0217678 0.0440576 0)
(-0.0307194 0.0558273 0)
(-0.0438242 0.0690756 0)
(-0.0631863 0.0828466 0)
(-0.0911443 0.0946637 0)
(-0.129234 0.100094 0)
(-0.176537 0.0927948 0)
(-0.227711 0.066325 0)
(-0.272861 0.0178299 0)
(-0.300816 -0.048384 0)
(-0.305735 -0.121003 0)
(-0.290752 -0.18945 0)
(-0.261681 -0.249327 0)
(-0.223486 -0.298954 0)
(-0.179581 -0.339301 0)
(-0.130508 -0.369735 0)
(-0.0811666 -0.3894 0)
(-0.0316929 -0.40129 0)
(-8.31889e-06 0.00023456 0)
(-0.00010661 0.000385659 0)
(-0.000231064 0.000712579 0)
(-0.000439817 0.00131171 0)
(-0.000778955 0.00230541 0)
(-0.00130433 0.00384809 0)
(-0.00208203 0.00611633 0)
(-0.00318977 0.00929797 0)
(-0.00472422 0.0135837 0)
(-0.0068191 0.0191629 0)
(-0.00967977 0.0262262 0)
(-0.013643 0.0349751 0)
(-0.0192691 0.045622 0)
(-0.0274805 0.0583661 0)
(-0.0397906 0.0732883 0)
(-0.0586511 0.0898665 0)
(-0.0871651 0.105924 0)
(-0.128117 0.116952 0)
(-0.18217 0.115406 0)
(-0.244707 0.0920703 0)
(-0.304164 0.0405442 0)
(-0.344393 -0.0367254 0)
(-0.354196 -0.124308 0)
(-0.338912 -0.205598 0)
(-0.307034 -0.277215 0)
(-0.264081 -0.335453 0)
(-0.216523 -0.384745 0)
(-0.154688 -0.427793 0)
(-0.0989818 -0.448765 0)
(-0.0422735 -0.474171 0)
(-6.75757e-06 0.000238734 0)
(-9.06922e-05 0.000391947 0)
(-0.000195588 0.000724171 0)
(-0.000371628 0.00133308 0)
(-0.000657712 0.00234307 0)
(-0.00110119 0.00391138 0)
(-0.00175847 0.00621828 0)
(-0.00269648 0.00945677 0)
(-0.00399946 0.0138258 0)
(-0.00578608 0.0195294 0)
(-0.00824157 0.0267858 0)
(-0.0116751 0.0358484 0)
(-0.0166118 0.0470248 0)
(-0.0239378 0.0606863 0)
(-0.0351618 0.0772463 0)
(-0.053018 0.0967606 0)
(-0.0813831 0.117544 0)
(-0.124457 0.135418 0)
(-0.185212 0.141906 0)
(-0.260849 0.124578 0)
(-0.338944 0.0718407 0)
(-0.397079 -0.0189533 0)
(-0.412266 -0.127377 0)
(-0.395195 -0.22222 0)
(-0.358213 -0.311448 0)
(-0.291051 -0.380185 0)
(-0.191478 -0.43935 0)
(-0.107475 -0.51763 0)
(-0.0461858 -0.504126 0)
(-0.0216588 -0.542225 0)
(-5.05897e-06 0.000242163 0)
(-7.45451e-05 0.000397156 0)
(-0.00015959 0.000733778 0)
(-0.000302424 0.00135079 0)
(-0.000534649 0.0023743 0)
(-0.000894949 0.00396389 0)
(-0.0014298 0.00630302 0)
(-0.00219488 0.00958911 0)
(-0.00326108 0.0140282 0)
(-0.00473002 0.0198377 0)
(-0.00676256 0.0272601 0)
(-0.00963156 0.0365966 0)
(-0.0138096 0.048244 0)
(-0.0201109 0.0627388 0)
(-0.0299442 0.0808355 0)
(-0.046218 0.103333 0)
(-0.0735488 0.129209 0)
(-0.117563 0.155192 0)
(-0.184368 0.172462 0)
(-0.27454 0.165249 0)
(-0.376539 0.11511 0)
(-0.462721 0.00835446 0)
(-0.482379 -0.133923 0)
(-0.451011 -0.240072 0)
(-0.377991 -0.381965 0)
(-0.23024 -0.457026 0)
(-0.151356 -0.600901 0)
(-0.111238 -0.508514 0)
(-0.0521323 -0.519431 0)
(-0.010743 -0.555915 0)
(-3.19272e-06 0.000244814 0)
(-5.82128e-05 0.000401269 0)
(-0.00012317 0.000741373 0)
(-0.000232398 0.00136479 0)
(-0.000410109 0.00239899 0)
(-0.000686177 0.00400547 0)
(-0.00109695 0.00637027 0)
(-0.00168645 0.00969452 0)
(-0.00251142 0.0141902 0)
(-0.00365469 0.0200858 0)
(-0.005249 0.027645 0)
(-0.0075229 0.0372107 0)
(-0.0108799 0.0492592 0)
(-0.0160297 0.0644773 0)
(-0.0241703 0.0839311 0)
(-0.0382115 0.10936 0)
(-0.0634712 0.140486 0)
(-0.106693 0.175737 0)
(-0.177992 0.206914 0)
(-0.283395 0.215527 0)
(-0.414815 0.174309 0)
(-0.548055 0.0508422 0)
(-0.576483 -0.155123 0)
(-0.505414 -0.29139 0)
(-0.423938 -0.44602 0)
(-0.361516 -0.525136 0)
(-0.266145 -0.623462 0)
(-0.187047 -0.624892 0)
(-0.107999 -0.628201 0)
(-0.0388266 -0.631498 0)
(-1.12259e-06 0.000246651 0)
(-4.17388e-05 0.000404271 0)
(-8.64273e-05 0.000746933 0)
(-0.000161738 0.00137505 0)
(-0.000284428 0.00241707 0)
(-0.000475444 0.00403596 0)
(-0.000760842 0.0064198 0)
(-0.00117269 0.00977256 0)
(-0.00175288 0.0143109 0)
(-0.00256402 0.0202722 0)
(-0.00370755 0.027937 0)
(-0.00536078 0.0376826 0)
(-0.00784337 0.0500523 0)
(-0.0117341 0.0658612 0)
(-0.0179065 0.0863997 0)
(-0.0289822 0.114603 0)
(-0.0510806 0.150796 0)
(-0.0911166 0.196174 0)
(-0.164224 0.244415 0)
(-0.291512 0.278834 0)
(-0.453291 0.243425 0)
(-0.700476 0.0465576 0)
(-0.814707 -0.121196 0)
(-0.723338 -0.427288 0)
(-0.525499 -0.53567 0)
(-0.394815 -0.60751 0)
(-0.284285 -0.686228 0)
(-0.189806 -0.720665 0)
(-0.115821 -0.715855 0)
(-0.0419594 -0.715157 0)
(1.1947e-06 0.00024764 0)
(-2.51653e-05 0.00040611 0)
(-4.94607e-05 0.000750369 0)
(-9.06334e-05 0.00138138 0)
(-0.000157939 0.0024282 0)
(-0.00026331 0.00405474 0)
(-0.000422409 0.00645042 0)
(-0.000655099 0.00982095 0)
(-0.000987869 0.0143857 0)
(-0.00146205 0.020388 0)
(-0.0021452 0.0281183 0)
(-0.00315768 0.0379774 0)
(-0.00472298 0.0505539 0)
(-0.00727007 0.0667619 0)
(-0.011263 0.0879317 0)
(-0.0184921 0.11852 0)
(-0.0365958 0.158909 0)
(-0.0713578 0.214907 0)
(-0.143895 0.282809 0)
(-0.305154 0.351384 0)
(-0.497441 0.35696 0)
(-0.63577 0.197599 0)
(-1.11797 0.0437983 0)
(-0.913355 -0.544292 0)
(-0.594999 -0.70791 0)
(-0.446453 -0.775735 0)
(-0.319639 -0.78544 0)
(-0.21372 -0.799623 0)
(-0.120806 -0.801007 0)
(-0.0430781 -0.802655 0)
(3.05936e-06 0.00024756 0)
(-1.83891e-05 0.000333591 0)
(-2.47578e-05 0.000618355 0)
(-3.47865e-05 0.00114498 0)
(-4.93406e-05 0.00203053 0)
(-7.18231e-05 0.00343399 0)
(-0.000106869 0.00555777 0)
(-0.000161575 0.00864993 0)
(-0.000245668 0.0130068 0)
(-0.000372386 0.0189596 0)
(-0.000570226 0.0268653 0)
(-0.000892471 0.0371438 0)
(-0.00145371 0.0502938 0)
(-0.00252469 0.0670769 0)
(-0.00421174 0.0886895 0)
(-0.00475013 0.121559 0)
(-0.0178356 0.165416 0)
(-0.0628008 0.234501 0)
(-0.12705 0.322346 0)
(-0.245094 0.430597 0)
(-0.491753 0.46203 0)
(-0.631238 0.326624 0)
(-0.701298 -0.259735 0)
(-0.352321 -0.499404 0)
(-0.456199 -0.741676 0)
(-0.556921 -0.86047 0)
(-0.480714 -0.913132 0)
(-0.406234 -0.918717 0)
(-0.277752 -0.899997 0)
(-0.113591 -0.896376 0)
(0.00177317 -0.00492684 0)
(0.00676296 -0.00489898 0)
(0.0122427 -0.00483006 0)
(0.018201 -0.00470904 0)
(0.0245963 -0.00452282 0)
(0.0313411 -0.00425833 0)
(0.0382957 -0.00390336 0)
(0.045241 -0.00344971 0)
(0.0518856 -0.00289586 0)
(0.0578553 -0.00225124 0)
(0.0627174 -0.00153938 0)
(0.066021 -0.000799915 0)
(0.0673649 -8.66084e-05 0)
(0.0664849 0.000540369 0)
(0.0633344 0.00102615 0)
(0.0581327 0.00133528 0)
(0.0513489 0.00146129 0)
(0.0436232 0.00142765 0)
(0.035639 0.00127907 0)
(0.0280029 0.00106717 0)
(0.021161 0.000837535 0)
(0.0153714 0.000622468 0)
(0.0107193 0.000439838 0)
(0.00716068 0.000295971 0)
(0.00456738 0.000189571 0)
(0.00276947 0.00011537 0)
(0.00158594 6.65867e-05 0)
(0.000846458 3.65569e-05 0)
(0.000403023 1.96242e-05 0)
(0.000130989 1.17188e-05 0)
(0.00179696 -0.0111983 0)
(0.00685413 -0.0111346 0)
(0.0124069 -0.0109778 0)
(0.0184425 -0.0107019 0)
(0.0249175 -0.0102775 0)
(0.0317411 -0.00967444 0)
(0.0387686 -0.008865 0)
(0.0457748 -0.00783069 0)
(0.0524612 -0.00656782 0)
(0.0584461 -0.00509816 0)
(0.063291 -0.00347595 0)
(0.0665425 -0.00179219 0)
(0.0678023 -0.000170313 0)
(0.0668158 0.00125239 0)
(0.0635513 0.0023506 0)
(0.0582441 0.00304488 0)
(0.0513769 0.00332252 0)
(0.0435961 0.00323888 0)
(0.0355839 0.0028968 0)
(0.0279406 0.00241369 0)
(0.0211041 0.00189247 0)
(0.0153256 0.00140554 0)
(0.0106855 0.000992708 0)
(0.00713739 0.000667801 0)
(0.0045523 0.000427653 0)
(0.00276026 0.000260236 0)
(0.00158066 0.000150189 0)
(0.000843641 8.24527e-05 0)
(0.000401689 4.42616e-05 0)
(0.000130558 2.64322e-05 0)
(0.00183959 -0.0175852 0)
(0.00701572 -0.0174841 0)
(0.0126978 -0.0172361 0)
(0.0188708 -0.016799 0)
(0.025487 -0.0161269 0)
(0.0324496 -0.0151724 0)
(0.0396054 -0.0138918 0)
(0.046718 -0.0122564 0)
(0.0534757 -0.0102617 0)
(0.059484 -0.00794324 0)
(0.0642939 -0.00538857 0)
(0.0674481 -0.00274289 0)
(0.0685545 -0.00020187 0)
(0.0673759 0.00201829 0)
(0.0639077 0.0037229 0)
(0.0584146 0.00479095 0)
(0.0514024 0.00520712 0)
(0.0435279 0.00506199 0)
(0.0354706 0.00451829 0)
(0.0278185 0.00375944 0)
(0.0209949 0.00294477 0)
(0.0152385 0.00218575 0)
(0.0106216 0.00154318 0)
(0.00709353 0.00103788 0)
(0.00452395 0.00066457 0)
(0.00274297 0.000404378 0)
(0.00157074 0.000233371 0)
(0.000838354 0.000128116 0)
(0.000399185 6.87752e-05 0)
(0.00012975 4.10731e-05 0)
(0.0019018 -0.0241559 0)
(0.00725269 -0.0240153 0)
(0.0131245 -0.02367 0)
(0.0194987 -0.0230622 0)
(0.0263216 -0.0221274 0)
(0.0334873 -0.0208004 0)
(0.0408299 -0.0190218 0)
(0.0480964 -0.016753 0)
(0.0549563 -0.0139899 0)
(0.0609959 -0.0107848 0)
(0.0657512 -0.00726251 0)
(0.0687598 -0.00362707 0)
(0.0696393 -0.000150535 0)
(0.0681793 0.00286964 0)
(0.0644147 0.00517069 0)
(0.0586532 0.00659428 0)
(0.0514332 0.00712831 0)
(0.043426 0.00690369 0)
(0.0353056 0.00614577 0)
(0.0276421 0.00510411 0)
(0.0208378 0.00399315 0)
(0.0151134 0.00296162 0)
(0.0105299 0.00209001 0)
(0.00703069 0.0014053 0)
(0.00448334 0.000899721 0)
(0.00271821 0.000547425 0)
(0.00155653 0.000315916 0)
(0.000830783 0.000173429 0)
(0.000395597 9.31008e-05 0)
(0.000128593 5.56037e-05 0)
(0.00198531 -0.0309825 0)
(0.00757072 -0.0307991 0)
(0.0136969 -0.0303487 0)
(0.0203403 -0.0295558 0)
(0.0274397 -0.0283371 0)
(0.0348763 -0.0266086 0)
(0.0424672 -0.0242941 0)
(0.0499367 -0.0213463 0)
(0.056929 -0.0177636 0)
(0.0630048 -0.0136192 0)
(0.0676808 -0.00908049 0)
(0.0704888 -0.00441728 0)
(0.0710609 1.6373e-05 0)
(0.069224 0.00383921 0)
(0.0650668 0.00672204 0)
(0.0589531 0.00847547 0)
(0.0514636 0.00909879 0)
(0.0432862 0.00877011 0)
(0.0350865 0.00778096 0)
(0.0274105 0.0064471 0)
(0.0206325 0.00503608 0)
(0.0149505 0.00373158 0)
(0.0104107 0.0026319 0)
(0.006949 0.00176913 0)
(0.00443058 0.00113248 0)
(0.00268604 0.00068899 0)
(0.00153808 0.000397599 0)
(0.000820949 0.000218266 0)
(0.000390938 0.000117171 0)
(0.00012709 6.99842e-05 0)
(0.00209205 -0.0381428 0)
(0.00797717 -0.0379124 0)
(0.0144282 -0.0373462 0)
(0.0214154 -0.0363496 0)
(0.0288667 -0.0348188 0)
(0.0366473 -0.0326497 0)
(0.0445515 -0.0297493 0)
(0.0522748 -0.0260624 0)
(0.0594286 -0.0215928 0)
(0.0655414 -0.01644 0)
(0.0701063 -0.0108219 0)
(0.0726496 -0.00508251 0)
(0.0728244 0.000334779 0)
(0.0705073 0.00496177 0)
(0.0658562 0.00840588 0)
(0.0593053 0.0104551 0)
(0.0514855 0.0111307 0)
(0.043103 0.0106668 0)
(0.0348103 0.00942517 0)
(0.0271222 0.00778753 0)
(0.0203787 0.00607194 0)
(0.0147498 0.00449399 0)
(0.0102641 0.00316754 0)
(0.00684864 0.00212841 0)
(0.00436579 0.00136222 0)
(0.00264655 0.000828686 0)
(0.00151544 0.000478196 0)
(0.000808879 0.000262505 0)
(0.000385219 0.00014092 0)
(0.000125245 8.41758e-05 0)
(0.0022247 -0.0457235 0)
(0.00848197 -0.0454401 0)
(0.015336 -0.0447441 0)
(0.0227491 -0.0435198 0)
(0.0306356 -0.0416406 0)
(0.0388397 -0.0389808 0)
(0.0471271 -0.0354304 0)
(0.0551571 -0.0309275 0)
(0.0624999 -0.0254856 0)
(0.0686449 -0.0192376 0)
(0.0730575 -0.0124617 0)
(0.0752599 -0.00558706 0)
(0.0749353 0.000844381 0)
(0.0720247 0.00627465 0)
(0.0667726 0.0102521 0)
(0.059698 0.0125535 0)
(0.0514893 0.0132356 0)
(0.0428699 0.0125987 0)
(0.0344735 0.0110792 0)
(0.0267759 0.00912428 0)
(0.020076 0.00709898 0)
(0.0145114 0.0052472 0)
(0.0100904 0.00369561 0)
(0.00672985 0.00248221 0)
(0.00428915 0.00158833 0)
(0.00259984 0.000966138 0)
(0.00148865 0.000557488 0)
(0.000794606 0.000306025 0)
(0.000378458 0.000164282 0)
(0.000123064 9.81401e-05 0)
(0.00238643 -0.0538205 0)
(0.00909755 -0.0534772 0)
(0.0164428 -0.052634 0)
(0.024374 -0.0511514 0)
(0.0327884 -0.0488778 0)
(0.0415039 -0.0456643 0)
(0.0502506 -0.0413832 0)
(0.0586422 -0.0359683 0)
(0.0661992 -0.029448 0)
(0.0723639 -0.0219978 0)
(0.0765705 -0.0139689 0)
(0.0783407 -0.00588936 0)
(0.0773993 0.00158996 0)
(0.0737696 0.00781824 0)
(0.0678028 0.012292 0)
(0.0601167 0.0147912 0)
(0.051463 0.0154244 0)
(0.0425791 0.0145699 0)
(0.0340718 0.0127435 0)
(0.0263698 0.010456 0)
(0.019724 0.00811538 0)
(0.0142355 0.00598953 0)
(0.00988977 0.00421481 0)
(0.00659289 0.00282962 0)
(0.00420084 0.0018102 0)
(0.00254604 0.00110097 0)
(0.00145781 0.00063526 0)
(0.000778168 0.000348709 0)
(0.000370671 0.000187195 0)
(0.000120553 0.000111841 0)
(0.00258146 -0.0625434 0)
(0.00983985 -0.0621311 0)
(0.0177765 -0.0611186 0)
(0.0263307 -0.0593396 0)
(0.0353779 -0.0566144 0)
(0.0447029 -0.0527687 0)
(0.0539917 -0.0476567 0)
(0.0628024 -0.041211 0)
(0.0705952 -0.0334822 0)
(0.0767571 -0.0247 0)
(0.0806882 -0.0153049 0)
(0.0819155 -0.00594025 0)
(0.0802208 0.00262212 0)
(0.0757325 0.00963642 0)
(0.0689298 0.0145576 0)
(0.060544 0.0171878 0)
(0.0513926 0.0177066 0)
(0.0422215 0.0165834 0)
(0.0336006 0.0144174 0)
(0.0259021 0.0117807 0)
(0.0193225 0.00911908 0)
(0.0139224 0.00671922 0)
(0.00966272 0.00472379 0)
(0.00643808 0.0031697 0)
(0.00410109 0.00202724 0)
(0.00248529 0.00123282 0)
(0.00142299 0.000711296 0)
(0.000759612 0.000390438 0)
(0.000361882 0.000209597 0)
(0.000117719 0.00012524 0)
(0.00281506 -0.0720184 0)
(0.0107285 -0.0715258 0)
(0.0193728 -0.0703167 0)
(0.0286705 -0.0681937 0)
(0.0384698 -0.0649455 0)
(0.0485149 -0.0603701 0)
(0.058437 -0.0543037 0)
(0.0677266 -0.0466818 0)
(0.0757717 -0.0375861 0)
(0.0818949 -0.0273164 0)
(0.0854607 -0.0164218 0)
(0.0860099 -0.00568141 0)
(0.0834035 0.00399846 0)
(0.0779002 0.0117771 0)
(0.0701327 0.0170824 0)
(0.0609589 0.0197626 0)
(0.0512622 0.0200907 0)
(0.0417872 0.0186413 0)
(0.0330548 0.0160999 0)
(0.0253708 0.0130965 0)
(0.0188709 0.0101079 0)
(0.0135722 0.0074345 0)
(0.0094096 0.00522126 0)
(0.00626577 0.00350156 0)
(0.00399014 0.00223885 0)
(0.00241775 0.00136133 0)
(0.00138428 0.000785392 0)
(0.000738986 0.0004311 0)
(0.000352114 0.000231426 0)
(0.00011457 0.000138303 0)
(0.0030937 -0.0823917 0)
(0.0117883 -0.0818048 0)
(0.0212753 -0.080365 0)
(0.0314564 -0.0778389 0)
(0.0421455 -0.0739794 0)
(0.0530361 -0.0685538 0)
(0.0636924 -0.0613813 0)
(0.0735229 -0.0524054 0)
(0.0818293 -0.0417514 0)
(0.0878606 -0.0298085 0)
(0.0909452 -0.0172593 0)
(0.0906522 -0.0050435 0)
(0.0869473 0.00578521 0)
(0.0802541 0.0142926 0)
(0.0713852 0.0199009 0)
(0.0613366 0.0225335 0)
(0.0510534 0.0225834 0)
(0.041265 0.0207438 0)
(0.0324289 0.0177889 0)
(0.0247738 0.0144005 0)
(0.0183691 0.0110796 0)
(0.0131853 0.00813352 0)
(0.00913089 0.00570589 0)
(0.00607637 0.00382429 0)
(0.0038683 0.00244447 0)
(0.0023436 0.00148614 0)
(0.00134178 0.000857344 0)
(0.000716348 0.000470583 0)
(0.000341394 0.000252622 0)
(0.000111115 0.000150995 0)
(0.00342558 -0.0938352 0)
(0.0130502 -0.0931366 0)
(0.023539 -0.0914236 0)
(0.0347671 -0.0884209 0)
(0.0465058 -0.0838402 0)
(0.0583854 -0.0774159 0)
(0.0698879 -0.0689507 0)
(0.0803226 -0.0584044 0)
(0.0888889 -0.0459612 0)
(0.0947519 -0.0321249 0)
(0.0972068 -0.0177424 0)
(0.0958698 -0.00394192 0)
(0.0908482 0.00805808 0)
(0.0827693 0.0172398 0)
(0.0726549 0.0230477 0)
(0.0616484 0.025517 0)
(0.0507459 0.0251892 0)
(0.0406433 0.0228899 0)
(0.0317174 0.0194813 0)
(0.0241094 0.0156897 0)
(0.0178168 0.0120314 0)
(0.0127623 0.0088144 0)
(0.00882716 0.00617635 0)
(0.00587033 0.00413702 0)
(0.00373587 0.00264352 0)
(0.00226304 0.0016069 0)
(0.00129563 0.000926952 0)
(0.000691759 0.000508777 0)
(0.000329751 0.000273129 0)
(0.000107364 0.000163282 0)
(0.00382082 -0.106553 0)
(0.0145524 -0.105721 0)
(0.0262319 -0.103682 0)
(0.0387006 -0.100111 0)
(0.0516755 -0.0946725 0)
(0.0647092 -0.0870655 0)
(0.0771826 -0.0770788 0)
(0.088285 -0.0646982 0)
(0.0970952 -0.0501879 0)
(0.102684 -0.0341974 0)
(0.104318 -0.0177766 0)
(0.101691 -0.00227711 0)
(0.0950955 0.0109042 0)
(0.0854122 0.0206807 0)
(0.0739028 0.0265579 0)
(0.061861 0.0287273 0)
(0.0503172 0.0279104 0)
(0.0399092 0.0250767 0)
(0.0309146 0.0211731 0)
(0.0233755 0.0169605 0)
(0.017214 0.0129608 0)
(0.0123035 0.00947522 0)
(0.00849899 0.00663134 0)
(0.00564813 0.00443888 0)
(0.0035932 0.00283547 0)
(0.00217628 0.00172331 0)
(0.00124593 0.000994027 0)
(0.000665286 0.000545579 0)
(0.000317217 0.000292887 0)
(0.000103328 0.000175131 0)
(0.0042924 -0.12079 0)
(0.0163437 -0.119797 0)
(0.0294399 -0.117364 0)
(0.0433788 -0.113109 0)
(0.0578097 -0.106644 0)
(0.0721879 -0.0976265 0)
(0.0857708 -0.0858366 0)
(0.0976031 -0.0713005 0)
(0.106621 -0.0543885 0)
(0.11179 -0.0359361 0)
(0.11236 -0.0172447 0)
(0.10814 7.11769e-05 0)
(0.0996689 0.0144233 0)
(0.0881388 0.0246817 0)
(0.0750812 0.0304656 0)
(0.0619365 0.0321755 0)
(0.0497426 0.0307459 0)
(0.0390499 0.027299 0)
(0.0300147 0.022859 0)
(0.0225707 0.0182088 0)
(0.0165608 0.0138649 0)
(0.0118098 0.010114 0)
(0.00814709 0.00706956 0)
(0.00541033 0.00472903 0)
(0.00344064 0.00301978 0)
(0.00208356 0.00183502 0)
(0.00119283 0.00105839 0)
(0.000637001 0.000580887 0)
(0.000303825 0.000311844 0)
(9.90184e-05 0.000186512 0)
(0.00485662 -0.13684 0)
(0.0184849 -0.13565 0)
(0.0332705 -0.132739 0)
(0.0489549 -0.127656 0)
(0.0651011 -0.119949 0)
(0.081044 -0.109239 0)
(0.09589 -0.0952999 0)
(0.10851 -0.0782169 0)
(0.117672 -0.0585002 0)
(0.122224 -0.0372227 0)
(0.121418 -0.0159986 0)
(0.115234 0.00324746 0)
(0.104535 0.0187288 0)
(0.0908914 0.0293129 0)
(0.0761332 0.0348023 0)
(0.0618321 0.0358683 0)
(0.0489962 0.0336912 0)
(0.0380519 0.0295497 0)
(0.0290124 0.0245328 0)
(0.0216933 0.0194301 0)
(0.0158574 0.0147405 0)
(0.0112818 0.0107288 0)
(0.00777222 0.00748971 0)
(0.00515751 0.00500664 0)
(0.00327862 0.00319593 0)
(0.00198513 0.00194174 0)
(0.00113647 0.00111985 0)
(0.000606983 0.000614603 0)
(0.000289615 0.000329947 0)
(9.44489e-05 0.000197395 0)
(0.00553439 -0.155061 0)
(0.0210548 -0.153631 0)
(0.0378613 -0.150132 0)
(0.0556222 -0.144035 0)
(0.0737909 -0.134819 0)
(0.0915533 -0.122063 0)
(0.107832 -0.105548 0)
(0.121289 -0.0854412 0)
(0.130494 -0.0624341 0)
(0.134167 -0.0379032 0)
(0.131586 -0.0138524 0)
(0.122983 0.00742632 0)
(0.109643 0.0239498 0)
(0.0935964 0.0346479 0)
(0.0769913 0.0395962 0)
(0.0615001 0.0398075 0)
(0.0480502 0.0367378 0)
(0.0369022 0.0318191 0)
(0.0279028 0.0261869 0)
(0.0207426 0.0206194 0)
(0.0151044 0.0155845 0)
(0.0107205 0.0113175 0)
(0.00737522 0.00789054 0)
(0.00489031 0.00527092 0)
(0.00310755 0.00336344 0)
(0.00188125 0.00204316 0)
(0.00107701 0.00117825 0)
(0.000575313 0.000646637 0)
(0.000274623 0.000347146 0)
(8.96336e-05 0.000207753 0)
(0.00635319 -0.175897 0)
(0.024155 -0.174166 0)
(0.0433891 -0.169938 0)
(0.0636271 -0.162588 0)
(0.0841826 -0.151522 0)
(0.104058 -0.136281 0)
(0.121954 -0.116665 0)
(0.136285 -0.092951 0)
(0.145383 -0.0660668 0)
(0.147826 -0.0377762 0)
(0.14296 -0.0105744 0)
(0.131376 0.0128156 0)
(0.114918 0.030231 0)
(0.0961599 0.040761 0)
(0.0775762 0.0448695 0)
(0.0608879 0.043988 0)
(0.0468763 0.0398724 0)
(0.0355879 0.0340949 0)
(0.0266814 0.0278128 0)
(0.0197178 0.0217711 0)
(0.0143025 0.0163936 0)
(0.0101269 0.0118783 0)
(0.00695701 0.00827083 0)
(0.0046094 0.00552112 0)
(0.00292788 0.00352184 0)
(0.0017722 0.00213901 0)
(0.00101459 0.00123343 0)
(0.000542077 0.0006769 0)
(0.000258892 0.000363395 0)
(8.45872e-05 0.000217557 0)
(0.00734969 -0.199897 0)
(0.0279204 -0.197786 0)
(0.0500854 -0.192637 0)
(0.073286 -0.183722 0)
(0.0966576 -0.17037 0)
(0.118979 -0.152094 0)
(0.138691 -0.12873 0)
(0.153913 -0.100701 0)
(0.162691 -0.0692293 0)
(0.163437 -0.0365797 0)
(0.155633 -0.00587132 0)
(0.14038 0.0196644 0)
(0.120253 0.0377325 0)
(0.0984638 0.0477237 0)
(0.0777962 0.0506347 0)
(0.0599391 0.0483959 0)
(0.0454459 0.0430759 0)
(0.0340974 0.0363621 0)
(0.0253449 0.0294006 0)
(0.0186189 0.0228794 0)
(0.0134528 0.0171643 0)
(0.00950223 0.0124089 0)
(0.0065186 0.00862932 0)
(0.00431551 0.00575647 0)
(0.0027401 0.00367068 0)
(0.00165828 0.00222902 0)
(0.00094941 0.00128523 0)
(0.000507369 0.000705309 0)
(0.000242464 0.000378647 0)
(7.93262e-05 0.000226785 0)
(0.0085745 -0.227761 0)
(0.032536 -0.225156 0)
(0.058262 -0.218825 0)
(0.0850137 -0.207926 0)
(0.111701 -0.191723 0)
(0.136841 -0.169725 0)
(0.158577 -0.141826 0)
(0.17468 -0.108619 0)
(0.182845 -0.0716947 0)
(0.181279 -0.0339682 0)
(0.169695 0.000626957 0)
(0.149924 0.0282699 0)
(0.125501 0.0466289 0)
(0.100362 0.0556016 0)
(0.0775462 0.0568926 0)
(0.0585937 0.0530078 0)
(0.043731 0.0463241 0)
(0.0324202 0.0386032 0)
(0.0238907 0.0309395 0)
(0.0174465 0.0239382 0)
(0.0125568 0.0178932 0)
(0.0088479 0.0129076 0)
(0.00606107 0.0089649 0)
(0.00400941 0.00597629 0)
(0.0025447 0.00380953 0)
(0.0015398 0.00231294 0)
(0.000881629 0.00133352 0)
(0.000471281 0.000731787 0)
(0.000225385 0.00039286 0)
(7.3868e-05 0.000235414 0)
(0.0101021 -0.260398 0)
(0.0382695 -0.257129 0)
(0.0683527 -0.249233 0)
(0.0993606 -0.235771 0)
(0.129926 -0.215983 0)
(0.15828 -0.189411 0)
(0.182251 -0.156025 0)
(0.199203 -0.116599 0)
(0.206363 -0.073161 0)
(0.201672 -0.0294904 0)
(0.185212 0.00939517 0)
(0.159879 0.0389835 0)
(0.130459 0.0571044 0)
(0.101677 0.0644463 0)
(0.0767087 0.0636265 0)
(0.0567897 0.057788 0)
(0.0417057 0.049586 0)
(0.0305481 0.0407979 0)
(0.0223177 0.0324178 0)
(0.0162019 0.0249409 0)
(0.0116161 0.0185769 0)
(0.00816541 0.0133723 0)
(0.00558557 0.00927643 0)
(0.00369189 0.00617993 0)
(0.00234221 0.003938 0)
(0.00141707 0.00239053 0)
(0.000811437 0.00137815 0)
(0.000433912 0.000756261 0)
(0.000207699 0.000405996 0)
(6.82325e-05 0.000243424 0)
(0.0120502 -0.299038 0)
(0.0455396 -0.294816 0)
(0.0809889 -0.284754 0)
(0.117071 -0.267906 0)
(0.152106 -0.243567 0)
(0.184061 -0.211391 0)
(0.210476 -0.171398 0)
(0.228228 -0.124503 0)
(0.233887 -0.0732333 0)
(0.224982 -0.0225496 0)
(0.202204 0.0210227 0)
(0.170035 0.0522158 0)
(0.134857 0.0693435 0)
(0.102192 0.0742861 0)
(0.0751547 0.0707975 0)
(0.0544655 0.0626864 0)
(0.0393471 0.0528242 0)
(0.0284754 0.0429235 0)
(0.0206264 0.0338229 0)
(0.0148871 0.0258809 0)
(0.0106329 0.0192116 0)
(0.00745651 0.0138012 0)
(0.00509338 0.00956285 0)
(0.00336383 0.00636674 0)
(0.00213319 0.00405571 0)
(0.00129045 0.00246158 0)
(0.000739028 0.00141901 0)
(0.000395367 0.000778665 0)
(0.000189458 0.00041802 0)
(6.24415e-05 0.000250797 0)
(0.0146432 -0.345502 0)
(0.0551098 -0.339704 0)
(0.0971288 -0.326432 0)
(0.139175 -0.305022 0)
(0.1792 -0.27485 0)
(0.215055 -0.23589 0)
(0.244138 -0.188022 0)
(0.262664 -0.13218 0)
(0.26624 -0.0713925 0)
(0.251641 -0.0123212 0)
(0.220627 0.036281 0)
(0.180067 0.06844 0)
(0.138339 0.083519 0)
(0.101656 0.0851149 0)
(0.0727465 0.0783392 0)
(0.0515621 0.067638 0)
(0.0366371 0.0559947 0)
(0.0261994 0.0449553 0)
(0.0188188 0.0351418 0)
(0.0135049 0.0267517 0)
(0.00960964 0.0197942 0)
(0.00672305 0.0141924 0)
(0.0045858 0.00982316 0)
(0.0030261 0.00653615 0)
(0.0019182 0.00416232 0)
(0.00116026 0.00252588 0)
(0.0006646 0.00145598 0)
(0.000355749 0.000798938 0)
(0.000170708 0.000428898 0)
(5.65189e-05 0.000257516 0)
(0.0184949 -0.403047 0)
(0.0687551 -0.393652 0)
(0.11806 -0.375227 0)
(0.167175 -0.347824 0)
(0.212324 -0.309972 0)
(0.252154 -0.263141 0)
(0.284235 -0.206009 0)
(0.303608 -0.139521 0)
(0.304522 -0.0669759 0)
(0.282172 0.00232554 0)
(0.240297 0.0561559 0)
(0.189482 0.0881838 0)
(0.140447 0.099768 0)
(0.0997769 0.0968757 0)
(0.0693426 0.086152 0)
(0.0480269 0.0725609 0)
(0.033564 0.0590476 0)
(0.0237213 0.0468668 0)
(0.0168987 0.0363613 0)
(0.0120591 0.0275465 0)
(0.00854916 0.0203213 0)
(0.00596704 0.0145443 0)
(0.00406423 0.0100564 0)
(0.00267963 0.00668765 0)
(0.00169782 0.00425753 0)
(0.00102686 0.00258327 0)
(0.000588354 0.00148896 0)
(0.000315165 0.000817025 0)
(0.0001515 0.0004386 0)
(5.0492e-05 0.000263566 0)
(0.0247312 -0.478872 0)
(0.0859437 -0.456674 0)
(0.140912 -0.431257 0)
(0.202558 -0.396947 0)
(0.251738 -0.348341 0)
(0.295925 -0.293734 0)
(0.331854 -0.225447 0)
(0.352332 -0.146623 0)
(0.350325 -0.0591044 0)
(0.317141 0.0230439 0)
(0.260785 0.0819027 0)
(0.197555 0.112002 0)
(0.1406 0.118155 0)
(0.0962343 0.10944 0)
(0.0648054 0.0940965 0)
(0.0438182 0.0773545 0)
(0.0301247 0.0619275 0)
(0.0210466 0.0486306 0)
(0.0148721 0.0374679 0)
(0.0105542 0.0282591 0)
(0.00745475 0.0207898 0)
(0.00519074 0.0148552 0)
(0.00353017 0.0102618 0)
(0.00232539 0.00682072 0)
(0.00147268 0.00434105 0)
(0.000890619 0.00263355 0)
(0.000510505 0.00151787 0)
(0.000273729 0.000832878 0)
(0.000131887 0.000447098 0)
(4.43928e-05 0.000268932 0)
(0.0161507 -0.559453 0)
(0.0457951 -0.511108 0)
(0.091673 -0.499123 0)
(0.172846 -0.448761 0)
(0.271408 -0.395526 0)
(0.341483 -0.332932 0)
(0.38785 -0.245767 0)
(0.410047 -0.154503 0)
(0.40628 -0.0465826 0)
(0.357051 0.0523476 0)
(0.281239 0.115087 0)
(0.20325 0.140426 0)
(0.138087 0.138626 0)
(0.0906872 0.122587 0)
(0.0590098 0.101993 0)
(0.0389095 0.0819014 0)
(0.0263263 0.0645757 0)
(0.0181853 0.0502192 0)
(0.0127468 0.0384489 0)
(0.00899561 0.0288832 0)
(0.00632993 0.0211967 0)
(0.00439646 0.0151238 0)
(0.00298513 0.0104386 0)
(0.00196435 0.00693495 0)
(0.00124338 0.00441263 0)
(0.000751911 0.0026766 0)
(0.000431263 0.00154261 0)
(0.000231553 0.000846451 0)
(0.000111919 0.000454368 0)
(3.82573e-05 0.00027361 0)
(-0.00482089 -0.57196 0)
(0.030748 -0.525121 0)
(0.101683 -0.519326 0)
(0.13727 -0.597426 0)
(0.206694 -0.476016 0)
(0.342955 -0.420635 0)
(0.439662 -0.268212 0)
(0.476866 -0.167957 0)
(0.477285 -0.0271609 0)
(0.401909 0.0941924 0)
(0.300107 0.157533 0)
(0.205135 0.173855 0)
(0.132069 0.160939 0)
(0.0828026 0.135976 0)
(0.0518554 0.10962 0)
(0.0332963 0.0860657 0)
(0.0221883 0.0669316 0)
(0.0151523 0.0516059 0)
(0.0105327 0.0392921 0)
(0.00738957 0.0294135 0)
(0.00517862 0.0215396 0)
(0.00358669 0.0153487 0)
(0.00243071 0.010586 0)
(0.00159754 0.00702997 0)
(0.00101055 0.00447205 0)
(0.000611113 0.00271229 0)
(0.000350848 0.00156313 0)
(0.000188751 0.00085771 0)
(9.16495e-05 0.000460388 0)
(3.21274e-05 0.000277611 0)
(0.0231637 -0.632491 0)
(0.0874999 -0.62626 0)
(0.16003 -0.625292 0)
(0.234899 -0.602639 0)
(0.336915 -0.547265 0)
(0.415642 -0.491918 0)
(0.471135 -0.324213 0)
(0.572158 -0.198926 0)
(0.573122 0.00409354 0)
(0.449868 0.153365 0)
(0.314931 0.211163 0)
(0.201307 0.212378 0)
(0.121601 0.184581 0)
(0.0722972 0.149115 0)
(0.0432761 0.116724 0)
(0.027004 0.0896953 0)
(0.0177439 0.068937 0)
(0.0119672 0.0527654 0)
(0.00824166 0.0399862 0)
(0.00574318 0.0298447 0)
(0.00400511 0.021816 0)
(0.00276408 0.0155289 0)
(0.00186859 0.0107036 0)
(0.00122601 0.00710544 0)
(0.000774861 0.00451911 0)
(0.000468619 0.0027405 0)
(0.000269485 0.00157936 0)
(0.000145444 0.00086662 0)
(7.11339e-05 0.000465143 0)
(2.60507e-05 0.000280953 0)
(0.0258864 -0.716723 0)
(0.0949509 -0.71421 0)
(0.178508 -0.698275 0)
(0.261328 -0.691536 0)
(0.347798 -0.661141 0)
(0.510099 -0.58363 0)
(0.673803 -0.431607 0)
(0.847599 -0.180418 0)
(0.708157 0.00445196 0)
(0.522469 0.224261 0)
(0.33503 0.279594 0)
(0.189708 0.255424 0)
(0.10571 0.208624 0)
(0.0590044 0.161297 0)
(0.0332349 0.123038 0)
(0.0200976 0.0926221 0)
(0.0130402 0.0705396 0)
(0.00865405 0.0536752 0)
(0.00588728 0.0405216 0)
(0.00406408 0.0301728 0)
(0.00281385 0.0220242 0)
(0.00193134 0.0156634 0)
(0.00130047 0.0107907 0)
(0.000850844 0.00716109 0)
(0.000536967 0.00455366 0)
(0.00032482 0.00276116 0)
(0.000187398 0.00159125 0)
(0.000101751 0.000873156 0)
(5.04256e-05 0.000468616 0)
(2.0079e-05 0.000283654 0)
(0.0281745 -0.803415 0)
(0.104806 -0.801845 0)
(0.182797 -0.803581 0)
(0.296756 -0.794901 0)
(0.440565 -0.788094 0)
(0.538983 -0.709199 0)
(0.967484 -0.714369 0)
(1.32191 -0.311895 0)
(0.786517 0.160884 0)
(0.57619 0.35794 0)
(0.354162 0.367921 0)
(0.171313 0.301141 0)
(0.0854045 0.23145 0)
(0.0430734 0.170999 0)
(0.0216686 0.127968 0)
(0.0126993 0.0944715 0)
(0.00813452 0.0715859 0)
(0.00523954 0.0542535 0)
(0.00348416 0.040857 0)
(0.00236032 0.0303765 0)
(0.0016094 0.0221535 0)
(0.00109121 0.015747 0)
(0.000728055 0.0108448 0)
(0.000473087 0.00719551 0)
(0.000297525 0.00457493 0)
(0.000180111 0.00277387 0)
(0.000104808 0.00159859 0)
(5.77907e-05 0.000877209 0)
(2.9579e-05 0.000470752 0)
(1.42686e-05 0.00028572 0)
(0.0637835 -0.893492 0)
(0.234468 -0.9003 0)
(0.376119 -0.906741 0)
(0.455834 -0.904685 0)
(0.528118 -0.866493 0)
(0.499543 -0.787026 0)
(0.334035 -0.585247 0)
(0.42463 -0.338257 0)
(0.623416 0.216185 0)
(0.586987 0.474561 0)
(0.307268 0.448297 0)
(0.140556 0.349712 0)
(0.0799716 0.255207 0)
(0.0225574 0.17856 0)
(0.00581248 0.132219 0)
(0.00480342 0.0955027 0)
(0.00292651 0.0720506 0)
(0.00165142 0.0541318 0)
(0.00100378 0.0401642 0)
(0.000635695 0.0292062 0)
(0.000412738 0.0207463 0)
(0.000271964 0.0143375 0)
(0.000179219 0.00961165 0)
(0.000118115 0.00623122 0)
(7.95198e-05 0.00388958 0)
(5.4602e-05 0.00232603 0)
(3.83305e-05 0.00132759 0)
(2.77212e-05 0.000723857 0)
(2.06379e-05 0.000386891 0)
(1.79853e-05 0.000235207 0)
(-0.00878101 0.000230263 0)
(-0.00265746 0.000412261 0)
(-0.00318957 0.000760656 0)
(-0.00392933 0.00139604 0)
(-0.00486217 0.00245209 0)
(-0.00606541 0.00409762 0)
(-0.00761332 0.00652832 0)
(-0.00960871 0.00995273 0)
(-0.0118757 0.0145475 0)
(-0.0133517 0.0206289 0)
(-0.0149532 0.0286653 0)
(-0.018863 0.0391235 0)
(-0.0157309 0.0513941 0)
(-0.0101924 0.0669857 0)
(-0.0647351 0.0846974 0)
(-0.0522802 0.115407 0)
(0.0175886 0.163918 0)
(0.019318 0.239525 0)
(-0.0977302 0.338322 0)
(-0.219747 0.483642 0)
(-0.460833 0.55865 0)
(-0.605483 0.362585 0)
(-0.486529 -0.368904 0)
(-0.181545 -0.564937 0)
(-0.169068 -0.675562 0)
(-0.317125 -0.827122 0)
(-0.398931 -0.90929 0)
(-0.398451 -0.963592 0)
(-0.304411 -1.01652 0)
(-0.133219 -1.06279 0)
(-0.00593977 -0.00025856 0)
(-0.00463823 0.000441616 0)
(-0.00570909 0.00081069 0)
(-0.00726147 0.0014605 0)
(-0.009294 0.0025327 0)
(-0.0119745 0.00420127 0)
(-0.0154886 0.00667459 0)
(-0.020109 0.0101653 0)
(-0.0265111 0.014839 0)
(-0.03464 0.0209524 0)
(-0.045765 0.0290894 0)
(-0.0652985 0.0400306 0)
(-0.107434 0.054712 0)
(-0.245797 0.0938225 0)
(-1.37042 0.0583917 0)
(-2.11324 0.0805018 0)
(-0.415498 0.168826 0)
(-0.459357 0.206548 0)
(-0.0145437 0.370475 0)
(-0.191114 0.545063 0)
(-0.443208 0.609532 0)
(-0.691506 0.434984 0)
(-0.406969 -0.460055 0)
(-0.134687 -0.637861 0)
(-0.0026713 -0.662145 0)
(-0.0456933 -0.769156 0)
(-0.129763 -0.879899 0)
(-0.158936 -0.987573 0)
(-0.108497 -1.06484 0)
(-0.0551368 -1.18836 0)
(-0.00497606 -0.000355117 0)
(-0.00531167 0.000484683 0)
(-0.00655677 0.000885361 0)
(-0.00835844 0.00156138 0)
(-0.0107448 0.00266891 0)
(-0.0139118 0.00439137 0)
(-0.0181248 0.00696339 0)
(-0.0237124 0.0106163 0)
(-0.0315388 0.0155349 0)
(-0.0417704 0.0220044 0)
(-0.0564203 0.0309125 0)
(-0.0826572 0.0438768 0)
(-0.139398 0.0652518 0)
(-0.319433 0.145635 0)
(-1.38539 0.33388 0)
(-2.50225 -0.042124 0)
(-1.16124 -0.0175525 0)
(-0.64661 0.149942 0)
(-0.394136 0.304155 0)
(-0.121738 0.646286 0)
(-0.498593 0.662958 0)
(-0.635762 0.343659 0)
(-0.332758 -0.600433 0)
(-0.140136 -0.714401 0)
(0.0321453 -0.710437 0)
(0.116689 -0.748408 0)
(0.0990591 -0.858375 0)
(0.0811142 -0.971529 0)
(0.0561498 -1.07128 0)
(0.028718 -1.21016 0)
(-0.00469071 -0.000350772 0)
(-0.00550181 0.000534128 0)
(-0.0067889 0.000969963 0)
(-0.00863777 0.00167813 0)
(-0.0111051 0.00283039 0)
(-0.01436 0.0046174 0)
(-0.018708 0.00730479 0)
(-0.0244448 0.0111469 0)
(-0.0323882 0.0163584 0)
(-0.0428927 0.0232729 0)
(-0.0582471 0.033181 0)
(-0.0856326 0.048683 0)
(-0.143904 0.0781197 0)
(-0.308172 0.195684 0)
(-0.838642 0.67575 0)
(-1.45261 -0.234895 0)
(-0.799954 -0.138566 0)
(-0.658841 0.101738 0)
(-0.496541 0.161743 0)
(-0.123012 0.700727 0)
(-0.556828 0.77756 0)
(-0.556805 0.349945 0)
(-0.543233 -0.662768 0)
(-0.148663 -0.810816 0)
(0.0287036 -0.781789 0)
(0.148687 -0.78167 0)
(0.195311 -0.854934 0)
(0.192204 -0.957905 0)
(0.144497 -1.04455 0)
(0.074449 -1.12091 0)
(-0.00464711 -0.00031651 0)
(-0.00557574 0.000587057 0)
(-0.00687101 0.00105942 0)
(-0.00872384 0.00180551 0)
(-0.011212 0.00301132 0)
(-0.0144597 0.00487093 0)
(-0.0187832 0.00768074 0)
(-0.0244184 0.0117196 0)
(-0.0320513 0.0172459 0)
(-0.0422676 0.0246416 0)
(-0.0574423 0.035643 0)
(-0.0839872 0.0538225 0)
(-0.138158 0.0911874 0)
(-0.264037 0.232688 0)
(-0.220341 0.833643 0)
(-0.317634 -0.315566 0)
(-0.488415 -0.187933 0)
(-0.479309 0.112463 0)
(-0.515647 0.1405 0)
(-0.525344 0.573663 0)
(-0.572468 0.898067 0)
(-0.829598 0.374525 0)
(-0.571505 -0.770379 0)
(-0.136153 -0.923899 0)
(0.0359998 -0.853185 0)
(0.137519 -0.833043 0)
(0.192835 -0.870674 0)
(0.198663 -0.945899 0)
(0.159789 -0.995838 0)
(0.0750054 -1.02361 0)
(-0.00467799 -0.000275688 0)
(-0.00562188 0.000643303 0)
(-0.00691505 0.00115422 0)
(-0.00876587 0.00194499 0)
(-0.0112599 0.00321359 0)
(-0.0144823 0.00515494 0)
(-0.0187337 0.00809293 0)
(-0.0242008 0.012331 0)
(-0.031431 0.0181805 0)
(-0.0412144 0.0260793 0)
(-0.0558502 0.0382065 0)
(-0.0806993 0.0590068 0)
(-0.128042 0.103279 0)
(-0.210636 0.253363 0)
(0.0640441 0.742952 0)
(0.457514 -0.244897 0)
(-0.292926 -0.150465 0)
(-0.410774 0.135951 0)
(-0.41865 0.0818384 0)
(-0.588225 0.701322 0)
(-0.585447 1.01303 0)
(-1.19721 1.04517 0)
(-0.425879 -1.25929 0)
(-0.0765968 -1.04583 0)
(0.0634111 -0.915977 0)
(0.131527 -0.874235 0)
(0.163705 -0.886744 0)
(0.158715 -0.931819 0)
(0.119739 -0.946106 0)
(0.0545307 -0.934619 0)
(-0.0047158 -0.000234315 0)
(-0.00565047 0.000702768 0)
(-0.0069362 0.00125529 0)
(-0.00878363 0.00209748 0)
(-0.0112717 0.00343654 0)
(-0.0144593 0.00546825 0)
(-0.0186085 0.00853822 0)
(-0.0238727 0.0129739 0)
(-0.0306794 0.0191467 0)
(-0.0399501 0.0275674 0)
(-0.0537696 0.0408109 0)
(-0.0762901 0.0640339 0)
(-0.115113 0.113526 0)
(-0.15834 0.259013 0)
(0.112398 0.572075 0)
(0.510038 -0.0806028 0)
(-0.180562 -0.0652449 0)
(-0.389911 0.179849 0)
(-0.666683 0.121282 0)
(-0.358917 0.486562 0)
(-0.707885 1.12201 0)
(-1.48868 1.29392 0)
(-0.158728 -1.58501 0)
(0.0518386 -1.13749 0)
(0.114329 -0.956774 0)
(0.139312 -0.895338 0)
(0.141646 -0.888381 0)
(0.116998 -0.905687 0)
(0.0748711 -0.902107 0)
(0.0295836 -0.872148 0)
(-0.00474478 -0.000193811 0)
(-0.00566169 0.000765379 0)
(-0.00693743 0.00136366 0)
(-0.00877936 0.00226363 0)
(-0.0112494 0.00367893 0)
(-0.0143908 0.00580857 0)
(-0.0184103 0.00901284 0)
(-0.0234397 0.0136412 0)
(-0.0298055 0.0201281 0)
(-0.0384707 0.0290824 0)
(-0.0512007 0.0433879 0)
(-0.0708198 0.0686931 0)
(-0.100148 0.121303 0)
(-0.111799 0.253115 0)
(0.115644 0.440488 0)
(0.344716 0.0421515 0)
(-0.105765 0.0289678 0)
(-0.365697 0.261866 0)
(-0.577667 0.224773 0)
(-0.85295 0.718698 0)
(-1.07565 1.16615 0)
(0.295119 0.494189 0)
(0.396873 -1.59265 0)
(0.224872 -1.14095 0)
(0.182352 -0.960062 0)
(0.159785 -0.891242 0)
(0.133626 -0.870689 0)
(0.0941044 -0.867702 0)
(0.0486786 -0.858749 0)
(0.0144618 -0.835582 0)
(-0.00476313 -0.000154717 0)
(-0.00565506 0.000831007 0)
(-0.00691988 0.00148011 0)
(-0.00875286 0.00244381 0)
(-0.0111924 0.00393927 0)
(-0.0142736 0.00617286 0)
(-0.0181373 0.00951209 0)
(-0.0229004 0.0143257 0)
(-0.0288004 0.0211089 0)
(-0.0367516 0.0305922 0)
(-0.0481225 0.0458561 0)
(-0.0643465 0.0727614 0)
(-0.0839258 0.126238 0)
(-0.0728438 0.239569 0)
(0.107723 0.349517 0)
(0.234506 0.11392 0)
(-0.043347 0.114398 0)
(-0.286955 0.403554 0)
(-0.88628 0.351211 0)
(-1.63562 0.816355 0)
(-0.207381 -0.250956 0)
(0.994638 -0.184135 0)
(0.735185 -1.27903 0)
(0.372643 -1.04616 0)
(0.250128 -0.919256 0)
(0.187219 -0.860295 0)
(0.138962 -0.835041 0)
(0.0921692 -0.822183 0)
(0.0474265 -0.813259 0)
(0.0144191 -0.808226 0)
(-0.00477101 -0.000117378 0)
(-0.00563019 0.000899557 0)
(-0.00688288 0.00160512 0)
(-0.00870193 0.00263785 0)
(-0.0110986 0.00421612 0)
(-0.0141022 0.006558 0)
(-0.017785 0.0100302 0)
(-0.0222498 0.0150187 0)
(-0.0276486 0.0220732 0)
(-0.0347712 0.0320555 0)
(-0.0445296 0.0481195 0)
(-0.0569915 0.0760166 0)
(-0.0672585 0.128218 0)
(-0.0416162 0.221815 0)
(0.0972113 0.286913 0)
(0.173652 0.154902 0)
(0.0166159 0.178771 0)
(-0.0774817 0.500495 0)
(-0.964959 0.637927 0)
(-0.210568 -0.00031318 0)
(0.685666 -0.240764 0)
(1.22839 -0.452678 0)
(0.766268 -0.923923 0)
(0.449931 -0.899901 0)
(0.299346 -0.842851 0)
(0.212875 -0.806049 0)
(0.15122 -0.785737 0)
(0.101063 -0.773216 0)
(0.0592683 -0.766547 0)
(0.0229122 -0.769935 0)
(-0.00476873 -8.21039e-05 0)
(-0.00559016 0.000971071 0)
(-0.00682841 0.00173903 0)
(-0.00862639 0.0028452 0)
(-0.0109679 0.0045083 0)
(-0.0138732 0.00696113 0)
(-0.0173509 0.0105608 0)
(-0.0214826 0.0157106 0)
(-0.0263347 0.0230041 0)
(-0.0325134 0.0334248 0)
(-0.0404362 0.0500738 0)
(-0.0489335 0.0782637 0)
(-0.0508794 0.127378 0)
(-0.0172282 0.202404 0)
(0.0885778 0.243018 0)
(0.142961 0.17571 0)
(0.073631 0.214199 0)
(0.106276 0.456395 0)
(0.634887 0.786056 0)
(0.974627 -0.103141 0)
(0.836573 -0.218553 0)
(0.876282 -0.420469 0)
(0.67983 -0.691846 0)
(0.461663 -0.752066 0)
(0.321303 -0.748211 0)
(0.228851 -0.735798 0)
(0.161456 -0.72611 0)
(0.108414 -0.719961 0)
(0.0650808 -0.717179 0)
(0.0257662 -0.715969 0)
(-0.00475516 -4.89345e-05 0)
(-0.00553717 0.00104543 0)
(-0.00675756 0.0018814 0)
(-0.00852595 0.00306448 0)
(-0.0108014 0.00481413 0)
(-0.0135859 0.00737831 0)
(-0.0168352 0.0110964 0)
(-0.0205966 0.0163888 0)
(-0.0248493 0.0238802 0)
(-0.0299758 0.0346453 0)
(-0.0358887 0.0516082 0)
(-0.0404073 0.0793516 0)
(-0.0353907 0.124035 0)
(0.00162152 0.182926 0)
(0.0834394 0.210698 0)
(0.130433 0.18161 0)
(0.121796 0.220873 0)
(0.213887 0.366742 0)
(0.571337 0.423316 0)
(0.807457 0.0227557 0)
(0.739282 -0.194736 0)
(0.699591 -0.378139 0)
(0.579853 -0.548175 0)
(0.434056 -0.625876 0)
(0.318192 -0.651165 0)
(0.231557 -0.65775 0)
(0.164528 -0.65881 0)
(0.110024 -0.658696 0)
(0.0634584 -0.658632 0)
(0.0232461 -0.658161 0)
(-0.0047298 -1.74293e-05 0)
(-0.00546935 0.00112276 0)
(-0.00666701 0.00203127 0)
(-0.0083964 0.00329389 0)
(-0.0105947 0.00513159 0)
(-0.0132369 0.00780415 0)
(-0.0162359 0.0116284 0)
(-0.0195893 0.0170384 0)
(-0.0231886 0.0246753 0)
(-0.0271684 0.0356585 0)
(-0.0309621 0.0526162 0)
(-0.0316744 0.0791918 0)
(-0.021204 0.118604 0)
(0.0162684 0.164184 0)
(0.0816699 0.184925 0)
(0.127712 0.175984 0)
(0.156283 0.205716 0)
(0.261571 0.274703 0)
(0.485919 0.247076 0)
(0.632812 0.0241627 0)
(0.623947 -0.172049 0)
(0.577099 -0.326977 0)
(0.490945 -0.450226 0)
(0.389064 -0.523721 0)
(0.297558 -0.560714 0)
(0.221991 -0.578675 0)
(0.159824 -0.587656 0)
(0.107682 -0.592399 0)
(0.0629452 -0.594932 0)
(0.0235134 -0.59598 0)
(-0.00469299 1.25908e-05 0)
(-0.00538581 0.00120352 0)
(-0.0065542 0.00218773 0)
(-0.00823403 0.00353151 0)
(-0.0103417 0.00545773 0)
(-0.0128212 0.0082312 0)
(-0.0155482 0.0121462 0)
(-0.0184575 0.0176419 0)
(-0.0213535 0.0253584 0)
(-0.0241151 0.0364024 0)
(-0.025759 0.0530029 0)
(-0.0230033 0.0777628 0)
(-0.00856152 0.11152 0)
(0.027765 0.146366 0)
(0.0822538 0.162447 0)
(0.128886 0.161788 0)
(0.175915 0.177742 0)
(0.271795 0.196665 0)
(0.414274 0.143744 0)
(0.507267 -0.0026842 0)
(0.514445 -0.15464 0)
(0.477182 -0.280057 0)
(0.41325 -0.376422 0)
(0.338684 -0.440896 0)
(0.267018 -0.480038 0)
(0.203524 -0.503015 0)
(0.148503 -0.516516 0)
(0.100761 -0.524463 0)
(0.0589444 -0.528929 0)
(0.0218346 -0.530981 0)
(-0.00464422 4.08714e-05 0)
(-0.00528832 0.00128837 0)
(-0.00642074 0.00235044 0)
(-0.00803926 0.00377556 0)
(-0.0100412 0.00578846 0)
(-0.0123369 0.00865001 0)
(-0.014769 0.012636 0)
(-0.017201 0.0181776 0)
(-0.0193517 0.0258929 0)
(-0.0208567 0.0368131 0)
(-0.0204114 0.0526947 0)
(-0.0146649 0.0751096 0)
(0.00240566 0.103182 0)
(0.0368014 0.129391 0)
(0.0838719 0.141441 0)
(0.130092 0.141968 0)
(0.182469 0.144651 0)
(0.261365 0.135121 0)
(0.353685 0.0775645 0)
(0.412433 -0.0284291 0)
(0.420048 -0.142529 0)
(0.392463 -0.241051 0)
(0.344731 -0.317877 0)
(0.288569 -0.37269 0)
(0.232274 -0.409394 0)
(0.179944 -0.433158 0)
(0.132768 -0.448299 0)
(0.0906701 -0.457754 0)
(0.053141 -0.46331 0)
(0.0195728 -0.46592 0)
(-0.00458302 6.7036e-05 0)
(-0.00517631 0.00137874 0)
(-0.00626742 0.00252035 0)
(-0.00781228 0.00402595 0)
(-0.00969363 0.0061204 0)
(-0.0117844 0.00905261 0)
(-0.0138977 0.0130837 0)
(-0.0158239 0.0186216 0)
(-0.0171991 0.0262389 0)
(-0.0174465 0.0368306 0)
(-0.0150625 0.0516462 0)
(-0.00689541 0.0713284 0)
(0.0116765 0.0939716 0)
(0.0437657 0.11309 0)
(0.0852896 0.121095 0)
(0.129204 0.119252 0)
(0.179039 0.111586 0)
(0.240463 0.0878834 0)
(0.300989 0.0333084 0)
(0.337437 -0.0472763 0)
(0.341534 -0.133105 0)
(0.320561 -0.209259 0)
(0.284475 -0.27023 0)
(0.241444 -0.315684 0)
(0.197056 -0.347923 0)
(0.154426 -0.370034 0)
(0.114892 -0.384832 0)
(0.0788581 -0.394451 0)
(0.0462907 -0.400326 0)
(0.016959 -0.4032 0)
(-0.0045071 9.04844e-05 0)
(-0.00504607 0.00147601 0)
(-0.00609096 0.00269859 0)
(-0.00755133 0.00428329 0)
(-0.00929836 0.00645099 0)
(-0.0111663 0.00943364 0)
(-0.0129398 0.0134763 0)
(-0.0143398 0.0189506 0)
(-0.0149264 0.0263573 0)
(-0.0139592 0.0364061 0)
(-0.00986761 0.0498464 0)
(9.80763e-05 0.0665517 0)
(0.0192312 0.08415 0)
(0.0488068 0.0973631 0)
(0.0855739 0.101313 0)
(0.125411 0.0959331 0)
(0.168761 0.0814319 0)
(0.214874 0.0521407 0)
(0.254554 0.00339153 0)
(0.27639 -0.0593645 0)
(0.276856 -0.124455 0)
(0.260032 -0.182903 0)
(0.232187 -0.230769 0)
(0.1988 -0.267583 0)
(0.163727 -0.294659 0)
(0.129319 -0.313899 0)
(0.0967818 -0.327194 0)
(0.0666715 -0.336109 0)
(0.0391778 -0.34177 0)
(0.0142772 -0.344649 0)
(-0.00440894 0.00011061 0)
(-0.00489332 0.0015798 0)
(-0.0058866 0.00288479 0)
(-0.00725351 0.00454623 0)
(-0.00885355 0.00677656 0)
(-0.0104844 0.00978728 0)
(-0.0119029 0.0138012 0)
(-0.0127692 0.019142 0)
(-0.0125783 0.0262145 0)
(-0.0104895 0.0355107 0)
(-0.00498836 0.0473234 0)
(0.00616315 0.0609823 0)
(0.0250845 0.0739847 0)
(0.0519627 0.0822258 0)
(0.0841829 0.0823824 0)
(0.11876 0.0737011 0)
(0.154264 0.0554952 0)
(0.187874 0.0254608 0)
(0.213562 -0.0165972 0)
(0.225836 -0.065964 0)
(0.223573 -0.115681 0)
(0.20947 -0.160398 0)
(0.187526 -0.197561 0)
(0.16137 -0.226748 0)
(0.133672 -0.248713 0)
(0.106167 -0.264666 0)
(0.0798434 -0.275903 0)
(0.0552208 -0.283603 0)
(0.0325252 -0.288659 0)
(0.0118088 -0.291328 0)
(-0.00428332 0.000128059 0)
(-0.00471404 0.00168799 0)
(-0.00564939 0.00307585 0)
(-0.00691427 0.00481023 0)
(-0.00835527 0.00709077 0)
(-0.00973938 0.0101048 0)
(-0.010795 0.0140448 0)
(-0.0111359 0.019174 0)
(-0.0102086 0.0257846 0)
(-0.00714142 0.0341386 0)
(-0.000580843 0.044142 0)
(0.0111632 0.0547952 0)
(0.0292623 0.0637272 0)
(0.0532632 0.067816 0)
(0.0809493 0.0647314 0)
(0.109771 0.0536457 0)
(0.137545 0.0341306 0)
(0.161347 0.00592197 0)
(0.177523 -0.029498 0)
(0.183601 -0.0684208 0)
(0.179605 -0.106546 0)
(0.1675 -0.14068 0)
(0.149925 -0.169252 0)
(0.129303 -0.191978 0)
(0.10748 -0.209328 0)
(0.085724 -0.222099 0)
(0.064788 -0.231177 0)
(0.0450656 -0.237393 0)
(0.0266843 -0.241385 0)
(0.00967501 -0.243407 0)
(-0.00413109 0.000143852 0)
(-0.00450534 0.00179929 0)
(-0.00537633 0.00326819 0)
(-0.00653149 0.00507042 0)
(-0.00780285 0.00738628 0)
(-0.00893557 0.0103757 0)
(-0.00963038 0.0141928 0)
(-0.00947134 0.0190291 0)
(-0.00788117 0.0250536 0)
(-0.00402272 0.0323091 0)
(0.00322968 0.0404172 0)
(0.0150197 0.0482104 0)
(0.0318156 0.0536228 0)
(0.0527953 0.0543384 0)
(0.0759949 0.0487607 0)
(0.0991431 0.0363391 0)
(0.12004 0.0171639 0)
(0.136363 -0.00799978 0)
(0.146059 -0.03727 0)
(0.148199 -0.0678849 0)
(0.14329 -0.0971339 0)
(0.132823 -0.123108 0)
(0.118604 -0.144885 0)
(0.102273 -0.162322 0)
(0.0851007 -0.175749 0)
(0.0679795 -0.185697 0)
(0.0514504 -0.192744 0)
(0.0358084 -0.197394 0)
(0.0211772 -0.200062 0)
(0.00762553 -0.201177 0)
(-0.00395136 0.000158434 0)
(-0.00426447 0.0019122 0)
(-0.00506501 0.00345899 0)
(-0.00610375 0.00532164 0)
(-0.00719787 0.00765603 0)
(-0.00808031 0.0105905 0)
(-0.00842916 0.0142335 0)
(-0.00781579 0.0186962 0)
(-0.0056689 0.0240235 0)
(-0.00124327 0.0300691 0)
(0.00632674 0.0362741 0)
(0.0176944 0.0414549 0)
(0.0328307 0.0439198 0)
(0.050726 0.0420226 0)
(0.0696293 0.0347651 0)
(0.0875837 0.0219772 0)
(0.102741 0.00416745 0)
(0.113504 -0.0175149 0)
(0.118836 -0.0413241 0)
(0.118565 -0.0652773 0)
(0.113346 -0.0876587 0)
(0.104328 -0.107336 0)
(0.0927723 -0.123794 0)
(0.0797991 -0.136989 0)
(0.066277 -0.147164 0)
(0.0528291 -0.154679 0)
(0.0398543 -0.159922 0)
(0.0276037 -0.163234 0)
(0.0162218 -0.164941 0)
(0.00578366 -0.165516 0)
(-0.00374122 0.000172157 0)
(-0.00398803 0.00202462 0)
(-0.00471252 0.00364564 0)
(-0.00562894 0.00555938 0)
(-0.00654361 0.00789391 0)
(-0.00718421 0.0107413 0)
(-0.00721613 0.014159 0)
(-0.00621486 0.0181736 0)
(-0.00364671 0.0227153 0)
(0.00110422 0.0274939 0)
(0.00863272 0.0318684 0)
(0.0191962 0.0347522 0)
(0.032439 0.034846 0)
(0.0472969 0.0310603 0)
(0.0622499 0.0228849 0)
(0.0757099 0.010482 0)
(0.0862988 -0.00541383 0)
(0.0930368 -0.0236239 0)
(0.0954974 -0.0427241 0)
(0.0938576 -0.0613333 0)
(0.0887598 -0.0783735 0)
(0.0810792 -0.093185 0)
(0.0717089 -0.105501 0)
(0.0614248 -0.115345 0)
(0.0508329 -0.12291 0)
(0.0403775 -0.128463 0)
(0.0303503 -0.132284 0)
(0.0209391 -0.134636 0)
(0.0122513 -0.135788 0)
(0.00433017 -0.136136 0)
(-0.00349726 0.00018496 0)
(-0.00367233 0.00213537 0)
(-0.00431579 0.00382475 0)
(-0.00510631 0.00577898 0)
(-0.00584468 0.00809454 0)
(-0.0062605 0.0108232 0)
(-0.00601952 0.0139672 0)
(-0.00471749 0.0174725 0)
(-0.00188714 0.0211716 0)
(0.00294341 0.0246894 0)
(0.0101069 0.0273719 0)
(0.0195779 0.0283174 0)
(0.0308142 0.0265988 0)
(0.0427966 0.0215792 0)
(0.0542657 0.0131215 0)
(0.064014 0.00161002 0)
(0.0711131 -0.0121614 0)
(0.0750307 -0.0271572 0)
(0.0756867 -0.0422961 0)
(0.0733904 -0.0566448 0)
(0.0687051 -0.0695378 0)
(0.0622916 -0.0806064 0)
(0.0547856 -0.0897362 0)
(0.0467254 -0.0969931 0)
(0.0385292 -0.102546 0)
(0.0305066 -0.106607 0)
(0.0228626 -0.109391 0)
(0.0157289 -0.111093 0)
(0.00917561 -0.111913 0)
(0.00322055 -0.112145 0)
(-0.00321584 0.000196957 0)
(-0.00331399 0.00224218 0)
(-0.00387201 0.00399321 0)
(-0.00453595 0.00597619 0)
(-0.00510715 0.00825399 0)
(-0.00532522 0.0108351 0)
(-0.00486948 0.0136658 0)
(-0.00337353 0.0166197 0)
(-0.000457238 0.0194558 0)
(0.00421146 0.0217692 0)
(0.0107455 0.0229606 0)
(0.0189319 0.0223435 0)
(0.0281599 0.0193275 0)
(0.0375262 0.0136264 0)
(0.0460426 0.00536047 0)
(0.0528537 -0.00497797 0)
(0.0573884 -0.0166468 0)
(0.059414 -0.0288125 0)
(0.0590229 -0.0406969 0)
(0.0565475 -0.0516899 0)
(0.0524517 -0.0613958 0)
(0.0472276 -0.0696256 0)
(0.0413267 -0.0763537 0)
(0.0351207 -0.0816668 0)
(0.0288918 -0.0857123 0)
(0.0228435 -0.0886587 0)
(0.0171052 -0.0906742 0)
(0.0117598 -0.0919065 0)
(0.00685233 -0.0925033 0)
(0.00239351 -0.0926741 0)
(-0.00289314 0.000207836 0)
(-0.00290907 0.00234228 0)
(-0.00337912 0.00414757 0)
(-0.0039183 0.00614722 0)
(-0.00433746 0.00837055 0)
(-0.00439441 0.0107818 0)
(-0.00379613 0.0132728 0)
(-0.00222785 0.0156589 0)
(0.00059841 0.0176564 0)
(0.00488143 0.0188688 0)
(0.0105805 0.0188037 0)
(0.0173813 0.0169918 0)
(0.0246915 0.0131242 0)
(0.0317644 0.00717017 0)
(0.037869 -0.000599285 0)
(0.0424453 -0.00966619 0)
(0.0451742 -0.0194037 0)
(0.0460038 -0.0291769 0)
(0.0450956 -0.0384509 0)
(0.0427512 -0.0468437 0)
(0.0393308 -0.0541351 0)
(0.0351917 -0.0602463 0)
(0.0306487 -0.0652017 0)
(0.025954 -0.0690913 0)
(0.0212955 -0.0720375 0)
(0.016808 -0.0741701 0)
(0.0125751 -0.0756141 0)
(0.00864552 -0.0764761 0)
(0.00503813 -0.076866 0)
(0.00175279 -0.0769533 0)
(-0.00252542 0.000217671 0)
(-0.00245446 0.00243294 0)
(-0.00283485 0.00428379 0)
(-0.00325403 0.00628935 0)
(-0.00354199 0.00844592 0)
(-0.0034836 0.0106745 0)
(-0.00282564 0.012819 0)
(-0.00131608 0.0146519 0)
(0.00124965 0.015875 0)
(0.00495425 0.0161312 0)
(0.00967374 0.0150598 0)
(0.0150652 0.0123888 0)
(0.0206128 0.00802877 0)
(0.0257419 0.0021182 0)
(0.029946 -0.00499699 0)
(0.0328814 -0.0128413 0)
(0.0344013 -0.0209066 0)
(0.0345416 -0.0287348 0)
(0.033474 -0.0359734 0)
(0.0314448 -0.0423949 0)
(0.0287212 -0.0478901 0)
(0.0255539 -0.0524437 0)
(0.0221556 -0.0561043 0)
(0.0186927 -0.0589597 0)
(0.0152873 -0.0611126 0)
(0.0120265 -0.062665 0)
(0.0089649 -0.063712 0)
(0.00613654 -0.0643334 0)
(0.00355791 -0.0646092 0)
(0.0012281 -0.0646641 0)
(-0.00210932 0.000226476 0)
(-0.00194711 0.00251117 0)
(-0.002237 0.00439851 0)
(-0.00254385 0.00640125 0)
(-0.00272537 0.00848542 0)
(-0.00260343 0.0105328 0)
(-0.00197645 0.0123481 0)
(-0.000656797 0.0136765 0)
(0.00148553 0.0142268 0)
(0.00445918 0.0137031 0)
(0.0081075 0.0118715 0)
(0.0121208 0.00862661 0)
(0.0160938 0.00403671 0)
(0.0196154 -0.0016592 0)
(0.0223636 -0.00809747 0)
(0.0241418 -0.0148645 0)
(0.0249012 -0.0215668 0)
(0.0247116 -0.0278837 0)
(0.0237214 -0.0335921 0)
(0.0221147 -0.0385664 0)
(0.0200788 -0.0427649 0)
(0.0177826 -0.0462061 0)
(0.0153659 -0.048948 0)
(0.0129353 -0.0510718 0)
(0.0105663 -0.0526659 0)
(0.00831072 -0.0538143 0)
(0.00620067 -0.0545938 0)
(0.00425361 -0.0550694 0)
(0.00247335 -0.0553006 0)
(0.000855495 -0.0553637 0)
(-0.00164205 0.00023393 0)
(-0.00138443 0.00257368 0)
(-0.00158369 0.00448778 0)
(-0.00178662 0.00648273 0)
(-0.00188802 0.00849844 0)
(-0.00175745 0.0103845 0)
(-0.00125181 0.0119169 0)
(-0.000247918 0.0128271 0)
(0.00132947 0.0128418 0)
(0.00345024 0.0117316 0)
(0.00597458 0.00937012 0)
(0.00866745 0.00577609 0)
(0.0112495 0.00112116 0)
(0.0134604 -0.00430285 0)
(0.0151077 -0.0101452 0)
(0.0160957 -0.0160541 0)
(0.0164205 -0.021729 0)
(0.0161476 -0.0269473 0)
(0.0153846 -0.0315713 0)
(0.0142545 -0.0355398 0)
(0.0128775 -0.0388518 0)
(0.0113595 -0.0415466 0)
(0.00978642 -0.0436872 0)
(0.008223 -0.045345 0)
(0.00671344 -0.0465881 0)
(0.00528557 -0.0474745 0)
(0.00395291 -0.0480541 0)
(0.00272062 -0.0483687 0)
(0.00158752 -0.0484677 0)
(0.000550918 -0.0484482 0)
(-0.0011212 0.000239746 0)
(-0.000764583 0.00261636 0)
(-0.000872151 0.00454776 0)
(-0.000978658 0.00653428 0)
(-0.00102432 0.00849719 0)
(-0.000935363 0.0102639 0)
(-0.000633166 0.0115922 0)
(-5.38628e-05 0.0122081 0)
(0.000836657 0.0118606 0)
(0.00200763 0.0103708 0)
(0.00336957 0.00768913 0)
(0.00479054 0.00390917 0)
(0.00612722 -0.000735399 0)
(0.00724282 -0.00592774 0)
(0.00804417 -0.0113411 0)
(0.00849515 -0.0166702 0)
(0.00860323 -0.0216754 0)
(0.00840911 -0.0261946 0)
(0.00797218 -0.0301407 0)
(0.00735731 -0.0334889 0)
(0.00662528 -0.0362589 0)
(0.00582664 -0.0384975 0)
(0.00500097 -0.0402647 0)
(0.00417963 -0.0416254 0)
(0.00338663 -0.0426439 0)
(0.00263832 -0.0433777 0)
(0.00194443 -0.0438727 0)
(0.00131325 -0.0441626 0)
(0.000750689 -0.0442828 0)
(0.000254731 -0.0442967 0)
(-0.000545536 0.000243507 0)
(-0.00025985 0.00263252 0)
(-0.000296721 0.00457009 0)
(-0.000332904 0.00655246 0)
(-0.00034766 0.0084937 0)
(-0.00031559 0.0102126 0)
(-0.000209291 0.0114603 0)
(-7.43017e-06 0.0119626 0)
(0.000300159 0.0114775 0)
(0.000700116 0.00984898 0)
(0.00115679 0.00705849 0)
(0.00161977 0.00322338 0)
(0.00206871 -0.00141958 0)
(0.00242343 -0.00650914 0)
(0.00267793 -0.0117603 0)
(0.00281882 -0.0168755 0)
(0.0028478 -0.021637 0)
(0.00277892 -0.0259047 0)
(0.00263197 -0.0296092 0)
(0.00242774 -0.0327365 0)
(0.00218514 -0.0353117 0)
(0.00192079 -0.0373833 0)
(0.00164821 -0.0390127 0)
(0.00137661 -0.0402658 0)
(0.0011126 -0.0412048 0)
(0.00086241 -0.0418838 0)
(0.000630811 -0.0423497 0)
(0.000421232 -0.0426415 0)
(0.0002369 -0.0427914 0)
(7.84588e-05 -0.0428369 0)
(0.076535 -1.07777 0)
(0.265839 -1.03976 0)
(0.377767 -0.96936 0)
(0.405372 -0.920595 0)
(0.344174 -0.853933 0)
(0.20234 -0.71681 0)
(0.156577 -0.594335 0)
(0.387643 -0.470322 0)
(0.704155 0.246892 0)
(0.535724 0.554139 0)
(0.276331 0.517058 0)
(0.074184 0.377718 0)
(0.0439734 0.258335 0)
(-0.0503509 0.178737 0)
(0.042919 0.126495 0)
(0.05834 0.0910334 0)
(0.00913228 0.0710777 0)
(0.0122629 0.0549603 0)
(0.0190876 0.042143 0)
(0.0151363 0.0310428 0)
(0.0132553 0.0224467 0)
(0.0119943 0.0159171 0)
(0.00993894 0.0109881 0)
(0.00790175 0.0072859 0)
(0.0063339 0.00462448 0)
(0.00510919 0.00280062 0)
(0.00415825 0.00161277 0)
(0.00342693 0.0008863 0)
(0.00287428 0.000477667 0)
(0.00263033 0.000285948 0)
(0.0245414 -1.19148 0)
(0.10304 -1.07871 0)
(0.151015 -1.01219 0)
(0.140455 -0.900995 0)
(0.071879 -0.802915 0)
(-0.00168918 -0.681285 0)
(0.0919434 -0.644631 0)
(0.293959 -0.541344 0)
(0.732883 0.17192 0)
(0.463018 0.592869 0)
(0.213797 0.594025 0)
(-0.0184371 0.410818 0)
(0.374801 0.235967 0)
(0.450935 0.157945 0)
(1.83642 0.0323711 0)
(1.37958 0.0418829 0)
(0.294328 0.112484 0)
(0.117256 0.0590948 0)
(0.0697384 0.0430622 0)
(0.0481856 0.0314649 0)
(0.0361183 0.0227663 0)
(0.0276979 0.0162342 0)
(0.021101 0.0112285 0)
(0.0162835 0.00744664 0)
(0.0126804 0.00473157 0)
(0.00990719 0.00287836 0)
(0.00779228 0.00166879 0)
(0.00621617 0.000930279 0)
(0.00507924 0.000510446 0)
(0.00453584 0.000287307 0)
(-0.0131016 -1.20878 0)
(-0.0561998 -1.07374 0)
(-0.0741009 -1.00975 0)
(-0.0924616 -0.886246 0)
(-0.115006 -0.774702 0)
(-0.0628433 -0.711956 0)
(0.0918417 -0.719684 0)
(0.412829 -0.586207 0)
(0.285137 0.0759724 0)
(0.56862 0.653639 0)
(0.182617 0.682045 0)
(0.330371 0.334384 0)
(0.551728 0.171346 0)
(1.05927 0.039618 0)
(2.2267 -0.21922 0)
(1.73425 0.263923 0)
(0.37861 0.186324 0)
(0.153855 0.0716958 0)
(0.0889267 0.0474425 0)
(0.0598265 0.0335014 0)
(0.0438603 0.023927 0)
(0.0331647 0.0170268 0)
(0.0250508 0.0117441 0)
(0.0191755 0.00776669 0)
(0.0148072 0.00493402 0)
(0.0114846 0.0030142 0)
(0.00897581 0.00175939 0)
(0.00712238 0.000997512 0)
(0.00579829 0.000557878 0)
(0.0051403 0.000292933 0)
(-0.0410557 -1.13242 0)
(-0.13096 -1.05826 0)
(-0.183067 -0.985325 0)
(-0.194212 -0.881965 0)
(-0.164358 -0.795078 0)
(-0.0605018 -0.777359 0)
(0.097572 -0.804996 0)
(0.357008 -0.709693 0)
(0.651119 0.0553387 0)
(0.651314 0.735916 0)
(0.161946 0.811398 0)
(0.523162 0.277202 0)
(0.665291 0.113174 0)
(0.777917 -0.0637898 0)
(1.26079 -0.427684 0)
(1.1188 0.602073 0)
(0.352913 0.248683 0)
(0.158578 0.0870757 0)
(0.0921956 0.0529238 0)
(0.0619048 0.0360432 0)
(0.0452096 0.0253265 0)
(0.034151 0.0179539 0)
(0.0258607 0.0123451 0)
(0.0198148 0.00814275 0)
(0.0152841 0.00517841 0)
(0.0118395 0.00317812 0)
(0.0092363 0.00186881 0)
(0.00730608 0.00107745 0)
(0.00593219 0.000610854 0)
(0.00524396 0.000300694 0)
(-0.041523 -1.02612 0)
(-0.137921 -1.00482 0)
(-0.189759 -0.962766 0)
(-0.194383 -0.890504 0)
(-0.152352 -0.838203 0)
(-0.0618583 -0.843838 0)
(0.0851988 -0.901861 0)
(0.402765 -0.984447 0)
(1.08438 0.528036 0)
(0.634627 0.808897 0)
(0.426192 0.840327 0)
(0.454157 0.297192 0)
(0.510632 0.123507 0)
(0.486268 -0.098703 0)
(0.255776 -0.486896 0)
(0.256236 0.795903 0)
(0.288398 0.287367 0)
(0.151163 0.102463 0)
(0.0902398 0.0587784 0)
(0.0610681 0.0387924 0)
(0.0446347 0.026823 0)
(0.0338112 0.0189322 0)
(0.0258003 0.0129838 0)
(0.0198704 0.00855436 0)
(0.0153582 0.0054571 0)
(0.0119046 0.00336644 0)
(0.00927658 0.00199628 0)
(0.00731496 0.00116851 0)
(0.00592089 0.000666234 0)
(0.00522607 0.000308891 0)
(-0.0292168 -0.929655 0)
(-0.101129 -0.945427 0)
(-0.147066 -0.940022 0)
(-0.161869 -0.899253 0)
(-0.138632 -0.874104 0)
(-0.0801401 -0.899987 0)
(0.0348036 -1.00158 0)
(0.383542 -1.19055 0)
(1.67201 0.367844 0)
(0.658763 0.864845 0)
(0.645659 0.672721 0)
(0.284954 0.175885 0)
(0.440066 0.147521 0)
(0.321759 -0.0683096 0)
(-0.332864 -0.360538 0)
(-0.193352 0.73337 0)
(0.217996 0.302399 0)
(0.138519 0.116317 0)
(0.0863703 0.0646575 0)
(0.0592943 0.0416429 0)
(0.0435286 0.0283823 0)
(0.033137 0.019943 0)
(0.0255238 0.0136534 0)
(0.0197854 0.00900234 0)
(0.0153464 0.00577115 0)
(0.0119147 0.0035815 0)
(0.00927695 0.00214441 0)
(0.0072972 0.00127204 0)
(0.00589065 0.000724819 0)
(0.00519167 0.000318078 0)
(-0.0143825 -0.86463 0)
(-0.0593399 -0.896959 0)
(-0.102775 -0.908185 0)
(-0.134093 -0.894218 0)
(-0.137654 -0.89107 0)
(-0.118105 -0.935367 0)
(-0.066667 -1.0751 0)
(0.0891868 -1.45647 0)
(0.530044 -0.407794 0)
(0.792605 0.987797 0)
(0.523589 0.679115 0)
(1.20616 0.179489 0)
(0.433788 0.189219 0)
(0.22611 0.00246603 0)
(-0.364151 -0.148432 0)
(-0.216425 0.556729 0)
(0.154523 0.299045 0)
(0.122704 0.127551 0)
(0.0812027 0.0702997 0)
(0.0569302 0.0445273 0)
(0.0421425 0.0299893 0)
(0.0323036 0.0209752 0)
(0.025133 0.0143459 0)
(0.0196225 0.00948267 0)
(0.0152901 0.0061156 0)
(0.0119002 0.00382185 0)
(0.00926414 0.00231287 0)
(0.00727487 0.00138783 0)
(0.00586261 0.000787885 0)
(0.00515759 0.00032934 0)
(-0.00541675 -0.83065 0)
(-0.0346772 -0.854376 0)
(-0.0787281 -0.867384 0)
(-0.121214 -0.871087 0)
(-0.149839 -0.884669 0)
(-0.17141 -0.938204 0)
(-0.202484 -1.08138 0)
(-0.311294 -1.45915 0)
(-0.687522 -0.792973 0)
(0.308744 1.4129 0)
(0.932522 0.878702 0)
(0.612644 0.257333 0)
(0.444061 0.271074 0)
(0.154454 0.087423 0)
(-0.256557 0.00578475 0)
(-0.175777 0.422412 0)
(0.102083 0.283684 0)
(0.104838 0.135498 0)
(0.0748365 0.0754403 0)
(0.0539969 0.0473651 0)
(0.0404885 0.0316221 0)
(0.0313223 0.0220166 0)
(0.0246311 0.0150545 0)
(0.019382 0.00999066 0)
(0.0151867 0.00648527 0)
(0.0118583 0.00408549 0)
(0.0092389 0.00250032 0)
(0.00724724 0.00151509 0)
(0.00583686 0.000856583 0)
(0.00512406 0.000343673 0)
(-0.00571505 -0.807665 0)
(-0.0342975 -0.812237 0)
(-0.0772323 -0.820559 0)
(-0.123825 -0.832834 0)
(-0.17089 -0.853923 0)
(-0.227267 -0.902939 0)
(-0.32536 -1.01033 0)
(-0.586448 -1.22409 0)
(-1.29896 -0.932746 0)
(-0.381515 0.692317 0)
(1.39083 0.844632 0)
(0.981808 0.411232 0)
(0.402921 0.477502 0)
(0.0847596 0.170231 0)
(-0.183357 0.0988975 0)
(-0.141324 0.335271 0)
(0.0609967 0.261932 0)
(0.0859691 0.139876 0)
(0.0673685 0.0798131 0)
(0.0504866 0.0500573 0)
(0.03855 0.0332474 0)
(0.0301845 0.0230531 0)
(0.0240121 0.015773 0)
(0.0190594 0.0105206 0)
(0.0150305 0.00687588 0)
(0.0117838 0.00437032 0)
(0.00919883 0.00270505 0)
(0.00721253 0.00165309 0)
(0.00581128 0.000931627 0)
(0.00508961 0.000361729 0)
(-0.0115692 -0.77125 0)
(-0.0470882 -0.767176 0)
(-0.0871449 -0.771837 0)
(-0.134984 -0.7838 0)
(-0.19301 -0.802182 0)
(-0.270778 -0.835268 0)
(-0.398791 -0.890292 0)
(-0.659431 -0.943159 0)
(-1.17644 -0.710807 0)
(-0.672141 -0.07107 0)
(0.0879754 0.103153 0)
(1.43883 0.885628 0)
(0.0792495 0.663555 0)
(0.00821776 0.233097 0)
(-0.144534 0.153681 0)
(-0.116132 0.278478 0)
(0.0298591 0.237895 0)
(0.0670882 0.140761 0)
(0.0589705 0.0831705 0)
(0.046409 0.0524884 0)
(0.0363156 0.034819 0)
(0.0288823 0.0240679 0)
(0.0232729 0.0164936 0)
(0.0186534 0.0110659 0)
(0.0148198 0.00728433 0)
(0.0116748 0.00467411 0)
(0.00914184 0.00292503 0)
(0.00717071 0.00180106 0)
(0.00578379 0.00101321 0)
(0.00505335 0.00038385 0)
(-0.0138799 -0.715929 0)
(-0.053018 -0.717412 0)
(-0.0947048 -0.720034 0)
(-0.144984 -0.725918 0)
(-0.2082 -0.735469 0)
(-0.292972 -0.748693 0)
(-0.419012 -0.759031 0)
(-0.618925 -0.728208 0)
(-0.865357 -0.522209 0)
(-0.829015 -0.227402 0)
(-0.894095 -0.171333 0)
(-0.891959 0.785894 0)
(-0.16296 0.553963 0)
(-0.0680633 0.261412 0)
(-0.128621 0.182362 0)
(-0.10007 0.239896 0)
(0.00655928 0.214085 0)
(0.0490018 0.138512 0)
(0.0498771 0.0853127 0)
(0.0417954 0.0545364 0)
(0.0337788 0.0362803 0)
(0.0274048 0.0250411 0)
(0.0224075 0.0172071 0)
(0.01816 0.0116204 0)
(0.0145508 0.00770852 0)
(0.0115277 0.00499474 0)
(0.00906223 0.0031583 0)
(0.00711797 0.00195821 0)
(0.00574879 0.00110125 0)
(0.00501209 0.000410169 0)
(-0.0126459 -0.658201 0)
(-0.0512694 -0.659121 0)
(-0.0963022 -0.659673 0)
(-0.14858 -0.660354 0)
(-0.212133 -0.660508 0)
(-0.293438 -0.656928 0)
(-0.402117 -0.639607 0)
(-0.544482 -0.580776 0)
(-0.68525 -0.431637 0)
(-0.732783 -0.236255 0)
(-0.797342 -0.0609079 0)
(-0.695513 0.380198 0)
(-0.274984 0.413557 0)
(-0.130705 0.256421 0)
(-0.126562 0.191522 0)
(-0.091747 0.211415 0)
(-0.0110125 0.191707 0)
(0.0322934 0.133646 0)
(0.0403761 0.0861021 0)
(0.0367085 0.0560764 0)
(0.0309416 0.0375643 0)
(0.0257412 0.0259477 0)
(0.0214087 0.0179012 0)
(0.0175742 0.0121766 0)
(0.0142183 0.00814516 0)
(0.0113384 0.00532941 0)
(0.0089544 0.00340285 0)
(0.00704986 0.00212328 0)
(0.00570201 0.00119524 0)
(0.00496328 0.000440573 0)
(-0.01336 -0.596216 0)
(-0.0517484 -0.595792 0)
(-0.0950527 -0.594067 0)
(-0.145281 -0.590446 0)
(-0.204917 -0.583361 0)
(-0.277291 -0.56893 0)
(-0.36572 -0.538664 0)
(-0.468027 -0.476467 0)
(-0.56336 -0.364271 0)
(-0.619507 -0.214003 0)
(-0.645604 -0.0341966 0)
(-0.549386 0.211437 0)
(-0.310906 0.291682 0)
(-0.172749 0.22876 0)
(-0.13101 0.185855 0)
(-0.0890566 0.18783 0)
(-0.0245838 0.171058 0)
(0.0172985 0.12672 0)
(0.0307714 0.0854772 0)
(0.0312386 0.056993 0)
(0.0278153 0.0385996 0)
(0.0238849 0.026758 0)
(0.0202738 0.0185606 0)
(0.0168944 0.0127258 0)
(0.0138204 0.00858907 0)
(0.0111068 0.00567485 0)
(0.00881751 0.00365679 0)
(0.00696516 0.00229499 0)
(0.00564356 0.00129448 0)
(0.00490781 0.00047473 0)
(-0.0127688 -0.531306 0)
(-0.0488906 -0.530025 0)
(-0.0895173 -0.526549 0)
(-0.135819 -0.519955 0)
(-0.189159 -0.508492 0)
(-0.250908 -0.488763 0)
(-0.32146 -0.454744 0)
(-0.397219 -0.397489 0)
(-0.466494 -0.308643 0)
(-0.512423 -0.189238 0)
(-0.520963 -0.0424693 0)
(-0.451399 0.117443 0)
(-0.3079 0.198842 0)
(-0.194384 0.19027 0)
(-0.136527 0.16967 0)
(-0.0897056 0.166106 0)
(-0.0353131 0.151872 0)
(0.00416779 0.118242 0)
(0.0213617 0.0834514 0)
(0.0255049 0.0571898 0)
(0.0244264 0.0393148 0)
(0.0218382 0.027438 0)
(0.0190046 0.0191669 0)
(0.0161199 0.0132567 0)
(0.0133561 0.00903235 0)
(0.0108316 0.00602693 0)
(0.00864989 0.00391814 0)
(0.00686123 0.00247226 0)
(0.00557158 0.00139829 0)
(0.00484434 0.000512221 0)
(-0.0117644 -0.466269 0)
(-0.0444611 -0.464488 0)
(-0.0810311 -0.459964 0)
(-0.122081 -0.451854 0)
(-0.168188 -0.438598 0)
(-0.219623 -0.41755 0)
(-0.275681 -0.384668 0)
(-0.333133 -0.334776 0)
(-0.384691 -0.263227 0)
(-0.419212 -0.169137 0)
(-0.422723 -0.0565255 0)
(-0.37678 0.0573668 0)
(-0.286862 0.130667 0)
(-0.199688 0.149636 0)
(-0.139757 0.147088 0)
(-0.0915918 0.144806 0)
(-0.0438384 0.133776 0)
(-0.00706596 0.10865 0)
(0.012433 0.0801094 0)
(0.0196605 0.0565994 0)
(0.0208278 0.0396411 0)
(0.0196183 0.0279469 0)
(0.0176083 0.0196957 0)
(0.015252 0.0137539 0)
(0.012824 0.00946439 0)
(0.0105088 0.00638022 0)
(0.00844727 0.00418488 0)
(0.00673244 0.00265469 0)
(0.00548101 0.00150639 0)
(0.00476791 0.000552808 0)
(-0.0104737 -0.403557 0)
(-0.0390623 -0.401494 0)
(-0.0708629 -0.39656 0)
(-0.106136 -0.388132 0)
(-0.144994 -0.374941 0)
(-0.187186 -0.355003 0)
(-0.231701 -0.32561 0)
(-0.275922 -0.283618 0)
(-0.314891 -0.226301 0)
(-0.340958 -0.153097 0)
(-0.344307 -0.0677909 0)
(-0.315676 0.0173337 0)
(-0.258198 0.0808368 0)
(-0.193596 0.111754 0)
(-0.139197 0.121663 0)
(-0.0930681 0.123545 0)
(-0.0504214 0.116429 0)
(-0.0164342 0.0982849 0)
(0.00422245 0.0755864 0)
(0.0138684 0.0551889 0)
(0.0170874 0.0395173 0)
(0.017249 0.0282397 0)
(0.0160926 0.0201192 0)
(0.0142907 0.0142006 0)
(0.012221 0.00987575 0)
(0.0101326 0.00673035 0)
(0.00820525 0.00445642 0)
(0.00657384 0.00284347 0)
(0.00536803 0.00161973 0)
(0.00467447 0.000596738 0)
(-0.00905611 -0.344986 0)
(-0.0333455 -0.342846 0)
(-0.0602355 -0.337981 0)
(-0.0897818 -0.330045 0)
(-0.121867 -0.318049 0)
(-0.156062 -0.300497 0)
(-0.191375 -0.275533 0)
(-0.225759 -0.241188 0)
(-0.255738 -0.195853 0)
(-0.276137 -0.139387 0)
(-0.280607 -0.0746539 0)
(-0.263882 -0.0094042 0)
(-0.227069 0.0444655 0)
(-0.18034 0.0788431 0)
(-0.134665 0.0961281 0)
(-0.093056 0.102602 0)
(-0.0550876 0.0996793 0)
(-0.0239554 0.0874141 0)
(-0.00306722 0.070056 0)
(0.00830685 0.052964 0)
(0.0132969 0.0388961 0)
(0.0147665 0.028272 0)
(0.0144698 0.0204095 0)
(0.013238 0.0145814 0)
(0.0115446 0.0102597 0)
(0.00969963 0.00707432 0)
(0.00792124 0.00473271 0)
(0.00638365 0.00304005 0)
(0.0052313 0.00173969 0)
(0.00456188 0.000644116 0)
(-0.00767418 -0.291631 0)
(-0.0279043 -0.289599 0)
(-0.0501384 -0.285173 0)
(-0.0743474 -0.278232 0)
(-0.100365 -0.268 0)
(-0.127759 -0.253333 0)
(-0.155689 -0.232931 0)
(-0.182608 -0.205521 0)
(-0.206077 -0.170145 0)
(-0.222628 -0.126828 0)
(-0.228175 -0.0775005 0)
(-0.219375 -0.0268656 0)
(-0.196135 0.0180997 0)
(-0.163081 0.051546 0)
(-0.126724 0.0723148 0)
(-0.0910332 0.0825357 0)
(-0.0577924 0.0835659 0)
(-0.0296584 0.0762948 0)
(-0.00928749 0.0637351 0)
(0.00314864 0.0499709 0)
(0.00956079 0.037753 0)
(0.0122182 0.0280072 0)
(0.012758 0.0205412 0)
(0.0121006 0.0148818 0)
(0.0107958 0.0106097 0)
(0.00920812 0.00740838 0)
(0.00759366 0.00501213 0)
(0.00616062 0.00324416 0)
(0.00506954 0.00186623 0)
(0.00442879 0.000694338 0)
(-0.00644184 -0.243623 0)
(-0.0230968 -0.242077 0)
(-0.0411613 -0.238586 0)
(-0.0605879 -0.23297 0)
(-0.081295 -0.224668 0)
(-0.102966 -0.212869 0)
(-0.124952 -0.196674 0)
(-0.146109 -0.175239 0)
(-0.164731 -0.147956 0)
(-0.178486 -0.114869 0)
(-0.18468 -0.0771808 0)
(-0.181011 -0.0377132 0)
(-0.166826 -0.000697376 0)
(-0.144025 0.029707 0)
(-0.116262 0.0512792 0)
(-0.0869345 0.0639428 0)
(-0.0585365 0.0682772 0)
(-0.0335757 0.0651813 0)
(-0.0143143 0.0568312 0)
(-0.00144591 0.0462949 0)
(0.00599508 0.0360906 0)
(0.00966665 0.0274203 0)
(0.0109879 0.0204913 0)
(0.0108933 0.0150872 0)
(0.0099811 0.0109162 0)
(0.00866054 0.00772585 0)
(0.00722299 0.00529022 0)
(0.00590391 0.00345253 0)
(0.00488102 0.00199723 0)
(0.00427321 0.000746185 0)
(-0.00521029 -0.201277 0)
(-0.0184762 -0.20045 0)
(-0.0328552 -0.198197 0)
(-0.048267 -0.194054 0)
(-0.0646167 -0.187616 0)
(-0.0816604 -0.178399 0)
(-0.0989284 -0.165824 0)
(-0.115609 -0.149329 0)
(-0.13052 -0.128503 0)
(-0.142081 -0.10334 0)
(-0.148466 -0.0745466 0)
(-0.148013 -0.0437998 0)
(-0.139882 -0.0137148 0)
(-0.124642 0.0127945 0)
(-0.104201 0.0334803 0)
(-0.0810036 0.0472908 0)
(-0.0574198 0.054065 0)
(-0.0357708 0.0543308 0)
(-0.0180821 0.049582 0)
(-0.00534967 0.0420737 0)
(0.00271772 0.0339392 0)
(0.00718448 0.0265008 0)
(0.00919705 0.0202424 0)
(0.00963312 0.0151825 0)
(0.009107 0.0111674 0)
(0.00805816 0.00801894 0)
(0.00680709 0.00556219 0)
(0.00561066 0.00366135 0)
(0.00466235 0.00213053 0)
(0.00409178 0.000798824 0)
(-0.00404659 -0.165551 0)
(-0.0142423 -0.165137 0)
(-0.0253999 -0.16374 0)
(-0.0374521 -0.160829 0)
(-0.0502744 -0.156057 0)
(-0.0636452 -0.149093 0)
(-0.0772107 -0.139552 0)
(-0.0903988 -0.127056 0)
(-0.1024 -0.111312 0)
(-0.112133 -0.0922762 0)
(-0.11834 -0.0703345 0)
(-0.119793 -0.0464718 0)
(-0.115661 -0.0223119 0)
(-0.105895 0.000140148 0)
(-0.0913711 0.0189832 0)
(-0.073657 0.0328768 0)
(-0.054649 0.0411879 0)
(-0.0363498 0.0440053 0)
(-0.0205693 0.0422321 0)
(-0.00844565 0.0374474 0)
(-0.000155687 0.031356 0)
(0.00485256 0.0252564 0)
(0.00743179 0.0197841 0)
(0.00834377 0.0151553 0)
(0.00818377 0.0113525 0)
(0.00740379 0.00828038 0)
(0.00634411 0.00582229 0)
(0.00527764 0.00386754 0)
(0.00440982 0.00226431 0)
(0.00388097 0.000851634 0)
(-0.00310894 -0.136149 0)
(-0.0108368 -0.135896 0)
(-0.0193368 -0.134957 0)
(-0.0285759 -0.132897 0)
(-0.0384639 -0.129425 0)
(-0.0488342 -0.124283 0)
(-0.0594253 -0.117188 0)
(-0.069826 -0.107864 0)
(-0.0794704 -0.0960903 0)
(-0.0876118 -0.0817923 0)
(-0.093368 -0.0651564 0)
(-0.0958307 -0.0467461 0)
(-0.0942685 -0.0275631 0)
(-0.0883726 -0.0089587 0)
(-0.0784393 0.0075904 0)
(-0.0653679 0.020805 0)
(-0.0505126 0.0298417 0)
(-0.0354722 0.0344414 0)
(-0.0218053 0.0350201 0)
(-0.0106677 0.0325933 0)
(-0.00253695 0.0284472 0)
(0.00275223 0.0237163 0)
(0.00574372 0.0191174 0)
(0.00705318 0.0149986 0)
(0.00722421 0.0114637 0)
(0.00670146 0.00850425 0)
(0.00583354 0.00606514 0)
(0.0049019 0.00406832 0)
(0.00412014 0.00239651 0)
(0.00363717 0.000904012 0)
(-0.00236461 -0.112148 0)
(-0.00817066 -0.111976 0)
(-0.0145744 -0.111307 0)
(-0.0215657 -0.109812 0)
(-0.0290877 -0.107277 0)
(-0.0370246 -0.103512 0)
(-0.0451928 -0.0983006 0)
(-0.0533051 -0.0914303 0)
(-0.0609707 -0.0827136 0)
(-0.0676725 -0.0720548 0)
(-0.0727892 -0.059519 0)
(-0.075651 -0.0454107 0)
(-0.0756521 -0.0303361 0)
(-0.0724076 -0.0151847 0)
(-0.0659045 -0.0010406 0)
(-0.0565918 0.0110232 0)
(-0.0453425 0.0201378 0)
(-0.0333431 0.0258361 0)
(-0.0218655 0.0281688 0)
(-0.0119872 0.0276974 0)
(-0.00434082 0.0253126 0)
(0.000961891 0.0219331 0)
(0.00418751 0.0182585 0)
(0.00579393 0.0147122 0)
(0.00624493 0.0114965 0)
(0.00595711 0.00868526 0)
(0.00527535 0.00628596 0)
(0.00448089 0.00425981 0)
(0.0037902 0.00252556 0)
(0.00335663 0.000955425 0)
(-0.00178818 -0.0926754 0)
(-0.00613473 -0.0925443 0)
(-0.0109286 -0.0920499 0)
(-0.0161647 -0.0909605 0)
(-0.0218063 -0.08912 0)
(-0.0277795 -0.086384 0)
(-0.0339685 -0.0825877 0)
(-0.0401857 -0.0775611 0)
(-0.0461692 -0.0711469 0)
(-0.0515649 -0.0632422 0)
(-0.0559364 -0.0538411 0)
(-0.0587931 -0.043091 0)
(-0.0596532 -0.0313434 0)
(-0.0581426 -0.0191666 0)
(-0.0541088 -0.00731829 0)
(-0.0477146 0.00336071 0)
(-0.0394715 0.0120937 0)
(-0.0301961 0.0183283 0)
(-0.0208666 0.021874 0)
(-0.0124161 0.0229467 0)
(-0.00551665 0.0220896 0)
(-0.00045551 0.0199793 0)
(0.0028167 0.0172404 0)
(0.00460095 0.0143069 0)
(0.0052644 0.0114512 0)
(0.00517841 0.00881974 0)
(0.00467061 0.00648048 0)
(0.00401253 0.00443856 0)
(0.00341634 0.00264894 0)
(0.00303588 0.00100549 0)
(-0.00133339 -0.0769481 0)
(-0.00453797 -0.0768805 0)
(-0.00806358 -0.0765625 0)
(-0.0119109 -0.0758045 0)
(-0.0160657 -0.0744872 0)
(-0.0204867 -0.0725069 0)
(-0.025101 -0.0697425 0)
(-0.0297851 -0.0660649 0)
(-0.0343651 -0.0613468 0)
(-0.0386019 -0.05549 0)
(-0.0421934 -0.0484519 0)
(-0.0447888 -0.040284 0)
(-0.0460219 -0.0311752 0)
(-0.0455712 -0.0214719 0)
(-0.0432377 -0.0116837 0)
(-0.0390241 -0.00243145 0)
(-0.0331959 0.00564245 0)
(-0.0262702 0.0119911 0)
(-0.0189545 0.0162914 0)
(-0.0120029 0.0185154 0)
(-0.00604489 0.0189229 0)
(-0.00145475 0.0179601 0)
(0.00167925 0.0161148 0)
(0.00350709 0.013805 0)
(0.00430187 0.0113351 0)
(0.00437401 0.00890714 0)
(0.00402088 0.00664515 0)
(0.00349469 0.00460094 0)
(0.00299547 0.00276407 0)
(0.0026709 0.00105281 0)
(-0.000951145 -0.0646582 0)
(-0.00321964 -0.0646146 0)
(-0.00573365 -0.0643901 0)
(-0.00849738 -0.0638432 0)
(-0.0114984 -0.0628871 0)
(-0.0147068 -0.0614451 0)
(-0.0180737 -0.0594249 0)
(-0.0215186 -0.0567262 0)
(-0.0249291 -0.0532452 0)
(-0.0281482 -0.0488905 0)
(-0.0309741 -0.0436028 0)
(-0.0331633 -0.0373802 0)
(-0.0344492 -0.0303103 0)
(-0.0345768 -0.0225929 0)
(-0.0333532 -0.014556 0)
(-0.0307093 -0.00663845 0)
(-0.0267499 0.000656269 0)
(-0.0217845 0.00684027 0)
(-0.0162867 0.0115363 0)
(-0.0108261 0.0145623 0)
(-0.00593724 0.0159636 0)
(-0.0020023 0.0159785 0)
(0.000811301 0.0149516 0)
(0.00254207 0.0132434 0)
(0.00337442 0.0111626 0)
(0.00355216 0.00895075 0)
(0.0033283 0.00677835 0)
(0.00292586 0.0047428 0)
(0.00252454 0.00286799 0)
(0.00225832 0.00109579 0)
(-0.000663226 -0.0553615 0)
(-0.00224071 -0.0553091 0)
(-0.00397883 -0.055113 0)
(-0.00588203 -0.0546879 0)
(-0.00794902 -0.0539729 0)
(-0.0101656 -0.0529047 0)
(-0.0125038 -0.0514084 0)
(-0.0149155 -0.0494026 0)
(-0.0173322 -0.0467995 0)
(-0.019654 -0.0435158 0)
(-0.0217487 -0.0394874 0)
(-0.0234536 -0.0346851 0)
(-0.024584 -0.0291367 0)
(-0.0249532 -0.0229474 0)
(-0.0244019 -0.0163193 0)
(-0.0228404 -0.00955232 0)
(-0.0202901 -0.00302611 0)
(-0.0169146 0.00284497 0)
(-0.0130128 0.00768462 0)
(-0.00898132 0.0112247 0)
(-0.00523195 0.0133605 0)
(-0.00209868 0.0141623 0)
(0.000232081 0.0138376 0)
(0.00172474 0.0126727 0)
(0.00249544 0.0109583 0)
(0.00271842 0.0089581 0)
(0.00259382 0.00687984 0)
(0.00230454 0.00486107 0)
(0.00200067 0.00295721 0)
(0.00179502 0.0011332 0)
(-0.000425478 -0.0484377 0)
(-0.00143752 -0.048454 0)
(-0.00254586 -0.0483838 0)
(-0.00375196 -0.0481147 0)
(-0.00505754 -0.04759 0)
(-0.00645919 -0.0467687 0)
(-0.00794629 -0.0456029 0)
(-0.009494 -0.0440366 0)
(-0.0110624 -0.0420042 0)
(-0.0125912 -0.0394353 0)
(-0.0139993 -0.0362643 0)
(-0.0151856 -0.0324452 0)
(-0.0160323 -0.0279694 0)
(-0.0164161 -0.0228828 0)
(-0.0162246 -0.0173062 0)
(-0.0153809 -0.0114421 0)
(-0.0138721 -0.00557461 0)
(-0.0117727 -4.70729e-05 0)
(-0.00925632 0.00478919 0)
(-0.00656956 0.0086256 0)
(-0.00399229 0.0112624 0)
(-0.00177186 0.0126476 0)
(-6.89074e-05 0.012875 0)
(0.00105794 0.0121573 0)
(0.00166822 0.0107556 0)
(0.00187454 0.00894207 0)
(0.00181686 0.00695103 0)
(0.00162878 0.00495225 0)
(0.00142133 0.00302815 0)
(0.00127833 0.00116333 0)
(-0.000203352 -0.0442917 0)
(-0.00068385 -0.0442807 0)
(-0.0012286 -0.0441841 0)
(-0.00184198 -0.0439286 0)
(-0.00251964 -0.0434744 0)
(-0.00325351 -0.0427897 0)
(-0.00403442 -0.0418322 0)
(-0.00484733 -0.0405476 0)
(-0.00567024 -0.0388722 0)
(-0.00647342 -0.0367413 0)
(-0.00721956 -0.0340938 0)
(-0.00786079 -0.0308791 0)
(-0.00833829 -0.0270712 0)
(-0.00858767 -0.0226829 0)
(-0.00854755 -0.017787 0)
(-0.00817213 -0.0125273 0)
(-0.00744572 -0.00712552 0)
(-0.00639538 -0.00187389 0)
(-0.00509802 0.00290383 0)
(-0.00368638 0.0068889 0)
(-0.0023031 0.00982253 0)
(-0.00108304 0.0115803 0)
(-0.000126576 0.0121807 0)
(0.000520321 0.0117728 0)
(0.000881276 0.0105954 0)
(0.00101352 0.00891908 0)
(0.000993439 0.00699447 0)
(0.000896115 0.00501295 0)
(0.000784483 0.00307649 0)
(0.00070657 0.00118404 0)
(-6.54407e-05 -0.0428362 0)
(-0.00021818 -0.0427986 0)
(-0.000395921 -0.0426692 0)
(-0.000599294 -0.0424049 0)
(-0.000825133 -0.0419741 0)
(-0.00106994 -0.0413398 0)
(-0.00132941 -0.0404567 0)
(-0.00159779 -0.039273 0)
(-0.00186904 -0.0377282 0)
(-0.00213461 -0.0357578 0)
(-0.00238185 -0.0332991 0)
(-0.00259473 -0.0302997 0)
(-0.00275473 -0.0267294 0)
(-0.0028414 -0.0225915 0)
(-0.00283449 -0.0179426 0)
(-0.00271828 -0.0129053 0)
(-0.00248765 -0.00767809 0)
(-0.00215414 -0.00253776 0)
(-0.00171707 0.00221175 0)
(-0.00126046 0.0062415 0)
(-0.000800043 0.00927289 0)
(-0.000384812 0.0111654 0)
(-5.52448e-05 0.0119054 0)
(0.000169802 0.0116175 0)
(0.000296391 0.0105284 0)
(0.000343622 0.00890674 0)
(0.000337748 0.0070093 0)
(0.000304797 0.00503537 0)
(0.000266812 0.00309477 0)
(0.000239996 0.00119194 0)
(-0.00019024 8.93762e-06 0)
(-0.000494557 1.57502e-05 0)
(-0.000999899 2.93487e-05 0)
(-0.001836 5.2828e-05 0)
(-0.00315669 9.02856e-05 0)
(-0.00513602 0.000146379 0)
(-0.00795407 0.000225601 0)
(-0.0117727 0.00033104 0)
(-0.0167024 0.000462454 0)
(-0.0227576 0.000613685 0)
(-0.0298124 0.000770013 0)
(-0.0375603 0.000906731 0)
(-0.0455105 0.000990962 0)
(-0.0530293 0.000987818 0)
(-0.0594339 0.000869836 0)
(-0.0641221 0.000626064 0)
(-0.0666857 0.000266512 0)
(-0.0669776 -0.000180514 0)
(-0.0651067 -0.00067589 0)
(-0.0613795 -0.00117913 0)
(-0.0562142 -0.00165587 0)
(-0.0500627 -0.00208167 0)
(-0.0433399 -0.00244322 0)
(-0.036401 -0.00273597 0)
(-0.0295148 -0.00296244 0)
(-0.022879 -0.00312901 0)
(-0.0166182 -0.00324429 0)
(-0.010806 -0.0033172 0)
(-0.00547272 -0.00335641 0)
(-0.00062815 -0.00336988 0)
(-0.000190246 2.53039e-05 0)
(-0.000494562 4.45895e-05 0)
(-0.000999897 8.30863e-05 0)
(-0.001836 0.000149566 0)
(-0.00315673 0.000255647 0)
(-0.00513625 0.000414555 0)
(-0.00795492 0.000639121 0)
(-0.0117753 0.00093827 0)
(-0.0167092 0.00131165 0)
(-0.0227738 0.0017423 0)
(-0.0298472 0.00218906 0)
(-0.0376282 0.0025822 0)
(-0.0456308 0.00282818 0)
(-0.0532236 0.00282666 0)
(-0.0597205 0.00249751 0)
(-0.0645103 0.00180738 0)
(-0.0671714 0.000783373 0)
(-0.0675434 -0.000493768 0)
(-0.0657253 -0.00191136 0)
(-0.0620188 -0.00335255 0)
(-0.0568428 -0.00471815 0)
(-0.0506537 -0.00593759 0)
(-0.0438728 -0.00697273 0)
(-0.0368624 -0.00781067 0)
(-0.0298972 -0.0084588 0)
(-0.0231801 -0.00893552 0)
(-0.0168391 -0.0092655 0)
(-0.0109506 -0.00947446 0)
(-0.00554651 -0.00958759 0)
(-0.000636711 -0.00962585 0)
(-0.000189196 4.1604e-05 0)
(-0.000491811 7.33108e-05 0)
(-0.000994313 0.000136603 0)
(-0.00182574 0.000245909 0)
(-0.00313914 0.00042034 0)
(-0.00510784 0.000681675 0)
(-0.00791163 0.00105109 0)
(-0.0117133 0.00154345 0)
(-0.0166263 0.00215857 0)
(-0.0226725 0.00286919 0)
(-0.0297382 0.00360855 0)
(-0.0375343 0.00426283 0)
(-0.0455876 0.00467836 0)
(-0.0532757 0.00468885 0)
(-0.0599124 0.00415956 0)
(-0.0648738 0.00303177 0)
(-0.0677156 0.00134664 0)
(-0.0682512 -0.000764367 0)
(-0.0665575 -0.00311507 0)
(-0.0629231 -0.00551063 0)
(-0.0577642 -0.00778466 0)
(-0.0515423 -0.00981801 0)
(-0.0446891 -0.0115457 0)
(-0.0375784 -0.0129454 0)
(-0.0304962 -0.0140285 0)
(-0.0236545 -0.0148255 0)
(-0.0171888 -0.0153773 0)
(-0.0111799 -0.015727 0)
(-0.00566299 -0.0159158 0)
(-0.000650177 -0.0159798 0)
(-0.000187636 5.77928e-05 0)
(-0.000487725 0.000101832 0)
(-0.00098602 0.000189747 0)
(-0.00181051 0.000341584 0)
(-0.00311301 0.000583902 0)
(-0.00506563 0.000947002 0)
(-0.00784728 0.00146042 0)
(-0.0116209 0.00214512 0)
(-0.0165027 0.00300151 0)
(-0.0225212 0.00399293 0)
(-0.0295749 0.00502834 0)
(-0.0373921 0.0059514 0)
(-0.0455192 0.00654932 0)
(-0.0533482 0.00658913 0)
(-0.0601931 0.00587835 0)
(-0.0654119 0.00432789 0)
(-0.0685266 0.0019879 0)
(-0.069311 -0.000962764 0)
(-0.0678079 -0.00426424 0)
(-0.0642857 -0.0076415 0)
(-0.0591553 -0.0108569 0)
(-0.0528861 -0.0137383 0)
(-0.0459248 -0.0161909 0)
(-0.0386632 -0.0181804 0)
(-0.0314042 -0.0197215 0)
(-0.0243743 -0.0208562 0)
(-0.0177194 -0.0216422 0)
(-0.0115279 -0.0221403 0)
(-0.00584021 -0.0224093 0)
(-0.000670618 -0.0225005 0)
(-0.000185571 7.38243e-05 0)
(-0.000482315 0.000130074 0)
(-0.000975038 0.00024237 0)
(-0.00179033 0.000436327 0)
(-0.0030784 0.000745884 0)
(-0.00500972 0.00120982 0)
(-0.00776199 0.00186607 0)
(-0.0114985 0.00274188 0)
(-0.0163386 0.00383886 0)
(-0.0223196 0.00511211 0)
(-0.0293558 0.00644823 0)
(-0.0371989 0.00765059 0)
(-0.0454215 0.0084487 0)
(-0.0534354 0.00854212 0)
(-0.0605564 0.00767641 0)
(-0.0661201 0.00572509 0)
(-0.069604 0.00273997 0)
(-0.070728 -0.00105737 0)
(-0.0694885 -0.00533428 0)
(-0.066124 -0.00973169 0)
(-0.0610379 -0.013935 0)
(-0.054709 -0.0177136 0)
(-0.0476042 -0.0209374 0)
(-0.0401396 -0.0235571 0)
(-0.0326412 -0.0255891 0)
(-0.0253554 -0.0270866 0)
(-0.018443 -0.0281247 0)
(-0.0120032 -0.0287828 0)
(-0.00608213 -0.029138 0)
(-0.000698436 -0.0292585 0)
(-0.000183007 8.96551e-05 0)
(-0.000475595 0.000157959 0)
(-0.000961399 0.000294329 0)
(-0.00176527 0.000529882 0)
(-0.00303541 0.000905855 0)
(-0.00494024 0.00146945 0)
(-0.00765596 0.002267 0)
(-0.011346 0.00333233 0)
(-0.0161339 0.00466897 0)
(-0.0220671 0.00622529 0)
(-0.0290795 0.00786789 0)
(-0.0369516 0.00936274 0)
(-0.0452888 0.0103837 0)
(-0.0535293 0.0105622 0)
(-0.0609939 0.00957652 0)
(-0.0669922 0.00725386 0)
(-0.0709468 0.00363785 0)
(-0.0725097 -0.00101387 0)
(-0.0716152 -0.00629735 0)
(-0.0684624 -0.0117649 0)
(-0.0634423 -0.0170176 0)
(-0.0570442 -0.0217582 0)
(-0.0497606 -0.0258149 0)
(-0.0420386 -0.029119 0)
(-0.0342345 -0.0316861 0)
(-0.0266202 -0.0335804 0)
(-0.0193765 -0.0348945 0)
(-0.0126163 -0.0357282 0)
(-0.00639429 -0.0361782 0)
(-0.000734505 -0.0363309 0)
(-0.000179951 0.000105243 0)
(-0.000467585 0.000185411 0)
(-0.00094514 0.000345484 0)
(-0.00173539 0.000621994 0)
(-0.00298415 0.00106338 0)
(-0.00485737 0.00172519 0)
(-0.00752941 0.00266219 0)
(-0.0111639 0.00391507 0)
(-0.0158886 0.00549014 0)
(-0.0217632 0.00733082 0)
(-0.0287442 0.00928661 0)
(-0.0366458 0.0110896 0)
(-0.0451139 0.012361 0)
(-0.0536201 0.0126631 0)
(-0.0614946 0.0116016 0)
(-0.0680195 0.00894597 0)
(-0.0725532 0.0047192 0)
(-0.074664 -0.000794354 0)
(-0.074208 -0.00712114 0)
(-0.0713316 -0.0137206 0)
(-0.0664069 -0.0201001 0)
(-0.0599347 -0.0258852 0)
(-0.0524375 -0.030854 0)
(-0.044401 -0.0349122 0)
(-0.0362196 -0.0380716 0)
(-0.0281979 -0.0404063 0)
(-0.0205417 -0.0420276 0)
(-0.0133819 -0.0430569 0)
(-0.00678426 -0.0436127 0)
(-0.000779383 -0.0438012 0)
(-0.000176412 0.000120545 0)
(-0.000458306 0.000212355 0)
(-0.000926304 0.000395692 0)
(-0.00170077 0.00071241 0)
(-0.00292476 0.00121803 0)
(-0.00476131 0.00197635 0)
(-0.0073826 0.0030506 0)
(-0.0109522 0.00448867 0)
(-0.0156028 0.0063006 0)
(-0.0214074 0.00842691 0)
(-0.0283476 0.0107033 0)
(-0.0362769 0.0128324 0)
(-0.0448884 0.0143861 0)
(-0.0536955 0.0148581 0)
(-0.0620447 0.0137744 0)
(-0.0691907 0.0108347 0)
(-0.0744197 0.00602511 0)
(-0.0772 -0.00035574 0)
(-0.0772906 -0.0077677 0)
(-0.0747691 -0.0155731 0)
(-0.0699802 -0.0231741 0)
(-0.0634346 -0.0301061 0)
(-0.0556899 -0.0360858 0)
(-0.0472788 -0.0409856 0)
(-0.0386424 -0.0448095 0)
(-0.0301261 -0.0476402 0)
(-0.0219672 -0.0496081 0)
(-0.0143189 -0.0508584 0)
(-0.00726166 -0.0515339 0)
(-0.00083448 -0.0517631 0)
(-0.000172399 0.00013552 0)
(-0.000447785 0.000238717 0)
(-0.000904944 0.000444819 0)
(-0.00166152 0.000800885 0)
(-0.00285738 0.00136938 0)
(-0.00465231 0.00222227 0)
(-0.00721587 0.00343123 0)
(-0.0107115 0.00505172 0)
(-0.0152767 0.00709855 0)
(-0.0209988 0.00951158 0)
(-0.0278874 0.0121165 0)
(-0.0358393 0.0145916 0)
(-0.0446023 0.0164638 0)
(-0.0537411 0.0171593 0)
(-0.0626271 0.0161181 0)
(-0.0704912 0.012955 0)
(-0.0765405 0.00760067 0)
(-0.0801271 0.000352321 0)
(-0.0808907 -0.00819177 0)
(-0.0788205 -0.0172899 0)
(-0.0742212 -0.0262262 0)
(-0.0676106 -0.0344301 0)
(-0.0595866 -0.0415426 0)
(-0.0507372 -0.0473926 0)
(-0.0415602 -0.0519708 0)
(-0.0324518 -0.0553667 0)
(-0.0236882 -0.0577309 0)
(-0.0154512 -0.0592343 0)
(-0.00783872 -0.0600468 0)
(-0.000901031 -0.0603226 0)
(-0.000167924 0.000150128 0)
(-0.000436048 0.000264429 0)
(-0.000881115 0.000492731 0)
(-0.00161772 0.000887179 0)
(-0.0027822 0.00151704 0)
(-0.00453063 0.00246228 0)
(-0.00702958 0.00380308 0)
(-0.0104419 0.00560278 0)
(-0.0149103 0.00788213 0)
(-0.0205369 0.0105827 0)
(-0.027361 0.0135244 0)
(-0.035327 0.0163667 0)
(-0.0442444 0.0185978 0)
(-0.05374 0.0195778 0)
(-0.0632212 0.0186554 0)
(-0.071902 0.0153439 0)
(-0.0789067 0.00949572 0)
(-0.0834543 0.00138545 0)
(-0.0850397 -0.00833928 0)
(-0.0835393 -0.0188296 0)
(-0.0792011 -0.0292365 0)
(-0.0725448 -0.0388632 0)
(-0.0642122 -0.0472571 0)
(-0.0548567 -0.0541911 0)
(-0.0450448 -0.0596348 0)
(-0.0352342 -0.063682 0)
(-0.0257497 -0.0665041 0)
(-0.0168082 -0.0683004 0)
(-0.00853068 -0.0692721 0)
(-0.000980743 -0.069602 0)
(-0.000163 0.000164331 0)
(-0.00042313 0.000289417 0)
(-0.000854886 0.000539295 0)
(-0.00156951 0.00097105 0)
(-0.00269942 0.00166059 0)
(-0.00439658 0.00269573 0)
(-0.00682415 0.00416513 0)
(-0.0101442 0.00614039 0)
(-0.014504 0.00864932 0)
(-0.0200211 0.0116378 0)
(-0.0267659 0.0149244 0)
(-0.0347335 0.0181563 0)
(-0.0438024 0.0207898 0)
(-0.0536727 0.0221231 0)
(-0.0638023 0.021408 0)
(-0.0733994 0.0180396 0)
(-0.0815049 0.0117651 0)
(-0.0871888 0.00280984 0)
(-0.0897718 -0.00814466 0)
(-0.0889874 -0.0201399 0)
(-0.0850045 -0.0321759 0)
(-0.0783356 -0.043406 0)
(-0.0696697 -0.0532622 0)
(-0.0597362 -0.0614436 0)
(-0.0491841 -0.0678899 0)
(-0.0385461 -0.0726948 0)
(-0.0282069 -0.0760514 0)
(-0.0184272 -0.0781905 0)
(-0.00935655 -0.0793482 0)
(-0.00107613 -0.0797414 0)
(-0.000157641 0.000178088 0)
(-0.000409064 0.000313613 0)
(-0.000826326 0.000584382 0)
(-0.001517 0.00105227 0)
(-0.00260925 0.00179963 0)
(-0.0042505 0.00292198 0)
(-0.00660006 0.0045164 0)
(-0.00981861 0.00666311 0)
(-0.0140581 0.00939814 0)
(-0.0194509 0.0126742 0)
(-0.0260992 0.0163134 0)
(-0.0340517 0.0199579 0)
(-0.0432624 0.0230404 0)
(-0.0535171 0.0248027 0)
(-0.0643413 0.0243969 0)
(-0.0749534 0.0210824 0)
(-0.0843157 0.0144699 0)
(-0.0913342 0.00470159 0)
(-0.0951236 -0.00752927 0)
(-0.0952365 -0.0211542 0)
(-0.091732 -0.0350044 0)
(-0.0851022 -0.0480539 0)
(-0.0760849 -0.0595906 0)
(-0.0654976 -0.0692194 0)
(-0.0540873 -0.0768367 0)
(-0.0424783 -0.0825311 0)
(-0.0311289 -0.0865172 0)
(-0.0203544 -0.0890609 0)
(-0.01034 -0.0904387 0)
(-0.00118938 -0.0909064 0)
(-0.000151862 0.000191364 0)
(-0.00039389 0.000336952 0)
(-0.000795513 0.000627873 0)
(-0.00146035 0.00113062 0)
(-0.00251194 0.0019338 0)
(-0.00409276 0.00314042 0)
(-0.0063578 0.00485594 0)
(-0.00946591 0.00716951 0)
(-0.0135729 0.0101265 0)
(-0.0188257 0.0136891 0)
(-0.0253583 0.017688 0)
(-0.0332747 0.0217679 0)
(-0.04261 0.0253478 0)
(-0.0532485 0.0276218 0)
(-0.064804 0.0276415 0)
(-0.076527 0.0245134 0)
(-0.0873123 0.0176771 0)
(-0.0958903 0.00714923 0)
(-0.101134 -0.00639697 0)
(-0.102368 -0.0217884 0)
(-0.0995024 -0.037667 0)
(-0.0929878 -0.0527927 0)
(-0.083611 -0.0662743 0)
(-0.07229 -0.0775945 0)
(-0.0598892 -0.0865902 0)
(-0.0471435 -0.0933371 0)
(-0.0346017 -0.0980709 0)
(-0.0226473 -0.101096 0)
(-0.0115109 -0.102736 0)
(-0.0013245 -0.103293 0)
(-0.000145681 0.00020412 0)
(-0.000377649 0.000359366 0)
(-0.000762532 0.000669644 0)
(-0.00139971 0.00120588 0)
(-0.00240775 0.00206272 0)
(-0.00392378 0.00335044 0)
(-0.00609797 0.00518279 0)
(-0.00908674 0.00765811 0)
(-0.013049 0.0108322 0)
(-0.0181454 0.0146794 0)
(-0.0245409 0.0190438 0)
(-0.0323953 0.0235811 0)
(-0.0418296 0.0277082 0)
(-0.0528398 0.0305823 0)
(-0.0651508 0.0311581 0)
(-0.0780743 0.0283741 0)
(-0.0904573 0.0214603 0)
(-0.100849 0.0102553 0)
(-0.107841 -0.00463041 0)
(-0.110474 -0.0219356 0)
(-0.108454 -0.0400897 0)
(-0.102164 -0.0575966 0)
(-0.0924334 -0.073342 0)
(-0.0802962 -0.0866516 0)
(-0.0667556 -0.0972809 0)
(-0.0526808 -0.105283 0)
(-0.0387323 -0.110911 0)
(-0.0253781 -0.114515 0)
(-0.0129061 -0.11647 0)
(-0.00148528 -0.117135 0)
(-0.000139115 0.000216326 0)
(-0.000360385 0.000380798 0)
(-0.000727474 0.000709582 0)
(-0.00133524 0.00127785 0)
(-0.00229695 0.00218602 0)
(-0.00374398 0.00355144 0)
(-0.00582118 0.00549601 0)
(-0.00868189 0.00812748 0)
(-0.0124872 0.0115131 0)
(-0.01741 0.0156417 0)
(-0.0236446 0.0203759 0)
(-0.0314063 0.0253913 0)
(-0.0409053 0.0301151 0)
(-0.0522612 0.0336827 0)
(-0.0653363 0.0349598 0)
(-0.0795392 0.0327055 0)
(-0.0937005 0.0258994 0)
(-0.10619 0.0141388 0)
(-0.115281 -0.00209097 0)
(-0.119655 -0.0214612 0)
(-0.118751 -0.0421735 0)
(-0.112836 -0.0624238 0)
(-0.102778 -0.0808183 0)
(-0.0897403 -0.0964812 0)
(-0.0748921 -0.109059 0)
(-0.0592644 -0.118567 0)
(-0.0436549 -0.125276 0)
(-0.0286374 -0.12958 0)
(-0.0145729 -0.131918 0)
(-0.00167725 -0.132712 0)
(-0.000132185 0.000227946 0)
(-0.000342146 0.000401186 0)
(-0.000690433 0.000747576 0)
(-0.00126711 0.00134632 0)
(-0.00217984 0.00230338 0)
(-0.00355383 0.00374288 0)
(-0.00552811 0.00579471 0)
(-0.0082522 0.0085762 0)
(-0.0118882 0.0121668 0)
(-0.0166196 0.0165725 0)
(-0.0226677 0.021679 0)
(-0.0303012 0.0271906 0)
(-0.0398208 0.0325594 0)
(-0.0514809 0.0369171 0)
(-0.0653087 0.0390547 0)
(-0.0808539 0.0375463 0)
(-0.0969754 0.0310803 0)
(-0.11188 0.0189369 0)
(-0.123483 0.0013973 0)
(-0.130025 -0.0201938 0)
(-0.130584 -0.0437872 0)
(-0.125251 -0.0672112 0)
(-0.114919 -0.0887207 0)
(-0.100898 -0.107182 0)
(-0.0845537 -0.122098 0)
(-0.0671125 -0.133426 0)
(-0.0495395 -0.141448 0)
(-0.0325408 -0.146608 0)
(-0.0165707 -0.149414 0)
(-0.00190715 -0.150368 0)
(-0.000124909 0.00023895 0)
(-0.000322981 0.000420477 0)
(-0.000651511 0.000783524 0)
(-0.00119552 0.00141111 0)
(-0.00205673 0.00241447 0)
(-0.00335384 0.00392421 0)
(-0.0052195 0.00607802 0)
(-0.00779862 0.00900286 0)
(-0.011253 0.0127912 0)
(-0.0157747 0.017468 0)
(-0.0216088 0.022947 0)
(-0.0290738 0.0289699 0)
(-0.0385602 0.035029 0)
(-0.0504655 0.0402743 0)
(-0.0650103 0.0434443 0)
(-0.0819374 0.0429308 0)
(-0.100195 0.0370931 0)
(-0.117861 0.024807 0)
(-0.132467 0.00603891 0)
(-0.141706 -0.0179182 0)
(-0.144176 -0.0447579 0)
(-0.139705 -0.0718669 0)
(-0.129189 -0.0970555 0)
(-0.114108 -0.11886 0)
(-0.0960575 -0.136594 0)
(-0.0764994 -0.150137 0)
(-0.056602 -0.159769 0)
(-0.0372364 -0.165984 0)
(-0.018977 -0.169371 0)
(-0.00218363 -0.170522 0)
(-0.000117312 0.000249307 0)
(-0.000302944 0.000438615 0)
(-0.000610815 0.000817323 0)
(-0.00112066 0.00147204 0)
(-0.00192797 0.00251897 0)
(-0.00314453 0.00409492 0)
(-0.00489612 0.00634508 0)
(-0.00732221 0.00940606 0)
(-0.0105829 0.013384 0)
(-0.0148762 0.0183243 0)
(-0.0204671 0.0241732 0)
(-0.0277188 0.0307183 0)
(-0.037108 0.0375082 0)
(-0.0491805 0.0437371 0)
(-0.0643771 0.0481214 0)
(-0.0826932 0.048886 0)
(-0.103247 0.04403 0)
(-0.12405 0.0319277 0)
(-0.142231 0.0120892 0)
(-0.154826 -0.0143553 0)
(-0.159786 -0.0448576 0)
(-0.156555 -0.0762616 0)
(-0.145995 -0.105813 0)
(-0.129784 -0.131625 0)
(-0.109798 -0.152772 0)
(-0.0877721 -0.169025 0)
(-0.0651207 -0.180648 0)
(-0.0429177 -0.18818 0)
(-0.0218934 -0.192296 0)
(-0.00251795 -0.193696 0)
(-0.000109414 0.000258988 0)
(-0.000282087 0.000455553 0)
(-0.000568454 0.000848886 0)
(-0.00104272 0.00152895 0)
(-0.00179389 0.00261661 0)
(-0.00292645 0.00425451 0)
(-0.0045588 0.00659511 0)
(-0.00682409 0.00978451 0)
(-0.0098792 0.0139428 0)
(-0.0139251 0.0191376 0)
(-0.0192424 0.0253507 0)
(-0.0262321 0.0324241 0)
(-0.0354502 0.0399786 0)
(-0.047591 0.047282 0)
(-0.0633399 0.0530689 0)
(-0.083009 0.0554281 0)
(-0.105987 0.0519818 0)
(-0.13032 0.0405001 0)
(-0.152748 0.019855 0)
(-0.169521 -0.00915933 0)
(-0.17772 -0.0437875 0)
(-0.176231 -0.0802183 0)
(-0.165831 -0.114964 0)
(-0.148438 -0.145593 0)
(-0.126266 -0.170885 0)
(-0.101375 -0.190472 0)
(-0.0754608 -0.204582 0)
(-0.0498444 -0.213782 0)
(-0.025458 -0.218831 0)
(-0.0029255 -0.22055 0)
(-0.000101243 0.000267967 0)
(-0.000260469 0.000471243 0)
(-0.000524547 0.000878124 0)
(-0.000961929 0.00158167 0)
(-0.00165486 0.00270709 0)
(-0.00270019 0.00440253 0)
(-0.00420843 0.00682732 0)
(-0.00630552 0.0101369 0)
(-0.00914345 0.0144654 0)
(-0.0129233 0.0199036 0)
(-0.0179355 0.026472 0)
(-0.0246111 0.0340738 0)
(-0.0335746 0.0424178 0)
(-0.0456634 0.0508774 0)
(-0.0618251 0.0582563 0)
(-0.0827552 0.062557 0)
(-0.108237 0.0610306 0)
(-0.136494 0.0507447 0)
(-0.163942 0.029707 0)
(-0.185922 -0.00188786 0)
(-0.19834 -0.0411493 0)
(-0.199256 -0.0834981 0)
(-0.189292 -0.124451 0)
(-0.170685 -0.160877 0)
(-0.14607 -0.191206 0)
(-0.117877 -0.214914 0)
(-0.0881089 -0.232164 0)
(-0.0583756 -0.243514 0)
(-0.0298681 -0.249789 0)
(-0.00342892 -0.251935 0)
(-9.28232e-05 0.000276216 0)
(-0.000238149 0.000485641 0)
(-0.000479213 0.000904958 0)
(-0.000878504 0.00163005 0)
(-0.00151127 0.00279016 0)
(-0.00246638 0.00453853 0)
(-0.00384594 0.007041 0)
(-0.00576783 0.0104619 0)
(-0.00837745 0.0149495 0)
(-0.0118727 0.0206183 0)
(-0.016548 0.0275293 0)
(-0.0228546 0.0356529 0)
(-0.0314719 0.0448007 0)
(-0.0433664 0.0544841 0)
(-0.0597567 0.0636375 0)
(-0.0817857 0.0702506 0)
(-0.109773 0.071242 0)
(-0.142324 0.0628976 0)
(-0.175671 0.0420919 0)
(-0.204141 0.00806482 0)
(-0.222074 -0.0364254 0)
(-0.226271 -0.0857899 0)
(-0.217101 -0.134193 0)
(-0.197262 -0.177588 0)
(-0.169951 -0.214017 0)
(-0.138009 -0.242827 0)
(-0.10373 -0.264091 0)
(-0.0690322 -0.278283 0)
(-0.0354285 -0.28624 0)
(-0.00406612 -0.288991 0)
(-8.41827e-05 0.00028371 0)
(-0.000215185 0.000498713 0)
(-0.000432575 0.000929316 0)
(-0.000792671 0.00167397 0)
(-0.00136349 0.0028656 0)
(-0.00222563 0.00466213 0)
(-0.0034723 0.00723546 0)
(-0.00521244 0.0107585 0)
(-0.00758315 0.0153932 0)
(-0.0107758 0.0212776 0)
(-0.0150825 0.0285148 0)
(-0.0209635 0.0371464 0)
(-0.0291359 0.0470989 0)
(-0.0406732 0.0580545 0)
(-0.057059 0.0691493 0)
(-0.0799398 0.0784586 0)
(-0.110324 0.0826526 0)
(-0.14747 0.0771999 0)
(-0.187688 0.0575423 0)
(-0.224259 0.0214293 0)
(-0.249441 -0.028902 0)
(-0.258084 -0.0866926 0)
(-0.250122 -0.144092 0)
(-0.22903 -0.195832 0)
(-0.198783 -0.239584 0)
(-0.162719 -0.274685 0)
(-0.123253 -0.301165 0)
(-0.0826046 -0.319195 0)
(-0.0426822 -0.329617 0)
(-0.00492284 -0.333357 0)
(-7.53501e-05 0.000290424 0)
(-0.00019164 0.000510421 0)
(-0.000384761 0.000951132 0)
(-0.000704666 0.0017133 0)
(-0.00121193 0.00293318 0)
(-0.0019786 0.00477296 0)
(-0.00308853 0.0074101 0)
(-0.00464089 0.0110255 0)
(-0.00676275 0.0157942 0)
(-0.00963557 0.0218776 0)
(-0.0135425 0.0294206 0)
(-0.018941 0.0385384 0)
(-0.0265649 0.0492817 0)
(-0.0375631 0.0615325 0)
(-0.0536599 0.0747077 0)
(-0.0770459 0.0870933 0)
(-0.109568 0.0952516 0)
(-0.151479 0.093878 0)
(-0.199588 0.0766817 0)
(-0.246266 0.0392051 0)
(-0.281086 -0.0176073 0)
(-0.295744 -0.0857238 0)
(-0.289371 -0.154069 0)
(-0.266955 -0.215738 0)
(-0.233502 -0.268114 0)
(-0.193229 -0.310793 0)
(-0.148018 -0.344348 0)
(-0.100233 -0.367412 0)
(-0.0529015 -0.38182 0)
(-0.00630928 -0.387766 0)
(-6.63558e-05 0.000296333 0)
(-0.000167578 0.000520732 0)
(-0.000335905 0.000970347 0)
(-0.000614733 0.00174794 0)
(-0.00105702 0.00299272 0)
(-0.00172598 0.00487069 0)
(-0.00269572 0.00756433 0)
(-0.0040548 0.0112619 0)
(-0.00591866 0.0161508 0)
(-0.00845547 0.0224145 0)
(-0.0119328 0.0302388 0)
(-0.0167925 0.0398129 0)
(-0.0237624 0.0513164 0)
(-0.0340245 0.064854 0)
(-0.0494961 0.0802073 0)
(-0.0729294 0.0960226 0)
(-0.107131 0.108959 0)
(-0.153753 0.113111 0)
(-0.210743 0.100217 0)
(-0.269991 0.0627098 0)
(-0.317852 -0.00114332 0)
(-0.340699 -0.0823521 0)
(-0.335961 -0.164143 0)
(-0.312133 -0.237482 0)
(-0.274733 -0.299841 0)
(-0.230612 -0.350734 0)
(-0.180143 -0.395914 0)
(-0.121179 -0.4232 0)
(-0.0684182 -0.444434 0)
(-0.00901595 -0.457568 0)
(-5.72306e-05 0.000301412 0)
(-0.000143063 0.000529619 0)
(-0.000286135 0.000986909 0)
(-0.000523113 0.00177778 0)
(-0.000899157 0.00304404 0)
(-0.00146846 0.00495503 0)
(-0.00229494 0.00769766 0)
(-0.00345582 0.0114668 0)
(-0.00505337 0.0164611 0)
(-0.00723929 0.0228848 0)
(-0.010259 0.0309622 0)
(-0.0145258 0.0409543 0)
(-0.0207369 0.0531698 0)
(-0.0300573 0.0679487 0)
(-0.0445173 0.0855203 0)
(-0.067423 0.105064 0)
(-0.102597 0.123598 0)
(-0.15353 0.134984 0)
(-0.220196 0.128906 0)
(-0.294925 0.0936828 0)
(-0.360825 0.0226899 0)
(-0.395208 -0.0761174 0)
(-0.390735 -0.174665 0)
(-0.365948 -0.261186 0)
(-0.318065 -0.337375 0)
(-0.25666 -0.398733 0)
(-0.19243 -0.460409 0)
(-0.102967 -0.490533 0)
(-0.0517649 -0.516635 0)
(-0.00499404 -0.545093 0)
(-4.80083e-05 0.000305633 0)
(-0.000118161 0.000537058 0)
(-0.000235593 0.00100077 0)
(-0.000430061 0.00180274 0)
(-0.000738798 0.00308699 0)
(-0.00120676 0.00502571 0)
(-0.00188735 0.00780962 0)
(-0.00284578 0.0116394 0)
(-0.0041697 0.0167237 0)
(-0.00599142 0.0232851 0)
(-0.00852788 0.0315837 0)
(-0.0121515 0.0419472 0)
(-0.0175035 0.054809 0)
(-0.0256761 0.0707409 0)
(-0.0386932 0.0904955 0)
(-0.0603848 0.113978 0)
(-0.0955233 0.13886 0)
(-0.149863 0.159409 0)
(-0.226544 0.163471 0)
(-0.319905 0.134331 0)
(-0.411166 0.0576053 0)
(-0.463483 -0.0669286 0)
(-0.452085 -0.187781 0)
(-0.420825 -0.289935 0)
(-0.308198 -0.413871 0)
(-0.194771 -0.511209 0)
(-0.0288864 -0.611034 0)
(-0.0257056 -0.517601 0)
(-0.00766122 -0.535292 0)
(-0.00218336 -0.588872 0)
(-3.87273e-05 0.000308963 0)
(-9.2939e-05 0.000543029 0)
(-0.000184417 0.0010119 0)
(-0.000335833 0.00182275 0)
(-0.000576384 0.00312145 0)
(-0.000941617 0.00508252 0)
(-0.00147412 0.00789985 0)
(-0.0022265 0.011779 0)
(-0.00327055 0.016937 0)
(-0.00471656 0.0236126 0)
(-0.00674725 0.0320969 0)
(-0.00968247 0.0427778 0)
(-0.0140835 0.0562027 0)
(-0.0209137 0.0731537 0)
(-0.0320177 0.0949591 0)
(-0.0517207 0.122477 0)
(-0.0854735 0.154268 0)
(-0.141634 0.18603 0)
(-0.227801 0.204439 0)
(-0.342623 0.187209 0)
(-0.469173 0.111077 0)
(-0.55464 -0.0555886 0)
(-0.519569 -0.215441 0)
(-0.427584 -0.346631 0)
(-0.370326 -0.532878 0)
(-0.274587 -0.543563 0)
(-0.237382 -0.615047 0)
(-0.15925 -0.601624 0)
(-0.0690992 -0.608871 0)
(-0.00799839 -0.617685 0)
(-2.94285e-05 0.000311375 0)
(-6.74652e-05 0.000547516 0)
(-0.000132748 0.00102026 0)
(-0.000240688 0.00183776 0)
(-0.000412358 0.00314731 0)
(-0.000673764 0.00512527 0)
(-0.00105643 0.00796803 0)
(-0.00159989 0.011885 0)
(-0.00235894 0.0171001 0)
(-0.00341975 0.0238649 0)
(-0.00492572 0.0324965 0)
(-0.00713381 0.0434337 0)
(-0.0105033 0.0573231 0)
(-0.0158238 0.0751143 0)
(-0.0245132 0.0987107 0)
(-0.0414165 0.130252 0)
(-0.0720567 0.169151 0)
(-0.127606 0.214147 0)
(-0.220826 0.251731 0)
(-0.353302 0.256104 0)
(-0.494968 0.21296 0)
(-0.684305 -0.0352717 0)
(-0.777273 -0.242492 0)
(-0.589548 -0.407219 0)
(-0.437083 -0.605795 0)
(-0.341622 -0.657331 0)
(-0.237751 -0.683972 0)
(-0.147254 -0.691122 0)
(-0.0752473 -0.695092 0)
(-0.00919034 -0.696236 0)
(-2.01591e-05 0.000312866 0)
(-4.18087e-05 0.000550564 0)
(-8.07277e-05 0.00102593 0)
(-0.000144886 0.00184792 0)
(-0.000247182 0.00316482 0)
(-0.000403966 0.00515431 0)
(-0.000635529 0.00801467 0)
(-0.000967916 0.0119581 0)
(-0.00143804 0.0172136 0)
(-0.00210636 0.0240425 0)
(-0.00307278 0.0327827 0)
(-0.00452301 0.0439139 0)
(-0.00679464 0.0581664 0)
(-0.0104866 0.0766042 0)
(-0.0162416 0.101594 0)
(-0.0295848 0.137229 0)
(-0.0548872 0.182894 0)
(-0.105643 0.243028 0)
(-0.196405 0.305848 0)
(-0.341881 0.322861 0)
(-0.704845 0.356316 0)
(-0.829363 0.0828568 0)
(-0.948536 -0.403791 0)
(-0.776319 -0.630691 0)
(-0.479051 -0.696711 0)
(-0.353575 -0.746774 0)
(-0.256189 -0.772057 0)
(-0.162402 -0.770369 0)
(-0.0797113 -0.781149 0)
(-0.00862205 -0.780014 0)
(-1.23031e-05 0.000336121 0)
(-1.81185e-05 0.000591939 0)
(-3.09576e-05 0.0011017 0)
(-5.18141e-05 0.0019809 0)
(-8.52232e-05 0.00338354 0)
(-0.000137699 0.00549063 0)
(-0.000218146 0.00849809 0)
(-0.00033884 0.0126082 0)
(-0.000517303 0.0180362 0)
(-0.000787381 0.0250364 0)
(-0.00120315 0.0339562 0)
(-0.00187539 0.0453022 0)
(-0.00300805 0.0598467 0)
(-0.00505249 0.0786966 0)
(-0.00745301 0.104256 0)
(-0.0172419 0.143991 0)
(-0.0280369 0.193312 0)
(-0.0615458 0.267402 0)
(-0.160699 0.361562 0)
(-0.353841 0.442418 0)
(-0.656109 0.451638 0)
(-0.684558 0.174265 0)
(-0.317597 -0.272732 0)
(-0.442864 -0.663434 0)
(-0.624001 -0.847726 0)
(-0.477336 -0.847286 0)
(-0.342091 -0.860103 0)
(-0.218457 -0.867051 0)
(-0.10032 -0.887804 0)
(-0.0113461 -0.887304 0)
(0.00415485 -0.00336234 0)
(0.00936545 -0.00333045 0)
(0.0150606 -0.00326692 0)
(0.0212165 -0.00316352 0)
(0.0277715 -0.0030109 0)
(0.034614 -0.00280053 0)
(0.0415672 -0.00252503 0)
(0.0483811 -0.00218079 0)
(0.0547205 -0.00177029 0)
(0.0601833 -0.00130445 0)
(0.0643216 -0.000804821 0)
(0.066701 -0.000303532 0)
(0.0669778 0.000159854 0)
(0.064986 0.000544994 0)
(0.0608049 0.000819914 0)
(0.0547809 0.000969528 0)
(0.0474774 0.000999642 0)
(0.0395697 0.000934304 0)
(0.0317155 0.000807519 0)
(0.0244481 0.000653419 0)
(0.0181213 0.000499115 0)
(0.0129044 0.000361826 0)
(0.00881333 0.000249627 0)
(0.00575746 0.000163993 0)
(0.00358412 0.000102469 0)
(0.00211499 6.07657e-05 0)
(0.00117273 3.41825e-05 0)
(0.000597537 1.84347e-05 0)
(0.000253882 1.01403e-05 0)
(2.51198e-05 1.04353e-05 0)
(0.00421094 -0.00960407 0)
(0.00949101 -0.00951253 0)
(0.0152613 -0.00933059 0)
(0.0214965 -0.00903419 0)
(0.028133 -0.00859745 0)
(0.0350556 -0.00799531 0)
(0.0420827 -0.00720691 0)
(0.0489589 -0.00622143 0)
(0.0553418 -0.00504599 0)
(0.0608228 -0.00371164 0)
(0.0649485 -0.00228068 0)
(0.0672831 -0.000845792 0)
(0.067486 0.000478852 0)
(0.0653998 0.00157679 0)
(0.0611168 0.00235667 0)
(0.0549971 0.00277642 0)
(0.0476145 0.00285472 0)
(0.0396489 0.00266209 0)
(0.031757 0.00229662 0)
(0.0244679 0.00185569 0)
(0.0181299 0.00141595 0)
(0.0129078 0.00102569 0)
(0.00881448 0.000707257 0)
(0.00575779 0.000464472 0)
(0.00358419 0.000290151 0)
(0.00211499 0.000172041 0)
(0.00117272 9.67715e-05 0)
(0.00059754 5.21878e-05 0)
(0.000253889 2.87088e-05 0)
(2.50373e-05 2.35404e-05 0)
(0.00429983 -0.0159435 0)
(0.00968995 -0.0157904 0)
(0.0155788 -0.0154862 0)
(0.0219383 -0.0149905 0)
(0.0287001 -0.0142604 0)
(0.0357425 -0.0132538 0)
(0.0428754 -0.0119368 0)
(0.0498324 -0.0102916 0)
(0.0562593 -0.00833108 0)
(0.0617367 -0.00610826 0)
(0.0658045 -0.00372848 0)
(0.0680271 -0.00134748 0)
(0.0680744 0.000844037 0)
(0.0658092 0.00265313 0)
(0.0613498 0.00393035 0)
(0.0550806 0.0046095 0)
(0.0475908 0.00472519 0)
(0.0395639 0.00439672 0)
(0.0316492 0.00378708 0)
(0.0243632 0.00305659 0)
(0.0180418 0.00233054 0)
(0.0128406 0.0016874 0)
(0.00876681 0.0011632 0)
(0.00572605 0.000763777 0)
(0.00356424 0.000477079 0)
(0.00210318 0.000282863 0)
(0.00116617 0.000159105 0)
(0.000594213 8.58025e-05 0)
(0.000252485 4.72023e-05 0)
(2.4882e-05 3.65809e-05 0)
(0.00443417 -0.0224486 0)
(0.00999217 -0.0222306 0)
(0.016061 -0.0217972 0)
(0.0226087 -0.0210912 0)
(0.0295601 -0.0200515 0)
(0.0367837 -0.0186192 0)
(0.0440758 -0.0167466 0)
(0.0511536 -0.0144103 0)
(0.0576451 -0.0116306 0)
(0.0631144 -0.00848576 0)
(0.0670915 -0.00512798 0)
(0.069142 -0.00178034 0)
(0.0689524 0.00128696 0)
(0.0664166 0.00380378 0)
(0.0616921 0.00556514 0)
(0.0551996 0.00648544 0)
(0.0475513 0.00662048 0)
(0.0394345 0.00614204 0)
(0.0314872 0.00527932 0)
(0.0242068 0.0042549 0)
(0.0179106 0.00324121 0)
(0.0127405 0.00234542 0)
(0.00869593 0.00161629 0)
(0.00567887 0.00106109 0)
(0.00353461 0.000662729 0)
(0.00208564 0.000392917 0)
(0.00115644 0.000221004 0)
(0.000589271 0.000119183 0)
(0.0002504 6.55682e-05 0)
(2.466e-05 4.95226e-05 0)
(0.0046178 -0.0291899 0)
(0.0104044 -0.0289021 0)
(0.0167187 -0.0283295 0)
(0.0235226 -0.0273969 0)
(0.0307318 -0.0260245 0)
(0.0382009 -0.0241355 0)
(0.0457077 -0.0216688 0)
(0.0529468 -0.0185962 0)
(0.0595218 -0.0149487 0)
(0.064975 -0.0108339 0)
(0.0688231 -0.00645701 0)
(0.070635 -0.00211413 0)
(0.070121 0.00184057 0)
(0.0672181 0.0050594 0)
(0.0621375 0.00728547 0)
(0.0553483 0.00842084 0)
(0.0474913 0.00854982 0)
(0.0392578 0.00790175 0)
(0.0312695 0.00677368 0)
(0.023998 0.0054494 0)
(0.0177362 0.00414631 0)
(0.0126078 0.00299827 0)
(0.00860198 0.00206536 0)
(0.00561637 0.00135563 0)
(0.00349537 0.000846595 0)
(0.0020624 0.0005019 0)
(0.00114356 0.000282297 0)
(0.000582726 0.000152235 0)
(0.00024764 8.3754e-05 0)
(2.43716e-05 6.23306e-05 0)
(0.0048549 -0.0362438 0)
(0.0109365 -0.0358792 0)
(0.0175671 -0.0351539 0)
(0.024701 -0.0339732 0)
(0.0322414 -0.0322369 0)
(0.0400246 -0.0298494 0)
(0.0478042 -0.0267368 0)
(0.0552456 -0.0228679 0)
(0.0619207 -0.0182879 0)
(0.0673442 -0.0131401 0)
(0.0710176 -0.00769029 0)
(0.0725155 -0.00231591 0)
(0.071581 0.00254024 0)
(0.0682087 0.00645199 0)
(0.0626781 0.00911626 0)
(0.0555183 0.0104321 0)
(0.0474044 0.0105221 0)
(0.0390299 0.00967924 0)
(0.0309942 0.00827034 0)
(0.0237363 0.00663882 0)
(0.0175184 0.00504421 0)
(0.0124425 0.00364448 0)
(0.00848515 0.00250931 0)
(0.0055387 0.00164661 0)
(0.00344661 0.00102819 0)
(0.00203354 0.000609519 0)
(0.00112756 0.000342818 0)
(0.000574597 0.00018487 0)
(0.000244212 0.00010171 0)
(2.40172e-05 7.49711e-05 0)
(0.00515105 -0.0436937 0)
(0.0116011 -0.0432434 0)
(0.0186263 -0.0423479 0)
(0.0261712 -0.0408908 0)
(0.0341229 -0.0387501 0)
(0.0422943 -0.0358105 0)
(0.0504083 -0.0319853 0)
(0.0580933 -0.027243 0)
(0.0648818 -0.0216479 0)
(0.0702553 -0.0153874 0)
(0.0736978 -0.008798 0)
(0.0747945 -0.00234785 0)
(0.0733329 0.00342438 0)
(0.0693809 0.00801521 0)
(0.0633029 0.0110827 0)
(0.0556993 0.0125353 0)
(0.0472828 0.0125454 0)
(0.038746 0.0114773 0)
(0.030659 0.00976904 0)
(0.0234207 0.00782164 0)
(0.0172572 0.00593316 0)
(0.0122448 0.00428255 0)
(0.00834567 0.00294701 0)
(0.00544604 0.00193327 0)
(0.00338847 0.00120701 0)
(0.00199913 0.000715481 0)
(0.00110848 0.000402403 0)
(0.000564906 0.000216999 0)
(0.000240125 0.000119389 0)
(2.35979e-05 8.74091e-05 0)
(0.00551337 -0.0516324 0)
(0.0124145 -0.0510851 0)
(0.0199222 -0.049997 0)
(0.0279684 -0.048228 0)
(0.03642 -0.0456317 0)
(0.0450608 -0.0420722 0)
(0.0535747 -0.0374505 0)
(0.0615447 -0.031738 0)
(0.0684555 -0.0250255 0)
(0.0737489 -0.0175544 0)
(0.0768913 -0.00974471 0)
(0.0774848 -0.00216783 0)
(0.075376 0.00453521 0)
(0.0707249 0.00978469 0)
(0.0639983 0.0132105 0)
(0.0558784 0.0147458 0)
(0.047117 0.014627 0)
(0.0384003 0.0132978 0)
(0.0302611 0.0112691 0)
(0.0230505 0.00899614 0)
(0.0169527 0.00681135 0)
(0.0120151 0.00491095 0)
(0.00818382 0.00337733 0)
(0.00533862 0.00221484 0)
(0.0033211 0.00138258 0)
(0.00195926 0.000819494 0)
(0.00108637 0.000460886 0)
(0.000553679 0.000248534 0)
(0.000235391 0.000136743 0)
(2.31145e-05 9.96112e-05 0)
(0.00595157 -0.0601655 0)
(0.0133975 -0.059507 0)
(0.0214872 -0.0581984 0)
(0.0301369 -0.0560726 0)
(0.0391878 -0.0529567 0)
(0.0483873 -0.0486925 0)
(0.0573716 -0.0431702 0)
(0.0656677 -0.0363682 0)
(0.0727032 -0.0284129 0)
(0.0778745 -0.0196128 0)
(0.0806305 -0.0104877 0)
(0.0806001 -0.00172648 0)
(0.0777079 0.00591963 0)
(0.0722277 0.0117984 0)
(0.0647472 0.0155256 0)
(0.0560401 0.0170783 0)
(0.0468958 0.0167733 0)
(0.0379864 0.0151423 0)
(0.0297974 0.0127694 0)
(0.0226245 0.0101604 0)
(0.0166047 0.00767691 0)
(0.0117535 0.00552816 0)
(0.00799994 0.00379917 0)
(0.00521671 0.00249057 0)
(0.00324467 0.00155443 0)
(0.00191405 0.000921276 0)
(0.00106131 0.00051811 0)
(0.000540946 0.00027939 0)
(0.000230023 0.000153724 0)
(2.25683e-05 0.000111545 0)
(0.00647704 -0.0694139 0)
(0.0145758 -0.0686265 0)
(0.0233622 -0.0670625 0)
(0.0327321 -0.0645243 0)
(0.0424949 -0.060809 0)
(0.0523526 -0.0557354 0)
(0.0618831 -0.049184 0)
(0.0705457 -0.0411466 0)
(0.0777 -0.0317964 0)
(0.0826908 -0.0215262 0)
(0.0849526 -0.0109751 0)
(0.0841553 -0.00096759 0)
(0.0803235 0.00762999 0)
(0.073872 0.0140967 0)
(0.0655289 0.0180542 0)
(0.0561661 0.0195464 0)
(0.0466066 0.0189894 0)
(0.0374971 0.0170109 0)
(0.0292648 0.0142682 0)
(0.0221418 0.0113123 0)
(0.0162132 0.00852786 0)
(0.0114605 0.00613264 0)
(0.00779442 0.00421142 0)
(0.00508058 0.00275974 0)
(0.00315939 0.00172209 0)
(0.0018636 0.00102055 0)
(0.00103334 0.000573922 0)
(0.000526744 0.000309482 0)
(0.000224036 0.000170288 0)
(2.19604e-05 0.000123178 0)
(0.00710432 -0.079517 0)
(0.0159817 -0.0785787 0)
(0.0255978 -0.076716 0)
(0.0358224 -0.073696 0)
(0.0464256 -0.0692828 0)
(0.0570534 -0.0632705 0)
(0.067212 -0.0555325 0)
(0.0762791 -0.0460821 0)
(0.0835346 -0.0351542 0)
(0.0882662 -0.0232471 0)
(0.089899 -0.0111435 0)
(0.0881632 0.000178161 0)
(0.0832136 0.00972476 0)
(0.0756356 0.0167225 0)
(0.0663182 0.0208219 0)
(0.0562355 0.0221623 0)
(0.0462352 0.0212785 0)
(0.0369244 0.0189028 0)
(0.0286599 0.0157631 0)
(0.0216015 0.0124493 0)
(0.0157785 0.00936207 0)
(0.0111366 0.00672279 0)
(0.0075677 0.00461296 0)
(0.0049306 0.0030216 0)
(0.00306547 0.0018851 0)
(0.00180806 0.00111704 0)
(0.00100257 0.000628162 0)
(0.000511111 0.000338728 0)
(0.000217447 0.000186389 0)
(2.12923e-05 0.000134478 0)
(0.00785132 -0.0906393 0)
(0.0176556 -0.0895225 0)
(0.0282569 -0.0873071 0)
(0.0394933 -0.0837193 0)
(0.0510848 -0.0784861 0)
(0.0626087 -0.0713757 0)
(0.0734839 -0.0622585 0)
(0.0829901 -0.0511795 0)
(0.0903138 -0.0384548 0)
(0.0946805 -0.0247149 0)
(0.0955157 -0.0109158 0)
(0.0926365 0.00178609 0)
(0.0863638 0.0122695 0)
(0.0774901 0.0197212 0)
(0.0670847 0.0238543 0)
(0.0562241 0.0249363 0)
(0.0457659 0.0236425 0)
(0.0362602 0.0208159 0)
(0.027979 0.0172512 0)
(0.0210026 0.0135686 0)
(0.0153007 0.0101774 0)
(0.0107822 0.00729704 0)
(0.00732027 0.00500272 0)
(0.00476713 0.00327544 0)
(0.00296316 0.00204301 0)
(0.00174758 0.00121049 0)
(0.000969051 0.000680683 0)
(0.00049409 0.000367044 0)
(0.000210276 0.000201983 0)
(2.05651e-05 0.000145415 0)
(0.0087408 -0.102975 0)
(0.0196477 -0.101645 0)
(0.0314185 -0.0990096 0)
(0.0438504 -0.0947469 0)
(0.056602 -0.0885424 0)
(0.069165 -0.0801377 0)
(0.0808522 -0.0694055 0)
(0.0908258 -0.0564367 0)
(0.0981638 -0.0416531 0)
(0.102026 -0.0258512 0)
(0.101852 -0.0101972 0)
(0.0975832 0.00395041 0)
(0.0897521 0.0153378 0)
(0.0793995 0.0231407 0)
(0.0677928 0.0271755 0)
(0.0561045 0.0278763 0)
(0.0451817 0.0260809 0)
(0.0354955 0.0227469 0)
(0.0272186 0.0187287 0)
(0.0203442 0.0146671 0)
(0.0147801 0.0109715 0)
(0.0103979 0.00785381 0)
(0.00705268 0.00537962 0)
(0.00459058 0.00352058 0)
(0.00285274 0.0021954 0)
(0.00168232 0.00130064 0)
(0.000932892 0.000731344 0)
(0.000475727 0.000394358 0)
(0.000202541 0.00021703 0)
(1.97801e-05 0.000155958 0)
(0.00980107 -0.116755 0)
(0.0220208 -0.115169 0)
(0.0351803 -0.112028 0)
(0.0490253 -0.106957 0)
(0.0631368 -0.0995933 0)
(0.0769015 -0.0896523 0)
(0.0895029 -0.0770167 0)
(0.0999628 -0.0618416 0)
(0.107234 -0.0446862 0)
(0.110407 -0.0265557 0)
(0.10896 -0.00887087 0)
(0.103005 0.00677796 0)
(0.0933467 0.0190113 0)
(0.0813182 0.02703 0)
(0.0684002 0.0308072 0)
(0.0558463 0.0309871 0)
(0.0444644 0.0285907 0)
(0.0346216 0.0246906 0)
(0.0263755 0.0201911 0)
(0.0196258 0.0157414 0)
(0.0142171 0.0117421 0)
(0.00998442 0.00839147 0)
(0.00676555 0.0057426 0)
(0.00440139 0.00375631 0)
(0.00273449 0.00234184 0)
(0.00161246 0.00138725 0)
(0.000894189 0.00078 0)
(0.000456073 0.000420588 0)
(0.000194266 0.000231484 0)
(1.89385e-05 0.000166077 0)
(0.0110682 -0.132258 0)
(0.0248543 -0.130361 0)
(0.0396656 -0.126608 0)
(0.0551821 -0.12056 0)
(0.0708874 -0.111803 0)
(0.0860387 -0.100026 0)
(0.0996628 -0.085134 0)
(0.110614 -0.0673692 0)
(0.1177 -0.0474684 0)
(0.119943 -0.0267 0)
(0.116892 -0.00679631 0)
(0.108895 0.0103962 0)
(0.0971024 0.0233805 0)
(0.0831897 0.0314392 0)
(0.068858 0.0347682 0)
(0.0554157 0.0342695 0)
(0.0435952 0.0311659 0)
(0.0336296 0.0266405 0)
(0.0254465 0.0216331 0)
(0.0188469 0.0167879 0)
(0.0136123 0.0124867 0)
(0.00954255 0.00890842 0)
(0.00645956 0.00609062 0)
(0.00420006 0.00398198 0)
(0.00260874 0.00248192 0)
(0.00153818 0.00147006 0)
(0.000853047 0.000826522 0)
(0.000435183 0.000445667 0)
(0.000185474 0.000245309 0)
(1.80411e-05 0.000175745 0)
(0.0125878 -0.149822 0)
(0.0282492 -0.147544 0)
(0.0450306 -0.143042 0)
(0.0625271 -0.135805 0)
(0.0801004 -0.125361 0)
(0.0968485 -0.111379 0)
(0.111609 -0.0937969 0)
(0.123037 -0.072977 0)
(0.12977 -0.0498843 0)
(0.130768 -0.02612 0)
(0.125698 -0.00379273 0)
(0.115232 0.0149538 0)
(0.100958 0.0285446 0)
(0.0849443 0.0364178 0)
(0.0691095 0.0390726 0)
(0.0547763 0.0377201 0)
(0.0425543 0.0337977 0)
(0.0325109 0.0285882 0)
(0.0244288 0.0230487 0)
(0.0180074 0.0178026 0)
(0.0129665 0.0132028 0)
(0.00907316 0.00940307 0)
(0.00613541 0.00642266 0)
(0.00398709 0.00419696 0)
(0.00247581 0.00261527 0)
(0.00145969 0.00154886 0)
(0.000809578 0.000870782 0)
(0.000413111 0.000469525 0)
(0.00017619 0.000258465 0)
(1.7088e-05 0.000184933 0)
(0.0144193 -0.169861 0)
(0.0323358 -0.16711 0)
(0.0514744 -0.161684 0)
(0.0713204 -0.152987 0)
(0.0910825 -0.140487 0)
(0.109665 -0.12384 0)
(0.125679 -0.103038 0)
(0.13754 -0.0785981 0)
(0.14369 -0.0517789 0)
(0.143031 -0.0246055 0)
(0.135423 0.000350267 0)
(0.121975 0.0206239 0)
(0.104829 0.0346109 0)
(0.0864965 0.0420122 0)
(0.0690905 0.0437281 0)
(0.0538888 0.0413292 0)
(0.0413221 0.0364735 0)
(0.0312576 0.0305238 0)
(0.0233202 0.0244311 0)
(0.0171076 0.0187813 0)
(0.0122806 0.0138877 0)
(0.00857723 0.00987383 0)
(0.00579391 0.00673775 0)
(0.00376304 0.00440064 0)
(0.00233606 0.00274151 0)
(0.00137721 0.00162343 0)
(0.0007639 0.000912659 0)
(0.00038992 0.000492099 0)
(0.000166439 0.000270917 0)
(1.60793e-05 0.000193614 0)
(0.0166416 -0.19289 0)
(0.0372848 -0.189544 0)
(0.0592546 -0.182961 0)
(0.0818925 -0.172453 0)
(0.104217 -0.157432 0)
(0.124899 -0.137551 0)
(0.142282 -0.11288 0)
(0.154496 -0.0841341 0)
(0.159749 -0.0529464 0)
(0.156898 -0.0218874 0)
(0.146097 0.00590085 0)
(0.129055 0.0276072 0)
(0.108605 0.0416922 0)
(0.0877435 0.0482628 0)
(0.0687286 0.0487333 0)
(0.0527122 0.0450808 0)
(0.0398795 0.0391769 0)
(0.0298624 0.0324352 0)
(0.0221193 0.0257728 0)
(0.0161479 0.0197194 0)
(0.0115558 0.0145389 0)
(0.00805589 0.0103191 0)
(0.00543592 0.00703492 0)
(0.0035285 0.00459244 0)
(0.00218988 0.00286028 0)
(0.00129094 0.00169356 0)
(0.000716139 0.000952035 0)
(0.000365673 0.000513322 0)
(0.00015625 0.000282628 0)
(1.50141e-05 0.000201759 0)
(0.0193618 -0.219557 0)
(0.0433265 -0.215446 0)
(0.0687118 -0.207393 0)
(0.0946692 -0.194615 0)
(0.119984 -0.176482 0)
(0.143057 -0.152664 0)
(0.16192 -0.123334 0)
(0.17436 -0.0894469 0)
(0.178293 -0.0531145 0)
(0.17255 -0.0176156 0)
(0.157726 0.0131854 0)
(0.136362 0.036135 0)
(0.112141 0.049905 0)
(0.0885624 0.0552006 0)
(0.0679438 0.0540763 0)
(0.0512045 0.0489512 0)
(0.0382084 0.0418876 0)
(0.0283194 0.0343089 0)
(0.0208252 0.0270657 0)
(0.0151294 0.0206125 0)
(0.0107934 0.0151537 0)
(0.00751031 0.0107374 0)
(0.00506232 0.00731327 0)
(0.00328408 0.0047718 0)
(0.00203763 0.00297125 0)
(0.00120114 0.00175906 0)
(0.000666424 0.000988805 0)
(0.000340435 0.000533141 0)
(0.000145652 0.00029357 0)
(1.38902e-05 0.000209344 0)
(0.0227342 -0.250691 0)
(0.050784 -0.24557 0)
(0.0803056 -0.235606 0)
(0.1102 -0.219945 0)
(0.138978 -0.19795 0)
(0.164749 -0.169337 0)
(0.185195 -0.134392 0)
(0.197681 -0.0943475 0)
(0.199733 -0.0519207 0)
(0.190175 -0.0113421 0)
(0.170281 0.0226068 0)
(0.143734 0.0464679 0)
(0.11525 0.059362 0)
(0.0888089 0.0628405 0)
(0.0666496 0.0597304 0)
(0.0493238 0.0529077 0)
(0.0362927 0.044581 0)
(0.0266244 0.0361297 0)
(0.019438 0.0283012 0)
(0.0140537 0.0214556 0)
(0.00999518 0.0157296 0)
(0.00694186 0.0111273 0)
(0.00467409 0.00757192 0)
(0.00303044 0.0049382 0)
(0.00187976 0.00307411 0)
(0.00110804 0.00181974 0)
(0.000614892 0.00102287 0)
(0.000314276 0.000551499 0)
(0.000134675 0.00030371 0)
(1.27039e-05 0.000216341 0)
(0.026999 -0.287394 0)
(0.0601385 -0.280868 0)
(0.094676 -0.268345 0)
(0.129202 -0.248966 0)
(0.161933 -0.222162 0)
(0.190707 -0.187727 0)
(0.212835 -0.146032 0)
(0.225135 -0.0985901 0)
(0.224573 -0.0488898 0)
(0.209975 -0.00248548 0)
(0.183669 0.0346588 0)
(0.150932 0.0588956 0)
(0.117694 0.0701643 0)
(0.0883165 0.0711751 0)
(0.0647545 0.0656516 0)
(0.0470301 0.0569078 0)
(0.034119 0.0472282 0)
(0.0247749 0.0378808 0)
(0.0179591 0.0294701 0)
(0.0129227 0.0222441 0)
(0.00916288 0.0162639 0)
(0.00635198 0.0114872 0)
(0.00427226 0.00781004 0)
(0.00276827 0.00509114 0)
(0.00171668 0.00316857 0)
(0.00101189 0.00187544 0)
(0.000561685 0.00105412 0)
(0.000287268 0.000568346 0)
(0.00012335 0.00031302 0)
(1.14494e-05 0.000222722 0)
(0.0325917 -0.331207 0)
(0.0721694 -0.322539 0)
(0.112738 -0.306464 0)
(0.152621 -0.28221 0)
(0.189719 -0.249421 0)
(0.221776 -0.207994 0)
(0.245701 -0.158229 0)
(0.257567 -0.101871 0)
(0.253434 -0.0433646 0)
(0.232144 0.00974635 0)
(0.197705 0.0499481 0)
(0.157621 0.0737292 0)
(0.119177 0.0823882 0)
(0.0868975 0.0801668 0)
(0.0621648 0.0717755 0)
(0.0442875 0.060899 0)
(0.031678 0.0497968 0)
(0.0227707 0.0395443 0)
(0.0163908 0.0305632 0)
(0.0117391 0.0229732 0)
(0.00829865 0.0167542 0)
(0.00574222 0.0118159 0)
(0.00385791 0.00802687 0)
(0.00249826 0.00523017 0)
(0.00154883 0.00325435 0)
(0.000912972 0.001926 0)
(0.000506947 0.00108249 0)
(0.000259484 0.000583637 0)
(0.00011171 0.000321476 0)
(1.01181e-05 0.000228459 0)
(0.0405899 -0.384539 0)
(0.0882771 -0.371874 0)
(0.135734 -0.350911 0)
(0.181726 -0.320075 0)
(0.223277 -0.279926 0)
(0.25889 -0.230321 0)
(0.284786 -0.170986 0)
(0.296054 -0.103848 0)
(0.287135 -0.0344721 0)
(0.256829 0.0263917 0)
(0.212046 0.0692094 0)
(0.163333 0.0912839 0)
(0.119335 0.0960649 0)
(0.0843461 0.0897364 0)
(0.0587887 0.0780134 0)
(0.0410666 0.0648176 0)
(0.028965 0.0522505 0)
(0.0206144 0.0411015 0)
(0.0147368 0.031571 0)
(0.010506 0.023638 0)
(0.00740486 0.0171981 0)
(0.00511426 0.0121121 0)
(0.00343217 0.00822168 0)
(0.00222117 0.00535487 0)
(0.00137668 0.00333121 0)
(0.000811539 0.00197129 0)
(0.000450828 0.00110789 0)
(0.000231001 0.000597332 0)
(9.97884e-05 0.000329052 0)
(8.69765e-06 0.000233524 0)
(0.0537238 -0.451911 0)
(0.109093 -0.428766 0)
(0.163985 -0.404035 0)
(0.217938 -0.36233 0)
(0.26312 -0.313689 0)
(0.303081 -0.255032 0)
(0.331141 -0.184362 0)
(0.342056 -0.104251 0)
(0.326758 -0.020928 0)
(0.284065 0.0488815 0)
(0.226118 0.0933139 0)
(0.167429 0.111848 0)
(0.117734 0.111155 0)
(0.0804461 0.0997529 0)
(0.0545412 0.0842498 0)
(0.0373477 0.0685895 0)
(0.0259815 0.0545507 0)
(0.0183113 0.0425331 0)
(0.013002 0.0324841 0)
(0.00922718 0.0242342 0)
(0.00648416 0.0175932 0)
(0.00446989 0.0123745 0)
(0.00299624 0.00839382 0)
(0.00193775 0.00546487 0)
(0.0012007 0.00339894 0)
(0.000707877 0.00201117 0)
(0.000393484 0.00113025 0)
(0.000201898 0.000609393 0)
(8.76182e-05 0.000335725 0)
(7.17094e-06 0.000237887 0)
(0.0466073 -0.528089 0)
(0.0906332 -0.495405 0)
(0.166423 -0.486062 0)
(0.237703 -0.413041 0)
(0.301846 -0.352763 0)
(0.355587 -0.28311 0)
(0.385402 -0.198491 0)
(0.39772 -0.103179 0)
(0.373911 -0.000744247 0)
(0.313621 0.0791988 0)
(0.238988 0.123254 0)
(0.169066 0.135635 0)
(0.113874 0.127513 0)
(0.0749828 0.110024 0)
(0.0493501 0.0903416 0)
(0.0331235 0.0721312 0)
(0.0227354 0.0566571 0)
(0.0158696 0.0438201 0)
(0.0111926 0.0332936 0)
(0.00790684 0.0247574 0)
(0.00553934 0.0179376 0)
(0.00381097 0.0126022 0)
(0.00255132 0.00854272 0)
(0.00164879 0.00555983 0)
(0.00102136 0.00345732 0)
(0.000602261 0.00204554 0)
(0.000335068 0.00114951 0)
(0.000172254 0.000619787 0)
(7.5232e-05 0.000341475 0)
(5.51484e-06 0.000241516 0)
(-0.00107664 -0.538536 0)
(0.0117844 -0.490854 0)
(0.00288313 -0.555126 0)
(0.156609 -0.550779 0)
(0.271357 -0.42943 0)
(0.403321 -0.324339 0)
(0.444144 -0.214357 0)
(0.466921 -0.102138 0)
(0.430885 0.0298185 0)
(0.344606 0.120019 0)
(0.24921 0.160067 0)
(0.167155 0.162691 0)
(0.107199 0.144846 0)
(0.0677641 0.120285 0)
(0.0431638 0.0961157 0)
(0.0284048 0.0753509 0)
(0.0192426 0.0585293 0)
(0.013301 0.044944 0)
(0.00931635 0.033991 0)
(0.0065499 0.0252036 0)
(0.00457352 0.0182293 0)
(0.0031395 0.0127941 0)
(0.0020987 0.00866786 0)
(0.00135508 0.00563945 0)
(0.000839168 0.00350619 0)
(0.000494985 0.00207429 0)
(0.000275744 0.00116563 0)
(0.000142149 0.000628486 0)
(6.2663e-05 0.000346282 0)
(3.70077e-06 0.000244376 0)
(0.0536039 -0.6128 0)
(0.134172 -0.600339 0)
(0.218742 -0.608006 0)
(0.261837 -0.575324 0)
(0.349737 -0.541667 0)
(0.40862 -0.394773 0)
(0.503171 -0.247229 0)
(0.558775 -0.105895 0)
(0.500135 0.0790747 0)
(0.374775 0.174761 0)
(0.254642 0.204675 0)
(0.160355 0.192787 0)
(0.0971302 0.162659 0)
(0.0586509 0.130203 0)
(0.0359555 0.101369 0)
(0.0232234 0.0781527 0)
(0.0155267 0.0601288 0)
(0.0106201 0.0458875 0)
(0.00738198 0.0345686 0)
(0.0051617 0.0255695 0)
(0.00358998 0.0184667 0)
(0.00245754 0.0129495 0)
(0.0016397 0.00876879 0)
(0.00105746 0.00570347 0)
(0.000654626 0.0035454 0)
(0.000386341 0.00209736 0)
(0.000215673 0.00117854 0)
(0.000111668 0.000635467 0)
(4.99421e-05 0.00035013 0)
(1.69379e-06 0.000246434 0)
(0.0592658 -0.694792 0)
(0.132992 -0.68565 0)
(0.218004 -0.666938 0)
(0.291029 -0.639741 0)
(0.397059 -0.607715 0)
(0.55764 -0.450912 0)
(0.734533 -0.337499 0)
(0.722619 -0.0964688 0)
(0.55243 0.206175 0)
(0.393567 0.251023 0)
(0.251035 0.257033 0)
(0.1471 0.225319 0)
(0.0831022 0.180222 0)
(0.0476073 0.139401 0)
(0.0277267 0.105866 0)
(0.0176378 0.0804421 0)
(0.0116184 0.0614208 0)
(0.00784425 0.0466352 0)
(0.00539945 0.0350196 0)
(0.003748 0.0258519 0)
(0.00259213 0.0186484 0)
(0.0017672 0.0130677 0)
(0.00117562 0.00884519 0)
(0.000756742 0.0057517 0)
(0.000468231 0.00357483 0)
(0.000276619 0.00211466 0)
(0.000155019 0.00118823 0)
(8.08923e-05 0.000640713 0)
(3.70978e-05 0.000353004 0)
(-5.46871e-07 0.000247654 0)
(0.0641658 -0.779983 0)
(0.137558 -0.775276 0)
(0.232297 -0.770435 0)
(0.342236 -0.75927 0)
(0.466676 -0.724916 0)
(0.654494 -0.634993 0)
(1.01019 -0.462177 0)
(0.945487 -0.00675928 0)
(0.741844 0.327885 0)
(0.426928 0.322637 0)
(0.221247 0.318811 0)
(0.124168 0.259513 0)
(0.0644449 0.196836 0)
(0.0347947 0.147771 0)
(0.01851 0.109412 0)
(0.0117401 0.0821856 0)
(0.00755543 0.0624001 0)
(0.00499397 0.0471854 0)
(0.00337982 0.0353443 0)
(0.00231507 0.0260514 0)
(0.00158361 0.0187751 0)
(0.00107068 0.0131493 0)
(0.000707844 0.00889761 0)
(0.000453782 0.00578454 0)
(0.000280491 0.00359477 0)
(0.000166118 0.00212635 0)
(9.39471e-05 0.00119478 0)
(4.99056e-05 0.000644271 0)
(2.41575e-05 0.000354926 0)
(-3.01358e-06 0.000247968 0)
(0.0933412 -0.889382 0)
(0.183525 -0.871841 0)
(0.309695 -0.884306 0)
(0.456438 -0.876371 0)
(0.605807 -0.840305 0)
(0.494065 -0.728876 0)
(0.399896 -0.409345 0)
(0.756957 -0.357215 0)
(0.731957 0.429209 0)
(0.417731 0.430666 0)
(0.201878 0.385614 0)
(0.0737965 0.288855 0)
(0.0338753 0.20975 0)
(0.0218105 0.155752 0)
(0.00856683 0.112478 0)
(0.00570822 0.0844053 0)
(0.00339738 0.0641766 0)
(0.00209881 0.0486345 0)
(0.00133955 0.0365672 0)
(0.000874557 0.027089 0)
(0.000574162 0.0196407 0)
(0.000376545 0.0138428 0)
(0.000243503 0.0094219 0)
(0.000154259 0.00615557 0)
(9.57774e-05 0.0038402 0)
(5.83172e-05 0.00227794 0)
(3.50472e-05 0.00128262 0)
(2.05849e-05 0.000692461 0)
(1.2439e-05 0.000381651 0)
(0.000677483 0.000221359 0)
(-0.00178466 0.000318662 0)
(-0.00209524 0.000561708 0)
(-0.00243916 0.00104614 0)
(-0.00287219 0.0018856 0)
(-0.00340682 0.00323612 0)
(-0.00409209 0.00528806 0)
(-0.00499413 0.00826176 0)
(-0.00598628 0.01234 0)
(-0.00564997 0.0175721 0)
(-0.00410452 0.0243089 0)
(-0.00321526 0.0329248 0)
(-0.00297847 0.0436643 0)
(-0.00358627 0.0571884 0)
(-0.00532822 0.0740887 0)
(-0.00196412 0.0978094 0)
(0.0218951 0.144447 0)
(-0.014713 0.198118 0)
(-0.0810973 0.283597 0)
(-0.128227 0.399998 0)
(-0.339043 0.519819 0)
(-0.588297 0.506127 0)
(-0.679927 0.0618497 0)
(-0.347824 -0.388845 0)
(-0.184512 -0.615384 0)
(-0.31181 -0.771469 0)
(-0.419574 -0.886656 0)
(-0.448097 -0.934896 0)
(-0.392865 -0.968112 0)
(-0.236761 -1.02076 0)
(-0.0316786 -1.04652 0)
(-0.00408185 0.000321251 0)
(-0.00500534 0.000574788 0)
(-0.00616343 0.00107136 0)
(-0.00775462 0.00192012 0)
(-0.00981004 0.0032746 0)
(-0.0124704 0.00530646 0)
(-0.0159686 0.00822627 0)
(-0.0207312 0.0122525 0)
(-0.0270347 0.017518 0)
(-0.0351018 0.0244556 0)
(-0.047454 0.0336808 0)
(-0.0710933 0.0456355 0)
(-0.12768 0.0630557 0)
(-0.552148 0.159435 0)
(-1.00717 0.0942386 0)
(-0.33081 0.142165 0)
(-0.450489 0.166737 0)
(-0.0521155 0.30184 0)
(-0.110666 0.42568 0)
(-0.306675 0.580319 0)
(-0.49701 0.540414 0)
(-0.554279 0.0153562 0)
(-0.306793 -0.482382 0)
(-0.0616451 -0.636743 0)
(-0.0518042 -0.712371 0)
(-0.162351 -0.844301 0)
(-0.222119 -0.928694 0)
(-0.193659 -1.01406 0)
(-0.148238 -1.1061 0)
(-0.01476 -1.17412 0)
(-0.00492817 0.00033641 0)
(-0.00606635 0.000612954 0)
(-0.00750996 0.00114602 0)
(-0.00952222 0.00204136 0)
(-0.0121643 0.003461 0)
(-0.0156363 0.00556538 0)
(-0.0202532 0.00858318 0)
(-0.0265965 0.0128068 0)
(-0.0352194 0.0182979 0)
(-0.0469295 0.0256367 0)
(-0.0656849 0.0360129 0)
(-0.102055 0.0511611 0)
(-0.193907 0.0817756 0)
(-0.585796 0.347648 0)
(-2.42262 0.294536 0)
(-1.7945 -0.242076 0)
(-0.770828 0.135582 0)
(-0.487146 0.250266 0)
(-0.172902 0.427199 0)
(-0.311849 0.676166 0)
(-0.597567 0.623816 0)
(-0.436101 -0.0257708 0)
(-0.281114 -0.594572 0)
(-0.0443651 -0.699945 0)
(0.080923 -0.707262 0)
(0.0748156 -0.806104 0)
(0.0425864 -0.915758 0)
(0.0254507 -1.04009 0)
(0.0222686 -1.10566 0)
(-0.0040785 -1.20392 0)
(-0.00515277 0.000355913 0)
(-0.00629841 0.000660756 0)
(-0.00781513 0.0012387 0)
(-0.0099305 0.00219005 0)
(-0.0127279 0.00368904 0)
(-0.0164192 0.00588711 0)
(-0.02132 0.00903063 0)
(-0.0280053 0.0135059 0)
(-0.0371264 0.0193058 0)
(-0.0496125 0.0272161 0)
(-0.0698174 0.03914 0)
(-0.108954 0.0584748 0)
(-0.205029 0.105927 0)
(-0.486463 0.465567 0)
(-1.92267 0.49994 0)
(-1.23848 -0.481987 0)
(-0.757224 0.0565547 0)
(-0.611751 0.142368 0)
(0.00741804 0.166925 0)
(-0.316773 0.808198 0)
(-0.678186 0.665795 0)
(-0.763693 0.027233 0)
(-0.271763 -0.773233 0)
(-0.0489747 -0.777362 0)
(0.0979072 -0.75789 0)
(0.176019 -0.804788 0)
(0.182635 -0.908279 0)
(0.158768 -1.0193 0)
(0.113689 -1.08942 0)
(0.0134288 -1.1576 0)
(-0.00520825 0.000377615 0)
(-0.00629603 0.000716927 0)
(-0.00783654 0.00134409 0)
(-0.00997514 0.00235352 0)
(-0.0128122 0.00393406 0)
(-0.0165437 0.00623637 0)
(-0.0214471 0.00951876 0)
(-0.0280139 0.014258 0)
(-0.036962 0.0204041 0)
(-0.0493171 0.0289645 0)
(-0.0692817 0.0425555 0)
(-0.107095 0.0663707 0)
(-0.193586 0.129508 0)
(-0.349427 0.500532 0)
(-0.755927 0.60153 0)
(-0.573649 -0.580099 0)
(-0.499704 0.038509 0)
(-0.548729 0.126864 0)
(-0.526411 0.246635 0)
(-0.332963 0.96545 0)
(-0.646357 0.659448 0)
(-1.06443 -0.375487 0)
(-0.299939 -0.901542 0)
(-0.0406028 -0.861738 0)
(0.0925095 -0.821569 0)
(0.177354 -0.835418 0)
(0.206055 -0.90816 0)
(0.189846 -0.982549 0)
(0.12561 -1.02972 0)
(0.0184964 -1.05389 0)
(-0.0052297 0.000400983 0)
(-0.00625577 0.000781372 0)
(-0.00781124 0.0014605 0)
(-0.00995926 0.00252811 0)
(-0.0128093 0.0041878 0)
(-0.0165313 0.00659979 0)
(-0.0213577 0.0100286 0)
(-0.0276859 0.0150287 0)
(-0.0362529 0.0215561 0)
(-0.0481883 0.0308402 0)
(-0.0672955 0.0461348 0)
(-0.102118 0.074279 0)
(-0.172915 0.149271 0)
(-0.225869 0.477579 0)
(0.268747 0.598682 0)
(-0.105302 -0.476956 0)
(-0.381782 0.0435279 0)
(-0.462635 0.14143 0)
(-0.333887 0.389562 0)
(-0.585478 0.864964 0)
(-0.682173 0.71922 0)
(-0.611212 -0.986809 0)
(-0.242976 -1.10646 0)
(-0.00529962 -0.94669 0)
(0.0989734 -0.875718 0)
(0.156377 -0.868018 0)
(0.175436 -0.910837 0)
(0.154835 -0.951628 0)
(0.0997632 -0.958456 0)
(0.0147321 -0.948798 0)
(-0.00524083 0.000426497 0)
(-0.00621626 0.000853975 0)
(-0.00778147 0.00158729 0)
(-0.00993522 0.0027138 0)
(-0.0127822 0.00445023 0)
(-0.0164654 0.00697546 0)
(-0.0211752 0.0105582 0)
(-0.0272259 0.01581 0)
(-0.0353221 0.0227405 0)
(-0.0466767 0.032789 0)
(-0.0645165 0.0497437 0)
(-0.0952687 0.0817348 0)
(-0.147864 0.163552 0)
(-0.131119 0.431179 0)
(0.514458 0.469727 0)
(0.065008 -0.277864 0)
(-0.313812 0.0790839 0)
(-0.47547 0.16315 0)
(-0.22043 0.647975 0)
(-0.639975 0.818577 0)
(-0.937514 0.796736 0)
(-0.548125 -1.39415 0)
(-0.080926 -1.29227 0)
(0.0671608 -1.01339 0)
(0.12195 -0.91131 0)
(0.144169 -0.885112 0)
(0.1398 -0.90264 0)
(0.106139 -0.916755 0)
(0.0605885 -0.901092 0)
(0.0088337 -0.873292 0)
(-0.00524395 0.000454848 0)
(-0.0061806 0.000934522 0)
(-0.00774902 0.00172397 0)
(-0.00990455 0.0029109 0)
(-0.0127304 0.00472333 0)
(-0.0163468 0.00736385 0)
(-0.0209053 0.0111072 0)
(-0.026649 0.016601 0)
(-0.0342089 0.023944 0)
(-0.0448257 0.0347674 0)
(-0.0610119 0.0532619 0)
(-0.0868209 0.0883176 0)
(-0.12101 0.171781 0)
(-0.0646278 0.378463 0)
(0.371954 0.349892 0)
(0.0916555 -0.100376 0)
(-0.250597 0.141685 0)
(-0.500625 0.208318 0)
(-0.589431 0.353892 0)
(-0.916879 0.949173 0)
(-1.58707 1.00828 0)
(0.400827 -1.47175 0)
(0.205743 -1.34192 0)
(0.170695 -1.03296 0)
(0.159807 -0.91948 0)
(0.14543 -0.881033 0)
(0.117972 -0.877539 0)
(0.0746894 -0.875771 0)
(0.0325294 -0.857485 0)
(0.00455158 -0.833691 0)
(-0.00523832 0.000486748 0)
(-0.00614684 0.00102298 0)
(-0.00771136 0.00187042 0)
(-0.00986178 0.00311977 0)
(-0.0126465 0.00500957 0)
(-0.0161689 0.00776617 0)
(-0.0205419 0.0116744 0)
(-0.0259457 0.0173992 0)
(-0.0329123 0.0251516 0)
(-0.042621 0.0367271 0)
(-0.0567818 0.0565562 0)
(-0.0770015 0.0936529 0)
(-0.0942913 0.174217 0)
(-0.0206229 0.327444 0)
(0.25672 0.281901 0)
(0.0935107 0.0263042 0)
(-0.174308 0.220214 0)
(-0.702521 0.356982 0)
(-1.16477 0.49636 0)
(-1.20777 0.939336 0)
(0.174072 0.600808 0)
(1.12253 -1.33877 0)
(0.455322 -1.20093 0)
(0.275646 -0.989677 0)
(0.204307 -0.894576 0)
(0.157971 -0.854445 0)
(0.113982 -0.83886 0)
(0.0675633 -0.829036 0)
(0.0267565 -0.819832 0)
(0.00368523 -0.812694 0)
(-0.00522369 0.000522721 0)
(-0.00611315 0.00111934 0)
(-0.00766786 0.00202647 0)
(-0.00980206 0.00334051 0)
(-0.0125265 0.00531051 0)
(-0.01593 0.00818292 0)
(-0.0200826 0.0122561 0)
(-0.0251089 0.018197 0)
(-0.0314271 0.0263412 0)
(-0.0400501 0.0386081 0)
(-0.0518525 0.059476 0)
(-0.066141 0.0974367 0)
(-0.0691885 0.171674 0)
(0.00750034 0.28227 0)
(0.185974 0.24365 0)
(0.0969037 0.11052 0)
(-0.0722095 0.28759 0)
(-0.216343 0.81411 0)
(-1.59619 0.686833 0)
(0.220997 0.147616 0)
(0.761847 0.141003 0)
(1.09142 -0.913107 0)
(0.56727 -0.979315 0)
(0.349832 -0.896323 0)
(0.24338 -0.838958 0)
(0.175629 -0.808086 0)
(0.12212 -0.791535 0)
(0.0763381 -0.780595 0)
(0.0374088 -0.778646 0)
(0.0052677 -0.782735 0)
(-0.00519813 0.000563072 0)
(-0.00607438 0.00122363 0)
(-0.00761473 0.00219201 0)
(-0.00971871 0.00357322 0)
(-0.0123664 0.00562695 0)
(-0.015627 0.00861381 0)
(-0.0195247 0.0128467 0)
(-0.0241324 0.0189828 0)
(-0.0297434 0.0274851 0)
(-0.0371087 0.0403407 0)
(-0.046283 0.0618688 0)
(-0.0546335 0.0994749 0)
(-0.0466106 0.165257 0)
(0.0254305 0.244155 0)
(0.144403 0.219716 0)
(0.106552 0.160837 0)
(0.038236 0.311911 0)
(0.23469 0.709829 0)
(0.91598 0.399956 0)
(0.852663 -0.152869 0)
(0.872789 -0.252874 0)
(0.851948 -0.633334 0)
(0.568229 -0.778971 0)
(0.380984 -0.781405 0)
(0.267276 -0.762411 0)
(0.190161 -0.747033 0)
(0.131568 -0.737091 0)
(0.0847805 -0.731212 0)
(0.0453349 -0.72975 0)
(0.00621815 -0.730324 0)
(-0.00515928 0.000607987 0)
(-0.00602506 0.00133599 0)
(-0.00754557 0.00236693 0)
(-0.00960432 0.00381798 0)
(-0.0121606 0.00595856 0)
(-0.0152542 0.00905646 0)
(-0.0188641 0.0134381 0)
(-0.0230096 0.0197409 0)
(-0.0278494 0.0285475 0)
(-0.0338063 0.0418427 0)
(-0.0401751 0.0635846 0)
(-0.0429099 0.0996891 0)
(-0.0269763 0.156096 0)
(0.0373912 0.212543 0)
(0.122014 0.201608 0)
(0.120917 0.183618 0)
(0.127427 0.294523 0)
(0.347572 0.483117 0)
(0.848858 0.283693 0)
(0.795391 -0.115127 0)
(0.753021 -0.286427 0)
(0.682077 -0.499033 0)
(0.518674 -0.627673 0)
(0.376256 -0.668413 0)
(0.272626 -0.676889 0)
(0.195865 -0.676667 0)
(0.135641 -0.675032 0)
(0.0856871 -0.674091 0)
(0.0424185 -0.673227 0)
(0.00532333 -0.671971 0)
(-0.00510786 0.000657637 0)
(-0.00596441 0.00145659 0)
(-0.00745748 0.00255141 0)
(-0.00945697 0.00407518 0)
(-0.0119076 0.0063043 0)
(-0.0148087 0.00950673 0)
(-0.0180996 0.0140196 0)
(-0.0217373 0.0204537 0)
(-0.0257385 0.0294884 0)
(-0.0301677 0.0430278 0)
(-0.0336657 0.0644946 0)
(-0.0313785 0.0981194 0)
(-0.0103043 0.145166 0)
(0.0461023 0.186058 0)
(0.111706 0.184689 0)
(0.135873 0.185072 0)
(0.184747 0.252961 0)
(0.367872 0.317928 0)
(0.624408 0.169231 0)
(0.667213 -0.0870478 0)
(0.632519 -0.260999 0)
(0.562746 -0.41289 0)
(0.455013 -0.5162 0)
(0.349366 -0.568099 0)
(0.261919 -0.591605 0)
(0.191521 -0.602265 0)
(0.133755 -0.607375 0)
(0.0850819 -0.609979 0)
(0.0429145 -0.611347 0)
(0.00520506 -0.611952 0)
(-0.00504417 0.000712169 0)
(-0.00589107 0.00158529 0)
(-0.00734809 0.00274585 0)
(-0.00927581 0.00434493 0)
(-0.0116064 0.00666197 0)
(-0.0142895 0.00995837 0)
(-0.0172308 0.0145782 0)
(-0.0203149 0.0211005 0)
(-0.0234121 0.0302641 0)
(-0.0262336 0.0438114 0)
(-0.0269181 0.0645024 0)
(-0.0203895 0.0948962 0)
(0.00361832 0.133176 0)
(0.0530337 0.163151 0)
(0.108218 0.16673 0)
(0.147554 0.171601 0)
(0.212867 0.20315 0)
(0.349759 0.205372 0)
(0.497876 0.0913569 0)
(0.545442 -0.0822956 0)
(0.524103 -0.22878 0)
(0.468064 -0.346876 0)
(0.390971 -0.430855 0)
(0.311586 -0.482251 0)
(0.240189 -0.511677 0)
(0.178772 -0.528374 0)
(0.126111 -0.53798 0)
(0.0804652 -0.54347 0)
(0.0403198 -0.546339 0)
(0.00465469 -0.547368 0)
(-0.00496496 0.000771638 0)
(-0.00579969 0.00172134 0)
(-0.00721237 0.00295033 0)
(-0.00905748 0.00462648 0)
(-0.0112531 0.00702747 0)
(-0.013697 0.0104026 0)
(-0.0162595 0.0150983 0)
(-0.0187492 0.0216554 0)
(-0.0208915 0.0308257 0)
(-0.0220764 0.0441144 0)
(-0.0201305 0.0635533 0)
(-0.0102428 0.0902179 0)
(0.0150757 0.120647 0)
(0.058744 0.142539 0)
(0.107697 0.147114 0)
(0.153729 0.149252 0)
(0.219468 0.154779 0)
(0.317891 0.12851 0)
(0.408588 0.0379443 0)
(0.443741 -0.0861647 0)
(0.430195 -0.200903 0)
(0.387912 -0.294095 0)
(0.330732 -0.362857 0)
(0.270011 -0.40935 0)
(0.212427 -0.439273 0)
(0.160429 -0.458127 0)
(0.114213 -0.469875 0)
(0.0732162 -0.476977 0)
(0.036708 -0.480811 0)
(0.00405992 -0.482154 0)
(-0.00486697 0.000835787 0)
(-0.00568527 0.00186373 0)
(-0.00704429 0.00316446 0)
(-0.00879732 0.00491831 0)
(-0.0108416 0.00739576 0)
(-0.0130292 0.0108305 0)
(-0.0151873 0.0155636 0)
(-0.0170503 0.0220904 0)
(-0.0182065 0.0311243 0)
(-0.0177848 0.0438738 0)
(-0.0135004 0.0616397 0)
(-0.00115338 0.0843081 0)
(0.0243153 0.107833 0)
(0.0632552 0.123312 0)
(0.107505 0.126192 0)
(0.153904 0.122968 0)
(0.212158 0.112158 0)
(0.281752 0.0749775 0)
(0.338588 0.00148565 0)
(0.361055 -0.0905147 0)
(0.350785 -0.178285 0)
(0.318961 -0.251355 0)
(0.275724 -0.307201 0)
(0.228692 -0.347244 0)
(0.182482 -0.374798 0)
(0.139311 -0.393249 0)
(0.0998929 -0.405323 0)
(0.0642742 -0.412925 0)
(0.0322153 -0.417186 0)
(0.00340235 -0.4187 0)
(-0.00474948 0.000903519 0)
(-0.00554568 0.00201075 0)
(-0.00684151 0.00338631 0)
(-0.00849236 0.00521638 0)
(-0.0103683 0.00775928 0)
(-0.012284 0.0112314 0)
(-0.0140178 0.0159565 0)
(-0.0152352 0.0223754 0)
(-0.0154031 0.0311141 0)
(-0.0134724 0.0430486 0)
(-0.00723156 0.0588036 0)
(0.0067293 0.0774362 0)
(0.031518 0.0949382 0)
(0.0663408 0.105019 0)
(0.106067 0.104832 0)
(0.148748 0.0963004 0)
(0.196697 0.0765893 0)
(0.245317 0.0372505 0)
(0.280949 -0.0228125 0)
(0.293707 -0.0926114 0)
(0.284543 -0.159445 0)
(0.259978 -0.216228 0)
(0.226735 -0.260902 0)
(0.189994 -0.29418 0)
(0.153049 -0.318038 0)
(0.117727 -0.334629 0)
(0.0848535 -0.345856 0)
(0.0547417 -0.353175 0)
(0.0274157 -0.357452 0)
(0.00276325 -0.35901 0)
(-0.00461264 0.000973694 0)
(-0.00537929 0.00216113 0)
(-0.00660286 0.00361333 0)
(-0.00813947 0.00551569 0)
(-0.00983123 0.0081094 0)
(-0.0114603 0.0115927 0)
(-0.0127571 0.0162571 0)
(-0.0133255 0.0224793 0)
(-0.0125381 0.030756 0)
(-0.00926233 0.0416228 0)
(-0.00151186 0.0551256 0)
(0.0132893 0.0698352 0)
(0.0367937 0.0821324 0)
(0.0677536 0.0875649 0)
(0.102658 0.0840183 0)
(0.139466 0.0714751 0)
(0.177001 0.0479468 0)
(0.210466 0.0106812 0)
(0.232379 -0.0383403 0)
(0.238407 -0.09201 0)
(0.229614 -0.14296 0)
(0.210056 -0.186752 0)
(0.184099 -0.22192 0)
(0.155247 -0.248782 0)
(0.125852 -0.268537 0)
(0.0973428 -0.2826 0)
(0.0704655 -0.292329 0)
(0.0455835 -0.298863 0)
(0.0228211 -0.30285 0)
(0.00218953 -0.304345 0)
(-0.00445456 0.00104579 0)
(-0.00518486 0.00231425 0)
(-0.00632857 0.0038429 0)
(-0.00773974 0.0058115 0)
(-0.00923414 0.0084382 0)
(-0.0105654 0.0119016 0)
(-0.0114224 0.0164466 0)
(-0.0113566 0.0223746 0)
(-0.00968476 0.0300246 0)
(-0.00528556 0.0396105 0)
(0.00350703 0.0507399 0)
(0.0184577 0.0617554 0)
(0.0402163 0.0696014 0)
(0.0673598 0.071099 0)
(0.0971687 0.0646164 0)
(0.12737 0.0496831 0)
(0.15562 0.0255506 0)
(0.178161 -0.00775856 0)
(0.191072 -0.0475354 0)
(0.192697 -0.089067 0)
(0.184191 -0.127962 0)
(0.168248 -0.161525 0)
(0.147735 -0.188813 0)
(0.125025 -0.209986 0)
(0.101789 -0.225806 0)
(0.0791059 -0.23722 0)
(0.0575688 -0.245191 0)
(0.0374495 -0.250563 0)
(0.0188112 -0.253816 0)
(0.00172791 -0.255016 0)
(-0.0042711 0.00111923 0)
(-0.0049593 0.00246932 0)
(-0.00601649 0.00407224 0)
(-0.00729214 0.00609896 0)
(-0.00857948 0.00873788 0)
(-0.00960778 0.012145 0)
(-0.0100337 0.0165079 0)
(-0.00937315 0.0220399 0)
(-0.00692747 0.0289121 0)
(-0.00167311 0.0370573 0)
(0.00769024 0.0457954 0)
(0.0222091 0.0534469 0)
(0.0418693 0.057558 0)
(0.0651899 0.0558763 0)
(0.0898695 0.0472455 0)
(0.113643 0.0313976 0)
(0.134163 0.00854128 0)
(0.148879 -0.0201584 0)
(0.155874 -0.0521759 0)
(0.154777 -0.0843569 0)
(0.146701 -0.114038 0)
(0.133525 -0.139613 0)
(0.117178 -0.16053 0)
(0.0992805 -0.176912 0)
(0.0810002 -0.189274 0)
(0.0631157 -0.198244 0)
(0.0460588 -0.204442 0)
(0.0300255 -0.208381 0)
(0.0150736 -0.210464 0)
(0.00130737 -0.211123 0)
(-0.00405836 0.00119319 0)
(-0.00469869 0.00262479 0)
(-0.00566349 0.00429792 0)
(-0.00679502 0.00637191 0)
(-0.00787087 0.0090007 0)
(-0.00860052 0.012311 0)
(-0.00861871 0.0164271 0)
(-0.00742782 0.0214649 0)
(-0.00435752 0.0274327 0)
(0.0014584 0.0340443 0)
(0.0109389 0.0404692 0)
(0.0245578 0.0451602 0)
(0.0418743 0.0462351 0)
(0.0614262 0.0421626 0)
(0.081222 0.0322642 0)
(0.0992537 0.0166428 0)
(0.113635 -0.00394794 0)
(0.122809 -0.0280402 0)
(0.125971 -0.0535776 0)
(0.12332 -0.0784542 0)
(0.115847 -0.101046 0)
(0.104905 -0.120416 0)
(0.0918149 -0.136276 0)
(0.0776809 -0.148739 0)
(0.0633047 -0.158161 0)
(0.0492372 -0.164957 0)
(0.0358123 -0.169532 0)
(0.0232256 -0.172225 0)
(0.0115792 -0.173425 0)
(0.000946372 -0.173717 0)
(-0.0038129 0.00126708 0)
(-0.00439969 0.00277853 0)
(-0.00526684 0.00451647 0)
(-0.00624908 0.0066242 0)
(-0.00711378 0.00921981 0)
(-0.00755898 0.0123912 0)
(-0.00720993 0.016197 0)
(-0.0055794 0.020652 0)
(-0.00206494 0.0256243 0)
(0.00401304 0.0306849 0)
(0.0132026 0.0349563 0)
(0.0255641 0.0371346 0)
(0.0404071 0.0358505 0)
(0.0563585 0.0301531 0)
(0.0717385 0.0197888 0)
(0.0849362 0.00516789 0)
(0.0946209 -0.0127436 0)
(0.0999449 -0.0325637 0)
(0.100699 -0.0527354 0)
(0.0972998 -0.0718693 0)
(0.0905773 -0.0889815 0)
(0.0815143 -0.103542 0)
(0.0710274 -0.115425 0)
(0.0598808 -0.124744 0)
(0.0486372 -0.131759 0)
(0.0376952 -0.13677 0)
(0.0273056 -0.140071 0)
(0.0176248 -0.141931 0)
(0.00873454 -0.142688 0)
(0.000667025 -0.14284 0)
(-0.00353076 0.00134009 0)
(-0.00405966 0.00292818 0)
(-0.0048241 0.00472422 0)
(-0.00565514 0.00685087 0)
(-0.00631589 0.00938911 0)
(-0.00650284 0.0123809 0)
(-0.0058448 0.015818 0)
(-0.00388954 0.0196211 0)
(-0.000133856 0.0235459 0)
(0.00590977 0.0271026 0)
(0.0144719 0.0294565 0)
(0.0253311 0.0295893 0)
(0.037691 0.0265833 0)
(0.05033 0.0199461 0)
(0.0618995 0.00974985 0)
(0.0712115 -0.00341988 0)
(0.0774272 -0.0185993 0)
(0.0801593 -0.0346411 0)
(0.079496 -0.0504226 0)
(0.0758982 -0.0650447 0)
(0.0700332 -0.0779225 0)
(0.0626174 -0.0887756 0)
(0.0542928 -0.0975785 0)
(0.0455889 -0.104452 0)
(0.0368971 -0.109605 0)
(0.0285001 -0.113266 0)
(0.0205788 -0.115657 0)
(0.0132426 -0.116983 0)
(0.0065368 -0.1175 0)
(0.000465967 -0.11759 0)
(-0.0032087 0.00141124 0)
(-0.00367491 0.00307144 0)
(-0.00433366 0.00491737 0)
(-0.00501548 0.00704739 0)
(-0.00548716 0.00950461 0)
(-0.00545398 0.0122805 0)
(-0.00456366 0.0153024 0)
(-0.0024179 0.018411 0)
(0.00137444 0.0212961 0)
(0.00710558 0.0234476 0)
(0.0147778 0.0241649 0)
(0.0240002 0.0227139 0)
(0.0339789 0.0185556 0)
(0.0436876 0.0115396 0)
(0.0521032 0.00194984 0)
(0.0584243 -0.00957493 0)
(0.0621719 -0.0221876 0)
(0.0632411 -0.035005 0)
(0.061844 -0.0472512 0)
(0.0584087 -0.0583594 0)
(0.0534561 -0.0679974 0)
(0.0475068 -0.076035 0)
(0.0410092 -0.0825054 0)
(0.0343264 -0.0875293 0)
(0.0277213 -0.091281 0)
(0.0213797 -0.0939411 0)
(0.0154184 -0.0956784 0)
(0.00990842 -0.0966438 0)
(0.00487883 -0.0970223 0)
(0.000330187 -0.097088 0)
(-0.00284271 0.00147883 0)
(-0.00324261 0.00320507 0)
(-0.00379386 0.00509216 0)
(-0.00433302 0.00721049 0)
(-0.00463877 0.00956591 0)
(-0.00443557 0.0120981 0)
(-0.00340427 0.0146758 0)
(-0.00121739 0.0170792 0)
(0.00240594 0.0189693 0)
(0.00758977 0.0198749 0)
(0.014188 0.0192586 0)
(0.0217391 0.016653 0)
(0.029526 0.0118189 0)
(0.0367372 0.00483958 0)
(0.0426452 -0.00389158 0)
(0.046749 -0.0137691 0)
(0.0488203 -0.0241051 0)
(0.0489019 -0.0342555 0)
(0.0472378 -0.0437054 0)
(0.0441874 -0.052114 0)
(0.0401434 -0.0593087 0)
(0.035478 -0.0652497 0)
(0.0305014 -0.0699987 0)
(0.0254587 -0.0736657 0)
(0.0205234 -0.0763885 0)
(0.0158163 -0.0783038 0)
(0.011409 -0.0795393 0)
(0.00733805 -0.0802098 0)
(0.00361172 -0.0804561 0)
(0.000230443 -0.0804889 0)
(-0.00242929 0.00154083 0)
(-0.00275996 0.00332597 0)
(-0.00320402 0.00524438 0)
(-0.00361152 0.00733878 0)
(-0.00378162 0.00957749 0)
(-0.0034685 0.0118511 0)
(-0.0024015 0.0139792 0)
(-0.000329551 0.0157026 0)
(0.00293355 0.0166888 0)
(0.00738397 0.0165415 0)
(0.0127986 0.0148939 0)
(0.0187246 0.0115077 0)
(0.0245664 0.00636445 0)
(0.0297197 -0.000310716 0)
(0.0337061 -0.00809007 0)
(0.0362345 -0.0164507 0)
(0.0372316 -0.0248624 0)
(0.0368029 -0.0328765 0)
(0.0351743 -0.0401659 0)
(0.0326273 -0.0465382 0)
(0.0294469 -0.0519189 0)
(0.0258906 -0.0563188 0)
(0.0221665 -0.0598105 0)
(0.0184374 -0.0624929 0)
(0.014816 -0.0644767 0)
(0.0113807 -0.0658657 0)
(0.00817874 -0.0667526 0)
(0.0052372 -0.067218 0)
(0.00256393 -0.0673678 0)
(0.0001526 -0.0673742 0)
(-0.00196522 0.0015954 0)
(-0.00222425 0.00343055 0)
(-0.00256326 0.00537108 0)
(-0.00285318 0.0074332 0)
(-0.00292364 0.00954912 0)
(-0.00257021 0.0115671 0)
(-0.00157824 0.0132689 0)
(0.000230406 0.0143765 0)
(0.00296 0.0145873 0)
(0.00653601 0.0135978 0)
(0.0107195 0.0111993 0)
(0.0151206 0.00733418 0)
(0.019284 0.00213404 0)
(0.0227939 -0.00410246 0)
(0.0253509 -0.010967 0)
(0.0268105 -0.0180264 0)
(0.0271768 -0.0248894 0)
(0.0265674 -0.0312548 0)
(0.0251658 -0.0369251 0)
(0.0231784 -0.0418027 0)
(0.0208033 -0.0458701 0)
(0.0182127 -0.0491626 0)
(0.0155415 -0.0517544 0)
(0.0128938 -0.0537337 0)
(0.0103406 -0.0551929 0)
(0.00793102 -0.0562155 0)
(0.00569349 -0.0568771 0)
(0.00364332 -0.0572445 0)
(0.00178264 -0.0573879 0)
(0.000104731 -0.0574092 0)
(-0.00144755 0.00164033 0)
(-0.0016331 0.00351514 0)
(-0.00186987 0.00546958 0)
(-0.00205879 0.00749657 0)
(-0.00206917 0.00949679 0)
(-0.00174744 0.0112851 0)
(-0.000940923 0.0126163 0)
(0.000466064 0.0132122 0)
(0.00251567 0.0128051 0)
(0.00511627 0.0111899 0)
(0.00806183 0.00828442 0)
(0.01106 0.00416177 0)
(0.0137974 -0.000954602 0)
(0.0160148 -0.00673764 0)
(0.0175392 -0.0128183 0)
(0.0183108 -0.0188486 0)
(0.0183627 -0.0245433 0)
(0.0177928 -0.0297049 0)
(0.0167328 -0.0342201 0)
(0.0153215 -0.0380506 0)
(0.013688 -0.0412127 0)
(0.0119427 -0.043756 0)
(0.0101713 -0.0457514 0)
(0.00843863 -0.0472717 0)
(0.00678544 -0.0483877 0)
(0.00523281 -0.0491604 0)
(0.00378613 -0.0496405 0)
(0.00244483 -0.049872 0)
(0.00120624 -0.0499214 0)
(7.34998e-05 -0.0499061 0)
(-0.000874226 0.00167277 0)
(-0.000983991 0.00357555 0)
(-0.00112176 0.00553739 0)
(-0.00122505 0.00753395 0)
(-0.00121283 0.00944183 0)
(-0.00099163 0.0110525 0)
(-0.000471461 0.0121049 0)
(0.000409753 0.0123278 0)
(0.0016607 0.011491 0)
(0.00321064 0.00946374 0)
(0.00492324 0.00625354 0)
(0.00662597 0.00201433 0)
(0.00814347 -0.00297584 0)
(0.00933124 -0.00838938 0)
(0.0101092 -0.0138959 0)
(0.0104585 -0.0192098 0)
(0.0104091 -0.0241174 0)
(0.0100232 -0.028486 0)
(0.0093778 -0.0322533 0)
(0.0085506 -0.0354149 0)
(0.00761122 -0.0380047 0)
(0.00661673 -0.040077 0)
(0.00560909 -0.0416963 0)
(0.00462038 -0.0429262 0)
(0.00367449 -0.0438298 0)
(0.00278981 -0.0444598 0)
(0.00197819 -0.0448536 0)
(0.00124807 -0.0450412 0)
(0.000601922 -0.0450762 0)
(3.15802e-05 -0.0450599 0)
(-0.000100164 0.00119973 0)
(-0.000111576 0.00311466 0)
(-0.000127691 0.00506663 0)
(-0.000141833 0.00704994 0)
(-0.000144551 0.00895239 0)
(-0.000124837 0.0105708 0)
(-7.16488e-05 0.0116451 0)
(2.33212e-05 0.0119043 0)
(0.000162318 0.0111228 0)
(0.000336702 0.00918234 0)
(0.000527574 0.00610576 0)
(0.000698221 0.00205476 0)
(0.000745206 -0.00271175 0)
(0.000833011 -0.00787581 0)
(0.000906273 -0.0130944 0)
(0.000943402 -0.0181071 0)
(0.000944515 -0.022722 0)
(0.000914812 -0.0268209 0)
(0.000860972 -0.0303513 0)
(0.000789718 -0.0333115 0)
(0.00070719 -0.0357345 0)
(0.00061874 -0.0376725 0)
(0.000528345 -0.0391883 0)
(0.000438543 -0.040346 0)
(0.000351318 -0.0412074 0)
(0.000268806 -0.0418255 0)
(0.000192608 -0.0422448 0)
(0.000123983 -0.0425037 0)
(6.44317e-05 -0.0426352 0)
(1.40132e-05 -0.0426739 0)
(0.18156 -1.02595 0)
(0.36173 -0.979075 0)
(0.440706 -0.947666 0)
(0.432295 -0.900971 0)
(0.349961 -0.810207 0)
(0.197887 -0.653431 0)
(0.286628 -0.443013 0)
(0.467834 -0.167268 0)
(0.582444 0.421962 0)
(0.40687 0.527154 0)
(0.195049 0.433703 0)
(0.0576985 0.313493 0)
(0.051465 0.215296 0)
(-0.0207505 0.15849 0)
(-0.00293521 0.106673 0)
(0.00509906 0.0792038 0)
(0.00357499 0.0611918 0)
(0.00295867 0.0467549 0)
(0.00303048 0.0354496 0)
(0.0037142 0.02629 0)
(0.00522504 0.0191127 0)
(0.00605251 0.0135378 0)
(0.00524258 0.00918417 0)
(0.00426177 0.00594113 0)
(0.00351008 0.00367866 0)
(0.00293545 0.00217083 0)
(0.0024705 0.00121929 0)
(0.00207508 0.000657887 0)
(0.00179569 0.000362061 0)
(0.00635027 -0.000206573 0)
(0.119688 -1.14553 0)
(0.174418 -1.03957 0)
(0.225628 -0.955788 0)
(0.182456 -0.866816 0)
(0.0789661 -0.748898 0)
(0.0389444 -0.646991 0)
(0.194415 -0.553867 0)
(0.441265 -0.203424 0)
(0.573662 0.488779 0)
(0.39283 0.59076 0)
(0.149155 0.480233 0)
(-0.0236946 0.341472 0)
(0.401693 0.191854 0)
(0.272169 0.153799 0)
(1.03627 0.108838 0)
(0.760961 0.145997 0)
(0.141344 0.0685648 0)
(0.076462 0.0489196 0)
(0.0502408 0.0363634 0)
(0.0370173 0.0265021 0)
(0.0287726 0.0190517 0)
(0.0222139 0.0134284 0)
(0.017076 0.00911981 0)
(0.0132377 0.0059479 0)
(0.0103166 0.00371958 0)
(0.00809992 0.00221366 0)
(0.00636553 0.0012569 0)
(0.00501762 0.000681303 0)
(0.00414749 0.000367494 0)
(0.00498162 -0.000338846 0)
(-0.0216297 -1.18767 0)
(-0.0253557 -1.0657 0)
(-0.0390391 -0.944262 0)
(-0.0623254 -0.835936 0)
(-0.0880936 -0.726714 0)
(0.00541634 -0.697654 0)
(0.184277 -0.678579 0)
(0.542135 -0.264007 0)
(0.66089 0.563677 0)
(0.394694 0.679087 0)
(0.0699525 0.554778 0)
(0.460879 0.278046 0)
(0.672696 0.145522 0)
(1.61346 -0.133409 0)
(2.56693 0.31358 0)
(0.791114 0.389484 0)
(0.21993 0.0922879 0)
(0.110983 0.0554333 0)
(0.0701731 0.0390114 0)
(0.0497788 0.0277854 0)
(0.0375023 0.0198366 0)
(0.0283884 0.013992 0)
(0.0215405 0.0094974 0)
(0.0165184 0.00622595 0)
(0.0127417 0.00393243 0)
(0.00992293 0.00236139 0)
(0.00774846 0.00135894 0)
(0.00607852 0.000740684 0)
(0.00500813 0.000386912 0)
(0.00457072 -0.00034223 0)
(-0.0928589 -1.12362 0)
(-0.141778 -1.04461 0)
(-0.178375 -0.936182 0)
(-0.178608 -0.82969 0)
(-0.122717 -0.763252 0)
(0.0101476 -0.770565 0)
(0.207078 -0.775675 0)
(0.553173 -0.521596 0)
(0.661252 0.535502 0)
(0.441427 0.775694 0)
(0.321432 0.64682 0)
(0.558644 0.182328 0)
(0.752401 0.0731061 0)
(1.15622 -0.349819 0)
(1.96496 0.400677 0)
(0.565251 0.582594 0)
(0.231501 0.122709 0)
(0.118585 0.0640547 0)
(0.0746216 0.0425834 0)
(0.052519 0.0295297 0)
(0.0393506 0.0208782 0)
(0.0297646 0.0147161 0)
(0.0225975 0.00997576 0)
(0.0173177 0.00657094 0)
(0.0133329 0.00419026 0)
(0.0103694 0.00253986 0)
(0.00810072 0.00148063 0)
(0.00636788 0.000813066 0)
(0.00525964 0.000411993 0)
(0.00451086 -0.000304479 0)
(-0.0977584 -1.04078 0)
(-0.173854 -0.99799 0)
(-0.202243 -0.930864 0)
(-0.185775 -0.850759 0)
(-0.114472 -0.820899 0)
(0.00466495 -0.847633 0)
(0.208548 -0.906674 0)
(0.482715 -0.696634 0)
(0.663489 0.501934 0)
(0.466064 0.957501 0)
(0.161926 0.184459 0)
(0.576575 0.156541 0)
(0.515203 0.0651443 0)
(0.57803 -0.433796 0)
(0.72703 0.390563 0)
(0.331348 0.637122 0)
(0.215294 0.151248 0)
(0.116222 0.0733012 0)
(0.0739549 0.0464806 0)
(0.0521068 0.0314766 0)
(0.0390258 0.0220399 0)
(0.0296712 0.0155098 0)
(0.0226906 0.010501 0)
(0.0174596 0.00694256 0)
(0.0134605 0.00446135 0)
(0.0104678 0.00273018 0)
(0.00818607 0.00160932 0)
(0.00645498 0.000892939 0)
(0.00535017 0.000442684 0)
(0.00456879 -0.000258856 0)
(-0.0756464 -0.956905 0)
(-0.139258 -0.956098 0)
(-0.169549 -0.926031 0)
(-0.160738 -0.875936 0)
(-0.112586 -0.870419 0)
(-0.0229873 -0.921891 0)
(0.168509 -1.05623 0)
(1.0822 -0.912183 0)
(0.830985 0.652429 0)
(0.530429 1.03288 0)
(0.936718 0.303254 0)
(0.466392 0.145642 0)
(0.402212 0.0797492 0)
(0.196541 -0.354198 0)
(-0.319237 0.360428 0)
(0.17801 0.577549 0)
(0.187994 0.173529 0)
(0.110201 0.0824004 0)
(0.0716915 0.0505351 0)
(0.0508455 0.0335735 0)
(0.0381673 0.0232854 0)
(0.0292268 0.0163383 0)
(0.0225601 0.0110514 0)
(0.0174569 0.00732706 0)
(0.0134985 0.00473592 0)
(0.0105014 0.00292659 0)
(0.0082168 0.00174117 0)
(0.00649763 0.000978315 0)
(0.00540157 0.000478797 0)
(0.00463972 -0.000214236 0)
(-0.043427 -0.892658 0)
(-0.0909777 -0.915993 0)
(-0.129223 -0.91001 0)
(-0.141614 -0.887634 0)
(-0.125512 -0.901542 0)
(-0.0800068 -0.978514 0)
(0.0325754 -1.19592 0)
(0.565139 -1.48733 0)
(1.36102 1.456 0)
(0.679656 1.05315 0)
(1.27266 0.91539 0)
(0.492161 0.124519 0)
(0.348357 0.119263 0)
(0.0451475 -0.19536 0)
(-0.543777 0.299194 0)
(0.0832843 0.490352 0)
(0.156351 0.187895 0)
(0.101984 0.0907855 0)
(0.0685244 0.0545791 0)
(0.0491844 0.0357462 0)
(0.0371016 0.024582 0)
(0.0286445 0.0171884 0)
(0.0223247 0.0116243 0)
(0.0173839 0.00772507 0)
(0.0134985 0.00501576 0)
(0.0105118 0.00312929 0)
(0.00822643 0.00187665 0)
(0.00652027 0.00106866 0)
(0.00543212 0.000519644 0)
(0.00469608 -0.000172275 0)
(-0.0202803 -0.849946 0)
(-0.0593916 -0.873767 0)
(-0.104019 -0.879067 0)
(-0.136163 -0.879594 0)
(-0.152598 -0.907272 0)
(-0.161966 -0.996051 0)
(-0.182979 -1.23554 0)
(-0.306919 -1.70659 0)
(0.25873 1.10209 0)
(0.912489 1.05001 0)
(0.630767 0.504954 0)
(0.588087 0.148645 0)
(0.299474 0.188314 0)
(-0.00536774 -0.0500465 0)
(-0.381371 0.252801 0)
(0.0243487 0.410907 0)
(0.123935 0.194354 0)
(0.0919652 0.0979627 0)
(0.06452 0.0584659 0)
(0.0471484 0.0379349 0)
(0.0358555 0.0259073 0)
(0.0279463 0.0180532 0)
(0.021992 0.0122185 0)
(0.0172445 0.00813919 0)
(0.0134604 0.00530484 0)
(0.0105003 0.00333964 0)
(0.00821867 0.00201755 0)
(0.00652593 0.00116389 0)
(0.00544406 0.000564513 0)
(0.00473584 -0.000133113 0)
(-0.015958 -0.817709 0)
(-0.0528164 -0.827452 0)
(-0.0988926 -0.837359 0)
(-0.143544 -0.850989 0)
(-0.1877 -0.883458 0)
(-0.247944 -0.96185 0)
(-0.382015 -1.13817 0)
(-0.86913 -1.44545 0)
(-0.0986016 0.664922 0)
(0.587928 0.602083 0)
(1.40597 0.695454 0)
(0.829089 0.210718 0)
(0.228044 0.285454 0)
(-0.0329644 0.0621616 0)
(-0.255668 0.230363 0)
(-0.0103137 0.344692 0)
(0.0930918 0.193938 0)
(0.0804934 0.103522 0)
(0.0596888 0.0620402 0)
(0.0447111 0.0400785 0)
(0.0344164 0.0272374 0)
(0.0271274 0.0189251 0)
(0.0215604 0.0128316 0)
(0.0170382 0.00857124 0)
(0.0133804 0.00560692 0)
(0.0104643 0.00355915 0)
(0.00819426 0.0021662 0)
(0.00651569 0.00126436 0)
(0.00543842 0.000613109 0)
(0.00476021 -9.6668e-05 0)
(-0.0258966 -0.780104 0)
(-0.0630663 -0.779688 0)
(-0.107057 -0.789613 0)
(-0.158311 -0.805037 0)
(-0.220982 -0.832098 0)
(-0.313311 -0.883317 0)
(-0.490246 -0.966431 0)
(-0.914357 -0.999294 0)
(-1.22695 -0.101484 0)
(-0.373276 -0.0338263 0)
(1.52435 0.511902 0)
(0.477398 0.600722 0)
(0.100911 0.372884 0)
(-0.0586485 0.141729 0)
(-0.182374 0.219197 0)
(-0.0299986 0.291744 0)
(0.0653011 0.188176 0)
(0.0680182 0.107162 0)
(0.0540799 0.065132 0)
(0.0418536 0.0421062 0)
(0.0327684 0.028542 0)
(0.0261758 0.0197924 0)
(0.0210262 0.0134578 0)
(0.0167617 0.00902053 0)
(0.0132525 0.00592434 0)
(0.0103983 0.00378914 0)
(0.00815136 0.00232467 0)
(0.00648804 0.00137049 0)
(0.00541512 0.000665504 0)
(0.00476941 -6.27717e-05 0)
(-0.0333649 -0.730178 0)
(-0.0722114 -0.731187 0)
(-0.116589 -0.736539 0)
(-0.171881 -0.7461 0)
(-0.243291 -0.760949 0)
(-0.345408 -0.781335 0)
(-0.510649 -0.792488 0)
(-0.781721 -0.709111 0)
(-0.946597 -0.318466 0)
(-0.818272 -0.196735 0)
(-0.949313 -0.0165546 0)
(-0.363162 0.813282 0)
(-0.0454238 0.387888 0)
(-0.08714 0.189409 0)
(-0.142095 0.211041 0)
(-0.041571 0.250201 0)
(0.0412146 0.178683 0)
(0.0550306 0.108732 0)
(0.0477798 0.0675729 0)
(0.0385686 0.0439398 0)
(0.0308938 0.0297858 0)
(0.0250773 0.0206411 0)
(0.0203858 0.0140893 0)
(0.0164115 0.00948425 0)
(0.0130724 0.00625817 0)
(0.010299 0.00403097 0)
(0.00808868 0.00249456 0)
(0.00644343 0.0014829 0)
(0.00537703 0.000721994 0)
(0.00476517 -3.12704e-05 0)
(-0.030889 -0.673155 0)
(-0.0726227 -0.674712 0)
(-0.120756 -0.67595 0)
(-0.178057 -0.678148 0)
(-0.250164 -0.679917 0)
(-0.346421 -0.67602 0)
(-0.479952 -0.648667 0)
(-0.648597 -0.549219 0)
(-0.755162 -0.335711 0)
(-0.775445 -0.166113 0)
(-0.911263 0.123814 0)
(-0.465349 0.516844 0)
(-0.154105 0.346454 0)
(-0.116284 0.208209 0)
(-0.122573 0.20155 0)
(-0.0493413 0.217387 0)
(0.0208972 0.166865 0)
(0.042032 0.108223 0)
(0.0409238 0.0692039 0)
(0.0348732 0.0454895 0)
(0.0287839 0.030927 0)
(0.0238248 0.0214528 0)
(0.01964 0.0147149 0)
(0.0159872 0.00995712 0)
(0.0128392 0.00660791 0)
(0.0101667 0.00428563 0)
(0.00800592 0.0026767 0)
(0.00638384 0.00160227 0)
(0.00532749 0.000782907 0)
(0.00474834 -2.23475e-06 0)
(-0.0320327 -0.611861 0)
(-0.0729649 -0.611087 0)
(-0.119887 -0.609311 0)
(-0.175289 -0.60553 0)
(-0.242486 -0.597336 0)
(-0.325951 -0.578815 0)
(-0.428765 -0.536716 0)
(-0.541349 -0.44788 0)
(-0.624416 -0.302523 0)
(-0.664758 -0.137405 0)
(-0.668609 0.0989362 0)
(-0.440736 0.316685 0)
(-0.216371 0.282023 0)
(-0.141243 0.203993 0)
(-0.115388 0.188614 0)
(-0.0556237 0.190553 0)
(0.00403503 0.153761 0)
(0.0294662 0.10576 0)
(0.0336838 0.0698977 0)
(0.030808 0.0466628 0)
(0.026438 0.0319195 0)
(0.0224159 0.0222059 0)
(0.0187888 0.0153209 0)
(0.0154868 0.0104326 0)
(0.0125508 0.00697188 0)
(0.00999784 0.00455402 0)
(0.00789879 0.0028716 0)
(0.00630722 0.00172941 0)
(0.00526486 0.000848739 0)
(0.00471638 2.44673e-05 0)
(-0.0304838 -0.546992 0)
(-0.0694744 -0.54496 0)
(-0.113737 -0.540575 0)
(-0.164694 -0.532588 0)
(-0.224123 -0.518484 0)
(-0.293591 -0.493366 0)
(-0.37243 -0.448761 0)
(-0.452885 -0.373413 0)
(-0.516734 -0.262353 0)
(-0.549054 -0.122608 0)
(-0.52694 0.0500589 0)
(-0.395255 0.194566 0)
(-0.241712 0.216031 0)
(-0.158383 0.184281 0)
(-0.114485 0.171689 0)
(-0.0613216 0.167387 0)
(-0.00984791 0.140037 0)
(0.0176856 0.101552 0)
(0.0262569 0.0695685 0)
(0.0264372 0.0473683 0)
(0.0238658 0.0327125 0)
(0.0208502 0.0228752 0)
(0.0178276 0.0158927 0)
(0.0149051 0.0109034 0)
(0.0122024 0.00734691 0)
(0.0097867 0.00483665 0)
(0.00776264 0.00307958 0)
(0.00621062 0.00186503 0)
(0.00518708 0.000920151 0)
(0.00466816 4.93018e-05 0)
(-0.0281349 -0.481533 0)
(-0.0636721 -0.478626 0)
(-0.103594 -0.472697 0)
(-0.148633 -0.46256 0)
(-0.199468 -0.446046 0)
(-0.256214 -0.419565 0)
(-0.31721 -0.377855 0)
(-0.376957 -0.314854 0)
(-0.424918 -0.227114 0)
(-0.44795 -0.116359 0)
(-0.427616 0.00984437 0)
(-0.347017 0.115839 0)
(-0.242931 0.157898 0)
(-0.166492 0.156302 0)
(-0.115622 0.151397 0)
(-0.066458 0.146279 0)
(-0.0211659 0.12607 0)
(0.00697259 0.0958658 0)
(0.0188694 0.0681797 0)
(0.0218532 0.0475232 0)
(0.0210905 0.0332499 0)
(0.0191307 0.0234305 0)
(0.0167532 0.0164142 0)
(0.0142391 0.0113606 0)
(0.0117914 0.00772772 0)
(0.00953132 0.00513248 0)
(0.00759697 0.00330016 0)
(0.00609454 0.00200929 0)
(0.00509595 0.000997505 0)
(0.00460483 7.23828e-05 0)
(-0.0250226 -0.417921 0)
(-0.0562707 -0.414559 0)
(-0.0910633 -0.408041 0)
(-0.12968 -0.397401 0)
(-0.172186 -0.380913 0)
(-0.218096 -0.356028 0)
(-0.265677 -0.319425 0)
(-0.310971 -0.267564 0)
(-0.347024 -0.198297 0)
(-0.364191 -0.112853 0)
(-0.350854 -0.0190232 0)
(-0.300727 0.0628069 0)
(-0.230143 0.109998 0)
(-0.166348 0.125626 0)
(-0.116097 0.129005 0)
(-0.070638 0.12627 0)
(-0.0302206 0.112024 0)
(-0.00248342 0.0889641 0)
(0.0117419 0.0657447 0)
(0.017163 0.0470637 0)
(0.0181458 0.0334778 0)
(0.0172661 0.023841 0)
(0.0155661 0.0168694 0)
(0.013488 0.0117954 0)
(0.0113176 0.00810811 0)
(0.00923281 0.00543914 0)
(0.00740264 0.00353207 0)
(0.00596022 0.00216187 0)
(0.00499233 0.00108023 0)
(0.00452501 9.34943e-05 0)
(-0.0215681 -0.358152 0)
(-0.0482405 -0.354676 0)
(-0.0777212 -0.34827 0)
(-0.110031 -0.338232 0)
(-0.144958 -0.323214 0)
(-0.181843 -0.301394 0)
(-0.219163 -0.270612 0)
(-0.254018 -0.228727 0)
(-0.281652 -0.174541 0)
(-0.295561 -0.109193 0)
(-0.288669 -0.0383092 0)
(-0.257739 0.0263508 0)
(-0.209995 0.0719068 0)
(-0.159693 0.0959175 0)
(-0.114487 0.106007 0)
(-0.0733697 0.107005 0)
(-0.0371896 0.0980262 0)
(-0.0105662 0.0811462 0)
(0.0050866 0.0623285 0)
(0.0124919 0.0459535 0)
(0.0150844 0.0333489 0)
(0.0152778 0.0240746 0)
(0.0142748 0.0172402 0)
(0.0126557 0.0121956 0)
(0.0107821 0.00847993 0)
(0.00889039 0.00575147 0)
(0.00717751 0.0037722 0)
(0.0058047 0.00232154 0)
(0.00487311 0.00116641 0)
(0.0044253 0.000112503 0)
(-0.0181808 -0.303483 0)
(-0.0404207 -0.300168 0)
(-0.064819 -0.294353 0)
(-0.0912938 -0.285557 0)
(-0.11956 -0.272712 0)
(-0.14898 -0.254491 0)
(-0.178326 -0.229449 0)
(-0.205488 -0.196258 0)
(-0.227205 -0.154274 0)
(-0.239202 -0.104392 0)
(-0.237051 -0.0502494 0)
(-0.218532 0.00126835 0)
(-0.186569 0.0423317 0)
(-0.14847 0.0692155 0)
(-0.110321 0.0837505 0)
(-0.0742815 0.0885348 0)
(-0.0421579 0.0842154 0)
(-0.017174 0.0726481 0)
(-0.000903194 0.0580386 0)
(0.00797966 0.0441871 0)
(0.0119781 0.0328258 0)
(0.0131978 0.024099 0)
(0.0128937 0.0175049 0)
(0.0117477 0.0125466 0)
(0.0101866 0.0088338 0)
(0.00850282 0.00606322 0)
(0.00691894 0.00401695 0)
(0.00562393 0.00248691 0)
(0.00473377 0.00125466 0)
(0.00430288 0.00012961 0)
(-0.0151639 -0.254307 0)
(-0.0334327 -0.251583 0)
(-0.0532147 -0.246774 0)
(-0.0744617 -0.239525 0)
(-0.0969691 -0.229042 0)
(-0.120231 -0.21437 0)
(-0.143301 -0.19453 0)
(-0.164663 -0.168666 0)
(-0.182084 -0.136408 0)
(-0.192737 -0.0983563 0)
(-0.193721 -0.0567504 0)
(-0.183292 -0.0156869 0)
(-0.162326 0.0198813 0)
(-0.13442 0.0464316 0)
(-0.10375 0.0632613 0)
(-0.0732218 0.0711367 0)
(-0.0451814 0.0707802 0)
(-0.022261 0.0637413 0)
(-0.00607559 0.0530404 0)
(0.00376944 0.0417926 0)
(0.00891243 0.0318868 0)
(0.0110675 0.0238857 0)
(0.0114403 0.0176416 0)
(0.0107683 0.0128336 0)
(0.00953033 0.00916086 0)
(0.00806595 0.00636849 0)
(0.00662207 0.00426315 0)
(0.00541346 0.0026565 0)
(0.00457021 0.00134496 0)
(0.00415608 0.000145003 0)
(-0.0123103 -0.21073 0)
(-0.0269809 -0.209039 0)
(-0.04276 -0.205583 0)
(-0.0595944 -0.199971 0)
(-0.0773368 -0.191713 0)
(-0.0956171 -0.180206 0)
(-0.11375 -0.1648 0)
(-0.130662 -0.144922 0)
(-0.144822 -0.120319 0)
(-0.154331 -0.0913381 0)
(-0.157204 -0.0593136 0)
(-0.152023 -0.0267108 0)
(-0.13873 0.00327593 0)
(-0.118942 0.0277694 0)
(-0.0952571 0.0451865 0)
(-0.0702644 0.0551529 0)
(-0.0463444 0.0579547 0)
(-0.0258171 0.0546883 0)
(-0.0102963 0.0474942 0)
(1.2449e-06 0.0388276 0)
(0.0059813 0.0305306 0)
(0.0089373 0.0234145 0)
(0.0099381 0.0176314 0)
(0.0097274 0.0130439 0)
(0.00881599 0.00945257 0)
(0.00757806 0.00666132 0)
(0.00628407 0.00450797 0)
(0.00516971 0.00282844 0)
(0.00437928 0.00143745 0)
(0.00398271 0.000158888 0)
(-0.00955912 -0.173537 0)
(-0.0209585 -0.172604 0)
(-0.0333246 -0.1703 0)
(-0.0465651 -0.166192 0)
(-0.060512 -0.159941 0)
(-0.0748679 -0.151158 0)
(-0.089142 -0.139418 0)
(-0.102593 -0.124329 0)
(-0.114176 -0.105698 0)
(-0.122597 -0.0836947 0)
(-0.126459 -0.0590899 0)
(-0.12462 -0.033368 0)
(-0.116637 -0.00859862 0)
(-0.10309 0.0130349 0)
(-0.0854512 0.0298392 0)
(-0.0656594 0.0408876 0)
(-0.0457887 0.0459932 0)
(-0.027875 0.045754 0)
(-0.0134818 0.0416057 0)
(-0.00321194 0.0354077 0)
(0.00328464 0.028781 0)
(0.00686794 0.0226775 0)
(0.00841963 0.0174606 0)
(0.00863968 0.0131654 0)
(0.00804813 0.00969999 0)
(0.00703902 0.00693522 0)
(0.00590356 0.00474733 0)
(0.00489006 0.0030005 0)
(0.00415844 0.00153143 0)
(0.00378011 0.000171418 0)
(-0.00729727 -0.142737 0)
(-0.0159812 -0.142155 0)
(-0.0254713 -0.140575 0)
(-0.0356982 -0.137623 0)
(-0.0465252 -0.133021 0)
(-0.0577243 -0.126482 0)
(-0.0689369 -0.1177 0)
(-0.0796409 -0.106395 0)
(-0.0891127 -0.0924069 0)
(-0.0964577 -0.07579 0)
(-0.100681 -0.0569698 0)
(-0.10088 -0.0368335 0)
(-0.0965041 -0.0167116 0)
(-0.0876082 0.0018139 0)
(-0.0749321 0.0172591 0)
(-0.0597636 0.0285346 0)
(-0.0437231 0.0351246 0)
(-0.0285179 0.0371888 0)
(-0.0155944 0.0355865 0)
(-0.00576369 0.0316414 0)
(0.000919558 0.0266858 0)
(0.00492514 0.0216822 0)
(0.00692283 0.0171229 0)
(0.00752469 0.0131898 0)
(0.00723445 0.00989561 0)
(0.0064503 0.00718438 0)
(0.00547775 0.00497707 0)
(0.00457163 0.00317041 0)
(0.00390458 0.00162533 0)
(0.00354492 0.000183079 0)
(-0.00552538 -0.117521 0)
(-0.012069 -0.117123 0)
(-0.0192481 -0.115997 0)
(-0.0270279 -0.113855 0)
(-0.0353157 -0.110489 0)
(-0.0439477 -0.105683 0)
(-0.0526685 -0.0992051 0)
(-0.061113 -0.0908362 0)
(-0.0687796 -0.0804277 0)
(-0.0750457 -0.0679621 0)
(-0.0791984 -0.0536537 0)
(-0.0805377 -0.0380189 0)
(-0.0785331 -0.0218997 0)
(-0.0729985 -0.00640126 0)
(-0.0642212 0.00729805 0)
(-0.0529727 0.0181639 0)
(-0.0404081 0.0255248 0)
(-0.0278759 0.0292185 0)
(-0.0166422 0.0296507 0)
(-0.00758722 0.0276798 0)
(-0.00103321 0.0243244 0)
(0.00317598 0.0204551 0)
(0.0054895 0.0166218 0)
(0.00640556 0.013112 0)
(0.00638433 0.0100334 0)
(0.00581445 0.00740359 0)
(0.00500518 0.0051934 0)
(0.00421138 0.00333537 0)
(0.00361345 0.00171773 0)
(0.00327356 0.000193997 0)
(-0.00415779 -0.0970343 0)
(-0.00906305 -0.0967369 0)
(-0.0144519 -0.0959094 0)
(-0.0203023 -0.0943465 0)
(-0.0265533 -0.091895 0)
(-0.0330977 -0.0883925 0)
(-0.0397681 -0.0836585 0)
(-0.0463209 -0.0775132 0)
(-0.0524146 -0.0698201 0)
(-0.0576177 -0.0605208 0)
(-0.0614194 -0.0497022 0)
(-0.0632874 -0.0376496 0)
(-0.0627586 -0.0248818 0)
(-0.0595613 -0.0121426 0)
(-0.053727 -0.000312745 0)
(-0.0456658 0.00973331 0)
(-0.0361294 0.0172997 0)
(-0.0261183 0.0220309 0)
(-0.0166754 0.0240008 0)
(-0.00864812 0.0236855 0)
(-0.00250711 0.0217958 0)
(0.00168442 0.0190429 0)
(0.00416439 0.015974 0)
(0.00530732 0.0129344 0)
(0.0055105 0.0101102 0)
(0.00513541 0.00758823 0)
(0.00448481 0.00539209 0)
(0.00380605 0.00349252 0)
(0.00328183 0.00180762 0)
(0.00296237 0.000204554 0)
(-0.00310735 -0.0804565 0)
(-0.00674507 -0.0802636 0)
(-0.0107277 -0.0796897 0)
(-0.0150486 -0.0785779 0)
(-0.0196791 -0.0768125 0)
(-0.0245557 -0.0742708 0)
(-0.0295707 -0.0708171 0)
(-0.034564 -0.0663113 0)
(-0.0393062 -0.0606353 0)
(-0.0435011 -0.0537135 0)
(-0.0467875 -0.0455586 0)
(-0.0487714 -0.0363114 0)
(-0.0490782 -0.0262755 0)
(-0.0474298 -0.0159331 0)
(-0.0437353 -0.00590938 0)
(-0.0381629 0.00310438 0)
(-0.0311667 0.0104745 0)
(-0.0234375 0.0157597 0)
(-0.015783 0.018816 0)
(-0.00894865 0.0198235 0)
(-0.00345061 0.0192129 0)
(0.000506776 0.0175127 0)
(0.00298939 0.0152104 0)
(0.00425675 0.0126682 0)
(0.00462552 0.0101273 0)
(0.0044176 0.00773541 0)
(0.00391607 0.00556916 0)
(0.00335308 0.00363875 0)
(0.00290551 0.00189261 0)
(0.00260776 0.000214486 0)
(-0.00222582 -0.0673592 0)
(-0.00483018 -0.0672451 0)
(-0.00770177 -0.0668507 0)
(-0.010836 -0.0660548 0)
(-0.0142106 -0.0647751 0)
(-0.0177824 -0.0629228 0)
(-0.0214811 -0.0603961 0)
(-0.0252028 -0.0570855 0)
(-0.0287963 -0.0528889 0)
(-0.0320642 -0.047726 0)
(-0.0347586 -0.0415694 0)
(-0.0365983 -0.0344727 0)
(-0.0372969 -0.0266006 0)
(-0.0366108 -0.018252 0)
(-0.0344031 -0.00985257 0)
(-0.0307066 -0.00192041 0)
(-0.0257675 0.00501065 0)
(-0.0200296 0.0104899 0)
(-0.0140798 0.0142481 0)
(-0.00852309 0.016255 0)
(-0.00384699 0.0167082 0)
(-0.00032169 0.0159511 0)
(0.00200137 0.0143794 0)
(0.00327737 0.0123347 0)
(0.00374318 0.0100914 0)
(0.0036659 0.00784491 0)
(0.00329851 0.00572106 0)
(0.0028497 0.00377017 0)
(0.00248127 0.00197042 0)
(0.00220617 0.000223317 0)
(-0.00155044 -0.0573866 0)
(-0.00336343 -0.0572698 0)
(-0.00536477 -0.0569494 0)
(-0.0075541 -0.0563499 0)
(-0.00991886 -0.0554049 0)
(-0.0124332 -0.0540414 0)
(-0.0150539 -0.0521778 0)
(-0.0177157 -0.0497237 0)
(-0.020322 -0.0465894 0)
(-0.0227451 -0.0426966 0)
(-0.0248211 -0.038 0)
(-0.0263567 -0.032504 0)
(-0.0271456 -0.0262867 0)
(-0.0269959 -0.0195235 0)
(-0.0257723 -0.0124928 0)
(-0.023443 -0.00556921 0)
(-0.0201182 0.000819062 0)
(-0.01607 0.00625653 0)
(-0.0116901 0.0104165 0)
(-0.00743271 0.0131318 0)
(-0.00370617 0.014421 0)
(-0.000785708 0.0144649 0)
(0.001224 0.0135449 0)
(0.0023884 0.0119677 0)
(0.00287262 0.0100153 0)
(0.0028844 0.00791887 0)
(0.00263233 0.0058454 0)
(0.00229317 0.00388322 0)
(0.00200584 0.00203866 0)
(0.00175439 0.000230982 0)
(-0.0010457 -0.0499082 0)
(-0.00225724 -0.0498757 0)
(-0.00357145 -0.0496842 0)
(-0.00499004 -0.0492555 0)
(-0.00651399 -0.048544 0)
(-0.00813916 -0.0475023 0)
(-0.00984926 -0.0460712 0)
(-0.0116087 -0.0441821 0)
(-0.0133576 -0.0417629 0)
(-0.0150153 -0.0387421 0)
(-0.016477 -0.0350643 0)
(-0.0176175 -0.0307047 0)
(-0.0182992 -0.0256879 0)
(-0.0183873 -0.0201097 0)
(-0.0177742 -0.014148 0)
(-0.0164107 -0.00806903 0)
(-0.0143355 -0.00220867 0)
(-0.0116951 0.0030666 0)
(-0.00873375 0.00741759 0)
(-0.00575724 0.0105964 0)
(-0.00306607 0.0124967 0)
(-0.000888091 0.013167 0)
(0.0006625 0.0127867 0)
(0.0015973 0.0116124 0)
(0.00201921 0.00991981 0)
(0.00207366 0.00796247 0)
(0.00191627 0.00594029 0)
(0.00168174 0.003974 0)
(0.00147653 0.00209465 0)
(0.00124989 0.000237201 0)
(-0.000529279 -0.0450637 0)
(-0.00115442 -0.0450423 0)
(-0.00186234 -0.0448883 0)
(-0.00265284 -0.0445364 0)
(-0.00351859 -0.0439546 0)
(-0.00444827 -0.043109 0)
(-0.00542516 -0.0419506 0)
(-0.00642643 -0.0404187 0)
(-0.00742183 -0.0384498 0)
(-0.0083723 -0.0359794 0)
(-0.00922447 -0.0329505 0)
(-0.00991132 -0.0293238 0)
(-0.0103565 -0.0250939 0)
(-0.0104822 -0.0203089 0)
(-0.0102218 -0.0150846 0)
(-0.00953714 -0.00961593 0)
(-0.00843527 -0.00417282 0)
(-0.00698162 0.000922155 0)
(-0.00530885 0.00534089 0)
(-0.00358743 0.00879022 0)
(-0.00199225 0.0110858 0)
(-0.000669191 0.0121882 0)
(0.000295618 0.0121974 0)
(0.000893789 0.0113241 0)
(0.00117719 0.00983107 0)
(0.00123048 0.00798393 0)
(0.00114765 0.00600469 0)
(0.00101247 0.00403842 0)
(0.000891534 0.00213503 0)
(0.000690964 0.00024144 0)
(-3.32271e-05 -0.0426642 0)
(-8.58213e-05 -0.0425977 0)
(-0.000147812 -0.0424272 0)
(-0.000218442 -0.0421209 0)
(-0.000296189 -0.0416443 0)
(-0.000379719 -0.0409575 0)
(-0.000467251 -0.0400137 0)
(-0.000556741 -0.0387575 0)
(-0.000646257 -0.0371271 0)
(-0.000733017 -0.0350586 0)
(-0.000812545 -0.0324921 0)
(-0.000879142 -0.0293794 0)
(-0.000926478 -0.0256961 0)
(-0.0009478 -0.0214564 0)
(-0.000936726 -0.0167295 0)
(-0.00088887 -0.0116535 0)
(-0.000806385 -0.00643992 0)
(-0.000721689 -0.00136407 0)
(-0.000657874 0.00320934 0)
(-0.000474985 0.00701139 0)
(-0.000286896 0.00978079 0)
(-0.000121303 0.0114004 0)
(5.60838e-06 0.0118865 0)
(8.84839e-05 0.0113921 0)
(0.000131881 0.010156 0)
(0.000144511 0.00845007 0)
(0.000138085 0.00652099 0)
(0.000122699 0.00454925 0)
(0.00010734 0.0026211 0)
(9.80665e-05 0.000712635 0)
(-2.50712e-05 7.15061e-06 0)
(-0.000313195 6.39797e-06 0)
(-0.00069045 1.18302e-05 0)
(-0.00132223 2.17661e-05 0)
(-0.00234574 3.82058e-05 0)
(-0.00392104 6.35959e-05 0)
(-0.00622201 0.000100504 0)
(-0.00941776 0.000151116 0)
(-0.0136448 0.000216341 0)
(-0.0189688 0.000294565 0)
(-0.0253403 0.00038015 0)
(-0.0325525 0.000462227 0)
(-0.0402166 0.000524718 0)
(-0.0477802 0.00054856 0)
(-0.0545934 0.000516152 0)
(-0.0600208 0.000416735 0)
(-0.0635646 0.000250108 0)
(-0.0649534 2.71372e-05 0)
(-0.0641726 -0.000233104 0)
(-0.0614302 -0.000508567 0)
(-0.0570855 -0.000778476 0)
(-0.0515657 -0.00102662 0)
(-0.0452959 -0.00124266 0)
(-0.0386509 -0.00142178 0)
(-0.0319317 -0.00156366 0)
(-0.0253672 -0.00167061 0)
(-0.0191093 -0.00174705 0)
(-0.0132553 -0.00179753 0)
(-0.00785587 -0.00182738 0)
(-0.00292591 -0.00184088 0)
(-2.50715e-05 2.02649e-05 0)
(-0.000254052 2.40632e-05 0)
(-0.000597899 4.37386e-05 0)
(-0.00117338 8.11047e-05 0)
(-0.00211613 0.00014419 0)
(-0.00358611 0.000243171 0)
(-0.00576078 0.000389258 0)
(-0.00881875 0.000592688 0)
(-0.0129134 0.000859452 0)
(-0.018137 0.00118636 0)
(-0.0244749 0.00155454 0)
(-0.0317617 0.00192352 0)
(-0.039647 0.00222906 0)
(-0.0476003 0.00238961 0)
(-0.0549644 0.00232325 0)
(-0.0610604 0.00197121 0)
(-0.0653173 0.00131816 0)
(-0.0673792 0.00039947 0)
(-0.0671579 -0.000708425 0)
(-0.0648132 -0.00190826 0)
(-0.0606868 -0.00310479 0)
(-0.0552141 -0.00422059 0)
(-0.0488466 -0.00520369 0)
(-0.0419917 -0.006028 0)
(-0.0349873 -0.00668784 0)
(-0.0280894 -0.00719212 0)
(-0.0214773 -0.00755805 0)
(-0.0152655 -0.0078066 0)
(-0.0095178 -0.00795942 0)
(-0.00425645 -0.0080367 0)
(-2.49337e-05 3.3318e-05 0)
(-0.00025282 4.25716e-05 0)
(-0.000594979 7.73811e-05 0)
(-0.00116763 0.000143491 0)
(-0.00210577 0.000255109 0)
(-0.00356861 0.000430255 0)
(-0.00573292 0.000688803 0)
(-0.00877693 0.00104896 0)
(-0.0128545 0.00152154 0)
(-0.0180598 0.00210128 0)
(-0.0243832 0.00275541 0)
(-0.0316673 0.00341309 0)
(-0.0395727 0.00396118 0)
(-0.0475799 0.00425518 0)
(-0.055038 0.00414851 0)
(-0.0612651 0.00353437 0)
(-0.0656764 0.00238238 0)
(-0.0678949 0.00075285 0)
(-0.0678095 -0.0012194 0)
(-0.0655626 -0.00336085 0)
(-0.0614869 -0.00550035 0)
(-0.0560172 -0.00749825 0)
(-0.0496113 -0.00926031 0)
(-0.0426858 -0.0107388 0)
(-0.035589 -0.011923 0)
(-0.0285864 -0.0128281 0)
(-0.0218649 -0.0134851 0)
(-0.0155444 -0.0139315 0)
(-0.00969295 -0.014206 0)
(-0.00433522 -0.0143447 0)
(-2.47286e-05 4.62821e-05 0)
(-0.000250906 6.09644e-05 0)
(-0.00059044 0.000110814 0)
(-0.0011587 0.000205487 0)
(-0.00208966 0.000365335 0)
(-0.0035414 0.000616185 0)
(-0.00568961 0.000986548 0)
(-0.00871187 0.00150265 0)
(-0.0127627 0.00218031 0)
(-0.0179394 0.00301266 0)
(-0.0242398 0.00395396 0)
(-0.0315189 0.00490428 0)
(-0.0394545 0.00570297 0)
(-0.0475446 0.00614313 0)
(-0.0551482 0.00601239 0)
(-0.0615798 0.00515249 0)
(-0.0662338 0.00351338 0)
(-0.0686995 0.00117599 0)
(-0.0688302 -0.00166862 0)
(-0.0667401 -0.00477012 0)
(-0.0627468 -0.00787879 0)
(-0.0572842 -0.010789 0)
(-0.0508191 -0.0133605 0)
(-0.0437832 -0.0155214 0)
(-0.0365411 -0.0172538 0)
(-0.0293731 -0.0185792 0)
(-0.0224785 -0.0195417 0)
(-0.0159863 -0.0201959 0)
(-0.00997076 -0.0205982 0)
(-0.00445993 -0.0208014 0)
(-2.44564e-05 5.91209e-05 0)
(-0.000248314 7.91911e-05 0)
(-0.000584296 0.000143943 0)
(-0.00114661 0.000266922 0)
(-0.00206785 0.000474568 0)
(-0.00350457 0.000800461 0)
(-0.00563095 0.00128171 0)
(-0.00862371 0.00195262 0)
(-0.0126381 0.0028343 0)
(-0.0177758 0.00391891 0)
(-0.0240442 0.00514903 0)
(-0.0313153 0.00639753 0)
(-0.0392899 0.00745826 0)
(-0.0474899 0.00806285 0)
(-0.0552896 0.00793155 0)
(-0.0619993 0.00684998 0)
(-0.0669861 0.00474153 0)
(-0.0697942 0.0017014 0)
(-0.0702268 -0.00202659 0)
(-0.0683582 -0.00611465 0)
(-0.0644841 -0.0102306 0)
(-0.0590357 -0.0140971 0)
(-0.0524923 -0.017523 0)
(-0.0453057 -0.0204078 0)
(-0.0378634 -0.0227242 0)
(-0.0304668 -0.0244983 0)
(-0.0233321 -0.0257879 0)
(-0.0166013 -0.0266647 0)
(-0.0103573 -0.027204 0)
(-0.0046336 -0.0274765 0)
(-2.4118e-05 7.18006e-05 0)
(-0.000245052 9.72018e-05 0)
(-0.000576564 0.000176678 0)
(-0.00113139 0.000327626 0)
(-0.0020404 0.000582507 0)
(-0.0034582 0.000982583 0)
(-0.00555709 0.00157352 0)
(-0.00851263 0.00239775 0)
(-0.012481 0.00348199 0)
(-0.0175689 0.00481835 0)
(-0.0237958 0.00633931 0)
(-0.0310546 0.00789302 0)
(-0.0390751 0.00923045 0)
(-0.04741 0.0100232 0)
(-0.0554545 0.0099224 0)
(-0.0625159 0.00865152 0)
(-0.0679286 0.0060984 0)
(-0.0711797 0.00236377 0)
(-0.0720078 -0.00226083 0)
(-0.0704339 -0.00736987 0)
(-0.0667227 -0.0125434 0)
(-0.0613007 -0.0174255 0)
(-0.0546618 -0.0217662 0)
(-0.047284 -0.0254312 0)
(-0.0395843 -0.0283799 0)
(-0.0318916 -0.0306416 0)
(-0.0244451 -0.0322871 0)
(-0.0174036 -0.033407 0)
(-0.0108618 -0.0340961 0)
(-0.00486017 -0.0344441 0)
(-2.37148e-05 8.42875e-05 0)
(-0.00024113 0.000114949 0)
(-0.000567265 0.000208931 0)
(-0.00111308 0.000387436 0)
(-0.00200738 0.000688862 0)
(-0.00340242 0.00116207 0)
(-0.0054682 0.0018612 0)
(-0.00837884 0.00283691 0)
(-0.0122915 0.00412194 0)
(-0.0173187 0.0057093 0)
(-0.0234939 0.0075234 0)
(-0.0307346 0.00939065 0)
(-0.0388055 0.0110225 0)
(-0.0472974 0.0120326 0)
(-0.055633 0.0120011 0)
(-0.0631195 0.0105823 0)
(-0.0690545 0.00761724 0)
(-0.0728566 0.00320061 0)
(-0.0741842 -0.00233531 0)
(-0.0729887 -0.00850727 0)
(-0.0694939 -0.0148017 0)
(-0.064117 -0.0207746 0)
(-0.0573685 -0.026108 0)
(-0.0497584 -0.0306258 0)
(-0.0417408 -0.0342696 0)
(-0.0336796 -0.0370696 0)
(-0.025843 -0.0391092 0)
(-0.0184118 -0.0404986 0)
(-0.011496 -0.041354 0)
(-0.00514525 -0.041786 0)
(-2.32475e-05 9.65467e-05 0)
(-0.000236559 0.000132384 0)
(-0.000556424 0.000240611 0)
(-0.00109174 0.000446187 0)
(-0.00196889 0.000793343 0)
(-0.00333737 0.00133842 0)
(-0.0053645 0.00214399 0)
(-0.00822263 0.00326899 0)
(-0.0120699 0.0047526 0)
(-0.0170251 0.00658996 0)
(-0.0231375 0.00869964 0)
(-0.0303526 0.0108898 0)
(-0.0384756 0.0128367 0)
(-0.0471431 0.0140985 0)
(-0.0558129 0.0141832 0)
(-0.0637971 0.0126678 0)
(-0.0703546 0.00933311 0)
(-0.0748247 0.00425316 0)
(-0.076768 -0.00220896 0)
(-0.0760491 -0.00949288 0)
(-0.0728365 -0.0169853 0)
(-0.0675322 -0.024142 0)
(-0.0606643 -0.0305652 0)
(-0.0527807 -0.0360273 0)
(-0.0443809 -0.0404457 0)
(-0.0358722 -0.043848 0)
(-0.0275593 -0.0463303 0)
(-0.0196508 -0.0480229 0)
(-0.0122758 -0.0490658 0)
(-0.00549563 -0.0495924 0)
(-2.2717e-05 0.000108545 0)
(-0.00023135 0.000149458 0)
(-0.00054407 0.000271632 0)
(-0.00106742 0.000503717 0)
(-0.00192502 0.000895662 0)
(-0.00326322 0.00151117 0)
(-0.00524624 0.00242113 0)
(-0.00804431 0.00369285 0)
(-0.0118163 0.00537245 0)
(-0.0166881 0.00745846 0)
(-0.0227257 0.00986613 0)
(-0.0299057 0.0123895 0)
(-0.0380792 0.0146744 0)
(-0.0469363 0.0162275 0)
(-0.0559793 0.0164836 0)
(-0.0645327 0.0149339 0)
(-0.0718166 0.0112833 0)
(-0.0770818 0.00556701 0)
(-0.0797728 -0.00183368 0)
(-0.079646 -0.0102859 0)
(-0.0767975 -0.0190674 0)
(-0.0716048 -0.0275208 0)
(-0.0646135 -0.0351532 0)
(-0.0564154 -0.0416729 0)
(-0.0475645 -0.0469646 0)
(-0.0385212 -0.0510496 0)
(-0.0296357 -0.0540353 0)
(-0.021151 -0.0560737 0)
(-0.0132204 -0.0573303 0)
(-0.00592036 -0.0579654 0)
(-2.21245e-05 0.000120251 0)
(-0.00022552 0.000166126 0)
(-0.000530239 0.000301911 0)
(-0.00104019 0.000559871 0)
(-0.00187589 0.000995545 0)
(-0.00318017 0.00167985 0)
(-0.0051137 0.00269189 0)
(-0.00784426 0.00410741 0)
(-0.0115313 0.00597997 0)
(-0.0163077 0.00831285 0)
(-0.0222574 0.0110208 0)
(-0.0293908 0.0138882 0)
(-0.0376093 0.0165362 0)
(-0.0466648 0.018425 0)
(-0.0561149 0.0189161 0)
(-0.0653064 0.0174067 0)
(-0.0734246 0.0135075 0)
(-0.0796237 0.00719304 0)
(-0.083213 -0.00115546 0)
(-0.0838155 -0.0108369 0)
(-0.081433 -0.0210138 0)
(-0.076406 -0.030899 0)
(-0.0692954 -0.0398852 0)
(-0.0607426 -0.0476014 0)
(-0.0513663 -0.0538885 0)
(-0.0416919 -0.0587558 0)
(-0.0321249 -0.0623205 0)
(-0.0229514 -0.0647576 0)
(-0.0143549 -0.0662612 0)
(-0.0064304 -0.0670217 0)
(-2.14713e-05 0.000131633 0)
(-0.000219083 0.000182342 0)
(-0.000514967 0.000331363 0)
(-0.00101012 0.000614494 0)
(-0.00182163 0.00109272 0)
(-0.00308843 0.00184399 0)
(-0.00496722 0.00295552 0)
(-0.00762289 0.00451154 0)
(-0.0112152 0.00657356 0)
(-0.015884 0.00915105 0)
(-0.0217318 0.0121612 0)
(-0.0288043 0.0153837 0)
(-0.037058 0.0184216 0)
(-0.0463147 0.0206948 0)
(-0.0561993 0.0214933 0)
(-0.0660941 0.0201122 0)
(-0.0751576 0.0160481 0)
(-0.0824423 0.00918803 0)
(-0.0871023 -0.00011015 0)
(-0.0885978 -0.0110856 0)
(-0.0868089 -0.0227801 0)
(-0.0820212 -0.0342568 0)
(-0.0748059 -0.0447715 0)
(-0.0658599 -0.0538532 0)
(-0.0558784 -0.0612856 0)
(-0.0454646 -0.067058 0)
(-0.035092 -0.0712955 0)
(-0.0250999 -0.074197 0)
(-0.0157096 -0.0759891 0)
(-0.00703974 -0.0768959 0)
(-2.07588e-05 0.000142658 0)
(-0.000212059 0.000198061 0)
(-0.000498296 0.000359906 0)
(-0.000977293 0.000667435 0)
(-0.0017624 0.00118691 0)
(-0.00298824 0.00200314 0)
(-0.00480716 0.00321131 0)
(-0.00738071 0.00490416 0)
(-0.0108685 0.00715166 0)
(-0.0154171 0.0099709 0)
(-0.0211478 0.0132846 0)
(-0.0281428 0.016873 0)
(-0.0364173 0.0203287 0)
(-0.0458707 0.023039 0)
(-0.0562091 0.024226 0)
(-0.0668671 0.0230756 0)
(-0.0769889 0.0189496 0)
(-0.0855245 0.0116156 0)
(-0.0914532 0.00137848 0)
(-0.0940375 -0.0109587 0)
(-0.0930019 -0.024309 0)
(-0.0885519 -0.0375651 0)
(-0.0812611 -0.0498175 0)
(-0.071887 -0.0604701 0)
(-0.0612138 -0.0692312 0)
(-0.0499386 -0.0760602 0)
(-0.0386179 -0.0810863 0)
(-0.0276566 -0.084534 0)
(-0.0173229 -0.0866657 0)
(-0.00776565 -0.0877453 0)
(-1.99882e-05 0.000153298 0)
(-0.000204466 0.000213242 0)
(-0.000480272 0.000387465 0)
(-0.000941802 0.00071855 0)
(-0.00169835 0.00127787 0)
(-0.00287987 0.00215689 0)
(-0.00463392 0.00345857 0)
(-0.00711823 0.0052842 0)
(-0.0104918 0.00771268 0)
(-0.0149074 0.0107702 0)
(-0.0205046 0.0143881 0)
(-0.0274028 0.0183528 0)
(-0.0356785 0.0222546 0)
(-0.0453162 0.0254578 0)
(-0.0561179 0.0271228 0)
(-0.0675909 0.0263216 0)
(-0.0788845 0.0222592 0)
(-0.0888506 0.0145473 0)
(-0.0962746 0.00339816 0)
(-0.100183 -0.0103659 0)
(-0.100101 -0.025527 0)
(-0.0961192 -0.0407822 0)
(-0.0888016 -0.0550227 0)
(-0.0789697 -0.0674953 0)
(-0.0675119 -0.0778094 0)
(-0.0552372 -0.0858816 0)
(-0.0428034 -0.0918401 0)
(-0.0306962 -0.0959357 0)
(-0.0192429 -0.0984714 0)
(-0.00863009 -0.0997563 0)
(-1.91604e-05 0.00016352 0)
(-0.000196327 0.000227839 0)
(-0.000460945 0.000413962 0)
(-0.000903742 0.000767695 0)
(-0.00162965 0.00136534 0)
(-0.00276361 0.00230478 0)
(-0.00444793 0.0036966 0)
(-0.00683607 0.00565058 0)
(-0.0100858 0.008255 0)
(-0.0143552 0.0115465 0)
(-0.0198015 0.0154682 0)
(-0.0265809 0.0198186 0)
(-0.0348327 0.0241945 0)
(-0.0446334 0.0279488 0)
(-0.0558958 0.0301892 0)
(-0.0682251 0.0298724 0)
(-0.0808013 0.0260258 0)
(-0.0923911 0.0180622 0)
(-0.10157 0.00605231 0)
(-0.107086 -0.00919703 0)
(-0.108206 -0.0263394 0)
(-0.104866 -0.0438498 0)
(-0.0975958 -0.0603773 0)
(-0.0872854 -0.0749714 0)
(-0.074943 -0.087113 0)
(-0.0615119 -0.0966583 0)
(-0.0477729 -0.103728 0)
(-0.0343116 -0.108598 0)
(-0.021529 -0.111618 0)
(-0.00965975 -0.113149 0)
(-1.82766e-05 0.000173299 0)
(-0.000187664 0.000241816 0)
(-0.000440368 0.000439324 0)
(-0.000863216 0.00081474 0)
(-0.0015565 0.00144909 0)
(-0.00263976 0.00244643 0)
(-0.00424968 0.00392475 0)
(-0.00653487 0.00600227 0)
(-0.00965115 0.00877702 0)
(-0.0137611 0.0122974 0)
(-0.0190381 0.0165214 0)
(-0.0256739 0.0212653 0)
(-0.033871 0.0261424 0)
(-0.0438034 0.0305068 0)
(-0.0555102 0.0334272 0)
(-0.0687225 0.0337479 0)
(-0.082686 0.0302991 0)
(-0.0961047 0.0222487 0)
(-0.107336 0.00946296 0)
(-0.114797 -0.00731619 0)
(-0.117433 -0.0266255 0)
(-0.11496 -0.0466883 0)
(-0.107847 -0.0658595 0)
(-0.0970502 -0.0829405 0)
(-0.0837171 -0.0972458 0)
(-0.0689511 -0.108549 0)
(-0.0536823 -0.116951 0)
(-0.0386197 -0.122755 0)
(-0.0242566 -0.126361 0)
(-0.010889 -0.12819 0)
(-1.73369e-05 0.000182604 0)
(-0.0001785 0.000255133 0)
(-0.000418596 0.000463483 0)
(-0.000820335 0.000859558 0)
(-0.00147908 0.00152888 0)
(-0.00250865 0.00258144 0)
(-0.00403966 0.00414237 0)
(-0.00621534 0.00633824 0)
(-0.00918878 0.00927715 0)
(-0.0131257 0.0130205 0)
(-0.0182141 0.0175439 0)
(-0.0246789 0.0226873 0)
(-0.0327849 0.0280903 0)
(-0.0428068 0.0331238 0)
(-0.0549251 0.0368344 0)
(-0.0690285 0.0379634 0)
(-0.0844723 0.035129 0)
(-0.0999344 0.0272038 0)
(-0.113554 0.0137729 0)
(-0.123368 -0.00455703 0)
(-0.127912 -0.026231 0)
(-0.126601 -0.0491898 0)
(-0.1198 -0.0714308 0)
(-0.108528 -0.0914419 0)
(-0.0940928 -0.108323 0)
(-0.0777887 -0.121735 0)
(-0.060727 -0.131749 0)
(-0.043768 -0.138688 0)
(-0.027521 -0.143007 0)
(-0.0123612 -0.145201 0)
(-1.63415e-05 0.00019141 0)
(-0.000168864 0.000267754 0)
(-0.000395691 0.000486371 0)
(-0.000775217 0.000902024 0)
(-0.00139761 0.00160449 0)
(-0.00237064 0.00270943 0)
(-0.00381843 0.00434884 0)
(-0.00587827 0.0066575 0)
(-0.00869963 0.00975378 0)
(-0.0124501 0.0137131 0)
(-0.0173297 0.0185314 0)
(-0.0235937 0.0240777 0)
(-0.0315661 0.0300285 0)
(-0.0416239 0.0357881 0)
(-0.054102 0.0404028 0)
(-0.0690808 0.0425281 0)
(-0.086079 0.0405625 0)
(-0.103802 0.0330321 0)
(-0.120189 0.0191483 0)
(-0.132845 -0.000715721 0)
(-0.139786 -0.0249581 0)
(-0.140024 -0.0512096 0)
(-0.133749 -0.0770297 0)
(-0.122039 -0.100509 0)
(-0.106388 -0.120471 0)
(-0.088316 -0.136429 0)
(-0.0691526 -0.148403 0)
(-0.0499438 -0.156732 0)
(-0.0314446 -0.161931 0)
(-0.0141321 -0.164576 0)
(-1.52899e-05 0.000199687 0)
(-0.000158781 0.000279643 0)
(-0.000371713 0.000507927 0)
(-0.000727985 0.00094202 0)
(-0.00131231 0.00167572 0)
(-0.0022261 0.00283005 0)
(-0.00358656 0.00454357 0)
(-0.00552448 0.0069591 0)
(-0.00818478 0.0102054 0)
(-0.0117352 0.0143726 0)
(-0.0163854 0.0194796 0)
(-0.0224164 0.0254295 0)
(-0.0302073 0.0319458 0)
(-0.0402353 0.0384843 0)
(-0.0530004 0.0441181 0)
(-0.0688092 0.0474434 0)
(-0.087408 0.0466421 0)
(-0.107606 0.0398457 0)
(-0.127179 0.0257825 0)
(-0.143262 0.00446201 0)
(-0.153217 -0.0225531 0)
(-0.155505 -0.0525552 0)
(-0.150051 -0.0825654 0)
(-0.137976 -0.110166 0)
(-0.120995 -0.133828 0)
(-0.100897 -0.152874 0)
(-0.079272 -0.167248 0)
(-0.0573894 -0.177297 0)
(-0.0361869 -0.183592 0)
(-0.016275 -0.186801 0)
(-1.418e-05 0.000207409 0)
(-0.00014828 0.000290766 0)
(-0.00034673 0.00052809 0)
(-0.000678766 0.000979436 0)
(-0.00122341 0.00174237 0)
(-0.0020754 0.00294295 0)
(-0.00334466 0.00472601 0)
(-0.00515486 0.00724211 0)
(-0.0076454 0.0106304 0)
(-0.0109825 0.0149965 0)
(-0.0153819 0.0203838 0)
(-0.0211462 0.0267345 0)
(-0.0287022 0.0338288 0)
(-0.0386228 0.0411931 0)
(-0.0515783 0.0479587 0)
(-0.0681356 0.0527003 0)
(-0.0883418 0.0534012 0)
(-0.111208 0.0477598 0)
(-0.134427 0.0338981 0)
(-0.154631 0.0112835 0)
(-0.168379 -0.0186918 0)
(-0.173373 -0.0529715 0)
(-0.169136 -0.0879078 0)
(-0.156816 -0.120423 0)
(-0.138395 -0.148542 0)
(-0.115988 -0.171346 0)
(-0.0914854 -0.188681 0)
(-0.0664218 -0.200879 0)
(-0.0419607 -0.208559 0)
(-0.0188887 -0.212487 0)
(-1.30083e-05 0.00021455 0)
(-0.000137391 0.000301093 0)
(-0.000320811 0.000546807 0)
(-0.000627698 0.00101417 0)
(-0.00113116 0.00180425 0)
(-0.00191897 0.00304782 0)
(-0.00309339 0.00489561 0)
(-0.00477038 0.00750563 0)
(-0.00708283 0.0110273 0)
(-0.0101934 0.0155821 0)
(-0.0143209 0.0212394 0)
(-0.0197829 0.0279843 0)
(-0.0270461 0.0356628 0)
(-0.0367697 0.0438908 0)
(-0.0497938 0.051894 0)
(-0.0669753 0.0582758 0)
(-0.0887418 0.0608592 0)
(-0.114435 0.0568882 0)
(-0.141784 0.0437474 0)
(-0.166933 0.0201287 0)
(-0.185462 -0.0129569 0)
(-0.194016 -0.0521209 0)
(-0.191524 -0.0928778 0)
(-0.179134 -0.131275 0)
(-0.159176 -0.164765 0)
(-0.134157 -0.192153 0)
(-0.10631 -0.21316 0)
(-0.0774656 -0.228077 0)
(-0.0490599 -0.237543 0)
(-0.0221122 -0.242411 0)
(-1.17697e-05 0.000221081 0)
(-0.000126144 0.000310593 0)
(-0.000294026 0.000564025 0)
(-0.00057492 0.00104612 0)
(-0.0010358 0.00186119 0)
(-0.00175722 0.00314437 0)
(-0.00283341 0.00505189 0)
(-0.00437205 0.00774885 0)
(-0.00649845 0.0113946 0)
(-0.00936985 0.0161267 0)
(-0.0132041 0.0220415 0)
(-0.0183276 0.0291698 0)
(-0.0252362 0.0374313 0)
(-0.0346619 0.0465498 0)
(-0.0476062 0.0558844 0)
(-0.0652377 0.0641309 0)
(-0.0884473 0.0690152 0)
(-0.117062 0.0673361 0)
(-0.149034 0.0556125 0)
(-0.180095 0.0314666 0)
(-0.204655 -0.00478965 0)
(-0.21791 -0.0495556 0)
(-0.217854 -0.097239 0)
(-0.205628 -0.142693 0)
(-0.184044 -0.182653 0)
(-0.156109 -0.215622 0)
(-0.124421 -0.241207 0)
(-0.0911052 -0.259614 0)
(-0.0579122 -0.271442 0)
(-0.026159 -0.277593 0)
(-1.04562e-05 0.000226976 0)
(-0.000114571 0.000319239 0)
(-0.000266448 0.000579696 0)
(-0.000520576 0.00107521 0)
(-0.000937592 0.00191303 0)
(-0.00159059 0.00323232 0)
(-0.00256542 0.00519438 0)
(-0.00396092 0.00797096 0)
(-0.00589381 0.0117311 0)
(-0.00851382 0.016628 0)
(-0.012034 0.0227854 0)
(-0.0167822 0.0302819 0)
(-0.0232716 0.0391168 0)
(-0.0322889 0.0491384 0)
(-0.0449782 0.0598797 0)
(-0.0628297 0.0702068 0)
(-0.087276 0.0778399 0)
(-0.118809 0.0791872 0)
(-0.155871 0.0697993 0)
(-0.193957 0.0458712 0)
(-0.226157 0.00652246 0)
(-0.245636 -0.0446783 0)
(-0.248916 -0.100693 0)
(-0.237127 -0.154641 0)
(-0.213832 -0.202356 0)
(-0.182699 -0.242069 0)
(-0.146708 -0.273373 0)
(-0.108165 -0.296339 0)
(-0.0691783 -0.311384 0)
(-0.0314016 -0.319417 0)
(-9.05623e-06 0.000232204 0)
(-0.000102703 0.000327006 0)
(-0.000238155 0.000593777 0)
(-0.000464817 0.00110134 0)
(-0.000836813 0.00195963 0)
(-0.00141955 0.00331141 0)
(-0.00229017 0.00532266 0)
(-0.00353813 0.00817125 0)
(-0.00527055 0.0120353 0)
(-0.00762766 0.0170835 0)
(-0.0108137 0.0234663 0)
(-0.0151502 0.0313111 0)
(-0.0211542 0.0407007 0)
(-0.0296449 0.0516212 0)
(-0.0418786 0.063819 0)
(-0.0596586 0.0764214 0)
(-0.0850267 0.0872654 0)
(-0.11933 0.092486 0)
(-0.161862 0.0866226 0)
(-0.208224 0.0640395 0)
(-0.250129 0.0219391 0)
(-0.277934 -0.0366769 0)
(-0.285707 -0.10289 0)
(-0.274596 -0.167084 0)
(-0.249469 -0.224029 0)
(-0.214892 -0.271729 0)
(-0.174383 -0.310133 0)
(-0.129792 -0.339254 0)
(-0.0839405 -0.358653 0)
(-0.038706 -0.36987 0)
(-7.5536e-06 0.000236738 0)
(-9.0572e-05 0.000333872 0)
(-0.000209223 0.00060623 0)
(-0.000407794 0.00112446 0)
(-0.000733734 0.00200085 0)
(-0.00124456 0.00338144 0)
(-0.00200839 0.00543633 0)
(-0.00310484 0.00834903 0)
(-0.00463043 0.0123062 0)
(-0.00671389 0.0174908 0)
(-0.0095466 0.0240797 0)
(-0.0134361 0.0322481 0)
(-0.0188887 0.0421639 0)
(-0.0267298 0.05396 0)
(-0.0382843 0.067631 0)
(-0.0556372 0.082667 0)
(-0.0814851 0.0971751 0)
(-0.11821 0.107215 0)
(-0.166419 0.106382 0)
(-0.222393 0.0868067 0)
(-0.276644 0.0427782 0)
(-0.315801 -0.024399 0)
(-0.329537 -0.103501 0)
(-0.319098 -0.180037 0)
(-0.291977 -0.247913 0)
(-0.25349 -0.304661 0)
(-0.209065 -0.351411 0)
(-0.157089 -0.390385 0)
(-0.103252 -0.413583 0)
(-0.0505486 -0.432055 0)
(-5.92706e-06 0.000240543 0)
(-7.82092e-05 0.000339813 0)
(-0.000179731 0.000617021 0)
(-0.000349666 0.00114448 0)
(-0.000628635 0.00203659 0)
(-0.0010661 0.00344219 0)
(-0.00172087 0.00553505 0)
(-0.00266225 0.00850372 0)
(-0.00397529 0.0125425 0)
(-0.00577531 0.0178479 0)
(-0.00823695 0.0246213 0)
(-0.0116459 0.0330837 0)
(-0.0164825 0.0434874 0)
(-0.0235501 0.0561149 0)
(-0.0341846 0.0712337 0)
(-0.0506902 0.0888085 0)
(-0.0764348 0.107392 0)
(-0.114966 0.12326 0)
(-0.168756 0.129314 0)
(-0.235639 0.115135 0)
(-0.305569 0.0708522 0)
(-0.360663 -0.00613493 0)
(-0.382241 -0.102447 0)
(-0.371527 -0.19352 0)
(-0.342592 -0.274665 0)
(-0.295767 -0.341541 0)
(-0.240404 -0.396868 0)
(-0.177698 -0.464844 0)
(-0.106248 -0.473129 0)
(-0.0527058 -0.502615 0)
(-4.14906e-06 0.000243588 0)
(-6.56468e-05 0.000344811 0)
(-0.000149764 0.000626119 0)
(-0.000290594 0.00116137 0)
(-0.000521812 0.00206674 0)
(-0.000884659 0.00349348 0)
(-0.00142842 0.00561852 0)
(-0.00221167 0.00863477 0)
(-0.00330713 0.0127434 0)
(-0.00481498 0.0181528 0)
(-0.00688948 0.0250869 0)
(-0.00978692 0.0338095 0)
(-0.0139467 0.0446525 0)
(-0.02012 0.0580452 0)
(-0.0295848 0.0745363 0)
(-0.0447602 0.0946827 0)
(-0.0696759 0.117666 0)
(-0.109055 0.140372 0)
(-0.167851 0.155515 0)
(-0.246667 0.150058 0)
(-0.336248 0.108642 0)
(-0.414604 0.0211589 0)
(-0.446831 -0.100694 0)
(-0.430619 -0.207753 0)
(-0.396127 -0.309887 0)
(-0.29092 -0.400618 0)
(-0.164297 -0.509075 0)
(0.0369358 -0.553317 0)
(-0.0114498 -0.501362 0)
(0.000875084 -0.540074 0)
(-2.18572e-06 0.000245836 0)
(-5.29147e-05 0.000348848 0)
(-0.000119402 0.0006335 0)
(-0.000230741 0.00117506 0)
(-0.000413556 0.00209122 0)
(-0.000700748 0.00353518 0)
(-0.00113185 0.00568649 0)
(-0.00175436 0.00874172 0)
(-0.00262796 0.0129078 0)
(-0.0038361 0.0184038 0)
(-0.00550935 0.025473 0)
(-0.00786754 0.0344174 0)
(-0.0112948 0.0456416 0)
(-0.0164614 0.0597121 0)
(-0.02451 0.0774419 0)
(-0.0378132 0.1001 0)
(-0.0610519 0.127675 0)
(-0.0999005 0.158121 0)
(-0.162432 0.184838 0)
(-0.25354 0.192565 0)
(-0.366914 0.159297 0)
(-0.480466 0.0634667 0)
(-0.529675 -0.102554 0)
(-0.484067 -0.23128 0)
(-0.403777 -0.381131 0)
(-0.295099 -0.509432 0)
(-0.249921 -0.590294 0)
(-0.238394 -0.589185 0)
(-0.134009 -0.569323 0)
(-0.0441516 -0.586423 0)
(2.3881e-09 0.000247253 0)
(-4.00403e-05 0.000351914 0)
(-8.87288e-05 0.000639143 0)
(-0.000170271 0.00118552 0)
(-0.000304165 0.00210995 0)
(-0.000514872 0.00356715 0)
(-0.000832006 0.00573874 0)
(-0.00129166 0.0088242 0)
(-0.0019399 0.0130352 0)
(-0.00284206 0.0185995 0)
(-0.00410223 0.0257765 0)
(-0.00589741 0.0349006 0)
(-0.00854358 0.0464391 0)
(-0.0126038 0.06108 0)
(-0.0190117 0.0798506 0)
(-0.0298397 0.104846 0)
(-0.0504949 0.137019 0)
(-0.0869347 0.175843 0)
(-0.150992 0.216706 0)
(-0.253893 0.243698 0)
(-0.396986 0.223954 0)
(-0.562028 0.108933 0)
(-0.661129 -0.102651 0)
(-0.669222 -0.297613 0)
(-0.5163 -0.420019 0)
(-0.390931 -0.587582 0)
(-0.269604 -0.618571 0)
(-0.208265 -0.647022 0)
(-0.130702 -0.661341 0)
(-0.0551879 -0.669117 0)
(2.45726e-06 0.000247825 0)
(-2.705e-05 0.000354 0)
(-5.78306e-05 0.000643037 0)
(-0.000109353 0.00119273 0)
(-0.000193946 0.00212291 0)
(-0.000327558 0.00358932 0)
(-0.000529738 0.00577513 0)
(-0.000824946 0.00888189 0)
(-0.00124516 0.0131248 0)
(-0.00183646 0.0187385 0)
(-0.00267416 0.0259944 0)
(-0.00388721 0.0352522 0)
(-0.00571247 0.0470287 0)
(-0.00858334 0.0621132 0)
(-0.0131741 0.0816521 0)
(-0.0208434 0.108632 0)
(-0.0381056 0.145164 0)
(-0.0696754 0.192427 0)
(-0.132385 0.249512 0)
(-0.256397 0.304223 0)
(-0.385051 0.305298 0)
(-0.75105 0.200176 0)
(-0.889989 0.0237347 0)
(-0.871113 -0.424776 0)
(-0.59786 -0.563435 0)
(-0.475537 -0.703656 0)
(-0.334153 -0.734649 0)
(-0.225747 -0.73961 0)
(-0.133865 -0.753784 0)
(-0.0613634 -0.758282 0)
(-8.09643e-05 0.000259017 0)
(-1.41053e-05 0.000349785 0)
(-2.69301e-05 0.000635539 0)
(-4.83284e-05 0.00117894 0)
(-8.34258e-05 0.00209874 0)
(-0.000139551 0.00354938 0)
(-0.00022606 0.00571288 0)
(-0.000355597 0.00878994 0)
(-0.000545701 0.012996 0)
(-0.000822176 0.0185688 0)
(-0.00123006 0.0257856 0)
(-0.00184627 0.0350231 0)
(-0.00282047 0.0468331 0)
(-0.0044352 0.0620877 0)
(-0.00711407 0.0819264 0)
(-0.0107682 0.110144 0)
(-0.0243144 0.150868 0)
(-0.0531361 0.206973 0)
(-0.112319 0.282718 0)
(-0.219239 0.370382 0)
(-0.399239 0.397531 0)
(-0.678797 0.391061 0)
(-0.833367 0.246616 0)
(-0.455967 -0.449948 0)
(-0.620781 -0.790459 0)
(-0.546455 -0.776557 0)
(-0.402761 -0.855371 0)
(-0.258176 -0.879681 0)
(-0.149897 -0.851818 0)
(-0.0694711 -0.860908 0)
(0.00170984 -0.00184218 0)
(0.00652172 -0.00183224 0)
(0.0118059 -0.00180722 0)
(0.017551 -0.00176243 0)
(0.0237171 -0.00169327 0)
(0.0302196 -0.00159452 0)
(0.0369235 -0.00146178 0)
(0.0436176 -0.00129226 0)
(0.0500212 -0.00108523 0)
(0.0557746 -0.000844393 0)
(0.0604621 -0.000578579 0)
(0.0636514 -0.00030254 0)
(0.0649573 -3.61312e-05 0)
(0.0641258 0.000198391 0)
(0.0611102 0.000380775 0)
(0.0561178 0.000497644 0)
(0.0495956 0.000546334 0)
(0.0421566 0.00053517 0)
(0.0344585 0.000480556 0)
(0.0270873 0.000401688 0)
(0.0204766 0.000315714 0)
(0.0148784 0.000234903 0)
(0.0103777 0.000166114 0)
(0.00693343 0.000111842 0)
(0.00442286 7.16628e-05 0)
(0.002682 4.36222e-05 0)
(0.0015359 2.51802e-05 0)
(0.000819755 1.38257e-05 0)
(0.000390307 7.42219e-06 0)
(0.000126848 4.43215e-06 0)
(0.000574479 -0.00805554 0)
(0.00546651 -0.0080241 0)
(0.0108513 -0.00793047 0)
(0.0167206 -0.00775649 0)
(0.0230422 -0.00748134 0)
(0.029741 -0.00708363 0)
(0.0366903 -0.00654253 0)
(0.0436891 -0.00584258 0)
(0.0504642 -0.00497757 0)
(0.0566561 -0.00395795 0)
(0.061843 -0.00281588 0)
(0.0655713 -0.00160968 0)
(0.0674196 -0.000422572 0)
(0.0670834 0.00064791 0)
(0.0644594 0.00150711 0)
(0.0597034 0.00208721 0)
(0.0532321 0.00236513 0)
(0.0456561 0.00236829 0)
(0.0376602 0.00216356 0)
(0.0298792 0.00183492 0)
(0.0228017 0.00146087 0)
(0.0167312 0.00109999 0)
(0.0117915 0.000786955 0)
(0.00796603 0.000536095 0)
(0.00514347 0.000347745 0)
(0.00316117 0.000214446 0)
(0.00183854 0.000125463 0)
(0.00100128 6.96944e-05 0)
(0.000495223 3.74042e-05 0)
(0.000190477 2.12263e-05 0)
(0.000585027 -0.0143786 0)
(0.00556727 -0.0143224 0)
(0.0110505 -0.0141541 0)
(0.0170252 -0.0138414 0)
(0.0234562 -0.0133475 0)
(0.0302641 -0.0126334 0)
(0.037316 -0.0116621 0)
(0.0444028 -0.0104062 0)
(0.0512417 -0.00885491 0)
(0.0574626 -0.00702782 0)
(0.0626352 -0.00498343 0)
(0.0663008 -0.00282746 0)
(0.0680407 -0.000709878 0)
(0.0675615 0.00119422 0)
(0.0647793 0.00271652 0)
(0.0598728 0.00373784 0)
(0.0532786 0.00422001 0)
(0.0456187 0.00421482 0)
(0.0375782 0.00384317 0)
(0.0297838 0.00325489 0)
(0.0227129 0.00258883 0)
(0.0166584 0.00194803 0)
(0.011737 0.00139308 0)
(0.00792801 0.000948754 0)
(0.00511852 0.000615327 0)
(0.00314572 0.000379426 0)
(0.00182953 0.000221975 0)
(0.000996377 0.000123303 0)
(0.000492806 6.61742e-05 0)
(0.000189555 3.75534e-05 0)
(0.000601829 -0.0208511 0)
(0.00572732 -0.0207685 0)
(0.0113668 -0.0205221 0)
(0.0175078 -0.020064 0)
(0.0241117 -0.0193401 0)
(0.0310919 -0.018294 0)
(0.0383057 -0.016872 0)
(0.0455309 -0.015035 0)
(0.0524693 -0.0127685 0)
(0.0587345 -0.0101032 0)
(0.0638821 -0.00712691 0)
(0.0674464 -0.00399655 0)
(0.0690129 -0.000932523 0)
(0.0683067 0.00181054 0)
(0.0652748 0.00399047 0)
(0.0601323 0.00543962 0)
(0.0533469 0.0061093 0)
(0.0455572 0.00608017 0)
(0.0374483 0.00553 0)
(0.0296341 0.00467515 0)
(0.0225741 0.00371396 0)
(0.016545 0.0027925 0)
(0.0116522 0.00199603 0)
(0.00786888 0.00135903 0)
(0.00507973 0.000881286 0)
(0.00312171 0.000543383 0)
(0.00181553 0.000317884 0)
(0.000988757 0.000176575 0)
(0.000489051 9.47642e-05 0)
(0.000188121 5.37792e-05 0)
(0.000625138 -0.027543 0)
(0.00594999 -0.0274324 0)
(0.0118066 -0.027102 0)
(0.0181794 -0.0264879 0)
(0.0250234 -0.0255177 0)
(0.0322425 -0.0241165 0)
(0.0396801 -0.0222135 0)
(0.0470956 -0.019758 0)
(0.0541692 -0.0167336 0)
(0.0604919 -0.0131849 0)
(0.0656001 -0.00923356 0)
(0.0690191 -0.00509307 0)
(0.0703413 -0.00105952 0)
(0.0693187 0.00252936 0)
(0.0659421 0.00535816 0)
(0.0604764 0.00721509 0)
(0.0534315 0.00804775 0)
(0.0454676 0.00797214 0)
(0.0372682 0.00722685 0)
(0.0294291 0.00609561 0)
(0.022385 0.00483492 0)
(0.0163909 0.00363179 0)
(0.0115372 0.00259443 0)
(0.00778878 0.00176588 0)
(0.00502721 0.00114492 0)
(0.00308919 0.000705876 0)
(0.00179657 0.000412928 0)
(0.000978441 0.000229366 0)
(0.000483969 0.000123095 0)
(0.000186181 6.98593e-05 0)
(0.000655746 -0.0345293 0)
(0.00624064 -0.0343879 0)
(0.0123806 -0.0339658 0)
(0.0190554 -0.0331812 0)
(0.026212 -0.0319424 0)
(0.0337412 -0.0301545 0)
(0.041468 -0.0277293 0)
(0.0491277 -0.0246049 0)
(0.0563721 -0.0207648 0)
(0.0627626 -0.0162719 0)
(0.0678117 -0.0112878 0)
(0.0710338 -0.00609008 0)
(0.0720325 -0.00105744 0)
(0.0705969 0.00338499 0)
(0.0667752 0.00684974 0)
(0.0608973 0.00908698 0)
(0.0535252 0.0100498 0)
(0.0453446 0.00989802 0)
(0.0370349 0.00893611 0)
(0.0291673 0.00751594 0)
(0.0221452 0.00595023 0)
(0.0161963 0.00446424 0)
(0.0113922 0.00318687 0)
(0.00768787 0.00216827 0)
(0.00496108 0.00140552 0)
(0.00304827 0.000866462 0)
(0.00177272 0.000506843 0)
(0.000965458 0.000281528 0)
(0.000477574 0.000151089 0)
(0.00018374 8.57497e-05 0)
(0.000694087 -0.0418919 0)
(0.00660621 -0.0417163 0)
(0.0131024 -0.0411922 0)
(0.0201564 -0.0402184 0)
(0.0277047 -0.0386818 0)
(0.0356213 -0.0364662 0)
(0.0437077 -0.0334651 0)
(0.0516681 -0.0296061 0)
(0.0591184 -0.0248759 0)
(0.0655832 -0.0193607 0)
(0.0705459 -0.0132705 0)
(0.0735097 -0.00695657 0)
(0.0740948 -0.000889501 0)
(0.0721396 0.00441446 0)
(0.0677663 0.00849669 0)
(0.0613846 0.0110782 0)
(0.0536186 0.0121294 0)
(0.0451814 0.0118646 0)
(0.0367443 0.0106598 0)
(0.0288469 0.00893557 0)
(0.0218541 0.00705834 0)
(0.0159611 0.0052882 0)
(0.0112173 0.00377194 0)
(0.00756637 0.00256518 0)
(0.0048815 0.00166242 0)
(0.00299904 0.00102471 0)
(0.00174402 0.000599379 0)
(0.000949843 0.000332921 0)
(0.000469882 0.00017867 0)
(0.000180805 0.000101408 0)
(0.000741171 -0.0497215 0)
(0.00705542 -0.0495075 0)
(0.0139894 -0.0488685 0)
(0.0215089 -0.0476815 0)
(0.0295368 -0.0458099 0)
(0.0379261 -0.0431144 0)
(0.0464482 -0.0394692 0)
(0.0547689 -0.034793 0)
(0.0624593 -0.029079 0)
(0.0689997 -0.0224442 0)
(0.0738389 -0.0151574 0)
(0.0764696 -0.00765614 0)
(0.0765371 -0.000513311 0)
(0.0739438 0.00565796 0)
(0.0689047 0.0103319 0)
(0.0619253 0.0132117 0)
(0.0537 0.0142999 0)
(0.0449698 0.0138779 0)
(0.0363918 0.0123992 0)
(0.0284658 0.0103535 0)
(0.0215112 0.00815748 0)
(0.0156853 0.0061019 0)
(0.0110129 0.00434824 0)
(0.00742453 0.00295557 0)
(0.00478867 0.00191491 0)
(0.00294164 0.00118019 0)
(0.00171057 0.000690281 0)
(0.000931639 0.000383403 0)
(0.000460914 0.000205761 0)
(0.000177384 0.000116793 0)
(0.000798348 -0.0581212 0)
(0.00759994 -0.0578631 0)
(0.0150641 -0.0570926 0)
(0.0231464 -0.0556623 0)
(0.0317528 -0.0534089 0)
(0.0407095 -0.0501681 0)
(0.049751 -0.0457939 0)
(0.058495 -0.0401975 0)
(0.0664584 -0.0333837 0)
(0.0730681 -0.0255103 0)
(0.077734 -0.016918 0)
(0.0799403 -0.00814557 0)
(0.0793685 0.000118823 0)
(0.0760045 0.00715955 0)
(0.0701767 0.0123901 0)
(0.062503 0.0155105 0)
(0.0537555 0.0165739 0)
(0.0447003 0.0159428 0)
(0.0359721 0.014155 0)
(0.0280216 0.0117684 0)
(0.0211157 0.00924571 0)
(0.0153691 0.00690354 0)
(0.0107793 0.00491432 0)
(0.00726268 0.00333842 0)
(0.00468283 0.00216232 0)
(0.00287621 0.00133248 0)
(0.00167244 0.000779299 0)
(0.000910895 0.000432836 0)
(0.000450696 0.000232289 0)
(0.000173486 0.000131861 0)
(0.00086701 -0.0672082 0)
(0.00825413 -0.0668991 0)
(0.0163544 -0.0659769 0)
(0.025111 -0.0642655 0)
(0.0344084 -0.0615722 0)
(0.0440393 -0.0577047 0)
(0.0536925 -0.0524959 0)
(0.0629268 -0.0458524 0)
(0.0711937 -0.0377973 0)
(0.0778567 -0.028541 0)
(0.0822828 -0.0185134 0)
(0.0839523 -0.0083732 0)
(0.0825985 0.0010612 0)
(0.0783137 0.00896781 0)
(0.0715646 0.0147075 0)
(0.0630981 0.0179973 0)
(0.0537689 0.0189627 0)
(0.044362 0.0180632 0)
(0.0354791 0.015927 0)
(0.027512 0.0131785 0)
(0.0206671 0.0103209 0)
(0.0150126 0.00769126 0)
(0.0105168 0.00546877 0)
(0.00708115 0.00371273 0)
(0.00456424 0.00240398 0)
(0.00280293 0.00148117 0)
(0.00162975 0.000866195 0)
(0.000887668 0.000481086 0)
(0.000439255 0.000258181 0)
(0.000169124 0.000146572 0)
(0.000949114 -0.0771182 0)
(0.00903543 -0.0767497 0)
(0.0178951 -0.0756499 0)
(0.027455 -0.0736109 0)
(0.0375725 -0.0704054 0)
(0.0479992 -0.0658101 0)
(0.0583667 -0.0596371 0)
(0.0681624 -0.0517909 0)
(0.0767592 -0.0423223 0)
(0.0834468 -0.0315102 0)
(0.0875454 -0.0198942 0)
(0.0885393 -0.00827659 0)
(0.0862351 0.00237755 0)
(0.0808592 0.0111365 0)
(0.0730458 0.0173224 0)
(0.063687 0.0206944 0)
(0.0537212 0.0214762 0)
(0.0439427 0.0202415 0)
(0.0349066 0.017714 0)
(0.0269341 0.0145814 0)
(0.0201646 0.0113808 0)
(0.0146161 0.00846312 0)
(0.0102259 0.00601014 0)
(0.00688037 0.00407749 0)
(0.00443319 0.00263924 0)
(0.00272199 0.00162585 0)
(0.00158261 0.000950729 0)
(0.00086202 0.000528019 0)
(0.000426622 0.000283367 0)
(0.00016431 0.000160888 0)
(0.00104692 -0.0880101 0)
(0.00996624 -0.0875712 0)
(0.0197298 -0.0862623 0)
(0.0302436 -0.0838371 0)
(0.0413312 -0.0800296 0)
(0.0526923 -0.0745821 0)
(0.063889 -0.067285 0)
(0.0743217 -0.0580461 0)
(0.0832687 -0.0469557 0)
(0.0899348 -0.0343807 0)
(0.093591 -0.020998 0)
(0.0937377 -0.00778047 0)
(0.0902825 0.00414125 0)
(0.0836234 0.0137249 0)
(0.074592 0.0202745 0)
(0.0642417 0.023623 0)
(0.053591 0.0241226 0)
(0.0434291 0.0224785 0)
(0.0342477 0.0195138 0)
(0.0262854 0.0159742 0)
(0.0196078 0.0124226 0)
(0.0141798 0.00921708 0)
(0.00990708 0.00653697 0)
(0.00666079 0.00443171 0)
(0.00429002 0.00286745 0)
(0.0026336 0.00176612 0)
(0.00153114 0.00103267 0)
(0.000834024 0.000573506 0)
(0.000412834 0.000307776 0)
(0.000159056 0.000174767 0)
(0.00116347 -0.100071 0)
(0.0110745 -0.099549 0)
(0.0219127 -0.0979911 0)
(0.0335578 -0.0951071 0)
(0.0457904 -0.090586 0)
(0.0582463 -0.0841321 0)
(0.0704013 -0.0755142 0)
(0.0815503 -0.0646507 0)
(0.0908594 -0.0516863 0)
(0.0974351 -0.0371022 0)
(0.100499 -0.0217454 0)
(0.0995861 -0.00679348 0)
(0.0947427 0.00643767 0)
(0.0865816 0.0167989 0)
(0.0761682 0.0236049 0)
(0.0647292 0.026803 0)
(0.0533544 0.0269077 0)
(0.0428067 0.0247732 0)
(0.0334952 0.0213231 0)
(0.0255631 0.0173535 0)
(0.0189962 0.0134438 0)
(0.0137042 0.00995112 0)
(0.00956094 0.00704783 0)
(0.0064229 0.00477444 0)
(0.00413508 0.003088 0)
(0.00253801 0.0019016 0)
(0.00147549 0.00111179 0)
(0.000803753 0.000617426 0)
(0.000397926 0.000331343 0)
(0.000153379 0.000188172 0)
(0.00130238 -0.113525 0)
(0.0123948 -0.112902 0)
(0.0245115 -0.111045 0)
(0.0374985 -0.107612 0)
(0.0510821 -0.102238 0)
(0.0648181 -0.0945865 0)
(0.0780767 -0.0844061 0)
(0.0900248 -0.0716347 0)
(0.0996948 -0.0564919 0)
(0.106081 -0.0396059 0)
(0.108359 -0.0220359 0)
(0.106123 -0.00520434 0)
(0.0996088 0.0093658 0)
(0.0896991 0.0204304 0)
(0.0777306 0.027355 0)
(0.0651114 0.0302515 0)
(0.0529846 0.0298342 0)
(0.0420603 0.0271221 0)
(0.032642 0.023137 0)
(0.0247648 0.0187152 0)
(0.0183294 0.014441 0)
(0.0131897 0.010663 0)
(0.00918815 0.00754125 0)
(0.00616729 0.00510469 0)
(0.00396879 0.00330028 0)
(0.00243546 0.00203192 0)
(0.0014158 0.00118787 0)
(0.000771292 0.000659653 0)
(0.00038194 0.000354002 0)
(0.000147294 0.000201067 0)
(0.00146847 -0.128639 0)
(0.0139712 -0.127895 0)
(0.0276116 -0.125676 0)
(0.0421921 -0.121578 0)
(0.0573704 -0.115177 0)
(0.0726023 -0.106091 0)
(0.0871282 -0.0940499 0)
(0.0999602 -0.0790248 0)
(0.109972 -0.061336 0)
(0.116031 -0.0418002 0)
(0.11727 -0.0217425 0)
(0.113386 -0.00287846 0)
(0.104865 0.0130405 0)
(0.0929294 0.0246979 0)
(0.079226 0.0315663 0)
(0.0653442 0.0339826 0)
(0.0524526 0.0329017 0)
(0.0411739 0.0295196 0)
(0.031681 0.0249497 0)
(0.0238882 0.0200545 0)
(0.0176075 0.0154111 0)
(0.012637 0.0113507 0)
(0.00878946 0.00801578 0)
(0.00589456 0.00542155 0)
(0.00379157 0.00350368 0)
(0.00232624 0.00215671 0)
(0.00135225 0.00126071 0)
(0.000736729 0.000700075 0)
(0.000364922 0.000375691 0)
(0.000140819 0.000213417 0)
(0.00166779 -0.14574 0)
(0.0158596 -0.144846 0)
(0.0313213 -0.142186 0)
(0.0477984 -0.137278 0)
(0.0648608 -0.129631 0)
(0.08184 -0.118813 0)
(0.0978171 -0.104543 0)
(0.111618 -0.0868413 0)
(0.121927 -0.0661619 0)
(0.127467 -0.0435632 0)
(0.127343 -0.0207037 0)
(0.121407 0.000348004 0)
(0.110482 0.0175946 0)
(0.0962105 0.0296861 0)
(0.0805896 0.0362783 0)
(0.0653775 0.0380059 0)
(0.051727 0.0361053 0)
(0.0401313 0.0319572 0)
(0.0306053 0.0267538 0)
(0.0229312 0.0213661 0)
(0.0168304 0.0163506 0)
(0.0120469 0.0120118 0)
(0.00836568 0.00847001 0)
(0.00560536 0.00572412 0)
(0.00360387 0.00369766 0)
(0.00221062 0.00227564 0)
(0.00128499 0.0013301 0)
(0.000700159 0.000738581 0)
(0.000346915 0.000396352 0)
(0.000133973 0.00022519 0)
(0.00190821 -0.165225 0)
(0.0181319 -0.164147 0)
(0.035779 -0.16094 0)
(0.0545197 -0.155035 0)
(0.0738113 -0.145864 0)
(0.0928301 -0.132944 0)
(0.110464 -0.11599 0)
(0.125315 -0.095095 0)
(0.135844 -0.0708867 0)
(0.140607 -0.0447338 0)
(0.138699 -0.018716 0)
(0.130208 0.00467425 0)
(0.116408 0.0231805 0)
(0.0994606 0.0354844 0)
(0.0817436 0.0415267 0)
(0.0651548 0.0423246 0)
(0.0507747 0.0394352 0)
(0.0389164 0.0344235 0)
(0.0294087 0.0285402 0)
(0.0218925 0.0226443 0)
(0.0159987 0.0172558 0)
(0.0114204 0.012644 0)
(0.00791778 0.00890252 0)
(0.00530042 0.00601149 0)
(0.0034062 0.00388165 0)
(0.00208893 0.00238838 0)
(0.00121422 0.00139586 0)
(0.000661682 0.000775064 0)
(0.000327971 0.000415926 0)
(0.000126776 0.000236353 0)
(0.00220029 -0.187589 0)
(0.020883 -0.186279 0)
(0.0411654 -0.182387 0)
(0.0626166 -0.175241 0)
(0.0845482 -0.164189 0)
(0.105945 -0.148702 0)
(0.125463 -0.128503 0)
(0.141438 -0.103783 0)
(0.152063 -0.0753933 0)
(0.155701 -0.0450997 0)
(0.151467 -0.0155195 0)
(0.139796 0.0103422 0)
(0.122568 0.0299722 0)
(0.102574 0.0421853 0)
(0.0825955 0.0473409 0)
(0.0646139 0.0469341 0)
(0.0495612 0.0428761 0)
(0.0375135 0.0369039 0)
(0.0280857 0.0302988 0)
(0.020771 0.0238824 0)
(0.015113 0.0181229 0)
(0.0107586 0.0132452 0)
(0.00744674 0.00931192 0)
(0.0049805 0.00628282 0)
(0.00319906 0.00405514 0)
(0.00196149 0.00249461 0)
(0.00114012 0.00145779 0)
(0.000621402 0.000809424 0)
(0.000308141 0.000434359 0)
(0.00011925 0.000246875 0)
(0.00255838 -0.213453 0)
(0.0242404 -0.211845 0)
(0.047721 -0.20708 0)
(0.0724288 -0.198369 0)
(0.0974871 -0.184974 0)
(0.121647 -0.166332 0)
(0.143296 -0.142197 0)
(0.160457 -0.112883 0)
(0.170998 -0.0795192 0)
(0.173045 -0.0443818 0)
(0.165782 -0.0107831 0)
(0.150151 0.0176451 0)
(0.128846 0.0381656 0)
(0.105416 0.0498804 0)
(0.0830367 0.0537402 0)
(0.0636864 0.0518198 0)
(0.0480518 0.0464058 0)
(0.0359082 0.0393806 0)
(0.0266317 0.0320178 0)
(0.0195664 0.0250735 0)
(0.0141745 0.0189477 0)
(0.0100628 0.013813 0)
(0.00695369 0.00969686 0)
(0.00464642 0.0065373 0)
(0.00298302 0.00421763 0)
(0.00182864 0.00259403 0)
(0.0010629 0.00151574 0)
(0.00057943 0.000841566 0)
(0.000287479 0.000451602 0)
(0.000111418 0.000256729 0)
(0.00300291 -0.243611 0)
(0.0283842 -0.241611 0)
(0.0557768 -0.235705 0)
(0.0844082 -0.224982 0)
(0.113159 -0.208637 0)
(0.140509 -0.186104 0)
(0.164547 -0.157189 0)
(0.18294 -0.12235 0)
(0.193146 -0.0830455 0)
(0.192987 -0.0422118 0)
(0.181774 -0.0040862 0)
(0.161211 0.0269384 0)
(0.135079 0.0479771 0)
(0.107815 0.0586548 0)
(0.0829418 0.0607287 0)
(0.0622998 0.0569545 0)
(0.0462125 0.0499948 0)
(0.0340879 0.0418321 0)
(0.0250437 0.0336841 0)
(0.0182794 0.0262103 0)
(0.0131847 0.0197264 0)
(0.00933455 0.0143451 0)
(0.00643986 0.010056 0)
(0.00429906 0.00677415 0)
(0.00275865 0.00436865 0)
(0.00169075 0.00268636 0)
(0.000982767 0.00156954 0)
(0.000535882 0.000871402 0)
(0.000266042 0.000467607 0)
(0.000103303 0.000265884 0)
(0.00356399 -0.279121 0)
(0.033587 -0.276577 0)
(0.0658116 -0.269119 0)
(0.09917 -0.255745 0)
(0.132245 -0.235642 0)
(0.16323 -0.208301 0)
(0.189919 -0.173598 0)
(0.209575 -0.132116 0)
(0.219123 -0.0856853 0)
(0.215942 -0.0381006 0)
(0.199572 0.00512427 0)
(0.172852 0.0386504 0)
(0.141038 0.0596408 0)
(0.10956 0.0685798 0)
(0.0821685 0.0682909 0)
(0.0603783 0.0622966 0)
(0.0440112 0.053606 0)
(0.0320421 0.0442341 0)
(0.0233203 0.0352837 0)
(0.0169111 0.0272851 0)
(0.0121456 0.0204547 0)
(0.00857555 0.0148393 0)
(0.00590657 0.0103882 0)
(0.00393933 0.00699262 0)
(0.00252655 0.00450776 0)
(0.00154819 0.00277136 0)
(0.000899947 0.00161904 0)
(0.000490877 0.000898851 0)
(0.000243889 0.000482329 0)
(9.49303e-05 0.000274313 0)
(0.0042867 -0.32147 0)
(0.0403122 -0.318095 0)
(0.0785597 -0.308379 0)
(0.117572 -0.291414 0)
(0.155622 -0.266461 0)
(0.190638 -0.233197 0)
(0.220233 -0.191539 0)
(0.241193 -0.142098 0)
(0.249697 -0.0870658 0)
(0.242409 -0.0313945 0)
(0.219266 0.0175485 0)
(0.184859 0.0532934 0)
(0.146408 0.0733986 0)
(0.110391 0.0797005 0)
(0.0805592 0.0763841 0)
(0.0578456 0.0677869 0)
(0.0414196 0.0571939 0)
(0.029764 0.0465589 0)
(0.0214616 0.0368015 0)
(0.015464 0.02829 0)
(0.0110594 0.0211286 0)
(0.00778773 0.0152935 0)
(0.00535519 0.0106921 0)
(0.0035682 0.00719204 0)
(0.00228736 0.00463457 0)
(0.00140134 0.00284877 0)
(0.00081466 0.0016641 0)
(0.000444538 0.000923835 0)
(0.000221078 0.000495726 0)
(8.63268e-05 0.000281993 0)
(0.00523661 -0.373059 0)
(0.0495728 -0.368086 0)
(0.0952077 -0.354654 0)
(0.140821 -0.332806 0)
(0.184405 -0.301455 0)
(0.223642 -0.26102 0)
(0.256414 -0.211149 0)
(0.278772 -0.152229 0)
(0.285862 -0.086736 0)
(0.273014 -0.0211933 0)
(0.240873 0.0341245 0)
(0.196871 0.0714709 0)
(0.150764 0.0894834 0)
(0.109999 0.0920196 0)
(0.077944 0.0849304 0)
(0.0546286 0.0733464 0)
(0.0384156 0.0607045 0)
(0.0272506 0.0487763 0)
(0.0194703 0.0382217 0)
(0.0139413 0.0292171 0)
(0.00992909 0.0217442 0)
(0.00697324 0.0157056 0)
(0.00478726 0.0109667 0)
(0.00318669 0.00737177 0)
(0.00204172 0.00474869 0)
(0.00125062 0.00291838 0)
(0.000727142 0.0017046 0)
(0.000396994 0.000946287 0)
(0.000197674 0.000507763 0)
(7.75202e-05 0.000288898 0)
(0.00646949 -0.439304 0)
(0.0640717 -0.429145 0)
(0.116867 -0.408357 0)
(0.170561 -0.38129 0)
(0.219907 -0.340491 0)
(0.262974 -0.29198 0)
(0.299499 -0.232621 0)
(0.323418 -0.162531 0)
(0.328979 -0.0841681 0)
(0.30855 -0.00620486 0)
(0.264277 0.0560866 0)
(0.20832 0.0938745 0)
(0.153547 0.108092 0)
(0.108022 0.105477 0)
(0.0741474 0.0938103 0)
(0.0506612 0.0788749 0)
(0.034985 0.0640761 0)
(0.0245037 0.0508542 0)
(0.0173511 0.0395283 0)
(0.0123475 0.0300586 0)
(0.00875794 0.0222975 0)
(0.00613438 0.0160736 0)
(0.00420435 0.011211 0)
(0.00279584 0.00753123 0)
(0.0017903 0.00484978 0)
(0.00109643 0.00298 0)
(0.000637632 0.00174042 0)
(0.000348374 0.000966145 0)
(0.000173739 0.000518407 0)
(6.85389e-05 0.000295006 0)
(0.00882626 -0.52731 0)
(0.0701965 -0.494964 0)
(0.122996 -0.470774 0)
(0.199101 -0.441983 0)
(0.255767 -0.383726 0)
(0.306916 -0.327462 0)
(0.350799 -0.256114 0)
(0.376119 -0.173337 0)
(0.381119 -0.0788546 0)
(0.350035 0.0155636 0)
(0.289066 0.0850687 0)
(0.218338 0.121256 0)
(0.154032 0.129336 0)
(0.104052 0.119921 0)
(0.0689983 0.102854 0)
(0.0458898 0.0842491 0)
(0.0311248 0.0672398 0)
(0.0215305 0.0527592 0)
(0.0151114 0.0407056 0)
(0.0106881 0.0308068 0)
(0.0075497 0.022785 0)
(0.00527369 0.0163958 0)
(0.00360814 0.0114239 0)
(0.00239673 0.0076699 0)
(0.00153381 0.00493755 0)
(0.000939194 0.00303345 0)
(0.000546374 0.00177147 0)
(0.000298812 0.000983352 0)
(0.000149338 0.000527627 0)
(5.94128e-05 0.000300289 0)
(0.0140324 -0.588303 0)
(0.0122694 -0.524452 0)
(-0.00426415 -0.518221 0)
(0.00616636 -0.541053 0)
(0.212024 -0.468414 0)
(0.319724 -0.388837 0)
(0.408275 -0.282319 0)
(0.436271 -0.186319 0)
(0.445996 -0.0705334 0)
(0.398651 0.0473902 0)
(0.314266 0.123168 0)
(0.22564 0.154358 0)
(0.151316 0.15318 0)
(0.0976537 0.135076 0)
(0.0623446 0.111838 0)
(0.0402799 0.0893218 0)
(0.0268455 0.0701218 0)
(0.0183445 0.0544581 0)
(0.012761 0.041738 0)
(0.00896947 0.0314548 0)
(0.00630865 0.0232033 0)
(0.00439391 0.0166705 0)
(0.00300039 0.0116047 0)
(0.00199051 0.00778731 0)
(0.00127295 0.00501174 0)
(0.000779351 0.00307858 0)
(0.000453624 0.00179764 0)
(0.000248448 0.000997859 0)
(0.000124538 0.000535397 0)
(5.0174e-05 0.000304719 0)
(0.00478555 -0.596998 0)
(0.0647292 -0.578254 0)
(0.165932 -0.573311 0)
(0.262039 -0.592233 0)
(0.247529 -0.527159 0)
(0.333259 -0.511789 0)
(0.426192 -0.330495 0)
(0.498776 -0.211538 0)
(0.531485 -0.0591316 0)
(0.454948 0.0949447 0)
(0.337907 0.172834 0)
(0.228397 0.193777 0)
(0.144316 0.179344 0)
(0.0883878 0.150505 0)
(0.0540723 0.120492 0)
(0.0338216 0.093922 0)
(0.0221747 0.0726465 0)
(0.0149649 0.0559188 0)
(0.0103122 0.0426111 0)
(0.00719928 0.0319959 0)
(0.00503938 0.0235494 0)
(0.0034979 0.0168962 0)
(0.00238292 0.0117526 0)
(0.00157833 0.00788306 0)
(0.00100845 0.00507212 0)
(0.000617337 0.00311527 0)
(0.000359635 0.00181887 0)
(0.00019742 0.00100963 0)
(9.94056e-05 0.000541696 0)
(4.08578e-05 0.000308266 0)
(0.00713446 -0.672017 0)
(0.0729159 -0.667694 0)
(0.145368 -0.661562 0)
(0.227536 -0.666084 0)
(0.317058 -0.631329 0)
(0.419821 -0.57824 0)
(0.54669 -0.387637 0)
(0.707425 -0.244059 0)
(0.658582 -0.0385871 0)
(0.523273 0.156297 0)
(0.358907 0.23559 0)
(0.224243 0.239781 0)
(0.131803 0.207176 0)
(0.0758584 0.165554 0)
(0.0441274 0.128516 0)
(0.0265384 0.097852 0)
(0.0171589 0.0747415 0)
(0.0114169 0.0571122 0)
(0.00777963 0.0433122 0)
(0.00538593 0.0324246 0)
(0.00374688 0.0238209 0)
(0.00258866 0.0170719 0)
(0.00175759 0.0118669 0)
(0.00116135 0.00795683 0)
(0.000741038 0.00511851 0)
(0.000453598 0.00314339 0)
(0.000264664 0.0018351 0)
(0.000145865 0.00101862 0)
(7.4007e-05 0.000546507 0)
(3.1504e-05 0.000310906 0)
(0.00761065 -0.758608 0)
(0.0782524 -0.759112 0)
(0.159272 -0.748918 0)
(0.249594 -0.746523 0)
(0.347147 -0.71758 0)
(0.493621 -0.677191 0)
(0.707444 -0.553459 0)
(0.913955 -0.319795 0)
(0.794168 0.00544626 0)
(0.554334 0.220894 0)
(0.398601 0.319427 0)
(0.214316 0.291655 0)
(0.112823 0.235222 0)
(0.0597665 0.179115 0)
(0.0325296 0.13558 0)
(0.0185005 0.100851 0)
(0.0118658 0.0763333 0)
(0.00773063 0.058008 0)
(0.00518023 0.0438282 0)
(0.00353875 0.0327353 0)
(0.00243652 0.0240154 0)
(0.00166936 0.0171963 0)
(0.00112632 0.0119472 0)
(0.000740763 0.00800837 0)
(0.00047146 0.00515078 0)
(0.000288587 0.00316287 0)
(0.000168973 0.0018463 0)
(9.39279e-05 0.00102482 0)
(4.84108e-05 0.000549822 0)
(2.21568e-05 0.000312616 0)
(0.00681989 -0.858347 0)
(0.0844305 -0.860475 0)
(0.169266 -0.85378 0)
(0.300292 -0.876493 0)
(0.435123 -0.845342 0)
(0.601313 -0.824004 0)
(0.55232 -0.685914 0)
(0.467143 -0.449232 0)
(0.666628 0.151614 0)
(0.532511 0.391802 0)
(0.345052 0.402993 0)
(0.187163 0.349802 0)
(0.0978022 0.263262 0)
(0.0421885 0.189564 0)
(0.01919 0.14061 0)
(0.00984423 0.101705 0)
(0.00637605 0.0765773 0)
(0.0039368 0.0579195 0)
(0.00253042 0.043616 0)
(0.00166585 0.0325075 0)
(0.00111267 0.0238157 0)
(0.000742599 0.0170369 0)
(0.000490822 0.0118282 0)
(0.000317786 0.00792451 0)
(0.000200601 0.00509478 0)
(0.000122938 0.00312744 0)
(7.30054e-05 0.00182514 0)
(4.1898e-05 0.00101293 0)
(2.28313e-05 0.000543388 0)
(1.30036e-05 0.000308694 0)
(-0.00706565 -0.0001522 0)
(-0.000890126 0.000368973 0)
(-0.000930695 0.000663051 0)
(-0.000958379 0.00121715 0)
(-0.000950708 0.00214788 0)
(-0.000928164 0.00360889 0)
(-0.000911349 0.00577905 0)
(-0.000920987 0.00885477 0)
(-0.000975376 0.0130305 0)
(-0.00107709 0.0185508 0)
(-0.00119661 0.02563 0)
(-0.00137475 0.0345023 0)
(-0.00166072 0.0455248 0)
(-0.00206478 0.0599783 0)
(-0.00215733 0.0804114 0)
(0.00755005 0.110311 0)
(-0.0206735 0.155707 0)
(-0.0543686 0.215257 0)
(-0.035326 0.308175 0)
(-0.199122 0.427413 0)
(-0.412226 0.513129 0)
(-0.606721 0.423836 0)
(-0.889771 -0.00467923 0)
(-0.319511 -0.420803 0)
(-0.256599 -0.661701 0)
(-0.41673 -0.823792 0)
(-0.469199 -0.906177 0)
(-0.45894 -0.943163 0)
(-0.372392 -0.959839 0)
(-0.18777 -0.993584 0)
(-0.00531545 -0.000327754 0)
(-0.00377029 0.000362837 0)
(-0.00449298 0.000655285 0)
(-0.00568175 0.00121897 0)
(-0.00725668 0.0021654 0)
(-0.00928064 0.00365953 0)
(-0.0117767 0.00588662 0)
(-0.0149624 0.0090507 0)
(-0.0193586 0.0133523 0)
(-0.0247715 0.0189966 0)
(-0.031505 0.026417 0)
(-0.0425962 0.036115 0)
(-0.0642486 0.0481177 0)
(-0.11622 0.0662423 0)
(-0.867998 0.093245 0)
(-0.364019 0.107494 0)
(-0.222168 0.145517 0)
(-0.176156 0.212984 0)
(0.0296953 0.331087 0)
(-0.131007 0.475867 0)
(-0.399142 0.580447 0)
(-0.55098 0.46523 0)
(-0.438587 -0.188059 0)
(-0.211522 -0.521225 0)
(-0.0648717 -0.640637 0)
(-0.142266 -0.761252 0)
(-0.255228 -0.877184 0)
(-0.29615 -0.955787 0)
(-0.23314 -1.02706 0)
(-0.150872 -1.11737 0)
(-0.00478596 -0.000359324 0)
(-0.00491859 0.000382813 0)
(-0.00590927 0.000684497 0)
(-0.00755851 0.00128017 0)
(-0.00977966 0.00226457 0)
(-0.0126954 0.00381874 0)
(-0.0163516 0.00613705 0)
(-0.0210734 0.00943358 0)
(-0.0277145 0.0139491 0)
(-0.0365587 0.0198458 0)
(-0.0487917 0.0277168 0)
(-0.0694676 0.0386709 0)
(-0.11137 0.0543525 0)
(-0.230076 0.0909393 0)
(-0.987964 0.316792 0)
(-2.68256 0.259643 0)
(-1.35144 -0.00534695 0)
(-0.54263 0.175996 0)
(-0.43615 0.275028 0)
(-0.0359414 0.554409 0)
(-0.396443 0.651838 0)
(-0.645281 0.55665 0)
(-0.527652 -0.259522 0)
(-0.179514 -0.648177 0)
(-0.0054884 -0.68047 0)
(0.0633826 -0.724122 0)
(0.0112989 -0.842017 0)
(-0.0174833 -0.946441 0)
(-0.0173939 -1.0689 0)
(-0.0237358 -1.19067 0)
(-0.00465183 -0.000335079 0)
(-0.0052417 0.000408183 0)
(-0.00631668 0.000723264 0)
(-0.00808429 0.00135872 0)
(-0.0104654 0.00239157 0)
(-0.0136112 0.00402026 0)
(-0.0175972 0.00645423 0)
(-0.0227602 0.00991926 0)
(-0.0299941 0.0147128 0)
(-0.0397211 0.020959 0)
(-0.0533788 0.0295152 0)
(-0.0767217 0.0423099 0)
(-0.1242 0.0634683 0)
(-0.253673 0.12589 0)
(-0.708608 0.577109 0)
(-2.2765 0.299342 0)
(-1.19305 -0.233272 0)
(-0.768311 0.0947256 0)
(-0.437893 0.198543 0)
(-0.114898 0.595578 0)
(-0.430688 0.74403 0)
(-0.670943 0.542902 0)
(-0.593685 -0.45878 0)
(-0.205175 -0.75021 0)
(-0.00713318 -0.751262 0)
(0.124774 -0.748474 0)
(0.165456 -0.826909 0)
(0.157554 -0.936799 0)
(0.122858 -1.04913 0)
(0.0865734 -1.14035 0)
(-0.00465947 -0.000296126 0)
(-0.00531768 0.00043728 0)
(-0.00642521 0.000772246 0)
(-0.00820835 0.00144928 0)
(-0.0106026 0.00253432 0)
(-0.0137574 0.00423836 0)
(-0.0177795 0.00679144 0)
(-0.0229671 0.0104296 0)
(-0.0301042 0.0155211 0)
(-0.039785 0.0221544 0)
(-0.0535238 0.0315092 0)
(-0.0768116 0.0463752 0)
(-0.123216 0.0735361 0)
(-0.238242 0.159346 0)
(-0.385733 0.709658 0)
(-1.06544 0.23595 0)
(-0.703189 -0.358651 0)
(-0.546296 0.081302 0)
(-0.581221 0.134102 0)
(-0.449352 0.453468 0)
(-0.445558 0.892699 0)
(-0.64163 0.48821 0)
(-0.402284 -0.702603 0)
(-0.207211 -0.873811 0)
(-0.00460265 -0.828166 0)
(0.120328 -0.805113 0)
(0.193459 -0.842468 0)
(0.207449 -0.930345 0)
(0.176289 -1.0081 0)
(0.103997 -1.06129 0)
(-0.00469779 -0.000254735 0)
(-0.00534529 0.000472604 0)
(-0.00646915 0.000837465 0)
(-0.00824597 0.00155962 0)
(-0.010628 0.00270442 0)
(-0.0137442 0.00448819 0)
(-0.0177288 0.00716565 0)
(-0.0228334 0.0109804 0)
(-0.029685 0.0163614 0)
(-0.0390283 0.0233936 0)
(-0.0524142 0.0336165 0)
(-0.0747072 0.0506042 0)
(-0.117299 0.08353 0)
(-0.207526 0.185399 0)
(-0.173181 0.672917 0)
(0.12439 0.199242 0)
(-0.328202 -0.342227 0)
(-0.414709 0.0925004 0)
(-0.477896 0.129636 0)
(-0.616687 0.477849 0)
(-0.466497 1.0217 0)
(-0.755072 0.515107 0)
(-1.00217 -0.879319 0)
(-0.18087 -1.0198 0)
(0.0178537 -0.904021 0)
(0.115787 -0.858164 0)
(0.171299 -0.868847 0)
(0.184121 -0.926362 0)
(0.155903 -0.96553 0)
(0.0883509 -0.97639 0)
(-0.00473173 -0.000213705 0)
(-0.00536355 0.000513778 0)
(-0.00649256 0.000917924 0)
(-0.00825742 0.00168812 0)
(-0.0106246 0.00289847 0)
(-0.0136934 0.00476443 0)
(-0.0176137 0.00756733 0)
(-0.0225987 0.0115572 0)
(-0.0291208 0.0172164 0)
(-0.0380062 0.0246679 0)
(-0.0508059 0.0358023 0)
(-0.0715664 0.0548535 0)
(-0.108758 0.0927822 0)
(-0.171347 0.201903 0)
(-0.0631298 0.563092 0)
(0.619955 0.187017 0)
(-0.133699 -0.221589 0)
(-0.363779 0.121158 0)
(-0.479717 0.108846 0)
(0.317682 0.322169 0)
(-0.620013 1.06724 0)
(-0.654649 1.34218 0)
(-0.730613 -1.33067 0)
(-0.068036 -1.16759 0)
(0.0682481 -0.966269 0)
(0.125233 -0.89441 0)
(0.149394 -0.884854 0)
(0.1428 -0.914254 0)
(0.106662 -0.925507 0)
(0.0558646 -0.906801 0)
(-0.00475535 -0.000173866 0)
(-0.00537596 0.000560568 0)
(-0.0065009 0.0010125 0)
(-0.00825071 0.0018341 0)
(-0.0105997 0.00311469 0)
(-0.0136167 0.0050657 0)
(-0.0174499 0.00799353 0)
(-0.0222822 0.0121551 0)
(-0.0284516 0.0180796 0)
(-0.0367882 0.025973 0)
(-0.0487901 0.0380281 0)
(-0.0675378 0.0589803 0)
(-0.0981757 0.100731 0)
(-0.13447 0.20895 0)
(-0.0012499 0.459938 0)
(0.4775 0.184537 0)
(-0.0486336 -0.0865765 0)
(-0.321338 0.178328 0)
(-0.478268 0.167217 0)
(-0.477707 0.464611 0)
(-0.865418 1.11361 0)
(-0.836867 1.18475 0)
(0.128608 -1.69267 0)
(0.134924 -1.23696 0)
(0.14574 -0.99427 0)
(0.149234 -0.906658 0)
(0.140363 -0.881954 0)
(0.112588 -0.886905 0)
(0.0691829 -0.8842 0)
(0.0283545 -0.859138 0)
(-0.00476838 -0.000135618 0)
(-0.00538095 0.000612473 0)
(-0.00649503 0.00111983 0)
(-0.00822739 0.00199674 0)
(-0.0105516 0.00335092 0)
(-0.0135105 0.00539054 0)
(-0.0172343 0.00844131 0)
(-0.0218756 0.0127694 0)
(-0.0276634 0.0189457 0)
(-0.0353699 0.0272955 0)
(-0.0463562 0.0402382 0)
(-0.0626367 0.0628151 0)
(-0.0859777 0.106908 0)
(-0.0997801 0.207923 0)
(0.0321599 0.376721 0)
(0.312271 0.187861 0)
(-0.000516381 0.0267561 0)
(-0.259448 0.266696 0)
(-0.847549 0.214384 0)
(-1.17309 0.606599 0)
(-1.06559 1.04203 0)
(0.584632 0.756769 0)
(0.792897 -1.52738 0)
(0.34754 -1.16753 0)
(0.232825 -0.971868 0)
(0.182878 -0.889814 0)
(0.144508 -0.858191 0)
(0.10215 -0.847316 0)
(0.0558513 -0.838647 0)
(0.0186426 -0.82546 0)
(-0.00477114 -9.92945e-05 0)
(-0.0053762 0.000668748 0)
(-0.006475 0.00123834 0)
(-0.00818736 0.00217498 0)
(-0.0104781 0.00360486 0)
(-0.0133688 0.00573696 0)
(-0.016961 0.00890706 0)
(-0.0213699 0.0133951 0)
(-0.0267381 0.0198076 0)
(-0.0337385 0.0286111 0)
(-0.0434894 0.0423592 0)
(-0.0569079 0.066169 0)
(-0.0726861 0.110978 0)
(-0.0689944 0.200786 0)
(0.0485802 0.312304 0)
(0.216049 0.192321 0)
(0.0370124 0.112543 0)
(-0.142548 0.360998 0)
(-0.921806 0.444025 0)
(-1.63465 0.689565 0)
(0.226834 -0.0130949 0)
(1.11916 0.10126 0)
(0.938656 -1.08149 0)
(0.478235 -1.00413 0)
(0.304001 -0.901767 0)
(0.216891 -0.844355 0)
(0.157631 -0.815974 0)
(0.107571 -0.800729 0)
(0.0629585 -0.790833 0)
(0.0258703 -0.790273 0)
(-0.00476338 -6.51133e-05 0)
(-0.00535978 0.000728516 0)
(-0.0064407 0.00136636 0)
(-0.0081295 0.00236729 0)
(-0.0103767 0.00387403 0)
(-0.013186 0.006102 0)
(-0.0166232 0.00938582 0)
(-0.0207579 0.0140259 0)
(-0.025662 0.0206556 0)
(-0.0318775 0.0298854 0)
(-0.0401825 0.0443055 0)
(-0.0504388 0.0688555 0)
(-0.0588675 0.112783 0)
(-0.0428007 0.18956 0)
(0.0562773 0.263348 0)
(0.162533 0.194232 0)
(0.0724938 0.168763 0)
(0.00990074 0.389737 0)
(0.273584 0.826484 0)
(0.670547 -0.0578308 0)
(0.839927 -0.199443 0)
(0.980508 -0.295962 0)
(0.814991 -0.7521 0)
(0.513768 -0.826147 0)
(0.343068 -0.803274 0)
(0.241607 -0.777064 0)
(0.171512 -0.759807 0)
(0.117057 -0.749084 0)
(0.0733169 -0.742911 0)
(0.0351653 -0.743312 0)
(-0.00474376 -3.2842e-05 0)
(-0.00533067 0.000791481 0)
(-0.00639257 0.00150288 0)
(-0.00805255 0.00257234 0)
(-0.0102456 0.00415654 0)
(-0.0129578 0.00648183 0)
(-0.0162141 0.00987148 0)
(-0.0200351 0.0146533 0)
(-0.0244291 0.0214746 0)
(-0.0297757 0.0310734 0)
(-0.0364501 0.045979 0)
(-0.0433695 0.0707024 0)
(-0.0450797 0.112334 0)
(-0.0211503 0.175968 0)
(0.0603848 0.225996 0)
(0.135001 0.191567 0)
(0.106304 0.195869 0)
(0.130305 0.355216 0)
(0.461721 0.568363 0)
(0.963549 0.110475 0)
(0.804271 -0.168009 0)
(0.783869 -0.340666 0)
(0.674592 -0.574352 0)
(0.490008 -0.675543 0)
(0.349577 -0.697813 0)
(0.251402 -0.697771 0)
(0.17905 -0.693803 0)
(0.122029 -0.690558 0)
(0.0745974 -0.68908 0)
(0.0333004 -0.687357 0)
(-0.00471268 -2.07468e-06 0)
(-0.00528736 0.000857886 0)
(-0.00632987 0.0016475 0)
(-0.0079546 0.00278926 0)
(-0.0100823 0.00445153 0)
(-0.0126804 0.00687276 0)
(-0.0157275 0.0103587 0)
(-0.019199 0.0152672 0)
(-0.0230364 0.0222442 0)
(-0.0274304 0.032123 0)
(-0.0323323 0.0472768 0)
(-0.0358865 0.071572 0)
(-0.0318131 0.10979 0)
(-0.00356138 0.161266 0)
(0.0636054 0.196559 0)
(0.122986 0.183444 0)
(0.134969 0.198361 0)
(0.203389 0.292736 0)
(0.446534 0.348035 0)
(0.701583 0.107976 0)
(0.690315 -0.139525 0)
(0.649201 -0.311279 0)
(0.562127 -0.465988 0)
(0.440994 -0.558073 0)
(0.332435 -0.598838 0)
(0.24617 -0.615376 0)
(0.177716 -0.622131 0)
(0.121707 -0.625075 0)
(0.07434 -0.62647 0)
(0.0330809 -0.627376 0)
(-0.00466986 2.71121e-05 0)
(-0.00522841 0.000927531 0)
(-0.00625027 0.0017991 0)
(-0.00783347 0.00301647 0)
(-0.00988392 0.00475732 0)
(-0.01235 0.00727053 0)
(-0.0151599 0.0108425 0)
(-0.0182479 0.0158559 0)
(-0.0214814 0.0229398 0)
(-0.0248477 0.0329794 0)
(-0.0278902 0.0481016 0)
(-0.0282008 0.0713745 0)
(-0.0194433 0.105407 0)
(0.0106388 0.14623 0)
(0.066962 0.172023 0)
(0.119309 0.169951 0)
(0.15524 0.183334 0)
(0.23661 0.226103 0)
(0.403265 0.213843 0)
(0.549568 0.0593986 0)
(0.571899 -0.124059 0)
(0.538028 -0.27075 0)
(0.470572 -0.387881 0)
(0.384856 -0.466263 0)
(0.301669 -0.51126 0)
(0.229389 -0.535796 0)
(0.168241 -0.549257 0)
(0.116186 -0.556822 0)
(0.0711201 -0.561055 0)
(0.03149 -0.563074 0)
(-0.00461494 5.43724e-05 0)
(-0.00515214 0.000999942 0)
(-0.00615028 0.0019558 0)
(-0.00768543 0.00325114 0)
(-0.00964676 0.00507034 0)
(-0.0119623 0.00766913 0)
(-0.0145105 0.0113156 0)
(-0.0171829 0.016404 0)
(-0.0197679 0.0235324 0)
(-0.0220492 0.0335871 0)
(-0.0232124 0.0483683 0)
(-0.0205452 0.0700733 0)
(-0.00824576 0.0994898 0)
(0.0220449 0.131255 0)
(0.0704508 0.150266 0)
(0.119017 0.152023 0)
(0.165912 0.158179 0)
(0.242912 0.166423 0)
(0.355673 0.128195 0)
(0.444987 0.0166146 0)
(0.467296 -0.117529 0)
(0.443121 -0.234451 0)
(0.392358 -0.32685 0)
(0.329015 -0.392581 0)
(0.264737 -0.435407 0)
(0.205477 -0.462148 0)
(0.152812 -0.478627 0)
(0.106411 -0.4887 0)
(0.0654169 -0.494633 0)
(0.0289717 -0.497599 0)
(-0.0045468 7.92707e-05 0)
(-0.0050559 0.00107556 0)
(-0.00602653 0.00211666 0)
(-0.00750529 0.00349099 0)
(-0.00936623 0.00538697 0)
(-0.0115128 0.00806222 0)
(-0.0137791 0.0117677 0)
(-0.016007 0.0168922 0)
(-0.0179066 0.0239897 0)
(-0.0190718 0.0338919 0)
(-0.0184105 0.048013 0)
(-0.0131515 0.067688 0)
(0.00159722 0.0923407 0)
(0.0310869 0.116475 0)
(0.0735749 0.129987 0)
(0.118902 0.131143 0)
(0.167714 0.128927 0)
(0.233149 0.116881 0)
(0.309487 0.0708783 0)
(0.365052 -0.0147333 0)
(0.380298 -0.114236 0)
(0.362472 -0.204679 0)
(0.324378 -0.277729 0)
(0.276484 -0.332047 0)
(0.226366 -0.370034 0)
(0.178292 -0.395618 0)
(0.134022 -0.412454 0)
(0.0939639 -0.423284 0)
(0.0579562 -0.429923 0)
(0.0256277 -0.433387 0)
(-0.00446084 0.00010105 0)
(-0.00493783 0.00115541 0)
(-0.00587648 0.0022816 0)
(-0.00728824 0.00373431 0)
(-0.00903716 0.00570384 0)
(-0.0109958 0.00844295 0)
(-0.0129637 0.0121852 0)
(-0.0147243 0.0172973 0)
(-0.0159153 0.0242752 0)
(-0.0159675 0.0338423 0)
(-0.0136135 0.0469959 0)
(-0.00623811 0.0642907 0)
(0.00999473 0.0842832 0)
(0.0380362 0.10195 0)
(0.0757146 0.110595 0)
(0.117175 0.108971 0)
(0.162418 0.0996929 0)
(0.214655 0.0772949 0)
(0.266274 0.0315881 0)
(0.300652 -0.0359607 0)
(0.308958 -0.11098 0)
(0.294662 -0.180223 0)
(0.265559 -0.237487 0)
(0.228767 -0.28154 0)
(0.189445 -0.313739 0)
(0.150714 -0.336439 0)
(0.114159 -0.352003 0)
(0.0804329 -0.362377 0)
(0.0497178 -0.368974 0)
(0.0219362 -0.372558 0)
(-0.00434898 0.000119671 0)
(-0.00479904 0.00124012 0)
(-0.00569978 0.00245061 0)
(-0.00703375 0.00397997 0)
(-0.00865831 0.00601828 0)
(-0.0104117 0.00880493 0)
(-0.012066 0.0125544 0)
(-0.013345 0.0175963 0)
(-0.0138216 0.0243538 0)
(-0.012804 0.0333958 0)
(-0.00896105 0.0453064 0)
(-1.13424e-06 0.059988 0)
(0.0168701 0.0755651 0)
(0.0430254 0.0877503 0)
(0.0763625 0.0920059 0)
(0.113111 0.0870267 0)
(0.152052 0.0728908 0)
(0.192001 0.0464318 0)
(0.226615 0.00455656 0)
(0.247324 -0.0493196 0)
(0.250393 -0.106569 0)
(0.238102 -0.159452 0)
(0.215292 -0.203915 0)
(0.186642 -0.238962 0)
(0.155685 -0.26532 0)
(0.124698 -0.284437 0)
(0.0949775 -0.297886 0)
(0.0671801 -0.307084 0)
(0.0415999 -0.313144 0)
(0.0183073 -0.316585 0)
(-0.00420968 0.000136178 0)
(-0.00463919 0.0013291 0)
(-0.00549567 0.00262292 0)
(-0.00674251 0.00422665 0)
(-0.00823036 0.00632711 0)
(-0.00976486 0.00914135 0)
(-0.0110938 0.012862 0)
(-0.0118878 0.0177684 0)
(-0.0116662 0.0241953 0)
(-0.00966584 0.0325273 0)
(-0.00459854 0.0429695 0)
(0.00541183 0.0549612 0)
(0.0221964 0.0664543 0)
(0.0461226 0.074001 0)
(0.0752421 0.0744294 0)
(0.106696 0.0664879 0)
(0.138459 0.0496952 0)
(0.167972 0.0228951 0)
(0.190763 -0.0137735 0)
(0.202567 -0.0568143 0)
(0.202112 -0.100814 0)
(0.191173 -0.141185 0)
(0.172892 -0.175416 0)
(0.15035 -0.202819 0)
(0.125964 -0.223802 0)
(0.101377 -0.239289 0)
(0.0775956 -0.250345 0)
(0.0551642 -0.258005 0)
(0.0343204 -0.263125 0)
(0.0151197 -0.26607 0)
(-0.00404385 0.000151364 0)
(-0.00445412 0.00142143 0)
(-0.00526022 0.0027974 0)
(-0.0064119 0.00447233 0)
(-0.00775169 0.00662532 0)
(-0.00905846 0.00944409 0)
(-0.0100565 0.0130945 0)
(-0.0103763 0.0177945 0)
(-0.00949957 0.0237775 0)
(-0.00664772 0.0312328 0)
(-0.000667936 0.0400433 0)
(0.00986521 0.0493618 0)
(0.0259767 0.0572048 0)
(0.0474018 0.0608873 0)
(0.0723257 0.0581866 0)
(0.0983241 0.048132 0)
(0.12314 0.03048 0)
(0.144238 0.00538614 0)
(0.158785 -0.0257744 0)
(0.164808 -0.0600473 0)
(0.162188 -0.0939515 0)
(0.152377 -0.124735 0)
(0.137507 -0.15089 0)
(0.119644 -0.172008 0)
(0.100446 -0.18836 0)
(0.081081 -0.200561 0)
(0.0622908 -0.209324 0)
(0.0444721 -0.215326 0)
(0.0277758 -0.219112 0)
(0.0122333 -0.221055 0)
(-0.00384913 0.000165452 0)
(-0.00423997 0.00151546 0)
(-0.00498961 0.00297195 0)
(-0.00603887 0.00471385 0)
(-0.00722168 0.00690669 0)
(-0.00829688 0.00970468 0)
(-0.00896793 0.0132394 0)
(-0.00884072 0.0176595 0)
(-0.00738138 0.0230895 0)
(-0.00384983 0.0295319 0)
(0.00271335 0.0366339 0)
(0.0132746 0.0433971 0)
(0.0282479 0.0480688 0)
(0.0469834 0.0486326 0)
(0.0677909 0.0435897 0)
(0.088563 0.0323741 0)
(0.107231 0.0151577 0)
(0.1218 -0.0072269 0)
(0.130627 -0.033126 0)
(0.132957 -0.0602513 0)
(0.129161 -0.0863459 0)
(0.120422 -0.109752 0)
(0.108238 -0.129596 0)
(0.0940151 -0.14567 0)
(0.078885 -0.15818 0)
(0.063655 -0.167543 0)
(0.0488512 -0.174223 0)
(0.0347859 -0.178644 0)
(0.0216264 -0.181167 0)
(0.0094562 -0.182224 0)
(-0.00362228 0.000178685 0)
(-0.00399318 0.00161011 0)
(-0.00468053 0.00314458 0)
(-0.00562127 0.00494755 0)
(-0.0066413 0.00716494 0)
(-0.0074869 0.00991465 0)
(-0.00784679 0.0132868 0)
(-0.00731792 0.0173556 0)
(-0.00537796 0.0221358 0)
(-0.00137107 0.0274701 0)
(0.00543908 0.0328559 0)
(0.0156007 0.0372777 0)
(0.0290904 0.0392898 0)
(0.0450522 0.0374547 0)
(0.0619491 0.0308574 0)
(0.0780038 0.0193322 0)
(0.0915451 0.00338013 0)
(0.101203 -0.015927 0)
(0.106129 -0.0370724 0)
(0.106185 -0.0583745 0)
(0.101905 -0.0783773 0)
(0.0942353 -0.0960897 0)
(0.0842439 -0.111024 0)
(0.0728991 -0.123101 0)
(0.0609807 -0.132488 0)
(0.0490566 -0.139482 0)
(0.0375108 -0.14441 0)
(0.026588 -0.147578 0)
(0.0164375 -0.149275 0)
(0.00713321 -0.149894 0)
(-0.00335986 0.000191128 0)
(-0.00371013 0.0017039 0)
(-0.0043296 0.00331286 0)
(-0.00515727 0.00516892 0)
(-0.00601259 0.00739373 0)
(-0.00663772 0.0100672 0)
(-0.00671561 0.0132311 0)
(-0.0058502 0.0168841 0)
(-0.00355716 0.020939 0)
(0.000702055 0.0251178 0)
(0.00743576 0.0288551 0)
(0.0168483 0.0312154 0)
(0.0286279 0.0310888 0)
(0.0418494 0.0275305 0)
(0.0551723 0.0200882 0)
(0.0671762 0.00891176 0)
(0.0766394 -0.00532535 0)
(0.082717 -0.0215655 0)
(0.0850581 -0.0385735 0)
(0.0838158 -0.0551614 0)
(0.0795301 -0.0704028 0)
(0.0729407 -0.0837169 0)
(0.0648141 -0.0948526 0)
(0.0558255 -0.103813 0)
(0.0465167 -0.110752 0)
(0.0372869 -0.115897 0)
(0.0284125 -0.119493 0)
(0.0200719 -0.121771 0)
(0.0123684 -0.122958 0)
(0.00533856 -0.123364 0)
(-0.00305812 0.000202581 0)
(-0.00338707 0.00179502 0)
(-0.00393394 0.00347355 0)
(-0.00464545 0.00537374 0)
(-0.00533924 0.00758842 0)
(-0.00576139 0.0101586 0)
(-0.00560036 0.0130731 0)
(-0.00448208 0.0162584 0)
(-0.00198469 0.0195423 0)
(0.00230361 0.0225787 0)
(0.008665 0.0247928 0)
(0.0170637 0.0254137 0)
(0.0270228 0.0236548 0)
(0.0376492 0.0189749 0)
(0.0478337 0.0112663 0)
(0.0565082 0.000877914 0)
(0.0628575 -0.0114727 0)
(0.0664206 -0.0248744 0)
(0.0671326 -0.0383877 0)
(0.0652595 -0.0512041 0)
(0.0612835 -0.062748 0)
(0.0557712 -0.0726942 0)
(0.0492733 -0.0809341 0)
(0.0422591 -0.0875196 0)
(0.0350999 -0.0925938 0)
(0.0280664 -0.0963441 0)
(0.0213442 -0.0989622 0)
(0.0150514 -0.100621 0)
(0.00925584 -0.101485 0)
(0.00397959 -0.101778 0)
(-0.00271319 0.000212893 0)
(-0.00302016 0.00188168 0)
(-0.00349066 0.00362361 0)
(-0.00408516 0.00555767 0)
(-0.00462589 0.00774579 0)
(-0.0048714 0.0101888 0)
(-0.00452716 0.0128215 0)
(-0.00325724 0.0155066 0)
(-0.000719298 0.0180098 0)
(0.00337556 0.0199586 0)
(0.00912391 0.0208344 0)
(0.0163314 0.0200541 0)
(0.0244633 0.0171271 0)
(0.0327282 0.0118258 0)
(0.0402599 0.00427423 0)
(0.0463075 -0.00508116 0)
(0.0503706 -0.015579 0)
(0.0522474 -0.026486 0)
(0.0520165 -0.0371274 0)
(0.0499635 -0.046973 0)
(0.0464855 -0.0556813 0)
(0.0420063 -0.063087 0)
(0.0369181 -0.0691655 0)
(0.0315448 -0.0739911 0)
(0.026137 -0.077689 0)
(0.0208719 -0.0804063 0)
(0.015867 -0.0822889 0)
(0.0111928 -0.0834716 0)
(0.00688564 -0.0840818 0)
(0.00295454 -0.0842835 0)
(-0.0023215 0.000222236 0)
(-0.00260605 0.00196202 0)
(-0.00299718 0.00375958 0)
(-0.00347633 0.00571705 0)
(-0.00387754 0.00786481 0)
(-0.003981 0.010163 0)
(-0.00352155 0.0124955 0)
(-0.00221459 0.0146736 0)
(0.000198221 0.0164225 0)
(0.00389625 0.0173892 0)
(0.00884248 0.0171419 0)
(0.0147635 0.0152919 0)
(0.0211453 0.0115964 0)
(0.0273384 0.00605479 0)
(0.032705 -0.00107361 0)
(0.0367569 -0.00932096 0)
(0.0392138 -0.0181279 0)
(0.0400269 -0.0269371 0)
(0.039333 -0.0352843 0)
(0.0373891 -0.0428368 0)
(0.034503 -0.0494057 0)
(0.0309805 -0.0549235 0)
(0.0270926 -0.0594121 0)
(0.0230573 -0.0629522 0)
(0.0190413 -0.065652 0)
(0.0151616 -0.0676274 0)
(0.0114945 -0.068987 0)
(0.00808582 -0.0698248 0)
(0.00495938 -0.070229 0)
(0.00211831 -0.0703319 0)
(-0.00187991 0.000230418 0)
(-0.00214126 0.00203353 0)
(-0.00245107 0.00387803 0)
(-0.00281854 0.0058491 0)
(-0.0030983 0.00794703 0)
(-0.00310144 0.010093 0)
(-0.00260409 0.0121263 0)
(-0.00138149 0.0138202 0)
(0.000748922 0.0148884 0)
(0.00387016 0.015008 0)
(0.00787811 0.0138674 0)
(0.0124841 0.0112494 0)
(0.0172486 0.00710354 0)
(0.0216775 0.00157924 0)
(0.0253351 -0.00499712 0)
(0.0279198 -0.0121925 0)
(0.0293016 -0.0195526 0)
(0.0295064 -0.026673 0)
(0.0286764 -0.0332468 0)
(0.0270184 -0.0390761 0)
(0.0247582 -0.0440681 0)
(0.0221087 -0.0482115 0)
(0.0192509 -0.0515501 0)
(0.0163267 -0.0541638 0)
(0.0134431 -0.0561464 0)
(0.0106752 -0.0575926 0)
(0.00807182 -0.058589 0)
(0.0056621 -0.0592115 0)
(0.00346231 -0.0595295 0)
(0.00147372 -0.0596293 0)
(-0.00138588 0.00023709 0)
(-0.00162291 0.00209321 0)
(-0.00184996 0.0039752 0)
(-0.00211119 0.00595182 0)
(-0.00229048 0.00799728 0)
(-0.00223925 0.00999759 0)
(-0.00178596 0.0117571 0)
(-0.000768264 0.0130235 0)
(0.000930526 0.0135151 0)
(0.0033299 0.0129599 0)
(0.00630811 0.0111543 0)
(0.00961562 0.00802478 0)
(0.0129189 0.0036572 0)
(0.0158757 -0.00170917 0)
(0.0182101 -0.00772825 0)
(0.0197544 -0.0140199 0)
(0.0204601 -0.0202275 0)
(0.0203789 -0.0260628 0)
(0.0196292 -0.0313291 0)
(0.018361 -0.0359169 0)
(0.0167282 -0.0397929 0)
(0.0148717 -0.0429776 0)
(0.0129097 -0.0455253 0)
(0.0109334 -0.0475094 0)
(0.00900853 -0.0490074 0)
(0.00717612 -0.0500959 0)
(0.00545773 -0.050843 0)
(0.00386033 -0.0513024 0)
(0.0023831 -0.0515211 0)
(0.00102287 -0.0515716 0)
(-0.000837439 0.00024192 0)
(-0.00104873 0.00213807 0)
(-0.00119178 0.00404701 0)
(-0.00135207 0.00602409 0)
(-0.00145173 0.00802296 0)
(-0.00139203 0.00990222 0)
(-0.00106182 0.0114415 0)
(-0.00036049 0.0123742 0)
(0.000774237 0.0124319 0)
(0.00233493 0.0113927 0)
(0.00422137 0.00914119 0)
(0.00626174 0.00570384 0)
(0.0082464 0.00125499 0)
(0.00997183 -0.00391596 0)
(0.011283 -0.00947297 0)
(0.0120995 -0.0150833 0)
(0.0124113 -0.0204639 0)
(0.0122632 -0.025407 0)
(0.011734 -0.0297867 0)
(0.0109157 -0.0335473 0)
(0.00989973 -0.0366904 0)
(0.00876654 -0.0392545 0)
(0.00758134 -0.0412985 0)
(0.00639172 -0.0428885 0)
(0.00523208 -0.0440884 0)
(0.00412827 -0.0449575 0)
(0.00309993 -0.045545 0)
(0.00215927 -0.0458861 0)
(0.00131155 -0.0460145 0)
(0.000554329 -0.0460058 0)
(-0.00023577 0.000244435 0)
(-0.000417744 0.00216443 0)
(-0.000474277 0.00408855 0)
(-0.000536698 0.00606441 0)
(-0.000573144 0.00803298 0)
(-0.00054345 0.00983659 0)
(-0.000402776 0.0112409 0)
(-0.0001122 0.0119736 0)
(0.000350259 0.0117781 0)
(0.000975413 0.0104669 0)
(0.00171611 0.00797903 0)
(0.00249767 0.00439233 0)
(0.00325598 -8.23308e-05 0)
(0.00390481 -0.00510447 0)
(0.00438127 -0.0103767 0)
(0.00466705 -0.0155905 0)
(0.00476151 -0.0205046 0)
(0.00468437 -0.0249548 0)
(0.00446724 -0.0288521 0)
(0.0041457 -0.0321675 0)
(0.00375316 -0.034917 0)
(0.00331809 -0.037144 0)
(0.00286378 -0.0389071 0)
(0.00240846 -0.0402729 0)
(0.00196609 -0.0413045 0)
(0.00154635 -0.0420575 0)
(0.00115581 -0.0425799 0)
(0.000799324 -0.0429119 0)
(0.000480764 -0.0430853 0)
(0.000200714 -0.0431391 0)
(0.0244828 -1.00933 0)
(0.23347 -0.989509 0)
(0.396236 -0.953272 0)
(0.463572 -0.930937 0)
(0.460176 -0.890644 0)
(0.376379 -0.790131 0)
(0.232541 -0.619933 0)
(0.369099 -0.356517 0)
(1.07829 -0.0673121 0)
(0.623496 0.506229 0)
(0.358331 0.500757 0)
(0.17273 0.388322 0)
(0.0247499 0.28511 0)
(0.0440934 0.194526 0)
(0.00906429 0.144971 0)
(-0.0012235 0.101343 0)
(0.00241589 0.0747554 0)
(0.00189128 0.0559427 0)
(0.00154576 0.0425453 0)
(0.00131867 0.0321088 0)
(0.00115887 0.023709 0)
(0.00104156 0.0170355 0)
(0.000935957 0.0118726 0)
(0.000900326 0.00799085 0)
(0.000893311 0.00515981 0)
(0.000908326 0.00318449 0)
(0.000933127 0.00187168 0)
(0.000940804 0.00104827 0)
(0.00091552 0.000568621 0)
(0.000876972 0.000325869 0)
(0.0162149 -1.15054 0)
(0.179499 -1.09491 0)
(0.251032 -1.00588 0)
(0.291513 -0.931944 0)
(0.231934 -0.855813 0)
(0.10973 -0.725956 0)
(0.0789538 -0.62712 0)
(0.310146 -0.455892 0)
(0.53321 0.02445 0)
(0.50796 0.526051 0)
(0.329567 0.569862 0)
(0.130637 0.416411 0)
(-0.0581784 0.3106 0)
(0.261689 0.176809 0)
(0.158462 0.138096 0)
(0.383743 0.0976007 0)
(0.298574 0.0993542 0)
(0.0884473 0.0602534 0)
(0.0544762 0.0447997 0)
(0.0377938 0.0334227 0)
(0.0290665 0.0243596 0)
(0.0231663 0.0174318 0)
(0.0180607 0.0121603 0)
(0.0140409 0.00815601 0)
(0.010974 0.0052482 0)
(0.00857147 0.00322802 0)
(0.0067236 0.00189041 0)
(0.00531326 0.00105171 0)
(0.0042841 0.000562008 0)
(0.00367788 0.000308733 0)
(0.00298248 -1.20341 0)
(0.0226372 -1.1086 0)
(0.0242847 -1.03755 0)
(0.0126632 -0.918611 0)
(-0.0250928 -0.813756 0)
(-0.0601326 -0.704068 0)
(0.0446437 -0.682539 0)
(0.296826 -0.555712 0)
(0.37323 -0.0683168 0)
(0.563778 0.597689 0)
(0.312004 0.657888 0)
(0.0583361 0.45625 0)
(0.480089 0.249997 0)
(0.63955 0.175231 0)
(1.9462 -0.182916 0)
(2.05564 0.168793 0)
(0.515691 0.250265 0)
(0.170131 0.0733801 0)
(0.0929095 0.0491977 0)
(0.0611737 0.0354125 0)
(0.0445254 0.0254385 0)
(0.0337829 0.0181722 0)
(0.0255551 0.0126819 0)
(0.0195489 0.00849188 0)
(0.0150781 0.00547007 0)
(0.0116139 0.00337808 0)
(0.00898577 0.00199307 0)
(0.00702053 0.00111425 0)
(0.00559996 0.000590332 0)
(0.00478274 0.000305223 0)
(-0.0116853 -1.17788 0)
(-0.102763 -1.10148 0)
(-0.1337 -1.03106 0)
(-0.158427 -0.910682 0)
(-0.160529 -0.802533 0)
(-0.0957334 -0.744153 0)
(0.0502146 -0.757252 0)
(0.259191 -0.730567 0)
(0.724114 0.0430976 0)
(0.683293 0.664963 0)
(0.315807 0.771885 0)
(0.0798616 0.318508 0)
(0.58906 0.159649 0)
(0.871214 0.0516495 0)
(1.49506 -0.457102 0)
(1.96853 0.427033 0)
(0.483048 0.367104 0)
(0.190112 0.0936565 0)
(0.103593 0.05563 0)
(0.067434 0.0382281 0)
(0.0484848 0.02691 0)
(0.0365129 0.0191353 0)
(0.0275338 0.0133476 0)
(0.02102 0.00892051 0)
(0.0161915 0.00575226 0)
(0.0124505 0.00356659 0)
(0.00961123 0.0021216 0)
(0.00750002 0.00119327 0)
(0.005957 0.000627308 0)
(0.00508287 0.000304459 0)
(-0.0125269 -1.08184 0)
(-0.12178 -1.04853 0)
(-0.186282 -0.991851 0)
(-0.204454 -0.908979 0)
(-0.177614 -0.828147 0)
(-0.0897538 -0.807357 0)
(0.047774 -0.839787 0)
(0.306218 -0.858892 0)
(0.986683 -0.261782 0)
(0.671645 0.662811 0)
(0.304053 0.900836 0)
(0.649594 0.250644 0)
(0.600534 0.128726 0)
(0.575869 0.0122248 0)
(0.697169 -0.584626 0)
(0.950456 0.616539 0)
(0.374507 0.420976 0)
(0.184406 0.115011 0)
(0.103245 0.0628234 0)
(0.0675468 0.0413731 0)
(0.0484788 0.0285358 0)
(0.0365146 0.0201746 0)
(0.0276865 0.0140501 0)
(0.0212419 0.00937211 0)
(0.0164238 0.00605265 0)
(0.0126641 0.00376733 0)
(0.00978125 0.00225991 0)
(0.00763316 0.00128171 0)
(0.006039 0.000672552 0)
(0.00514573 0.000309704 0)
(-0.0103525 -0.973013 0)
(-0.103697 -0.97559 0)
(-0.16236 -0.960551 0)
(-0.180685 -0.912297 0)
(-0.157209 -0.862548 0)
(-0.09186 -0.864754 0)
(0.0218769 -0.92594 0)
(0.265473 -1.04942 0)
(0.752256 -0.940847 0)
(0.684419 0.7026 0)
(0.477665 0.888628 0)
(0.244624 0.350328 0)
(0.481195 0.145447 0)
(0.408208 0.0109069 0)
(0.0848988 -0.511787 0)
(-0.0838857 0.669372 0)
(0.260972 0.423231 0)
(0.168419 0.134071 0)
(0.0992421 0.0701359 0)
(0.0658872 0.0446765 0)
(0.0474437 0.0302611 0)
(0.0358417 0.0212612 0)
(0.0274076 0.0147871 0)
(0.0211837 0.00986331 0)
(0.0164603 0.00638741 0)
(0.0127446 0.00399335 0)
(0.0098571 0.00241658 0)
(0.00769372 0.00138534 0)
(0.00607107 0.000730828 0)
(0.00516527 0.000324748 0)
(-0.00562944 -0.888467 0)
(-0.0653637 -0.913819 0)
(-0.112737 -0.926626 0)
(-0.143463 -0.907669 0)
(-0.141758 -0.88429 0)
(-0.110141 -0.906065 0)
(-0.0396697 -1.0007 0)
(0.147369 -1.25188 0)
(0.63262 -1.36268 0)
(0.767716 0.735434 0)
(0.581651 0.780242 0)
(0.30854 0.427575 0)
(0.463087 0.159807 0)
(0.320417 0.047482 0)
(-0.137874 -0.308173 0)
(-0.426783 0.550907 0)
(0.167345 0.39804 0)
(0.147491 0.14901 0)
(0.0933857 0.0771698 0)
(0.0634381 0.0480426 0)
(0.0460451 0.0320613 0)
(0.0349543 0.0223805 0)
(0.0269831 0.0155411 0)
(0.0210246 0.0103816 0)
(0.0164194 0.00674848 0)
(0.0127717 0.00424087 0)
(0.00989757 0.00258964 0)
(0.0077271 0.00150247 0)
(0.00609368 0.000801297 0)
(0.00517837 0.000349034 0)
(-0.0016337 -0.84079 0)
(-0.0336938 -0.867472 0)
(-0.0762496 -0.88736 0)
(-0.117625 -0.886563 0)
(-0.139751 -0.885872 0)
(-0.144649 -0.922366 0)
(-0.137103 -1.03593 0)
(-0.120695 -1.35156 0)
(-0.133067 -1.49813 0)
(1.01248 1.35419 0)
(0.864204 0.975581 0)
(0.281664 0.329185 0)
(0.485684 0.19953 0)
(0.253986 0.112535 0)
(-0.14404 -0.111842 0)
(-0.333998 0.409895 0)
(0.097426 0.360577 0)
(0.123998 0.158938 0)
(0.0859949 0.083566 0)
(0.0603009 0.0513754 0)
(0.0443438 0.0339111 0)
(0.0339028 0.0235239 0)
(0.0264426 0.0163076 0)
(0.0207791 0.0109235 0)
(0.0163138 0.00713368 0)
(0.0127518 0.0045101 0)
(0.00990705 0.00277958 0)
(0.0077369 0.0016328 0)
(0.00610796 0.000883155 0)
(0.00518624 0.000381688 0)
(-0.000313985 -0.817765 0)
(-0.0226553 -0.829578 0)
(-0.0636546 -0.841822 0)
(-0.109749 -0.850785 0)
(-0.1502 -0.865012 0)
(-0.188869 -0.90649 0)
(-0.245542 -1.00977 0)
(-0.394208 -1.25518 0)
(-0.991887 -1.4454 0)
(-0.267673 0.577929 0)
(1.37502 1.02181 0)
(1.0253 0.425645 0)
(0.662012 0.276339 0)
(0.183686 0.19441 0)
(-0.121136 0.0249443 0)
(-0.236206 0.322453 0)
(0.0481957 0.319681 0)
(0.0997038 0.163714 0)
(0.0772372 0.0889781 0)
(0.0564661 0.0545558 0)
(0.0423146 0.0357714 0)
(0.0326824 0.0246788 0)
(0.0257824 0.0170826 0)
(0.0204433 0.0114843 0)
(0.0161465 0.00754061 0)
(0.0126849 0.00480097 0)
(0.00988534 0.00298656 0)
(0.00772432 0.00177616 0)
(0.00611099 0.000975371 0)
(0.0051862 0.000421625 0)
(-0.00179193 -0.792372 0)
(-0.0311597 -0.790075 0)
(-0.0705405 -0.793545 0)
(-0.116445 -0.805438 0)
(-0.167937 -0.823365 0)
(-0.231168 -0.858357 0)
(-0.330957 -0.927638 0)
(-0.546317 -1.04445 0)
(-1.13531 -1.04412 0)
(-0.682021 0.534408 0)
(0.0868492 0.193591 0)
(1.5678 0.786435 0)
(0.51601 0.646434 0)
(0.0919493 0.272385 0)
(-0.108502 0.113817 0)
(-0.173088 0.271005 0)
(0.0146573 0.280685 0)
(0.0760704 0.163758 0)
(0.0673661 0.0930945 0)
(0.0519467 0.0574436 0)
(0.0399351 0.0375885 0)
(0.0312846 0.0258264 0)
(0.0249955 0.01786 0)
(0.0200135 0.0120583 0)
(0.0159193 0.00796623 0)
(0.0125719 0.00511269 0)
(0.00983243 0.0032101 0)
(0.00769093 0.00193234 0)
(0.00610048 0.0010767 0)
(0.00517622 0.000467589 0)
(-0.00377224 -0.745026 0)
(-0.0422229 -0.74317 0)
(-0.0809618 -0.744859 0)
(-0.127099 -0.752867 0)
(-0.184724 -0.765591 0)
(-0.260525 -0.786105 0)
(-0.374642 -0.815708 0)
(-0.573488 -0.833238 0)
(-0.912732 -0.699682 0)
(-0.918306 -0.181129 0)
(-0.719601 -0.169048 0)
(-0.360799 0.598593 0)
(-0.168132 0.773825 0)
(-0.0160467 0.31284 0)
(-0.108701 0.167095 0)
(-0.134967 0.23876 0)
(-0.00806489 0.246034 0)
(0.0541283 0.159852 0)
(0.0567059 0.0956833 0)
(0.0467857 0.0598922 0)
(0.0371923 0.0392962 0)
(0.0296969 0.0269419 0)
(0.0240743 0.0186303 0)
(0.0194874 0.0126387 0)
(0.0156316 0.00840646 0)
(0.0124138 0.00544334 0)
(0.00974864 0.00344907 0)
(0.00763778 0.00210076 0)
(0.00607504 0.0011858 0)
(0.00515527 0.000518164 0)
(-0.00369409 -0.686191 0)
(-0.0413126 -0.688412 0)
(-0.0839668 -0.690255 0)
(-0.133449 -0.692679 0)
(-0.193756 -0.696971 0)
(-0.271576 -0.701601 0)
(-0.379308 -0.700113 0)
(-0.53447 -0.667518 0)
(-0.725109 -0.533035 0)
(-0.790728 -0.282091 0)
(-0.822541 -0.144011 0)
(-0.967672 0.335853 0)
(-0.328187 0.543931 0)
(-0.110404 0.307115 0)
(-0.118288 0.192335 0)
(-0.114276 0.215732 0)
(-0.0239027 0.216243 0)
(0.0344809 0.152917 0)
(0.04563 0.0966083 0)
(0.0410622 0.0617541 0)
(0.0340881 0.0408153 0)
(0.0279067 0.027992 0)
(0.0230126 0.0193799 0)
(0.0188636 0.0132176 0)
(0.0152787 0.00885634 0)
(0.0122097 0.00579002 0)
(0.00963247 0.00370234 0)
(0.00756392 0.0022809 0)
(0.00603296 0.00130195 0)
(0.00512184 0.00057251 0)
(-0.00400418 -0.627829 0)
(-0.0416916 -0.627591 0)
(-0.08436 -0.627028 0)
(-0.13372 -0.625847 0)
(-0.192629 -0.622833 0)
(-0.265381 -0.615131 0)
(-0.357808 -0.59521 0)
(-0.473185 -0.545314 0)
(-0.594148 -0.435623 0)
(-0.666074 -0.269432 0)
(-0.706082 -0.0964408 0)
(-0.67933 0.201002 0)
(-0.369982 0.361809 0)
(-0.175018 0.270857 0)
(-0.131719 0.195665 0)
(-0.105091 0.196074 0)
(-0.0356205 0.190658 0)
(0.0173596 0.143828 0)
(0.0345236 0.095839 0)
(0.034893 0.0628954 0)
(0.0306429 0.0420588 0)
(0.0259071 0.0289374 0)
(0.0218074 0.0200916 0)
(0.0181409 0.0137869 0)
(0.0148549 0.00931138 0)
(0.0119581 0.00614978 0)
(0.00948247 0.00396919 0)
(0.00746828 0.00247243 0)
(0.00597373 0.00142509 0)
(0.00507471 0.000630313 0)
(-0.00410652 -0.563614 0)
(-0.0403012 -0.563094 0)
(-0.0812602 -0.560926 0)
(-0.128037 -0.556389 0)
(-0.182394 -0.548103 0)
(-0.246576 -0.532976 0)
(-0.32251 -0.504852 0)
(-0.408737 -0.452973 0)
(-0.493543 -0.364189 0)
(-0.553999 -0.237801 0)
(-0.579991 -0.0831727 0)
(-0.531947 0.112079 0)
(-0.359204 0.235757 0)
(-0.2094 0.221719 0)
(-0.143861 0.183214 0)
(-0.102669 0.17664 0)
(-0.0448678 0.16818 0)
(0.002734 0.133291 0)
(0.0237408 0.093441 0)
(0.0284253 0.0632078 0)
(0.0268945 0.0429406 0)
(0.0236984 0.0297352 0)
(0.0204568 0.020746 0)
(0.0173155 0.0143378 0)
(0.0143551 0.00976683 0)
(0.0116562 0.00651909 0)
(0.00929707 0.00424801 0)
(0.00734968 0.00267409 0)
(0.00589687 0.0015545 0)
(0.00501301 0.000690668 0)
(-0.00402995 -0.498374 0)
(-0.0375406 -0.497362 0)
(-0.0751307 -0.493989 0)
(-0.117531 -0.487451 0)
(-0.16565 -0.476341 0)
(-0.220332 -0.458027 0)
(-0.281674 -0.428106 0)
(-0.347261 -0.380208 0)
(-0.409612 -0.307578 0)
(-0.455848 -0.208011 0)
(-0.471759 -0.0845893 0)
(-0.433351 0.0523445 0)
(-0.329257 0.149832 0)
(-0.220329 0.171615 0)
(-0.151437 0.160959 0)
(-0.103327 0.156163 0)
(-0.0524173 0.147754 0)
(-0.00955641 0.121841 0)
(0.0135969 0.0895543 0)
(0.0218371 0.0626171 0)
(0.022903 0.0433803 0)
(0.0212914 0.0303397 0)
(0.0189611 0.0213195 0)
(0.0163836 0.014858 0)
(0.0137766 0.0102157 0)
(0.0113011 0.00689261 0)
(0.00907491 0.00453543 0)
(0.0072072 0.00288352 0)
(0.00580181 0.00168881 0)
(0.00493685 0.000752364 0)
(-0.00378524 -0.434295 0)
(-0.033626 -0.432969 0)
(-0.0668966 -0.428952 0)
(-0.104006 -0.421584 0)
(-0.145305 -0.409646 0)
(-0.19088 -0.391082 0)
(-0.240111 -0.36286 0)
(-0.290705 -0.321094 0)
(-0.337575 -0.261917 0)
(-0.37225 -0.183635 0)
(-0.38352 -0.0887581 0)
(-0.358022 0.011621 0)
(-0.29311 0.0902618 0)
(-0.215636 0.12641 0)
(-0.153237 0.13402 0)
(-0.104406 0.134596 0)
(-0.0584531 0.128578 0)
(-0.0196807 0.109816 0)
(0.00434637 0.0843661 0)
(0.0153197 0.0610925 0)
(0.0187475 0.0433119 0)
(0.0187084 0.0307039 0)
(0.0173266 0.0217841 0)
(0.0153464 0.0153316 0)
(0.0131213 0.0106492 0)
(0.0108919 0.00726455 0)
(0.00881592 0.00482809 0)
(0.00704036 0.00309886 0)
(0.00568856 0.00182745 0)
(0.00484702 0.000815297 0)
(-0.00342009 -0.373502 0)
(-0.0291355 -0.372043 0)
(-0.0576879 -0.367849 0)
(-0.0892493 -0.360517 0)
(-0.12385 -0.349106 0)
(-0.161233 -0.332041 0)
(-0.200587 -0.307212 0)
(-0.239978 -0.272169 0)
(-0.275796 -0.224612 0)
(-0.302276 -0.163625 0)
(-0.311812 -0.0913676 0)
(-0.296761 -0.0157354 0)
(-0.25596 0.0483301 0)
(-0.201575 0.0881797 0)
(-0.149533 0.106213 0)
(-0.104233 0.112586 0)
(-0.0628515 0.110218 0)
(-0.0277619 0.0974586 0)
(-0.0038202 0.0780931 0)
(0.00906829 0.0586501 0)
(0.0145272 0.0426864 0)
(0.0159877 0.0307807 0)
(0.0155679 0.0221082 0)
(0.0142101 0.0157392 0)
(0.0123924 0.0110563 0)
(0.0104282 0.00762876 0)
(0.00851934 0.00512324 0)
(0.00684731 0.00331889 0)
(0.00555569 0.00197023 0)
(0.00474213 0.000880311 0)
(-0.00301306 -0.317502 0)
(-0.0246228 -0.316024 0)
(-0.048517 -0.311993 0)
(-0.074723 -0.305286 0)
(-0.103129 -0.295192 0)
(-0.133378 -0.280486 0)
(-0.164693 -0.259673 0)
(-0.195545 -0.231162 0)
(-0.223347 -0.19356 0)
(-0.244187 -0.146439 0)
(-0.253116 -0.0914099 0)
(-0.245478 -0.0334995 0)
(-0.220143 0.0187102 0)
(-0.182494 0.0571205 0)
(-0.141372 0.0800145 0)
(-0.10198 0.0910402 0)
(-0.0654133 0.0925828 0)
(-0.0338844 0.0849827 0)
(-0.0107643 0.0709851 0)
(0.0032742 0.0553488 0)
(0.0103607 0.041476 0)
(0.0131854 0.030528 0)
(0.013709 0.022261 0)
(0.0129849 0.0160615 0)
(0.0115926 0.0114258 0)
(0.00990845 0.00797944 0)
(0.00818145 0.00541869 0)
(0.00662326 0.00354264 0)
(0.00539881 0.00211687 0)
(0.00461747 0.000948341 0)
(-0.00259888 -0.266851 0)
(-0.0205331 -0.26556 0)
(-0.0401711 -0.262087 0)
(-0.0614655 -0.256406 0)
(-0.0843294 -0.247991 0)
(-0.108461 -0.23591 0)
(-0.133225 -0.219091 0)
(-0.157452 -0.196473 0)
(-0.179308 -0.167186 0)
(-0.196145 -0.131023 0)
(-0.204724 -0.0890531 0)
(-0.202011 -0.0443504 0)
(-0.186801 -0.00200206 0)
(-0.161239 0.0326506 0)
(-0.130042 0.0568042 0)
(-0.0974657 0.0708219 0)
(-0.0660183 0.0758228 0)
(-0.0381029 0.0726079 0)
(-0.0163733 0.0632704 0)
(-0.00189006 0.05129 0)
(0.0063766 0.0396824 0)
(0.0103706 0.0299155 0)
(0.0117814 0.022215 0)
(0.011683 0.0162797 0)
(0.0107235 0.011746 0)
(0.00933005 0.00831052 0)
(0.00779729 0.00571153 0)
(0.00636261 0.00376883 0)
(0.00521289 0.00226684 0)
(0.00446841 0.00101927 0)
(-0.00221139 -0.221521 0)
(-0.0168133 -0.220721 0)
(-0.0326602 -0.218335 0)
(-0.0496621 -0.214022 0)
(-0.0677773 -0.207365 0)
(-0.0868034 -0.197773 0)
(-0.106269 -0.184536 0)
(-0.12532 -0.166944 0)
(-0.142661 -0.144421 0)
(-0.156491 -0.11683 0)
(-0.164646 -0.0848166 0)
(-0.165037 -0.0502202 0)
(-0.156493 -0.0161193 0)
(-0.139613 0.0139163 0)
(-0.116768 0.0371699 0)
(-0.0909282 0.0525878 0)
(-0.0646947 0.0602059 0)
(-0.0404844 0.0605741 0)
(-0.020593 0.0552043 0)
(-0.00628714 0.0466238 0)
(0.00270448 0.0373385 0)
(0.00762298 0.0289293 0)
(0.009825 0.0219478 0)
(0.0103223 0.0163759 0)
(0.00979079 0.0120048 0)
(0.00869393 0.00861504 0)
(0.00736502 0.00599743 0)
(0.00606327 0.00399567 0)
(0.00499545 0.00241953 0)
(0.00429319 0.00109239 0)
(-0.0017858 -0.182424 0)
(-0.0131612 -0.182049 0)
(-0.0255923 -0.180655 0)
(-0.0389994 -0.177663 0)
(-0.0532841 -0.172675 0)
(-0.0682493 -0.165319 0)
(-0.0835397 -0.155147 0)
(-0.0985515 -0.141694 0)
(-0.112395 -0.124565 0)
(-0.123841 -0.103637 0)
(-0.131417 -0.0792654 0)
(-0.133634 -0.0525284 0)
(-0.129442 -0.0253054 0)
(-0.118738 1.90823e-05 0)
(-0.102578 0.0211974 0)
(-0.0828263 0.0367412 0)
(-0.0616194 0.0460202 0)
(-0.0411366 0.0491379 0)
(-0.0234112 0.0470435 0)
(-0.00979551 0.0415059 0)
(-0.000529778 0.0345077 0)
(0.00503078 0.0275757 0)
(0.00788972 0.021446 0)
(0.00892729 0.0163351 0)
(0.00880476 0.012191 0)
(0.00800349 0.00888572 0)
(0.0068839 0.006271 0)
(0.00572321 0.00422014 0)
(0.00474405 0.00257332 0)
(0.00408959 0.00116645 0)
(-0.00140792 -0.149985 0)
(-0.0100584 -0.149785 0)
(-0.0195811 -0.148916 0)
(-0.0299395 -0.146847 0)
(-0.0410407 -0.143225 0)
(-0.0527132 -0.137763 0)
(-0.0646842 -0.13014 0)
(-0.0765185 -0.120031 0)
(-0.0875966 -0.107154 0)
(-0.0970727 -0.0913929 0)
(-0.103928 -0.0729166 0)
(-0.107088 -0.052341 0)
(-0.105666 -0.0308109 0)
(-0.0992791 -0.00990169 0)
(-0.0882704 0.0086665 0)
(-0.0736924 0.023441 0)
(-0.0570834 0.0334942 0)
(-0.0402232 0.038544 0)
(-0.0248654 0.03904 0)
(-0.012346 0.0361293 0)
(-0.00322874 0.0313018 0)
(0.00268425 0.0258844 0)
(0.00603268 0.0207084 0)
(0.00752888 0.0161481 0)
(0.00777985 0.0122946 0)
(0.00726365 0.0091149 0)
(0.006354 0.00652684 0)
(0.00534012 0.00443901 0)
(0.00445575 0.00272625 0)
(0.00385447 0.00124095 0)
(-0.00110144 -0.123414 0)
(-0.00762526 -0.123285 0)
(-0.0148246 -0.122691 0)
(-0.0226928 -0.121221 0)
(-0.0311766 -0.118594 0)
(-0.0401556 -0.114589 0)
(-0.0494307 -0.108965 0)
(-0.0586899 -0.10148 0)
(-0.0674992 -0.0919119 0)
(-0.0752724 -0.0801408 0)
(-0.0812979 -0.0662197 0)
(-0.0847947 -0.0504819 0)
(-0.0850473 -0.0336138 0)
(-0.0815965 -0.0166394 0)
(-0.0744219 -0.000808961 0)
(-0.0640381 0.0126493 0)
(-0.0514396 0.0227584 0)
(-0.0379617 0.0289984 0)
(-0.0250412 0.0314282 0)
(-0.013911 0.0306928 0)
(-0.00529984 0.0278282 0)
(0.000670189 0.0239078 0)
(0.00431407 0.0197492 0)
(0.00616298 0.0158134 0)
(0.00673433 0.0123096 0)
(0.00648132 0.00929604 0)
(0.00577588 0.00675886 0)
(0.00491172 0.00464833 0)
(0.00412724 0.00287615 0)
(0.00358421 0.0013149 0)
(-0.000846719 -0.10181 0)
(-0.00573633 -0.101715 0)
(-0.0111415 -0.101279 0)
(-0.0170638 -0.100202 0)
(-0.0234689 -0.0982836 0)
(-0.0302764 -0.09536 0)
(-0.0373536 -0.0912515 0)
(-0.0444898 -0.085766 0)
(-0.051391 -0.0787204 0)
(-0.0576549 -0.0699924 0)
(-0.0627844 -0.0595655 0)
(-0.066213 -0.0476007 0)
(-0.06738 -0.0344953 0)
(-0.0658453 -0.0209 0)
(-0.0614254 -0.00768561 0)
(-0.0543003 0.00418842 0)
(-0.0450528 0.0138396 0)
(-0.0346054 0.0206503 0)
(-0.0240679 0.0244156 0)
(-0.0145056 0.025396 0)
(-0.00668859 0.0242341 0)
(-0.000943879 0.0217298 0)
(0.00279423 0.0186005 0)
(0.00486825 0.0153398 0)
(0.00569007 0.0122352 0)
(0.00566575 0.00942492 0)
(0.00515143 0.00696222 0)
(0.00443611 0.00484426 0)
(0.00375553 0.00302035 0)
(0.00327482 0.00138666 0)
(-0.000649113 -0.084303 0)
(-0.00429882 -0.0842368 0)
(-0.0083227 -0.0839282 0)
(-0.0127207 -0.0831597 0)
(-0.0174769 -0.081783 0)
(-0.0225471 -0.0796714 0)
(-0.027851 -0.0766861 0)
(-0.0332533 -0.0726805 0)
(-0.0385599 -0.0675082 0)
(-0.043498 -0.0610559 0)
(-0.0477227 -0.0532713 0)
(-0.0508277 -0.0442124 0)
(-0.0523865 -0.0340937 0)
(-0.0520217 -0.0233112 0)
(-0.0494969 -0.0124483 0)
(-0.0448077 -0.00221328 0)
(-0.0382525 0.00666609 0)
(-0.030417 0.0135764 0)
(-0.0221068 0.0181659 0)
(-0.0141844 0.0204239 0)
(-0.00737237 0.0206725 0)
(-0.00210181 0.0194463 0)
(0.00152807 0.0173141 0)
(0.00368355 0.0147487 0)
(0.00466926 0.0120768 0)
(0.00482762 0.00950008 0)
(0.00448359 0.00713328 0)
(0.00391187 0.00502276 0)
(0.00333745 0.00315581 0)
(0.0029225 0.00145483 0)
(-0.000479434 -0.0703296 0)
(-0.00311128 -0.0703041 0)
(-0.00602196 -0.0701223 0)
(-0.00921758 -0.0695968 0)
(-0.0126891 -0.0686127 0)
(-0.0164073 -0.0670824 0)
(-0.0203201 -0.0649067 0)
(-0.024339 -0.0619759 0)
(-0.0283365 -0.0581736 0)
(-0.0321305 -0.0533984 0)
(-0.0354878 -0.0475827 0)
(-0.0381254 -0.0407251 0)
(-0.0397316 -0.0329259 0)
(-0.0400063 -0.0244127 0)
(-0.0387192 -0.0155613 0)
(-0.0357817 -0.00686895 0)
(-0.0313065 0.00109524 0)
(-0.0256441 0.00778796 0)
(-0.019335 0.0127977 0)
(-0.0130348 0.0159422 0)
(-0.00736252 0.0173015 0)
(-0.00276479 0.0171725 0)
(0.000560729 0.0159619 0)
(0.00264444 0.0140765 0)
(0.003694 0.0118489 0)
(0.00397745 0.00952438 0)
(0.00377573 0.00726991 0)
(0.00333817 0.00518014 0)
(0.00287003 0.00327931 0)
(0.00252369 0.001518 0)
(-0.000338327 -0.0596353 0)
(-0.00217516 -0.0596023 0)
(-0.00421536 -0.059442 0)
(-0.00646717 -0.0590368 0)
(-0.00892436 -0.0583078 0)
(-0.011567 -0.0571852 0)
(-0.0143624 -0.05559 0)
(-0.0172538 -0.0534342 0)
(-0.0201592 -0.0506212 0)
(-0.022961 -0.0470606 0)
(-0.0255071 -0.042681 0)
(-0.0276071 -0.0374511 0)
(-0.0290419 -0.031404 0)
(-0.0295876 -0.0246597 0)
(-0.0290505 -0.0174481 0)
(-0.0273167 -0.0101066 0)
(-0.0244023 -0.00305891 0)
(-0.0204897 0.00323983 0)
(-0.0159222 0.00838166 0)
(-0.011163 0.0120892 0)
(-0.00669808 0.0142732 0)
(-0.0029284 0.0150382 0)
(-8.46922e-05 0.01463 0)
(0.00177742 0.0133745 0)
(0.00278207 0.0115763 0)
(0.00312433 0.00950651 0)
(0.00303057 0.0073723 0)
(0.00271371 0.00531291 0)
(0.00235055 0.0033877 0)
(0.00207497 0.00157436 0)
(-0.000232498 -0.051567 0)
(-0.00150227 -0.0515558 0)
(-0.00289069 -0.0514596 0)
(-0.00439586 -0.0511714 0)
(-0.00602116 -0.0506283 0)
(-0.00776578 -0.049784 0)
(-0.0096196 -0.0485814 0)
(-0.0115552 -0.0469496 0)
(-0.0135262 -0.0448106 0)
(-0.0154594 -0.0420886 0)
(-0.0172562 -0.0387144 0)
(-0.0187922 -0.0346413 0)
(-0.0199212 -0.0298627 0)
(-0.0204889 -0.0244309 0)
(-0.0203513 -0.0184801 0)
(-0.019406 -0.0122325 0)
(-0.0176267 -0.00599732 0)
(-0.0150947 -0.000143614 0)
(-0.0120138 0.0049564 0)
(-0.0086809 0.00898192 0)
(-0.00544303 0.0117367 0)
(-0.00261405 0.0131815 0)
(-0.000406083 0.0134306 0)
(0.00109399 0.0127098 0)
(0.00194375 0.0112946 0)
(0.00227336 0.00946037 0)
(0.00224961 0.00744318 0)
(0.00203746 0.00541821 0)
(0.00177649 0.00347721 0)
(0.00157359 0.00162154 0)
(-0.000130615 -0.0459852 0)
(-0.000825536 -0.0460031 0)
(-0.00160423 -0.0459772 0)
(-0.00247444 -0.0457882 0)
(-0.00343623 -0.0453749 0)
(-0.00448254 -0.044706 0)
(-0.00559948 -0.0437432 0)
(-0.0067652 -0.0424351 0)
(-0.00795227 -0.0407204 0)
(-0.00912253 -0.0385352 0)
(-0.0102238 -0.0358144 0)
(-0.0111867 -0.0325037 0)
(-0.0119274 -0.0285737 0)
(-0.0123534 -0.0240367 0)
(-0.012375 -0.0189675 0)
(-0.0119211 -0.0135136 0)
(-0.0109605 -0.00790394 0)
(-0.0095225 -0.00243857 0)
(-0.00770903 0.00254684 0)
(-0.00569142 0.00672608 0)
(-0.00367918 0.00983782 0)
(-0.00187343 0.0117493 0)
(-0.000427654 0.0124748 0)
(0.000583167 0.0121623 0)
(0.00117489 0.011049 0)
(0.00142233 0.00940554 0)
(0.00143047 0.00748667 0)
(0.0013072 0.00549371 0)
(0.00114561 0.00354382 0)
(0.00101727 0.00165708 0)
(-4.95208e-05 -0.0431414 0)
(-0.000304073 -0.0431241 0)
(-0.000593504 -0.0430357 0)
(-0.000921619 -0.0428146 0)
(-0.00128647 -0.0424262 0)
(-0.00168363 -0.0418374 0)
(-0.0021079 -0.0410055 0)
(-0.00255197 -0.0398814 0)
(-0.0030057 -0.0384071 0)
(-0.00345402 -0.0365186 0)
(-0.00387732 -0.034151 0)
(-0.0042508 -0.031249 0)
(-0.00454434 -0.0277765 0)
(-0.00472372 -0.0237279 0)
(-0.00475392 -0.0191481 0)
(-0.00460596 -0.0141453 0)
(-0.00426509 -0.00890394 0)
(-0.00373862 -0.00368499 0)
(-0.00304916 0.00119833 0)
(-0.00228027 0.00544548 0)
(-0.00150491 0.00873452 0)
(-0.000791757 0.0108978 0)
(-0.000209867 0.0118945 0)
(0.000203939 0.011822 0)
(0.000450528 0.010891 0)
(0.000557355 0.00936503 0)
(0.000565704 0.00750813 0)
(0.000519294 0.00553641 0)
(0.000456048 0.0035825 0)
(0.00040519 0.00167801 0)
(-0.000126809 4.42783e-06 0)
(-0.000390164 7.41517e-06 0)
(-0.000819425 1.38162e-05 0)
(-0.00153525 2.51686e-05 0)
(-0.00268083 4.36002e-05 0)
(-0.00442088 7.16302e-05 0)
(-0.0069303 0.00011179 0)
(-0.0103729 0.00016604 0)
(-0.0148716 0.000234796 0)
(-0.0204673 0.000315578 0)
(-0.0270753 0.000401535 0)
(-0.0344438 0.000480408 0)
(-0.0421397 0.000535068 0)
(-0.0495784 0.000546335 0)
(-0.0561014 0.000497826 0)
(-0.0610973 0.000381161 0)
(-0.0641181 0.000199033 0)
(-0.0649566 -3.52187e-05 0)
(-0.063659 -0.000301414 0)
(-0.0604789 -0.000577279 0)
(-0.0557994 -0.000843073 0)
(-0.0500543 -0.00108391 0)
(-0.0436576 -0.00129099 0)
(-0.0369692 -0.00146073 0)
(-0.0302698 -0.00159356 0)
(-0.0237706 -0.00169248 0)
(-0.0176069 -0.00176189 0)
(-0.0118633 -0.00180676 0)
(-0.00657902 -0.00183201 0)
(-0.00176751 -0.001842 0)
(-0.000190577 1.71251e-05 0)
(-0.000495428 3.01785e-05 0)
(-0.00100165 5.62319e-05 0)
(-0.00183923 0.000101223 0)
(-0.00316227 0.00017301 0)
(-0.00514519 0.000280535 0)
(-0.00796854 0.000432459 0)
(-0.0117948 0.000634778 0)
(-0.0167352 0.000887174 0)
(-0.0228055 0.00117804 0)
(-0.029881 0.00147937 0)
(-0.037657 0.00174388 0)
(-0.0456434 0.00190831 0)
(-0.0532057 0.00190512 0)
(-0.0596584 0.00168068 0)
(-0.064394 0.00121308 0)
(-0.0669984 0.000521111 0)
(-0.0673193 -0.000340588 0)
(-0.0654625 -0.00129609 0)
(-0.0617338 -0.00226689 0)
(-0.0565529 -0.00318641 0)
(-0.0503743 -0.00400739 0)
(-0.0436164 -0.00470418 0)
(-0.0366375 -0.00526823 0)
(-0.0297092 -0.00570451 0)
(-0.0230312 -0.00602543 0)
(-0.0167294 -0.00624756 0)
(-0.0108786 -0.00638828 0)
(-0.0055097 -0.0064642 0)
(-0.000632602 -0.00649026 0)
(-0.000189785 3.34651e-05 0)
(-0.000493354 5.89703e-05 0)
(-0.000997445 0.000109882 0)
(-0.0018315 0.000197805 0)
(-0.00314901 0.000338108 0)
(-0.00512378 0.000548295 0)
(-0.00793592 0.000845371 0)
(-0.0117481 0.00124121 0)
(-0.0166728 0.00173551 0)
(-0.0227294 0.00230606 0)
(-0.0297995 0.00289877 0)
(-0.0375872 0.0034217 0)
(-0.0456121 0.00375117 0)
(-0.0532468 0.00375392 0)
(-0.0598051 0.00332285 0)
(-0.06467 0.00241242 0)
(-0.0674101 0.00105725 0)
(-0.0678536 -0.000636242 0)
(-0.0660897 -0.00251859 0)
(-0.0624146 -0.00443422 0)
(-0.0572459 -0.00625079 0)
(-0.0510423 -0.00787376 0)
(-0.0442297 -0.00925204 0)
(-0.0371753 -0.010368 0)
(-0.030159 -0.0112314 0)
(-0.0233874 -0.0118665 0)
(-0.0169919 -0.0123062 0)
(-0.0110508 -0.0125847 0)
(-0.00559726 -0.0127353 0)
(-0.000642604 -0.0127863 0)
(-0.00018848 4.97151e-05 0)
(-0.000489934 8.76014e-05 0)
(-0.000990504 0.000163231 0)
(-0.00181874 0.000293846 0)
(-0.00312714 0.000502289 0)
(-0.00508846 0.000814605 0)
(-0.00788208 0.00125615 0)
(-0.0116709 0.00184481 0)
(-0.0165696 0.00258063 0)
(-0.0226032 0.00343153 0)
(-0.0296634 0.0043184 0)
(-0.0374694 0.00510594 0)
(-0.0455568 0.00561075 0)
(-0.0533097 0.0056333 0)
(-0.060042 0.00501045 0)
(-0.0651212 0.00366904 0)
(-0.0680878 0.00165552 0)
(-0.0687368 -0.000874454 0)
(-0.0671297 -0.00369794 0)
(-0.0635462 -0.00658022 0)
(-0.0583998 -0.00931997 0)
(-0.052156 -0.0117722 0)
(-0.0452532 -0.0138575 0)
(-0.0380734 -0.0155477 0)
(-0.0309104 -0.0168564 0)
(-0.0239829 -0.0178196 0)
(-0.0174308 -0.0184866 0)
(-0.0113388 -0.0189094 0)
(-0.00574387 -0.0191375 0)
(-0.000659363 -0.019215 0)
(-0.000186667 6.58308e-05 0)
(-0.000485185 0.000115993 0)
(-0.000980863 0.000216133 0)
(-0.00180103 0.000389088 0)
(-0.00309676 0.000665118 0)
(-0.00503938 0.00107877 0)
(-0.00780724 0.00166377 0)
(-0.0115635 0.0024442 0)
(-0.0164257 0.00342098 0)
(-0.0224267 0.00455318 0)
(-0.0294724 0.00573829 0)
(-0.0373021 0.00679951 0)
(-0.0454744 0.007495 0)
(-0.0533904 0.00755813 0)
(-0.0603649 0.00676605 0)
(-0.0657451 0.00501196 0)
(-0.069032 0.00234796 0)
(-0.0699744 -0.00102506 0)
(-0.0685935 -0.00481081 0)
(-0.065144 -0.00869263 0)
(-0.0600335 -0.0123952 0)
(-0.0537358 -0.0157182 0)
(-0.0467072 -0.0185497 0)
(-0.0393507 -0.0208484 0)
(-0.0319801 -0.0226301 0)
(-0.024831 -0.0239425 0)
(-0.0180561 -0.0248521 0)
(-0.0117494 -0.0254284 0)
(-0.0059529 -0.0257396 0)
(-0.00068355 -0.0258452 0)
(-0.000184351 8.17677e-05 0)
(-0.000479117 0.000144066 0)
(-0.000968549 0.000268442 0)
(-0.0017784 0.00048327 0)
(-0.00305795 0.00082615 0)
(-0.00497666 0.00134008 0)
(-0.00771156 0.00206719 0)
(-0.011426 0.00303799 0)
(-0.0162413 0.00425493 0)
(-0.0221997 0.00566956 0)
(-0.0292249 0.00715814 0)
(-0.0370823 0.00850493 0)
(-0.04536 0.00941136 0)
(-0.053482 0.00954291 0)
(-0.0607665 0.00861229 0)
(-0.0665361 0.00647109 0)
(-0.0702423 0.0031684 0)
(-0.0715729 -0.00105528 0)
(-0.0704949 -0.0058311 0)
(-0.067229 -0.0107566 0)
(-0.0621727 -0.015476 0)
(-0.0558102 -0.0197264 0)
(-0.0486203 -0.0233579 0)
(-0.0410339 -0.0263121 0)
(-0.0333913 -0.0286054 0)
(-0.0259507 -0.0302965 0)
(-0.0188823 -0.0314691 0)
(-0.0122917 -0.0322129 0)
(-0.00622889 -0.0326142 0)
(-0.000715389 -0.0327504 0)
(-0.00018154 9.74821e-05 0)
(-0.00047175 0.000171743 0)
(-0.000953595 0.000320015 0)
(-0.00175092 0.000576133 0)
(-0.00301081 0.000984949 0)
(-0.00490047 0.00159785 0)
(-0.00759523 0.00246537 0)
(-0.0112587 0.00362475 0)
(-0.0160163 0.00508077 0)
(-0.0219216 0.00677911 0)
(-0.0289194 0.00857741 0)
(-0.0368063 0.0102242 0)
(-0.0452071 0.0113667 0)
(-0.0535758 0.0116017 0)
(-0.0612372 0.010572 0)
(-0.0674871 0.00807744 0)
(-0.0717173 0.0041531 0)
(-0.0735397 -0.000928775 0)
(-0.0728519 -0.00672887 0)
(-0.0698284 -0.0127539 0)
(-0.0648517 -0.0185593 0)
(-0.0584169 -0.0238106 0)
(-0.0510308 -0.0283123 0)
(-0.0431589 -0.0319837 0)
(-0.0351754 -0.0348389 0)
(-0.0273678 -0.0369473 0)
(-0.0199285 -0.0384105 0)
(-0.0129789 -0.0393392 0)
(-0.00657904 -0.0398406 0)
(-0.000755764 -0.0400107 0)
(-0.000178241 0.000112932 0)
(-0.000463103 0.00019895 0)
(-0.000936041 0.000370715 0)
(-0.00171867 0.00066743 0)
(-0.00295546 0.00114109 0)
(-0.00481098 0.00185138 0)
(-0.00745852 0.0028573 0)
(-0.0110617 0.0042031 0)
(-0.0157508 0.00589682 0)
(-0.0215918 0.00788016 0)
(-0.0285537 0.00999529 0)
(-0.0364696 0.011959 0)
(-0.0450081 0.0133672 0)
(-0.0536605 0.0137481 0)
(-0.0617645 0.0126681 0)
(-0.068588 0.0098636 0)
(-0.0734543 0.00534137 0)
(-0.0758837 -0.000605457 0)
(-0.0756864 -0.0074692 0)
(-0.0729767 -0.0146616 0)
(-0.0681141 -0.0216389 0)
(-0.0616046 -0.0279833 0)
(-0.0539878 -0.0334438 0)
(-0.0457718 -0.0379106 0)
(-0.0373729 -0.0413922 0)
(-0.0291155 -0.0439672 0)
(-0.0212199 -0.0457563 0)
(-0.0138277 -0.0468925 0)
(-0.00701136 -0.0475062 0)
(-0.000805591 -0.0477144 0)
(-0.000174463 0.000128075 0)
(-0.000453199 0.000225614 0)
(-0.000915936 0.000420401 0)
(-0.00168172 0.000756907 0)
(-0.00289205 0.00129415 0)
(-0.00470841 0.00210001 0)
(-0.00730171 0.00324196 0)
(-0.0108355 0.00477161 0)
(-0.0154448 0.00670127 0)
(-0.0212097 0.00897082 0)
(-0.0281256 0.0114105 0)
(-0.0360671 0.01371 0)
(-0.0447536 0.0154182 0)
(-0.053723 0.0159947 0)
(-0.0623331 0.0149236 0)
(-0.0698259 0.0118637 0)
(-0.0754488 0.00677622 0)
(-0.0786142 -3.88775e-05 0)
(-0.0790241 -0.00801072 0)
(-0.076715 -0.0164508 0)
(-0.0720132 -0.0247041 0)
(-0.0654334 -0.0322548 0)
(-0.057553 -0.0387841 0)
(-0.0489309 -0.044144 0)
(-0.0400354 -0.0483326 0)
(-0.0312359 -0.0514363 0)
(-0.0227882 -0.0535954 0)
(-0.014859 -0.0549678 0)
(-0.00753699 -0.0557095 0)
(-0.000866286 -0.0559611 0)
(-0.000170218 0.000142873 0)
(-0.000442066 0.00025166 0)
(-0.000893334 0.000468936 0)
(-0.00164018 0.00084432 0)
(-0.00282075 0.0014437 0)
(-0.00459303 0.00234305 0)
(-0.00712515 0.00361832 0)
(-0.0105803 0.00532884 0)
(-0.0150985 0.00749226 0)
(-0.0207746 0.010049 0)
(-0.0276327 0.0128213 0)
(-0.0355929 0.0154772 0)
(-0.0444331 0.0175236 0)
(-0.0537476 0.0183532 0)
(-0.0629241 0.0173612 0)
(-0.0711841 0.0141135 0)
(-0.0776937 0.00850496 0)
(-0.0817403 0.000824377 0)
(-0.0828946 -0.00830385 0)
(-0.0810929 -0.0180848 0)
(-0.0766138 -0.0277382 0)
(-0.0699772 -0.0366328 0)
(-0.0618024 -0.0443656 0)
(-0.0527086 -0.0507391 0)
(-0.0432266 -0.0557347 0)
(-0.0337817 -0.0594443 0)
(-0.0246733 -0.0620289 0)
(-0.0160995 -0.0636732 0)
(-0.00816936 -0.0645623 0)
(-0.000939184 -0.064864 0)
(-0.000165517 0.000157283 0)
(-0.000429735 0.000277018 0)
(-0.000868297 0.000516189 0)
(-0.00159416 0.000929431 0)
(-0.00274175 0.00158935 0)
(-0.00446513 0.00257987 0)
(-0.00692923 0.00398539 0)
(-0.0102966 0.00587336 0)
(-0.0147122 0.00826789 0)
(-0.0202858 0.0111124 0)
(-0.0270722 0.0142256 0)
(-0.0350408 0.0172598 0)
(-0.0440347 0.0196865 0)
(-0.0537159 0.0208341 0)
(-0.0635151 0.0200034 0)
(-0.0726416 0.0166509 0)
(-0.0801779 0.01058 0)
(-0.0852703 0.00204415 0)
(-0.0873306 -0.00828933 0)
(-0.086168 -0.0195172 0)
(-0.081994 -0.0307173 0)
(-0.0753262 -0.041121 0)
(-0.0668297 -0.0502213 0)
(-0.0571945 -0.0577564 0)
(-0.0470263 -0.0636824 0)
(-0.0368187 -0.0680937 0)
(-0.0269249 -0.0711724 0)
(-0.0175824 -0.0731333 0)
(-0.00892549 -0.0741941 0)
(-0.00102631 -0.0745543 0)
(-0.000160374 0.000171267 0)
(-0.000416238 0.000301618 0)
(-0.000840892 0.000562031 0)
(-0.00154378 0.00101201 0)
(-0.00265524 0.0017307 0)
(-0.00432502 0.0028098 0)
(-0.0067144 0.00434218 0)
(-0.00998481 0.00640371 0)
(-0.014286 0.00902617 0)
(-0.0197428 0.0121585 0)
(-0.0264416 0.0156205 0)
(-0.0344041 0.0190558 0)
(-0.0435455 0.0219079 0)
(-0.0536074 0.0234457 0)
(-0.0640791 0.0228717 0)
(-0.0741715 0.0195151 0)
(-0.0828852 0.0130591 0)
(-0.0892099 0.00369211 0)
(-0.0923679 -0.00789537 0)
(-0.0920071 -0.0206889 0)
(-0.0882459 -0.0336071 0)
(-0.0815887 -0.0457175 0)
(-0.0727488 -0.056384 0)
(-0.0624982 -0.0652616 0)
(-0.0515325 -0.0722701 0)
(-0.0404283 -0.0775016 0)
(-0.0296049 -0.0811597 0)
(-0.019349 -0.0834924 0)
(-0.00982678 -0.0847556 0)
(-0.00113031 -0.0851844 0)
(-0.000154803 0.000184789 0)
(-0.000401613 0.000325394 0)
(-0.000811195 0.000606336 0)
(-0.00148919 0.00109182 0)
(-0.00256147 0.00186735 0)
(-0.00417306 0.00303222 0)
(-0.00648116 0.0046877 0)
(-0.00964561 0.00691845 0)
(-0.0138203 0.00976502 0)
(-0.0191452 0.0131845 0)
(-0.0257382 0.0170028 0)
(-0.0336756 0.0208621 0)
(-0.0429512 0.0241872 0)
(-0.0533986 0.0261946 0)
(-0.0645846 0.0259862 0)
(-0.0757405 0.0227468 0)
(-0.0857929 0.0160063 0)
(-0.0935613 0.0058499 0)
(-0.0980441 -0.00703441 0)
(-0.0986866 -0.0215249 0)
(-0.0954788 -0.0363606 0)
(-0.0888953 -0.0504133 0)
(-0.0796985 -0.0628863 0)
(-0.0687544 -0.0733272 0)
(-0.0568665 -0.081605 0)
(-0.0447113 -0.087803 0)
(-0.0327904 -0.0921466 0)
(-0.0214511 -0.0949203 0)
(-0.0108998 -0.0964234 0)
(-0.00125414 -0.0969335 0)
(-0.000148821 0.000197809 0)
(-0.0003859 0.000348278 0)
(-0.000779288 0.00064898 0)
(-0.00143052 0.00116865 0)
(-0.00246069 0.00199894 0)
(-0.00400965 0.00324652 0)
(-0.00623004 0.00502101 0)
(-0.00927959 0.00741612 0)
(-0.0133157 0.0104823 0)
(-0.0184925 0.0141875 0)
(-0.0249593 0.0183685 0)
(-0.0328483 0.0226744 0)
(-0.0422368 0.0265217 0)
(-0.0530635 0.0290844 0)
(-0.0649946 0.0293649 0)
(-0.0773072 0.0263874 0)
(-0.088869 0.0194919 0)
(-0.09832 0.00861291 0)
(-0.104398 -0.00560089 0)
(-0.106293 -0.0219306 0)
(-0.103821 -0.0389139 0)
(-0.0974025 -0.0551886 0)
(-0.0878471 -0.0697584 0)
(-0.0761284 -0.0820322 0)
(-0.0631774 -0.0918093 0)
(-0.049793 -0.0991556 0)
(-0.0365771 -0.104316 0)
(-0.0239527 -0.107617 0)
(-0.0121777 -0.109408 0)
(-0.00140135 -0.110016 0)
(-0.000142445 0.000210294 0)
(-0.000369142 0.000370208 0)
(-0.000745257 0.000689849 0)
(-0.00136794 0.00124229 0)
(-0.00235315 0.00212509 0)
(-0.0038352 0.0034521 0)
(-0.00596165 0.00534116 0)
(-0.00888748 0.00789529 0)
(-0.0127728 0.0111759 0)
(-0.0177846 0.0151643 0)
(-0.0241027 0.0197131 0)
(-0.0319149 0.024487 0)
(-0.0413865 0.0289063 0)
(-0.0525736 0.0321153 0)
(-0.0652668 0.0330227 0)
(-0.0788209 0.0304785 0)
(-0.0920703 0.0235927 0)
(-0.103473 0.0120917 0)
(-0.111467 -0.00346849 0)
(-0.114923 -0.0217857 0)
(-0.113424 -0.0411813 0)
(-0.107299 -0.0600107 0)
(-0.0973995 -0.0770277 0)
(-0.0848226 -0.0914638 0)
(-0.0706504 -0.103024 0)
(-0.0558293 -0.111744 0)
(-0.0410849 -0.117887 0)
(-0.0269351 -0.121823 0)
(-0.0137022 -0.123961 0)
(-0.00157701 -0.124687 0)
(-0.000135694 0.000222211 0)
(-0.000351384 0.000391126 0)
(-0.000709195 0.000728829 0)
(-0.00130162 0.00131253 0)
(-0.00223916 0.00224547 0)
(-0.00365017 0.00364839 0)
(-0.00567664 0.00564723 0)
(-0.00847009 0.0083545 0)
(-0.0121923 0.0118435 0)
(-0.0170216 0.0161112 0)
(-0.0231664 0.0210315 0)
(-0.0308687 0.0262928 0)
(-0.0403841 0.0313333 0)
(-0.0518983 0.0352837 0)
(-0.0653526 0.0369703 0)
(-0.08022 0.0350599 0)
(-0.0953389 0.0283915 0)
(-0.108994 0.0164141 0)
(-0.119285 -0.000477939 0)
(-0.124684 -0.0209387 0)
(-0.124463 -0.0430488 0)
(-0.118808 -0.0648274 0)
(-0.108604 -0.0847154 0)
(-0.0950853 -0.101716 0)
(-0.079514 -0.115409 0)
(-0.0630147 -0.125783 0)
(-0.0464646 -0.133116 0)
(-0.0305002 -0.137826 0)
(-0.015526 -0.140386 0)
(-0.00178697 -0.141256 0)
(-0.000128589 0.000233527 0)
(-0.000332676 0.000410972 0)
(-0.000671201 0.000765811 0)
(-0.00123174 0.00137919 0)
(-0.00211902 0.00235973 0)
(-0.00345504 0.00383484 0)
(-0.00537571 0.00593834 0)
(-0.00802834 0.00879236 0)
(-0.0115751 0.0124828 0)
(-0.0162039 0.0170249 0)
(-0.0221486 0.0223177 0)
(-0.0297031 0.0280833 0)
(-0.0392135 0.0337919 0)
(-0.0510048 0.0385812 0)
(-0.0651972 0.0412128 0)
(-0.0814302 0.0401686 0)
(-0.0985984 0.0339768 0)
(-0.114838 0.0217272 0)
(-0.127876 0.00355875 0)
(-0.135694 -0.019197 0)
(-0.137144 -0.0443657 0)
(-0.132202 -0.0695624 0)
(-0.121764 -0.092834 0)
(-0.107222 -0.112892 0)
(-0.0900525 -0.12915 0)
(-0.0715935 -0.14153 0)
(-0.0529076 -0.150316 0)
(-0.0347785 -0.155975 0)
(-0.017717 -0.159056 0)
(-0.00203881 -0.160103 0)
(-0.000121149 0.000244211 0)
(-0.000313068 0.000429694 0)
(-0.000631377 0.000800697 0)
(-0.00115848 0.00144207 0)
(-0.00199304 0.00246757 0)
(-0.00325031 0.00401093 0)
(-0.0050596 0.00621364 0)
(-0.0075632 0.00920748 0)
(-0.0109223 0.0130917 0)
(-0.015332 0.0179013 0)
(-0.0210483 0.0235657 0)
(-0.0284125 0.0298487 0)
(-0.0378589 0.0362685 0)
(-0.0498589 0.0419939 0)
(-0.0647397 0.0457477 0)
(-0.0823629 0.0458358 0)
(-0.10175 0.0404403 0)
(-0.120937 0.028199 0)
(-0.137252 0.00887026 0)
(-0.148078 -0.0163194 0)
(-0.151711 -0.044933 0)
(-0.147806 -0.0741067 0)
(-0.137247 -0.101383 0)
(-0.121608 -0.125099 0)
(-0.10262 -0.144458 0)
(-0.0818748 -0.159286 0)
(-0.0606589 -0.16986 0)
(-0.0399395 -0.176696 0)
(-0.0203637 -0.180426 0)
(-0.0023425 -0.181695 0)
(-0.000113399 0.000254234 0)
(-0.000292614 0.000447238 0)
(-0.000589835 0.00083339 0)
(-0.00108206 0.00150101 0)
(-0.00186157 0.00256867 0)
(-0.00303654 0.00417614 0)
(-0.00472914 0.00647228 0)
(-0.00707578 0.00959847 0)
(-0.0102352 0.0136678 0)
(-0.0144071 0.0187366 0)
(-0.019865 0.0247685 0)
(-0.0269921 0.0315774 0)
(-0.0363056 0.0387458 0)
(-0.0484259 0.0455011 0)
(-0.0639135 0.050563 0)
(-0.0829138 0.0520834 0)
(-0.104666 0.0478737 0)
(-0.127185 0.0360192 0)
(-0.147399 0.0157362 0)
(-0.161969 -0.0119894 0)
(-0.168442 -0.0444907 0)
(-0.16601 -0.078308 0)
(-0.1555 -0.110342 0)
(-0.138704 -0.138452 0)
(-0.117656 -0.16157 0)
(-0.0942504 -0.179403 0)
(-0.070036 -0.192199 0)
(-0.0462059 -0.200514 0)
(-0.0235841 -0.205067 0)
(-0.00271122 -0.206616 0)
(-0.000105361 0.000263567 0)
(-0.00027137 0.000463556 0)
(-0.000546687 0.000863801 0)
(-0.00100267 0.00155584 0)
(-0.00172497 0.00266275 0)
(-0.00281431 0.00432999 0)
(-0.00438519 0.00671349 0)
(-0.00656728 0.00996403 0)
(-0.00951523 0.0142087 0)
(-0.0134305 0.0195268 0)
(-0.0185991 0.0259188 0)
(-0.0254385 0.0332568 0)
(-0.0345403 0.0412036 0)
(-0.0466715 0.0490756 0)
(-0.062647 0.055635 0)
(-0.082962 0.05892 0)
(-0.107187 0.0563643 0)
(-0.133433 0.0453988 0)
(-0.158267 0.0244941 0)
(-0.1775 -0.00581133 0)
(-0.187669 -0.0426942 0)
(-0.187288 -0.0819606 0)
(-0.177066 -0.11967 0)
(-0.159069 -0.153064 0)
(-0.135708 -0.180751 0)
(-0.109222 -0.202289 0)
(-0.0814596 -0.217876 0)
(-0.0538815 -0.228079 0)
(-0.0275415 -0.233697 0)
(-0.00316315 -0.235613 0)
(-9.70625e-05 0.000272184 0)
(-0.000249393 0.000478605 0)
(-0.00050205 0.000891846 0)
(-0.000920532 0.00160641 0)
(-0.00158361 0.00274956 0)
(-0.00258419 0.00447206 0)
(-0.00402864 0.00693652 0)
(-0.00603898 0.0103029 0)
(-0.00876411 0.0147124 0)
(-0.012404 0.0202676 0)
(-0.0172517 0.0270091 0)
(-0.0237497 0.0348731 0)
(-0.0325521 0.043618 0)
(-0.0445629 0.0526821 0)
(-0.0608649 0.0609262 0)
(-0.0823696 0.0663356 0)
(-0.10911 0.0659878 0)
(-0.139471 0.0565675 0)
(-0.169753 0.0355517 0)
(-0.194797 0.00271953 0)
(-0.209788 -0.03909 0)
(-0.212219 -0.0847907 0)
(-0.202602 -0.129296 0)
(-0.183381 -0.169047 0)
(-0.157449 -0.202282 0)
(-0.127436 -0.228406 0)
(-0.095497 -0.247536 0)
(-0.0633966 -0.260205 0)
(-0.0324787 -0.267249 0)
(-0.00372702 -0.269667 0)
(-8.85289e-05 0.000280059 0)
(-0.000226744 0.000492346 0)
(-0.000456049 0.000917451 0)
(-0.000835875 0.00165258 0)
(-0.00143788 0.00282885 0)
(-0.00234683 0.0046019 0)
(-0.00366045 0.00714067 0)
(-0.00549226 0.0106139 0)
(-0.00798371 0.0151765 0)
(-0.0113299 0.0209551 0)
(-0.0158248 0.0280315 0)
(-0.0219257 0.0364113 0)
(-0.0303333 0.0459622 0)
(-0.0420708 0.0562771 0)
(-0.0584912 0.0663818 0)
(-0.0809829 0.0742948 0)
(-0.11019 0.0767967 0)
(-0.145008 0.0697651 0)
(-0.181664 0.049397 0)
(-0.213962 0.0142646 0)
(-0.235265 -0.0330639 0)
(-0.241519 -0.0864421 0)
(-0.232899 -0.139129 0)
(-0.212439 -0.186511 0)
(-0.183689 -0.226441 0)
(-0.149723 -0.258236 0)
(-0.112932 -0.28193 0)
(-0.0753897 -0.297895 0)
(-0.0387919 -0.306955 0)
(-0.00445693 -0.310127 0)
(-7.97887e-05 0.000287165 0)
(-0.000203482 0.000504739 0)
(-0.000408808 0.000940545 0)
(-0.000748927 0.00169422 0)
(-0.00128816 0.00290038 0)
(-0.00210286 0.00471916 0)
(-0.00328162 0.00732529 0)
(-0.0049286 0.0108958 0)
(-0.00717609 0.0155991 0)
(-0.0102109 0.0215853 0)
(-0.0143216 0.0289781 0)
(-0.0199684 0.0378561 0)
(-0.0278798 0.0482067 0)
(-0.0391713 0.0598088 0)
(-0.0554514 0.0719286 0)
(-0.0786349 0.0827295 0)
(-0.110131 0.0888063 0)
(-0.14965 0.0852287 0)
(-0.193685 0.0666079 0)
(-0.235031 0.0296915 0)
(-0.26468 -0.023809 0)
(-0.276105 -0.0864757 0)
(-0.268899 -0.149072 0)
(-0.247158 -0.205567 0)
(-0.215351 -0.253468 0)
(-0.17716 -0.292205 0)
(-0.134872 -0.321915 0)
(-0.0908346 -0.34233 0)
(-0.0472789 -0.35448 0)
(-0.00550699 -0.359055 0)
(-7.08713e-05 0.000293481 0)
(-0.00017967 0.000515753 0)
(-0.000360455 0.000961069 0)
(-0.000659925 0.00173121 0)
(-0.00113487 0.00296397 0)
(-0.00185295 0.00482349 0)
(-0.00289319 0.0074898 0)
(-0.00434955 0.0111476 0)
(-0.00634351 0.0159782 0)
(-0.00905027 0.0221542 0)
(-0.0127461 0.0298411 0)
(-0.017882 0.0391914 0)
(-0.0251922 0.0503196 0)
(-0.0358476 0.0632171 0)
(-0.051677 0.0774724 0)
(-0.0751512 0.0915314 0)
(-0.108584 0.101975 0)
(-0.152877 0.103167 0)
(-0.20531 0.087853 0)
(-0.257935 0.0501438 0)
(-0.298772 -0.0101495 0)
(-0.317194 -0.084363 0)
(-0.31168 -0.159086 0)
(-0.28856 -0.226367 0)
(-0.253307 -0.283548 0)
(-0.211091 -0.330362 0)
(-0.163004 -0.368768 0)
(-0.110748 -0.394426 0)
(-0.060038 -0.411842 0)
(-0.00750581 -0.420288 0)
(-6.18073e-05 0.000298978 0)
(-0.000155373 0.000525356 0)
(-0.000311124 0.000978963 0)
(-0.000569117 0.00176346 0)
(-0.000978424 0.00301942 0)
(-0.00159779 0.00491456 0)
(-0.00249625 0.00763364 0)
(-0.0037568 0.0113684 0)
(-0.00548848 0.0163118 0)
(-0.00785161 0.0226582 0)
(-0.0111035 0.0306129 0)
(-0.0156733 0.0404012 0)
(-0.0222766 0.0522679 0)
(-0.0320939 0.0664344 0)
(-0.0471109 0.0828961 0)
(-0.0703595 0.100543 0)
(-0.105153 0.116178 0)
(-0.154009 0.123719 0)
(-0.215758 0.11387 0)
(-0.28236 0.077136 0)
(-0.338493 0.00966981 0)
(-0.366569 -0.0795925 0)
(-0.362319 -0.169295 0)
(-0.337873 -0.24909 0)
(-0.297285 -0.3173 0)
(-0.249482 -0.372166 0)
(-0.197437 -0.427102 0)
(-0.125588 -0.454035 0)
(-0.0716102 -0.478786 0)
(-0.00910838 -0.499618 0)
(-5.26294e-05 0.000303631 0)
(-0.000130656 0.000533521 0)
(-0.000260952 0.00099418 0)
(-0.000476751 0.00179087 0)
(-0.000819264 0.00306657 0)
(-0.00133809 0.00499209 0)
(-0.00209193 0.00775633 0)
(-0.00315208 0.0115572 0)
(-0.00461366 0.0165985 0)
(-0.00661904 0.0230939 0)
(-0.00940015 0.0312861 0)
(-0.0133514 0.0414702 0)
(-0.019145 0.0540182 0)
(-0.0279169 0.0693874 0)
(-0.041712 0.0880604 0)
(-0.0641028 0.109554 0)
(-0.0994054 0.131176 0)
(-0.152193 0.146892 0)
(-0.223867 0.145414 0)
(-0.30752 0.112642 0)
(-0.385003 0.0384351 0)
(-0.427235 -0.0718805 0)
(-0.42096 -0.180552 0)
(-0.395506 -0.274007 0)
(-0.326266 -0.365689 0)
(-0.23237 -0.444762 0)
(-0.0755317 -0.498976 0)
(-0.014937 -0.521056 0)
(-0.0249606 -0.52631 0)
(0.00373138 -0.573852 0)
(-4.33727e-05 0.000307411 0)
(-0.000105586 0.000540228 0)
(-0.000210075 0.00100668 0)
(-0.000383078 0.00181336 0)
(-0.000657821 0.00310529 0)
(-0.00107457 0.00505586 0)
(-0.00168136 0.00785747 0)
(-0.00253717 0.0117134 0)
(-0.00372187 0.0168366 0)
(-0.00535706 0.0234581 0)
(-0.00764323 0.0318542 0)
(-0.0109279 0.0423837 0)
(-0.0158153 0.0555384 0)
(-0.0233398 0.0719994 0)
(-0.0354612 0.0928031 0)
(-0.0562592 0.118299 0)
(-0.0908965 0.146583 0)
(-0.146395 0.172481 0)
(-0.22796 0.183136 0)
(-0.331756 0.159073 0)
(-0.439299 0.0811977 0)
(-0.505315 -0.0614406 0)
(-0.482375 -0.198465 0)
(-0.429229 -0.314724 0)
(-0.301522 -0.481259 0)
(-0.214104 -0.543011 0)
(-0.232622 -0.595165 0)
(-0.14288 -0.548433 0)
(-0.0492156 -0.553543 0)
(-0.00575014 -0.583835 0)
(-3.40773e-05 0.000310286 0)
(-8.02294e-05 0.000545459 0)
(-0.000158636 0.00101643 0)
(-0.00028836 0.00183088 0)
(-0.000494545 0.00313546 0)
(-0.000807982 0.00510566 0)
(-0.00126576 0.00793671 0)
(-0.00191399 0.0118362 0)
(-0.00281611 0.0170249 0)
(-0.00407058 0.0237483 0)
(-0.00584104 0.0323112 0)
(-0.00841707 0.0431283 0)
(-0.0123115 0.0567987 0)
(-0.0184054 0.0741946 0)
(-0.0283664 0.0969376 0)
(-0.0467703 0.126473 0)
(-0.0792073 0.161824 0)
(-0.135425 0.199956 0)
(-0.225669 0.227352 0)
(-0.351382 0.219194 0)
(-0.4988 0.153035 0)
(-0.614416 -0.0490765 0)
(-0.616466 -0.231963 0)
(-0.482951 -0.371934 0)
(-0.421379 -0.562871 0)
(-0.291972 -0.595566 0)
(-0.211034 -0.650599 0)
(-0.143368 -0.642981 0)
(-0.0708764 -0.643711 0)
(-0.00763918 -0.649847 0)
(-2.47872e-05 0.000312225 0)
(-5.46556e-05 0.000549199 0)
(-0.000106773 0.00102339 0)
(-0.000192853 0.00184338 0)
(-0.000329886 0.003157 0)
(-0.000539062 0.00514133 0)
(-0.000846308 0.00799379 0)
(-0.00128445 0.0119253 0)
(-0.00189945 0.0171625 0)
(-0.00276478 0.0239622 0)
(-0.00400256 0.0326523 0)
(-0.00583499 0.0436931 0)
(-0.00866281 0.0577742 0)
(-0.0131799 0.0759082 0)
(-0.0204672 0.100254 0)
(-0.0356782 0.133802 0)
(-0.0639846 0.176172 0)
(-0.117966 0.228531 0)
(-0.211313 0.277548 0)
(-0.344062 0.295568 0)
(-0.478035 0.277518 0)
(-0.787131 0.0045363 0)
(-0.853804 -0.296398 0)
(-0.647844 -0.485124 0)
(-0.49115 -0.651952 0)
(-0.355287 -0.701093 0)
(-0.242381 -0.72497 0)
(-0.154029 -0.731622 0)
(-0.0768639 -0.735292 0)
(-0.00777312 -0.735623 0)
(-1.55622e-05 0.000313082 0)
(-2.89531e-05 0.000551276 0)
(-5.46495e-05 0.0010273 0)
(-9.68458e-05 0.00185059 0)
(-0.00016434 0.00317 0)
(-0.000268628 0.00516429 0)
(-0.000424339 0.00803358 0)
(-0.000650695 0.0119928 0)
(-0.000975393 0.0172751 0)
(-0.00144569 0.0241486 0)
(-0.00213849 0.0329623 0)
(-0.0032016 0.0442163 0)
(-0.00490491 0.0586779 0)
(-0.00776024 0.0774491 0)
(-0.011858 0.103 0)
(-0.0231858 0.14086 0)
(-0.043715 0.189102 0)
(-0.0874933 0.256843 0)
(-0.186209 0.335128 0)
(-0.371792 0.382307 0)
(-0.480112 0.371248 0)
(-0.691102 0.141258 0)
(-0.810365 -0.460192 0)
(-0.73749 -0.70084 0)
(-0.50438 -0.751761 0)
(-0.426138 -0.83858 0)
(-0.276634 -0.832131 0)
(-0.164783 -0.824033 0)
(-0.0813162 -0.833172 0)
(-0.00711467 -0.829955 0)
(0.00286732 -0.00184069 0)
(0.0077969 -0.00182757 0)
(0.0131983 -0.00179808 0)
(0.0190538 -0.00174763 0)
(0.0253144 -0.00167144 0)
(0.0318826 -0.00156465 0)
(0.0386058 -0.00142294 0)
(0.0452575 -0.0012439 0)
(0.0515345 -0.00102791 0)
(0.0570625 -0.000779772 0)
(0.0614159 -0.000509809 0)
(0.064167 -0.000234174 0)
(0.064956 2.62908e-05 0)
(0.0635739 0.000249533 0)
(0.0600349 0.000416393 0)
(0.0546102 0.000516025 0)
(0.0477976 0.000548583 0)
(0.0402329 0.000524833 0)
(0.0325666 0.00046238 0)
(0.0253517 0.000380301 0)
(0.0189773 0.000294692 0)
(0.0136511 0.000216438 0)
(0.00942206 0.000151185 0)
(0.00622478 0.000100549 0)
(0.00392275 6.3622e-05 0)
(0.00234676 3.82216e-05 0)
(0.00132279 2.17736e-05 0)
(0.000690727 1.18317e-05 0)
(0.000313301 6.39841e-06 0)
(7.41202e-05 4.10885e-06 0)
(0.00418329 -0.00647555 0)
(0.00942847 -0.00641384 0)
(0.0151615 -0.00629132 0)
(0.0213579 -0.00609192 0)
(0.027955 -0.00579789 0)
(0.0348398 -0.00539253 0)
(0.0418337 -0.00486185 0)
(0.0486843 -0.00419848 0)
(0.0550532 -0.00340715 0)
(0.0605349 -0.0025087 0)
(0.0646785 -0.0015449 0)
(0.0670478 -0.00057791 0)
(0.0672992 0.000315556 0)
(0.065269 0.00105713 0)
(0.0610416 0.0015851 0)
(0.0549693 0.00187063 0)
(0.0476207 0.00192572 0)
(0.0396748 0.00179746 0)
(0.0317905 0.00155182 0)
(0.0245006 0.00125456 0)
(0.0181575 0.000957645 0)
(0.0129289 0.000693882 0)
(0.00882947 0.000478547 0)
(0.00576778 0.000314308 0)
(0.00359046 0.000196358 0)
(0.00211871 0.000116433 0)
(0.00117478 6.54947e-05 0)
(0.000598587 3.53202e-05 0)
(0.000254331 1.94303e-05 0)
(2.50895e-05 1.69988e-05 0)
(0.00424969 -0.0127572 0)
(0.0095779 -0.0126354 0)
(0.0154001 -0.0123929 0)
(0.0216896 -0.011998 0)
(0.0283809 -0.0114162 0)
(0.0353558 -0.0106139 0)
(0.0424293 -0.00956389 0)
(0.0493409 -0.00825167 0)
(0.0557431 -0.00668704 0)
(0.0612227 -0.0049118 0)
(0.0653233 -0.00300935 0)
(0.0676091 -0.00110345 0)
(0.067744 0.000653712 0)
(0.0655796 0.00210754 0)
(0.0612194 0.0031374 0)
(0.0550341 0.00368866 0)
(0.0476044 0.00378745 0)
(0.0396118 0.00352832 0)
(0.0317098 0.00304166 0)
(0.024422 0.00245639 0)
(0.0180913 0.00187364 0)
(0.0128783 0.00135691 0)
(0.00879355 0.000935518 0)
(0.00574386 0.000614325 0)
(0.00357543 0.000383743 0)
(0.00210981 0.000227529 0)
(0.00116985 0.000127982 0)
(0.000596079 6.90187e-05 0)
(0.000253272 3.79684e-05 0)
(2.4968e-05 3.00749e-05 0)
(0.00436108 -0.0191707 0)
(0.00982781 -0.0189859 0)
(0.0157989 -0.0186182 0)
(0.0222441 -0.018019 0)
(0.0290925 -0.0171366 0)
(0.0362176 -0.0159204 0)
(0.0434233 -0.0143297 0)
(0.0504357 -0.0123437 0)
(0.0568924 -0.00997875 0)
(0.0623665 -0.00729997 0)
(0.0663933 -0.00443558 0)
(0.0685378 -0.00157434 0)
(0.0684771 0.00105376 0)
(0.0660883 0.00321727 0)
(0.0615076 0.00473858 0)
(0.055136 0.00554106 0)
(0.0475733 0.00566913 0)
(0.0395049 0.00526779 0)
(0.0315751 0.00453294 0)
(0.0242915 0.00365613 0)
(0.0179816 0.00278646 0)
(0.0127946 0.00201696 0)
(0.00873426 0.00139017 0)
(0.00570438 0.00091273 0)
(0.00355063 0.000570094 0)
(0.00209513 0.000338004 0)
(0.0011617 0.000190119 0)
(0.000591943 0.000102528 0)
(0.000251528 5.64043e-05 0)
(2.47795e-05 4.30706e-05 0)
(0.00451968 -0.0257852 0)
(0.010184 -0.025533 0)
(0.0163671 -0.0250314 0)
(0.023034 -0.0242144 0)
(0.0301056 -0.0230118 0)
(0.0374437 -0.0213556 0)
(0.044836 -0.0191916 0)
(0.0519894 -0.0164937 0)
(0.0585203 -0.0132872 0)
(0.0639829 -0.00966424 0)
(0.0679007 -0.00580279 0)
(0.0698407 -0.00196164 0)
(0.0695003 0.00154777 0)
(0.0667934 0.0044165 0)
(0.0619024 0.00641307 0)
(0.0552707 0.00744467 0)
(0.0475242 0.00758033 0)
(0.0393523 0.00701987 0)
(0.0313854 0.00602621 0)
(0.024109 0.0048527 0)
(0.0178288 0.00369456 0)
(0.0126782 0.00267259 0)
(0.00865183 0.00184139 0)
(0.00564953 0.00120876 0)
(0.00351619 0.000754917 0)
(0.00207473 0.000447561 0)
(0.00115039 0.000251737 0)
(0.000586198 0.000135755 0)
(0.000249104 7.46867e-05 0)
(2.45242e-05 5.59501e-05 0)
(0.00472938 -0.0326729 0)
(0.0106548 -0.0323477 0)
(0.0171179 -0.0317006 0)
(0.0240772 -0.030647 0)
(0.0314425 -0.0290971 0)
(0.0390597 -0.0269647 0)
(0.0466955 -0.0241824 0)
(0.0540306 -0.0207203 0)
(0.0606537 -0.0166156 0)
(0.0660942 -0.0119932 0)
(0.0698612 -0.00708737 0)
(0.0715261 -0.00223369 0)
(0.0708145 0.00216983 0)
(0.0676902 0.00573652 0)
(0.0623965 0.00818551 0)
(0.0554312 0.009416 0)
(0.0474517 0.00953007 0)
(0.0391506 0.0087881 0)
(0.0311392 0.00752175 0)
(0.0238738 0.00604484 0)
(0.0176327 0.00459627 0)
(0.0125292 0.00332231 0)
(0.00854641 0.00228805 0)
(0.00557942 0.00150161 0)
(0.00347217 0.000937708 0)
(0.00204867 0.000555899 0)
(0.00113594 0.000312665 0)
(0.000578858 0.00016861 0)
(0.000246009 9.27643e-05 0)
(2.42025e-05 6.86782e-05 0)
(0.00499513 -0.0399136 0)
(0.0112513 -0.0395075 0)
(0.0180689 -0.0386995 0)
(0.0253976 -0.0373846 0)
(0.0331331 -0.0354517 0)
(0.0411008 -0.0327958 0)
(0.0490397 -0.0293362 0)
(0.0565977 -0.0250414 0)
(0.063328 -0.0199654 0)
(0.0687296 -0.0142723 0)
(0.0722954 -0.00826189 0)
(0.0736044 -0.00235549 0)
(0.0724205 0.0029567 0)
(0.0687726 0.00721008 0)
(0.0629807 0.0100809 0)
(0.0556082 0.0114712 0)
(0.0473485 0.0115268 0)
(0.0388953 0.0105755 0)
(0.0308343 0.00901946 0)
(0.0235853 0.00723114 0)
(0.0173932 0.00548991 0)
(0.0123477 0.00396463 0)
(0.00841822 0.00272901 0)
(0.00549423 0.00179052 0)
(0.00341871 0.00111797 0)
(0.00201703 0.000662724 0)
(0.0011184 0.000372737 0)
(0.000569945 0.000201003 0)
(0.00024225 0.000110588 0)
(2.38156e-05 8.12213e-05 0)
(0.00532339 -0.0475956 0)
(0.011988 -0.0470984 0)
(0.0192429 -0.0461097 0)
(0.0270264 -0.0445017 0)
(0.0352164 -0.0421403 0)
(0.0436118 -0.0389003 0)
(0.0519173 -0.0346885 0)
(0.0597396 -0.0294745 0)
(0.0665885 -0.0233349 0)
(0.0719264 -0.0164825 0)
(0.0752285 -0.00929395 0)
(0.0760874 -0.0022875 0)
(0.0743182 0.00394864 0)
(0.0700322 0.00887184 0)
(0.0636427 0.0121248 0)
(0.05579 0.0136262 0)
(0.0472061 0.0135785 0)
(0.0385813 0.0123846 0)
(0.030468 0.010519 0)
(0.0232425 0.00841004 0)
(0.0171104 0.00637372 0)
(0.0121339 0.00459805 0)
(0.00826752 0.00316316 0)
(0.00539416 0.00207473 0)
(0.00335593 0.00129523 0)
(0.00197987 0.000767749 0)
(0.0010978 0.000431792 0)
(0.000559482 0.000232846 0)
(0.000237838 0.00012811 0)
(2.33642e-05 9.35458e-05 0)
(0.00572238 -0.0558176 0)
(0.0128833 -0.0552167 0)
(0.0206688 -0.0540223 0)
(0.0290032 -0.0520811 0)
(0.0377412 -0.0492338 0)
(0.0466495 -0.0453338 0)
(0.0553896 -0.0402762 0)
(0.0635175 -0.0340354 0)
(0.0704908 -0.0267187 0)
(0.0757293 -0.0185992 0)
(0.0786906 -0.0101447 0)
(0.0789884 -0.00198314 0)
(0.0765062 0.00519011 0)
(0.0714575 0.0107586 0)
(0.0643673 0.0143431 0)
(0.0559625 0.0158959 0)
(0.0470141 0.0156918 0)
(0.0382023 0.0142171 0)
(0.0300376 0.0120193 0)
(0.0228445 0.00957971 0)
(0.0167841 0.00724585 0)
(0.0118882 0.00522106 0)
(0.00809461 0.00358939 0)
(0.00527946 0.00235348 0)
(0.00328401 0.001469 0)
(0.00193732 0.000870683 0)
(0.00107421 0.000489667 0)
(0.000547498 0.000264053 0)
(0.000232785 0.000145283 0)
(2.28492e-05 0.000105618 0)
(0.00620253 -0.064692 0)
(0.0139602 -0.0639715 0)
(0.0223831 -0.0625401 0)
(0.0313772 -0.0602159 0)
(0.0407691 -0.0568113 0)
(0.0502845 -0.052157 0)
(0.0595321 -0.0461378 0)
(0.0680065 -0.0387382 0)
(0.0751028 -0.0301063 0)
(0.0801923 -0.0205903 0)
(0.0827162 -0.010767 0)
(0.0823219 -0.00139072 0)
(0.0789807 0.00673057 0)
(0.0730334 0.0129093 0)
(0.0651355 0.0167616 0)
(0.0561088 0.0182946 0)
(0.0467606 0.0178724 0)
(0.0377517 0.0160736 0)
(0.02954 0.0135191 0)
(0.0223903 0.0107381 0)
(0.0164144 0.00810434 0)
(0.0116109 0.00583209 0)
(0.00789986 0.00400656 0)
(0.0051504 0.00262602 0)
(0.00320312 0.00163881 0)
(0.00188947 0.000971245 0)
(0.00104768 0.000546202 0)
(0.000534026 0.000294537 0)
(0.000227106 0.000162062 0)
(2.22719e-05 0.000117405 0)
(0.00677688 -0.0743488 0)
(0.015248 -0.0734891 0)
(0.0244313 -0.0717818 0)
(0.0342104 -0.0690124 0)
(0.0443763 -0.0649618 0)
(0.0546042 -0.0594367 0)
(0.0644381 -0.0523138 0)
(0.0732984 -0.0435943 0)
(0.0805063 -0.0334802 0)
(0.0853789 -0.0224141 0)
(0.087345 -0.0111036 0)
(0.0861019 -0.000447266 0)
(0.081735 0.0086254 0)
(0.0747405 0.0153659 0)
(0.0659244 0.0194065 0)
(0.0562094 0.0208352 0)
(0.0464321 0.0201247 0)
(0.0372217 0.017954 0)
(0.0289716 0.0150163 0)
(0.0218789 0.0118828 0)
(0.0160013 0.00894719 0)
(0.0113024 0.0064296 0)
(0.00768368 0.0044136 0)
(0.00500731 0.00289163 0)
(0.00311349 0.0018042 0)
(0.00183646 0.00106916 0)
(0.0010183 0.000601247 0)
(0.000519103 0.000324216 0)
(0.000220815 0.000178399 0)
(2.16338e-05 0.000128875 0)
(0.00746146 -0.0849396 0)
(0.0167823 -0.0839159 0)
(0.0268699 -0.0818844 0)
(0.0375793 -0.0785924 0)
(0.0486569 -0.0737861 0)
(0.0597159 -0.0672468 0)
(0.0702214 -0.0588457 0)
(0.079504 -0.0486106 0)
(0.0867989 -0.0368142 0)
(0.0913631 -0.0240171 0)
(0.0926207 -0.0110848 0)
(0.0903411 0.000918976 0)
(0.0847574 0.0109365 0)
(0.0765536 0.0181724 0)
(0.0667064 0.0223036 0)
(0.0562416 0.023529 0)
(0.0460138 0.0224512 0)
(0.0366043 0.0198569 0)
(0.0283291 0.0165083 0)
(0.0213094 0.0130113 0)
(0.015545 0.00977224 0)
(0.0109632 0.00701201 0)
(0.00744653 0.00480939 0)
(0.00485053 0.00314957 0)
(0.00301535 0.00196472 0)
(0.00177843 0.00116417 0)
(0.000986144 0.000654647 0)
(0.000502771 0.000353007 0)
(0.000213933 0.000194252 0)
(2.0936e-05 0.000139997 0)
(0.00827658 -0.0966422 0)
(0.0186083 -0.0954238 0)
(0.0297693 -0.0930076 0)
(0.0415785 -0.0890972 0)
(0.0537271 -0.0833993 0)
(0.0657515 -0.075669 0)
(0.0770204 -0.0657768 0)
(0.0867572 -0.0537887 0)
(0.0940963 -0.0400703 0)
(0.0982307 -0.0253302 0)
(0.0985909 -0.0106248 0)
(0.0950508 0.00279238 0)
(0.08803 0.0137334 0)
(0.0784406 0.0213754 0)
(0.0674485 0.0254774 0)
(0.0561797 0.0263852 0)
(0.0454892 0.0248526 0)
(0.0358909 0.0217795 0)
(0.0276089 0.0179916 0)
(0.0206808 0.0141206 0)
(0.0150457 0.0105773 0)
(0.0105937 0.00757772 0)
(0.00718895 0.00519285 0)
(0.00468046 0.00339915 0)
(0.00290895 0.00211992 0)
(0.00171554 0.001256 0)
(0.000951296 0.000706256 0)
(0.000485073 0.000380832 0)
(0.000206477 0.000209578 0)
(2.01798e-05 0.000150741 0)
(0.00924758 -0.109668 0)
(0.020782 -0.108217 0)
(0.0332172 -0.10534 0)
(0.0463262 -0.100692 0)
(0.0597308 -0.0939337 0)
(0.0728729 -0.0847945 0)
(0.085004 -0.0731503 0)
(0.0952192 -0.0591218 0)
(0.102536 -0.043195 0)
(0.10608 -0.0262647 0)
(0.105307 -0.00961807 0)
(0.100235 0.00527376 0)
(0.0915261 0.0170935 0)
(0.0803609 0.0250234 0)
(0.068112 0.0289512 0)
(0.0559948 0.0294102 0)
(0.0448409 0.0273271 0)
(0.0350728 0.0237175 0)
(0.0268076 0.0194621 0)
(0.0199925 0.0152075 0)
(0.0145038 0.0113599 0)
(0.0101948 0.00812512 0)
(0.00691152 0.00556292 0)
(0.00449754 0.00363966 0)
(0.00279458 0.00226939 0)
(0.00164795 0.0013444 0)
(0.000913853 0.00075593 0)
(0.000466059 0.000407612 0)
(0.00019847 0.000224333 0)
(1.93664e-05 0.000161075 0)
(0.0104062 -0.124271 0)
(0.0233743 -0.122538 0)
(0.0373237 -0.119106 0)
(0.0519692 -0.11357 0)
(0.066846 -0.105542 0)
(0.0812793 -0.0947248 0)
(0.0943782 -0.0810095 0)
(0.105084 -0.0645923 0)
(0.11228 -0.0461151 0)
(0.115023 -0.0267072 0)
(0.11282 -0.00793773 0)
(0.105892 0.00847953 0)
(0.0952078 0.0211029 0)
(0.0822639 0.0291665 0)
(0.0686512 0.0327455 0)
(0.0556548 0.0326069 0)
(0.04405 0.0298706 0)
(0.0341409 0.0256652 0)
(0.0259219 0.020915 0)
(0.0192439 0.0162684 0)
(0.0139199 0.0121178 0)
(0.00976698 0.00865263 0)
(0.00661487 0.00591854 0)
(0.00430221 0.00387044 0)
(0.00267253 0.0024127 0)
(0.00157586 0.00142914 0)
(0.000873916 0.000803536 0)
(0.000445779 0.000433276 0)
(0.000189933 0.000238477 0)
(1.84967e-05 0.000170972 0)
(0.0117931 -0.140758 0)
(0.0264742 -0.138681 0)
(0.0422269 -0.134573 0)
(0.0586913 -0.12796 0)
(0.0752935 -0.1184 0)
(0.0912152 -0.105572 0)
(0.105393 -0.089395 0)
(0.116586 -0.0701666 0)
(0.12352 -0.0487308 0)
(0.125185 -0.0265124 0)
(0.121183 -0.00542244 0)
(0.11201 0.0125473 0)
(0.0990222 0.0258566 0)
(0.0840866 0.0338543 0)
(0.0690134 0.0368768 0)
(0.0551245 0.0359742 0)
(0.0430974 0.0324754 0)
(0.0330866 0.0276152 0)
(0.0249489 0.0223446 0)
(0.0184348 0.0172995 0)
(0.0132945 0.0128485 0)
(0.00931124 0.00915863 0)
(0.00629971 0.0062587 0)
(0.004095 0.00409084 0)
(0.00254315 0.00254946 0)
(0.00149945 0.00150998 0)
(0.000831596 0.000848943 0)
(0.000424291 0.000457753 0)
(0.000180892 0.000251973 0)
(1.75715e-05 0.000180403 0)
(0.0134602 -0.159502 0)
(0.0301965 -0.157001 0)
(0.0481031 -0.152062 0)
(0.0667238 -0.144133 0)
(0.0853481 -0.132713 0)
(0.102982 -0.117462 0)
(0.118354 -0.0983431 0)
(0.130006 -0.075791 0)
(0.136481 -0.0509082 0)
(0.136709 -0.025495 0)
(0.130443 -0.00188111 0)
(0.118556 0.0176378 0)
(0.102897 0.0314579 0)
(0.0857516 0.0391352 0)
(0.0691382 0.0413562 0)
(0.0543661 0.0395056 0)
(0.0419633 0.035131 0)
(0.0319016 0.0295582 0)
(0.023886 0.0237445 0)
(0.0175651 0.0182967 0)
(0.0126285 0.0135493 0)
(0.00882846 0.00964152 0)
(0.00596679 0.00658238 0)
(0.00387642 0.00430024 0)
(0.00240677 0.0026793 0)
(0.00141894 0.00158669 0)
(0.000787008 0.000892025 0)
(0.000401652 0.000480976 0)
(0.000171371 0.000264781 0)
(1.65907e-05 0.000189341 0)
(0.0154758 -0.180966 0)
(0.03469 -0.177935 0)
(0.0551786 -0.171964 0)
(0.0763601 -0.16241 0)
(0.0973533 -0.148715 0)
(0.116951 -0.13053 0)
(0.133635 -0.107883 0)
(0.145685 -0.0813843 0)
(0.151432 -0.0524689 0)
(0.149753 -0.0234164 0)
(0.140641 0.00293087 0)
(0.125479 0.0239377 0)
(0.106737 0.0380174 0)
(0.0871654 0.0450533 0)
(0.0689572 0.0461874 0)
(0.0533393 0.0431885 0)
(0.0406283 0.0378229 0)
(0.0305781 0.0314833 0)
(0.0227314 0.0251075 0)
(0.0166352 0.0192557 0)
(0.011923 0.0142177 0)
(0.00831966 0.0100998 0)
(0.00561692 0.00688864 0)
(0.00364704 0.00449806 0)
(0.00226375 0.00280185 0)
(0.00133453 0.00165906 0)
(0.000740271 0.000932666 0)
(0.000377925 0.000502883 0)
(0.000161397 0.000276867 0)
(1.55539e-05 0.000197757 0)
(0.0179314 -0.205723 0)
(0.0401519 -0.202019 0)
(0.0637485 -0.194747 0)
(0.0879746 -0.183169 0)
(0.111737 -0.166675 0)
(0.133578 -0.144923 0)
(0.151687 -0.118031 0)
(0.164033 -0.086829 0)
(0.168687 -0.0531752 0)
(0.164489 -0.0199706 0)
(0.151793 0.00930341 0)
(0.132689 0.0316626 0)
(0.110414 0.0456501 0)
(0.088215 0.0516445 0)
(0.0683943 0.051364 0)
(0.0520024 0.047003 0)
(0.0390736 0.0405328 0)
(0.0291097 0.0333777 0)
(0.0214839 0.0264259 0)
(0.0156459 0.0201719 0)
(0.0111792 0.014851 0)
(0.00778604 0.0105317 0)
(0.005251 0.00717651 0)
(0.00340748 0.00468371 0)
(0.00211448 0.00291676 0)
(0.00124647 0.0017269 0)
(0.000691517 0.000970753 0)
(0.000353173 0.000523412 0)
(0.000151 0.000288198 0)
(1.44597e-05 0.000205626 0)
(0.0209544 -0.234504 0)
(0.0468532 -0.229926 0)
(0.0742069 -0.220983 0)
(0.10205 -0.206852 0)
(0.129035 -0.186893 0)
(0.153419 -0.160796 0)
(0.17306 -0.128788 0)
(0.185549 -0.0919626 0)
(0.188621 -0.0527145 0)
(0.181102 -0.0147649 0)
(0.163892 0.0176004 0)
(0.140053 0.0410582 0)
(0.113763 0.0544712 0)
(0.0887671 0.0589326 0)
(0.067366 0.0568667 0)
(0.0503133 0.0509211 0)
(0.037282 0.0432381 0)
(0.0274912 0.035227 0)
(0.0201432 0.0276912 0)
(0.0145986 0.0210406 0)
(0.0103987 0.0154467 0)
(0.00722886 0.010936 0)
(0.00486997 0.00744511 0)
(0.00315837 0.00485665 0)
(0.00195938 0.00302372 0)
(0.00115499 0.00179001 0)
(0.000640877 0.00100618 0)
(0.000327466 0.000542506 0)
(0.000140209 0.000298741 0)
(1.33051e-05 0.00021292 0)
(0.0247351 -0.268263 0)
(0.0551854 -0.262503 0)
(0.0870946 -0.251359 0)
(0.119215 -0.23396 0)
(0.149909 -0.209692 0)
(0.177144 -0.178307 0)
(0.198419 -0.14014 0)
(0.210844 -0.0965685 0)
(0.211692 -0.050669 0)
(0.19979 -0.00728142 0)
(0.17688 0.0282689 0)
(0.147373 0.0524008 0)
(0.116572 0.0645895 0)
(0.0886664 0.0669225 0)
(0.065783 0.0626612 0)
(0.0482309 0.0549053 0)
(0.0352388 0.0459123 0)
(0.025719 0.0370151 0)
(0.0187099 0.0288945 0)
(0.0134949 0.021857 0)
(0.00958316 0.0160021 0)
(0.00664951 0.0113111 0)
(0.00447481 0.00769359 0)
(0.00290038 0.00501638 0)
(0.00179884 0.00312241 0)
(0.00106033 0.00184822 0)
(0.000588489 0.00103885 0)
(0.000300873 0.000560114 0)
(0.000129054 0.00030847 0)
(1.20856e-05 0.000219612 0)
(0.0295878 -0.30829 0)
(0.0657523 -0.300822 0)
(0.103175 -0.286676 0)
(0.140289 -0.26503 0)
(0.175163 -0.235394 0)
(0.205545 -0.197615 0)
(0.228555 -0.152061 0)
(0.240668 -0.100373 0)
(0.238457 -0.0464815 0)
(0.220752 0.00315356 0)
(0.190623 0.0418559 0)
(0.154366 0.0659917 0)
(0.118577 0.0760952 0)
(0.0877354 0.0755926 0)
(0.0635524 0.0686932 0)
(0.045717 0.0589082 0)
(0.0329324 0.0485245 0)
(0.0237921 0.0387247 0)
(0.017186 0.0300267 0)
(0.0123373 0.0226164 0)
(0.00873462 0.0165147 0)
(0.00604949 0.0116555 0)
(0.00406659 0.00792116 0)
(0.0026342 0.00516242 0)
(0.00163332 0.00321256 0)
(0.000962765 0.00190137 0)
(0.000534499 0.00106867 0)
(0.000273468 0.000576189 0)
(0.000117568 0.000317357 0)
(1.07941e-05 0.000225675 0)
(0.0361654 -0.356472 0)
(0.0795889 -0.346184 0)
(0.123534 -0.327828 0)
(0.166365 -0.300553 0)
(0.205721 -0.264261 0)
(0.239516 -0.218885 0)
(0.264399 -0.164534 0)
(0.275974 -0.103046 0)
(0.269622 -0.0394041 0)
(0.244168 0.0174391 0)
(0.204866 0.0590305 0)
(0.160635 0.0821468 0)
(0.119447 0.089045 0)
(0.0857768 0.0848859 0)
(0.0605807 0.0748866 0)
(0.0427385 0.0628716 0)
(0.0303556 0.0510403 0)
(0.0217114 0.0403374 0)
(0.0155743 0.0310783 0)
(0.0111285 0.0233139 0)
(0.00785531 0.0169821 0)
(0.00543042 0.0119681 0)
(0.0036464 0.00812706 0)
(0.00236056 0.00529433 0)
(0.00146327 0.00329391 0)
(0.000862554 0.00194931 0)
(0.000479052 0.00109556 0)
(0.000245326 0.000590686 0)
(0.000105783 0.000325375 0)
(9.42006e-06 0.000231079 0)
(0.0463573 -0.416074 0)
(0.098446 -0.399532 0)
(0.1494 -0.375994 0)
(0.198934 -0.340722 0)
(0.242445 -0.296403 0)
(0.280027 -0.242345 0)
(0.306992 -0.177592 0)
(0.318006 -0.104259 0)
(0.306119 -0.028387 0)
(0.270133 0.0367969 0)
(0.219164 0.0805967 0)
(0.165631 0.101174 0)
(0.118784 0.103439 0)
(0.0825783 0.0946993 0)
(0.0567787 0.0811401 0)
(0.0392702 0.0667269 0)
(0.0275067 0.0534223 0)
(0.0194807 0.0418342 0)
(0.0138791 0.0320399 0)
(0.00987204 0.023945 0)
(0.0069477 0.0174019 0)
(0.00479401 0.0122476 0)
(0.0032154 0.00831063 0)
(0.0020802 0.00541173 0)
(0.00128913 0.00336623 0)
(0.000759969 0.00199191 0)
(0.000422299 0.00111945 0)
(0.000216522 0.000603569 0)
(9.37322e-05 0.000332503 0)
(7.94881e-06 0.000235797 0)
(0.0589833 -0.491484 0)
(0.113062 -0.459559 0)
(0.176007 -0.438364 0)
(0.235924 -0.38503 0)
(0.284424 -0.331981 0)
(0.32825 -0.26851 0)
(0.357307 -0.19133 0)
(0.368498 -0.10386 0)
(0.349272 -0.011822 0)
(0.298588 0.0629127 0)
(0.23278 0.10749 0)
(0.168617 0.123331 0)
(0.11612 0.11919 0)
(0.0779226 0.104871 0)
(0.0520673 0.087324 0)
(0.0352985 0.0703947 0)
(0.0243904 0.0556307 0)
(0.0171071 0.0431959 0)
(0.0121062 0.0329024 0)
(0.00857188 0.0245052 0)
(0.00601456 0.0177719 0)
(0.00414212 0.0124927 0)
(0.00277482 0.00847122 0)
(0.00179391 0.00551426 0)
(0.00111141 0.00342931 0)
(0.000655293 0.00202905 0)
(0.000364399 0.00114027 0)
(0.000187138 0.0006148 0)
(8.14498e-05 0.000338717 0)
(6.36067e-06 0.000239796 0)
(0.0215772 -0.543268 0)
(0.0240372 -0.511481 0)
(0.0428257 -0.535331 0)
(0.197373 -0.466002 0)
(0.301138 -0.381904 0)
(0.383378 -0.300171 0)
(0.414934 -0.205968 0)
(0.430245 -0.102458 0)
(0.400996 0.0129299 0)
(0.329031 0.0981 0)
(0.244545 0.140738 0)
(0.168632 0.14876 0)
(0.110924 0.136083 0)
(0.0716034 0.115175 0)
(0.0463837 0.0932802 0)
(0.0308246 0.0737872 0)
(0.0210186 0.057625 0)
(0.0146003 0.0444035 0)
(0.0102623 0.0336568 0)
(0.00723263 0.0249903 0)
(0.00505886 0.0180901 0)
(0.00347668 0.0127027 0)
(0.0023259 0.00860829 0)
(0.00150248 0.00560158 0)
(0.00093059 0.00348295 0)
(0.000548814 0.00206062 0)
(0.00030551 0.00115797 0)
(0.000157254 0.00062435 0)
(6.89685e-05 0.000343997 0)
(4.62961e-06 0.000243045 0)
(0.0297267 -0.560688 0)
(0.115566 -0.53171 0)
(0.234642 -0.562005 0)
(0.20437 -0.588735 0)
(0.267879 -0.491511 0)
(0.404507 -0.361091 0)
(0.469864 -0.226479 0)
(0.509004 -0.103022 0)
(0.463856 0.0510998 0)
(0.360022 0.145395 0)
(0.252693 0.181352 0)
(0.164459 0.177388 0)
(0.102625 0.153733 0)
(0.0634498 0.12531 0)
(0.039688 0.0988215 0)
(0.0258689 0.07681 0)
(0.0174108 0.0593655 0)
(0.0119735 0.0454393 0)
(0.00835583 0.0342952 0)
(0.00585935 0.0253968 0)
(0.00408375 0.0183549 0)
(0.0027997 0.0128764 0)
(0.00186992 0.00872137 0)
(0.00120671 0.00567342 0)
(0.00074716 0.00352701 0)
(0.000440816 0.00208654 0)
(0.000245792 0.00117248 0)
(0.000126951 0.000632193 0)
(5.63197e-05 0.000348327 0)
(2.72383e-06 0.000245508 0)
(0.0510526 -0.643953 0)
(0.127624 -0.641336 0)
(0.198679 -0.633928 0)
(0.256339 -0.603002 0)
(0.3916 -0.572065 0)
(0.474416 -0.40941 0)
(0.602951 -0.280381 0)
(0.624952 -0.109773 0)
(0.539484 0.124143 0)
(0.387334 0.209101 0)
(0.254552 0.23001 0)
(0.154641 0.208797 0)
(0.0906446 0.171525 0)
(0.0533666 0.134914 0)
(0.0319675 0.103729 0)
(0.0204763 0.079367 0)
(0.0135944 0.0608152 0)
(0.00924283 0.0462867 0)
(0.00639609 0.0348103 0)
(0.00445767 0.0257213 0)
(0.00309262 0.0185646 0)
(0.00211328 0.0130133 0)
(0.00140821 0.00881008 0)
(0.000907436 0.00572957 0)
(0.000561629 0.00356134 0)
(0.000331596 0.00210673 0)
(0.000185409 0.00118379 0)
(9.63119e-05 0.000638308 0)
(4.35337e-05 0.00035169 0)
(6.05529e-07 0.000247151 0)
(0.0588984 -0.734402 0)
(0.133243 -0.729684 0)
(0.217278 -0.711972 0)
(0.322032 -0.709373 0)
(0.460162 -0.671916 0)
(0.582683 -0.517653 0)
(0.814284 -0.398389 0)
(0.794477 -0.0691526 0)
(0.457882 0.274767 0)
(0.409739 0.297986 0)
(0.239781 0.285715 0)
(0.137388 0.242277 0)
(0.0744352 0.188666 0)
(0.0414004 0.143646 0)
(0.0232382 0.10775 0)
(0.0147206 0.0813713 0)
(0.00960367 0.0619435 0)
(0.00642702 0.0469319 0)
(0.00439355 0.0351961 0)
(0.00303354 0.0259611 0)
(0.00208898 0.018718 0)
(0.00141958 0.0131126 0)
(0.000942112 0.00887411 0)
(0.000605494 0.00576985 0)
(0.0003745 0.00358586 0)
(0.000221448 0.00212113 0)
(0.000124525 0.00119185 0)
(6.54202e-05 0.000642678 0)
(3.06382e-05 0.000354071 0)
(-1.76917e-06 0.000247945 0)
(0.0668764 -0.832349 0)
(0.145264 -0.823271 0)
(0.243165 -0.83898 0)
(0.345659 -0.820637 0)
(0.427036 -0.740585 0)
(0.711015 -0.787195 0)
(0.653022 -0.461311 0)
(0.814675 0.120776 0)
(0.528013 0.321621 0)
(0.404395 0.396896 0)
(0.216549 0.354249 0)
(0.103901 0.27583 0)
(0.051616 0.204366 0)
(0.0278875 0.152088 0)
(0.013556 0.111111 0)
(0.00871542 0.083146 0)
(0.00548069 0.0629858 0)
(0.00354938 0.0475294 0)
(0.00236072 0.0355493 0)
(0.001594 0.0261727 0)
(0.00107682 0.0188458 0)
(0.000720982 0.0131895 0)
(0.000473093 0.00891979 0)
(0.000301779 0.00579635 0)
(0.000186304 0.0036009 0)
(0.000110692 0.00212948 0)
(6.33228e-05 0.00119639 0)
(3.43718e-05 0.000645087 0)
(1.76672e-05 0.000355335 0)
(4.2804e-06 0.000246042 0)
(-0.000104524 0.00030435 0)
(-0.000130997 0.000537472 0)
(-0.000166366 0.00100444 0)
(-0.000210325 0.00181313 0)
(-0.000259433 0.00310545 0)
(-0.000313397 0.00504402 0)
(-0.000375246 0.00779973 0)
(-0.000447205 0.0115449 0)
(-0.000533542 0.0164876 0)
(-0.000643979 0.0229176 0)
(-0.000805588 0.0312775 0)
(-0.001072 0.0422909 0)
(-0.00155099 0.0571108 0)
(-0.00258862 0.0765454 0)
(-0.00475657 0.102173 0)
(-0.0187644 0.143834 0)
(-0.0185137 0.196485 0)
(-0.0492852 0.279044 0)
(-0.169037 0.386197 0)
(-0.356344 0.486107 0)
(-0.645204 0.499552 0)
(-0.962702 -0.065812 0)
(-0.367236 -0.326288 0)
(-0.288365 -0.625681 0)
(-0.443348 -0.804153 0)
(-0.492616 -0.891433 0)
(-0.469106 -0.926858 0)
(-0.393004 -0.940698 0)
(-0.23285 -0.959547 0)
(-0.0306336 -0.975656 0)
(-0.0031615 0.000315808 0)
(-0.00383633 0.00056028 0)
(-0.00467125 0.00104435 0)
(-0.00579606 0.00187714 0)
(-0.00722835 0.00320999 0)
(-0.00906346 0.00521866 0)
(-0.0114582 0.00810634 0)
(-0.0146569 0.0120744 0)
(-0.0184026 0.0173093 0)
(-0.0224142 0.0242209 0)
(-0.0285971 0.033253 0)
(-0.0402829 0.0446153 0)
(-0.0570151 0.0599101 0)
(-0.219634 0.0821889 0)
(-0.0800905 0.0993436 0)
(-0.112117 0.136545 0)
(-0.0245101 0.196396 0)
(0.00911307 0.291943 0)
(-0.100289 0.421013 0)
(-0.319935 0.545027 0)
(-0.524924 0.512124 0)
(-0.624353 0.179443 0)
(-0.314781 -0.441403 0)
(-0.10631 -0.618824 0)
(-0.174993 -0.738754 0)
(-0.304867 -0.868146 0)
(-0.358196 -0.934577 0)
(-0.311371 -0.994666 0)
(-0.209673 -1.07514 0)
(-0.0273053 -1.11878 0)
(-0.00462544 0.000327956 0)
(-0.00569324 0.000592046 0)
(-0.00703692 0.00110543 0)
(-0.00890108 0.00197515 0)
(-0.0113327 0.00335898 0)
(-0.0145082 0.00542329 0)
(-0.0187129 0.00838677 0)
(-0.0244763 0.0125027 0)
(-0.0322672 0.017869 0)
(-0.0427081 0.0249827 0)
(-0.0591475 0.0347175 0)
(-0.0907735 0.0480697 0)
(-0.170501 0.071096 0)
(-0.59798 0.259014 0)
(-1.97115 0.168228 0)
(-1.55276 -0.059821 0)
(-0.512113 0.171161 0)
(-0.418332 0.25313 0)
(0.00105594 0.461776 0)
(-0.289292 0.626807 0)
(-0.528171 0.579184 0)
(-0.45486 -0.0594657 0)
(-0.307118 -0.527611 0)
(-0.0456379 -0.664956 0)
(0.0339505 -0.700932 0)
(-0.0319067 -0.822497 0)
(-0.0789307 -0.921048 0)
(-0.0899613 -1.02983 0)
(-0.0675709 -1.11121 0)
(0.00121389 -1.19756 0)
(-0.00507883 0.000345642 0)
(-0.00623571 0.000635401 0)
(-0.00772782 0.00119018 0)
(-0.00981047 0.0021125 0)
(-0.0125568 0.00357055 0)
(-0.0161776 0.00571951 0)
(-0.0209958 0.00879697 0)
(-0.0276048 0.0131412 0)
(-0.0366104 0.0187763 0)
(-0.048896 0.0263809 0)
(-0.0687227 0.0374905 0)
(-0.107266 0.0546376 0)
(-0.203709 0.0934905 0)
(-0.545798 0.416582 0)
(-2.33474 0.410602 0)
(-1.57067 -0.373141 0)
(-0.861793 0.0847093 0)
(-0.499044 0.173524 0)
(-0.177277 0.384251 0)
(-0.31573 0.736149 0)
(-0.658441 0.65921 0)
(-0.65531 0.0601402 0)
(-0.253957 -0.682925 0)
(-0.0471522 -0.737273 0)
(0.0971746 -0.728046 0)
(0.142748 -0.799963 0)
(0.128946 -0.911449 0)
(0.106219 -1.03774 0)
(0.0855207 -1.10516 0)
(0.0026024 -1.19284 0)
(-0.00518852 0.000366404 0)
(-0.00630819 0.000687403 0)
(-0.00783878 0.00128949 0)
(-0.00996923 0.0022694 0)
(-0.0127921 0.00380889 0)
(-0.0165135 0.00605769 0)
(-0.021432 0.00926864 0)
(-0.0280858 0.0138745 0)
(-0.0371638 0.0198404 0)
(-0.0496417 0.0280614 0)
(-0.0698396 0.0408004 0)
(-0.108612 0.0623503 0)
(-0.20105 0.117921 0)
(-0.419115 0.492627 0)
(-1.37106 0.561981 0)
(-0.900081 -0.554725 0)
(-0.611439 0.0444471 0)
(-0.609949 0.123492 0)
(-0.501006 0.306187 0)
(-0.306671 0.876545 0)
(-0.66198 0.666007 0)
(-0.900726 -0.111002 0)
(-0.29846 -0.83533 0)
(-0.0473691 -0.818466 0)
(0.0945544 -0.789851 0)
(0.183528 -0.817853 0)
(0.205392 -0.907182 0)
(0.184055 -0.999708 0)
(0.124386 -1.06335 0)
(0.0180285 -1.10925 0)
(-0.00522075 0.000388918 0)
(-0.00627684 0.000747711 0)
(-0.0078254 0.00140046 0)
(-0.00996933 0.00243855 0)
(-0.012815 0.00405861 0)
(-0.0165461 0.00641474 0)
(-0.0214171 0.0097686 0)
(-0.0278724 0.0146382 0)
(-0.0366459 0.02097 0)
(-0.0488164 0.0298821 0)
(-0.0684138 0.0443182 0)
(-0.104899 0.070318 0)
(-0.184112 0.13991 0)
(-0.284977 0.493883 0)
(-0.17935 0.616433 0)
(-0.302838 -0.552208 0)
(-0.429471 0.0375371 0)
(-0.492248 0.134555 0)
(-0.459189 0.309004 0)
(-0.465047 0.954969 0)
(-0.639566 0.672657 0)
(-0.907289 -0.748417 0)
(-0.277362 -0.998726 0)
(-0.0273028 -0.904569 0)
(0.093773 -0.850198 0)
(0.166812 -0.852842 0)
(0.193796 -0.910003 0)
(0.177617 -0.967475 0)
(0.116776 -0.993523 0)
(0.0171792 -0.999545 0)
(-0.00523628 0.000413276 0)
(-0.00623566 0.000816259 0)
(-0.00779671 0.00152209 0)
(-0.00994802 0.00261865 0)
(-0.0127987 0.00431653 0)
(-0.0165053 0.00678434 0)
(-0.0212783 0.0102884 0)
(-0.0274726 0.0154144 0)
(-0.0358152 0.0221396 0)
(-0.0474823 0.031799 0)
(-0.0660122 0.0479261 0)
(-0.0989398 0.0780563 0)
(-0.160877 0.157091 0)
(-0.175162 0.456118 0)
(0.490146 0.543587 0)
(0.0101282 -0.380675 0)
(-0.345968 0.0572628 0)
(-0.459588 0.148622 0)
(-0.623635 0.503352 0)
(-0.599552 0.766308 0)
(-0.712165 0.761389 0)
(-0.608974 -1.2422 0)
(-0.184506 -1.20624 0)
(0.025711 -0.983821 0)
(0.108256 -0.896254 0)
(0.148691 -0.878939 0)
(0.156746 -0.908832 0)
(0.129677 -0.934991 0)
(0.0801817 -0.928056 0)
(0.0118371 -0.906659 0)
(-0.00524348 0.000440112 0)
(-0.00619824 0.000892829 0)
(-0.00776596 0.0016538 0)
(-0.00992126 0.00280996 0)
(-0.0127604 0.00458396 0)
(-0.0164141 0.00716619 0)
(-0.0210531 0.0108277 0)
(-0.0269554 0.0162006 0)
(-0.0347934 0.0233349 0)
(-0.0458035 0.0337678 0)
(-0.0628737 0.0515055 0)
(-0.0912753 0.0851294 0)
(-0.134662 0.168387 0)
(-0.0949583 0.405244 0)
(0.449446 0.403072 0)
(0.0852787 -0.183721 0)
(-0.283152 0.107223 0)
(-0.494181 0.190144 0)
(-0.507415 0.371263 0)
(-0.765488 0.910456 0)
(-0.672761 1.14377 0)
(-0.113812 -1.4436 0)
(0.0544781 -1.34266 0)
(0.116006 -1.0306 0)
(0.139213 -0.919304 0)
(0.143171 -0.885928 0)
(0.126812 -0.892254 0)
(0.0877984 -0.897389 0)
(0.0442779 -0.878161 0)
(0.00634383 -0.849784 0)
(-0.00524233 0.000470147 0)
(-0.00616374 0.000977315 0)
(-0.00773112 0.00179534 0)
(-0.0098853 0.00301288 0)
(-0.0126934 0.00486336 0)
(-0.0162667 0.00756137 0)
(-0.0207375 0.011386 0)
(-0.0263171 0.0169958 0)
(-0.03359 0.0245427 0)
(-0.0437796 0.0357437 0)
(-0.059009 0.0549309 0)
(-0.0821137 0.0911379 0)
(-0.107658 0.173674 0)
(-0.0404357 0.352667 0)
(0.308109 0.311123 0)
(0.0930425 -0.0315708 0)
(-0.215551 0.179719 0)
(-0.567089 0.233765 0)
(-0.927717 0.422356 0)
(-1.2282 1.03864 0)
(0.715148 0.448607 0)
(0.854667 -1.43396 0)
(0.343634 -1.29081 0)
(0.224805 -1.01923 0)
(0.181759 -0.911372 0)
(0.150525 -0.870623 0)
(0.113885 -0.859738 0)
(0.0682752 -0.853134 0)
(0.026792 -0.838727 0)
(0.00369778 -0.822683 0)
(-0.00523231 0.000504024 0)
(-0.00613037 0.00106971 0)
(-0.00769068 0.00194657 0)
(-0.00983473 0.00322766 0)
(-0.0125919 0.00515679 0)
(-0.0160586 0.00797085 0)
(-0.0203266 0.011961 0)
(-0.0255483 0.0177951 0)
(-0.0322008 0.0257447 0)
(-0.0413944 0.0376728 0)
(-0.0544268 0.0580593 0)
(-0.0717311 0.0957368 0)
(-0.0815867 0.173517 0)
(-0.00508752 0.304203 0)
(0.217214 0.260403 0)
(0.0945042 0.0727268 0)
(-0.126883 0.257472 0)
(-0.723403 0.515435 0)
(-1.47394 0.711434 0)
(-0.75904 0.319367 0)
(0.62871 0.737829 0)
(1.18855 -1.14249 0)
(0.528301 -1.09292 0)
(0.31762 -0.948009 0)
(0.225091 -0.870392 0)
(0.166608 -0.833671 0)
(0.117192 -0.816332 0)
(0.0709582 -0.805043 0)
(0.0310114 -0.800317 0)
(0.00432093 -0.800496 0)
(-0.00521265 0.000542148 0)
(-0.00609504 0.00117 0)
(-0.00764324 0.00210735 0)
(-0.00976438 0.00345434 0)
(-0.0124528 0.00546541 0)
(-0.0157886 0.00839478 0)
(-0.019819 0.012548 0)
(-0.0246431 0.0185887 0)
(-0.0306188 0.0269158 0)
(-0.0386397 0.03949 0)
(-0.04917 0.0607375 0)
(-0.0604969 0.0986735 0)
(-0.0576524 0.16891 0)
(0.0173575 0.262509 0)
(0.162435 0.230641 0)
(0.100893 0.139278 0)
(-0.0162542 0.305735 0)
(0.115251 0.829906 0)
(-0.177856 0.680634 0)
(0.652251 -0.0827762 0)
(0.894847 -0.142993 0)
(0.966867 -0.746804 0)
(0.577646 -0.874262 0)
(0.370562 -0.840344 0)
(0.257513 -0.802905 0)
(0.183686 -0.779357 0)
(0.127211 -0.765489 0)
(0.0814161 -0.756567 0)
(0.0429448 -0.755452 0)
(0.00603888 -0.759147 0)
(-0.00518062 0.000584737 0)
(-0.00605143 0.00127826 0)
(-0.00758281 0.00227753 0)
(-0.0096663 0.00369298 0)
(-0.0122706 0.00578943 0)
(-0.0154517 0.00883187 0)
(-0.0192107 0.0131401 0)
(-0.0235949 0.0193628 0)
(-0.0288324 0.028024 0)
(-0.0355177 0.041119 0)
(-0.0433191 0.0628125 0)
(-0.0488294 0.09981 0)
(-0.0365103 0.160999 0)
(0.0318977 0.227759 0)
(0.131403 0.210372 0)
(0.113312 0.175189 0)
(0.0861583 0.307513 0)
(0.306783 0.591176 0)
(1.03029 0.351741 0)
(0.847849 -0.139164 0)
(0.815948 -0.284394 0)
(0.759114 -0.557137 0)
(0.547064 -0.69814 0)
(0.382312 -0.724252 0)
(0.272209 -0.720516 0)
(0.19427 -0.713027 0)
(0.13439 -0.707321 0)
(0.085822 -0.704283 0)
(0.044222 -0.702609 0)
(0.00580174 -0.700886 0)
(-0.00513533 0.000631988 0)
(-0.00599645 0.00139472 0)
(-0.00750448 0.00245717 0)
(-0.00953559 0.0039439 0)
(-0.0120414 0.00612827 0)
(-0.015043 0.009279 0)
(-0.0184986 0.0137282 0)
(-0.0223983 0.020101 0)
(-0.0268314 0.0290316 0)
(-0.0320446 0.042475 0)
(-0.0369929 0.0641436 0)
(-0.0371524 0.0991295 0)
(-0.0183581 0.150855 0)
(0.0419952 0.198883 0)
(0.115758 0.193261 0)
(0.128523 0.18661 0)
(0.159859 0.275841 0)
(0.36507 0.393624 0)
(0.717391 0.221518 0)
(0.733144 -0.0974281 0)
(0.692123 -0.276233 0)
(0.618708 -0.453019 0)
(0.487692 -0.568433 0)
(0.364915 -0.616899 0)
(0.269049 -0.634214 0)
(0.194914 -0.640007 0)
(0.135445 -0.641932 0)
(0.0856622 -0.642663 0)
(0.042546 -0.643103 0)
(0.00523527 -0.643356 0)
(-0.00507806 0.000684037 0)
(-0.00593 0.00151939 0)
(-0.00740632 0.00264654 0)
(-0.00937181 0.00420735 0)
(-0.0117649 0.00648031 0)
(-0.0145611 0.00973093 0)
(-0.0176826 0.0143002 0)
(-0.0210515 0.020784 0)
(-0.0246126 0.0298965 0)
(-0.028253 0.0434717 0)
(-0.030343 0.0646165 0)
(-0.0258492 0.0967202 0)
(-0.00308425 0.139326 0)
(0.0497051 0.174356 0)
(0.109393 0.175992 0)
(0.142253 0.179876 0)
(0.201897 0.228574 0)
(0.361643 0.256719 0)
(0.555044 0.126936 0)
(0.604693 -0.0828069 0)
(0.577105 -0.244823 0)
(0.513651 -0.378299 0)
(0.422971 -0.471339 0)
(0.33149 -0.523839 0)
(0.252211 -0.551163 0)
(0.186099 -0.565379 0)
(0.130609 -0.57304 0)
(0.0831347 -0.577294 0)
(0.0416829 -0.579396 0)
(0.00492165 -0.580017 0)
(-0.00500719 0.00074103 0)
(-0.00584851 0.00165185 0)
(-0.00728472 0.00284598 0)
(-0.00917284 0.0044831 0)
(-0.0114387 0.00684246 0)
(-0.0140056 0.0101801 0)
(-0.0167628 0.0148419 0)
(-0.0195571 0.0213888 0)
(-0.0221867 0.0305725 0)
(-0.0241981 0.0440264 0)
(-0.0235501 0.0641544 0)
(-0.015245 0.092749 0)
(0.00958333 0.127024 0)
(0.0560036 0.152726 0)
(0.107779 0.157218 0)
(0.151369 0.161306 0)
(0.218323 0.178653 0)
(0.33491 0.16375 0)
(0.45053 0.0623915 0)
(0.492491 -0.083832 0)
(0.47574 -0.214279 0)
(0.42684 -0.31932 0)
(0.360546 -0.395394 0)
(0.291166 -0.44467 0)
(0.226928 -0.47483 0)
(0.170206 -0.492997 0)
(0.12064 -0.503934 0)
(0.0771692 -0.510394 0)
(0.0387177 -0.513791 0)
(0.00437951 -0.514946 0)
(-0.00491894 0.000802888 0)
(-0.00574615 0.00179119 0)
(-0.00713352 0.00305536 0)
(-0.00893431 0.00477005 0)
(-0.0110572 0.00721012 0)
(-0.0133762 0.0106174 0)
(-0.0157413 0.0153369 0)
(-0.0179238 0.021888 0)
(-0.01958 0.0310098 0)
(-0.0199616 0.0440668 0)
(-0.016815 0.0627256 0)
(-0.00559793 0.0874332 0)
(0.0199157 0.114325 0)
(0.0611392 0.132884 0)
(0.107682 0.13687 0)
(0.154546 0.136475 0)
(0.217186 0.132827 0)
(0.300211 0.0996372 0)
(0.37207 0.0180996 0)
(0.400637 -0.0885213 0)
(0.389115 -0.189135 0)
(0.352457 -0.271844 0)
(0.302772 -0.333971 0)
(0.249337 -0.377364 0)
(0.197677 -0.406356 0)
(0.15016 -0.425253 0)
(0.107313 -0.43735 0)
(0.0689285 -0.444822 0)
(0.0345538 -0.448926 0)
(0.00373536 -0.450365 0)
(-0.00481124 0.000868974 0)
(-0.0056195 0.00193612 0)
(-0.00694847 0.00327368 0)
(-0.00865249 0.00506558 0)
(-0.0106157 0.00757715 0)
(-0.0126705 0.0110334 0)
(-0.0146205 0.0157688 0)
(-0.016165 0.0222527 0)
(-0.01683 0.031161 0)
(-0.0156446 0.0435404 0)
(-0.010339 0.060347 0)
(0.00290786 0.0810095 0)
(0.0281289 0.101448 0)
(0.0649785 0.114151 0)
(0.107012 0.115608 0)
(0.151951 0.109644 0)
(0.205242 0.0936513 0)
(0.263599 0.0546563 0)
(0.308751 -0.0118356 0)
(0.326006 -0.0919004 0)
(0.316444 -0.168592 0)
(0.288559 -0.233149 0)
(0.250677 -0.28325 0)
(0.209096 -0.319931 0)
(0.167714 -0.34575 0)
(0.128561 -0.363406 0)
(0.0924418 -0.37517 0)
(0.0595664 -0.382708 0)
(0.0298475 -0.38702 0)
(0.00308238 -0.388573 0)
(-0.0046843 0.00093796 0)
(-0.00546681 0.00208479 0)
(-0.00672794 0.00349822 0)
(-0.00832388 0.00536481 0)
(-0.0101106 0.00793505 0)
(-0.011886 0.0114164 0)
(-0.0134042 0.0161185 0)
(-0.0142994 0.0224518 0)
(-0.0139877 0.0309826 0)
(-0.0113664 0.0424179 0)
(-0.00431805 0.0570827 0)
(0.0101499 0.0737483 0)
(0.0343677 0.0885746 0)
(0.0672621 0.0962646 0)
(0.104645 0.0943961 0)
(0.144586 0.0836801 0)
(0.187287 0.0615721 0)
(0.227783 0.0229107 0)
(0.25589 -0.0314336 0)
(0.264978 -0.092644 0)
(0.256035 -0.151059 0)
(0.234171 -0.201027 0)
(0.204814 -0.240783 0)
(0.172234 -0.270808 0)
(0.139222 -0.292641 0)
(0.107402 -0.308024 0)
(0.0775768 -0.318564 0)
(0.0501029 -0.325546 0)
(0.025078 -0.329718 0)
(0.00246265 -0.331261 0)
(-0.00453738 0.00100921 0)
(-0.00528682 0.00223671 0)
(-0.00647178 0.00372691 0)
(-0.00794787 0.00566305 0)
(-0.00954347 0.00827558 0)
(-0.011026 0.0117533 0)
(-0.0121046 0.0163663 0)
(-0.0123553 0.0224555 0)
(-0.0111185 0.0304418 0)
(-0.00725526 0.0406979 0)
(0.00107004 0.0530303 0)
(0.0160261 0.0658783 0)
(0.0387166 0.0758796 0)
(0.0677869 0.0792718 0)
(0.10019 0.0741874 0)
(0.13375 0.0602598 0)
(0.166505 0.0361249 0)
(0.194109 0.000674127 0)
(0.211093 -0.0435659 0)
(0.214691 -0.0908153 0)
(0.206029 -0.135384 0)
(0.188395 -0.173797 0)
(0.165323 -0.204862 0)
(0.139702 -0.228798 0)
(0.113515 -0.246557 0)
(0.0880129 -0.259294 0)
(0.0638708 -0.268164 0)
(0.0414199 -0.27417 0)
(0.0207657 -0.277865 0)
(0.00195315 -0.279256 0)
(-0.00436731 0.00108199 0)
(-0.00507755 0.00239096 0)
(-0.00617927 0.00395681 0)
(-0.00752479 0.00595528 0)
(-0.00891771 0.00859096 0)
(-0.0100989 0.0120315 0)
(-0.0107403 0.0164945 0)
(-0.0103733 0.022239 0)
(-0.00830175 0.0295215 0)
(-0.00344271 0.0384103 0)
(0.00569113 0.0483518 0)
(0.0204933 0.0576544 0)
(0.0412504 0.0635624 0)
(0.0664998 0.0633878 0)
(0.0937547 0.0557317 0)
(0.120711 0.0401795 0)
(0.144929 0.0165072 0)
(0.163264 -0.014551 0)
(0.172931 -0.0503148 0)
(0.173034 -0.0869214 0)
(0.164718 -0.120948 0)
(0.150227 -0.150305 0)
(0.131911 -0.174258 0)
(0.111732 -0.192943 0)
(0.0910949 -0.206982 0)
(0.0709243 -0.217152 0)
(0.0517292 -0.224238 0)
(0.0337285 -0.228911 0)
(0.0169595 -0.2316 0)
(0.00151567 -0.23254 0)
(-0.00416984 0.00115583 0)
(-0.00483511 0.00254633 0)
(-0.00584735 0.00418467 0)
(-0.00705277 0.00623643 0)
(-0.00823584 0.00887331 0)
(-0.009115 0.0122379 0)
(-0.00933488 0.0164868 0)
(-0.00840177 0.021786 0)
(-0.00562582 0.0282242 0)
(-5.64835e-05 0.0356136 0)
(0.00942022 0.0431944 0)
(0.0235455 0.0493263 0)
(0.042069 0.0518475 0)
(0.06351 0.0488831 0)
(0.0857247 0.0395163 0)
(0.10655 0.0236608 0)
(0.123837 0.00184384 0)
(0.135564 -0.0245481 0)
(0.140447 -0.0532085 0)
(0.138461 -0.0815518 0)
(0.130663 -0.107492 0)
(0.118647 -0.129797 0)
(0.104009 -0.148059 0)
(0.0880904 -0.162398 0)
(0.0718598 -0.17324 0)
(0.0559697 -0.181094 0)
(0.0407965 -0.186453 0)
(0.0265367 -0.189724 0)
(0.0132787 -0.191306 0)
(0.00111865 -0.191748 0)
(-0.00394135 0.00122983 0)
(-0.00455589 0.00270129 0)
(-0.00547308 0.00440726 0)
(-0.00653147 0.00649981 0)
(-0.00750237 0.00911536 0)
(-0.0080885 0.0123624 0)
(-0.00791847 0.0163326 0)
(-0.00649683 0.0210919 0)
(-0.00318221 0.0265757 0)
(0.00280221 0.0324184 0)
(0.012185 0.0377509 0)
(0.0252193 0.0411399 0)
(0.0413196 0.0409637 0)
(0.0590596 0.0359943 0)
(0.0765994 0.025774 0)
(0.0921179 0.0105724 0)
(0.104005 -0.00871724 0)
(0.111091 -0.0306393 0)
(0.112912 -0.0533896 0)
(0.109808 -0.0752507 0)
(0.102691 -0.0949537 0)
(0.0927151 -0.111788 0)
(0.0809806 -0.125555 0)
(0.0684053 -0.136368 0)
(0.0556604 -0.144527 0)
(0.0432153 -0.150383 0)
(0.0313626 -0.154278 0)
(0.0202841 -0.156513 0)
(0.0100787 -0.157454 0)
(0.000797379 -0.15766 0)
(-0.00367815 0.00130347 0)
(-0.00423699 0.00285327 0)
(-0.00505387 0.00462114 0)
(-0.00596145 0.00674015 0)
(-0.00672384 0.00931053 0)
(-0.00703705 0.012398 0)
(-0.00652635 0.0160281 0)
(-0.00471911 0.0201674 0)
(-0.00105922 0.0246255 0)
(0.00503828 0.0289302 0)
(0.013955 0.0322192 0)
(0.0255964 0.0333259 0)
(0.0392035 0.0311128 0)
(0.0534714 0.024871 0)
(0.0668832 0.0145224 0)
(0.0780392 0.000580191 0)
(0.0858664 -0.0159679 0)
(0.0897718 -0.0338499 0)
(0.0897212 -0.0517332 0)
(0.0861677 -0.068495 0)
(0.0798591 -0.0833716 0)
(0.071636 -0.0959726 0)
(0.0622665 -0.106227 0)
(0.0523887 -0.114254 0)
(0.0424746 -0.120283 0)
(0.0328619 -0.124574 0)
(0.023765 -0.127382 0)
(0.0153155 -0.128946 0)
(0.00757453 -0.129567 0)
(0.000558457 -0.129684 0)
(-0.0033767 0.00137568 0)
(-0.00387512 0.00300021 0)
(-0.00458769 0.00482203 0)
(-0.00534439 0.00695243 0)
(-0.00590927 0.00945353 0)
(-0.00598166 0.0123427 0)
(-0.00519774 0.015579 0)
(-0.00313001 0.0190418 0)
(0.000669325 0.0224482 0)
(0.00659147 0.0252927 0)
(0.0147409 0.0267992 0)
(0.0247999 0.0260912 0)
(0.0359616 0.0224484 0)
(0.0470971 0.0155621 0)
(0.0570225 0.00562339 0)
(0.0647472 -0.00674316 0)
(0.069628 -0.0206212 0)
(0.0714373 -0.0349957 0)
(0.07034 -0.0489271 0)
(0.0667872 -0.0616964 0)
(0.0613712 -0.072858 0)
(0.054704 -0.0822158 0)
(0.0473231 -0.0897778 0)
(0.0396685 -0.0956663 0)
(0.0320638 -0.100073 0)
(0.0247423 -0.103202 0)
(0.0178501 -0.105247 0)
(0.0114755 -0.106381 0)
(0.00565582 -0.106822 0)
(0.000392977 -0.106898 0)
(-0.0030333 0.00144529 0)
(-0.00346721 0.00313907 0)
(-0.00407291 0.00500657 0)
(-0.00468304 0.0071328 0)
(-0.00506939 0.00954194 0)
(-0.00494495 0.0122 0)
(-0.0039721 0.0150044 0)
(-0.00178674 0.0177629 0)
(0.00194773 0.0201466 0)
(0.00743396 0.0216587 0)
(0.0145926 0.0216773 0)
(0.0229861 0.0196037 0)
(0.0318512 0.0150575 0)
(0.0402672 0.00801684 0)
(0.0473627 -0.00117041 0)
(0.0524965 -0.0118689 0)
(0.0553269 -0.0233129 0)
(0.055836 -0.0347406 0)
(0.0542595 -0.045516 0)
(0.050994 -0.0551955 0)
(0.046495 -0.0635347 0)
(0.0412044 -0.0704544 0)
(0.0354969 -0.0760045 0)
(0.0296725 -0.0803018 0)
(0.0239452 -0.0835018 0)
(0.0184638 -0.0857622 0)
(0.0133176 -0.0872324 0)
(0.00855981 -0.0880476 0)
(0.00421239 -0.0883663 0)
(0.000276584 -0.0884204 0)
(-0.00264432 0.0015104 0)
(-0.00301033 0.00326681 0)
(-0.00350845 0.00517068 0)
(-0.00398081 0.00727861 0)
(-0.00421534 0.00957769 0)
(-0.00394936 0.011983 0)
(-0.00288658 0.014337 0)
(-0.000737181 0.0163988 0)
(0.00273072 0.0178268 0)
(0.00757207 0.0181857 0)
(0.0135936 0.0170217 0)
(0.0203302 0.0139869 0)
(0.0271208 0.00896089 0)
(0.0332592 0.00210756 0)
(0.0381472 -0.00615583 0)
(0.0413984 -0.01526 0)
(0.0428729 -0.0245966 0)
(0.0426523 -0.0336254 0)
(0.0409759 -0.0419321 0)
(0.0381649 -0.0492576 0)
(0.0345555 -0.0554841 0)
(0.0304592 -0.0606012 0)
(0.0261308 -0.0646772 0)
(0.0217716 -0.0678163 0)
(0.0175234 -0.0701424 0)
(0.0134847 -0.0717748 0)
(0.00971185 -0.0728198 0)
(0.0062351 -0.0733709 0)
(0.00306215 -0.0735526 0)
(0.000189564 -0.0735645 0)
(-0.00220617 0.00156896 0)
(-0.00250165 0.00338011 0)
(-0.00289342 0.00531058 0)
(-0.0032407 0.00738986 0)
(-0.00335678 0.00956794 0)
(-0.00301459 0.0117134 0)
(-0.00197058 0.0136256 0)
(-1.06744e-05 0.0150328 0)
(0.00300831 0.0156178 0)
(0.00704061 0.0150265 0)
(0.0118484 0.0129739 0)
(0.0170044 0.00931764 0)
(0.0219816 0.00412147 0)
(0.0262728 -0.00234563 0)
(0.0294946 -0.00966093 0)
(0.0314383 -0.017346 0)
(0.0320761 -0.0249431 0)
(0.0315241 -0.0320824 0)
(0.029989 -0.0385074 0)
(0.0277145 -0.0440781 0)
(0.0249402 -0.0487521 0)
(0.0218781 -0.0525553 0)
(0.0186965 -0.0555616 0)
(0.015526 -0.057864 0)
(0.0124578 -0.059563 0)
(0.00955576 -0.0607526 0)
(0.00685705 -0.061516 0)
(0.00438375 -0.0619253 0)
(0.0021426 -0.0620683 0)
(0.000125916 -0.0620814 0)
(-0.00171582 0.00161903 0)
(-0.00193872 0.00347522 0)
(-0.00222677 0.00542373 0)
(-0.00246461 0.00746839 0)
(-0.00250039 0.00952531 0)
(-0.00215356 0.0114249 0)
(-0.00123991 0.0129341 0)
(0.000386436 0.013774 0)
(0.0027959 0.0136564 0)
(0.00589963 0.0123302 0)
(0.00946938 0.0096527 0)
(0.0131605 0.00563727 0)
(0.016588 0.000465725 0)
(0.0194187 -0.00554017 0)
(0.0214213 -0.0119947 0)
(0.0224999 -0.018508 0)
(0.0226777 -0.024745 0)
(0.0220658 -0.0304613 0)
(0.0208228 -0.0355058 0)
(0.0191205 -0.0398137 0)
(0.0171209 -0.0433865 0)
(0.0149642 -0.0462671 0)
(0.0127598 -0.0485276 0)
(0.0105889 -0.0502487 0)
(0.00850437 -0.0515144 0)
(0.00654135 -0.0524017 0)
(0.00471679 -0.0529758 0)
(0.00303505 -0.0532892 0)
(0.00149259 -0.0534031 0)
(8.86749e-05 -0.0534152 0)
(-0.00117075 0.00165816 0)
(-0.00131909 0.00354849 0)
(-0.00150662 0.0055073 0)
(-0.0016514 0.00751819 0)
(-0.00164616 0.00946886 0)
(-0.00136626 0.0111609 0)
(-0.000689671 0.0123403 0)
(0.000471389 0.0127316 0)
(0.00213867 0.012087 0)
(0.00422762 0.010241 0)
(0.00656243 0.00716174 0)
(0.00890805 0.00296823 0)
(0.0110204 -0.00208571 0)
(0.0127004 -0.00766981 0)
(0.0138263 -0.0134355 0)
(0.0143622 -0.0190694 0)
(0.0143426 -0.0243261 0)
(0.0138494 -0.0290447 0)
(0.012987 -0.0331409 0)
(0.0118634 -0.0365956 0)
(0.010577 -0.0394362 0)
(0.00921115 -0.0417164 0)
(0.00782826 -0.0435052 0)
(0.00647395 -0.044869 0)
(0.0051785 -0.0458687 0)
(0.00396398 -0.0465549 0)
(0.00284282 -0.0469695 0)
(0.0018191 -0.0471488 0)
(0.000890114 -0.0471596 0)
(5.12535e-05 -0.0471283 0)
(-0.000569572 0.0016833 0)
(-0.000640883 0.00359502 0)
(-0.000729685 0.00555894 0)
(-0.000795 0.00754479 0)
(-0.000783355 0.0094213 0)
(-0.000633447 0.0109725 0)
(-0.000287058 0.011933 0)
(0.000294441 0.0120352 0)
(0.00111303 0.0110628 0)
(0.00211802 0.00891087 0)
(0.00321628 0.00561419 0)
(0.00430208 0.00134542 0)
(0.00526552 -0.00359168 0)
(0.00600776 -0.00887877 0)
(0.00648587 -0.0141994 0)
(0.00669088 -0.0192876 0)
(0.00664387 -0.0239516 0)
(0.00638596 -0.028078 0)
(0.00596688 -0.0316192 0)
(0.00543586 -0.0345792 0)
(0.00483542 -0.0369949 0)
(0.00420024 -0.0389208 0)
(0.0035577 -0.0404219 0)
(0.00293021 -0.0415628 0)
(0.00233254 -0.0424033 0)
(0.00177375 -0.0429935 0)
(0.00125991 -0.0433749 0)
(0.000796437 -0.0435801 0)
(0.000384858 -0.0436488 0)
(2.00737e-05 -0.0436517 0)
(0.177639 -0.964048 0)
(0.358489 -0.943161 0)
(0.453495 -0.936597 0)
(0.486655 -0.905948 0)
(0.474268 -0.836271 0)
(0.315911 -0.676405 0)
(0.351593 -0.403216 0)
(0.725116 0.140208 0)
(0.639582 0.431563 0)
(0.414105 0.495154 0)
(0.189631 0.424082 0)
(0.0898255 0.301972 0)
(0.0163555 0.214941 0)
(0.0200405 0.156463 0)
(0.00693811 0.110423 0)
(0.00291462 0.0823381 0)
(0.00171268 0.0615853 0)
(0.00115144 0.0456347 0)
(0.000847476 0.0337702 0)
(0.0006714 0.024823 0)
(0.000554907 0.0179543 0)
(0.00046313 0.012668 0)
(0.000387667 0.00864357 0)
(0.000323214 0.00565466 0)
(0.000267114 0.003526 0)
(0.000217466 0.00208677 0)
(0.00017196 0.00117059 0)
(0.000132477 0.000629418 0)
(0.000105201 0.000345804 0)
(0.0079145 -9.05626e-05 0)
(0.16573 -1.08983 0)
(0.284769 -1.01236 0)
(0.356021 -0.954039 0)
(0.323927 -0.886109 0)
(0.21224 -0.778729 0)
(0.101521 -0.642161 0)
(0.232197 -0.49482 0)
(0.39931 -0.173823 0)
(0.553761 0.442924 0)
(0.398761 0.564254 0)
(0.12198 0.470449 0)
(0.0649439 0.309587 0)
(-0.0453344 0.222373 0)
(0.107954 0.148186 0)
(0.0873641 0.106132 0)
(0.17844 0.0828756 0)
(0.0591207 0.0647179 0)
(0.0412272 0.0478473 0)
(0.0298351 0.0358965 0)
(0.023214 0.0262716 0)
(0.0192724 0.0188634 0)
(0.0156094 0.0132545 0)
(0.012236 0.00899449 0)
(0.00961037 0.00585423 0)
(0.00759225 0.00364632 0)
(0.00604378 0.00216167 0)
(0.00481738 0.00122 0)
(0.0038467 0.000659477 0)
(0.00321025 0.00035994 0)
(0.00546405 -0.000297298 0)
(0.0576598 -1.18295 0)
(0.0667299 -1.06162 0)
(0.082875 -0.950107 0)
(0.0501534 -0.849934 0)
(-0.023461 -0.729889 0)
(0.0113583 -0.666883 0)
(0.177795 -0.617421 0)
(0.514657 -0.227487 0)
(0.625258 0.537259 0)
(0.388545 0.628641 0)
(0.0588792 0.522124 0)
(0.301955 0.294744 0)
(0.520746 0.185158 0)
(1.20201 0.0410288 0)
(2.1039 0.202566 0)
(0.841228 0.263349 0)
(0.192393 0.0786999 0)
(0.0984206 0.0517679 0)
(0.0630272 0.0375379 0)
(0.0452726 0.0270727 0)
(0.0344126 0.0194033 0)
(0.0261932 0.0136817 0)
(0.01996 0.00928913 0)
(0.015364 0.00607327 0)
(0.0118936 0.00381621 0)
(0.00928542 0.00228093 0)
(0.00726145 0.00130363 0)
(0.00570067 0.000708483 0)
(0.00469826 0.000376249 0)
(0.00470814 -0.000349284 0)
(-0.0748315 -1.1606 0)
(-0.0982986 -1.05541 0)
(-0.1247 -0.939869 0)
(-0.13797 -0.828668 0)
(-0.11657 -0.739234 0)
(0.00764686 -0.732762 0)
(0.19909 -0.726225 0)
(0.581529 -0.362299 0)
(0.678229 0.559242 0)
(0.41596 0.722203 0)
(0.173954 0.513839 0)
(0.374335 0.227492 0)
(0.809698 0.102795 0)
(1.4581 -0.254326 0)
(2.43175 0.378427 0)
(0.690492 0.499302 0)
(0.230922 0.107156 0)
(0.116773 0.0595433 0)
(0.0734664 0.0406992 0)
(0.0518216 0.0286045 0)
(0.0388944 0.0203273 0)
(0.0293974 0.0143361 0)
(0.0222846 0.00972541 0)
(0.0170685 0.00639144 0)
(0.0131457 0.00405702 0)
(0.0102275 0.00244745 0)
(0.00798606 0.00141778 0)
(0.0062693 0.000775369 0)
(0.00517014 0.000398577 0)
(0.00451485 -0.000324779 0)
(-0.0988855 -1.08397 0)
(-0.165812 -1.02192 0)
(-0.201266 -0.933057 0)
(-0.190641 -0.837946 0)
(-0.119344 -0.791685 0)
(0.0096331 -0.80857 0)
(0.208193 -0.837228 0)
(0.398165 -0.631618 0)
(0.630495 0.503539 0)
(0.45786 0.849748 0)
(1.0977 0.213849 0)
(0.623501 0.157548 0)
(0.624855 0.0646591 0)
(0.856702 -0.412147 0)
(1.37362 0.399561 0)
(0.441254 0.628688 0)
(0.225564 0.137428 0)
(0.118087 0.0686109 0)
(0.0746059 0.0444807 0)
(0.0524956 0.0304691 0)
(0.0393094 0.0214399 0)
(0.0297969 0.0151029 0)
(0.0226924 0.0102316 0)
(0.01742 0.00675287 0)
(0.0134174 0.00432385 0)
(0.0104341 0.00263322 0)
(0.00815588 0.00154389 0)
(0.00642106 0.000851872 0)
(0.00531276 0.000426433 0)
(0.00453463 -0.000281441 0)
(-0.0895423 -0.997612 0)
(-0.161968 -0.976861 0)
(-0.189476 -0.929134 0)
(-0.173952 -0.864172 0)
(-0.111852 -0.84728 0)
(-0.00568741 -0.88547 0)
(0.199309 -0.978171 0)
(0.858282 -0.779361 0)
(0.688308 0.518892 0)
(0.481411 1.01039 0)
(0.695192 0.0680138 0)
(0.509064 0.155309 0)
(0.445801 0.0698742 0)
(0.355451 -0.412171 0)
(0.132079 0.378692 0)
(0.245639 0.616035 0)
(0.202623 0.163221 0)
(0.11356 0.0778648 0)
(0.0729646 0.048482 0)
(0.0515421 0.0325024 0)
(0.0386335 0.0226491 0)
(0.0294729 0.0159169 0)
(0.022641 0.0107705 0)
(0.0174684 0.00713142 0)
(0.013485 0.00459691 0)
(0.0104882 0.00282681 0)
(0.00820477 0.0016743 0)
(0.0064792 0.000934607 0)
(0.00537867 0.000459886 0)
(0.00460594 -0.00023587 0)
(-0.0595388 -0.922121 0)
(-0.1143 -0.936161 0)
(-0.148575 -0.920052 0)
(-0.149693 -0.884 0)
(-0.117054 -0.888624 0)
(-0.0474128 -0.953494 0)
(0.11409 -1.13247 0)
(0.940909 -1.14606 0)
(0.56396 1.03978 0)
(0.56466 1.01191 0)
(0.980599 0.609559 0)
(0.459554 0.129929 0)
(0.372868 0.0957071 0)
(0.100346 -0.277125 0)
(-0.531189 0.331478 0)
(0.125692 0.534253 0)
(0.172606 0.181669 0)
(0.106379 0.086676 0)
(0.0702307 0.0525489 0)
(0.0500694 0.034644 0)
(0.0376618 0.0239226 0)
(0.028953 0.016757 0)
(0.0224556 0.0113323 0)
(0.0174293 0.00752236 0)
(0.0135033 0.00487366 0)
(0.0105094 0.00302622 0)
(0.00822406 0.0018078 0)
(0.00651124 0.00102249 0)
(0.00541923 0.000498458 0)
(0.0046705 -0.000192559 0)
(-0.0299405 -0.869251 0)
(-0.0725129 -0.895614 0)
(-0.114264 -0.896372 0)
(-0.137171 -0.886293 0)
(-0.137418 -0.907951 0)
(-0.118476 -0.993322 0)
(-0.068819 -1.23344 0)
(0.120485 -1.67227 0)
(1.02238 1.38658 0)
(0.824481 1.07264 0)
(0.179896 0.336541 0)
(0.503803 0.162555 0)
(0.32515 0.149703 0)
(0.0145419 -0.119521 0)
(-0.46813 0.272562 0)
(0.0504007 0.449528 0)
(0.140227 0.192038 0)
(0.0972313 0.0945194 0)
(0.0666484 0.0565333 0)
(0.0482255 0.0368317 0)
(0.0365078 0.0252361 0)
(0.0283133 0.0176152 0)
(0.0221722 0.0119159 0)
(0.0173234 0.007928 0)
(0.0134849 0.00515755 0)
(0.0105092 0.00323249 0)
(0.00822485 0.00194567 0)
(0.0065252 0.00111523 0)
(0.00544034 0.00054137 0)
(0.00471826 -0.000152039 0)
(-0.0156785 -0.833695 0)
(-0.0530873 -0.851259 0)
(-0.0991156 -0.859415 0)
(-0.138428 -0.867892 0)
(-0.169555 -0.899237 0)
(-0.205727 -0.985618 0)
(-0.290138 -1.20191 0)
(-0.652826 -1.62251 0)
(-0.623773 0.705531 0)
(1.20768 1.07932 0)
(0.957414 0.574039 0)
(0.477806 0.152943 0)
(0.269262 0.23356 0)
(-0.0199266 0.00981813 0)
(-0.311025 0.239517 0)
(0.00476753 0.376401 0)
(0.108351 0.194922 0)
(0.0864427 0.100941 0)
(0.0622313 0.0602859 0)
(0.0459939 0.0390063 0)
(0.035168 0.0265672 0)
(0.0275564 0.0184847 0)
(0.0217909 0.0125201 0)
(0.0171512 0.00835091 0)
(0.0134266 0.00545272 0)
(0.010486 0.00344718 0)
(0.0082089 0.00209011 0)
(0.00652302 0.00121301 0)
(0.00544355 0.00058811 0)
(0.00475019 -0.000114279 0)
(-0.019942 -0.800545 0)
(-0.056883 -0.803778 0)
(-0.102052 -0.814326 0)
(-0.150464 -0.83013 0)
(-0.205068 -0.861093 0)
(-0.284107 -0.927343 0)
(-0.448188 -1.05709 0)
(-0.937224 -1.21857 0)
(-0.891096 0.25126 0)
(0.020288 0.119725 0)
(1.65872 0.824981 0)
(0.78301 0.246086 0)
(0.172604 0.334886 0)
(-0.0454213 0.105681 0)
(-0.214212 0.22405 0)
(-0.0214462 0.316888 0)
(0.0788871 0.191653 0)
(0.0744123 0.105579 0)
(0.0570059 0.0636431 0)
(0.04335 0.0411021 0)
(0.0336275 0.0278889 0)
(0.0266736 0.0193561 0)
(0.021309 0.0131406 0)
(0.0169106 0.00879175 0)
(0.0133237 0.00576224 0)
(0.0104359 0.00367172 0)
(0.00817564 0.00224339 0)
(0.00650435 0.00131622 0)
(0.00542907 0.000638576 0)
(0.0047668 -7.91766e-05 0)
(-0.0310815 -0.756801 0)
(-0.0687255 -0.756079 0)
(-0.112209 -0.764115 0)
(-0.165678 -0.77723 0)
(-0.233834 -0.798724 0)
(-0.333555 -0.834323 0)
(-0.509336 -0.877556 0)
(-0.853997 -0.833295 0)
(-1.10259 -0.257353 0)
(-0.68349 -0.166004 0)
(-0.0328384 0.107004 0)
(-0.105498 0.743601 0)
(0.0255512 0.389941 0)
(-0.0724165 0.169225 0)
(-0.159164 0.215109 0)
(-0.0364227 0.269897 0)
(0.0528908 0.183848 0)
(0.0616194 0.108204 0)
(0.0510404 0.0664335 0)
(0.0402802 0.0430444 0)
(0.0318691 0.0291684 0)
(0.0256507 0.0202164 0)
(0.0207223 0.0137706 0)
(0.0165978 0.00924876 0)
(0.0131701 0.00608779 0)
(0.0103534 0.00390745 0)
(0.00812289 0.00240738 0)
(0.00646797 0.0014254 0)
(0.00539785 0.000692975 0)
(0.0047689 -4.65128e-05 0)
(-0.0323981 -0.702374 0)
(-0.0729499 -0.704638 0)
(-0.119391 -0.707582 0)
(-0.176063 -0.713338 0)
(-0.248689 -0.721478 0)
(-0.349293 -0.728663 0)
(-0.499574 -0.716949 0)
(-0.712587 -0.619238 0)
(-0.838613 -0.338437 0)
(-0.815221 -0.184 0)
(-1.08788 0.0787868 0)
(-0.451447 0.661045 0)
(-0.105191 0.372155 0)
(-0.101794 0.202039 0)
(-0.130414 0.206677 0)
(-0.0457099 0.233035 0)
(0.0306948 0.173048 0)
(0.0485666 0.108736 0)
(0.0444457 0.0684913 0)
(0.0367885 0.0447488 0)
(0.0298788 0.0303668 0)
(0.0244765 0.0210492 0)
(0.0200296 0.0144007 0)
(0.016211 0.00971778 0)
(0.0129638 0.00642961 0)
(0.0102379 0.00415552 0)
(0.00805051 0.00258327 0)
(0.00641591 0.00154115 0)
(0.00535396 0.000751605 0)
(0.00475845 -1.62629e-05 0)
(-0.0313056 -0.643499 0)
(-0.0729511 -0.64351 0)
(-0.120962 -0.643371 0)
(-0.177779 -0.642473 0)
(-0.247986 -0.638813 0)
(-0.338333 -0.626503 0)
(-0.45591 -0.58969 0)
(-0.592536 -0.494449 0)
(-0.686483 -0.321737 0)
(-0.723597 -0.150158 0)
(-0.771469 0.119894 0)
(-0.458074 0.404867 0)
(-0.190384 0.315752 0)
(-0.129455 0.208551 0)
(-0.117892 0.195637 0)
(-0.0525554 0.203507 0)
(0.0121408 0.160489 0)
(0.0357314 0.107237 0)
(0.0373756 0.0696719 0)
(0.0329032 0.0461238 0)
(0.0276513 0.0314405 0)
(0.0231466 0.0218349 0)
(0.0192319 0.0150185 0)
(0.0157494 0.0101929 0)
(0.0127038 0.00678671 0)
(0.0100882 0.00441694 0)
(0.00795639 0.00277172 0)
(0.00634834 0.00166429 0)
(0.00529836 0.000814891 0)
(0.00473435 1.15358e-05 0)
(-0.0312952 -0.579927 0)
(-0.0715075 -0.578629 0)
(-0.117426 -0.57537 0)
(-0.170895 -0.569219 0)
(-0.234455 -0.557602 0)
(-0.310921 -0.534988 0)
(-0.400986 -0.490658 0)
(-0.495683 -0.408595 0)
(-0.5689 -0.282391 0)
(-0.606288 -0.128568 0)
(-0.590969 0.0742837 0)
(-0.419169 0.249111 0)
(-0.232726 0.248726 0)
(-0.150847 0.195695 0)
(-0.114457 0.180713 0)
(-0.0585016 0.17874 0)
(-0.00318357 0.147007 0)
(0.0235155 0.10388 0)
(0.0300167 0.069867 0)
(0.0286771 0.0470766 0)
(0.0251915 0.032341 0)
(0.0216602 0.02255 0)
(0.018327 0.0156096 0)
(0.0152095 0.0106671 0)
(0.0123863 0.00715667 0)
(0.00989904 0.00469241 0)
(0.00783527 0.00297309 0)
(0.00626202 0.00179557 0)
(0.00522821 0.0008834 0)
(0.00469404 3.72415e-05 0)
(-0.0294858 -0.514473 0)
(-0.0668821 -0.511992 0)
(-0.109121 -0.506694 0)
(-0.157263 -0.497398 0)
(-0.212451 -0.481726 0)
(-0.275394 -0.455442 0)
(-0.344737 -0.411856 0)
(-0.413936 -0.342791 0)
(-0.469435 -0.244087 0)
(-0.496773 -0.118895 0)
(-0.474107 0.0286813 0)
(-0.371282 0.151532 0)
(-0.244622 0.186012 0)
(-0.163518 0.171069 0)
(-0.114995 0.161992 0)
(-0.0639538 0.156752 0)
(-0.0157524 0.133141 0)
(0.0122341 0.0989059 0)
(0.0225805 0.0690144 0)
(0.024188 0.0475189 0)
(0.0225153 0.0330145 0)
(0.0200177 0.0231668 0)
(0.01731 0.0161585 0)
(0.0145863 0.0111324 0)
(0.012007 0.00753531 0)
(0.00966588 0.0049818 0)
(0.0076843 0.00318742 0)
(0.00615548 0.00193547 0)
(0.0051435 0.000957757 0)
(0.00463815 6.12019e-05 0)
(-0.0266615 -0.449658 0)
(-0.060145 -0.44648 0)
(-0.0975867 -0.440153 0)
(-0.139462 -0.429595 0)
(-0.186096 -0.412856 0)
(-0.237235 -0.386906 0)
(-0.291123 -0.347569 0)
(-0.343105 -0.290231 0)
(-0.384682 -0.212114 0)
(-0.404395 -0.114533 0)
(-0.387411 -0.00579091 0)
(-0.323732 0.087056 0)
(-0.237867 0.13289 0)
(-0.167359 0.141179 0)
(-0.116055 0.140479 0)
(-0.0686789 0.136267 0)
(-0.0259189 0.119117 0)
(0.00212575 0.0925818 0)
(0.0152942 0.0671028 0)
(0.0195367 0.047376 0)
(0.0196508 0.033405 0)
(0.0182245 0.0236543 0)
(0.0161793 0.0166493 0)
(0.013878 0.0115798 0)
(0.011565 0.00791681 0)
(0.00938924 0.00528342 0)
(0.00750461 0.00341386 0)
(0.00603054 0.00208396 0)
(0.00504638 0.0010379 0)
(0.00456683 8.33203e-05 0)
(-0.0233289 -0.387746 0)
(-0.0523187 -0.384289 0)
(-0.0844725 -0.377754 0)
(-0.119923 -0.367306 0)
(-0.158565 -0.351419 0)
(-0.199793 -0.327939 0)
(-0.241958 -0.294191 0)
(-0.281672 -0.247425 0)
(-0.313179 -0.186014 0)
(-0.328495 -0.11116 0)
(-0.31854 -0.029635 0)
(-0.278986 0.0430638 0)
(-0.220787 0.0899825 0)
(-0.163746 0.110635 0)
(-0.115608 0.117603 0)
(-0.0721996 0.116642 0)
(-0.0339257 0.10508 0)
(-0.00666588 0.0851971 0)
(0.00837485 0.0641706 0)
(0.0148392 0.0465969 0)
(0.0166405 0.0334617 0)
(0.0162954 0.0239814 0)
(0.0149392 0.0170653 0)
(0.0130861 0.0119991 0)
(0.0110604 0.00829415 0)
(0.00906912 0.00559364 0)
(0.00729532 0.00365031 0)
(0.00588624 0.00224027 0)
(0.0049356 0.00112262 0)
(0.00447747 0.000103361 0)
(-0.0198601 -0.330388 0)
(-0.0442944 -0.326955 0)
(-0.0712112 -0.320792 0)
(-0.100559 -0.311313 0)
(-0.132068 -0.297321 0)
(-0.165076 -0.277259 0)
(-0.198203 -0.249367 0)
(-0.228964 -0.211959 0)
(-0.253416 -0.164153 0)
(-0.26627 -0.106983 0)
(-0.261947 -0.0450185 0)
(-0.237831 0.0127372 0)
(-0.19862 0.0562813 0)
(-0.154592 0.0822387 0)
(-0.112745 0.0948183 0)
(-0.0740643 0.0977439 0)
(-0.0398975 0.091153 0)
(-0.0140274 0.0770058 0)
(0.00202641 0.0603052 0)
(0.0102282 0.0451603 0)
(0.0135465 0.0331414 0)
(0.0142569 0.0241153 0)
(0.0136013 0.0173863 0)
(0.0122158 0.0123769 0)
(0.0104953 0.00865824 0)
(0.00870488 0.00590644 0)
(0.00705421 0.00389304 0)
(0.00571879 0.00240276 0)
(0.00480698 0.00120985 0)
(0.0043665 0.000121374 0)
(-0.0166331 -0.278444 0)
(-0.0368424 -0.27535 0)
(-0.0588865 -0.269975 0)
(-0.0826893 -0.261922 0)
(-0.107991 -0.250251 0)
(-0.13421 -0.233822 0)
(-0.160262 -0.211445 0)
(-0.184354 -0.182058 0)
(-0.203783 -0.145177 0)
(-0.215075 -0.10155 0)
(-0.214657 -0.0540501 0)
(-0.200578 -0.00799165 0)
(-0.174555 0.0304043 0)
(-0.14177 0.0574161 0)
(-0.107343 0.0733327 0)
(-0.0740039 0.0797629 0)
(-0.0438949 0.0775012 0)
(-0.0198857 0.0682722 0)
(-0.00357687 0.0556443 0)
(0.00584776 0.0430771 0)
(0.0104491 0.0324139 0)
(0.0121463 0.024025 0)
(0.012182 0.0175903 0)
(0.0112716 0.0126978 0)
(0.00986968 0.00899979 0)
(0.00829339 0.0062157 0)
(0.00677721 0.00413896 0)
(0.00552389 0.00257049 0)
(0.00465614 0.0012992 0)
(0.00423203 0.000137587 0)
(-0.0137637 -0.231981 0)
(-0.03022 -0.229751 0)
(-0.0479339 -0.225597 0)
(-0.0668756 -0.219159 0)
(-0.0868879 -0.209804 0)
(-0.107537 -0.196757 0)
(-0.128012 -0.179214 0)
(-0.147026 -0.156477 0)
(-0.162729 -0.128245 0)
(-0.172804 -0.0949852 0)
(-0.174856 -0.058436 0)
(-0.167314 -0.0217809 0)
(-0.150495 0.0109994 0)
(-0.126861 0.0366794 0)
(-0.0997483 0.0539817 0)
(-0.0719829 0.0630237 0)
(-0.0459834 0.0643372 0)
(-0.0242132 0.0592605 0)
(-0.00829135 0.0503503 0)
(0.00184017 0.0403926 0)
(0.00743787 0.031267 0)
(0.0100092 0.0236859 0)
(0.010701 0.0176564 0)
(0.0102603 0.0129486 0)
(0.00918429 0.00931059 0)
(0.00783147 0.00651554 0)
(0.0064603 0.00438484 0)
(0.00529731 0.00274155 0)
(0.00447935 0.00139056 0)
(0.00407212 0.000152196 0)
(-0.0109032 -0.191482 0)
(-0.0238978 -0.190227 0)
(-0.0379229 -0.187396 0)
(-0.0528962 -0.182565 0)
(-0.0686577 -0.175336 0)
(-0.084879 -0.165234 0)
(-0.100982 -0.151734 0)
(-0.116074 -0.134366 0)
(-0.128887 -0.112908 0)
(-0.137854 -0.0876102 0)
(-0.141311 -0.0594925 0)
(-0.13798 -0.030474 0)
(-0.127566 -0.0031332 0)
(-0.111087 0.0200045 0)
(-0.0905275 0.0372382 0)
(-0.0681702 0.0478597 0)
(-0.0462733 0.051909 0)
(-0.0270201 0.0502339 0)
(-0.012007 0.0446088 0)
(-0.00166634 0.0371866 0)
(0.00461058 0.0297116 0)
(0.00790124 0.0230833 0)
(0.00918642 0.0175681 0)
(0.00919411 0.0131162 0)
(0.00844274 0.00958133 0)
(0.00731817 0.00679982 0)
(0.00610162 0.00462753 0)
(0.00503615 0.00291375 0)
(0.00427402 0.00148383 0)
(0.00388443 0.000165365 0)
(-0.00836782 -0.157528 0)
(-0.0183444 -0.156803 0)
(-0.0292161 -0.154902 0)
(-0.040896 -0.151413 0)
(-0.0532244 -0.146032 0)
(-0.0659365 -0.138426 0)
(-0.0786127 -0.128238 0)
(-0.090631 -0.115139 0)
(-0.101122 -0.0989548 0)
(-0.10901 -0.0797925 0)
(-0.113116 -0.0582307 0)
(-0.11242 -0.0354221 0)
(-0.106405 -0.0130319 0)
(-0.0953412 0.00706916 0)
(-0.080297 0.0232695 0)
(-0.0628773 0.0345246 0)
(-0.0449401 0.0404626 0)
(-0.028364 0.0414524 0)
(-0.0146633 0.0386288 0)
(-0.00456356 0.0335774 0)
(0.00206569 0.0277835 0)
(0.0058861 0.0222163 0)
(0.00767361 0.0173149 0)
(0.00809023 0.0131905 0)
(0.00765118 0.00980414 0)
(0.00675425 0.00706218 0)
(0.00569892 0.0048625 0)
(0.00473771 0.00308508 0)
(0.00403731 0.00157803 0)
(0.00366579 0.000177386 0)
(-0.00636676 -0.1296 0)
(-0.0139241 -0.129122 0)
(-0.0221995 -0.127794 0)
(-0.0311431 -0.125282 0)
(-0.0406424 -0.121341 0)
(-0.0505031 -0.115721 0)
(-0.0604196 -0.108157 0)
(-0.0699527 -0.0984036 0)
(-0.0784983 -0.0863077 0)
(-0.0853092 -0.071884 0)
(-0.0895417 -0.05544 0)
(-0.0903977 -0.0376576 0)
(-0.0873274 -0.0196001 0)
(-0.0802403 -0.00259807 0)
(-0.0696232 0.0120132 0)
(-0.0564882 0.0231512 0)
(-0.0422207 0.0302039 0)
(-0.0283515 0.0331551 0)
(-0.0162449 0.0326242 0)
(-0.00676107 0.0296947 0)
(-0.000103112 0.0255418 0)
(0.00403072 0.0211018 0)
(0.00620265 0.016895 0)
(0.00697005 0.0131646 0)
(0.006818 0.00997174 0)
(0.00614171 0.00729722 0)
(0.00525018 0.00508626 0)
(0.00439895 0.00325303 0)
(0.00376546 0.00167135 0)
(0.00341283 0.000188681 0)
(-0.00479987 -0.106837 0)
(-0.0104765 -0.106494 0)
(-0.0167123 -0.105528 0)
(-0.0234786 -0.103694 0)
(-0.0306996 -0.100813 0)
(-0.0382424 -0.0966999 0)
(-0.0458972 -0.09115 0)
(-0.0533626 -0.0839642 0)
(-0.0602227 -0.0749986 0)
(-0.0659581 -0.0642118 0)
(-0.0699639 -0.0517467 0)
(-0.0716279 -0.0379914 0)
(-0.0704489 -0.023612 0)
(-0.066185 -0.00952067 0)
(-0.058977 0.00325498 0)
(-0.0493972 0.0137533 0)
(-0.0383923 0.0212767 0)
(-0.0271339 0.0255521 0)
(-0.0167812 0.0268058 0)
(-0.008209 0.0256963 0)
(-0.00182788 0.0230875 0)
(0.00240148 0.0197759 0)
(0.00481733 0.0163184 0)
(0.00585792 0.0130365 0)
(0.00595444 0.0100796 0)
(0.00548383 0.00749986 0)
(0.00475405 0.00529442 0)
(0.00401672 0.00341439 0)
(0.00345481 0.0017628 0)
(0.00312175 0.000199364 0)
(-0.00360741 -0.0883745 0)
(-0.00784861 -0.0881222 0)
(-0.0125021 -0.0874205 0)
(-0.0175507 -0.0860955 0)
(-0.022949 -0.0840119 0)
(-0.0286159 -0.0810248 0)
(-0.0344187 -0.0769766 0)
(-0.0401595 -0.0717082 0)
(-0.0455566 -0.0650915 0)
(-0.0502514 -0.0570572 0)
(-0.0538124 -0.0476505 0)
(-0.055779 -0.0370765 0)
(-0.0557308 -0.0257363 0)
(-0.0533861 -0.0142329 0)
(-0.0487032 -0.00331441 0)
(-0.0419575 0.00623641 0)
(-0.033741 0.013746 0)
(-0.0248941 0.0188046 0)
(-0.0163429 0.0213654 0)
(-0.00889091 0.0217468 0)
(-0.00304248 0.020516 0)
(0.00105899 0.0182957 0)
(0.0035614 0.0156083 0)
(0.00477999 0.0128132 0)
(0.00507337 0.0101262 0)
(0.00478486 0.00766619 0)
(0.00420968 0.00548288 0)
(0.00358815 0.00356661 0)
(0.00310144 0.00185046 0)
(0.00278908 0.000209694 0)
(-0.00264525 -0.0735454 0)
(-0.00574047 -0.0734065 0)
(-0.00913921 -0.0729393 0)
(-0.0128361 -0.072002 0)
(-0.016806 -0.0704984 0)
(-0.0209984 -0.0683265 0)
(-0.0253271 -0.0653697 0)
(-0.0296613 -0.0615038 0)
(-0.0338128 -0.056619 0)
(-0.0375382 -0.0506366 0)
(-0.0405371 -0.0435459 0)
(-0.0424748 -0.0354386 0)
(-0.0430211 -0.0265415 0)
(-0.0419119 -0.0172379 0)
(-0.0390261 -0.00804664 0)
(-0.0344531 0.000427504 0)
(-0.0285346 0.00760372 0)
(-0.0218295 0.0130225 0)
(-0.0150337 0.0164694 0)
(-0.0088257 0.0180107 0)
(-0.00371559 0.017955 0)
(5.15234e-05 0.0167365 0)
(0.00247509 0.0148044 0)
(0.00376176 0.0125101 0)
(0.00418813 0.0101159 0)
(0.00404973 0.00779457 0)
(0.00361671 0.00564773 0)
(0.00311052 0.003706 0)
(0.00270179 0.00193225 0)
(0.00241117 0.000219086 0)
(-0.00186255 -0.0620634 0)
(-0.00404452 -0.0619513 0)
(-0.00645785 -0.0616005 0)
(-0.00909861 -0.0609121 0)
(-0.0119479 -0.0598141 0)
(-0.0149719 -0.0582272 0)
(-0.0181139 -0.0560594 0)
(-0.0212892 -0.0532109 0)
(-0.0243761 -0.0495867 0)
(-0.0272155 -0.0451074 0)
(-0.0296051 -0.0397346 0)
(-0.0313097 -0.0334936 0)
(-0.0320837 -0.0265012 0)
(-0.0317079 -0.0189885 0)
(-0.030042 -0.0113023 0)
(-0.0270803 -0.00388515 0)
(-0.0229926 0.00278284 0)
(-0.0181281 0.00826347 0)
(-0.0129747 0.0122528 0)
(-0.00806184 0.0146442 0)
(-0.00384291 0.01554 0)
(-0.000597464 0.0152004 0)
(0.00158927 0.0139625 0)
(0.00282528 0.0121551 0)
(0.00331034 0.0100579 0)
(0.00328283 0.007886 0)
(0.00297504 0.00578642 0)
(0.00258108 0.00382872 0)
(0.00225253 0.00200564 0)
(0.00198453 0.00022734 0)
(-0.00129767 -0.0533993 0)
(-0.00280413 -0.0533079 0)
(-0.00444846 -0.0530365 0)
(-0.00623425 -0.0525165 0)
(-0.00816016 -0.0516956 0)
(-0.0102117 -0.0505126 0)
(-0.0123581 -0.0488926 0)
(-0.014551 -0.0467531 0)
(-0.0167159 -0.0440129 0)
(-0.0187503 -0.0405971 0)
(-0.0205205 -0.0364552 0)
(-0.0218688 -0.0315756 0)
(-0.0226241 -0.0260065 0)
(-0.0226228 -0.0198793 0)
(-0.0217408 -0.0134174 0)
(-0.019933 -0.00693736 0)
(-0.0172677 -0.000819244 0)
(-0.0139492 0.00454694 0)
(-0.0102904 0.00882252 0)
(-0.0066709 0.0117947 0)
(-0.00344839 0.0134143 0)
(-0.000880117 0.0137914 0)
(0.000919545 0.0131549 0)
(0.00198474 0.0117875 0)
(0.0024481 0.00996941 0)
(0.00248688 0.00794395 0)
(0.00228426 0.00589632 0)
(0.00199761 0.00393132 0)
(0.00175073 0.00206812 0)
(0.00150639 0.000234337 0)
(-0.000776292 -0.0471406 0)
(-0.00168164 -0.0471427 0)
(-0.00268048 -0.0470018 0)
(-0.00377568 -0.0466363 0)
(-0.00496517 -0.0460065 0)
(-0.0062386 -0.0450739 0)
(-0.00757633 -0.0437898 0)
(-0.00894996 -0.0420959 0)
(-0.0103176 -0.0399273 0)
(-0.0116207 -0.0372155 0)
(-0.0127808 -0.0339024 0)
(-0.0137028 -0.0299539 0)
(-0.0142803 -0.025377 0)
(-0.0144069 -0.0202407 0)
(-0.0139944 -0.0146876 0)
(-0.012996 -0.00894412 0)
(-0.0114307 -0.00330965 0)
(-0.00940124 0.00187323 0)
(-0.00709136 0.00626825 0)
(-0.0047387 0.00960224 0)
(-0.00258341 0.0117247 0)
(-0.000815917 0.0126344 0)
(0.000458908 0.0124682 0)
(0.00123962 0.011458 0)
(0.00160171 0.0098736 0)
(0.00166086 0.00797561 0)
(0.00154255 0.00597626 0)
(0.00135773 0.00400955 0)
(0.00119398 0.00211689 0)
(0.00097449 0.000239624 0)
(-0.000338984 -0.0436443 0)
(-0.000737886 -0.0435908 0)
(-0.00118797 -0.0434136 0)
(-0.00168909 -0.043067 0)
(-0.00223622 -0.042519 0)
(-0.00282291 -0.0417314 0)
(-0.00344136 -0.0406565 0)
(-0.00407873 -0.0392365 0)
(-0.0047142 -0.037408 0)
(-0.00532143 -0.0351057 0)
(-0.00586762 -0.0322725 0)
(-0.00631215 -0.0288669 0)
(-0.00660703 -0.0248765 0)
(-0.00670203 -0.0203361 0)
(-0.00655348 -0.015343 0)
(-0.00613501 -0.0100705 0)
(-0.0054487 -0.00476769 0)
(-0.00452941 0.000256747 0)
(-0.00346205 0.00468887 0)
(-0.0023608 0.00821391 0)
(-0.00132885 0.010628 0)
(-0.000464753 0.0118655 0)
(0.000170731 0.0120001 0)
(0.000568091 0.0112257 0)
(0.00075895 0.00979924 0)
(0.000797849 0.00798931 0)
(0.000746213 0.00602496 0)
(0.00065926 0.00405923 0)
(0.000580712 0.0021481 0)
(0.000388034 0.000242712 0)
(-2.4338e-05 3.89317e-06 0)
(-0.00025436 1.47786e-05 0)
(-0.000598629 2.68627e-05 0)
(-0.00117482 4.981e-05 0)
(-0.00211872 8.85515e-05 0)
(-0.00359048 0.000149329 0)
(-0.00576771 0.000239017 0)
(-0.0088291 0.000363876 0)
(-0.0129279 0.000527532 0)
(-0.0181555 0.000727945 0)
(-0.0244962 0.00095341 0)
(-0.0317819 0.00117896 0)
(-0.0396592 0.00136512 0)
(-0.0475948 0.00146197 0)
(-0.0549297 0.00141958 0)
(-0.0609863 0.00120246 0)
(-0.0651978 0.000801659 0)
(-0.0672145 0.000239127 0)
(-0.0669547 -0.000438461 0)
(-0.0645831 -0.00117178 0)
(-0.0604437 -0.00190289 0)
(-0.0549718 -0.00258461 0)
(-0.0486171 -0.00318532 0)
(-0.0417841 -0.00368908 0)
(-0.0348078 -0.00409241 0)
(-0.0279414 -0.00440065 0)
(-0.0213621 -0.00462436 0)
(-0.0151825 -0.00477639 0)
(-0.00946566 -0.00487004 0)
(-0.00423331 -0.00491731 0)
(-7.64818e-05 1.42829e-05 0)
(-0.000253522 3.33288e-05 0)
(-0.000596642 6.05806e-05 0)
(-0.00117091 0.000112336 0)
(-0.00211167 0.000199717 0)
(-0.00357858 0.000336826 0)
(-0.00574879 0.000539207 0)
(-0.00880075 0.000821079 0)
(-0.0128881 0.00119082 0)
(-0.0181038 0.00164416 0)
(-0.0244355 0.0021552 0)
(-0.0317212 0.00266814 0)
(-0.0396152 0.00309417 0)
(-0.0475918 0.0033202 0)
(-0.0549964 0.00323211 0)
(-0.0611487 0.00274743 0)
(-0.0654719 0.00184378 0)
(-0.067601 0.000569402 0)
(-0.0674379 -0.000969876 0)
(-0.065135 -0.00263872 0)
(-0.0610302 -0.0043042 0)
(-0.0555587 -0.00585811 0)
(-0.0491746 -0.00722775 0)
(-0.0422893 -0.00837647 0)
(-0.0352453 -0.00929613 0)
(-0.0283025 -0.009999 0)
(-0.0216436 -0.010509 0)
(-0.0153851 -0.0108556 0)
(-0.00959289 -0.0110685 0)
(-0.00429047 -0.0111764 0)
(-7.61646e-05 2.79127e-05 0)
(-0.000251948 5.17853e-05 0)
(-0.000592911 9.41291e-05 0)
(-0.00116356 0.000174548 0)
(-0.00209843 0.000310327 0)
(-0.00355621 0.000523395 0)
(-0.00571319 0.00083795 0)
(-0.00874729 0.0012762 0)
(-0.0128127 0.00185144 0)
(-0.018005 0.00255751 0)
(-0.0243179 0.00335505 0)
(-0.0315999 0.00415845 0)
(-0.0395192 0.00483062 0)
(-0.0475643 0.00519576 0)
(-0.0550889 0.00507458 0)
(-0.061409 0.00433504 0)
(-0.0659305 0.00293766 0)
(-0.068261 0.000953713 0)
(-0.0682733 -0.0014535 0)
(-0.0660972 -0.00407218 0)
(-0.0620584 -0.00669222 0)
(-0.0565916 -0.00914168 0)
(-0.0501586 -0.0113038 0)
(-0.0431829 -0.0131192 0)
(-0.0360202 -0.0145737 0)
(-0.0289426 -0.0156861 0)
(-0.0221427 -0.0164936 0)
(-0.0157446 -0.0170423 0)
(-0.00981871 -0.0173798 0)
(-0.00439171 -0.01755 0)
(-7.56417e-05 4.14677e-05 0)
(-0.000249694 7.01014e-05 0)
(-0.000587568 0.000127422 0)
(-0.00115305 0.000236285 0)
(-0.00207946 0.000420094 0)
(-0.00352419 0.00070856 0)
(-0.00566219 0.0011345 0)
(-0.00867067 0.00172817 0)
(-0.0127045 0.00250799 0)
(-0.017863 0.00346652 0)
(-0.0241485 0.004552 0)
(-0.0314241 0.00565062 0)
(-0.0393783 0.00657869 0)
(-0.04752 0.00709844 0)
(-0.0552155 0.00696401 0)
(-0.0617769 0.00598977 0)
(-0.0665858 0.00411336 0)
(-0.0692105 0.0014238 0)
(-0.069481 -0.00186094 0)
(-0.0674932 -0.00545192 0)
(-0.0635544 -0.00905869 0)
(-0.0580978 -0.0124406 0)
(-0.0515958 -0.0154328 0)
(-0.0444896 -0.0179496 0)
(-0.0371544 -0.0199687 0)
(-0.0298802 -0.0215143 0)
(-0.0228743 -0.0226372 0)
(-0.0162714 -0.0234006 0)
(-0.01015 -0.0238698 0)
(-0.00454042 -0.0241071 0)
(-7.49155e-05 5.49113e-05 0)
(-0.000246766 8.82264e-05 0)
(-0.000580628 0.000160365 0)
(-0.00113939 0.000297375 0)
(-0.00205483 0.000528717 0)
(-0.00348257 0.000891822 0)
(-0.00559591 0.00142808 0)
(-0.00857102 0.00217586 0)
(-0.0125636 0.00315902 0)
(-0.0176778 0.00436958 0)
(-0.0239267 0.00574485 0)
(-0.0311922 0.007145 0)
(-0.039189 0.00834204 0)
(-0.0474535 0.00903741 0)
(-0.0553697 0.00891699 0)
(-0.062246 0.00773617 0)
(-0.067434 0.00540184 0)
(-0.0704505 0.0020132 0)
(-0.0710686 -0.00216143 0)
(-0.0693376 -0.00675511 0)
(-0.0655389 -0.0113927 0)
(-0.0601019 -0.0157587 0)
(-0.0535127 -0.0196334 0)
(-0.0462355 -0.0229003 0)
(-0.0386719 -0.0255259 0)
(-0.031136 -0.0275383 0)
(-0.0238547 -0.0290016 0)
(-0.016978 -0.0299971 0)
(-0.0105941 -0.0306095 0)
(-0.00473999 -0.0309188 0)
(-7.39877e-05 6.82073e-05 0)
(-0.000243173 0.000106112 0)
(-0.000572109 0.000192871 0)
(-0.00112262 0.000357653 0)
(-0.00202458 0.000635901 0)
(-0.00343148 0.00107269 0)
(-0.00551451 0.00171792 0)
(-0.00844856 0.00261815 0)
(-0.0123903 0.00380303 0)
(-0.0174493 0.005265 0)
(-0.0236516 0.00693224 0)
(-0.0309022 0.00864161 0)
(-0.0389474 0.0101239 0)
(-0.0473583 0.0110213 0)
(-0.0555427 0.0109498 0)
(-0.0628075 0.00959918 0)
(-0.0684691 0.00683544 0)
(-0.0719817 0.0027579 0)
(-0.0730459 -0.00232051 0)
(-0.0716499 -0.00795527 0)
(-0.0680395 -0.0136806 0)
(-0.0626372 -0.0190975 0)
(-0.0559451 -0.0239238 0)
(-0.0484562 -0.0280049 0)
(-0.0406054 -0.0312924 0)
(-0.0327378 -0.0338161 0)
(-0.0251064 -0.0356533 0)
(-0.0178806 -0.0369042 0)
(-0.0111618 -0.0376741 0)
(-0.00499499 -0.0380629 0)
(-7.28607e-05 8.13184e-05 0)
(-0.000238925 0.000123708 0)
(-0.000562035 0.000224847 0)
(-0.00110279 0.000416953 0)
(-0.00198881 0.000741354 0)
(-0.00337105 0.00125066 0)
(-0.00541819 0.00200325 0)
(-0.00830352 0.00305391 0)
(-0.0121847 0.00443852 0)
(-0.0171774 0.00615103 0)
(-0.0233226 0.0081126 0)
(-0.0305515 0.0101401 0)
(-0.0386485 0.0119267 0)
(-0.0472261 0.013058 0)
(-0.0557236 0.0130783 0)
(-0.0634499 0.0116041 0)
(-0.0696834 0.00844826 0)
(-0.0738043 0.00369718 0)
(-0.0754243 -0.00229995 0)
(-0.0744538 -0.00902139 0)
(-0.071091 -0.0159043 0)
(-0.0657463 -0.0224563 0)
(-0.0589391 -0.0283211 0)
(-0.0511974 -0.0332984 0)
(-0.042997 -0.0373184 0)
(-0.0347223 -0.0404105 0)
(-0.0266589 -0.0426648 0)
(-0.0190007 -0.044201 0)
(-0.0118667 -0.0451472 0)
(-0.00531169 -0.0456251 0)
(-7.15375e-05 9.42113e-05 0)
(-0.000234033 0.000140968 0)
(-0.000550434 0.000256209 0)
(-0.00107995 0.000475114 0)
(-0.00194762 0.00084479 0)
(-0.00330142 0.00142528 0)
(-0.00530717 0.00228331 0)
(-0.00813621 0.00348202 0)
(-0.0119471 0.00506397 0)
(-0.0168621 0.00702585 0)
(-0.0229386 0.00928423 0)
(-0.0301375 0.0116397 0)
(-0.0382862 0.0137525 0)
(-0.047047 0.0151548 0)
(-0.0558988 0.0153177 0)
(-0.0641588 0.0137767 0)
(-0.0710662 0.0102765 0)
(-0.0759173 0.00487437 0)
(-0.0782168 -0.00205595 0)
(-0.0777783 -0.00991632 0)
(-0.0747364 -0.0180409 0)
(-0.0694822 -0.0258306 0)
(-0.0625527 -0.032842 0)
(-0.054517 -0.0388172 0)
(-0.0459005 -0.0436585 0)
(-0.0371359 -0.047391 0)
(-0.0285494 -0.0501166 0)
(-0.0203661 -0.0519761 0)
(-0.0127261 -0.0531221 0)
(-0.00569796 -0.0537012 0)
(-7.00214e-05 0.000106852 0)
(-0.000228512 0.000157845 0)
(-0.000537337 0.00028687 0)
(-0.00105416 0.000531976 0)
(-0.0019011 0.000945925 0)
(-0.0032228 0.00159605 0)
(-0.00518173 0.00255735 0)
(-0.00794698 0.00390136 0)
(-0.0116777 0.00567785 0)
(-0.0165033 0.00788754 0)
(-0.0224987 0.0104451 0)
(-0.029657 0.0131391 0)
(-0.0378539 0.0156023 0)
(-0.0468095 0.0173174 0)
(-0.0560522 0.0176825 0)
(-0.0649162 0.0161429 0)
(-0.0726035 0.0123586 0)
(-0.0783176 0.0063376 0)
(-0.0814376 -0.00153672 0)
(-0.0816567 -0.0105951 0)
(-0.079027 -0.0200601 0)
(-0.0739093 -0.029211 0)
(-0.0668573 -0.0375004 0)
(-0.0584868 -0.0445992 0)
(-0.0493828 -0.0503718 0)
(-0.0400367 -0.0548341 0)
(-0.030825 -0.0580989 0)
(-0.022011 -0.0603292 0)
(-0.0137622 -0.0617047 0)
(-0.00616393 -0.0624001 0)
(-6.83165e-05 0.000119206 0)
(-0.000222376 0.000174293 0)
(-0.00052278 0.000316745 0)
(-0.0010255 0.000587383 0)
(-0.00184939 0.00104449 0)
(-0.00313537 0.00176251 0)
(-0.00504218 0.00282464 0)
(-0.00773621 0.00431084 0)
(-0.0113771 0.0062786 0)
(-0.0161013 0.0087341 0)
(-0.0220018 0.0115929 0)
(-0.0291067 0.0146365 0)
(-0.0373443 0.017476 0)
(-0.0465005 0.0195507 0)
(-0.0561649 0.0201859 0)
(-0.0657002 0.0187287 0)
(-0.074277 0.0147355 0)
(-0.0809991 0.00814058 0)
(-0.0851006 -0.00068347 0)
(-0.0861273 -0.0110033 0)
(-0.0840239 -0.0219227 0)
(-0.0791059 -0.032582 0)
(-0.0719402 -0.0423086 0)
(-0.0631955 -0.0506842 0)
(-0.053527 -0.0575233 0)
(-0.0434972 -0.0628261 0)
(-0.033544 -0.0667143 0)
(-0.0239786 -0.0693744 0)
(-0.0150024 -0.0710165 0)
(-0.00672163 -0.0718472 0)
(-6.64272e-05 0.000131241 0)
(-0.000215643 0.000190267 0)
(-0.000506803 0.000345753 0)
(-0.000994045 0.000641184 0)
(-0.00179263 0.0011402 0)
(-0.00303938 0.00192422 0)
(-0.00488886 0.00308444 0)
(-0.00750437 0.00470935 0)
(-0.0110457 0.00686465 0)
(-0.0156559 0.0095634 0)
(-0.0214471 0.0127252 0)
(-0.0284831 0.0161293 0)
(-0.0367494 0.0193726 0)
(-0.0461054 0.0218575 0)
(-0.0562151 0.0228397 0)
(-0.0664844 0.0215601 0)
(-0.0760629 0.0174508 0)
(-0.0839515 0.0103435 0)
(-0.0892192 0.000574063 0)
(-0.0912326 -0.0110743 0)
(-0.089798 -0.0235784 0)
(-0.085165 -0.0359194 0)
(-0.0779072 -0.0472744 0)
(-0.0687512 -0.0571134 0)
(-0.0584352 -0.0651848 0)
(-0.0476069 -0.0714645 0)
(-0.0367793 -0.0760802 0)
(-0.0263229 -0.0792435 0)
(-0.0164811 -0.0811982 0)
(-0.00738693 -0.0821878 0)
(-6.43584e-05 0.000142926 0)
(-0.000208332 0.000205721 0)
(-0.00048945 0.000373813 0)
(-0.000959876 0.000693229 0)
(-0.00173097 0.00123281 0)
(-0.00293506 0.00208072 0)
(-0.00472216 0.00333605 0)
(-0.00725197 0.00509581 0)
(-0.0106839 0.0074344 0)
(-0.0151676 0.0103732 0)
(-0.0208336 0.013839 0)
(-0.0277828 0.0176143 0)
(-0.0360607 0.0212895 0)
(-0.0456084 0.0242392 0)
(-0.0561779 0.0256535 0)
(-0.0672375 0.0246618 0)
(-0.0779311 0.0205503 0)
(-0.0871586 0.0130136 0)
(-0.0938046 0.0023158 0)
(-0.0970188 -0.010727 0)
(-0.0964319 -0.0249622 0)
(-0.0921975 -0.0391882 0)
(-0.0848858 -0.0524004 0)
(-0.075286 -0.0639289 0)
(-0.0642326 -0.0734355 0)
(-0.0524761 -0.0808602 0)
(-0.040621 -0.0863326 0)
(-0.0291106 -0.0900902 0)
(-0.0182412 -0.092415 0)
(-0.00817905 -0.0935926 0)
(-6.21154e-05 0.00015423 0)
(-0.000200464 0.000220616 0)
(-0.000470769 0.000400851 0)
(-0.000923087 0.000743377 0)
(-0.00166457 0.00132206 0)
(-0.00282271 0.00223159 0)
(-0.00454249 0.00357878 0)
(-0.00697957 0.00546916 0)
(-0.0102924 0.00798627 0)
(-0.0146366 0.0111613 0)
(-0.0201606 0.0149312 0)
(-0.0270023 0.0190877 0)
(-0.0352695 0.0232231 0)
(-0.044992 0.0266945 0)
(-0.0560252 0.0286346 0)
(-0.0679219 0.0280575 0)
(-0.0798433 0.0240822 0)
(-0.0905962 0.0162265 0)
(-0.0988631 0.00463873 0)
(-0.103536 -0.00986126 0)
(-0.10402 -0.0259907 0)
(-0.100335 -0.0423391 0)
(-0.0930301 -0.0576823 0)
(-0.0829608 -0.0711742 0)
(-0.0710736 -0.0823641 0)
(-0.0582416 -0.091141 0)
(-0.0451811 -0.0976301 0)
(-0.0324252 -0.102095 0)
(-0.0203358 -0.104862 0)
(-0.00912227 -0.106264 0)
(-5.97037e-05 0.000165123 0)
(-0.000192059 0.000234908 0)
(-0.000450809 0.000426789 0)
(-0.00088378 0.000791489 0)
(-0.00159362 0.0014077 0)
(-0.00270261 0.00237642 0)
(-0.0043503 0.00381195 0)
(-0.0066878 0.00582833 0)
(-0.00987199 0.00851866 0)
(-0.0140633 0.0119253 0)
(-0.0194274 0.0159984 0)
(-0.0261382 0.0205447 0)
(-0.0343669 0.025168 0)
(-0.044238 0.0292199 0)
(-0.0557256 0.0317868 0)
(-0.0684941 0.0317686 0)
(-0.0817515 0.028096 0)
(-0.0942295 0.0200657 0)
(-0.104395 0.00765472 0)
(-0.110838 -0.00835527 0)
(-0.112672 -0.026557 0)
(-0.109733 -0.0453038 0)
(-0.102525 -0.0631045 0)
(-0.0919716 -0.0788919 0)
(-0.0791474 -0.092069 0)
(-0.0650727 -0.102454 0)
(-0.050599 -0.110159 0)
(-0.0363707 -0.115474 0)
(-0.0228322 -0.118772 0)
(-0.010247 -0.120445 0)
(-5.71289e-05 0.000175577 0)
(-0.000183143 0.00024856 0)
(-0.000429627 0.000451558 0)
(-0.000842063 0.000837436 0)
(-0.00151831 0.00148949 0)
(-0.00257509 0.00251479 0)
(-0.0041461 0.00403491 0)
(-0.00637735 0.00617228 0)
(-0.00942337 0.00902993 0)
(-0.0134485 0.0126626 0)
(-0.0186337 0.0170368 0)
(-0.0251875 0.0219798 0)
(-0.033344 0.0271169 0)
(-0.0433271 0.0318086 0)
(-0.0552449 0.03511 0)
(-0.0689031 0.0358124 0)
(-0.0835961 0.0326415 0)
(-0.0980094 0.0246238 0)
(-0.11039 0.0114957 0)
(-0.118972 -0.00605801 0)
(-0.122507 -0.0265244 0)
(-0.120573 -0.0479893 0)
(-0.113594 -0.0686373 0)
(-0.102556 -0.0871225 0)
(-0.0886865 -0.102659 0)
(-0.0731785 -0.114968 0)
(-0.0570488 -0.124137 0)
(-0.0410781 -0.13048 0)
(-0.0258148 -0.134424 0)
(-0.0115916 -0.136427 0)
(-5.43969e-05 0.00018557 0)
(-0.00017374 0.000261533 0)
(-0.000407281 0.00047509 0)
(-0.000798049 0.000881093 0)
(-0.00143884 0.00156722 0)
(-0.00244049 0.00264634 0)
(-0.00393041 0.00424703 0)
(-0.00604895 0.00650002 0)
(-0.00894749 0.0095185 0)
(-0.0127929 0.0133708 0)
(-0.0177795 0.0180423 0)
(-0.0241477 0.0233869 0)
(-0.0321926 0.0290613 0)
(-0.0422398 0.0344509 0)
(-0.0545458 0.0385991 0)
(-0.0690906 0.0402017 0)
(-0.0853038 0.0377675 0)
(-0.101869 0.0300019 0)
(-0.116822 0.0163159 0)
(-0.127991 -0.00278572 0)
(-0.133665 -0.0257185 0)
(-0.133074 -0.0502706 0)
(-0.126505 -0.0742317 0)
(-0.115007 -0.0959028 0)
(-0.0999777 -0.114255 0)
(-0.0828203 -0.12888 0)
(-0.0647493 -0.139824 0)
(-0.0467137 -0.147422 0)
(-0.0293914 -0.152158 0)
(-0.013205 -0.154565 0)
(-5.15132e-05 0.000195073 0)
(-0.000163876 0.000273792 0)
(-0.000383832 0.00049732 0)
(-0.000751856 0.000922339 0)
(-0.00135542 0.00164067 0)
(-0.00229916 0.00277068 0)
(-0.00370378 0.00444771 0)
(-0.0057034 0.00681058 0)
(-0.00844534 0.00998281 0)
(-0.0120975 0.0140472 0)
(-0.016865 0.0190107 0)
(-0.0230166 0.024759 0)
(-0.0309046 0.0309906 0)
(-0.0409565 0.0371334 0)
(-0.0535886 0.0422433 0)
(-0.0689902 0.0449423 0)
(-0.0867851 0.0435193 0)
(-0.10572 0.0363087 0)
(-0.123645 0.022295 0)
(-0.137935 0.00169002 0)
(-0.146297 -0.0239157 0)
(-0.147488 -0.051981 0)
(-0.141582 -0.0798127 0)
(-0.129677 -0.105263 0)
(-0.113375 -0.12699 0)
(-0.0943241 -0.144417 0)
(-0.0739781 -0.157529 0)
(-0.0534903 -0.166672 0)
(-0.0337016 -0.172387 0)
(-0.0151515 -0.175298 0)
(-4.8484e-05 0.000204067 0)
(-0.000153581 0.000285302 0)
(-0.000359344 0.000518186 0)
(-0.000703616 0.000961057 0)
(-0.0012683 0.00170963 0)
(-0.00215149 0.00288748 0)
(-0.00346683 0.00463636 0)
(-0.00534159 0.00710298 0)
(-0.00791808 0.0104213 0)
(-0.0113635 0.0146892 0)
(-0.015891 0.0199375 0)
(-0.021793 0.0260883 0)
(-0.0294734 0.0328924 0)
(-0.0394582 0.0398385 0)
(-0.0523321 0.0460244 0)
(-0.0685278 0.0500302 0)
(-0.0879324 0.049935 0)
(-0.109442 0.0436578 0)
(-0.130778 0.02964 0)
(-0.148828 0.00764548 0)
(-0.16057 -0.0208287 0)
(-0.164118 -0.0528982 0)
(-0.159215 -0.0852706 0)
(-0.147 -0.115219 0)
(-0.129311 -0.141006 0)
(-0.108096 -0.161838 0)
(-0.0850875 -0.177614 0)
(-0.0616835 -0.188676 0)
(-0.0389287 -0.195621 0)
(-0.0175154 -0.199167 0)
(-4.53145e-05 0.000212534 0)
(-0.000142882 0.000296031 0)
(-0.000333884 0.000537633 0)
(-0.000653456 0.000997144 0)
(-0.00117769 0.00177392 0)
(-0.00199788 0.00299641 0)
(-0.00322016 0.00481244 0)
(-0.00496442 0.00737636 0)
(-0.00736694 0.0108324 0)
(-0.0105924 0.0152942 0)
(-0.0148585 0.020818 0)
(-0.0204762 0.0273668 0)
(-0.0278933 0.0347529 0)
(-0.0377273 0.042545 0)
(-0.050734 0.0499167 0)
(-0.0676219 0.0554501 0)
(-0.088618 0.0570422 0)
(-0.112881 0.0521651 0)
(-0.138103 0.0385889 0)
(-0.160669 0.0154259 0)
(-0.176669 -0.0160864 0)
(-0.18332 -0.0527298 0)
(-0.17988 -0.0904526 0)
(-0.167499 -0.125776 0)
(-0.148321 -0.156455 0)
(-0.124647 -0.181437 0)
(-0.0985331 -0.200508 0)
(-0.0716601 -0.213983 0)
(-0.0453216 -0.222497 0)
(-0.0204131 -0.226862 0)
(-4.20094e-05 0.000220457 0)
(-0.00013181 0.000305948 0)
(-0.000307521 0.000555607 0)
(-0.000601513 0.0010305 0)
(-0.00108385 0.00183335 0)
(-0.00183873 0.00309715 0)
(-0.00296444 0.00497545 0)
(-0.00457288 0.00762983 0)
(-0.00679326 0.0112147 0)
(-0.00978581 0.0158597 0)
(-0.0137693 0.0216474 0)
(-0.0190666 0.0285857 0)
(-0.0261605 0.0365563 0)
(-0.0357483 0.0452271 0)
(-0.0487528 0.0538853 0)
(-0.0661844 0.0611716 0)
(-0.0886922 0.0648511 0)
(-0.11584 0.0619414 0)
(-0.145439 0.0494095 0)
(-0.173414 0.0254531 0)
(-0.194781 -0.00921144 0)
(-0.205525 -0.0510869 0)
(-0.204152 -0.0951519 0)
(-0.191811 -0.136915 0)
(-0.17105 -0.173492 0)
(-0.144611 -0.203534 0)
(-0.114905 -0.226704 0)
(-0.0839164 -0.243253 0)
(-0.0532328 -0.253814 0)
(-0.0240151 -0.25927 0)
(-3.85731e-05 0.000227824 0)
(-0.000120396 0.000315025 0)
(-0.000280331 0.000572057 0)
(-0.000547934 0.00106103 0)
(-0.000987032 0.00188775 0)
(-0.00167449 0.00318943 0)
(-0.00270037 0.00512489 0)
(-0.00416802 0.00786259 0)
(-0.00619856 0.0115668 0)
(-0.00894575 0.016383 0)
(-0.0126256 0.022421 0)
(-0.0175659 0.0297356 0)
(-0.0242732 0.0382856 0)
(-0.033509 0.0478551 0)
(-0.0463494 0.057885 0)
(-0.0641233 0.0671459 0)
(-0.0879834 0.0733472 0)
(-0.118065 0.0730823 0)
(-0.152528 0.0623961 0)
(-0.186953 0.0382451 0)
(-0.215106 0.000413884 0)
(-0.231253 -0.0474491 0)
(-0.232737 -0.0991006 0)
(-0.220695 -0.148603 0)
(-0.198267 -0.192268 0)
(-0.168766 -0.228456 0)
(-0.134976 -0.256742 0)
(-0.099144 -0.277271 0)
(-0.0631886 -0.290578 0)
(-0.0285961 -0.29757 0)
(-3.50083e-05 0.000234629 0)
(-0.000108672 0.000323234 0)
(-0.000252386 0.000586938 0)
(-0.000492864 0.00108865 0)
(-0.000887508 0.00193699 0)
(-0.0015056 0.00327299 0)
(-0.00242866 0.00526032 0)
(-0.00375092 0.00807388 0)
(-0.0055844 0.0118873 0)
(-0.00807436 0.0168616 0)
(-0.0114299 0.023134 0)
(-0.0159768 0.0308074 0)
(-0.0222318 0.0399226 0)
(-0.0310009 0.0503953 0)
(-0.043489 0.0618606 0)
(-0.0613451 0.0733029 0)
(-0.0862993 0.0824836 0)
(-0.119247 0.0856549 0)
(-0.159004 0.0778619 0)
(-0.201065 0.054436 0)
(-0.237827 0.0136445 0)
(-0.261162 -0.0411248 0)
(-0.266523 -0.101974 0)
(-0.255049 -0.160801 0)
(-0.230858 -0.212935 0)
(-0.198034 -0.256489 0)
(-0.159779 -0.291158 0)
(-0.118323 -0.316949 0)
(-0.0760324 -0.334029 0)
(-0.0346989 -0.343407 0)
(-3.1316e-05 0.00024087 0)
(-9.66683e-05 0.000330553 0)
(-0.000223763 0.000600209 0)
(-0.000436452 0.00111328 0)
(-0.000785541 0.00198092 0)
(-0.00133252 0.00334758 0)
(-0.00215004 0.00538134 0)
(-0.00332271 0.008263 0)
(-0.00495247 0.012175 0)
(-0.00717404 0.0172933 0)
(-0.0101857 0.0237818 0)
(-0.0143031 0.0317917 0)
(-0.0200395 0.0414486 0)
(-0.028221 0.0528111 0)
(-0.0401442 0.0657459 0)
(-0.0577591 0.0795483 0)
(-0.083431 0.0921695 0)
(-0.119004 0.0996764 0)
(-0.164364 0.0961188 0)
(-0.215364 0.0747914 0)
(-0.26307 0.031582 0)
(-0.296098 -0.0311631 0)
(-0.306643 -0.103409 0)
(-0.295902 -0.173497 0)
(-0.269796 -0.235672 0)
(-0.233372 -0.287791 0)
(-0.190755 -0.330272 0)
(-0.14273 -0.36351 0)
(-0.0930884 -0.38528 0)
(-0.0438285 -0.399242 0)
(-2.74962e-05 0.000246553 0)
(-8.44177e-05 0.000336959 0)
(-0.000194542 0.000611836 0)
(-0.000378859 0.00113486 0)
(-0.00068142 0.00201941 0)
(-0.00115574 0.00341298 0)
(-0.0018653 0.00548757 0)
(-0.00288464 0.0084293 0)
(-0.00430463 0.0124287 0)
(-0.00624753 0.0176758 0)
(-0.00889683 0.0243597 0)
(-0.0125502 0.0326791 0)
(-0.0177026 0.0428443 0)
(-0.0251724 0.055063 0)
(-0.0362978 0.0694639 0)
(-0.0532836 0.0857602 0)
(-0.0791618 0.102259 0)
(-0.116886 0.115085 0)
(-0.167923 0.117441 0)
(-0.229199 0.100211 0)
(-0.290829 0.0557727 0)
(-0.337244 -0.0161806 0)
(-0.35463 -0.103171 0)
(-0.344295 -0.186713 0)
(-0.316185 -0.260844 0)
(-0.274946 -0.322391 0)
(-0.228326 -0.373246 0)
(-0.171584 -0.422125 0)
(-0.111631 -0.442768 0)
(-0.0572082 -0.468254 0)
(-2.35466e-05 0.000251691 0)
(-7.19513e-05 0.000342431 0)
(-0.000164802 0.000621783 0)
(-0.000320239 0.00115332 0)
(-0.000575423 0.00205237 0)
(-0.000975722 0.00346902 0)
(-0.00157521 0.00557871 0)
(-0.00243789 0.00857223 0)
(-0.00364272 0.0126474 0)
(-0.00529768 0.018007 0)
(-0.00756765 0.0248638 0)
(-0.0107246 0.0334608 0)
(-0.0152301 0.0440908 0)
(-0.0218652 0.0571106 0)
(-0.0319462 0.0729284 0)
(-0.0478509 0.0917902 0)
(-0.0732803 0.11254 0)
(-0.112379 0.131705 0)
(-0.168782 0.142007 0)
(-0.241534 0.131707 0)
(-0.320764 0.0883471 0)
(-0.386332 0.00612667 0)
(-0.41277 -0.101535 0)
(-0.400592 -0.200475 0)
(-0.370698 -0.290039 0)
(-0.307317 -0.365043 0)
(-0.219485 -0.433521 0)
(-0.128111 -0.524825 0)
(-0.0561903 -0.504476 0)
(-0.0298723 -0.518299 0)
(-1.94612e-05 0.000256295 0)
(-5.93e-05 0.00034695 0)
(-0.000134626 0.000630025 0)
(-0.000260754 0.00116861 0)
(-0.000467843 0.00207969 0)
(-0.000792978 0.00351554 0)
(-0.00128059 0.00565446 0)
(-0.00198376 0.00869128 0)
(-0.00296877 0.0128302 0)
(-0.00432763 0.0182852 0)
(-0.00620313 0.0252901 0)
(-0.00883417 0.0341286 0)
(-0.0126342 0.0451701 0)
(-0.0183175 0.0589139 0)
(-0.0271042 0.076045 0)
(-0.0414149 0.0974616 0)
(-0.065604 0.122727 0)
(-0.104919 0.149203 0)
(-0.165795 0.16981 0)
(-0.250773 0.170309 0)
(-0.351759 0.132155 0)
(-0.44589 0.0399014 0)
(-0.485339 -0.10068 0)
(-0.458843 -0.216572 0)
(-0.406853 -0.340908 0)
(-0.257297 -0.452916 0)
(-0.169547 -0.587709 0)
(-0.147761 -0.558569 0)
(-0.0748185 -0.512414 0)
(-0.0223696 -0.553583 0)
(-1.52288e-05 0.000260377 0)
(-4.64934e-05 0.000350503 0)
(-0.000104098 0.00063654 0)
(-0.000200572 0.00118069 0)
(-0.000358982 0.00210131 0)
(-0.000608021 0.00355238 0)
(-0.000982283 0.00571459 0)
(-0.0015236 0.00878604 0)
(-0.0022849 0.0129762 0)
(-0.00334074 0.0185087 0)
(-0.00480878 0.0256352 0)
(-0.00688815 0.034675 0)
(-0.00993041 0.0460653 0)
(-0.0145553 0.0604354 0)
(-0.0218094 0.0787145 0)
(-0.0339545 0.102572 0)
(-0.0560139 0.132458 0)
(-0.0939279 0.167038 0)
(-0.157565 0.200517 0)
(-0.254619 0.216946 0)
(-0.381419 0.190247 0)
(-0.518342 0.0909254 0)
(-0.58347 -0.10685 0)
(-0.537164 -0.25693 0)
(-0.43021 -0.402203 0)
(-0.38164 -0.550071 0)
(-0.262949 -0.591561 0)
(-0.201274 -0.623172 0)
(-0.127711 -0.627883 0)
(-0.0552292 -0.629746 0)
(-1.08319e-05 0.000263951 0)
(-3.35582e-05 0.000353079 0)
(-7.33026e-05 0.000641307 0)
(-0.000139858 0.00118953 0)
(-0.000249141 0.00211715 0)
(-0.000421363 0.00357946 0)
(-0.000681123 0.00575891 0)
(-0.00105872 0.00885615 0)
(-0.00159323 0.0130847 0)
(-0.00234049 0.0186762 0)
(-0.00339044 0.0258964 0)
(-0.00489664 0.0350935 0)
(-0.00713674 0.0467614 0)
(-0.0106116 0.061642 0)
(-0.0161287 0.0808374 0)
(-0.0254697 0.106888 0)
(-0.0445129 0.141293 0)
(-0.078859 0.184386 0)
(-0.142536 0.233167 0)
(-0.253079 0.27322 0)
(-0.409541 0.257139 0)
(-0.691316 0.129411 0)
(-0.777791 -0.0588227 0)
(-0.768598 -0.369857 0)
(-0.5743 -0.483698 0)
(-0.427738 -0.635877 0)
(-0.308564 -0.673608 0)
(-0.215914 -0.690419 0)
(-0.134546 -0.709816 0)
(-0.0605769 -0.714744 0)
(-6.24488e-06 0.000267029 0)
(-2.05188e-05 0.000354632 0)
(-4.23225e-05 0.00064425 0)
(-7.87767e-05 0.00119498 0)
(-0.00013862 0.00212693 0)
(-0.00023352 0.0035962 0)
(-0.000377953 0.0057864 0)
(-0.000590497 0.00889964 0)
(-0.000895954 0.013152 0)
(-0.00133042 0.0187802 0)
(-0.00195413 0.0260585 0)
(-0.00287037 0.0353543 0)
(-0.00427314 0.0471999 0)
(-0.00652326 0.0624218 0)
(-0.0101638 0.0821707 0)
(-0.0159561 0.109855 0)
(-0.0313492 0.148354 0)
(-0.0599112 0.199733 0)
(-0.122098 0.265517 0)
(-0.249606 0.33396 0)
(-0.418413 0.365634 0)
(-0.589775 0.272738 0)
(-0.900118 0.0596158 0)
(-0.986938 -0.392816 0)
(-0.834644 -0.751474 0)
(-0.44668 -0.740622 0)
(-0.340246 -0.787368 0)
(-0.235665 -0.803521 0)
(-0.141726 -0.797196 0)
(-0.0661417 -0.803582 0)
(-1.44306e-06 0.00026947 0)
(-1.74554e-05 0.000291045 0)
(-2.28477e-05 0.000530396 0)
(-3.21724e-05 0.0009888 0)
(-4.60858e-05 0.00177424 0)
(-6.67514e-05 0.00303528 0)
(-9.78461e-05 0.004963 0)
(-0.000146433 0.0077934 0)
(-0.000222541 0.0118123 0)
(-0.000336081 0.017345 0)
(-0.000512733 0.0247404 0)
(-0.000797267 0.0343979 0)
(-0.00128688 0.0468032 0)
(-0.00218637 0.0625877 0)
(-0.00387958 0.0828297 0)
(-0.00427182 0.111522 0)
(-0.0128102 0.15496 0)
(-0.0464507 0.215326 0)
(-0.113153 0.298953 0)
(-0.192595 0.409101 0)
(-0.429367 0.471202 0)
(-0.686378 0.44154 0)
(-0.236917 0.0520225 0)
(-0.392645 -0.390799 0)
(-0.40545 -0.697376 0)
(-0.564163 -0.849479 0)
(-0.492157 -0.904294 0)
(-0.422583 -0.923128 0)
(-0.315768 -0.899841 0)
(-0.155009 -0.895199 0)
(0.00057116 -0.00492869 0)
(0.0054366 -0.00490958 0)
(0.0107919 -0.00485224 0)
(0.0166297 -0.0047457 0)
(0.0229189 -0.00457751 0)
(0.0295852 -0.00433435 0)
(0.0365035 -0.00400358 0)
(0.0434754 -0.00357575 0)
(0.0502306 -0.00304716 0)
(0.0564124 -0.00242416 0)
(0.0616017 -0.00172637 0)
(0.0653465 -0.000989344 0)
(0.067225 -0.000263677 0)
(0.0669295 0.000391158 0)
(0.0643513 0.000917514 0)
(0.0596397 0.00127384 0)
(0.0532056 0.00144566 0)
(0.045656 0.00144931 0)
(0.0376753 0.00132531 0)
(0.0299002 0.00112486 0)
(0.0228226 0.000896081 0)
(0.0167488 0.000675012 0)
(0.0118049 0.000483065 0)
(0.00797546 0.000329144 0)
(0.00514968 0.000213533 0)
(0.00316503 0.000131691 0)
(0.00184079 7.70509e-05 0)
(0.00100251 4.28029e-05 0)
(0.000495826 2.29721e-05 0)
(0.000190708 1.30359e-05 0)
(0.000578795 -0.0112026 0)
(0.00550994 -0.0111589 0)
(0.0109368 -0.0110282 0)
(0.0168512 -0.0107857 0)
(0.0232196 -0.0104022 0)
(0.0299654 -0.00984775 0)
(0.0369587 -0.00909352 0)
(0.0439952 -0.00811804 0)
(0.0507978 -0.00691271 0)
(0.0570022 -0.00549231 0)
(0.0621831 -0.00390193 0)
(0.0658846 -0.00222325 0)
(0.0676866 -0.000572474 0)
(0.0672891 0.000914259 0)
(0.0645972 0.00210554 0)
(0.0597765 0.00290755 0)
(0.0532524 0.0032892 0)
(0.0456402 0.00328971 0)
(0.037625 0.00300265 0)
(0.0298382 0.00254487 0)
(0.0227635 0.00202512 0)
(0.0166999 0.00152436 0)
(0.011768 0.00109033 0)
(0.00794967 0.000742656 0)
(0.00513273 0.000481695 0)
(0.00315452 0.000297036 0)
(0.00183466 0.000173778 0)
(0.00099917 9.65315e-05 0)
(0.000494182 5.18069e-05 0)
(0.00019008 2.93998e-05 0)
(0.000592518 -0.0175919 0)
(0.00563996 -0.0175226 0)
(0.0111937 -0.0173159 0)
(0.0172436 -0.0169317 0)
(0.0237528 -0.0163244 0)
(0.0306389 -0.0154467 0)
(0.0377642 -0.0142532 0)
(0.0449139 -0.0127106 0)
(0.0517981 -0.0108062 0)
(0.0580393 -0.0085647 0)
(0.0632009 -0.00605891 0)
(0.066821 -0.00341953 0)
(0.0684826 -0.000831211 0)
(0.0679007 0.00149162 0)
(0.0650053 0.00334362 0)
(0.0599915 0.00458093 0)
(0.0533103 0.00515942 0)
(0.0455912 0.00514465 0)
(0.0375193 0.0046855 0)
(0.0297158 0.00396498 0)
(0.0226497 0.00315183 0)
(0.0166068 0.00237081 0)
(0.0116984 0.00169504 0)
(0.00790108 0.00115425 0)
(0.00510085 0.000748553 0)
(0.00313478 0.00046156 0)
(0.00182315 0.000270021 0)
(0.000992905 0.00014999 0)
(0.000491095 8.04965e-05 0)
(0.000188902 4.56816e-05 0)
(0.000612622 -0.0241651 0)
(0.00583059 -0.0240688 0)
(0.0115705 -0.0237812 0)
(0.0178191 -0.0232466 0)
(0.0245344 -0.022402 0)
(0.0316255 -0.0211817 0)
(0.0389432 -0.0195237 0)
(0.046257 -0.0173828 0)
(0.0532585 -0.0147436 0)
(0.0595509 -0.0116432 0)
(0.0646809 -0.0081857 0)
(0.0681785 -0.00455549 0)
(0.0696322 -0.00100994 0)
(0.0687794 0.00215503 0)
(0.0655873 0.00466073 0)
(0.0602942 0.00631671 0)
(0.0533875 0.00707145 0)
(0.0455162 0.00702234 0)
(0.0373647 0.00637699 0)
(0.0295386 0.00538536 0)
(0.0224858 0.00427505 0)
(0.016473 0.00321289 0)
(0.0115984 0.00229588 0)
(0.00783145 0.00156294 0)
(0.00505518 0.00101344 0)
(0.00310651 0.000624839 0)
(0.00180666 0.00036553 0)
(0.000983934 0.00020304 0)
(0.000486676 0.000108967 0)
(0.000187214 6.18401e-05 0)
(0.000639431 -0.0309945 0)
(0.00608642 -0.0308688 0)
(0.012076 -0.0304937 0)
(0.0185907 -0.0297964 0)
(0.0255816 -0.028695 0)
(0.0329464 -0.027105 0)
(0.0405202 -0.0249468 0)
(0.0480509 -0.0221641 0)
(0.0552055 -0.0187401 0)
(0.061561 -0.0147279 0)
(0.0666425 -0.0102683 0)
(0.0699701 -0.00560584 0)
(0.071141 -0.00107704 0)
(0.0699246 0.0029378 0)
(0.0663384 0.00608653 0)
(0.0606779 0.00813756 0)
(0.0534778 0.00903991 0)
(0.0454106 0.0089304 0)
(0.0371585 0.00807979 0)
(0.0293054 0.00680582 0)
(0.0222715 0.00539338 0)
(0.0162987 0.00404897 0)
(0.0114684 0.00289148 0)
(0.00774092 0.0019677 0)
(0.00499583 0.00127564 0)
(0.00306978 0.000786434 0)
(0.00178525 0.000460042 0)
(0.000972281 0.000255534 0)
(0.000480935 0.000137139 0)
(0.000185023 7.78308e-05 0)
(0.000673754 -0.0381582 0)
(0.00641337 -0.0380002 0)
(0.012722 -0.0375286 0)
(0.0195763 -0.036652 0)
(0.0269184 -0.0352684 0)
(0.0346311 -0.0332724 0)
(0.0425287 -0.0305668 0)
(0.0503314 -0.0270843 0)
(0.0576744 -0.0228096 0)
(0.0641016 -0.0178165 0)
(0.0691114 -0.0122895 0)
(0.0722128 -0.00654177 0)
(0.0730168 -0.000996626 0)
(0.0713353 0.00387556 0)
(0.0672516 0.00765179 0)
(0.0611334 0.0100662 0)
(0.0535726 0.011079 0)
(0.0452685 0.0108759 0)
(0.036897 0.00979607 0)
(0.0290145 0.00822591 0)
(0.0220061 0.0065053 0)
(0.0160837 0.0048774 0)
(0.0113084 0.00348042 0)
(0.00762968 0.00236748 0)
(0.00492296 0.00153448 0)
(0.00302469 0.000945907 0)
(0.00175897 0.0005533 0)
(0.000957977 0.00030733 0)
(0.000473888 0.000164936 0)
(0.000182334 9.36111e-05 0)
(0.000716478 -0.0457421 0)
(0.00681964 -0.0455479 0)
(0.0135239 -0.0449683 0)
(0.0207993 -0.0438912 0)
(0.0285758 -0.0421923 0)
(0.0367176 -0.0397441 0)
(0.0450118 -0.0364304 0)
(0.0531447 -0.0321744 0)
(0.0607108 -0.0269653 0)
(0.0672137 -0.0209037 0)
(0.07212 -0.0142277 0)
(0.0749275 -0.00732973 0)
(0.0752678 -0.000730127 0)
(0.0730093 0.00500679 0)
(0.0683179 0.00938864 0)
(0.0616492 0.0121257 0)
(0.0536616 0.0132025 0)
(0.0450822 0.0128651 0)
(0.0365761 0.0115275 0)
(0.028664 0.00964482 0)
(0.0216892 0.00760913 0)
(0.0158282 0.00569644 0)
(0.0111188 0.00406127 0)
(0.00749798 0.00276125 0)
(0.00483673 0.00178925 0)
(0.00297135 0.00110282 0)
(0.00172788 0.000645049 0)
(0.000941062 0.000358284 0)
(0.000465556 0.000192281 0)
(0.000179154 0.000109138 0)
(0.000768417 -0.0538432 0)
(0.00731497 -0.0536079 0)
(0.0145017 -0.0529054 0)
(0.0222897 -0.051601 0)
(0.0305937 -0.049545 0)
(0.0392541 -0.0465859 0)
(0.0480249 -0.042588 0)
(0.0565491 -0.037466 0)
(0.0643721 -0.0312181 0)
(0.0709484 -0.0239804 0)
(0.0757081 -0.0160557 0)
(0.0781393 -0.00793014 0)
(0.0779035 -0.000232616 0)
(0.0749425 0.00637357 0)
(0.069525 0.0113309 0)
(0.0622106 0.014339 0)
(0.0537319 0.0154232 0)
(0.0448429 0.0149036 0)
(0.0361907 0.0132751 0)
(0.0282517 0.0110615 0)
(0.0213201 0.00870308 0)
(0.0155322 0.00650434 0)
(0.0108997 0.00463265 0)
(0.00734609 0.003148 0)
(0.00473736 0.00203929 0)
(0.00290992 0.00125676 0)
(0.00169208 0.000735041 0)
(0.000921581 0.000408259 0)
(0.00045596 0.0002191 0)
(0.000175494 0.000124369 0)
(0.000831127 -0.0625706 0)
(0.0079123 -0.0622881 0)
(0.0156802 -0.0614445 0)
(0.0240848 -0.0598789 0)
(0.0330216 -0.0574137 0)
(0.0423013 -0.0538709 0)
(0.0516365 -0.0490939 0)
(0.0606169 -0.0429915 0)
(0.0687285 -0.0355766 0)
(0.0753676 -0.0270315 0)
(0.0799231 -0.0177391 0)
(0.0818765 -0.00829573 0)
(0.0809331 0.000547458 0)
(0.0771287 0.00802208 0)
(0.0708574 0.013514 0)
(0.0627998 0.0167289 0)
(0.0537686 0.0177532 0)
(0.0445405 0.0169958 0)
(0.0357352 0.015039 0)
(0.0277752 0.0124742 0)
(0.0208981 0.00978508 0)
(0.0151959 0.00729926 0)
(0.0106516 0.00519309 0)
(0.00717435 0.0035267 0)
(0.00462511 0.0022839 0)
(0.00284054 0.0014073 0)
(0.00165166 0.000823027 0)
(0.000899588 0.000457117 0)
(0.000445126 0.000245319 0)
(0.000171363 0.000139264 0)
(0.00090626 -0.0720509 0)
(0.00862746 -0.0717133 0)
(0.0170909 -0.0707059 0)
(0.0262318 -0.0688372 0)
(0.0359219 -0.0658978 0)
(0.0459345 -0.0616804 0)
(0.0559313 -0.0560075 0)
(0.0654371 -0.048784 0)
(0.0738659 -0.0400459 0)
(0.0805459 -0.0300353 0)
(0.0848207 -0.0192342 0)
(0.0861716 -0.00836977 0)
(0.0843657 0.00166818 0)
(0.0795578 0.0100035 0)
(0.0722951 0.0159753 0)
(0.063395 0.0193182 0)
(0.0537539 0.0202033 0)
(0.0441633 0.019145 0)
(0.0352033 0.0168187 0)
(0.0272317 0.013881 0)
(0.0204226 0.0108529 0)
(0.0148194 0.00807929 0)
(0.0103749 0.00574118 0)
(0.00698314 0.00389636 0)
(0.00450025 0.00252245 0)
(0.0027634 0.00155403 0)
(0.00160673 0.000908771 0)
(0.000875142 0.000504725 0)
(0.000433086 0.000270867 0)
(0.000166773 0.000153782 0)
(0.000995871 -0.0824305 0)
(0.00948054 -0.0820282 0)
(0.0187725 -0.0808283 0)
(0.0287891 -0.0786043 0)
(0.0393714 -0.0751103 0)
(0.0502468 -0.0701063 0)
(0.0610137 -0.0633932 0)
(0.0711182 -0.0548769 0)
(0.079888 -0.0446259 0)
(0.0865719 -0.0329605 0)
(0.0904656 -0.0204853 0)
(0.0910598 -0.00808382 0)
(0.0882072 0.00319848 0)
(0.0822153 0.0123743 0)
(0.0738128 0.0187538 0)
(0.0639706 0.0221285 0)
(0.0536679 0.0227824 0)
(0.0436986 0.0213527 0)
(0.0345884 0.0186125 0)
(0.0266188 0.0152793 0)
(0.0198931 0.0119041 0)
(0.0144029 0.00884246 0)
(0.0100699 0.00627546 0)
(0.0067729 0.00425598 0)
(0.0043631 0.00275427 0)
(0.00267871 0.00169656 0)
(0.00155741 0.000992037 0)
(0.000848311 0.000550951 0)
(0.00041987 0.000295673 0)
(0.000161737 0.000167884 0)
(0.00110266 -0.0938813 0)
(0.0104963 -0.0934026 0)
(0.0207738 -0.0919748 0)
(0.0318292 -0.0893303 0)
(0.0434656 -0.0851815 0)
(0.0553525 -0.0792522 0)
(0.0670113 -0.0713219 0)
(0.077792 -0.0613027 0)
(0.0869192 -0.0493098 0)
(0.0935505 -0.0357638 0)
(0.0969318 -0.021422 0)
(0.0965782 -0.00735455 0)
(0.0924612 0.00521696 0)
(0.0850801 0.0151969 0)
(0.0753789 0.0218898 0)
(0.0644961 0.0251804 0)
(0.0534876 0.0254975 0)
(0.0431325 0.0236188 0)
(0.0338836 0.0204175 0)
(0.0259336 0.0166658 0)
(0.0193089 0.012936 0)
(0.0139469 0.00958672 0)
(0.00973739 0.00679448 0)
(0.0065441 0.00460457 0)
(0.004214 0.00297872 0)
(0.00258669 0.00183448 0)
(0.00150383 0.00107259 0)
(0.000819168 0.000595669 0)
(0.000405517 0.000319669 0)
(0.00015627 0.000181531 0)
(0.00122979 -0.106608 0)
(0.0117056 -0.106038 0)
(0.0231552 -0.104338 0)
(0.0354425 -0.101192 0)
(0.0483227 -0.0962636 0)
(0.0613937 -0.0892375 0)
(0.0740812 -0.0798718 0)
(0.0856192 -0.0680934 0)
(0.0951098 -0.0540815 0)
(0.101606 -0.0383863 0)
(0.104304 -0.021955 0)
(0.102766 -0.00608145 0)
(0.0971256 0.00781595 0)
(0.088123 0.0185401 0)
(0.0769542 0.0254248 0)
(0.0649361 0.0284926 0)
(0.0531879 0.0283532 0)
(0.04245 0.0259411 0)
(0.0330816 0.0222298 0)
(0.0251736 0.0180368 0)
(0.0186697 0.0139456 0)
(0.0134518 0.01031 0)
(0.00937784 0.0072968 0)
(0.00629728 0.00494118 0)
(0.00405333 0.00319521 0)
(0.00248759 0.00196742 0)
(0.00144614 0.00115022 0)
(0.000787791 0.000638758 0)
(0.000390065 0.00034279 0)
(0.000150386 0.000194686 0)
(0.00138167 -0.120856 0)
(0.0131479 -0.120175 0)
(0.0259928 -0.118147 0)
(0.0397421 -0.114397 0)
(0.05409 -0.108534 0)
(0.0685449 -0.100198 0)
(0.0824155 -0.0891282 0)
(0.0947949 -0.0752776 0)
(0.10464 -0.0589122 0)
(0.110882 -0.0407486 0)
(0.112676 -0.0219712 0)
(0.109661 -0.00414328 0)
(0.10219 0.011102 0)
(0.0913037 0.0224795 0)
(0.0784905 0.0294005 0)
(0.0652495 0.0320811 0)
(0.0527408 0.0313506 0)
(0.0416356 0.0283153 0)
(0.0321754 0.024044 0)
(0.0243364 0.0193879 0)
(0.0179753 0.0149297 0)
(0.0129181 0.01101 0)
(0.00899199 0.00778097 0)
(0.00603302 0.00526486 0)
(0.00388151 0.00340313 0)
(0.00238167 0.00209503 0)
(0.0013845 0.00122471 0)
(0.000754267 0.000680097 0)
(0.000373557 0.000364972 0)
(0.000144104 0.000207312 0)
(0.00156353 -0.136918 0)
(0.0148723 -0.136103 0)
(0.0293824 -0.133675 0)
(0.0448697 -0.129192 0)
(0.0609507 -0.122199 0)
(0.0770223 -0.112289 0)
(0.0922496 -0.099184 0)
(0.105555 -0.0828789 0)
(0.115723 -0.0637557 0)
(0.121551 -0.0427447 0)
(0.122154 -0.0213282 0)
(0.1173 -0.00139017 0)
(0.107631 0.0151986 0)
(0.0945682 0.0270964 0)
(0.0799289 0.0338574 0)
(0.0653891 0.0359574 0)
(0.052116 0.034487 0)
(0.0406731 0.0307341 0)
(0.0311578 0.0258534 0)
(0.0234198 0.0207141 0)
(0.0172258 0.015885 0)
(0.0123466 0.0116847 0)
(0.00858065 0.00824553 0)
(0.00575197 0.00557468 0)
(0.003699 0.00360189 0)
(0.00226921 0.00221693 0)
(0.00131907 0.00129585 0)
(0.000718689 0.000719575 0)
(0.000356039 0.000386154 0)
(0.000137441 0.000219378 0)
(0.0017823 -0.155156 0)
(0.0169425 -0.154175 0)
(0.0334464 -0.151256 0)
(0.0510049 -0.145876 0)
(0.069135 -0.137506 0)
(0.0870946 -0.125689 0)
(0.103873 -0.110141 0)
(0.118189 -0.0909133 0)
(0.128621 -0.0685433 0)
(0.13381 -0.0442345 0)
(0.132853 -0.0198436 0)
(0.125709 0.00235994 0)
(0.11341 0.0202482 0)
(0.0978454 0.0324783 0)
(0.0811982 0.0388335 0)
(0.0653019 0.0401284 0)
(0.0512813 0.0377553 0)
(0.0395464 0.0331876 0)
(0.0300225 0.0276498 0)
(0.0224222 0.0220098 0)
(0.0164213 0.0168078 0)
(0.0117382 0.0123316 0)
(0.00814469 0.00868907 0)
(0.00545481 0.00586975 0)
(0.00350625 0.00379094 0)
(0.00215052 0.00233281 0)
(0.00125003 0.00136344 0)
(0.000681152 0.000757082 0)
(0.000337557 0.000406278 0)
(0.000130417 0.00023085 0)
(0.00204697 -0.176013 0)
(0.0194405 -0.174825 0)
(0.0383428 -0.171295 0)
(0.0583773 -0.164805 0)
(0.0789331 -0.154744 0)
(0.0990956 -0.140605 0)
(0.117642 -0.122106 0)
(0.133046 -0.0993856 0)
(0.143642 -0.0731763 0)
(0.147893 -0.0450331 0)
(0.144898 -0.0172868 0)
(0.134905 0.00732369 0)
(0.119465 0.0264141 0)
(0.101042 0.0387164 0)
(0.0822137 0.0443618 0)
(0.0649283 0.0445938 0)
(0.0502027 0.0411431 0)
(0.0382394 0.0356631 0)
(0.0287633 0.0294237 0)
(0.0213421 0.0232688 0)
(0.0155625 0.0176944 0)
(0.0110938 0.0129487 0)
(0.00768507 0.0091102 0)
(0.00514227 0.00614922 0)
(0.00330377 0.00396974 0)
(0.0020259 0.00244233 0)
(0.00117757 0.00142731 0)
(0.00064176 0.000792516 0)
(0.000318163 0.000425289 0)
(0.000123053 0.000241696 0)
(0.00237004 -0.200038 0)
(0.0224761 -0.198589 0)
(0.0442788 -0.194288 0)
(0.067283 -0.186407 0)
(0.0907121 -0.174249 0)
(0.113439 -0.157266 0)
(0.133991 -0.135195 0)
(0.150552 -0.108283 0)
(0.161162 -0.077516 0)
(0.164071 -0.0448972 0)
(0.158422 -0.0133672 0)
(0.14488 0.0137685 0)
(0.125701 0.0338805 0)
(0.104039 0.0459029 0)
(0.0828748 0.0504667 0)
(0.0642029 0.0493437 0)
(0.0488457 0.0446314 0)
(0.036737 0.038144 0)
(0.0273753 0.031164 0)
(0.0201791 0.0244843 0)
(0.0146503 0.0185408 0)
(0.0104149 0.0135334 0)
(0.0072029 0.00950752 0)
(0.00481518 0.00641221 0)
(0.00309212 0.00413779 0)
(0.00189572 0.00254518 0)
(0.00110189 0.00148728 0)
(0.000600621 0.000825777 0)
(0.000297911 0.000443132 0)
(0.000115371 0.000251887 0)
(0.00276828 -0.227936 0)
(0.0261997 -0.226147 0)
(0.0515356 -0.220852 0)
(0.0781135 -0.2112 0)
(0.104942 -0.196417 0)
(0.130643 -0.175933 0)
(0.153453 -0.149523 0)
(0.171225 -0.117574 0)
(0.181634 -0.0813736 0)
(0.182667 -0.0435074 0)
(0.173557 -0.00771153 0)
(0.155598 0.0220179 0)
(0.131981 0.0428546 0)
(0.106683 0.0541277 0)
(0.0830647 0.0571611 0)
(0.0630552 0.0543582 0)
(0.0471755 0.0481949 0)
(0.0350257 0.0406109 0)
(0.0258546 0.0328584 0)
(0.0189332 0.0256492 0)
(0.013686 0.0193431 0)
(0.00970265 0.0140836 0)
(0.0066993 0.00987974 0)
(0.00447435 0.00665797 0)
(0.00287184 0.0042946 0)
(0.0017603 0.0026411 0)
(0.00102318 0.00154317 0)
(0.000557846 0.000856777 0)
(0.000276854 0.000459762 0)
(0.000107394 0.000261395 0)
(0.0032665 -0.260618 0)
(0.0308308 -0.25837 0)
(0.0605088 -0.251753 0)
(0.0913946 -0.2398 0)
(0.122226 -0.221692 0)
(0.151339 -0.196883 0)
(0.17667 -0.16521 0)
(0.19569 -0.127201 0)
(0.205613 -0.0844968 0)
(0.204059 -0.0404353 0)
(0.190441 0.000166507 0)
(0.16697 0.0324623 0)
(0.138111 0.0535625 0)
(0.108784 0.06347 0)
(0.0826495 0.0644402 0)
(0.0614106 0.059603 0)
(0.0451589 0.0518003 0)
(0.0330937 0.043041 0)
(0.0241989 0.0344932 0)
(0.0176052 0.026756 0)
(0.0126712 0.0200971 0)
(0.00895877 0.0145971 0)
(0.00617556 0.0102256 0)
(0.00412068 0.00688572 0)
(0.00264353 0.00443972 0)
(0.00162003 0.0027298 0)
(0.000941678 0.00159484 0)
(0.000513553 0.00088543 0)
(0.000255051 0.000475131 0)
(9.9147e-05 0.000270191 0)
(0.0039014 -0.299323 0)
(0.036717 -0.296414 0)
(0.0717858 -0.287945 0)
(0.10785 -0.272917 0)
(0.143334 -0.250548 0)
(0.176292 -0.220396 0)
(0.204403 -0.182369 0)
(0.224704 -0.137085 0)
(0.233779 -0.0865578 0)
(0.228703 -0.0351271 0)
(0.20918 0.0108818 0)
(0.178829 0.0455701 0)
(0.143821 0.066243 0)
(0.110108 0.0739894 0)
(0.0814788 0.0722751 0)
(0.059193 0.0650277 0)
(0.0427657 0.0554061 0)
(0.0309324 0.045408 0)
(0.0224077 0.0360538 0)
(0.0161972 0.0277968 0)
(0.0116082 0.0207987 0)
(0.00818511 0.0150715 0)
(0.00563304 0.0105438 0)
(0.00375513 0.00709475 0)
(0.0024078 0.00457273 0)
(0.00147528 0.00281103 0)
(0.000857596 0.00164213 0)
(0.000467866 0.000911656 0)
(0.000232561 0.000489196 0)
(9.06559e-05 0.000278249 0)
(0.00472875 -0.345892 0)
(0.0445155 -0.341881 0)
(0.0862987 -0.330574 0)
(0.128499 -0.311339 0)
(0.169257 -0.283424 0)
(0.206385 -0.246731 0)
(0.237529 -0.201125 0)
(0.25917 -0.147147 0)
(0.267004 -0.0871438 0)
(0.25715 -0.0267934 0)
(0.229833 0.0252484 0)
(0.190894 0.0618991 0)
(0.148744 0.0811366 0)
(0.110369 0.0857122 0)
(0.0793882 0.080607 0)
(0.056327 0.0705637 0)
(0.0399703 0.0589626 0)
(0.0285367 0.047683 0)
(0.0204823 0.0375248 0)
(0.0147119 0.0287638 0)
(0.0104996 0.0214439 0)
(0.00738368 0.0155049 0)
(0.0050732 0.0108332 0)
(0.00337868 0.0072844 0)
(0.0021653 0.00469324 0)
(0.00132644 0.00288456 0)
(0.000771165 0.00168493 0)
(0.000420908 0.000935382 0)
(0.000209446 0.000501917 0)
(8.19472e-05 0.000285544 0)
(0.00581498 -0.403744 0)
(0.0559249 -0.397084 0)
(0.105478 -0.380647 0)
(0.154764 -0.355991 0)
(0.201248 -0.320521 0)
(0.242499 -0.276088 0)
(0.277023 -0.221638 0)
(0.300144 -0.157352 0)
(0.30644 -0.0857503 0)
(0.290106 -0.0144037 0)
(0.252367 0.0443412 0)
(0.202712 0.0820988 0)
(0.152393 0.0984629 0)
(0.109233 0.0986132 0)
(0.0762042 0.0893383 0)
(0.0527423 0.0761218 0)
(0.0367541 0.0624119 0)
(0.0259059 0.0498348 0)
(0.0184262 0.0388902 0)
(0.013153 0.029649 0)
(0.00934837 0.0220288 0)
(0.00655668 0.0158952 0)
(0.00449756 0.0110927 0)
(0.00299235 0.00745407 0)
(0.00191668 0.00480089 0)
(0.00117393 0.0029502 0)
(0.000682619 0.00172311 0)
(0.000372808 0.000956544 0)
(0.000185768 0.000513261 0)
(7.30492e-05 0.000292053 0)
(0.00732551 -0.481329 0)
(0.0724303 -0.463404 0)
(0.126597 -0.43766 0)
(0.187805 -0.409687 0)
(0.23977 -0.361216 0)
(0.284871 -0.308858 0)
(0.324019 -0.244118 0)
(0.348723 -0.167825 0)
(0.353743 -0.081871 0)
(0.328478 0.00368671 0)
(0.276541 0.0695796 0)
(0.213577 0.106895 0)
(0.154128 0.118382 0)
(0.106313 0.112589 0)
(0.0717521 0.0983242 0)
(0.0483788 0.0815898 0)
(0.0331083 0.0656884 0)
(0.0230447 0.0518304 0)
(0.0162458 0.0401341 0)
(0.0115257 0.0304448 0)
(0.00815821 0.0225497 0)
(0.00570661 0.0162405 0)
(0.00390781 0.0113214 0)
(0.00259725 0.00760319 0)
(0.00166265 0.00489535 0)
(0.00101817 0.00300776 0)
(0.000592207 0.00175655 0)
(0.000323703 0.000975082 0)
(0.000161593 0.000523196 0)
(6.39922e-05 0.000297752 0)
(0.00750966 -0.559554 0)
(0.0419931 -0.517096 0)
(0.0733887 -0.511692 0)
(0.156772 -0.46941 0)
(0.250604 -0.41529 0)
(0.323244 -0.351009 0)
(0.379749 -0.268591 0)
(0.405474 -0.17931 0)
(0.411616 -0.0750892 0)
(0.373393 0.0299393 0)
(0.301709 0.10283 0)
(0.222428 0.137049 0)
(0.153138 0.140943 0)
(0.101185 0.127433 0)
(0.0658679 0.107369 0)
(0.0431911 0.0868331 0)
(0.0290363 0.0687207 0)
(0.0199631 0.0536364 0)
(0.0139494 0.0412408 0)
(0.00983573 0.0311438 0)
(0.00693302 0.023003 0)
(0.00483602 0.0165391 0)
(0.00330561 0.0115184 0)
(0.00219445 0.00773129 0)
(0.00140388 0.00497636 0)
(0.000859574 0.00305707 0)
(0.000500172 0.00178517 0)
(0.000273723 0.000990945 0)
(0.000136985 0.000531694 0)
(5.48056e-05 0.000302612 0)
(-0.0070414 -0.583198 0)
(0.0201572 -0.534833 0)
(0.0945633 -0.526111 0)
(0.137881 -0.617243 0)
(0.190765 -0.517552 0)
(0.301271 -0.449857 0)
(0.426388 -0.301368 0)
(0.467076 -0.195947 0)
(0.485408 -0.06523 0)
(0.425891 0.0687449 0)
(0.326458 0.146403 0)
(0.227725 0.173252 0)
(0.148426 0.166002 0)
(0.0934053 0.142792 0)
(0.0584157 0.116225 0)
(0.0371561 0.0916927 0)
(0.0245566 0.0714335 0)
(0.0166775 0.0552201 0)
(0.011548 0.0421953 0)
(0.00809029 0.0317391 0)
(0.00567722 0.0233855 0)
(0.00394773 0.0167895 0)
(0.00269275 0.0116828 0)
(0.00178509 0.00783792 0)
(0.00114111 0.00504367 0)
(0.000698585 0.00309799 0)
(0.000406767 0.00180888 0)
(0.000223008 0.00100409 0)
(0.000112009 0.000538731 0)
(4.55231e-05 0.000306605 0)
(0.00688209 -0.634002 0)
(0.0693199 -0.626342 0)
(0.145067 -0.627019 0)
(0.209575 -0.632504 0)
(0.291257 -0.558511 0)
(0.40461 -0.542258 0)
(0.444488 -0.35949 0)
(0.560047 -0.231394 0)
(0.586629 -0.0512218 0)
(0.485239 0.125642 0)
(0.348274 0.20265 0)
(0.227328 0.215953 0)
(0.138828 0.193114 0)
(0.0825526 0.158129 0)
(0.0493093 0.124601 0)
(0.03028 0.0959845 0)
(0.0197061 0.073752 0)
(0.0132102 0.0565506 0)
(0.00905536 0.0429839 0)
(0.00629742 0.0322246 0)
(0.0043957 0.0236946 0)
(0.00304473 0.0169904 0)
(0.00207111 0.011814 0)
(0.00137036 0.00792271 0)
(0.000875059 0.00509707 0)
(0.000535654 0.0031304 0)
(0.000312255 0.00182762 0)
(0.000171699 0.00101447 0)
(8.67351e-05 0.000544288 0)
(3.6183e-05 0.000309701 0)
(0.00808462 -0.71606 0)
(0.0763284 -0.71438 0)
(0.150205 -0.714478 0)
(0.239601 -0.705513 0)
(0.355975 -0.678259 0)
(0.467626 -0.627462 0)
(0.620592 -0.440832 0)
(0.822001 -0.272916 0)
(0.751026 -0.00873492 0)
(0.61855 0.192465 0)
(0.376697 0.27124 0)
(0.219445 0.265219 0)
(0.123096 0.221317 0)
(0.0682694 0.172633 0)
(0.0385318 0.1322 0)
(0.022607 0.0994926 0)
(0.0145421 0.0756072 0)
(0.00958903 0.0576003 0)
(0.00648718 0.0435946 0)
(0.00446597 0.0325952 0)
(0.0030936 0.023928 0)
(0.00213007 0.0171405 0)
(0.00144258 0.0119114 0)
(0.000951438 0.00798538 0)
(0.000606475 0.0051364 0)
(0.000371225 0.00315421 0)
(0.000216893 0.00184133 0)
(0.000119936 0.00102207 0)
(6.12295e-05 0.00054835 0)
(2.68267e-05 0.000311878 0)
(0.00818807 -0.803164 0)
(0.0803549 -0.804134 0)
(0.163401 -0.794612 0)
(0.265375 -0.798473 0)
(0.376968 -0.788081 0)
(0.474892 -0.725985 0)
(0.903573 -0.768453 0)
(0.969457 -0.345485 0)
(0.876153 0.10135 0)
(0.606483 0.340664 0)
(0.384909 0.376152 0)
(0.20458 0.31864 0)
(0.102907 0.248799 0)
(0.050547 0.184655 0)
(0.0261255 0.138421 0)
(0.0142398 0.101729 0)
(0.00914046 0.0768143 0)
(0.00584534 0.0582725 0)
(0.00386088 0.0439778 0)
(0.00260537 0.0328256 0)
(0.00177629 0.0240729 0)
(0.00120691 0.0172337 0)
(0.000809039 0.0119717 0)
(0.000529469 0.00802425 0)
(0.000336075 0.00516079 0)
(0.000205738 0.00316891 0)
(0.000120935 0.00184978 0)
(6.78571e-05 0.00102675 0)
(3.55594e-05 0.000550852 0)
(1.75013e-05 0.000313078 0)
(0.0187902 -0.895704 0)
(0.191078 -0.894128 0)
(0.345285 -0.903038 0)
(0.433631 -0.911976 0)
(0.502797 -0.882457 0)
(0.540774 -0.827898 0)
(0.364423 -0.641364 0)
(0.355524 -0.289953 0)
(0.749167 0.0855223 0)
(0.675208 0.485083 0)
(0.366357 0.466613 0)
(0.158415 0.380438 0)
(0.0987452 0.277241 0)
(0.0303878 0.195048 0)
(0.00857837 0.144519 0)
(0.00502258 0.102864 0)
(0.00342296 0.0774353 0)
(0.00189538 0.0582947 0)
(0.0011386 0.0434365 0)
(0.000712985 0.0317556 0)
(0.00046137 0.022703 0)
(0.000302496 0.0158046 0)
(0.000198906 0.0106807 0)
(0.000130918 0.00698728 0)
(8.739e-05 0.00440681 0)
(5.93732e-05 0.00266581 0)
(4.12932e-05 0.00153937 0)
(2.91162e-05 0.000848314 0)
(2.11361e-05 0.000453085 0)
(1.80464e-05 0.000256731 0)
(-9.22681e-05 0.000236929 0)
(-0.00258641 0.00035749 0)
(-0.00303099 0.000648161 0)
(-0.00374098 0.00120475 0)
(-0.0046553 0.00214655 0)
(-0.00580866 0.00363472 0)
(-0.00721924 0.00585689 0)
(-0.00901189 0.00901917 0)
(-0.0112461 0.0133118 0)
(-0.0129115 0.0189928 0)
(-0.0143225 0.026513 0)
(-0.017578 0.0363352 0)
(-0.0184063 0.0482362 0)
(-0.0104406 0.0628752 0)
(-0.0468171 0.0789114 0)
(-0.0582542 0.105704 0)
(-0.0142323 0.152971 0)
(0.0616231 0.221899 0)
(-0.11218 0.304618 0)
(-0.150537 0.451719 0)
(-0.40451 0.548653 0)
(-0.557879 0.429277 0)
(-0.4367 -0.180554 0)
(-0.258359 -0.466165 0)
(-0.146931 -0.643995 0)
(-0.283256 -0.79366 0)
(-0.386032 -0.895042 0)
(-0.408896 -0.951559 0)
(-0.334215 -0.99687 0)
(-0.18167 -1.05752 0)
(-0.0031615 -0.000142768 0)
(-0.00449485 0.000372455 0)
(-0.00538625 0.000669312 0)
(-0.00686742 0.00124791 0)
(-0.00885225 0.00221263 0)
(-0.0114354 0.00373529 0)
(-0.0146498 0.00600544 0)
(-0.01878 0.00923168 0)
(-0.024564 0.0136264 0)
(-0.0321583 0.0193701 0)
(-0.0423797 0.0269676 0)
(-0.0593415 0.0371818 0)
(-0.093421 0.0506259 0)
(-0.18808 0.0759328 0)
(-1.03606 0.183318 0)
(-1.89054 0.152033 0)
(-0.626846 0.170451 0)
(-0.496043 0.187509 0)
(-0.116192 0.323409 0)
(-0.127748 0.496634 0)
(-0.398263 0.608535 0)
(-0.595613 0.51635 0)
(-0.486643 -0.225281 0)
(-0.184112 -0.582416 0)
(-0.0211067 -0.653795 0)
(-0.0225432 -0.73599 0)
(-0.115439 -0.858354 0)
(-0.155939 -0.953101 0)
(-0.123281 -1.05092 0)
(-0.0914119 -1.16531 0)
(-0.00456688 -0.000238644 0)
(-0.00513408 0.000394536 0)
(-0.00617811 0.000701855 0)
(-0.00790894 0.00131617 0)
(-0.0102426 0.00232328 0)
(-0.0133203 0.0039128 0)
(-0.017202 0.00628569 0)
(-0.0222288 0.0096623 0)
(-0.0293007 0.0143129 0)
(-0.0387682 0.0203787 0)
(-0.0519883 0.0285716 0)
(-0.0745384 0.0403915 0)
(-0.120447 0.0586568 0)
(-0.248989 0.107881 0)
(-0.866974 0.453393 0)
(-2.69429 0.308433 0)
(-1.42047 -0.133173 0)
(-0.742522 0.129801 0)
(-0.438851 0.279916 0)
(-0.146459 0.551453 0)
(-0.406692 0.695937 0)
(-0.668153 0.563361 0)
(-0.555034 -0.321216 0)
(-0.19275 -0.703052 0)
(-0.00464146 -0.713952 0)
(0.108553 -0.72921 0)
(0.106065 -0.830653 0)
(0.0859363 -0.941341 0)
(0.0652819 -1.06033 0)
(0.0522275 -1.17609 0)
(-0.00498313 -0.000235706 0)
(-0.00529151 0.000421712 0)
(-0.00638554 0.000745285 0)
(-0.00816605 0.00140061 0)
(-0.0105607 0.00245811 0)
(-0.0137226 0.00412314 0)
(-0.0177428 0.0066144 0)
(-0.0229424 0.0101638 0)
(-0.0301717 0.0151062 0)
(-0.0399363 0.0215438 0)
(-0.0537182 0.0304855 0)
(-0.0772093 0.0442911 0)
(-0.124638 0.0684221 0)
(-0.248918 0.143148 0)
(-0.542113 0.664991 0)
(-1.70521 0.267695 0)
(-0.942773 -0.309982 0)
(-0.666099 0.0814152 0)
(-0.573755 0.151169 0)
(-0.708951 0.72328 0)
(-0.444818 0.814359 0)
(-0.643311 0.516911 0)
(-0.4912 -0.605924 0)
(-0.208231 -0.80595 0)
(-0.00779613 -0.789058 0)
(0.124935 -0.775367 0)
(0.190677 -0.831552 0)
(0.195473 -0.933212 0)
(0.15885 -1.03272 0)
(0.100325 -1.1022 0)
(-0.00507666 -0.000202331 0)
(-0.00533325 0.000454026 0)
(-0.00645041 0.000802546 0)
(-0.00823148 0.00150155 0)
(-0.0106204 0.00261543 0)
(-0.013758 0.00435862 0)
(-0.0177657 0.00697272 0)
(-0.0229184 0.0106983 0)
(-0.0299236 0.0159344 0)
(-0.039457 0.0227634 0)
(-0.053055 0.0325407 0)
(-0.0759261 0.0484578 0)
(-0.120678 0.0785356 0)
(-0.224131 0.173352 0)
(-0.263502 0.708684 0)
(-0.436832 0.212845 0)
(-0.49621 -0.368711 0)
(-0.464087 0.085478 0)
(-0.526498 0.133165 0)
(-0.592541 0.439537 0)
(-0.460973 0.980265 0)
(-0.677922 0.522073 0)
(-0.659992 -0.781575 0)
(-0.202331 -0.944048 0)
(0.00345099 -0.866377 0)
(0.116597 -0.832946 0)
(0.184355 -0.855816 0)
(0.201029 -0.928517 0)
(0.174077 -0.986353 0)
(0.0998394 -1.01878 0)
(-0.0050978 -0.000161439 0)
(-0.00535497 0.000492221 0)
(-0.00648271 0.000875381 0)
(-0.00825405 0.00162091 0)
(-0.0106289 0.00279749 0)
(-0.0137222 0.00462149 0)
(-0.0176777 0.00736078 0)
(-0.0227271 0.0112625 0)
(-0.0294186 0.0167826 0)
(-0.0385474 0.02402 0)
(-0.0516693 0.0346903 0)
(-0.0732636 0.0527124 0)
(-0.113347 0.0882367 0)
(-0.189937 0.194785 0)
(-0.110439 0.620453 0)
(0.48901 0.190988 0)
(-0.211958 -0.289094 0)
(-0.385625 0.103599 0)
(-0.460954 0.119491 0)
(0.0332883 0.582667 0)
(-0.517707 1.03482 0)
(-0.943695 0.860978 0)
(-1.00124 -1.02705 0)
(-0.137401 -1.09669 0)
(0.0389965 -0.93769 0)
(0.118545 -0.878658 0)
(0.159118 -0.878811 0)
(0.163477 -0.922126 0)
(0.131622 -0.945591 0)
(0.0729644 -0.939203 0)
(-0.00509903 -0.000118513 0)
(-0.00537042 0.000536234 0)
(-0.00649846 0.000963024 0)
(-0.00825616 0.00175822 0)
(-0.0106149 0.00300283 0)
(-0.0136586 0.00491032 0)
(-0.0175385 0.00777513 0)
(-0.0224525 0.0118505 0)
(-0.028803 0.0176426 0)
(-0.0374275 0.0253106 0)
(-0.0498586 0.0369019 0)
(-0.06968 0.0569208 0)
(-0.103745 0.0969096 0)
(-0.152967 0.2065 0)
(-0.0281348 0.509611 0)
(0.577715 0.184849 0)
(-0.0839218 -0.153015 0)
(-0.343746 0.145548 0)
(-0.529449 0.140423 0)
(-0.880637 0.461288 0)
(-0.710494 1.09152 0)
(-1.11999 1.34494 0)
(-0.321544 -1.59933 0)
(0.0239723 -1.21759 0)
(0.10392 -0.985725 0)
(0.135464 -0.903868 0)
(0.14318 -0.885995 0)
(0.125574 -0.902551 0)
(0.0855853 -0.905556 0)
(0.0406065 -0.880704 0)
(-0.0050876 -7.44562e-05 0)
(-0.00537944 0.000585631 0)
(-0.00649973 0.0010641 0)
(-0.00824118 0.00191257 0)
(-0.0105789 0.0032292 0)
(-0.013568 0.00522347 0)
(-0.0173497 0.00821245 0)
(-0.0220927 0.0124572 0)
(-0.0280774 0.0185079 0)
(-0.0361119 0.0266265 0)
(-0.0476383 0.0391277 0)
(-0.0652174 0.0609254 0)
(-0.0923064 0.104032 0)
(-0.116897 0.20933 0)
(0.0180404 0.416272 0)
(0.385725 0.185843 0)
(-0.0224715 -0.0272433 0)
(-0.294871 0.21827 0)
(-0.492787 0.119693 0)
(-0.757791 0.559462 0)
(-1.06143 1.15512 0)
(0.269557 0.790831 0)
(0.509166 -1.65758 0)
(0.246235 -1.21932 0)
(0.189248 -0.989824 0)
(0.165184 -0.90209 0)
(0.140911 -0.872749 0)
(0.104908 -0.868502 0)
(0.0593406 -0.862178 0)
(0.0209867 -0.841623 0)
(-0.00506644 -2.94465e-05 0)
(-0.0053799 0.000639822 0)
(-0.00648688 0.00117719 0)
(-0.00820967 0.00208313 0)
(-0.0105185 0.00347448 0)
(-0.013445 0.00555937 0)
(-0.0171064 0.00866972 0)
(-0.0216381 0.013078 0)
(-0.0272235 0.019373 0)
(-0.0345899 0.0279493 0)
(-0.0449916 0.0413038 0)
(-0.0598982 0.0645461 0)
(-0.0794972 0.109198 0)
(-0.0839925 0.20502 0)
(0.0418055 0.342702 0)
(0.257891 0.190257 0)
(0.0186287 0.0727772 0)
(-0.210179 0.316915 0)
(-0.700357 0.296623 0)
(-1.64216 0.769676 0)
(-0.344148 0.0165777 0)
(0.345871 0.534626 0)
(0.927221 -1.31761 0)
(0.425171 -1.09296 0)
(0.271406 -0.942167 0)
(0.20031 -0.870589 0)
(0.150341 -0.839325 0)
(0.103542 -0.824905 0)
(0.0577529 -0.815039 0)
(0.0207812 -0.809173 0)
(-0.00503682 1.63499e-05 0)
(-0.00536956 0.000697924 0)
(-0.00645977 0.00130061 0)
(-0.008161 0.00226854 0)
(-0.0104315 0.00373625 0)
(-0.0132837 0.00591549 0)
(-0.0168022 0.00914267 0)
(-0.0210806 0.0137072 0)
(-0.0262249 0.0202297 0)
(-0.0328468 0.0292495 0)
(-0.0419067 0.04335 0)
(-0.0537889 0.0675927 0)
(-0.0658733 0.112156 0)
(-0.0554448 0.19562 0)
(0.0530891 0.286379 0)
(0.18549 0.193772 0)
(0.0546719 0.144128 0)
(-0.0658983 0.385735 0)
(-0.0777941 0.596045 0)
(-0.477524 -0.020592 0)
(0.631958 -0.154674 0)
(1.1226 -0.180434 0)
(0.887815 -0.893668 0)
(0.505787 -0.914173 0)
(0.327695 -0.855127 0)
(0.230759 -0.813194 0)
(0.164932 -0.789656 0)
(0.112444 -0.775861 0)
(0.0687972 -0.767262 0)
(0.031451 -0.76861 0)
(-0.0049992 6.27526e-05 0)
(-0.00534699 0.000759256 0)
(-0.00641857 0.00143289 0)
(-0.00809385 0.00246725 0)
(-0.0103155 0.00401215 0)
(-0.0130788 0.00628829 0)
(-0.0164298 0.00962557 0)
(-0.0204141 0.0143373 0)
(-0.0250715 0.0210656 0)
(-0.0308674 0.0304871 0)
(-0.0383855 0.045174 0)
(-0.0470017 0.0698834 0)
(-0.0520028 0.112834 0)
(-0.0315386 0.183034 0)
(0.058541 0.243652 0)
(0.146419 0.193581 0)
(0.0896226 0.18562 0)
(0.0752171 0.378142 0)
(0.430418 0.7219 0)
(1.08503 0.0360284 0)
(0.848439 -0.186715 0)
(0.869716 -0.335148 0)
(0.742404 -0.651221 0)
(0.506914 -0.747281 0)
(0.349897 -0.750885 0)
(0.248434 -0.738709 0)
(0.1763 -0.728128 0)
(0.120303 -0.721142 0)
(0.0749985 -0.717596 0)
(0.0353008 -0.71622 0)
(-0.004956 0.000109579 0)
(-0.00531108 0.000823893 0)
(-0.00636345 0.00157348 0)
(-0.00800677 0.00267826 0)
(-0.0101689 0.00430093 0)
(-0.0128268 0.00667402 0)
(-0.0159831 0.0101126 0)
(-0.0196356 0.0149593 0)
(-0.02376 0.0218629 0)
(-0.0286452 0.0316132 0)
(-0.0344564 0.0466741 0)
(-0.0397031 0.0712608 0)
(-0.0384199 0.111321 0)
(-0.011976 0.168771 0)
(0.0619947 0.210646 0)
(0.127629 0.188255 0)
(0.121372 0.199768 0)
(0.172184 0.325963 0)
(0.460908 0.445692 0)
(0.814113 0.123724 0)
(0.750188 -0.152339 0)
(0.713303 -0.329573 0)
(0.615674 -0.515406 0)
(0.467421 -0.613652 0)
(0.343373 -0.647566 0)
(0.250514 -0.656944 0)
(0.179489 -0.658753 0)
(0.122434 -0.658732 0)
(0.0742243 -0.658654 0)
(0.0324267 -0.658305 0)
(-0.00490722 0.00015663 0)
(-0.00526018 0.00089196 0)
(-0.00629275 0.00172174 0)
(-0.00789767 0.00290051 0)
(-0.00998863 0.00460157 0)
(-0.0125236 0.00706889 0)
(-0.0154567 0.0105988 0)
(-0.0187427 0.0155623 0)
(-0.0222871 0.0225991 0)
(-0.0261809 0.0325741 0)
(-0.0301691 0.0477493 0)
(-0.0320926 0.0716103 0)
(-0.0255581 0.107831 0)
(0.00384986 0.153826 0)
(0.0652334 0.183958 0)
(0.12048 0.177402 0)
(0.146171 0.192636 0)
(0.223986 0.259326 0)
(0.426417 0.273653 0)
(0.617947 0.0844296 0)
(0.63071 -0.130337 0)
(0.59195 -0.29114 0)
(0.514829 -0.424694 0)
(0.413484 -0.509969 0)
(0.318371 -0.553999 0)
(0.239027 -0.575399 0)
(0.173927 -0.585981 0)
(0.119616 -0.591495 0)
(0.0732783 -0.59447 0)
(0.0327164 -0.59583 0)
(-0.00484914 0.000203445 0)
(-0.00519291 0.000963001 0)
(-0.00620348 0.00187608 0)
(-0.00776374 0.00313179 0)
(-0.00977146 0.00491147 0)
(-0.0121653 0.00746789 0)
(-0.0148483 0.0110784 0)
(-0.0177346 0.0161331 0)
(-0.0206525 0.0232476 0)
(-0.0234872 0.0333143 0)
(-0.0255969 0.0483074 0)
(-0.0243913 0.0708673 0)
(-0.0137389 0.102648 0)
(0.0166064 0.138796 0)
(0.0686983 0.161004 0)
(0.118979 0.161548 0)
(0.161708 0.171726 0)
(0.242323 0.195361 0)
(0.379718 0.166956 0)
(0.493782 0.0368707 0)
(0.51793 -0.120088 0)
(0.489186 -0.251953 0)
(0.430468 -0.355936 0)
(0.356938 -0.427891 0)
(0.283807 -0.472313 0)
(0.218177 -0.498495 0)
(0.161181 -0.513852 0)
(0.111797 -0.522905 0)
(0.0686535 -0.528094 0)
(0.0304877 -0.530664 0)
(-0.00477997 0.000249333 0)
(-0.00510711 0.00103688 0)
(-0.00609212 0.00203485 0)
(-0.0076005 0.00336921 0)
(-0.00951348 0.00522665 0)
(-0.0117476 0.00786455 0)
(-0.0141585 0.0115425 0)
(-0.0166143 0.0166541 0)
(-0.0188641 0.0237775 0)
(-0.0205949 0.0337786 0)
(-0.0208432 0.0482726 0)
(-0.0168381 0.0690238 0)
(-0.00319725 0.0960848 0)
(0.0267959 0.123909 0)
(0.0720827 0.140095 0)
(0.119078 0.141955 0)
(0.167811 0.143911 0)
(0.239547 0.1406 0)
(0.332503 0.097078 0)
(0.40308 -0.00027773 0)
(0.422116 -0.115738 0)
(0.40152 -0.218937 0)
(0.357535 -0.301263 0)
(0.302495 -0.361206 0)
(0.245714 -0.401837 0)
(0.192228 -0.428306 0)
(0.143777 -0.445226 0)
(0.100482 -0.455861 0)
(0.0618945 -0.462254 0)
(0.0274081 -0.465519 0)
(-0.00469872 0.000293406 0)
(-0.0050001 0.00111446 0)
(-0.00595552 0.00219773 0)
(-0.00740243 0.00361101 0)
(-0.00920932 0.00554386 0)
(-0.011265 0.00825248 0)
(-0.0133856 0.0119794 0)
(-0.0153848 0.0171043 0)
(-0.0169358 0.0241545 0)
(-0.0175474 0.0339142 0)
(-0.016027 0.0475932 0)
(-0.00965661 0.0661258 0)
(0.00594034 0.0884503 0)
(0.034778 0.109249 0)
(0.0747938 0.120292 0)
(0.118314 0.12023 0)
(0.16585 0.11427 0)
(0.224746 0.096109 0)
(0.287683 0.0496102 0)
(0.331587 -0.0263538 0)
(0.343225 -0.112717 0)
(0.327413 -0.192012 0)
(0.294171 -0.256854 0)
(0.252211 -0.305946 0)
(0.207787 -0.341121 0)
(0.164552 -0.365419 0)
(0.124204 -0.381774 0)
(0.0873107 -0.392495 0)
(0.0539149 -0.399189 0)
(0.0238146 -0.402752 0)
(-0.00460167 0.000334811 0)
(-0.0048716 0.00119671 0)
(-0.00579225 0.00236471 0)
(-0.00716672 0.00385557 0)
(-0.00885546 0.00585975 0)
(-0.0107144 0.00862459 0)
(-0.0125288 0.0123744 0)
(-0.0140525 0.0174595 0)
(-0.0148895 0.0243416 0)
(-0.0144043 0.0336725 0)
(-0.0112839 0.0462425 0)
(-0.00305619 0.0622674 0)
(0.0135899 0.0800328 0)
(0.0407458 0.0948743 0)
(0.0762451 0.101286 0)
(0.115469 0.0979996 0)
(0.157798 0.0860274 0)
(0.203756 0.0610175 0)
(0.246184 0.0169377 0)
(0.273067 -0.0434155 0)
(0.278555 -0.108962 0)
(0.265376 -0.169565 0)
(0.239661 -0.22015 0)
(0.2072 -0.259583 0)
(0.172274 -0.288861 0)
(0.137557 -0.309828 0)
(0.104496 -0.324412 0)
(0.0737678 -0.33427 0)
(0.0456326 -0.340654 0)
(0.0201046 -0.344196 0)
(-0.00448489 0.000373318 0)
(-0.00472266 0.00128367 0)
(-0.00560222 0.0025355 0)
(-0.00689408 0.00410196 0)
(-0.00845218 0.00617198 0)
(-0.0100986 0.00897495 0)
(-0.0115929 0.0127149 0)
(-0.0126318 0.0176983 0)
(-0.0127594 0.0243062 0)
(-0.0112419 0.033019 0)
(-0.00675681 0.0442272 0)
(0.00278956 0.057584 0)
(0.0196999 0.0710881 0)
(0.0447906 0.0808778 0)
(0.0760359 0.0831606 0)
(0.110211 0.076628 0)
(0.145624 0.0609224 0)
(0.180156 0.0339521 0)
(0.208388 -0.00543273 0)
(0.22422 -0.0536485 0)
(0.225352 -0.103875 0)
(0.213777 -0.150149 0)
(0.193381 -0.189253 0)
(0.167963 -0.220347 0)
(0.140451 -0.243966 0)
(0.112784 -0.261263 0)
(0.0861117 -0.273534 0)
(0.0610459 -0.281996 0)
(0.0378718 -0.287644 0)
(0.0166683 -0.290902 0)
(-0.00434698 0.000410234 0)
(-0.00455088 0.00137446 0)
(-0.00538308 0.00270911 0)
(-0.00658373 0.00434848 0)
(-0.00799924 0.00647634 0)
(-0.00942177 0.00929569 0)
(-0.0105871 0.0129869 0)
(-0.0111444 0.0178003 0)
(-0.0105918 0.0240215 0)
(-0.00815118 0.0319388 0)
(-0.00259118 0.0415903 0)
(0.00774143 0.0522483 0)
(0.0242583 0.061878 0)
(0.0469761 0.0674181 0)
(0.074016 0.0662038 0)
(0.102764 0.0570981 0)
(0.131015 0.0396869 0)
(0.156118 0.0135527 0)
(0.174458 -0.0203837 0)
(0.183089 -0.0588597 0)
(0.181418 -0.0975326 0)
(0.171051 -0.132844 0)
(0.154569 -0.162836 0)
(0.134493 -0.186965 0)
(0.112828 -0.205557 0)
(0.0909677 -0.219362 0)
(0.0697849 -0.229259 0)
(0.0497478 -0.236102 0)
(0.0310377 -0.240597 0)
(0.0136831 -0.243091 0)
(-0.00418583 0.000446274 0)
(-0.00435181 0.00146779 0)
(-0.00513058 0.0028839 0)
(-0.00623237 0.00459249 0)
(-0.00749495 0.006767 0)
(-0.00868714 0.00957862 0)
(-0.00952236 0.0131775 0)
(-0.00961669 0.0177481 0)
(-0.00844097 0.0234704 0)
(-0.00522932 0.0304391 0)
(0.00108014 0.0384077 0)
(0.0116859 0.0464419 0)
(0.0272846 0.0526529 0)
(0.0473961 0.0547003 0)
(0.0702661 0.0507402 0)
(0.093629 0.0399954 0)
(0.115283 0.0224281 0)
(0.132931 -0.00140319 0)
(0.144382 -0.0299066 0)
(0.148367 -0.0604603 0)
(0.145063 -0.0902549 0)
(0.135785 -0.117148 0)
(0.122318 -0.139984 0)
(0.106367 -0.158463 0)
(0.0893054 -0.172821 0)
(0.0721098 -0.183563 0)
(0.0554022 -0.191266 0)
(0.0395284 -0.196458 0)
(0.0246453 -0.199572 0)
(0.0108186 -0.201019 0)
(-0.00399873 0.000481512 0)
(-0.00412195 0.00156232 0)
(-0.00484131 0.00305769 0)
(-0.00583743 0.0048307 0)
(-0.00693981 0.00703766 0)
(-0.00790053 0.00981506 0)
(-0.00841513 0.0132751 0)
(-0.00808243 0.0175298 0)
(-0.00637104 0.0226492 0)
(-0.00257711 0.0285523 0)
(0.00414958 0.034801 0)
(0.0145613 0.040374 0)
(0.0288359 0.0436644 0)
(0.046202 0.0429531 0)
(0.06504 0.037046 0)
(0.0834018 0.0255819 0)
(0.0994006 0.00891402 0)
(0.111356 -0.0119649 0)
(0.118061 -0.0354383 0)
(0.119121 -0.0595308 0)
(0.115014 -0.0824235 0)
(0.106804 -0.10283 0)
(0.0957555 -0.12009 0)
(0.0830359 -0.134067 0)
(0.0695829 -0.144945 0)
(0.0560725 -0.153072 0)
(0.0429553 -0.158835 0)
(0.0305121 -0.162588 0)
(0.0189098 -0.164651 0)
(0.00823474 -0.165445 0)
(-0.00378249 0.0005155 0)
(-0.00385765 0.00165678 0)
(-0.00451189 0.00322853 0)
(-0.00539701 0.00505886 0)
(-0.00633523 0.00728195 0)
(-0.00706983 0.00999728 0)
(-0.00728595 0.0132717 0)
(-0.00658138 0.0171421 0)
(-0.00444954 0.0215711 0)
(-0.000290371 0.0263339 0)
(0.00652116 0.0308931 0)
(0.0163503 0.0342564 0)
(0.0290145 0.0351453 0)
(0.0436088 0.0323769 0)
(0.0586879 0.0252803 0)
(0.0726493 0.0138592 0)
(0.0840451 -0.00128084 0)
(0.0917834 -0.0190515 0)
(0.095291 -0.038069 0)
(0.0946047 -0.0569107 0)
(0.0902733 -0.0744098 0)
(0.0831373 -0.0898026 0)
(0.0741017 -0.102733 0)
(0.0639765 -0.113167 0)
(0.0534141 -0.121264 0)
(0.0428932 -0.12728 0)
(0.0327416 -0.131498 0)
(0.0231681 -0.134184 0)
(0.014298 -0.135599 0)
(0.00618706 -0.136098 0)
(-0.00353329 0.000548358 0)
(-0.00355525 0.00174941 0)
(-0.00413917 0.00339347 0)
(-0.00490946 0.00527252 0)
(-0.00568396 0.00749438 0)
(-0.00620568 0.0101198 0)
(-0.00615927 0.0131648 0)
(-0.00515742 0.0165917 0)
(-0.00274383 0.0202686 0)
(0.00155808 0.0238785 0)
(0.00814071 0.0268413 0)
(0.0170789 0.0282987 0)
(0.0279643 0.0273031 0)
(0.0398774 0.0231204 0)
(0.0515887 0.0154836 0)
(0.0618554 0.00465675 0)
(0.0696645 -0.00865405 0)
(0.0743806 -0.0234519 0)
(0.0758152 -0.0386506 0)
(0.0741931 -0.0532635 0)
(0.0700303 -0.0665558 0)
(0.0639766 -0.0780881 0)
(0.0566831 -0.0876893 0)
(0.0487138 -0.0953905 0)
(0.0405193 -0.101339 0)
(0.0324318 -0.105743 0)
(0.0246814 -0.108819 0)
(0.017415 -0.110768 0)
(0.010717 -0.111781 0)
(0.00461542 -0.112121 0)
(-0.00324709 0.000579866 0)
(-0.00321099 0.00183848 0)
(-0.00372039 0.00354928 0)
(-0.00437372 0.00546742 0)
(-0.00499029 0.00767084 0)
(-0.00532102 0.0101807 0)
(-0.00506171 0.0129589 0)
(-0.00385507 0.0158991 0)
(-0.00131635 0.0187955 0)
(0.00290217 0.0212834 0)
(0.00898689 0.0228099 0)
(0.0168128 0.0226949 0)
(0.0258627 0.0203036 0)
(0.0352871 0.0152609 0)
(0.0440972 0.0075873 0)
(0.0513873 -0.00230745 0)
(0.0565121 -0.0137281 0)
(0.059151 -0.0258481 0)
(0.0593252 -0.0378648 0)
(0.0573179 -0.0491191 0)
(0.0535712 -0.0591632 0)
(0.0485779 -0.0677605 0)
(0.0428046 -0.0748496 0)
(0.0366428 -0.080496 0)
(0.0303987 -0.0848345 0)
(0.0242918 -0.0880328 0)
(0.0184692 -0.0902605 0)
(0.0130228 -0.0916708 0)
(0.00800652 -0.0924065 0)
(0.00343791 -0.0926568 0)
(-0.00292 0.000609991 0)
(-0.00282114 0.00192231 0)
(-0.00325255 0.00369277 0)
(-0.00378944 0.00563967 0)
(-0.00425909 0.0078092 0)
(-0.00442934 0.0101821 0)
(-0.00401904 0.0126673 0)
(-0.00271616 0.0151005 0)
(-0.000220125 0.0172234 0)
(0.00370239 0.0186715 0)
(0.00907386 0.0189633 0)
(0.0156519 0.0176135 0)
(0.0229039 0.014261 0)
(0.0301053 0.00880115 0)
(0.0365054 0.00143523 0)
(0.0414935 -0.00737172 0)
(0.0446864 -0.0170065 0)
(0.0459707 -0.0268244 0)
(0.0454617 -0.0362616 0)
(0.043435 -0.0448948 0)
(0.040243 -0.0524664 0)
(0.0362478 -0.0588663 0)
(0.0317777 -0.0640967 0)
(0.0270996 -0.068236 0)
(0.0224186 -0.0713997 0)
(0.0178799 -0.0737184 0)
(0.0135796 -0.0753196 0)
(0.00957349 -0.0763141 0)
(0.00588719 -0.0768066 0)
(0.00252308 -0.0769475 0)
(-0.00254813 0.000638143 0)
(-0.00238234 0.00199871 0)
(-0.00273334 0.00382056 0)
(-0.00315656 0.00578588 0)
(-0.00349513 0.0079096 0)
(-0.00354323 0.0101325 0)
(-0.00305512 0.0123153 0)
(-0.00177473 0.0142488 0)
(0.000517299 0.0156506 0)
(0.0039501 0.0161776 0)
(0.00844589 0.0154592 0)
(0.0137163 0.013194 0)
(0.0192788 0.0092414 0)
(0.0245611 0.00368382 0)
(0.0290287 -0.00317854 0)
(0.0322947 -0.010892 0)
(0.0341623 -0.0189487 0)
(0.0346267 -0.0268712 0)
(0.0338324 -0.0342791 0)
(0.0320129 -0.0409136 0)
(0.0294343 -0.0466388 0)
(0.0263538 -0.0514194 0)
(0.0229948 -0.0552904 0)
(0.0195343 -0.0583331 0)
(0.0161062 -0.0606472 0)
(0.012804 -0.0623367 0)
(0.00969015 -0.0634988 0)
(0.00680295 -0.0642171 0)
(0.00416294 -0.0645681 0)
(0.00177294 -0.0646618 0)
(-0.00212786 0.000663403 0)
(-0.00189142 0.00206468 0)
(-0.0021604 0.00392893 0)
(-0.00247452 0.00590349 0)
(-0.00270178 0.00797523 0)
(-0.00267218 0.0100472 0)
(-0.00218639 0.01194 0)
(-0.00105066 0.0134129 0)
(0.000884101 0.0141801 0)
(0.00366383 0.0139431 0)
(0.00717136 0.0124454 0)
(0.0111309 0.00954543 0)
(0.0151531 0.00526698 0)
(0.0188184 -0.000189776 0)
(0.021779 -0.0064838 0)
(0.0238029 -0.0132087 0)
(0.0248079 -0.0199597 0)
(0.0248379 -0.0263944 0)
(0.0240264 -0.0322662 0)
(0.0225524 -0.0374257 0)
(0.0206046 -0.0418133 0)
(0.0183577 -0.0454349 0)
(0.0159593 -0.0483402 0)
(0.0135237 -0.0506068 0)
(0.0111344 -0.0523217 0)
(0.00884759 -0.0535713 0)
(0.00670004 -0.0544341 0)
(0.00471257 -0.0549782 0)
(0.00289191 -0.0552631 0)
(0.00123467 -0.055358 0)
(-0.00165623 0.000685027 0)
(-0.00134574 0.0021174 0)
(-0.00153136 0.00401409 0)
(-0.00174203 0.00599127 0)
(-0.00187939 0.00801224 0)
(-0.00181858 0.00994822 0)
(-0.00141683 0.01159 0)
(-0.000542785 0.0126772 0)
(0.000891983 0.0129338 0)
(0.00288946 0.0121139 0)
(0.00533408 0.0100611 0)
(0.00801113 0.00675712 0)
(0.0106463 0.00233738 0)
(0.0129681 -0.00293037 0)
(0.0147652 -0.00870395 0)
(0.0159173 -0.0146267 0)
(0.0163997 -0.0203823 0)
(0.0162636 -0.0257272 0)
(0.0156089 -0.0305043 0)
(0.0145568 -0.0346343 0)
(0.0132295 -0.0381037 0)
(0.0117371 -0.0409438 0)
(0.0101708 -0.0432128 0)
(0.00860001 -0.0449819 0)
(0.00707438 -0.0463202 0)
(0.00562488 -0.0472885 0)
(0.00426834 -0.0479387 0)
(0.00301159 -0.0483142 0)
(0.00185464 -0.0484592 0)
(0.000794366 -0.0484563 0)
(-0.00113078 0.000701999 0)
(-0.000743466 0.00215371 0)
(-0.000844116 0.00407167 0)
(-0.000955832 0.00604805 0)
(-0.00102259 0.00802913 0)
(-0.000973864 0.00986386 0)
(-0.000730332 0.0113234 0)
(-0.000222235 0.0121378 0)
(0.000591775 0.012045 0)
(0.00170055 0.010843 0)
(0.003027 0.00844842 0)
(0.00444665 0.00491944 0)
(0.00581724 0.000457731 0)
(0.00699785 -0.0046311 0)
(0.0078807 -0.0100203 0)
(0.00841783 -0.0153947 0)
(0.00860669 -0.0204968 0)
(0.00848114 -0.0251447 0)
(0.00809736 -0.0292347 0)
(0.00751996 -0.0327279 0)
(0.00681142 -0.0356351 0)
(0.00602497 -0.037998 0)
(0.00520275 -0.039874 0)
(0.00437773 -0.041328 0)
(0.00357614 -0.042424 0)
(0.00281587 -0.0432224 0)
(0.00210798 -0.0437721 0)
(0.00146085 -0.0441091 0)
(0.000881353 -0.0442663 0)
(0.00036982 -0.0442981 0)
(-0.000550172 0.0007129 0)
(-0.000252709 0.00216738 0)
(-0.00028709 0.00409315 0)
(-0.0003252 0.00606857 0)
(-0.000347351 0.00803303 0)
(-0.000329262 0.00982695 0)
(-0.000243322 0.0112144 0)
(-6.5986e-05 0.0119226 0)
(0.000215842 0.0116965 0)
(0.000595788 0.0103535 0)
(0.00104295 0.00783968 0)
(0.00150707 0.00424065 0)
(0.00196362 -0.000245596 0)
(0.00234572 -0.00524229 0)
(0.0026261 -0.0104845 0)
(0.00279512 -0.0156558 0)
(0.00285042 -0.0205192 0)
(0.0028037 -0.0249157 0)
(0.00267384 -0.0287605 0)
(0.00248174 -0.032027 0)
(0.00224688 -0.0347328 0)
(0.0019864 -0.0369218 0)
(0.00171482 -0.0386529 0)
(0.00144228 -0.0399918 0)
(0.00117585 -0.0410019 0)
(0.00092178 -0.0417397 0)
(0.00068531 -0.0422536 0)
(0.00047008 -0.0425846 0)
(0.00027936 -0.0427662 0)
(0.000114868 -0.0428323 0)
(0.0229946 -1.08382 0)
(0.224172 -1.05117 0)
(0.356945 -0.98119 0)
(0.408332 -0.935101 0)
(0.366479 -0.877835 0)
(0.24302 -0.756974 0)
(0.140821 -0.616464 0)
(0.33511 -0.411395 0)
(0.310054 0.158387 0)
(0.559511 0.509209 0)
(0.341583 0.536644 0)
(0.0901804 0.416687 0)
(0.0951879 0.280476 0)
(-0.0686227 0.198538 0)
(0.0277192 0.140975 0)
(0.0581868 0.0977168 0)
(0.0128996 0.0751312 0)
(0.0104614 0.0588559 0)
(0.0190456 0.0452094 0)
(0.0159562 0.0336442 0)
(0.01364 0.0244418 0)
(0.0124625 0.0174216 0)
(0.0106035 0.0121266 0)
(0.00846123 0.00812857 0)
(0.00674089 0.00522126 0)
(0.00538597 0.00320251 0)
(0.00433483 0.00186844 0)
(0.0035155 0.00103642 0)
(0.00289975 0.000554783 0)
(0.00252474 0.000311491 0)
(0.00795324 -1.18752 0)
(0.106098 -1.11339 0)
(0.138485 -1.02104 0)
(0.148624 -0.924565 0)
(0.0961048 -0.833395 0)
(0.00598541 -0.706776 0)
(0.0512014 -0.650346 0)
(0.309221 -0.497457 0)
(0.481692 -0.0611514 0)
(0.509649 0.558051 0)
(0.309877 0.618548 0)
(0.0355049 0.447824 0)
(0.250087 0.27784 0)
(0.501884 0.163153 0)
(1.25339 0.0380012 0)
(1.39055 0.0864796 0)
(0.460446 0.172203 0)
(0.139785 0.0651868 0)
(0.0781423 0.0465882 0)
(0.0523601 0.0342548 0)
(0.0388021 0.0248207 0)
(0.0298444 0.0177619 0)
(0.0227742 0.0124033 0)
(0.0175213 0.00831492 0)
(0.013575 0.0053536 0)
(0.0105041 0.00329922 0)
(0.00816193 0.00193915 0)
(0.0063966 0.00108142 0)
(0.00511973 0.000575591 0)
(0.00437803 0.000307514 0)
(-0.00468053 -1.20179 0)
(-0.0616559 -1.10833 0)
(-0.0701109 -1.04086 0)
(-0.0886207 -0.914399 0)
(-0.110848 -0.802815 0)
(-0.0890559 -0.718077 0)
(0.0469242 -0.71834 0)
(0.263446 -0.636305 0)
(0.54831 0.0343766 0)
(0.635317 0.642708 0)
(0.327752 0.707544 0)
(0.227144 0.397801 0)
(0.460622 0.215387 0)
(0.891377 0.10136 0)
(1.84059 -0.337897 0)
(2.20641 0.296274 0)
(0.515476 0.315526 0)
(0.184866 0.0829928 0)
(0.100411 0.0522246 0)
(0.0655468 0.0367444 0)
(0.0473177 0.0261389 0)
(0.0357121 0.0186324 0)
(0.0269314 0.0129983 0)
(0.0205555 0.00869329 0)
(0.0158281 0.00560221 0)
(0.0121705 0.00346627 0)
(0.00939993 0.00205346 0)
(0.00733688 0.00115111 0)
(0.00583952 0.000607095 0)
(0.004985 0.000304075 0)
(-0.0118844 -1.13523 0)
(-0.117408 -1.07956 0)
(-0.172157 -1.01031 0)
(-0.194334 -0.908796 0)
(-0.178491 -0.812103 0)
(-0.0931424 -0.775085 0)
(0.0511197 -0.797253 0)
(0.289943 -0.803517 0)
(0.796088 -0.0505418 0)
(0.688662 0.667756 0)
(0.307386 0.815943 0)
(0.895641 0.367718 0)
(0.644901 0.130403 0)
(0.720139 0.0260741 0)
(1.09986 -0.541195 0)
(1.51519 0.534621 0)
(0.433051 0.40166 0)
(0.189161 0.104381 0)
(0.10413 0.0591522 0)
(0.0678542 0.039758 0)
(0.0487084 0.0277003 0)
(0.0366669 0.019642 0)
(0.0277083 0.0136884 0)
(0.0211943 0.00913638 0)
(0.0163504 0.00589479 0)
(0.0125861 0.00366158 0)
(0.00971687 0.00218733 0)
(0.00758249 0.00123488 0)
(0.00601045 0.000647892 0)
(0.00512534 0.000305901 0)
(-0.0120027 -1.02672 0)
(-0.117544 -1.01252 0)
(-0.181508 -0.976266 0)
(-0.197119 -0.910682 0)
(-0.168296 -0.84585 0)
(-0.088959 -0.837247 0)
(0.0387434 -0.882567 0)
(0.294575 -0.94021 0)
(1.03292 -0.588355 0)
(0.661201 0.667911 0)
(0.357389 0.96493 0)
(0.199285 0.374697 0)
(0.531522 0.137469 0)
(0.477024 0.00677163 0)
(0.35019 -0.575129 0)
(0.388404 0.663729 0)
(0.316643 0.426883 0)
(0.177309 0.124864 0)
(0.101537 0.0664539 0)
(0.0668425 0.0429952 0)
(0.0480253 0.0293792 0)
(0.0362182 0.0207079 0)
(0.027573 0.0144123 0)
(0.0212292 0.00961133 0)
(0.0164533 0.00621459 0)
(0.0127115 0.0038763 0)
(0.00982377 0.00233559 0)
(0.00766696 0.00133135 0)
(0.00605657 0.000699787 0)
(0.00515677 0.000316085 0)
(-0.00809931 -0.926772 0)
(-0.0852734 -0.942881 0)
(-0.137705 -0.944327 0)
(-0.161755 -0.911801 0)
(-0.148023 -0.875535 0)
(-0.0987471 -0.887729 0)
(-0.0036539 -0.965886 0)
(0.225854 -1.15439 0)
(0.622513 -1.13444 0)
(0.742295 0.799165 0)
(0.650856 0.844005 0)
(0.181527 0.427521 0)
(0.460537 0.151318 0)
(0.359683 0.024668 0)
(-0.0699429 -0.41722 0)
(-0.35249 0.625991 0)
(0.211692 0.41301 0)
(0.158497 0.142049 0)
(0.0965411 0.0736731 0)
(0.0647581 0.0463396 0)
(0.0467875 0.0311438 0)
(0.0354229 0.0218112 0)
(0.0272123 0.0151582 0)
(0.0211157 0.0101162 0)
(0.016448 0.00656241 0)
(0.0127635 0.0041128 0)
(0.00988058 0.00250015 0)
(0.00771292 0.00144163 0)
(0.00608296 0.000764119 0)
(0.00517216 0.000335743 0)
(-0.00341904 -0.860513 0)
(-0.0477336 -0.889268 0)
(-0.0920377 -0.908057 0)
(-0.128598 -0.899329 0)
(-0.139044 -0.887803 0)
(-0.125428 -0.917803 0)
(-0.0844366 -1.02493 0)
(0.0269459 -1.32331 0)
(0.354299 -1.45449 0)
(0.84685 1.00079 0)
(0.643198 0.876301 0)
(1.91537 0.679537 0)
(0.477594 0.178956 0)
(0.286787 0.0768357 0)
(-0.151441 -0.204082 0)
(-0.393535 0.47481 0)
(0.129906 0.380382 0)
(0.136058 0.15457 0)
(0.0899057 0.0804362 0)
(0.0619691 0.0497028 0)
(0.0452411 0.0329726 0)
(0.0344542 0.0229438 0)
(0.0267302 0.0159189 0)
(0.020914 0.0106469 0)
(0.0163746 0.0069358 0)
(0.0127672 0.00437112 0)
(0.00990573 0.00268149 0)
(0.00773454 0.00156532 0)
(0.00610181 0.000840348 0)
(0.005183 0.000364281 0)
(-0.000587496 -0.827865 0)
(-0.0252798 -0.848285 0)
(-0.066872 -0.865454 0)
(-0.111454 -0.870365 0)
(-0.143583 -0.87835 0)
(-0.165974 -0.918742 0)
(-0.191611 -1.031 0)
(-0.266274 -1.32624 0)
(-0.635441 -1.50852 0)
(0.541258 0.354969 0)
(1.02066 1.00958 0)
(0.733253 0.361691 0)
(0.515925 0.225678 0)
(0.220845 0.15176 0)
(-0.13212 -0.0370756 0)
(-0.280757 0.360782 0)
(0.0707952 0.340354 0)
(0.11197 0.161926 0)
(0.0818143 0.0863868 0)
(0.0584879 0.0529761 0)
(0.0433814 0.0348332 0)
(0.0333203 0.0240948 0)
(0.0261314 0.0166901 0)
(0.0206245 0.0111987 0)
(0.0162382 0.00733215 0)
(0.0127241 0.00465109 0)
(0.00989986 0.00287982 0)
(0.00773311 0.00170208 0)
(0.00611088 0.000927453 0)
(0.00518728 0.000400651 0)
(-0.00078661 -0.807202 0)
(-0.0252292 -0.810786 0)
(-0.065542 -0.818009 0)
(-0.11185 -0.829299 0)
(-0.15855 -0.846741 0)
(-0.210812 -0.88635 0)
(-0.29239 -0.974728 0)
(-0.487659 -1.15677 0)
(-1.14996 -1.27256 0)
(-0.155785 0.782881 0)
(0.804407 0.752645 0)
(1.23494 0.542332 0)
(0.627512 0.473351 0)
(0.141567 0.235582 0)
(-0.113239 0.073991 0)
(-0.201294 0.293775 0)
(0.029964 0.299935 0)
(0.0878452 0.16428 0)
(0.0724685 0.0911925 0)
(0.0543108 0.0560299 0)
(0.041181 0.0366796 0)
(0.0320134 0.0252488 0)
(0.0254095 0.0174673 0)
(0.0202425 0.0117669 0)
(0.0160412 0.00774892 0)
(0.0126342 0.00495248 0)
(0.00986268 0.0030951 0)
(0.00771006 0.00185183 0)
(0.00610743 0.00102436 0)
(0.0051825 0.000443731 0)
(-0.00293786 -0.77184 0)
(-0.0376705 -0.767868 0)
(-0.0762303 -0.76964 0)
(-0.121871 -0.780321 0)
(-0.176871 -0.796465 0)
(-0.247806 -0.824896 0)
(-0.358008 -0.874135 0)
(-0.571745 -0.935502 0)
(-1.03062 -0.844489 0)
(-0.898171 0.0402832 0)
(-0.31653 0.011219 0)
(1.20352 0.726525 0)
(0.00823249 0.861743 0)
(0.0386566 0.298656 0)
(-0.107143 0.144104 0)
(-0.151627 0.25341 0)
(0.00233512 0.262921 0)
(0.064948 0.162258 0)
(0.0621624 0.0945765 0)
(0.0494664 0.0587192 0)
(0.0386225 0.0384518 0)
(0.0305232 0.0263842 0)
(0.0245569 0.0182427 0)
(0.0197651 0.0123451 0)
(0.0157844 0.00818248 0)
(0.0124989 0.00527395 0)
(0.00979456 0.00332645 0)
(0.0076669 0.00201415 0)
(0.00608974 0.00112969 0)
(0.00516724 0.000492127 0)
(-0.00393738 -0.715745 0)
(-0.0429512 -0.716993 0)
(-0.0833911 -0.719117 0)
(-0.131037 -0.724078 0)
(-0.190416 -0.732656 0)
(-0.268334 -0.745091 0)
(-0.381094 -0.757766 0)
(-0.559013 -0.745064 0)
(-0.811213 -0.603198 0)
(-0.857775 -0.259253 0)
(-0.841803 -0.178293 0)
(-1.0779 0.396826 0)
(-0.267506 0.658593 0)
(-0.0658926 0.315003 0)
(-0.112604 0.182708 0)
(-0.122955 0.226663 0)
(-0.0165626 0.230703 0)
(0.0440913 0.156737 0)
(0.0512477 0.0963521 0)
(0.0440145 0.0608953 0)
(0.0356994 0.0400767 0)
(0.0288366 0.0274719 0)
(0.0235667 0.0190047 0)
(0.0191908 0.0129257 0)
(0.0154651 0.00862809 0)
(0.0123183 0.00561292 0)
(0.00969503 0.00357258 0)
(0.00760371 0.00218841 0)
(0.00605626 0.0012423 0)
(0.00514033 0.000544607 0)
(-0.00368529 -0.658063 0)
(-0.0407309 -0.658905 0)
(-0.0841574 -0.659545 0)
(-0.134297 -0.660175 0)
(-0.194448 -0.660642 0)
(-0.27041 -0.658573 0)
(-0.371068 -0.646453 0)
(-0.505271 -0.602465 0)
(-0.655105 -0.480109 0)
(-0.72752 -0.280939 0)
(-0.769812 -0.115361 0)
(-0.795945 0.26337 0)
(-0.358853 0.446008 0)
(-0.146383 0.291785 0)
(-0.124807 0.196346 0)
(-0.108618 0.205838 0)
(-0.0300912 0.203118 0)
(0.0256865 0.148637 0)
(0.0401109 0.0964358 0)
(0.0380544 0.0624156 0)
(0.0324231 0.0414702 0)
(0.0269433 0.0284753 0)
(0.0224342 0.0197377 0)
(0.0185183 0.0135008 0)
(0.0150778 0.00908101 0)
(0.0120909 0.00596647 0)
(0.00956231 0.00383267 0)
(0.0075192 0.00237425 0)
(0.00600571 0.00136194 0)
(0.00510024 0.000600709 0)
(-0.00413986 -0.596208 0)
(-0.0415 -0.596001 0)
(-0.0833764 -0.594663 0)
(-0.131618 -0.591617 0)
(-0.188556 -0.585673 0)
(-0.25731 -0.573698 0)
(-0.341447 -0.548688 0)
(-0.441144 -0.496654 0)
(-0.54175 -0.398038 0)
(-0.60898 -0.254185 0)
(-0.642185 -0.0868388 0)
(-0.597308 0.15243 0)
(-0.368428 0.293343 0)
(-0.195452 0.24724 0)
(-0.138142 0.191095 0)
(-0.103305 0.186548 0)
(-0.0404415 0.179214 0)
(0.00981423 0.138758 0)
(0.0291236 0.0948472 0)
(0.0317178 0.0631583 0)
(0.0288221 0.0425452 0)
(0.0248398 0.0293531 0)
(0.0211573 0.0204237 0)
(0.0177454 0.0140622 0)
(0.014617 0.00953687 0)
(0.0118149 0.00633149 0)
(0.00939507 0.00410575 0)
(0.00741241 0.00257101 0)
(0.00593788 0.00148833 0)
(0.005046 0.000659928 0)
(-0.00411692 -0.531369 0)
(-0.0392362 -0.530535 0)
(-0.0786129 -0.527693 0)
(-0.123335 -0.522021 0)
(-0.174729 -0.512051 0)
(-0.234217 -0.494895 0)
(-0.302623 -0.465292 0)
(-0.377777 -0.414957 0)
(-0.450343 -0.334603 0)
(-0.503601 -0.222395 0)
(-0.523795 -0.0829939 0)
(-0.479273 0.0796828 0)
(-0.345684 0.189187 0)
(-0.21722 0.196547 0)
(-0.148298 0.173076 0)
(-0.102802 0.166659 0)
(-0.0487974 0.157868 0)
(-0.00363249 0.127704 0)
(0.0186198 0.0916904 0)
(0.0251659 0.0630303 0)
(0.024944 0.0432175 0)
(0.0225304 0.0300611 0)
(0.0197342 0.0210413 0)
(0.0168673 0.0145997 0)
(0.0140782 0.00999002 0)
(0.0114869 0.00670365 0)
(0.0091915 0.00438934 0)
(0.00728203 0.00277685 0)
(0.00585202 0.00162035 0)
(0.00497702 0.000721055 0)
(-0.00392933 -0.466374 0)
(-0.0357294 -0.46518 0)
(-0.0712555 -0.461425 0)
(-0.111098 -0.454347 0)
(-0.15586 -0.442616 0)
(-0.20594 -0.423893 0)
(-0.26099 -0.394509 0)
(-0.318594 -0.3495 0)
(-0.372618 -0.283781 0)
(-0.412692 -0.195286 0)
(-0.425787 -0.0866737 0)
(-0.393922 0.0302372 0)
(-0.311716 0.117696 0)
(-0.219515 0.148433 0)
(-0.153056 0.147941 0)
(-0.103936 0.145595 0)
(-0.0555988 0.138141 0)
(-0.0148318 0.115944 0)
(0.00889135 0.0871346 0)
(0.0185896 0.0619784 0)
(0.0208608 0.0434128 0)
(0.0200329 0.0305525 0)
(0.0181687 0.0215645 0)
(0.0158829 0.015099 0)
(0.0134614 0.0104325 0)
(0.0111051 0.00707708 0)
(0.00895117 0.00467969 0)
(0.00712764 0.00298935 0)
(0.00574801 0.00175681 0)
(0.00489409 0.000783285 0)
(-0.00361479 -0.403689 0)
(-0.0314369 -0.40228 0)
(-0.0623904 -0.398125 0)
(-0.0967544 -0.390685 0)
(-0.134695 -0.378877 0)
(-0.176088 -0.3609 0)
(-0.220179 -0.334224 0)
(-0.26484 -0.295767 0)
(-0.305789 -0.242549 0)
(-0.336026 -0.173282 0)
(-0.346209 -0.0903406 0)
(-0.326271 -0.00331255 0)
(-0.274664 0.0676945 0)
(-0.209532 0.106574 0)
(-0.152034 0.120182 0)
(-0.104547 0.123703 0)
(-0.0608481 0.1194 0)
(-0.02393 0.103726 0)
(0.000160189 0.0813734 0)
(0.0121799 0.0599949 0)
(0.0166598 0.0430738 0)
(0.0173759 0.0307803 0)
(0.0164703 0.0219636 0)
(0.0147955 0.0155425 0)
(0.0127692 0.0108544 0)
(0.0106689 0.00744603 0)
(0.00867373 0.00497394 0)
(0.00694818 0.0032072 0)
(0.00562536 0.00189754 0)
(0.00479717 0.000847094 0)
(-0.00322182 -0.345132 0)
(-0.0268741 -0.34365 0)
(-0.0530908 -0.339497 0)
(-0.0819588 -0.332417 0)
(-0.113417 -0.321589 0)
(-0.147137 -0.305626 0)
(-0.182308 -0.282753 0)
(-0.217196 -0.250999 0)
(-0.248737 -0.208572 0)
(-0.272168 -0.154841 0)
(-0.281334 -0.091706 0)
(-0.270302 -0.0255324 0)
(-0.23798 0.0323782 0)
(-0.192551 0.0719374 0)
(-0.14597 0.0929375 0)
(-0.103401 0.101807 0)
(-0.0643596 0.101393 0)
(-0.0310334 0.0912845 0)
(-0.00741885 0.0746664 0)
(0.00613195 0.0571176 0)
(0.0124505 0.0421606 0)
(0.014607 0.0306986 0)
(0.0146584 0.0222066 0)
(0.0136137 0.0159101 0)
(0.0120048 0.0112442 0)
(0.0101776 0.00780418 0)
(0.00835724 0.00526945 0)
(0.00674047 0.00342913 0)
(0.00548125 0.00204231 0)
(0.00468315 0.00091356 0)
(-0.00280242 -0.291775 0)
(-0.0225259 -0.290352 0)
(-0.0442497 -0.286532 0)
(-0.0679606 -0.280285 0)
(-0.0935415 -0.270998 0)
(-0.120644 -0.257587 0)
(-0.148552 -0.238783 0)
(-0.175921 -0.213285 0)
(-0.200569 -0.179998 0)
(-0.219271 -0.138628 0)
(-0.228023 -0.0905094 0)
(-0.223087 -0.0395951 0)
(-0.203288 0.00751163 0)
(-0.172114 0.0442367 0)
(-0.13608 0.0681022 0)
(-0.10002 0.0808206 0)
(-0.0659591 0.0841623 0)
(-0.0362066 0.0788299 0)
(-0.0137112 0.0672257 0)
(0.000631258 0.0534232 0)
(0.00835799 0.0406594 0)
(0.0117891 0.0302706 0)
(0.0127611 0.0222642 0)
(0.0123487 0.0161833 0)
(0.0111702 0.0115909 0)
(0.00962891 0.00814601 0)
(0.00799679 0.00556412 0)
(0.00649878 0.00365431 0)
(0.00531042 0.00219066 0)
(0.00454678 0.000983109 0)
(-0.00241107 -0.243733 0)
(-0.0186873 -0.242656 0)
(-0.0364017 -0.239672 0)
(-0.055481 -0.234638 0)
(-0.0758775 -0.227096 0)
(-0.0973486 -0.216277 0)
(-0.119341 -0.201295 0)
(-0.140848 -0.181277 0)
(-0.160322 -0.15552 0)
(-0.175574 -0.123864 0)
(-0.18396 -0.0871531 0)
(-0.182971 -0.0477769 0)
(-0.171406 -0.00969464 0)
(-0.150502 0.02272 0)
(-0.123647 0.0466269 0)
(-0.0944575 0.0615196 0)
(-0.0655962 0.0679328 0)
(-0.0395049 0.0665938 0)
(-0.0186364 0.0593061 0)
(-0.00417075 0.0490489 0)
(0.00451268 0.0385874 0)
(0.00899716 0.0294738 0)
(0.0108137 0.022111 0)
(0.0110151 0.0163433 0)
(0.0102685 0.0118822 0)
(0.00902158 0.00846479 0)
(0.00758881 0.00585415 0)
(0.00621914 0.00388119 0)
(0.00510914 0.00234211 0)
(0.00438496 0.00105523 0)
(-0.00200029 -0.201331 0)
(-0.0149636 -0.200776 0)
(-0.0290695 -0.198939 0)
(-0.0442223 -0.195319 0)
(-0.0603463 -0.189512 0)
(-0.0772469 -0.181059 0)
(-0.0945204 -0.169401 0)
(-0.111447 -0.153961 0)
(-0.12695 -0.134264 0)
(-0.139538 -0.110181 0)
(-0.147425 -0.0821981 0)
(-0.14885 -0.0517326 0)
(-0.142696 -0.0211949 0)
(-0.12914 0.00649013 0)
(-0.109805 0.028816 0)
(-0.0870809 0.0444316 0)
(-0.0633751 0.0529897 0)
(-0.0410138 0.0548232 0)
(-0.022161 0.0511608 0)
(-0.00813922 0.044135 0)
(0.00104342 0.0359918 0)
(0.00631501 0.0283034 0)
(0.00886087 0.0217286 0)
(0.00963378 0.0163731 0)
(0.00930777 0.0121064 0)
(0.0083579 0.00875353 0)
(0.00713225 0.00613459 0)
(0.00589984 0.00410718 0)
(0.00487521 0.0024956 0)
(0.00419602 0.00112898 0)
(-0.00158861 -0.165577 0)
(-0.0115344 -0.165311 0)
(-0.0224518 -0.164226 0)
(-0.0342835 -0.161741 0)
(-0.0469244 -0.157476 0)
(-0.0601823 -0.151108 0)
(-0.073743 -0.142266 0)
(-0.0870942 -0.130562 0)
(-0.0994939 -0.115665 0)
(-0.109924 -0.0974579 0)
(-0.117158 -0.0761923 0)
(-0.119932 -0.05269 0)
(-0.117273 -0.0284228 0)
(-0.108903 -0.0053357 0)
(-0.0954715 0.0145872 0)
(-0.0784015 0.0298387 0)
(-0.0595353 0.0396024 0)
(-0.040867 0.0437749 0)
(-0.0242963 0.043047 0)
(-0.0111797 0.0388644 0)
(-0.00193866 0.0329624 0)
(0.00383323 0.0267775 0)
(0.00695681 0.0211094 0)
(0.00823286 0.0162606 0)
(0.00830048 0.0122527 0)
(0.00764223 0.0090045 0)
(0.00662689 0.00640007 0)
(0.00553869 0.00432936 0)
(0.0046059 0.00264918 0)
(0.00397721 0.0012033 0)
(-0.00124905 -0.136165 0)
(-0.00878145 -0.136005 0)
(-0.0170859 -0.13529 0)
(-0.0261414 -0.13355 0)
(-0.0358749 -0.130464 0)
(-0.0461423 -0.125776 0)
(-0.0567098 -0.119209 0)
(-0.0672059 -0.110482 0)
(-0.07711 -0.0993496 0)
(-0.0857163 -0.0856939 0)
(-0.0921725 -0.0696195 0)
(-0.0955606 -0.0515852 0)
(-0.0950805 -0.0324826 0)
(-0.0902932 -0.0135874 0)
(-0.0813315 0.00362339 0)
(-0.0689499 0.0177946 0)
(-0.0544053 0.0279526 0)
(-0.0392565 0.0336772 0)
(-0.0251042 0.0352094 0)
(-0.0132431 0.0334328 0)
(-0.00433601 0.0296064 0)
(0.00164066 0.0249376 0)
(0.00516065 0.0202593 0)
(0.00684586 0.0160001 0)
(0.00726292 0.0123128 0)
(0.00688035 0.00921057 0)
(0.00607298 0.00664477 0)
(0.00513341 0.00454396 0)
(0.00429815 0.00280096 0)
(0.00372511 0.00127766 0)
(-0.00096831 -0.112159 0)
(-0.00662536 -0.112052 0)
(-0.0128762 -0.111546 0)
(-0.0197201 -0.110288 0)
(-0.0271141 -0.108037 0)
(-0.0349592 -0.104606 0)
(-0.0430912 -0.0997869 0)
(-0.0512501 -0.0933622 0)
(-0.0590757 -0.0851315 0)
(-0.0660799 -0.0749727 0)
(-0.0716666 -0.0628992 0)
(-0.0751693 -0.0491484 0)
(-0.0759521 -0.0342471 0)
(-0.073558 -0.019016 0)
(-0.0678672 -0.00450648 0)
(-0.0592064 0.00818571 0)
(-0.0483496 0.0181192 0)
(-0.0364204 0.02471 0)
(-0.024693 0.0278706 0)
(-0.0143236 0.0280412 0)
(-0.00607433 0.0260544 0)
(-0.000182193 0.0228456 0)
(0.00353312 0.0192009 0)
(0.00551036 0.0155948 0)
(0.00621519 0.0122833 0)
(0.00608035 0.00936616 0)
(0.00547172 0.0068632 0)
(0.00468182 0.00474709 0)
(0.00394864 0.00294836 0)
(0.003436 0.00135078 0)
(-0.000742787 -0.0926844 0)
(-0.00497797 -0.0926013 0)
(-0.00965728 -0.0922259 0)
(-0.014782 -0.091306 0)
(-0.0203248 -0.0896714 0)
(-0.0262222 -0.0871799 0)
(-0.0323706 -0.0836718 0)
(-0.0386019 -0.0789771 0)
(-0.0446763 -0.0729305 0)
(-0.050261 -0.0654135 0)
(-0.0549406 -0.0563885 0)
(-0.0582334 -0.0459592 0)
(-0.0596473 -0.0344218 0)
(-0.0587697 -0.0222885 0)
(-0.0553815 -0.0102769 0)
(-0.0495559 0.000781051 0)
(-0.0417205 0.0100784 0)
(-0.0326201 0.0169876 0)
(-0.0232095 0.0212181 0)
(-0.0144559 0.0228831 0)
(-0.00711486 0.0224569 0)
(-0.00157749 0.0206056 0)
(0.00213266 0.0179765 0)
(0.00426542 0.0150596 0)
(0.0051799 0.0121662 0)
(0.00525233 0.00946843 0)
(0.00482554 0.00705087 0)
(0.00418232 0.00493488 0)
(0.00355438 0.00308857 0)
(0.00310583 0.00142087 0)
(-0.000561824 -0.0769527 0)
(-0.00368586 -0.0769124 0)
(-0.00712931 -0.07668 0)
(-0.0108946 -0.0760482 0)
(-0.014973 -0.0748839 0)
(-0.0193314 -0.0730844 0)
(-0.0239058 -0.0705333 0)
(-0.028586 -0.0671026 0)
(-0.0332135 -0.0626616 0)
(-0.0375644 -0.0571038 0)
(-0.0413534 -0.0503677 0)
(-0.0442394 -0.0424774 0)
(-0.0458553 -0.0335835 0)
(-0.0458617 -0.0239895 0)
(-0.0440199 -0.0141674 0)
(-0.0402747 -0.00471466 0)
(-0.0348202 0.00371982 0)
(-0.0281137 0.0105522 0)
(-0.020825 0.0153928 0)
(-0.0137123 0.0181345 0)
(-0.00745213 0.0189701 0)
(-0.00249251 0.0183112 0)
(0.00100939 0.0166474 0)
(0.00314889 0.0144227 0)
(0.00417905 0.0119709 0)
(0.00440705 0.00951775 0)
(0.0041376 0.00720497 0)
(0.00363374 0.0051034 0)
(0.00311224 0.00321856 0)
(0.00273095 0.00148673 0)
(-0.000406397 -0.0646613 0)
(-0.00261513 -0.064636 0)
(-0.00506548 -0.064474 0)
(-0.00776567 -0.0640195 0)
(-0.0107078 -0.0631754 0)
(-0.0138668 -0.061866 0)
(-0.0171995 -0.0600035 0)
(-0.0206334 -0.0574889 0)
(-0.0240663 -0.0542175 0)
(-0.0273518 -0.0500943 0)
(-0.0303003 -0.0450486 0)
(-0.0326777 -0.0390612 0)
(-0.0342207 -0.0321945 0)
(-0.0346672 -0.0246166 0)
(-0.0338027 -0.0166238 0)
(-0.0315203 -0.0086286 0)
(-0.0278765 -0.0011255 0)
(-0.0231303 0.00538583 0)
(-0.017716 0.0104895 0)
(-0.0121914 0.0139483 0)
(-0.00711182 0.0157498 0)
(-0.00290742 0.0160896 0)
(0.000200473 0.0152924 0)
(0.00219247 0.0137284 0)
(0.00323353 0.0117172 0)
(0.00355452 0.00951982 0)
(0.00341111 0.0073245 0)
(0.00303514 0.00524898 0)
(0.00261941 0.00333505 0)
(0.00230787 0.00154689 0)
(-0.000283531 -0.0553656 0)
(-0.00182115 -0.0553318 0)
(-0.00351782 -0.0551824 0)
(-0.00537842 -0.0548222 0)
(-0.00740405 -0.0541872 0)
(-0.00958443 -0.0532162 0)
(-0.0118952 -0.0518373 0)
(-0.0142934 -0.0499705 0)
(-0.0167174 -0.0475286 0)
(-0.0190748 -0.0444266 0)
(-0.0212421 -0.0405934 0)
(-0.0230639 -0.0359895 0)
(-0.0243597 -0.0306259 0)
(-0.024941 -0.0245854 0)
(-0.0246378 -0.0180451 0)
(-0.0233383 -0.0112797 0)
(-0.021032 -0.00465242 0)
(-0.0178442 0.00142518 0)
(-0.0140425 0.00656065 0)
(-0.010004 0.0104511 0)
(-0.00614591 0.0129468 0)
(-0.00282994 0.0140751 0)
(-0.000283237 0.0140128 0)
(0.0014162 0.0130356 0)
(0.00235755 0.0114351 0)
(0.00270247 0.00948575 0)
(0.00264831 0.00741088 0)
(0.00238531 0.00536848 0)
(0.00207325 0.00343449 0)
(0.00183345 0.00159897 0)
(-0.000181367 -0.0484364 0)
(-0.00116884 -0.0484523 0)
(-0.00225264 -0.0484174 0)
(-0.0034334 -0.0482065 0)
(-0.00471345 -0.0477511 0)
(-0.00609113 -0.0470101 0)
(-0.00755806 -0.0459376 0)
(-0.00909324 -0.04448 0)
(-0.0106615 -0.0425735 0)
(-0.0122073 -0.0401489 0)
(-0.0136552 -0.0371376 0)
(-0.014909 -0.0334872 0)
(-0.0158545 -0.029178 0)
(-0.0163686 -0.0242395 0)
(-0.0163338 -0.0187727 0)
(-0.0156616 -0.012958 0)
(-0.0143199 -0.00706029 0)
(-0.0123591 -0.00141096 0)
(-0.00992896 0.00363474 0)
(-0.00725913 0.00775175 0)
(-0.00462792 0.0107073 0)
(-0.00229634 0.0124096 0)
(-0.000451524 0.0129185 0)
(0.000821319 0.0124182 0)
(0.00155535 0.011165 0)
(0.00185255 0.00943259 0)
(0.00184916 0.00746753 0)
(0.00168284 0.00545932 0)
(0.00147136 0.00351324 0)
(0.00130514 0.00164068 0)
(-8.88896e-05 -0.0442925 0)
(-0.000554933 -0.0442877 0)
(-0.00108242 -0.0442218 0)
(-0.00167837 -0.0440118 0)
(-0.00234021 -0.0436115 0)
(-0.00306049 -0.0429893 0)
(-0.00383045 -0.0421065 0)
(-0.0046369 -0.0409117 0)
(-0.00545994 -0.0393424 0)
(-0.00627133 -0.0373345 0)
(-0.00703619 -0.0348249 0)
(-0.00770954 -0.0317593 0)
(-0.00823506 -0.0281042 0)
(-0.00854912 -0.0238602 0)
(-0.00858847 -0.019084 0)
(-0.00830196 -0.0138992 0)
(-0.00766486 -0.00850831 0)
(-0.00669246 -0.00318751 0)
(-0.00544741 0.00174244 0)
(-0.00405118 0.00596014 0)
(-0.00264729 0.00918087 0)
(-0.00137385 0.0112442 0)
(-0.000344075 0.0121317 0)
(0.000383063 0.0119616 0)
(0.000813264 0.0109561 0)
(0.00099733 0.00938197 0)
(0.00100877 0.00749961 0)
(0.000924637 0.00551903 0)
(0.000811667 0.00356677 0)
(0.000721225 0.00166951 0)
(-2.94762e-05 -0.0428393 0)
(-0.000176829 -0.0428145 0)
(-0.000347859 -0.0427139 0)
(-0.00054488 -0.0424872 0)
(-0.000765265 -0.0421023 0)
(-0.00100559 -0.0415242 0)
(-0.00126183 -0.0407096 0)
(-0.00152846 -0.0396085 0)
(-0.00179967 -0.0381622 0)
(-0.00206775 -0.0363072 0)
(-0.00232114 -0.0339791 0)
(-0.00254452 -0.0311223 0)
(-0.00271993 -0.0276998 0)
(-0.00282738 -0.0237043 0)
(-0.00284618 -0.0191778 0)
(-0.00275903 -0.0142239 0)
(-0.00255736 -0.00902184 0)
(-0.00224799 -0.0038286 0)
(-0.00183582 0.00103737 0)
(-0.00137769 0.00529668 0)
(-0.000915941 0.00860131 0)
(-0.000484346 0.0107929 0)
(-0.000130431 0.0118216 0)
(0.000121943 0.0117784 0)
(0.000272422 0.0108698 0)
(0.000337704 0.00935851 0)
(0.000342789 0.00750971 0)
(0.00031453 0.00554095 0)
(0.000276 0.0035868 0)
(0.000245035 0.00168038 0)
(-0.000130941 1.17124e-05 0)
(-0.000402874 1.96125e-05 0)
(-0.000846112 3.65363e-05 0)
(-0.00158527 6.65578e-05 0)
(-0.00276826 0.000115314 0)
(-0.00456534 0.000189486 0)
(-0.00715744 0.000295833 0)
(-0.0107144 0.000439638 0)
(-0.0153644 0.000622184 0)
(-0.0211514 0.000837172 0)
(-0.0279904 0.00106676 0)
(-0.0356237 0.00127868 0)
(-0.0436056 0.00142738 0)
(-0.0513311 0.0014613 0)
(-0.0581157 0.00133576 0)
(-0.063321 0.00102722 0)
(-0.0664768 0.000542094 0)
(-0.0673642 -8.41785e-05 0)
(-0.066029 -0.000796926 0)
(-0.0627348 -0.00153593 0)
(-0.057881 -0.0022477 0)
(-0.0519199 -0.00289239 0)
(-0.0452824 -0.00344646 0)
(-0.038343 -0.00390043 0)
(-0.031393 -0.00425588 0)
(-0.0246516 -0.00452084 0)
(-0.0182587 -0.0047075 0)
(-0.0123021 -0.00482898 0)
(-0.00682223 -0.00489835 0)
(-0.00183289 -0.00492699 0)
(-0.000130511 2.64235e-05 0)
(-0.00040154 4.42395e-05 0)
(-0.000843297 8.24094e-05 0)
(-0.00157999 0.000150124 0)
(-0.00275906 0.000260116 0)
(-0.00455027 0.000427462 0)
(-0.00713416 0.000667494 0)
(-0.0106806 0.000992252 0)
(-0.0153185 0.0014049 0)
(-0.0210945 0.00189164 0)
(-0.0279281 0.00241275 0)
(-0.0355686 0.00289588 0)
(-0.0435784 0.00323825 0)
(-0.0513589 0.00332254 0)
(-0.0582269 0.00304596 0)
(-0.0635375 0.00235301 0)
(-0.0668075 0.0012563 0)
(-0.0678013 -0.000164632 0)
(-0.0665501 -0.00178537 0)
(-0.0633082 -0.0034681 0)
(-0.0584718 -0.00509018 0)
(-0.0524956 -0.00655985 0)
(-0.0458166 -0.00782326 0)
(-0.0388163 -0.0088584 0)
(-0.0317934 -0.00966879 0)
(-0.0249736 -0.0102729 0)
(-0.018501 -0.0106984 0)
(-0.012467 -0.0109754 0)
(-0.00691414 -0.0111332 0)
(-0.00185766 -0.0111981 0)
(-0.000129702 4.10553e-05 0)
(-0.000399036 6.87421e-05 0)
(-0.000838012 0.000128052 0)
(-0.00157008 0.000233269 0)
(-0.00274178 0.000404191 0)
(-0.00452193 0.000664264 0)
(-0.00709033 0.0010374 0)
(-0.0106167 0.00154246 0)
(-0.0152315 0.00218474 0)
(-0.0209853 0.00294348 0)
(-0.027806 0.00375795 0)
(-0.0354553 0.00451685 0)
(-0.0435101 0.00506099 0)
(-0.0513841 0.00520713 0)
(-0.0583969 0.00479259 0)
(-0.0638933 0.00372663 0)
(-0.0673668 0.00202442 0)
(-0.0685527 -0.000193032 0)
(-0.0674552 -0.00273217 0)
(-0.0643108 -0.00537625 0)
(-0.0595096 -0.00793073 0)
(-0.0535104 -0.0102491 0)
(-0.0467603 -0.0122446 0)
(-0.039654 -0.0138813 0)
(-0.0325032 -0.0151634 0)
(-0.0255443 -0.0161197 0)
(-0.0189307 -0.0167936 0)
(-0.0127594 -0.0172323 0)
(-0.00707723 -0.0174821 0)
(-0.00190158 -0.0175847 0)
(-0.000128546 5.55809e-05 0)
(-0.000395452 9.30516e-05 0)
(-0.000830445 0.000173343 0)
(-0.00155588 0.000315779 0)
(-0.00271703 0.00054717 0)
(-0.00448135 0.000899304 0)
(-0.00702751 0.00140464 0)
(-0.0105251 0.00208903 0)
(-0.0151065 0.00296025 0)
(-0.0208282 0.00399138 0)
(-0.0276297 0.00510207 0)
(-0.0352902 0.00614377 0)
(-0.043408 0.00690227 0)
(-0.0514146 0.00712825 0)
(-0.0586349 0.00659642 0)
(-0.0643995 0.00517568 0)
(-0.0681692 0.00287792 0)
(-0.0696364 -0.000139117 0)
(-0.068766 -0.00361239 0)
(-0.0657675 -0.00724555 0)
(-0.0610214 -0.0107675 0)
(-0.0549914 -0.0139725 0)
(-0.0481395 -0.0167367 0)
(-0.0408797 -0.0190072 0)
(-0.0335424 -0.0207881 0)
(-0.0263807 -0.0221174 0)
(-0.0195606 -0.0230546 0)
(-0.0131883 -0.023665 0)
(-0.00731649 -0.0240125 0)
(-0.001966 -0.0241551 0)
(-0.000127043 6.99543e-05 0)
(-0.000390796 0.000117112 0)
(-0.000820616 0.000218165 0)
(-0.00153744 0.000397428 0)
(-0.00268487 0.000688676 0)
(-0.00442861 0.00113195 0)
(-0.00694586 0.0017683 0)
(-0.010406 0.00263068 0)
(-0.0149437 0.00372985 0)
(-0.020623 0.00503384 0)
(-0.027398 0.0064445 0)
(-0.0350711 0.00777838 0)
(-0.043268 0.00876822 0)
(-0.0514445 0.00909859 0)
(-0.058934 0.00847803 0)
(-0.0650505 0.00672821 0)
(-0.0692126 0.00384961 0)
(-0.0710567 3.13948e-05 0)
(-0.0704938 -0.00439852 0)
(-0.0676963 -0.00905871 0)
(-0.06303 -0.0135968 0)
(-0.0569644 -0.017741 0)
(-0.0499809 -0.0213251 0)
(-0.0425186 -0.024275 0)
(-0.0349335 -0.0265924 0)
(-0.0275012 -0.0283241 0)
(-0.020405 -0.029546 0)
(-0.0137635 -0.0303419 0)
(-0.00763749 -0.0307953 0)
(-0.00205256 -0.0309815 0)
(-0.000125199 8.41369e-05 0)
(-0.000385081 0.000140856 0)
(-0.000808551 0.000262387 0)
(-0.00151481 0.000477995 0)
(-0.0026454 0.000828316 0)
(-0.00436386 0.00136159 0)
(-0.00684556 0.00212742 0)
(-0.0102594 0.00316607 0)
(-0.014743 0.00449191 0)
(-0.0203693 0.00606924 0)
(-0.0271099 0.00778436 0)
(-0.0347948 0.00942199 0)
(-0.0430845 0.0106644 0)
(-0.0514658 0.0111303 0)
(-0.0592852 0.0104579 0)
(-0.0658385 0.00841313 0)
(-0.0704942 0.00497424 0)
(-0.0728184 0.000352945 0)
(-0.0726529 -0.0050595 0)
(-0.0701207 -0.0107951 0)
(-0.0655662 -0.0164122 0)
(-0.0594645 -0.0215646 0)
(-0.0523203 -0.0260358 0)
(-0.044605 -0.0297255 0)
(-0.0367071 -0.0326294 0)
(-0.0289313 -0.0348025 0)
(-0.0214834 -0.0363373 0)
(-0.0144985 -0.0373378 0)
(-0.00804771 -0.0379078 0)
(-0.00216314 -0.0381416 0)
(-0.000123019 9.81005e-05 0)
(-0.000378323 0.000164209 0)
(-0.000794284 0.000305892 0)
(-0.00148804 0.000557257 0)
(-0.00259871 0.000965708 0)
(-0.00428725 0.0015876 0)
(-0.00672683 0.00248106 0)
(-0.0100858 0.0036939 0)
(-0.0145048 0.00524477 0)
(-0.0200667 0.00709582 0)
(-0.0267636 0.00912054 0)
(-0.0344579 0.0110754 0)
(-0.0428511 0.0125957 0)
(-0.0514689 0.0132349 0)
(-0.0596767 0.0125566 0)
(-0.0667532 0.0102603 0)
(-0.0720095 0.00628911 0)
(-0.074927 0.000865784 0)
(-0.0752613 -0.00555965 0)
(-0.0730704 -0.0124294 0)
(-0.0686693 -0.0192039 0)
(-0.0625364 -0.0254513 0)
(-0.0552042 -0.030895 0)
(-0.0471832 -0.0354011 0)
(-0.0389028 -0.0389559 0)
(-0.0307041 -0.0416205 0)
(-0.0228214 -0.0435046 0)
(-0.0154109 -0.0447338 0)
(-0.00855706 -0.0454343 0)
(-0.00230041 -0.0457219 0)
(-0.000120509 0.000111795 0)
(-0.000370541 0.000187119 0)
(-0.000777853 0.00034856 0)
(-0.00145721 0.000634995 0)
(-0.00254494 0.00110048 0)
(-0.00419898 0.00180937 0)
(-0.00658993 0.00282831 0)
(-0.00988527 0.00421285 0)
(-0.014229 0.00598676 0)
(-0.0197149 0.00811175 0)
(-0.0263576 0.0104516 0)
(-0.0340561 0.012739 0)
(-0.0425598 0.0145663 0)
(-0.0514418 0.0154232 0)
(-0.0600941 0.0147943 0)
(-0.0677814 0.012301 0)
(-0.073752 0.00783457 0)
(-0.0773883 0.00161446 0)
(-0.0783395 -0.00585747 0)
(-0.0765816 -0.0139307 0)
(-0.0723875 -0.0219576 0)
(-0.0662362 -0.0294068 0)
(-0.0586911 -0.0359291 0)
(-0.0503096 -0.0413479 0)
(-0.041571 -0.0456342 0)
(-0.0328616 -0.0488534 0)
(-0.0244516 -0.0511329 0)
(-0.0165232 -0.0526215 0)
(-0.00917847 -0.0534703 0)
(-0.00246789 -0.0538186 0)
(-0.000117675 0.000125192 0)
(-0.000361756 0.000209515 0)
(-0.000759304 0.00039027 0)
(-0.0014224 0.000710998 0)
(-0.00248421 0.00123228 0)
(-0.00409928 0.00202631 0)
(-0.00643519 0.00316824 0)
(-0.00965832 0.0047216 0)
(-0.013916 0.0067161 0)
(-0.0193135 0.00911498 0)
(-0.02589 0.0117758 0)
(-0.0335849 0.0144122 0)
(-0.0422019 0.0165791 0)
(-0.0513706 0.0177049 0)
(-0.0605198 0.0171907 0)
(-0.0689063 0.0145672 0)
(-0.075712 0.00965442 0)
(-0.0802066 0.00264992 0)
(-0.081911 -0.00590349 0)
(-0.0806969 -0.0152605 0)
(-0.0767796 -0.0246528 0)
(-0.0706326 -0.0334333 0)
(-0.0628533 -0.0411644 0)
(-0.0540542 -0.0476145 0)
(-0.0447747 -0.0527325 0)
(-0.0354568 -0.0565851 0)
(-0.0264147 -0.0593175 0)
(-0.0178638 -0.0611035 0)
(-0.00992761 -0.0621228 0)
(-0.00266993 -0.0625412 0)
(-0.000114528 0.000138251 0)
(-0.000351992 0.000231334 0)
(-0.000738687 0.000430917 0)
(-0.0013837 0.000785063 0)
(-0.0024167 0.00136072 0)
(-0.00398839 0.00223783 0)
(-0.00626296 0.00349994 0)
(-0.00940532 0.00521883 0)
(-0.0135659 0.00743103 0)
(-0.0188621 0.0101034 0)
(-0.0253587 0.0130909 0)
(-0.033039 0.016094 0)
(-0.0417672 0.018636 0)
(-0.0512393 0.0200883 0)
(-0.060933 0.0197651 0)
(-0.0701067 0.0170924 0)
(-0.0778764 0.0117966 0)
(-0.0833852 0.00402939 0)
(-0.0860019 -0.00563966 0)
(-0.0854663 -0.0163705 0)
(-0.0819159 -0.0272612 0)
(-0.0758095 -0.0375285 0)
(-0.0677798 -0.0466265 0)
(-0.0585036 -0.0542536 0)
(-0.0485923 -0.060327 0)
(-0.0385554 -0.0649107 0)
(-0.0287619 -0.0681674 0)
(-0.019468 -0.0702987 0)
(-0.0108244 -0.0715159 0)
(-0.00291181 -0.0720159 0)
(-0.000111075 0.000150939 0)
(-0.000341276 0.000252522 0)
(-0.000716058 0.000470377 0)
(-0.00134123 0.000856979 0)
(-0.00234259 0.00148548 0)
(-0.0038666 0.00244335 0)
(-0.00607365 0.00382252 0)
(-0.00912674 0.00570322 0)
(-0.0131792 0.00812972 0)
(-0.0183605 0.0110745 0)
(-0.024762 0.0143943 0)
(-0.0324132 0.0177821 0)
(-0.0412447 0.0207376 0)
(-0.0510296 0.0225801 0)
(-0.061309 0.0225355 0)
(-0.0713563 0.0199109 0)
(-0.0802265 0.0143132 0)
(-0.0869245 0.0058191 0)
(-0.0906392 -0.00499627 0)
(-0.0909469 -0.0172006 0)
(-0.0878794 -0.0297444 0)
(-0.0818673 -0.0416839 0)
(-0.0735787 -0.0523401 0)
(-0.0637638 -0.0613218 0)
(-0.0531201 -0.0685027 0)
(-0.0422391 -0.073938 0)
(-0.0315567 -0.0778077 0)
(-0.02138 -0.0803438 0)
(-0.011894 -0.0817931 0)
(-0.00320031 -0.0823886 0)
(-0.000107326 0.000163223 0)
(-0.000329639 0.000273017 0)
(-0.000691479 0.000508553 0)
(-0.0012951 0.000926552 0)
(-0.00226207 0.00160619 0)
(-0.00373424 0.00264231 0)
(-0.0058677 0.00413509 0)
(-0.00882315 0.00617346 0)
(-0.0127564 0.00881026 0)
(-0.0178084 0.0120259 0)
(-0.0240977 0.0156828 0)
(-0.0317017 0.0194736 0)
(-0.0406225 0.0228827 0)
(-0.0507211 0.0251849 0)
(-0.0616188 0.0255181 0)
(-0.0726231 0.0230574 0)
(-0.0827373 0.0172613 0)
(-0.0908199 0.00809473 0)
(-0.0958511 -0.00389012 0)
(-0.0972034 -0.0176756 0)
(-0.0947678 -0.0320506 0)
(-0.0889266 -0.0458822 0)
(-0.0803812 -0.0583274 0)
(-0.0699649 -0.0688805 0)
(-0.0584773 -0.0773555 0)
(-0.0466088 -0.0837913 0)
(-0.0348781 -0.088384 0)
(-0.023655 -0.0913985 0)
(-0.0131673 -0.0931228 0)
(-0.0035437 -0.0938316 0)
(-0.000103291 0.000175068 0)
(-0.00031711 0.000292763 0)
(-0.000665018 0.000545336 0)
(-0.00124542 0.000993598 0)
(-0.00217535 0.00172254 0)
(-0.00359163 0.00283417 0)
(-0.00564562 0.00443681 0)
(-0.00849514 0.00662823 0)
(-0.0122978 0.00947075 0)
(-0.0172059 0.0129548 0)
(-0.0233641 0.0169529 0)
(-0.030899 0.0211645 0)
(-0.0398882 0.0250682 0)
(-0.0502913 0.0279047 0)
(-0.0618294 0.0287272 0)
(-0.0738676 0.0265669 0)
(-0.0853753 0.0207025 0)
(-0.0950609 0.0109433 0)
(-0.101665 -0.0022201 0)
(-0.104308 -0.0177011 0)
(-0.102696 -0.0341117 0)
(-0.0971322 -0.0500954 0)
(-0.0883467 -0.0646074 0)
(-0.0772661 -0.0769956 0)
(-0.0648103 -0.086994 0)
(-0.0517898 -0.0946146 0)
(-0.0388241 -0.100067 0)
(-0.0263614 -0.103652 0)
(-0.0146831 -0.105705 0)
(-0.00395298 -0.106549 0)
(-9.89842e-05 0.000186445 0)
(-0.000303726 0.000311705 0)
(-0.000636746 0.000580623 0)
(-0.00119235 0.00105793 0)
(-0.00208268 0.0018342 0)
(-0.00343915 0.00301839 0)
(-0.00540793 0.00472682 0)
(-0.0081434 0.00706625 0)
(-0.0118043 0.0101092 0)
(-0.0165529 0.0138584 0)
(-0.0225595 0.0182006 0)
(-0.0299992 0.0228494 0)
(-0.0390285 0.0272893 0)
(-0.0497158 0.0307388 0)
(-0.0619029 0.0321738 0)
(-0.0750425 0.0304733 0)
(-0.0880966 0.0247032 0)
(-0.0996269 0.0144642 0)
(-0.108105 0.000133301 0)
(-0.112342 -0.0171596 0)
(-0.111796 -0.0358373 0)
(-0.106656 -0.0542802 0)
(-0.097668 -0.0711933 0)
(-0.0858619 -0.0857382 0)
(-0.0723001 -0.0975419 0)
(-0.0579374 -0.106575 0)
(-0.0435173 -0.113058 0)
(-0.0295851 -0.117329 0)
(-0.0164904 -0.119778 0)
(-0.00444072 -0.120785 0)
(-9.44172e-05 0.000197328 0)
(-0.000289523 0.000329796 0)
(-0.000606741 0.000614326 0)
(-0.00113601 0.00111936 0)
(-0.0019843 0.00194087 0)
(-0.0032772 0.00319447 0)
(-0.00515523 0.0050043 0)
(-0.00776871 0.0074862 0)
(-0.0112766 0.0107237 0)
(-0.0158498 0.0147335 0)
(-0.0216826 0.0194212 0)
(-0.0289971 0.0245222 0)
(-0.0380304 0.0295385 0)
(-0.0489684 0.0336824 0)
(-0.0617964 0.0358648 0)
(-0.0760909 0.0348082 0)
(-0.0908434 0.0293334 0)
(-0.104485 0.0187708 0)
(-0.11519 0.00331502 0)
(-0.12139 -0.0159032 0)
(-0.122223 -0.0371089 0)
(-0.117705 -0.0583731 0)
(-0.108578 -0.0780898 0)
(-0.0959902 -0.0951829 0)
(-0.0811695 -0.109139 0)
(-0.0652449 -0.119869 0)
(-0.049111 -0.127596 0)
(-0.0334344 -0.132699 0)
(-0.0186506 -0.135628 0)
(-0.00502379 -0.136834 0)
(-8.96039e-05 0.000207682 0)
(-0.00027454 0.000346983 0)
(-0.000575084 0.000646342 0)
(-0.00107657 0.00117774 0)
(-0.00188047 0.00204225 0)
(-0.00310621 0.0033619 0)
(-0.00488816 0.00526847 0)
(-0.00737191 0.00788684 0)
(-0.0107155 0.0113122 0)
(-0.0150972 0.0155771 0)
(-0.0207322 0.0206097 0)
(-0.0278878 0.0261752 0)
(-0.0368805 0.0318063 0)
(-0.0480216 0.036727 0)
(-0.0614623 0.0398017 0)
(-0.0769453 0.0395998 0)
(-0.0935421 0.0346664 0)
(-0.109583 0.0239917 0)
(-0.122926 0.00749817 0)
(-0.131544 -0.0137464 0)
(-0.134155 -0.0377722 0)
(-0.130523 -0.0622844 0)
(-0.121361 -0.0852897 0)
(-0.107943 -0.105409 0)
(-0.0916951 -0.121945 0)
(-0.0739543 -0.134725 0)
(-0.0557994 -0.143965 0)
(-0.0380469 -0.150085 0)
(-0.021242 -0.153605 0)
(-0.00572343 -0.155055 0)
(-8.45599e-05 0.000217484 0)
(-0.00025882 0.000363214 0)
(-0.000541863 0.000676589 0)
(-0.00101419 0.0012329 0)
(-0.00177147 0.00213806 0)
(-0.00292663 0.00352022 0)
(-0.00460738 0.00551855 0)
(-0.00695389 0.00826694 0)
(-0.0101222 0.0118726 0)
(-0.0142956 0.0163858 0)
(-0.0197078 0.0217607 0)
(-0.0266668 0.0278 0)
(-0.0355662 0.0340804 0)
(-0.0468469 0.0398594 0)
(-0.0608483 0.0439795 0)
(-0.0775266 0.04487 0)
(-0.0960991 0.0407765 0)
(-0.114847 0.0302715 0)
(-0.131305 0.0128905 0)
(-0.142902 -0.0104579 0)
(-0.1478 -0.0376255 0)
(-0.145405 -0.0658897 0)
(-0.13636 -0.0927694 0)
(-0.122078 -0.116497 0)
(-0.10422 -0.13614 0)
(-0.0843699 -0.151412 0)
(-0.0638295 -0.162507 0)
(-0.0436002 -0.169884 0)
(-0.0243672 -0.174138 0)
(-0.00656719 -0.17589 0)
(-7.93005e-05 0.00022671 0)
(-0.000242403 0.000378449 0)
(-0.000507169 0.000704985 0)
(-0.000949032 0.00128467 0)
(-0.00165761 0.00222803 0)
(-0.00273894 0.00366899 0)
(-0.00431364 0.00575379 0)
(-0.0065157 0.00862527 0)
(-0.00949789 0.012403 0)
(-0.0134464 0.0171561 0)
(-0.0186095 0.0228683 0)
(-0.0253307 0.0293866 0)
(-0.0340759 0.0363458 0)
(-0.0454158 0.0430605 0)
(-0.0598978 0.0483844 0)
(-0.0777431 0.0506314 0)
(-0.0983964 0.0477349 0)
(-0.120171 0.0377697 0)
(-0.140291 0.0197404 0)
(-0.155553 -0.00574278 0)
(-0.163392 -0.0364064 0)
(-0.162702 -0.0690185 0)
(-0.153992 -0.100481 0)
(-0.138833 -0.128528 0)
(-0.119168 -0.151926 0)
(-0.0968748 -0.170242 0)
(-0.0735184 -0.183631 0)
(-0.0503256 -0.192577 0)
(-0.0281607 -0.197754 0)
(-0.00759152 -0.199889 0)
(-7.3844e-05 0.000235338 0)
(-0.000225337 0.000392648 0)
(-0.000471096 0.000731446 0)
(-0.000881281 0.00133294 0)
(-0.00153918 0.00231192 0)
(-0.00254364 0.00380778 0)
(-0.00400768 0.00597352 0)
(-0.00605838 0.00896069 0)
(-0.00884389 0.0129014 0)
(-0.0125508 0.0178846 0)
(-0.0174377 0.0239264 0)
(-0.0238772 0.0309243 0)
(-0.0323991 0.0385849 0)
(-0.0437005 0.0463061 0)
(-0.0585508 0.052993 0)
(-0.0774901 0.0568847 0)
(-0.100288 0.055607 0)
(-0.125406 0.0466604 0)
(-0.149814 0.0283442 0)
(-0.169587 0.000765745 0)
(-0.181206 -0.0337693 0)
(-0.182839 -0.0714419 0)
(-0.174763 -0.108349 0)
(-0.158742 -0.141578 0)
(-0.137065 -0.169525 0)
(-0.111957 -0.191577 0)
(-0.0852819 -0.207826 0)
(-0.0585347 -0.218761 0)
(-0.0328068 -0.225122 0)
(-0.00884681 -0.227753 0)
(-6.82094e-05 0.000243347 0)
(-0.000207666 0.000405765 0)
(-0.000433742 0.000755905 0)
(-0.00081112 0.00137755 0)
(-0.00141652 0.00238949 0)
(-0.00234125 0.00393619 0)
(-0.00369031 0.00617706 0)
(-0.00558311 0.00927208 0)
(-0.00816174 0.0133659 0)
(-0.0116106 0.0185678 0)
(-0.0161937 0.0249285 0)
(-0.022305 0.0324014 0)
(-0.0305275 0.0407775 0)
(-0.0416749 0.0495651 0)
(-0.0567455 0.0577695 0)
(-0.0766501 0.0636134 0)
(-0.101597 0.0644442 0)
(-0.130351 0.0571271 0)
(-0.159746 0.039052 0)
(-0.18507 0.00953669 0)
(-0.201559 -0.0292661 0)
(-0.20633 -0.0728559 0)
(-0.199287 -0.116262 0)
(-0.182449 -0.155717 0)
(-0.158555 -0.189173 0)
(-0.130234 -0.215821 0)
(-0.099671 -0.235669 0)
(-0.0686586 -0.249168 0)
(-0.0385718 -0.257092 0)
(-0.0104081 -0.260388 0)
(-6.24185e-05 0.000250721 0)
(-0.000189442 0.00041776 0)
(-0.00039521 0.000778289 0)
(-0.000738742 0.0014184 0)
(-0.00128995 0.00246051 0)
(-0.00213233 0.00405386 0)
(-0.0033624 0.00636379 0)
(-0.00509116 0.00955836 0)
(-0.0074532 0.0137946 0)
(-0.010628 0.0192023 0)
(-0.0148796 0.0258679 0)
(-0.0206146 0.0338053 0)
(-0.0284556 0.0429009 0)
(-0.0393161 0.0528 0)
(-0.0544203 0.0626641 0)
(-0.0750944 0.0707785 0)
(-0.102107 0.0742748 0)
(-0.134736 0.0693539 0)
(-0.169876 0.0522726 0)
(-0.202018 0.0211645 0)
(-0.224817 -0.0222983 0)
(-0.233811 -0.0728605 0)
(-0.228309 -0.124073 0)
(-0.210721 -0.171007 0)
(-0.184411 -0.211105 0)
(-0.152489 -0.243398 0)
(-0.11743 -0.267821 0)
(-0.0813176 -0.284697 0)
(-0.0458685 -0.294767 0)
(-0.0124002 -0.299022 0)
(-5.64951e-05 0.000257438 0)
(-0.000170711 0.000428606 0)
(-0.000355605 0.000798534 0)
(-0.000664345 0.00145535 0)
(-0.00115983 0.0025248 0)
(-0.00191744 0.00416045 0)
(-0.00302483 0.00653313 0)
(-0.00458382 0.00981855 0)
(-0.0067201 0.0141856 0)
(-0.00960525 0.0197845 0)
(-0.0134982 0.0267381 0)
(-0.018808 0.0351231 0)
(-0.0261807 0.0449303 0)
(-0.0366061 0.0559669 0)
(-0.0515161 0.067612 0)
(-0.0726857 0.0783138 0)
(-0.101567 0.0850926 0)
(-0.138207 0.0835131 0)
(-0.179881 0.0684775 0)
(-0.220388 0.0364128 0)
(-0.251403 -0.0120517 0)
(-0.26609 -0.0709345 0)
(-0.262734 -0.131615 0)
(-0.244453 -0.18751 0)
(-0.215526 -0.235541 0)
(-0.179701 -0.274693 0)
(-0.139598 -0.305007 0)
(-0.0974236 -0.326412 0)
(-0.0554342 -0.339585 0)
(-0.0150948 -0.345442 0)
(-5.04666e-05 0.000263492 0)
(-0.000151527 0.000438267 0)
(-0.000315033 0.000816592 0)
(-0.00058813 0.00148831 0)
(-0.0010265 0.00258217 0)
(-0.00169717 0.00425563 0)
(-0.00267852 0.00668457 0)
(-0.0040625 0.0100517 0)
(-0.00596447 0.0145373 0)
(-0.00854535 0.0203113 0)
(-0.0120532 0.0275324 0)
(-0.0168892 0.0363415 0)
(-0.0237041 0.0468394 0)
(-0.0335331 0.0590158 0)
(-0.0479802 0.0725314 0)
(-0.069283 0.0861198 0)
(-0.0996859 0.096841 0)
(-0.140307 0.0997417 0)
(-0.18927 0.0881922 0)
(-0.239998 0.056261 0)
(-0.281828 0.00261347 0)
(-0.304251 -0.0664109 0)
(-0.303649 -0.138751 0)
(-0.284657 -0.205311 0)
(-0.25282 -0.2627 0)
(-0.213022 -0.309851 0)
(-0.167775 -0.348012 0)
(-0.118063 -0.375434 0)
(-0.0688803 -0.393146 0)
(-0.0193187 -0.402695 0)
(-4.43648e-05 0.000268865 0)
(-0.000131941 0.000446718 0)
(-0.000273608 0.000832402 0)
(-0.000510311 0.0015172 0)
(-0.000890344 0.00263246 0)
(-0.00147213 0.00433914 0)
(-0.00232444 0.0068176 0)
(-0.00352869 0.010257 0)
(-0.00518856 0.0148481 0)
(-0.00745155 0.0207795 0)
(-0.0105493 0.0282445 0)
(-0.0148641 0.0374472 0)
(-0.0210313 0.0486008 0)
(-0.0300943 0.061891 0)
(-0.0437704 0.0773222 0)
(-0.0647495 0.0940576 0)
(-0.0961429 0.109392 0)
(-0.140456 0.118104 0)
(-0.19732 0.11197 0)
(-0.260421 0.0819586 0)
(-0.316655 0.023297 0)
(-0.349835 -0.0584343 0)
(-0.352305 -0.145523 0)
(-0.332446 -0.224474 0)
(-0.296913 -0.293111 0)
(-0.252646 -0.348411 0)
(-0.204112 -0.397247 0)
(-0.139782 -0.432779 0)
(-0.0856494 -0.455002 0)
(-0.0254954 -0.477074 0)
(-3.82262e-05 0.000273551 0)
(-0.000112007 0.000453932 0)
(-0.00023144 0.000845931 0)
(-0.000431098 0.00154192 0)
(-0.000751722 0.00267554 0)
(-0.00124293 0.00441073 0)
(-0.00196356 0.00693183 0)
(-0.00298389 0.0104337 0)
(-0.00439467 0.0151166 0)
(-0.00632735 0.0211863 0)
(-0.00899167 0.0288683 0)
(-0.0127404 0.0384274 0)
(-0.0181725 0.0501871 0)
(-0.0262967 0.0645334 0)
(-0.0388591 0.0818674 0)
(-0.0589618 0.101948 0)
(-0.0905962 0.122525 0)
(-0.137948 0.138549 0)
(-0.203001 0.14034 0)
(-0.280815 0.115066 0)
(-0.356407 0.0525064 0)
(-0.405395 -0.0458352 0)
(-0.409844 -0.152774 0)
(-0.388782 -0.244476 0)
(-0.342725 -0.33176 0)
(-0.272801 -0.398325 0)
(-0.174036 -0.446793 0)
(-0.0870258 -0.501992 0)
(-0.0385231 -0.516207 0)
(-0.0116962 -0.561493 0)
(-3.2092e-05 0.000277566 0)
(-9.17763e-05 0.000459894 0)
(-0.000188643 0.000857134 0)
(-0.00035071 0.00156241 0)
(-0.00061102 0.00271127 0)
(-0.0010102 0.00447021 0)
(-0.0015969 0.00702689 0)
(-0.00242969 0.0105811 0)
(-0.00358527 0.0153414 0)
(-0.0051767 0.021529 0)
(-0.00738666 0.0293983 0)
(-0.010528 0.0392698 0)
(-0.0151426 0.0515716 0)
(-0.0221604 0.0668822 0)
(-0.0332397 0.0860317 0)
(-0.0518239 0.109569 0)
(-0.0827087 0.1359 0)
(-0.131946 0.160835 0)
(-0.204884 0.173703 0)
(-0.299638 0.157404 0)
(-0.401139 0.0941621 0)
(-0.475687 -0.0266975 0)
(-0.476079 -0.164743 0)
(-0.441493 -0.267078 0)
(-0.341201 -0.420328 0)
(-0.212659 -0.48464 0)
(-0.13019 -0.580835 0)
(-0.111385 -0.526781 0)
(-0.0384926 -0.53208 0)
(-0.0042507 -0.57341 0)
(-2.60099e-05 0.000280921 0)
(-7.13056e-05 0.000464586 0)
(-0.000145335 0.000865984 0)
(-0.00026937 0.00157862 0)
(-0.00046863 0.00273957 0)
(-0.00077461 0.00451739 0)
(-0.0012255 0.00710247 0)
(-0.00186778 0.0106986 0)
(-0.00276303 0.0155215 0)
(-0.00400388 0.0218053 0)
(-0.00574133 0.0298294 0)
(-0.00823891 0.0399635 0)
(-0.0119613 0.0527294 0)
(-0.0177198 0.0688784 0)
(-0.0269326 0.0896621 0)
(-0.0432803 0.116671 0)
(-0.0721842 0.14903 0)
(-0.121518 0.184451 0)
(-0.201067 0.212148 0)
(-0.314439 0.210884 0)
(-0.449084 0.153057 0)
(-0.570747 0.00296917 0)
(-0.56656 -0.19282 0)
(-0.46825 -0.323531 0)
(-0.418056 -0.499569 0)
(-0.329951 -0.545918 0)
(-0.233103 -0.597707 0)
(-0.158707 -0.629368 0)
(-0.0882719 -0.628339 0)
(-0.0222142 -0.631344 0)
(-2.00321e-05 0.000283651 0)
(-5.06482e-05 0.000467996 0)
(-0.000101633 0.000872461 0)
(-0.0001873 0.00159049 0)
(-0.000324943 0.00276036 0)
(-0.000536791 0.00455216 0)
(-0.000850422 0.00715832 0)
(-0.0012998 0.0107858 0)
(-0.00193061 0.0156558 0)
(-0.00281337 0.0220132 0)
(-0.00406337 0.0301574 0)
(-0.00588654 0.0404988 0)
(-0.00865259 0.0536383 0)
(-0.0130243 0.07047 0)
(-0.0199933 0.0925862 0)
(-0.0333234 0.122997 0)
(-0.0588164 0.161214 0)
(-0.105708 0.208464 0)
(-0.189499 0.255117 0)
(-0.334114 0.27869 0)
(-0.525318 0.223671 0)
(-0.709136 -0.00253273 0)
(-0.849819 -0.173048 0)
(-0.672627 -0.4287 0)
(-0.503027 -0.580961 0)
(-0.346219 -0.660397 0)
(-0.261473 -0.694531 0)
(-0.177915 -0.698141 0)
(-0.0955893 -0.714908 0)
(-0.0253229 -0.715846 0)
(-1.42168e-05 0.000285763 0)
(-2.98563e-05 0.000470075 0)
(-5.76518e-05 0.000876451 0)
(-0.000104718 0.00159782 0)
(-0.000180338 0.00277327 0)
(-0.00029739 0.0045738 0)
(-0.000472688 0.00719306 0)
(-0.000727406 0.01084 0)
(-0.00109073 0.0157392 0)
(-0.00160982 0.0221423 0)
(-0.00236087 0.0303611 0)
(-0.00348557 0.0408341 0)
(-0.00524295 0.0542171 0)
(-0.00813581 0.0715068 0)
(-0.0125281 0.0944142 0)
(-0.0219668 0.127996 0)
(-0.042681 0.170996 0)
(-0.0854661 0.231102 0)
(-0.16992 0.300537 0)
(-0.349868 0.368897 0)
(-0.567878 0.357081 0)
(-0.787679 0.161439 0)
(-1.37039 -0.320483 0)
(-0.97088 -0.712808 0)
(-0.537248 -0.708638 0)
(-0.441518 -0.788199 0)
(-0.297504 -0.795882 0)
(-0.182664 -0.804006 0)
(-0.104652 -0.801985 0)
(-0.0280011 -0.803154 0)
(-1.71525e-05 0.000235252 0)
(-1.99938e-05 0.000386183 0)
(-2.72761e-05 0.000723152 0)
(-3.80518e-05 0.00132688 0)
(-5.42763e-05 0.00232574 0)
(-7.95114e-05 0.00388905 0)
(-0.000118432 0.00622936 0)
(-0.000179107 0.0096071 0)
(-0.000271757 0.0143298 0)
(-0.000414024 0.0207349 0)
(-0.000636653 0.0291902 0)
(-0.00100455 0.04014 0)
(-0.00165371 0.0540971 0)
(-0.00295191 0.0719763 0)
(-0.00449275 0.0953548 0)
(-0.00641321 0.132452 0)
(-0.0235282 0.178891 0)
(-0.0800067 0.254774 0)
(-0.141893 0.349001 0)
(-0.307541 0.448505 0)
(-0.604445 0.482272 0)
(-0.618108 0.213171 0)
(-0.423916 -0.302792 0)
(-0.33468 -0.586184 0)
(-0.50313 -0.785327 0)
(-0.532396 -0.866669 0)
(-0.460602 -0.90658 0)
(-0.381498 -0.908426 0)
(-0.237178 -0.901279 0)
(-0.0713691 -0.895033 0)
(0.00297366 -0.00492316 0)
(0.00808536 -0.00488603 0)
(0.0136867 -0.00480524 0)
(0.0197596 -0.00466921 0)
(0.0262529 -0.00446456 0)
(0.0330661 -0.00417855 0)
(0.040041 -0.00379947 0)
(0.0469426 -0.00332059 0)
(0.0534558 -0.00274275 0)
(0.0591914 -0.00207841 0)
(0.063706 -0.00135534 0)
(0.0665538 -0.000617006 0)
(0.0673598 8.0372e-05 0)
(0.0659071 0.000676677 0)
(0.0622131 0.00112065 0)
(0.0565637 0.00138339 0)
(0.0494806 0.0014663 0)
(0.041627 0.00139926 0)
(0.0336783 0.0012301 0)
(0.026206 0.00100997 0)
(0.0196101 0.000781535 0)
(0.0141026 0.000573418 0)
(0.00973186 0.000400245 0)
(0.00642861 0.000266059 0)
(0.00405086 0.00016829 0)
(0.00242327 0.000101083 0)
(0.00136588 5.75787e-05 0)
(0.000713222 3.12895e-05 0)
(0.000323509 1.69224e-05 0)
(7.65397e-05 1.08692e-05 0)
(0.00301367 -0.0111898 0)
(0.00819418 -0.0111051 0)
(0.0138699 -0.0109212 0)
(0.0200209 -0.0106111 0)
(0.0265941 -0.0101447 0)
(0.0334851 -0.0094925 0)
(0.0405305 -0.00862822 0)
(0.0474889 -0.00753622 0)
(0.054038 -0.00621865 0)
(0.0597811 -0.00470432 0)
(0.0642698 -0.00305678 0)
(0.067057 -0.00137606 0)
(0.0677722 0.000208992 0)
(0.0662096 0.00156094 0)
(0.0624022 0.00256341 0)
(0.0566518 0.003152 0)
(0.0494921 0.0033319 0)
(0.0415905 0.00317297 0)
(0.0336198 0.00278488 0)
(0.0261442 0.00228368 0)
(0.0195557 0.00176558 0)
(0.0140598 0.00129461 0)
(0.00970086 0.000903267 0)
(0.0064076 0.000600282 0)
(0.00403745 0.000379634 0)
(0.00241521 0.000228007 0)
(0.00136133 0.000129871 0)
(0.000710852 7.05757e-05 0)
(0.000322441 3.81715e-05 0)
(7.62886e-05 2.4522e-05 0)
(0.00308508 -0.0175718 0)
(0.0083872 -0.0174376 0)
(0.0141944 -0.0171464 0)
(0.0204843 -0.0166551 0)
(0.0271988 -0.0159167 0)
(0.0342271 -0.0148844 0)
(0.0413964 -0.0135172 0)
(0.0484537 -0.0117911 0)
(0.0550633 -0.00971054 0)
(0.060816 -0.00732261 0)
(0.0652542 -0.00472932 0)
(0.0679291 -0.00209017 0)
(0.068479 0.000390962 0)
(0.0667188 0.00249831 0)
(0.0627094 0.00405156 0)
(0.0567816 0.00495383 0)
(0.0494892 0.00521775 0)
(0.041507 0.0049562 0)
(0.0335015 0.00434197 0)
(0.0260239 0.00355595 0)
(0.0194516 0.00274683 0)
(0.0139787 0.00201302 0)
(0.00964235 0.00140404 0)
(0.00636806 0.000932904 0)
(0.00401227 0.000589929 0)
(0.00240007 0.000354293 0)
(0.00135279 0.000201798 0)
(0.000706401 0.000109664 0)
(0.000320435 5.9313e-05 0)
(7.58165e-05 3.81013e-05 0)
(0.00318925 -0.0241372 0)
(0.00867024 -0.0239504 0)
(0.0146705 -0.0235452 0)
(0.0211636 -0.0228619 0)
(0.0280849 -0.021835 0)
(0.0353135 -0.0204003 0)
(0.0426631 -0.0185019 0)
(0.0498633 -0.016108 0)
(0.0565591 -0.0132273 0)
(0.0623227 -0.00992813 0)
(0.0666836 -0.00635535 0)
(0.069191 -0.00273246 0)
(0.0694973 0.000657682 0)
(0.0674478 0.00351967 0)
(0.0631452 0.00561121 0)
(0.0569617 0.00680775 0)
(0.0494798 0.0071353 0)
(0.0413833 0.0067543 0)
(0.0333296 0.0059028 0)
(0.0258503 0.0048261 0)
(0.0193018 0.00372389 0)
(0.0138622 0.0027272 0)
(0.00955846 0.00190142 0)
(0.00631141 0.00126311 0)
(0.00397619 0.000798649 0)
(0.00237839 0.000479617 0)
(0.00134056 0.000273175 0)
(0.000700028 0.000148453 0)
(0.000317562 8.02878e-05 0)
(7.51403e-05 5.15828e-05 0)
(0.00332928 -0.030958 0)
(0.00905006 -0.0307144 0)
(0.015309 -0.0301859 0)
(0.022074 -0.0292946 0)
(0.0292718 -0.0279562 0)
(0.0367675 -0.0260876 0)
(0.0443563 -0.0236182 0)
(0.0517443 -0.0205092 0)
(0.0585507 -0.0167764 0)
(0.0643231 -0.0125137 0)
(0.0685743 -0.0079147 0)
(0.0708521 -0.00327369 0)
(0.0708295 0.00104248 0)
(0.0683937 0.00465704 0)
(0.0637035 0.00726872 0)
(0.0571854 0.00873234 0)
(0.0494583 0.0090954 0)
(0.0412159 0.00857212 0)
(0.0331022 0.00746833 0)
(0.0256225 0.0060932 0)
(0.0191063 0.00469515 0)
(0.0137105 0.00343563 0)
(0.00944935 0.00239419 0)
(0.00623778 0.00159004 0)
(0.00392931 0.00100523 0)
(0.00235022 0.000603645 0)
(0.00132467 0.000343807 0)
(0.00069175 0.00018684 0)
(0.00031383 0.000101049 0)
(7.42619e-05 6.49232e-05 0)
(0.00350826 -0.0381121 0)
(0.00953551 -0.0378059 0)
(0.0161247 -0.0371416 0)
(0.0232367 -0.0360215 0)
(0.0307863 -0.0343406 0)
(0.0386206 -0.0319964 0)
(0.0465108 -0.0289032 0)
(0.0541327 -0.0250169 0)
(0.0610723 -0.0203636 0)
(0.0668465 -0.015069 0)
(0.0709477 -0.00938372 0)
(0.0729246 -0.00368105 0)
(0.0724783 0.00158152 0)
(0.069552 0.00594408 0)
(0.0643759 0.00905106 0)
(0.0574437 0.010746 0)
(0.0494173 0.0111084 0)
(0.041 0.0104139 0)
(0.0328168 0.00903918 0)
(0.0253398 0.00735608 0)
(0.0188649 0.00565896 0)
(0.0135236 0.00413675 0)
(0.00931522 0.00288113 0)
(0.00614734 0.00191285 0)
(0.00387174 0.00120913 0)
(0.00231565 0.000726034 0)
(0.00130517 0.000413502 0)
(0.000681588 0.000224712 0)
(0.00030925 0.000121537 0)
(7.31835e-05 7.80862e-05 0)
(0.00373073 -0.0456858 0)
(0.0101382 -0.0453092 0)
(0.0171371 -0.0444926 0)
(0.0246789 -0.0431168 0)
(0.032663 -0.0410538 0)
(0.0409138 -0.0381805 0)
(0.0491717 -0.034396 0)
(0.0570748 -0.0296529 0)
(0.0641677 -0.0239926 0)
(0.0699299 -0.0175804 0)
(0.0738309 -0.0107341 0)
(0.0754231 -0.00391725 0)
(0.0744466 0.00231444 0)
(0.0709164 0.00741664 0)
(0.0651514 0.0109859 0)
(0.0577252 0.0128668 0)
(0.0493479 0.0131839 0)
(0.0407298 0.0122834 0)
(0.0324705 0.0106155 0)
(0.0250009 0.00861338 0)
(0.0185773 0.00661355 0)
(0.0133019 0.00482896 0)
(0.00915633 0.00336102 0)
(0.0060403 0.00223068 0)
(0.00380365 0.00140979 0)
(0.00227475 0.000846448 0)
(0.00128211 0.000482067 0)
(0.000669572 0.000261971 0)
(0.000303834 0.000141689 0)
(7.19083e-05 9.10463e-05 0)
(0.00400196 -0.0537747 0)
(0.0108732 -0.0533186 0)
(0.0183712 -0.0523294 0)
(0.0264356 -0.0506635 0)
(0.0349464 -0.0481685 0)
(0.0436993 -0.0446985 0)
(0.0523965 -0.0401378 0)
(0.0606292 -0.0344387 0)
(0.0678917 -0.027664 0)
(0.0736192 -0.0200289 0)
(0.0772563 -0.0119316 0)
(0.0783644 -0.003939 0)
(0.0767366 0.00328555 0)
(0.0724782 0.00911312 0)
(0.0660159 0.0131016 0)
(0.0580158 0.0151124 0)
(0.049239 0.0153308 0)
(0.0403985 0.0141835 0)
(0.0320597 0.0121971 0)
(0.0246045 0.0098635 0)
(0.0182434 0.00755708 0)
(0.0130455 0.00551068 0)
(0.00897296 0.00383266 0)
(0.00591691 0.0025427 0)
(0.0037252 0.00160666 0)
(0.00222765 0.000964564 0)
(0.00125554 0.000549312 0)
(0.000655734 0.000298512 0)
(0.000297597 0.000161459 0)
(7.04395e-05 0.000103758 0)
(0.00432903 -0.0624884 0)
(0.0117595 -0.0619407 0)
(0.0198583 -0.060753 0)
(0.0285504 -0.0587546 0)
(0.0376918 -0.0557648 0)
(0.047042 -0.0516142 0)
(0.056256 -0.0461722 0)
(0.0648678 -0.0393946 0)
(0.0723112 -0.0313742 0)
(0.0779697 -0.022389 0)
(0.0812621 -0.0129342 0)
(0.0817674 -0.00369645 0)
(0.0793488 0.0045444 0)
(0.0742253 0.0110748 0)
(0.0669519 0.0154274 0)
(0.0582986 0.0174999 0)
(0.049078 0.0175568 0)
(0.0399984 0.016116 0)
(0.0315807 0.0137829 0)
(0.0241493 0.0111045 0)
(0.0178631 0.00848754 0)
(0.0127547 0.00618023 0)
(0.00876549 0.00429481 0)
(0.00577747 0.00284806 0)
(0.0036366 0.00179922 0)
(0.00217446 0.00108006 0)
(0.00122556 0.000615055 0)
(0.000640111 0.000334233 0)
(0.000290557 0.000180786 0)
(6.8781e-05 0.000116193 0)
(0.00472071 -0.0719526 0)
(0.0128204 -0.0712984 0)
(0.0216377 -0.0698802 0)
(0.0310786 -0.067496 0)
(0.0409685 -0.0639339 0)
(0.0510227 -0.0589985 0)
(0.0608381 -0.0525456 0)
(0.069879 -0.0445397 0)
(0.0775073 -0.0351143 0)
(0.0830473 -0.024627 0)
(0.0858927 -0.0136903 0)
(0.0856515 -0.00312965 0)
(0.0822815 0.00614696 0)
(0.0761416 0.0133462 0)
(0.0679376 0.0179928 0)
(0.0585535 0.0200453 0)
(0.0488504 0.0198683 0)
(0.0395207 0.0180819 0)
(0.0310293 0.0153714 0)
(0.0236338 0.0123341 0)
(0.0174361 0.00940286 0)
(0.0124298 0.00683597 0)
(0.00853431 0.00474627 0)
(0.0056223 0.00314596 0)
(0.00353806 0.00198695 0)
(0.00211534 0.00119261 0)
(0.00119222 0.000679119 0)
(0.000622747 0.000369043 0)
(0.000282734 0.000199617 0)
(6.69373e-05 0.000128316 0)
(0.00518795 -0.0823133 0)
(0.0140854 -0.081534 0)
(0.0237581 -0.0798454 0)
(0.0340878 -0.0770094 0)
(0.0448619 -0.0727786 0)
(0.0557408 -0.06693 0)
(0.0662501 -0.0593072 0)
(0.07577 -0.0498905 0)
(0.0835772 -0.038868 0)
(0.0889294 -0.0266981 0)
(0.0911979 -0.0141362 0)
(0.0900377 -0.00216933 0)
(0.0855296 0.00815666 0)
(0.0782057 0.0159753 0)
(0.0689464 0.0208278 0)
(0.0587571 0.0227634 0)
(0.0485397 0.0222699 0)
(0.038956 0.0200807 0)
(0.0304011 0.0169602 0)
(0.0230566 0.0135497 0)
(0.0169625 0.0103008 0)
(0.0120713 0.00747619 0)
(0.00827991 0.00518584 0)
(0.00545179 0.00343559 0)
(0.00342986 0.00216933 0)
(0.00205043 0.00130193 0)
(0.00115564 0.000741322 0)
(0.000603689 0.000402835 0)
(0.000274147 0.000217903 0)
(6.4913e-05 0.000140096 0)
(0.00574442 -0.0937419 0)
(0.0155914 -0.0928141 0)
(0.0262803 -0.0908056 0)
(0.0376624 -0.0874356 0)
(0.0494777 -0.0824169 0)
(0.0613185 -0.0754967 0)
(0.0726231 -0.066509 0)
(0.0826706 -0.0554594 0)
(0.0906372 -0.0426092 0)
(0.0957064 -0.0285437 0)
(0.0972335 -0.014193 0)
(0.0949452 -0.000733015 0)
(0.0890821 0.0106453 0)
(0.0803894 0.0190135 0)
(0.0699463 0.023962 0)
(0.0588825 0.0256668 0)
(0.0481278 0.0247643 0)
(0.0382943 0.0221106 0)
(0.0296917 0.0185462 0)
(0.0224163 0.0147483 0)
(0.0164423 0.0111789 0)
(0.0116796 0.00809915 0)
(0.00800282 0.00561232 0)
(0.00526636 0.00371614 0)
(0.00331228 0.00234586 0)
(0.00197992 0.00140769 0)
(0.00111589 0.000801498 0)
(0.000582989 0.000435529 0)
(0.000264823 0.000235592 0)
(6.27133e-05 0.000151503 0)
(0.00640706 -0.106442 0)
(0.0173842 -0.105337 0)
(0.02928 -0.102946 0)
(0.0419075 -0.0989398 0)
(0.0549469 -0.0929851 0)
(0.0679063 -0.0847976 0)
(0.0801176 -0.0742061 0)
(0.0907379 -0.0612541 0)
(0.098826 -0.046299 0)
(0.103483 -0.0300877 0)
(0.104061 -0.0137631 0)
(0.100391 0.00128142 0)
(0.0929213 0.0136945 0)
(0.0826565 0.0225158 0)
(0.0708985 0.0274247 0)
(0.058899 0.0287661 0)
(0.0475948 0.0273519 0)
(0.037525 0.024168 0)
(0.0288966 0.0201254 0)
(0.0217118 0.0159265 0)
(0.0158756 0.0120348 0)
(0.0112554 0.00870311 0)
(0.00770362 0.00602453 0)
(0.00506645 0.00398687 0)
(0.00318561 0.00251606 0)
(0.00190398 0.00150963 0)
(0.00107311 0.000859487 0)
(0.000560704 0.000467028 0)
(0.000254786 0.000252635 0)
(6.03436e-05 0.000162504 0)
(0.00719743 -0.120657 0)
(0.0195214 -0.119339 0)
(0.0328522 -0.116487 0)
(0.0469539 -0.111716 0)
(0.0614317 -0.104641 0)
(0.0756895 -0.0949442 0)
(0.0889292 -0.0824558 0)
(0.100162 -0.0672736 0)
(0.108308 -0.0498816 0)
(0.112382 -0.0312307 0)
(0.111747 -0.0127255 0)
(0.106386 0.00398657 0)
(0.0970188 0.0173963 0)
(0.0849602 0.0265399 0)
(0.0717572 0.0312428 0)
(0.058772 0.0320683 0)
(0.0469195 0.0300301 0)
(0.0366373 0.0262476 0)
(0.0280114 0.0216928 0)
(0.0209418 0.0170807 0)
(0.0152628 0.0128659 0)
(0.0107993 0.0092863 0)
(0.00738297 0.0064213 0)
(0.00485256 0.00424701 0)
(0.00305019 0.00267947 0)
(0.00182283 0.00160744 0)
(0.00102739 0.000915127 0)
(0.000536894 0.000497247 0)
(0.000244064 0.000268985 0)
(5.78096e-05 0.000173075 0)
(0.00814289 -0.136681 0)
(0.0220756 -0.135102 0)
(0.0371162 -0.131691 0)
(0.0529652 -0.125993 0)
(0.0691332 -0.117567 0)
(0.0848957 -0.106061 0)
(0.0992961 -0.0913163 0)
(0.11117 -0.0735058 0)
(0.119278 -0.0532786 0)
(0.12254 -0.0318446 0)
(0.120358 -0.0109314 0)
(0.112934 0.00752362 0)
(0.101332 0.0218536 0)
(0.0872412 0.0311454 0)
(0.0724681 0.0354407 0)
(0.0584629 0.0355763 0)
(0.0460794 0.0327932 0)
(0.0356203 0.0283423 0)
(0.027032 0.0232424 0)
(0.0201057 0.0182066 0)
(0.0146044 0.0136692 0)
(0.0103122 0.00984691 0)
(0.00704162 0.00680146 0)
(0.00462524 0.00449582 0)
(0.00290639 0.00283562 0)
(0.00173669 0.00170088 0)
(0.000978862 0.000968257 0)
(0.000511625 0.00052611 0)
(0.000232689 0.000284602 0)
(5.5117e-05 0.000183191 0)
(0.0092783 -0.15487 0)
(0.0251403 -0.152971 0)
(0.0422238 -0.148873 0)
(0.0601476 -0.142043 0)
(0.078303 -0.131976 0)
(0.0958065 -0.11829 0)
(0.11151 -0.100846 0)
(0.124041 -0.0799233 0)
(0.13197 -0.0563824 0)
(0.134118 -0.0317633 0)
(0.129968 -0.00819118 0)
(0.120025 0.0120572 0)
(0.105802 0.0271817 0)
(0.0894251 0.0363931 0)
(0.072968 0.0400378 0)
(0.0579292 0.039288 0)
(0.045051 0.0356316 0)
(0.0344634 0.0304427 0)
(0.0259548 0.0247675 0)
(0.019203 0.0192997 0)
(0.0139009 0.0144421 0)
(0.009795 0.0103832 0)
(0.00668034 0.0071639 0)
(0.00438507 0.00473262 0)
(0.00275458 0.00298407 0)
(0.00164579 0.00178967 0)
(0.000927665 0.00101874 0)
(0.000484966 0.000553527 0)
(0.00022069 0.000299441 0)
(5.22719e-05 0.000192822 0)
(0.0106493 -0.175665 0)
(0.0288359 -0.173368 0)
(0.0483701 -0.168418 0)
(0.0687631 -0.160193 0)
(0.0892557 -0.148118 0)
(0.10877 -0.131788 0)
(0.125929 -0.111103 0)
(0.139109 -0.0864775 0)
(0.146658 -0.0590473 0)
(0.147295 -0.0307733 0)
(0.140644 -0.00427827 0)
(0.127629 0.0177824 0)
(0.110344 0.0335072 0)
(0.0914195 0.0423419 0)
(0.073184 0.0450474 0)
(0.0571253 0.0431948 0)
(0.0438108 0.0385319 0)
(0.0331566 0.0325375 0)
(0.0247765 0.0262603 0)
(0.0182335 0.0203552 0)
(0.0131535 0.0151816 0)
(0.00924866 0.0108933 0)
(0.0063 0.00750753 0)
(0.00413265 0.00495671 0)
(0.00259517 0.00312443 0)
(0.00155038 0.00187358 0)
(0.000873933 0.00106644 0)
(0.000456988 0.000579429 0)
(0.000208102 0.000313454 0)
(4.92799e-05 0.000201947 0)
(0.0123167 -0.199614 0)
(0.0333221 -0.196812 0)
(0.0558092 -0.19079 0)
(0.0791466 -0.180825 0)
(0.102385 -0.166278 0)
(0.124214 -0.146728 0)
(0.142986 -0.122136 0)
(0.156779 -0.0930913 0)
(0.163672 -0.0610767 0)
(0.162275 -0.0285973 0)
(0.152443 0.00110428 0)
(0.135688 0.0249281 0)
(0.114844 0.0409664 0)
(0.0931105 0.0490453 0)
(0.0730332 0.0504727 0)
(0.0560026 0.0472802 0)
(0.0423354 0.0414756 0)
(0.0316908 0.0346129 0)
(0.0234952 0.0277121 0)
(0.0171977 0.021368 0)
(0.0123631 0.0158846 0)
(0.00867445 0.0113755 0)
(0.00590155 0.00783127 0)
(0.00386866 0.00516742 0)
(0.00242859 0.00325628 0)
(0.00145071 0.00195238 0)
(0.000817817 0.00111121 0)
(0.000427772 0.000603745 0)
(0.00019496 0.000326608 0)
(4.61468e-05 0.00021055 0)
(0.0143646 -0.227411 0)
(0.0388168 -0.223956 0)
(0.0648813 -0.216561 0)
(0.0917334 -0.2044 0)
(0.118189 -0.186782 0)
(0.142667 -0.163298 0)
(0.16321 -0.133988 0)
(0.177544 -0.0996528 0)
(0.183407 -0.0622091 0)
(0.179289 -0.0248728 0)
(0.165412 0.00830764 0)
(0.144103 0.0337632 0)
(0.119148 0.0497036 0)
(0.0943604 0.0565484 0)
(0.0724223 0.0563052 0)
(0.0545105 0.0515191 0)
(0.0406023 0.0444398 0)
(0.0300583 0.0366534 0)
(0.0221092 0.0291135 0)
(0.0160964 0.0223327 0)
(0.0115314 0.0165483 0)
(0.00807362 0.0118281 0)
(0.00548597 0.0081341 0)
(0.00359378 0.00536416 0)
(0.00225527 0.00337927 0)
(0.00134705 0.00202583 0)
(0.000759465 0.00115295 0)
(0.000397394 0.000626404 0)
(0.000181299 0.000338871 0)
(4.28774e-05 0.000218613 0)
(0.016916 -0.259957 0)
(0.0456333 -0.255627 0)
(0.0760545 -0.246426 0)
(0.107094 -0.231446 0)
(0.137289 -0.20999 0)
(0.164768 -0.181695 0)
(0.187241 -0.146692 0)
(0.202003 -0.106008 0)
(0.20634 -0.0620971 0)
(0.198595 -0.0191306 0)
(0.179549 0.0177873 0)
(0.152716 0.0445978 0)
(0.123053 0.0598642 0)
(0.0950045 0.0648798 0)
(0.0712492 0.06252 0)
(0.0525981 0.0558754 0)
(0.0385915 0.0473962 0)
(0.0282533 0.038641 0)
(0.0206184 0.0304543 0)
(0.0149312 0.0232437 0)
(0.0106599 0.0171695 0)
(0.00744764 0.0122494 0)
(0.00505433 0.00841506 0)
(0.00330873 0.00554635 0)
(0.00207569 0.00349305 0)
(0.00123969 0.00209375 0)
(0.000699038 0.00119152 0)
(0.000365937 0.000647349 0)
(0.000167158 0.000350198 0)
(3.94763e-05 0.000226122 0)
(0.0201688 -0.298466 0)
(0.0542533 -0.292888 0)
(0.0899966 -0.281215 0)
(0.125988 -0.26255 0)
(0.160455 -0.23627 0)
(0.191278 -0.202117 0)
(0.215837 -0.160271 0)
(0.230888 -0.111957 0)
(0.233061 -0.0602836 0)
(0.220472 -0.0107538 0)
(0.194812 0.0301038 0)
(0.161286 0.0577839 0)
(0.126296 0.0715852 0)
(0.0948495 0.0740434 0)
(0.0694043 0.0690715 0)
(0.050216 0.0603013 0)
(0.0362861 0.0503112 0)
(0.0262724 0.0405561 0)
(0.0190238 0.0317239 0)
(0.0137042 0.0240955 0)
(0.00975069 0.0177453 0)
(0.00679813 0.0126378 0)
(0.0046078 0.00867319 0)
(0.00301431 0.00571342 0)
(0.00189035 0.00359728 0)
(0.00112893 0.00215593 0)
(0.000636703 0.00122684 0)
(0.00033349 0.000666516 0)
(0.000152577 0.000360556 0)
(3.59467e-05 0.000233071 0)
(0.0245052 -0.344711 0)
(0.0655186 -0.337108 0)
(0.107687 -0.321887 0)
(0.149442 -0.298312 0)
(0.188618 -0.265945 0)
(0.223068 -0.224757 0)
(0.249892 -0.174752 0)
(0.265105 -0.117273 0)
(0.264326 -0.0561478 0)
(0.245238 0.0010977 0)
(0.211059 0.0459654 0)
(0.16946 0.0737128 0)
(0.128539 0.0849816 0)
(0.0936732 0.0840092 0)
(0.0667733 0.0758902 0)
(0.0473187 0.0647362 0)
(0.0336733 0.0531464 0)
(0.0241146 0.0423774 0)
(0.017328 0.0329111 0)
(0.0124183 0.0248824 0)
(0.00880618 0.0182729 0)
(0.00612679 0.0129917 0)
(0.00414756 0.00890763 0)
(0.0027113 0.00586488 0)
(0.00169974 0.00369168 0)
(0.00101506 0.0022122 0)
(0.000572631 0.00125878 0)
(0.000300141 0.000683852 0)
(0.000137596 0.00036992 0)
(3.22907e-05 0.000239451 0)
(0.030959 -0.401753 0)
(0.0811668 -0.389763 0)
(0.130349 -0.369414 0)
(0.17893 -0.339216 0)
(0.222776 -0.299148 0)
(0.261061 -0.249845 0)
(0.290414 -0.190195 0)
(0.30579 -0.12174 0)
(0.301136 -0.0488681 0)
(0.273203 0.0175995 0)
(0.227987 0.0662532 0)
(0.176729 0.0927993 0)
(0.129361 0.100123 0)
(0.0912279 0.0946994 0)
(0.0632422 0.0828775 0)
(0.0438677 0.0691061 0)
(0.0307465 0.0558589 0)
(0.0217824 0.0440827 0)
(0.0155348 0.0340049 0)
(0.0110768 0.0255988 0)
(0.00782892 0.0187493 0)
(0.00543548 0.0133096 0)
(0.00367488 0.0091176 0)
(0.00240051 0.00600027 0)
(0.00150437 0.00377596 0)
(0.000898387 0.00226241 0)
(0.000506993 0.00128728 0)
(0.000265978 0.000699316 0)
(0.000122256 0.00037826 0)
(2.85085e-05 0.000245273 0)
(0.0413635 -0.475881 0)
(0.0996545 -0.450336 0)
(0.155077 -0.425396 0)
(0.215335 -0.384998 0)
(0.263012 -0.335525 0)
(0.306143 -0.277946 0)
(0.338444 -0.206658 0)
(0.354384 -0.125341 0)
(0.344915 -0.0372585 0)
(0.304623 0.040353 0)
(0.245033 0.0920472 0)
(0.182378 0.115447 0)
(0.128245 0.117002 0)
(0.0872481 0.105972 0)
(0.0587039 0.0899018 0)
(0.0398357 0.0733225 0)
(0.0275064 0.0584019 0)
(0.0192817 0.045649 0)
(0.01365 0.0349941 0)
(0.00968418 0.0262395 0)
(0.00682193 0.0191721 0)
(0.00472624 0.0135903 0)
(0.0031911 0.00930234 0)
(0.00208284 0.00611916 0)
(0.0013048 0.00384987 0)
(0.000779251 0.00230642 0)
(0.000439974 0.00131225 0)
(0.000231099 0.000712854 0)
(0.000106599 0.000385552 0)
(2.45988e-05 0.000250547 0)
(0.0271269 -0.554906 0)
(0.0547255 -0.509036 0)
(0.114576 -0.507289 0)
(0.192979 -0.444373 0)
(0.288494 -0.379296 0)
(0.357147 -0.312586 0)
(0.394399 -0.223735 0)
(0.412792 -0.128904 0)
(0.397919 -0.0194973 0)
(0.339528 0.0717415 0)
(0.26122 0.124627 0)
(0.185427 0.141994 0)
(0.124581 0.135489 0)
(0.0814648 0.117608 0)
(0.0530644 0.0967981 0)
(0.0352098 0.0772844 0)
(0.0239619 0.0607271 0)
(0.0166222 0.0470536 0)
(0.0116807 0.035868 0)
(0.00824511 0.0267995 0)
(0.00578835 0.0195387 0)
(0.00400112 0.0138324 0)
(0.00269758 0.00946122 0)
(0.00175915 0.0062212 0)
(0.00110156 0.00391323 0)
(0.000657968 0.00234411 0)
(0.000371753 0.00133362 0)
(0.000195596 0.00072444 0)
(9.0668e-05 0.000391772 0)
(2.05572e-05 0.000255284 0)
(0.00355068 -0.558914 0)
(0.0517483 -0.518043 0)
(0.11842 -0.503325 0)
(0.146828 -0.6126 0)
(0.227728 -0.460664 0)
(0.378007 -0.382107 0)
(0.449151 -0.242192 0)
(0.483909 -0.136401 0)
(0.464026 0.00814047 0)
(0.377219 0.115167 0)
(0.27494 0.165393 0)
(0.184578 0.172609 0)
(0.117672 0.15528 0)
(0.0736314 0.129293 0)
(0.0462521 0.103367 0)
(0.0299982 0.0808786 0)
(0.020132 0.0627853 0)
(0.0138173 0.0482743 0)
(0.00963563 0.0366168 0)
(0.00676522 0.027274 0)
(0.00473171 0.0198471 0)
(0.00326237 0.014035 0)
(0.00219575 0.00959366 0)
(0.00143034 0.00630606 0)
(0.000895223 0.00396585 0)
(0.000534876 0.00237537 0)
(0.000302517 0.00135132 0)
(0.000159567 0.000734035 0)
(7.45061e-05 0.000396905 0)
(1.63749e-05 0.000259498 0)
(0.0381627 -0.631755 0)
(0.105519 -0.624881 0)
(0.186964 -0.626128 0)
(0.262943 -0.619738 0)
(0.36783 -0.534721 0)
(0.422822 -0.444374 0)
(0.508773 -0.294091 0)
(0.582288 -0.158604 0)
(0.549567 0.0518264 0)
(0.415501 0.174521 0)
(0.283798 0.215791 0)
(0.178183 0.207132 0)
(0.106769 0.17583 0)
(0.0635672 0.140604 0)
(0.0382222 0.109376 0)
(0.0242361 0.0839829 0)
(0.0160458 0.0645301 0)
(0.0108844 0.0492907 0)
(0.00752535 0.0372311 0)
(0.00525073 0.027659 0)
(0.00365578 0.0200953 0)
(0.00251235 0.014197 0)
(0.00168711 0.00969917 0)
(0.00109736 0.00637349 0)
(0.000686359 0.00400757 0)
(0.000410324 0.00240012 0)
(0.000232458 0.00136533 0)
(0.000123113 0.000741617 0)
(5.81577e-05 0.000400933 0)
(1.20367e-05 0.000263195 0)
(0.0419747 -0.715055 0)
(0.114637 -0.714709 0)
(0.188907 -0.72053 0)
(0.287178 -0.687444 0)
(0.396595 -0.608709 0)
(0.528724 -0.539959 0)
(0.725861 -0.429619 0)
(0.812693 -0.124182 0)
(0.701129 0.0521843 0)
(0.452801 0.243699 0)
(0.291704 0.279191 0)
(0.164376 0.244716 0)
(0.0911183 0.196247 0)
(0.0512328 0.150992 0)
(0.0289484 0.11456 0)
(0.0179936 0.0864705 0)
(0.011742 0.06592 0)
(0.00784445 0.0500842 0)
(0.0053615 0.0377031 0)
(0.00370834 0.0279509 0)
(0.00256447 0.0202816 0)
(0.00175345 0.0143177 0)
(0.00117317 0.00977734 0)
(0.000761151 0.00642326 0)
(0.000475554 0.0040383 0)
(0.000284654 0.00241829 0)
(0.000161767 0.00137559 0)
(8.63324e-05 0.000747173 0)
(4.16659e-05 0.000403845 0)
(7.52039e-06 0.0002664 0)
(0.0424946 -0.802525 0)
(0.120803 -0.800415 0)
(0.213126 -0.799498 0)
(0.320709 -0.785979 0)
(0.447329 -0.776845 0)
(0.604141 -0.714815 0)
(0.897009 -0.543533 0)
(1.11628 0.0393121 0)
(0.633996 0.196876 0)
(0.502356 0.358986 0)
(0.304645 0.350642 0)
(0.145088 0.283285 0)
(0.0711471 0.214975 0)
(0.0369156 0.159314 0)
(0.0183804 0.118296 0)
(0.0113839 0.0880465 0)
(0.00726561 0.0668242 0)
(0.00472043 0.0505856 0)
(0.0031565 0.0379976 0)
(0.00214497 0.028132 0)
(0.00146179 0.0203972 0)
(0.000988127 0.0143925 0)
(0.000655445 0.00982589 0)
(0.000422662 0.0064542 0)
(0.00026339 0.00405743 0)
(0.000158209 0.00242957 0)
(9.06375e-05 0.00138193 0)
(4.93249e-05 0.000750606 0)
(2.50733e-05 0.000405597 0)
(2.79596e-06 0.000269062 0)
(0.106211 -0.894665 0)
(0.274825 -0.900276 0)
(0.401189 -0.917383 0)
(0.477391 -0.912109 0)
(0.552602 -0.860665 0)
(0.452214 -0.74481 0)
(0.350686 -0.498483 0)
(0.652438 -0.298102 0)
(0.634565 0.324713 0)
(0.50118 0.467916 0)
(0.242237 0.431473 0)
(0.127919 0.323084 0)
(0.0602284 0.234138 0)
(0.0172402 0.166693 0)
(0.00465891 0.120813 0)
(0.0043923 0.0889002 0)
(0.0025144 0.0671372 0)
(0.00145179 0.0503263 0)
(0.000891457 0.0371637 0)
(0.000569604 0.0268789 0)
(0.000371095 0.0189687 0)
(0.000245047 0.0130133 0)
(0.000161652 0.00865482 0)
(0.000107295 0.00556161 0)
(7.29536e-05 0.00343681 0)
(5.0061e-05 0.00203189 0)
(3.53869e-05 0.00114547 0)
(2.50008e-05 0.000618638 0)
(1.82413e-05 0.000332962 0)
(6.41267e-06 0.000230372 0)
(-0.00253072 0.000285505 0)
(-0.00282232 0.00047989 0)
(-0.0033969 0.000889763 0)
(-0.00416762 0.00161669 0)
(-0.00515689 0.00280329 0)
(-0.00643332 0.00462331 0)
(-0.00806568 0.00727678 0)
(-0.010126 0.0109763 0)
(-0.0122211 0.0159035 0)
(-0.0135853 0.0224353 0)
(-0.0156139 0.0310372 0)
(-0.0200265 0.0421306 0)
(-0.0131924 0.0549208 0)
(-0.0111757 0.0706918 0)
(-0.0607177 0.0911616 0)
(-0.044588 0.126879 0)
(0.0555933 0.179632 0)
(-0.0411721 0.257247 0)
(-0.0725109 0.378035 0)
(-0.281039 0.519007 0)
(-0.530112 0.553352 0)
(-0.699843 0.261468 0)
(-0.401254 -0.456672 0)
(-0.157013 -0.595082 0)
(-0.202564 -0.714645 0)
(-0.345503 -0.853775 0)
(-0.407402 -0.920885 0)
(-0.380778 -0.969594 0)
(-0.269357 -1.03914 0)
(-0.083002 -1.07611 0)
(-0.00433228 0.000284209 0)
(-0.00495636 0.000526315 0)
(-0.00612181 0.000953116 0)
(-0.0077635 0.00169823 0)
(-0.0099437 0.00290738 0)
(-0.0128136 0.00475126 0)
(-0.0165358 0.00743584 0)
(-0.0214036 0.0111946 0)
(-0.0280997 0.0161628 0)
(-0.0367976 0.0227464 0)
(-0.0493767 0.0315933 0)
(-0.0725899 0.0433452 0)
(-0.126279 0.0599808 0)
(-0.351662 0.142108 0)
(-1.43289 0.0339379 0)
(-1.7179 -0.00298863 0)
(-0.466247 0.156555 0)
(-0.37576 0.23449 0)
(0.0165647 0.410716 0)
(-0.23214 0.602933 0)
(-0.458398 0.5927 0)
(-0.730027 0.179199 0)
(-0.290295 -0.533885 0)
(-0.0916921 -0.6452 0)
(0.00316582 -0.67898 0)
(-0.0713202 -0.802267 0)
(-0.141437 -0.900976 0)
(-0.154496 -1.01324 0)
(-0.105779 -1.07735 0)
(-0.0236562 -1.18713 0)
(-0.00492064 0.000286814 0)
(-0.00566204 0.000595767 0)
(-0.00700862 0.0010502 0)
(-0.00893214 0.00182972 0)
(-0.0115104 0.00308657 0)
(-0.0149228 0.00499346 0)
(-0.0193946 0.00776996 0)
(-0.0253013 0.0116969 0)
(-0.0335761 0.0168798 0)
(-0.0446795 0.023862 0)
(-0.0614238 0.0337597 0)
(-0.0926337 0.0481802 0)
(-0.164916 0.0744291 0)
(-0.424775 0.231537 0)
(-1.95017 0.266832 0)
(-2.02257 -0.349695 0)
(-0.986367 0.0643791 0)
(-0.541341 0.171513 0)
(-0.321902 0.335575 0)
(-0.189809 0.690085 0)
(-0.571898 0.651312 0)
(-0.229871 0.0923906 0)
(-0.410578 -0.578216 0)
(-0.0908849 -0.719929 0)
(0.0651535 -0.710251 0)
(0.117568 -0.773212 0)
(0.0933353 -0.885518 0)
(0.0739375 -1.00858 0)
(0.0543105 -1.072 0)
(0.00983616 -1.21077 0)
(-0.00506703 0.000292226 0)
(-0.00582476 0.000671994 0)
(-0.00721127 0.00115833 0)
(-0.00921278 0.00197973 0)
(-0.0118929 0.00329551 0)
(-0.0154087 0.00528478 0)
(-0.0200168 0.00817759 0)
(-0.0260831 0.0123083 0)
(-0.0345494 0.017764 0)
(-0.0460057 0.0252408 0)
(-0.0635533 0.0364133 0)
(-0.0960084 0.054119 0)
(-0.169328 0.0917988 0)
(-0.384177 0.296645 0)
(-1.30258 0.600443 0)
(-1.20141 -0.572996 0)
(-0.725026 -0.0175846 0)
(-0.645991 0.116994 0)
(-0.452144 0.146024 0)
(-0.177316 0.794943 0)
(-0.650981 0.736657 0)
(-0.652772 0.0923349 0)
(-0.366328 -0.705543 0)
(-0.0954783 -0.805696 0)
(0.0634173 -0.776273 0)
(0.16795 -0.793322 0)
(0.197199 -0.880623 0)
(0.185708 -0.983901 0)
(0.133626 -1.05641 0)
(0.0454526 -1.13111 0)
(-0.00511017 0.000299415 0)
(-0.00585697 0.000746486 0)
(-0.00725455 0.00126769 0)
(-0.00928793 0.00213575 0)
(-0.0120001 0.00351695 0)
(-0.0155078 0.00560166 0)
(-0.0200749 0.00862301 0)
(-0.0260298 0.0129685 0)
(-0.0342252 0.0187382 0)
(-0.0454029 0.0267738 0)
(-0.0626617 0.0393 0)
(-0.0938425 0.0604253 0)
(-0.160448 0.108933 0)
(-0.304285 0.332104 0)
(-0.329007 0.798655 0)
(-0.305655 -0.627563 0)
(-0.473536 -0.050605 0)
(-0.498965 0.126457 0)
(-0.482286 0.178869 0)
(-0.48087 0.822337 0)
(-0.628037 0.809379 0)
(-1.08555 0.571553 0)
(-0.398891 -0.983224 0)
(-0.0813415 -0.902924 0)
(0.0655551 -0.842982 0)
(0.156302 -0.836596 0)
(0.19836 -0.88885 0)
(0.193688 -0.96148 0)
(0.142536 -1.00401 0)
(0.0473704 -1.02603 0)
(-0.00513145 0.000308466 0)
(-0.0058664 0.000817038 0)
(-0.00727079 0.00137665 0)
(-0.00932065 0.00229579 0)
(-0.0120429 0.00374778 0)
(-0.0155178 0.0059377 0)
(-0.0199949 0.00909514 0)
(-0.0257673 0.0136559 0)
(-0.0335658 0.0197691 0)
(-0.0442834 0.0284104 0)
(-0.0608137 0.0423048 0)
(-0.089645 0.0667224 0)
(-0.14583 0.123971 0)
(-0.221592 0.340575 0)
(0.265988 0.752569 0)
(0.239618 -0.476733 0)
(-0.337428 -0.0353666 0)
(-0.437062 0.149934 0)
(-0.277676 0.115152 0)
(-0.670356 0.699596 0)
(-0.653839 0.862721 0)
(-1.66776 0.396603 0)
(-0.367669 -1.1979 0)
(-0.0291724 -1.002 0)
(0.0845725 -0.898947 0)
(0.142801 -0.872579 0)
(0.166109 -0.897651 0)
(0.15164 -0.939037 0)
(0.10603 -0.945251 0)
(0.0344371 -0.92993 0)
(-0.0051414 0.00032009 0)
(-0.00586762 0.000884305 0)
(-0.00727664 0.00148671 0)
(-0.00933178 0.0024617 0)
(-0.0120453 0.00398988 0)
(-0.0154737 0.00629245 0)
(-0.0198331 0.00959192 0)
(-0.0253853 0.0143662 0)
(-0.0327324 0.0208397 0)
(-0.0428824 0.030116 0)
(-0.0583555 0.0453436 0)
(-0.0840634 0.0727216 0)
(-0.127869 0.135765 0)
(-0.150079 0.329374 0)
(0.302011 0.563338 0)
(0.30691 -0.233282 0)
(-0.247732 0.0197196 0)
(-0.43917 0.19225 0)
(-1.3759 0.115721 0)
(-0.521211 0.689014 0)
(-0.807835 0.986784 0)
(-0.467231 -0.410718 0)
(-0.077045 -1.45548 0)
(0.0733886 -1.07385 0)
(0.122977 -0.93376 0)
(0.141925 -0.889427 0)
(0.138324 -0.892769 0)
(0.107134 -0.907357 0)
(0.0636663 -0.896864 0)
(0.0185217 -0.864865 0)
(-0.0051408 0.000335124 0)
(-0.00586029 0.000949916 0)
(-0.00727109 0.00159996 0)
(-0.00932198 0.00263596 0)
(-0.0120073 0.00424541 0)
(-0.0153741 0.00666512 0)
(-0.0195906 0.010111 0)
(-0.0248858 0.0150959 0)
(-0.0317377 0.0219339 0)
(-0.0412025 0.0318531 0)
(-0.0553024 0.0483232 0)
(-0.0772078 0.078132 0)
(-0.107922 0.143671 0)
(-0.0933257 0.306321 0)
(0.232373 0.417675 0)
(0.231236 -0.0500053 0)
(-0.173345 0.0940853 0)
(-0.455818 0.275276 0)
(-0.637572 0.264467 0)
(-0.949853 0.883282 0)
(-0.274621 1.39099 0)
(0.699627 -0.747716 0)
(0.323821 -1.45468 0)
(0.209277 -1.07828 0)
(0.176238 -0.935825 0)
(0.153967 -0.882773 0)
(0.125174 -0.869678 0)
(0.0826349 -0.866526 0)
(0.0384307 -0.854064 0)
(0.00888539 -0.83066 0)
(-0.00512969 0.000354191 0)
(-0.00584333 0.00101587 0)
(-0.00725264 0.00171847 0)
(-0.0092897 0.0028208 0)
(-0.0119287 0.00451562 0)
(-0.0152167 0.00705377 0)
(-0.019264 0.0106483 0)
(-0.0242646 0.015839 0)
(-0.0305788 0.0230332 0)
(-0.0392241 0.033577 0)
(-0.0516444 0.0511331 0)
(-0.0691974 0.0826638 0)
(-0.0872216 0.147511 0)
(-0.0506301 0.277888 0)
(0.178204 0.327307 0)
(0.173721 0.0624849 0)
(-0.0984786 0.170624 0)
(-0.413219 0.485367 0)
(-1.01362 0.409877 0)
(-1.31698 0.838719 0)
(0.193108 0.475499 0)
(1.30778 -0.89248 0)
(0.596479 -1.21401 0)
(0.331022 -1.00539 0)
(0.231501 -0.899806 0)
(0.174564 -0.851731 0)
(0.127287 -0.831326 0)
(0.0805887 -0.819612 0)
(0.037558 -0.81172 0)
(0.00888048 -0.807522 0)
(-0.00510809 0.000377832 0)
(-0.00581598 0.00108458 0)
(-0.00722036 0.00184463 0)
(-0.00923307 0.00301814 0)
(-0.0118107 0.00480098 0)
(-0.0150002 0.00745578 0)
(-0.0188503 0.0111981 0)
(-0.0235181 0.0165864 0)
(-0.0292508 0.0241165 0)
(-0.0369348 0.0352347 0)
(-0.0473925 0.0536503 0)
(-0.0602379 0.0860544 0)
(-0.0668768 0.147509 0)
(-0.019601 0.248564 0)
(0.140544 0.270616 0)
(0.142201 0.129566 0)
(-0.0166425 0.229684 0)
(-0.0699755 0.666296 0)
(-1.3347 0.819145 0)
(0.0659342 0.199832 0)
(0.709905 -0.172568 0)
(1.16751 -0.681147 0)
(0.662378 -0.931629 0)
(0.402289 -0.884467 0)
(0.273932 -0.831678 0)
(0.195949 -0.799769 0)
(0.137813 -0.782175 0)
(0.0899104 -0.77081 0)
(0.0498197 -0.766618 0)
(0.0143231 -0.771097 0)
(-0.00507554 0.000406308 0)
(-0.00577692 0.00115829 0)
(-0.00717211 0.00198098 0)
(-0.00914943 0.00322949 0)
(-0.0116534 0.00510156 0)
(-0.0147226 0.00786859 0)
(-0.0183464 0.0117545 0)
(-0.0226415 0.0173272 0)
(-0.0277441 0.0251604 0)
(-0.0343285 0.0367665 0)
(-0.0425828 0.0557466 0)
(-0.0506022 0.088103 0)
(-0.0477389 0.14418 0)
(0.00269009 0.220825 0)
(0.116546 0.233176 0)
(0.129549 0.165939 0)
(0.0634925 0.25564 0)
(0.166449 0.548375 0)
(0.906757 0.728293 0)
(0.889876 -0.124527 0)
(0.831778 -0.244882 0)
(0.853112 -0.512086 0)
(0.617734 -0.719686 0)
(0.420307 -0.753611 0)
(0.294854 -0.745126 0)
(0.210249 -0.733033 0)
(0.147094 -0.72427 0)
(0.0968411 -0.718985 0)
(0.0551505 -0.716849 0)
(0.0159977 -0.715779 0)
(-0.00503109 0.000439063 0)
(-0.005725 0.00123822 0)
(-0.00710447 0.0021289 0)
(-0.00903586 0.00345473 0)
(-0.0114554 0.00541549 0)
(-0.0143804 0.00828804 0)
(-0.0177498 0.0123092 0)
(-0.0216303 0.0180466 0)
(-0.026049 0.0261356 0)
(-0.0314092 0.0381055 0)
(-0.0372866 0.0572965 0)
(-0.0406144 0.0886895 0)
(-0.0303741 0.138185 0)
(0.0188932 0.195722 0)
(0.103123 0.205963 0)
(0.128763 0.179949 0)
(0.12838 0.249724 0)
(0.274729 0.406172 0)
(0.685019 0.3636 0)
(0.785499 -0.0496212 0)
(0.730544 -0.23732 0)
(0.678547 -0.427845 0)
(0.542015 -0.575367 0)
(0.401923 -0.635326 0)
(0.294194 -0.653812 0)
(0.213309 -0.658283 0)
(0.14996 -0.658815 0)
(0.097783 -0.658679 0)
(0.0527917 -0.658575 0)
(0.0141954 -0.658051 0)
(-0.00497347 0.000475486 0)
(-0.00566023 0.00132548 0)
(-0.00701494 0.00228946 0)
(-0.00889046 0.00369337 0)
(-0.0112144 0.00574053 0)
(-0.0139707 0.00870942 0)
(-0.0170593 0.0128523 0)
(-0.0204828 0.018726 0)
(-0.0241598 0.027006 0)
(-0.028193 0.0391801 0)
(-0.0316074 0.0581875 0)
(-0.0306054 0.0877807 0)
(-0.015058 0.130191 0)
(0.0310536 0.173244 0)
(0.0970842 0.183483 0)
(0.13349 0.177429 0)
(0.171563 0.222202 0)
(0.308868 0.284994 0)
(0.541947 0.204531 0)
(0.637459 -0.0323569 0)
(0.615381 -0.212729 0)
(0.559108 -0.361921 0)
(0.465535 -0.473121 0)
(0.364765 -0.535592 0)
(0.277231 -0.566475 0)
(0.205349 -0.581513 0)
(0.145983 -0.589128 0)
(0.0959022 -0.5932 0)
(0.0526636 -0.595316 0)
(0.0143 -0.59609 0)
(-0.0049016 0.000515439 0)
(-0.00558168 0.00142156 0)
(-0.00690183 0.00246388 0)
(-0.00871113 0.00394548 0)
(-0.0109264 0.0060756 0)
(-0.0134902 0.00912887 0)
(-0.0162721 0.0133736 0)
(-0.0191981 0.0193439 0)
(-0.0220781 0.027729 0)
(-0.0247117 0.0399146 0)
(-0.0256782 0.0583252 0)
(-0.0208891 0.0854233 0)
(-0.00186328 0.120767 0)
(0.0404911 0.152886 0)
(0.0954704 0.162638 0)
(0.138819 0.163374 0)
(0.193747 0.18447 0)
(0.305539 0.193394 0)
(0.446256 0.113245 0)
(0.515329 -0.0429555 0)
(0.508333 -0.188425 0)
(0.463187 -0.307093 0)
(0.394953 -0.395408 0)
(0.320182 -0.452672 0)
(0.250328 -0.486982 0)
(0.189025 -0.507084 0)
(0.135955 -0.518917 0)
(0.0898132 -0.525853 0)
(0.0492673 -0.529641 0)
(0.0131819 -0.531205 0)
(-0.00481495 0.000558414 0)
(-0.00548826 0.00152681 0)
(-0.0067651 0.00265187 0)
(-0.00849746 0.00421015 0)
(-0.010589 0.0064192 0)
(-0.0129387 0.00954297 0)
(-0.0153877 0.0138621 0)
(-0.01778 0.0198768 0)
(-0.0198182 0.0282604 0)
(-0.0210207 0.040237 0)
(-0.0196626 0.0576443 0)
(-0.0117537 0.0817343 0)
(0.0092646 0.110409 0)
(0.0479122 0.134068 0)
(0.0957818 0.14202 0)
(0.14168 0.142302 0)
(0.199328 0.144812 0)
(0.284808 0.126348 0)
(0.373139 0.0542943 0)
(0.418677 -0.0576125 0)
(0.415784 -0.168979 0)
(0.381943 -0.262371 0)
(0.331096 -0.33354 0)
(0.274298 -0.383354 0)
(0.218748 -0.416356 0)
(0.167669 -0.437613 0)
(0.121797 -0.451106 0)
(0.0808935 -0.459459 0)
(0.0443999 -0.464214 0)
(0.0117366 -0.466198 0)
(-0.00471301 0.000603299 0)
(-0.00537817 0.00163996 0)
(-0.00660409 0.00285063 0)
(-0.00824921 0.00448474 0)
(-0.0102011 0.00676801 0)
(-0.0123173 0.00994715 0)
(-0.0144077 0.0143063 0)
(-0.0162369 0.020302 0)
(-0.0174035 0.028559 0)
(-0.0171912 0.0400875 0)
(-0.0137301 0.0561166 0)
(-0.00342938 0.0768718 0)
(0.0184202 0.0994347 0)
(0.0535859 0.116299 0)
(0.0961314 0.121291 0)
(0.140723 0.117992 0)
(0.193393 0.107888 0)
(0.256601 0.0774324 0)
(0.313055 0.0148943 0)
(0.341353 -0.0690038 0)
(0.338245 -0.153378 0)
(0.312611 -0.225988 0)
(0.274113 -0.282983 0)
(0.230328 -0.324859 0)
(0.186166 -0.354278 0)
(0.144236 -0.374322 0)
(0.105563 -0.387652 0)
(0.0704075 -0.39623 0)
(0.0386646 -0.401311 0)
(0.0101003 -0.403508 0)
(-0.00459499 0.000649602 0)
(-0.00524743 0.00175934 0)
(-0.00641585 0.00305607 0)
(-0.00796412 0.00476487 0)
(-0.00976164 0.00711512 0)
(-0.0116279 0.0103318 0)
(-0.0133383 0.0146902 0)
(-0.0145849 0.0205942 0)
(-0.0148735 0.028587 0)
(-0.0133189 0.0394246 0)
(-0.00806145 0.0537574 0)
(0.00390173 0.0710313 0)
(0.0256796 0.0881088 0)
(0.0575214 0.0993199 0)
(0.0952985 0.100769 0)
(0.135831 0.0932977 0)
(0.180232 0.0758104 0)
(0.225895 0.0417806 0)
(0.261991 -0.0113946 0)
(0.278436 -0.0758431 0)
(0.274034 -0.139914 0)
(0.253875 -0.195914 0)
(0.224188 -0.240973 0)
(0.190084 -0.275189 0)
(0.155006 -0.300124 0)
(0.120988 -0.31771 0)
(0.0890246 -0.329778 0)
(0.0595587 -0.337799 0)
(0.0327128 -0.342748 0)
(0.00844473 -0.344961 0)
(-0.00445869 0.000697388 0)
(-0.00509036 0.0018832 0)
(-0.00619512 0.00326396 0)
(-0.00763705 0.00504579 0)
(-0.00926727 0.00745184 0)
(-0.0108704 0.0106845 0)
(-0.0121868 0.0149955 0)
(-0.0128463 0.0207264 0)
(-0.0122802 0.0283097 0)
(-0.009514 0.0382277 0)
(-0.00283243 0.0506237 0)
(0.0101026 0.0644375 0)
(0.0311088 0.0766629 0)
(0.059648 0.0830993 0)
(0.0926719 0.0810447 0)
(0.127594 0.0701301 0)
(0.16303 0.0491927 0)
(0.195299 0.0159861 0)
(0.218014 -0.0285081 0)
(0.226574 -0.0786038 0)
(0.22101 -0.127469 0)
(0.204571 -0.170434 0)
(0.181267 -0.205586 0)
(0.154516 -0.232869 0)
(0.126733 -0.253212 0)
(0.0994561 -0.267867 0)
(0.0735236 -0.278116 0)
(0.0493686 -0.285091 0)
(0.0271597 -0.289556 0)
(0.00694086 -0.291621 0)
(-0.00430038 0.000747063 0)
(-0.00490364 0.00201138 0)
(-0.00593824 0.00347324 0)
(-0.00726476 0.00532388 0)
(-0.00871615 0.00777066 0)
(-0.0100469 0.010992 0)
(-0.0109648 0.0152032 0)
(-0.0110505 0.0206739 0)
(-0.00968763 0.0277026 0)
(-0.00589468 0.0365031 0)
(0.00179997 0.0468117 0)
(0.0150687 0.057309 0)
(0.0347653 0.0653249 0)
(0.0599394 0.067778 0)
(0.0881273 0.0627316 0)
(0.1169 0.0495905 0)
(0.144005 0.0278901 0)
(0.166236 -0.00236128 0)
(0.180031 -0.039063 0)
(0.183495 -0.0781687 0)
(0.177242 -0.115537 0)
(0.163522 -0.148367 0)
(0.144977 -0.17547 0)
(0.123907 -0.196788 0)
(0.102002 -0.212914 0)
(0.080398 -0.224679 0)
(0.0597413 -0.232969 0)
(0.0403489 -0.238583 0)
(0.0222999 -0.242075 0)
(0.00565222 -0.243623 0)
(-0.00411636 0.000798966 0)
(-0.00468524 0.00214297 0)
(-0.00564327 0.00368271 0)
(-0.00684627 0.00559473 0)
(-0.00810925 0.00806539 0)
(-0.0091642 0.0112442 0)
(-0.00968978 0.0152983 0)
(-0.00923578 0.0204174 0)
(-0.00717015 0.0267562 0)
(-0.00257941 0.034285 0)
(0.00571234 0.0424636 0)
(0.0187518 0.0498822 0)
(0.0367254 0.0543277 0)
(0.0584713 0.0535775 0)
(0.0818671 0.0463097 0)
(0.104663 0.0321732 0)
(0.124637 0.0113923 0)
(0.139468 -0.0150215 0)
(0.147306 -0.0449029 0)
(0.147588 -0.0754086 0)
(0.141127 -0.103982 0)
(0.129556 -0.128957 0)
(0.114666 -0.149641 0)
(0.0980222 -0.166033 0)
(0.0807923 -0.178538 0)
(0.0637809 -0.187709 0)
(0.0474547 -0.194114 0)
(0.0320575 -0.198232 0)
(0.017684 -0.200468 0)
(0.00442126 -0.201281 0)
(-0.00390334 0.000852483 0)
(-0.00443227 0.00227589 0)
(-0.00530801 0.00388976 0)
(-0.00638057 0.00585525 0)
(-0.00744941 0.00832899 0)
(-0.00823223 0.0114296 0)
(-0.00838599 0.0152681 0)
(-0.00744929 0.0199472 0)
(-0.00481022 0.0254804 0)
(0.000316666 0.0316354 0)
(0.00879486 0.0377267 0)
(0.0211436 0.0423985 0)
(0.0371013 0.0439127 0)
(0.0554299 0.0407369 0)
(0.0742778 0.0320849 0)
(0.0917007 0.0179699 0)
(0.105894 -0.000941978 0)
(0.115368 -0.0233374 0)
(0.11928 -0.0473668 0)
(0.117686 -0.0710687 0)
(0.1114 -0.0928579 0)
(0.101633 -0.111756 0)
(0.0896261 -0.127391 0)
(0.0764452 -0.139801 0)
(0.0628915 -0.149276 0)
(0.0495324 -0.156188 0)
(0.0367205 -0.160919 0)
(0.0246761 -0.163797 0)
(0.0135214 -0.165168 0)
(0.00332773 -0.165559 0)
(-0.00365759 0.000906219 0)
(-0.00414167 0.00240916 0)
(-0.00492989 0.00409131 0)
(-0.00586684 0.00609884 0)
(-0.00674109 0.00855447 0)
(-0.0072641 0.01154 0)
(-0.0070823 0.015106 0)
(-0.00574336 0.0192658 0)
(-0.00268999 0.0239065 0)
(0.0027064 0.0286632 0)
(0.0109874 0.0327805 0)
(0.0222831 0.0350901 0)
(0.0360533 0.0342996 0)
(0.0510866 0.0294386 0)
(0.0658107 0.0201676 0)
(0.0786708 0.00680267 0)
(0.0883701 -0.00979587 0)
(0.0940554 -0.0283664 0)
(0.0954536 -0.0474655 0)
(0.0928768 -0.0657685 0)
(0.0870476 -0.0822989 0)
(0.078865 -0.0964977 0)
(0.0691989 -0.108187 0)
(0.0587883 -0.117439 0)
(0.0481943 -0.124476 0)
(0.0378242 -0.129569 0)
(0.0279373 -0.133 0)
(0.0186991 -0.135024 0)
(0.0101983 -0.135932 0)
(0.00247092 -0.136158 0)
(-0.00337518 0.000959604 0)
(-0.00381032 0.00253856 0)
(-0.00450613 0.00428407 0)
(-0.00530516 0.00632078 0)
(-0.0059907 0.00873633 0)
(-0.00627635 0.0115707 0)
(-0.0058116 0.0148132 0)
(-0.00417304 0.0183894 0)
(-0.000888022 0.0220884 0)
(0.00450676 0.0254717 0)
(0.0122678 0.0278112 0)
(0.0222521 0.0281728 0)
(0.0337845 0.0256725 0)
(0.0457595 0.019786 0)
(0.0569043 0.010511 0)
(0.0660636 -0.00165374 0)
(0.0724006 -0.015833 0)
(0.075494 -0.030964 0)
(0.0753711 -0.0459841 0)
(0.0724192 -0.06002 0)
(0.0672392 -0.0724822 0)
(0.0604968 -0.0830681 0)
(0.0528056 -0.0917198 0)
(0.0446773 -0.0985324 0)
(0.036499 -0.103693 0)
(0.0285557 -0.107414 0)
(0.0210298 -0.109911 0)
(0.0140364 -0.111372 0)
(0.00763072 -0.112012 0)
(0.00182439 -0.112158 0)
(-0.00305232 0.00101012 0)
(-0.00343486 0.00266323 0)
(-0.00403465 0.00446341 0)
(-0.00469666 0.0065163 0)
(-0.00520626 0.00887126 0)
(-0.00528805 0.0115229 0)
(-0.00460879 0.0143992 0)
(-0.00279249 0.017353 0)
(0.000533396 0.0201027 0)
(0.00566979 0.0222 0)
(0.0126528 0.0230047 0)
(0.0211711 0.0218354 0)
(0.0305252 0.0181605 0)
(0.0397701 0.0117916 0)
(0.0479315 0.00294937 0)
(0.054215 -0.00779771 0)
(0.0581308 -0.0196693 0)
(0.0595332 -0.0318331 0)
(0.0585833 -0.0435443 0)
(0.0556573 -0.0542446 0)
(0.0512338 -0.0635935 0)
(0.0458015 -0.0714447 0)
(0.0397924 -0.077809 0)
(0.0335579 -0.0827899 0)
(0.0273576 -0.0865451 0)
(0.0213773 -0.0892437 0)
(0.0157313 -0.0910504 0)
(0.0104922 -0.0921091 0)
(0.00569558 -0.0925763 0)
(0.00134816 -0.0926838 0)
(-0.00268526 0.00105791 0)
(-0.00301194 0.00277923 0)
(-0.00351371 0.00462627 0)
(-0.00404296 0.00668214 0)
(-0.00439636 0.00895828 0)
(-0.00431848 0.0114023 0)
(-0.00350768 0.0138883 0)
(-0.00164976 0.0162089 0)
(0.00153008 0.0180533 0)
(0.00617873 0.0189932 0)
(0.0121951 0.0185329 0)
(0.0191874 0.0162274 0)
(0.0265104 0.0118295 0)
(0.033406 0.00538582 0)
(0.039173 -0.00276244 0)
(0.0433062 -0.0120594 0)
(0.0455563 -0.0218627 0)
(0.0459298 -0.0315566 0)
(0.0446311 -0.04064 0)
(0.0419836 -0.0487726 0)
(0.038351 -0.0557728 0)
(0.0340842 -0.0615894 0)
(0.0294817 -0.0662691 0)
(0.0247809 -0.0699108 0)
(0.0201542 -0.0726418 0)
(0.0157245 -0.0745911 0)
(0.0115643 -0.0758803 0)
(0.00771425 -0.0766129 0)
(0.00418665 -0.0769082 0)
(0.000981472 -0.0769554 0)
(-0.00227044 0.00110156 0)
(-0.0025385 0.0028836 0)
(-0.00294169 0.00476906 0)
(-0.00334609 0.00681562 0)
(-0.00356926 0.00900068 0)
(-0.00338547 0.011226 0)
(-0.00253781 0.013317 0)
(-0.000781091 0.0150285 0)
(0.00206953 0.0160459 0)
(0.00604772 0.0160027 0)
(0.0109754 0.0145517 0)
(0.0164587 0.0114589 0)
(0.0219549 0.00668989 0)
(0.0268941 0.000437888 0)
(0.0308074 -0.00690586 0)
(0.0333952 -0.0148529 0)
(0.0345607 -0.0228986 0)
(0.0343793 -0.0306081 0)
(0.0330469 -0.0376592 0)
(0.0308195 -0.0438557 0)
(0.0279626 -0.0491148 0)
(0.0247197 -0.0534386 0)
(0.021291 -0.0568894 0)
(0.0178328 -0.0595594 0)
(0.0144565 -0.061553 0)
(0.0112415 -0.0629707 0)
(0.00823588 -0.0639044 0)
(0.00546892 -0.0644312 0)
(0.00295242 -0.0646377 0)
(0.000683122 -0.0646644 0)
(-0.00180462 0.00113909 0)
(-0.0020117 0.00297328 0)
(-0.00231693 0.00488746 0)
(-0.00260734 0.00691736 0)
(-0.00273093 0.00900721 0)
(-0.0025019 0.0110171 0)
(-0.00171832 0.0127373 0)
(-0.000204555 0.0138989 0)
(0.00215373 0.0142088 0)
(0.00531689 0.0133765 0)
(0.00909061 0.0111958 0)
(0.0131337 0.00760153 0)
(0.0170305 0.00270746 0)
(0.020385 -0.00321142 0)
(0.0229027 -0.00977117 0)
(0.0244259 -0.0165572 0)
(0.024938 -0.0231898 0)
(0.0245324 -0.029372 0)
(0.0233705 -0.0349054 0)
(0.0216395 -0.0396874 0)
(0.0195236 -0.0436937 0)
(0.0171857 -0.0469535 0)
(0.0147565 -0.0495332 0)
(0.0123355 -0.0515163 0)
(0.00999051 -0.0529916 0)
(0.00776913 -0.054041 0)
(0.00569887 -0.0547389 0)
(0.00379348 -0.0551478 0)
(0.00205382 -0.0553286 0)
(0.000475907 -0.0553667 0)
(-0.00128518 0.0011694 0)
(-0.00142917 0.00304435 0)
(-0.00163757 0.00497932 0)
(-0.0018262 0.00698876 0)
(-0.00188272 0.00898969 0)
(-0.00167157 0.0108108 0)
(-0.0010517 0.0122143 0)
(9.00341e-05 0.0129245 0)
(0.00181159 0.0126785 0)
(0.00405081 0.0112625 0)
(0.00664206 0.0085855 0)
(0.00933393 0.00470494 0)
(0.0118449 -0.000173446 0)
(0.0139301 -0.00573529 0)
(0.0154177 -0.011626 0)
(0.0162373 -0.0175022 0)
(0.0164045 -0.0230806 0)
(0.0159982 -0.0281605 0)
(0.0151319 -0.0326241 0)
(0.0139293 -0.036427 0)
(0.0125078 -0.0395804 0)
(0.0109689 -0.0421303 0)
(0.00939286 -0.0441438 0)
(0.00783956 -0.045692 0)
(0.00634829 -0.046841 0)
(0.00494346 -0.0476464 0)
(0.00363578 -0.0481561 0)
(0.00242849 -0.0484112 0)
(0.00131932 -0.048469 0)
(0.000306973 -0.0484417 0)
(-0.000710367 0.00119053 0)
(-0.000788871 0.00309347 0)
(-0.000900869 0.00504004 0)
(-0.000998472 0.00703197 0)
(-0.0010178 0.00896577 0)
(-0.000882687 0.0106477 0)
(-0.000516283 0.0118242 0)
(0.000138907 0.012222 0)
(0.00110521 0.011601 0)
(0.00233457 0.00981303 0)
(0.00372461 0.00684286 0)
(0.00513798 0.00282006 0)
(0.00643178 -0.00199165 0)
(0.00747456 -0.00727011 0)
(0.00819 -0.012689 0)
(0.0085531 -0.017957 0)
(0.00858089 -0.0228529 0)
(0.00832017 -0.0272347 0)
(0.00783277 -0.0310318 0)
(0.00718332 -0.0342326 0)
(0.00643031 -0.0368653 0)
(0.00562163 -0.0389803 0)
(0.00479427 -0.0406402 0)
(0.00397813 -0.0419095 0)
(0.00319502 -0.0428519 0)
(0.00245958 -0.0435223 0)
(0.00178063 -0.0439632 0)
(0.00116621 -0.0442069 0)
(0.000620729 -0.0442931 0)
(0.000139978 -0.044295 0)
(-0.000246423 0.00168944 0)
(-0.000277608 0.00360627 0)
(-0.000316254 0.00557087 0)
(-0.000344545 0.00754975 0)
(-0.000339032 0.00940658 0)
(-0.000272549 0.0109212 0)
(-0.000119932 0.0118257 0)
(0.000135392 0.0118553 0)
(0.000492789 0.010803 0)
(0.000927181 0.00857968 0)
(0.00139106 0.00523937 0)
(0.00184782 0.000947779 0)
(0.00226018 -0.00395045 0)
(0.00256589 -0.00916521 0)
(0.00276371 -0.0143801 0)
(0.00284683 -0.019339 0)
(0.00282407 -0.0238634 0)
(0.00271306 -0.0278511 0)
(0.0025346 -0.0312625 0)
(0.00230874 -0.0341057 0)
(0.00205314 -0.0364194 0)
(0.00178324 -0.038259 0)
(0.00151016 -0.0396901 0)
(0.00124163 -0.0407768 0)
(0.000983881 -0.041578 0)
(0.000742619 -0.0421437 0)
(0.000521783 -0.0425172 0)
(0.000324624 -0.0427333 0)
(0.000153645 -0.0428244 0)
(6.42004e-06 -0.0428403 0)
(0.127704 -1.06438 0)
(0.301025 -1.01643 0)
(0.39528 -0.963062 0)
(0.39696 -0.908251 0)
(0.315882 -0.82766 0)
(0.168682 -0.678175 0)
(0.180612 -0.565347 0)
(0.479974 -0.364764 0)
(0.609072 0.361421 0)
(0.467983 0.558457 0)
(0.224942 0.484173 0)
(0.096768 0.339242 0)
(-0.0167327 0.240246 0)
(-0.0196747 0.166649 0)
(0.053171 0.114312 0)
(0.0514073 0.0847169 0)
(0.00900212 0.0671095 0)
(0.0148054 0.0514435 0)
(0.018111 0.0391503 0)
(0.0144542 0.0286835 0)
(0.0129237 0.0206366 0)
(0.0115074 0.0145477 0)
(0.00938878 0.00994759 0)
(0.00754126 0.00652781 0)
(0.00609776 0.00410075 0)
(0.00490228 0.00245437 0)
(0.00396805 0.00139715 0)
(0.00320062 0.0007622 0)
(0.00263404 0.000413904 0)
(0.00251478 -8.46001e-05 0)
(0.0540728 -1.19085 0)
(0.105812 -1.06537 0)
(0.157017 -0.988729 0)
(0.129066 -0.879585 0)
(0.0466944 -0.770434 0)
(0.00376537 -0.664226 0)
(0.135444 -0.638565 0)
(0.410455 -0.451485 0)
(0.690818 0.433927 0)
(0.440538 0.610662 0)
(0.20059 0.553978 0)
(0.0113747 0.371349 0)
(0.459343 0.206958 0)
(0.408646 0.171643 0)
(1.94559 0.122699 0)
(1.25064 0.11533 0)
(0.213691 0.0848798 0)
(0.101319 0.0543494 0)
(0.0631356 0.0400036 0)
(0.0445893 0.0290911 0)
(0.0337291 0.0209152 0)
(0.025807 0.014801 0)
(0.0197674 0.0101434 0)
(0.0154491 0.00667849 0)
(0.0121296 0.0042188 0)
(0.00942658 0.00254138 0)
(0.00736724 0.00146356 0)
(0.00574348 0.000817048 0)
(0.00460139 0.000452641 0)
(0.00429799 -0.000204761 0)
(-0.0323936 -1.20841 0)
(-0.0579775 -1.07152 0)
(-0.0807966 -0.973087 0)
(-0.0977866 -0.85894 0)
(-0.113917 -0.750243 0)
(-0.0302546 -0.711694 0)
(0.141426 -0.714314 0)
(0.330011 -0.589081 0)
(0.642196 0.334199 0)
(0.496716 0.665678 0)
(0.128273 0.668899 0)
(0.399667 0.30423 0)
(0.665019 0.145554 0)
(1.28338 -0.0611007 0)
(2.60693 0.14577 0)
(1.19735 0.391852 0)
(0.285918 0.127153 0)
(0.131642 0.0637575 0)
(0.0797892 0.0436203 0)
(0.0549697 0.0308058 0)
(0.0407785 0.0218833 0)
(0.0308384 0.0154625 0)
(0.0234222 0.0105856 0)
(0.0181497 0.00698491 0)
(0.014124 0.00443742 0)
(0.0109035 0.00269121 0)
(0.00847118 0.00157058 0)
(0.00657857 0.000900743 0)
(0.00526233 0.000509947 0)
(0.0048682 -0.000189129 0)
(-0.0705301 -1.12277 0)
(-0.141961 -1.04613 0)
(-0.189662 -0.959335 0)
(-0.192104 -0.856331 0)
(-0.145167 -0.783458 0)
(-0.0259813 -0.782459 0)
(0.150758 -0.809531 0)
(0.542453 -0.651576 0)
(0.551282 0.356204 0)
(0.559429 0.773424 0)
(0.17671 0.753544 0)
(0.565168 0.216021 0)
(0.680874 0.0929364 0)
(0.871935 -0.205854 0)
(1.54296 0.0124626 0)
(0.702822 0.686458 0)
(0.281633 0.17135 0)
(0.136032 0.075235 0)
(0.082657 0.0480573 0)
(0.0568457 0.0329174 0)
(0.0420469 0.0230732 0)
(0.0317837 0.0162687 0)
(0.0241707 0.011124 0)
(0.0187082 0.00735638 0)
(0.0145205 0.00470012 0)
(0.0112208 0.00286942 0)
(0.00870784 0.00169487 0)
(0.00677467 0.000994646 0)
(0.00544359 0.000571872 0)
(0.00500483 -0.0001314 0)
(-0.0693927 -1.02389 0)
(-0.155424 -0.996791 0)
(-0.194754 -0.947327 0)
(-0.18882 -0.872337 0)
(-0.133649 -0.834563 0)
(-0.0323006 -0.853697 0)
(0.139974 -0.921996 0)
(0.572513 -0.758878 0)
(0.824063 0.385894 0)
(0.572552 0.905882 0)
(0.302068 0.398289 0)
(0.527467 0.196846 0)
(0.491299 0.102475 0)
(0.486562 -0.249336 0)
(0.328831 -0.0721342 0)
(0.212265 0.792223 0)
(0.246737 0.206208 0)
(0.130992 0.0870339 0)
(0.0811297 0.0528022 0)
(0.0561362 0.0352322 0)
(0.0415615 0.0243822 0)
(0.0315285 0.017141 0)
(0.0241312 0.0117073 0)
(0.0187176 0.0077612 0)
(0.0145284 0.00498694 0)
(0.0112613 0.00306421 0)
(0.00873485 0.00182806 0)
(0.00681601 0.00109075 0)
(0.00550786 0.000631154 0)
(0.00503925 -6.83446e-05 0)
(-0.0493387 -0.934311 0)
(-0.114904 -0.946513 0)
(-0.15424 -0.933016 0)
(-0.159503 -0.888373 0)
(-0.127345 -0.875701 0)
(-0.0587918 -0.91678 0)
(0.0828451 -1.04482 0)
(0.424492 -1.25726 0)
(1.18196 1.04867 0)
(0.578842 1.01345 0)
(0.633068 0.673968 0)
(0.404498 0.118403 0)
(0.413639 0.126439 0)
(0.256194 -0.187667 0)
(-0.47193 -0.0485333 0)
(0.00537134 0.689389 0)
(0.201966 0.227784 0)
(0.12201 0.0981064 0)
(0.0780345 0.05761 0)
(0.0546069 0.0376654 0)
(0.040587 0.0257695 0)
(0.0309735 0.0180505 0)
(0.02391 0.0123178 0)
(0.0186124 0.00818925 0)
(0.0144712 0.00529209 0)
(0.01125 0.00327312 0)
(0.00872407 0.00196882 0)
(0.00682717 0.00118763 0)
(0.00554277 0.000686263 0)
(0.00504965 -9.96267e-06 0)
(-0.0253865 -0.871851 0)
(-0.0705099 -0.902399 0)
(-0.112648 -0.906672 0)
(-0.137447 -0.889922 0)
(-0.134958 -0.896994 0)
(-0.109157 -0.958321 0)
(-0.0442904 -1.1385 0)
(0.171289 -1.58942 0)
(1.54705 1.27934 0)
(0.705761 1.11744 0)
(0.401434 0.509909 0)
(0.571326 0.085276 0)
(0.385173 0.17184 0)
(0.144749 -0.0804355 0)
(-0.506141 0.0430378 0)
(-0.0499567 0.541178 0)
(0.156406 0.236442 0)
(0.110458 0.107703 0)
(0.0738869 0.0623058 0)
(0.0525806 0.040155 0)
(0.0393595 0.0272126 0)
(0.0302769 0.0189867 0)
(0.0235955 0.0129512 0)
(0.0184543 0.00863867 0)
(0.0143937 0.00561481 0)
(0.0112178 0.00349653 0)
(0.0087029 0.00211817 0)
(0.00682719 0.00128639 0)
(0.00556109 0.00073829 0)
(0.0050476 4.26095e-05 0)
(-0.0109278 -0.835602 0)
(-0.0448573 -0.8592 0)
(-0.0901819 -0.8687 0)
(-0.129652 -0.872239 0)
(-0.155549 -0.893249 0)
(-0.177201 -0.962585 0)
(-0.21723 -1.1443 0)
(-0.383 -1.59981 0)
(-0.222017 0.554041 0)
(1.09133 1.17399 0)
(0.860284 0.742781 0)
(0.575986 0.164246 0)
(0.357292 0.254525 0)
(0.0792746 0.0269308 0)
(-0.33699 0.113118 0)
(-0.0697653 0.427113 0)
(0.11444 0.234587 0)
(0.0969538 0.115236 0)
(0.068749 0.0667008 0)
(0.0500835 0.0426308 0)
(0.0378994 0.0286866 0)
(0.0294471 0.0199398 0)
(0.0231838 0.0136041 0)
(0.0182417 0.00910773 0)
(0.0142918 0.00595425 0)
(0.0111646 0.00373478 0)
(0.00867402 0.00227749 0)
(0.0068175 0.00138852 0)
(0.00556567 0.000789084 0)
(0.00503571 8.99542e-05 0)
(-0.0112311 -0.808471 0)
(-0.0441284 -0.813878 0)
(-0.0887912 -0.823266 0)
(-0.135462 -0.836715 0)
(-0.183449 -0.862689 0)
(-0.245653 -0.92272 0)
(-0.366326 -1.05185 0)
(-0.723792 -1.29201 0)
(-1.04659 -0.240699 0)
(0.203783 -0.155701 0)
(1.6468 0.858783 0)
(0.8662 0.366002 0)
(0.279863 0.394404 0)
(0.0258549 0.118941 0)
(-0.227252 0.156035 0)
(-0.0748972 0.345208 0)
(0.0781281 0.225265 0)
(0.0821289 0.120304 0)
(0.0626648 0.0705869 0)
(0.0471051 0.0450097 0)
(0.0361981 0.0301593 0)
(0.0284736 0.0208972 0)
(0.022664 0.0142716 0)
(0.0179668 0.00959344 0)
(0.0141552 0.00630885 0)
(0.0110877 0.00398756 0)
(0.00863565 0.00244801 0)
(0.00679709 0.00149546 0)
(0.00555826 0.00084066 0)
(0.00501513 0.000132764 0)
(-0.0201572 -0.77019 0)
(-0.056521 -0.76721 0)
(-0.0982825 -0.774378 0)
(-0.148368 -0.787538 0)
(-0.209894 -0.808709 0)
(-0.296116 -0.846858 0)
(-0.446329 -0.906627 0)
(-0.764268 -0.938014 0)
(-1.26004 -0.48886 0)
(-0.618889 -0.191662 0)
(0.222868 -0.00142008 0)
(0.999825 0.550899 0)
(0.080398 0.497026 0)
(-0.0267988 0.18591 0)
(-0.167066 0.181099 0)
(-0.0739855 0.286938 0)
(0.0480504 0.211359 0)
(0.0666786 0.122729 0)
(0.0557318 0.0737533 0)
(0.0436407 0.047198 0)
(0.0342449 0.0315902 0)
(0.0273451 0.0218435 0)
(0.0220288 0.014947 0)
(0.0176212 0.0100917 0)
(0.0139747 0.00667654 0)
(0.0109842 0.00425437 0)
(0.0085839 0.0026309 0)
(0.00676487 0.00160903 0)
(0.00553948 0.000895319 0)
(0.00498622 0.000171814 0)
(-0.0236383 -0.716205 0)
(-0.0629344 -0.717845 0)
(-0.106284 -0.72114 0)
(-0.159356 -0.727929 0)
(-0.226826 -0.73847 0)
(-0.319504 -0.752148 0)
(-0.460677 -0.75813 0)
(-0.682394 -0.701243 0)
(-0.893752 -0.426471 0)
(-0.820522 -0.209218 0)
(-1.00702 -0.141208 0)
(-0.632315 0.811532 0)
(-0.104992 0.46002 0)
(-0.0788154 0.222272 0)
(-0.137157 0.19275 0)
(-0.0721665 0.244864 0)
(0.0237941 0.19514 0)
(0.0512651 0.12255 0)
(0.0481008 0.0760067 0)
(0.0397003 0.0490954 0)
(0.0320305 0.0329336 0)
(0.0260517 0.0227622 0)
(0.0212733 0.0156226 0)
(0.017197 0.0105979 0)
(0.0137434 0.00705545 0)
(0.0108515 0.00453496 0)
(0.0085141 0.0028272 0)
(0.00672014 0.00173132 0)
(0.00550912 0.000955099 0)
(0.00494879 0.00020784 0)
(-0.0216948 -0.658401 0)
(-0.061933 -0.659275 0)
(-0.108566 -0.659807 0)
(-0.163192 -0.660496 0)
(-0.230462 -0.66017 0)
(-0.317607 -0.654541 0)
(-0.434639 -0.630479 0)
(-0.583231 -0.553659 0)
(-0.706846 -0.38024 0)
(-0.739618 -0.196176 0)
(-0.826664 0.0156694 0)
(-0.576016 0.435523 0)
(-0.21449 0.372927 0)
(-0.124053 0.228752 0)
(-0.12547 0.193189 0)
(-0.0717737 0.213123 0)
(0.00447501 0.178143 0)
(0.0364642 0.119983 0)
(0.0399792 0.0771908 0)
(0.0353221 0.0505981 0)
(0.0295532 0.034137 0)
(0.0245874 0.023631 0)
(0.0203958 0.0162861 0)
(0.0166889 0.0111058 0)
(0.0134574 0.00744227 0)
(0.0106873 0.00482765 0)
(0.00842237 0.00303662 0)
(0.00666194 0.0018635 0)
(0.00546703 0.00102089 0)
(0.00490246 0.000241061 0)
(-0.0225694 -0.596188 0)
(-0.0620288 -0.595498 0)
(-0.106863 -0.593368 0)
(-0.159178 -0.589093 0)
(-0.221659 -0.580664 0)
(-0.297798 -0.563324 0)
(-0.390328 -0.526921 0)
(-0.493915 -0.453484 0)
(-0.581538 -0.328841 0)
(-0.628229 -0.173763 0)
(-0.642394 0.0241141 0)
(-0.491482 0.254559 0)
(-0.263231 0.281002 0)
(-0.157061 0.212802 0)
(-0.123597 0.184178 0)
(-0.0732972 0.187373 0)
(-0.0109297 0.161204 0)
(0.0227027 0.115354 0)
(0.0316039 0.0772053 0)
(0.0305695 0.051606 0)
(0.0268168 0.0351421 0)
(0.0229481 0.0244214 0)
(0.0193953 0.0169211 0)
(0.0160945 0.0116073 0)
(0.0131132 0.0078332 0)
(0.0104879 0.00513065 0)
(0.0083052 0.00325878 0)
(0.00658771 0.00200657 0)
(0.00541241 0.0010935 0)
(0.00484647 0.000271948 0)
(-0.0214197 -0.531149 0)
(-0.0585708 -0.529388 0)
(-0.100498 -0.52524 0)
(-0.148422 -0.517642 0)
(-0.203751 -0.504516 0)
(-0.267747 -0.481901 0)
(-0.340177 -0.443011 0)
(-0.41579 -0.378426 0)
(-0.480694 -0.281404 0)
(-0.518813 -0.155311 0)
(-0.513212 -0.00139979 0)
(-0.418697 0.14856 0)
(-0.273663 0.20214 0)
(-0.176042 0.18376 0)
(-0.125578 0.167792 0)
(-0.076185 0.164702 0)
(-0.0232783 0.144655 0)
(0.0102638 0.109027 0)
(0.0232259 0.0760075 0)
(0.0255329 0.0520255 0)
(0.0238375 0.035885 0)
(0.0211353 0.0250981 0)
(0.0182732 0.017508 0)
(0.0154129 0.0120944 0)
(0.0127076 0.00822543 0)
(0.0102487 0.00544353 0)
(0.00815931 0.00349391 0)
(0.00649402 0.00216179 0)
(0.00534366 0.00117418 0)
(0.00477917 0.000301658 0)
(-0.0195988 -0.46604 0)
(-0.0532055 -0.46364 0)
(-0.0908376 -0.458318 0)
(-0.133102 -0.449106 0)
(-0.18054 -0.434199 0)
(-0.233263 -0.410629 0)
(-0.290099 -0.374011 0)
(-0.346946 -0.319049 0)
(-0.395382 -0.241763 0)
(-0.423646 -0.142459 0)
(-0.41653 -0.0268694 0)
(-0.356987 0.0810621 0)
(-0.263001 0.139595 0)
(-0.182347 0.149559 0)
(-0.127507 0.146478 0)
(-0.0794375 0.143434 0)
(-0.0331317 0.128533 0)
(-0.000667827 0.101358 0)
(0.0151046 0.0736183 0)
(0.020335 0.0517793 0)
(0.0206535 0.0363013 0)
(0.0191615 0.0256238 0)
(0.0170341 0.0180271 0)
(0.014645 0.0125586 0)
(0.0122383 0.00861641 0)
(0.00996485 0.00576547 0)
(0.00798061 0.00374126 0)
(0.00637672 0.00232906 0)
(0.00525731 0.00126313 0)
(0.0046986 0.000330885 0)
(-0.0173301 -0.403281 0)
(-0.046689 -0.400546 0)
(-0.0793373 -0.394819 0)
(-0.115505 -0.385348 0)
(-0.155242 -0.370684 0)
(-0.198156 -0.348663 0)
(-0.242916 -0.316425 0)
(-0.286399 -0.270805 0)
(-0.322955 -0.209453 0)
(-0.344335 -0.132632 0)
(-0.340375 -0.0457636 0)
(-0.303406 0.0360321 0)
(-0.24174 0.0914491 0)
(-0.178844 0.115482 0)
(-0.12723 0.122698 0)
(-0.0820342 0.122822 0)
(-0.0408256 0.112781 0)
(-0.0100247 0.0927019 0)
(0.00747453 0.0701104 0)
(0.0151134 0.0508163 0)
(0.017318 0.0363342 0)
(0.0170451 0.0259633 0)
(0.0156825 0.0184594 0)
(0.0137894 0.0129903 0)
(0.0117008 0.00900251 0)
(0.00963032 0.00609395 0)
(0.00776416 0.00399827 0)
(0.00623165 0.00250598 0)
(0.0051492 0.00135901 0)
(0.00460272 0.000359524 0)
(-0.0148867 -0.344693 0)
(-0.0398106 -0.34189 0)
(-0.0673649 -0.336313 0)
(-0.0975653 -0.327481 0)
(-0.130237 -0.31425 0)
(-0.164836 -0.295031 0)
(-0.200153 -0.267908 0)
(-0.233832 -0.23093 0)
(-0.261962 -0.182746 0)
(-0.278996 -0.123784 0)
(-0.278529 -0.0579761 0)
(-0.256305 0.00557842 0)
(-0.215809 0.0549497 0)
(-0.168565 0.0844754 0)
(-0.123931 0.0985909 0)
(-0.0831811 0.10279 0)
(-0.0464898 0.0973902 0)
(-0.0177392 0.0833183 0)
(0.000552928 0.0656006 0)
(0.0100223 0.0491194 0)
(0.0139036 0.0359383 0)
(0.0148135 0.0260822 0)
(0.014226 0.018783 0)
(0.0128457 0.0133756 0)
(0.0110924 0.00937536 0)
(0.00924126 0.00642319 0)
(0.00750733 0.0042608 0)
(0.00605675 0.00268913 0)
(0.00501786 0.00146023 0)
(0.00448979 0.000387621 0)
(-0.0125397 -0.291346 0)
(-0.0332673 -0.288712 0)
(-0.0560012 -0.283695 0)
(-0.0806853 -0.276026 0)
(-0.107102 -0.2648 0)
(-0.134732 -0.248824 0)
(-0.162582 -0.226788 0)
(-0.188911 -0.19745 0)
(-0.211011 -0.160034 0)
(-0.225202 -0.114936 0)
(-0.2274 -0.064726 0)
(-0.214819 -0.0148244 0)
(-0.188536 0.0276624 0)
(-0.154091 0.0578495 0)
(-0.117668 0.0757615 0)
(-0.0824263 0.0836308 0)
(-0.050161 0.0824466 0)
(-0.0237884 0.0734847 0)
(-0.00549374 0.0602661 0)
(0.00521817 0.04671 0)
(0.0104973 0.0350831 0)
(0.0125049 0.0259472 0)
(0.0126797 0.0189738 0)
(0.0118201 0.0136979 0)
(0.010416 0.00972407 0)
(0.00879845 0.00674589 0)
(0.00721079 0.00452465 0)
(0.00585224 0.00287509 0)
(0.00486407 0.00156526 0)
(0.0043577 0.000415619 0)
(-0.0104624 -0.243408 0)
(-0.0274782 -0.241389 0)
(-0.0458849 -0.237397 0)
(-0.0656453 -0.231178 0)
(-0.0866361 -0.222082 0)
(-0.108463 -0.20927 0)
(-0.130367 -0.191841 0)
(-0.151078 -0.168983 0)
(-0.168723 -0.140213 0)
(-0.180845 -0.105805 0)
(-0.184751 -0.067341 0)
(-0.178424 -0.0280616 0)
(-0.16181 0.00764215 0)
(-0.137405 0.0359449 0)
(-0.108976 0.0552466 0)
(-0.079664 0.0657771 0)
(-0.0518786 0.0681356 0)
(-0.0281711 0.0634675 0)
(-0.0105198 0.0542858 0)
(0.0008571 0.0436445 0)
(0.00720115 0.0337602 0)
(0.0101721 0.0255318 0)
(0.0110692 0.0190094 0)
(0.0107245 0.0139402 0)
(0.00967683 0.0100373 0)
(0.00830309 0.00705569 0)
(0.00687403 0.00478678 0)
(0.00561662 0.00306325 0)
(0.00468596 0.00167402 0)
(0.00420386 0.000444375 0)
(-0.00841234 -0.201169 0)
(-0.0219659 -0.20004 0)
(-0.0366088 -0.197353 0)
(-0.0522677 -0.192678 0)
(-0.0688224 -0.185595 0)
(-0.0859778 -0.175595 0)
(-0.103187 -0.162092 0)
(-0.119554 -0.144542 0)
(-0.133789 -0.122612 0)
(-0.144231 -0.0964415 0)
(-0.149046 -0.0669612 0)
(-0.146705 -0.0361099 0)
(-0.136684 -0.00665612 0)
(-0.119931 0.0185615 0)
(-0.0985697 0.0375853 0)
(-0.0750594 0.0496287 0)
(-0.0517431 0.0546958 0)
(-0.0309204 0.0535293 0)
(-0.0144306 0.0478703 0)
(-0.00293224 0.0400298 0)
(0.0041217 0.0319847 0)
(0.00787716 0.0248208 0)
(0.00942578 0.0188707 0)
(0.00957278 0.0140886 0)
(0.00887954 0.0103062 0)
(0.00775463 0.00734727 0)
(0.00649405 0.00504353 0)
(0.00534586 0.00325265 0)
(0.00447933 0.00178593 0)
(0.00402517 0.00047457 0)
(-0.0065008 -0.165502 0)
(-0.0169397 -0.164904 0)
(-0.0283291 -0.163169 0)
(-0.0405883 -0.159823 0)
(-0.0535739 -0.154536 0)
(-0.0670336 -0.146966 0)
(-0.0805655 -0.136722 0)
(-0.093545 -0.123435 0)
(-0.105089 -0.106861 0)
(-0.114064 -0.0870414 0)
(-0.11919 -0.0645014 0)
(-0.119301 -0.0403925 0)
(-0.113731 -0.0164667 0)
(-0.102662 0.00524457 0)
(-0.0871746 0.0229489 0)
(-0.0689528 0.0354799 0)
(-0.0499352 0.0423807 0)
(-0.0321127 0.0439353 0)
(-0.017176 0.041247 0)
(-0.00603023 0.0359863 0)
(0.00136812 0.0298016 0)
(0.0056917 0.0238155 0)
(0.00778939 0.0185468 0)
(0.00838438 0.0141307 0)
(0.0080316 0.0105205 0)
(0.00715457 0.00761421 0)
(0.00606889 0.00529267 0)
(0.00503676 0.00344108 0)
(0.00424058 0.00189921 0)
(0.00381816 0.000505961 0)
(-0.00496676 -0.13612 0)
(-0.0128871 -0.135744 0)
(-0.021577 -0.134559 0)
(-0.0309892 -0.132171 0)
(-0.0410173 -0.128307 0)
(-0.0514724 -0.122704 0)
(-0.0620589 -0.115078 0)
(-0.0723318 -0.105159 0)
(-0.0816762 -0.0927547 0)
(-0.0893087 -0.077842 0)
(-0.0943248 -0.0606931 0)
(-0.0958383 -0.041981 0)
(-0.0932013 -0.0228065 0)
(-0.0862437 -0.00458138 0)
(-0.0754217 0.011241 0)
(-0.0617645 0.02347 0)
(-0.0467093 0.0313974 0)
(-0.0318747 0.0349278 0)
(-0.0187555 0.0346435 0)
(-0.00835336 0.0316669 0)
(-0.000965852 0.0272803 0)
(0.00368957 0.0225354 0)
(0.0062051 0.0180362 0)
(0.00718322 0.0140591 0)
(0.0071431 0.0106721 0)
(0.00650561 0.00784972 0)
(0.00559705 0.00552849 0)
(0.00468643 0.00362587 0)
(0.00396604 0.0020131 0)
(0.00357911 0.000537566 0)
(-0.00375957 -0.112129 0)
(-0.00971316 -0.111869 0)
(-0.0162664 -0.11102 0)
(-0.0233976 -0.109284 0)
(-0.0310373 -0.106459 0)
(-0.0390526 -0.102353 0)
(-0.0472367 -0.0967483 0)
(-0.0552798 -0.0894313 0)
(-0.0627569 -0.0802346 0)
(-0.0691245 -0.0690927 0)
(-0.0737408 -0.0561245 0)
(-0.0759391 -0.0417072 0)
(-0.0751535 -0.0265206 0)
(-0.0710795 -0.011517 0)
(-0.0638142 0.00220436 0)
(-0.0539212 0.0135982 0)
(-0.0423657 0.0218846 0)
(-0.0303793 0.0267168 0)
(-0.0192147 0.0282798 0)
(-0.00985571 0.0272411 0)
(-0.00280327 0.0245274 0)
(0.00194294 0.021021 0)
(0.00472162 0.0173489 0)
(0.00599727 0.0138732 0)
(0.00622717 0.0107553 0)
(0.00581207 0.00804848 0)
(0.00507772 0.00574678 0)
(0.00429201 0.00380406 0)
(0.00365227 0.00212367 0)
(0.00330416 0.000569455 0)
(-0.00283255 -0.0926601 0)
(-0.00728942 -0.0924649 0)
(-0.0121955 -0.09184 0)
(-0.0175377 -0.0905762 0)
(-0.023271 -0.0885261 0)
(-0.0293113 -0.0855414 0)
(-0.035527 -0.0814541 0)
(-0.0417145 -0.0760938 0)
(-0.0475871 -0.0693149 0)
(-0.0527711 -0.0610318 0)
(-0.0568113 -0.0512728 0)
(-0.0592121 -0.0402331 0)
(-0.0595085 -0.0283171 0)
(-0.0573713 -0.0161468 0)
(-0.0527181 -0.00451179 0)
(-0.0458015 0.00574781 0)
(-0.0372148 0.0138961 0)
(-0.0278316 0.0194614 0)
(-0.0186413 0.0223543 0)
(-0.0105293 0.0228853 0)
(-0.00407852 0.0216525 0)
(0.00051919 0.0193342 0)
(0.00338783 0.0165116 0)
(0.00485649 0.0135782 0)
(0.00529929 0.0107697 0)
(0.00507976 0.008207 0)
(0.00451087 0.00594302 0)
(0.00385088 0.0039713 0)
(0.0032959 0.00223048 0)
(0.00298948 0.000599275 0)
(-0.00210396 -0.0769411 0)
(-0.00538797 -0.0768329 0)
(-0.00899432 -0.0764195 0)
(-0.0129206 -0.0755315 0)
(-0.0171473 -0.0740587 0)
(-0.0216252 -0.0718945 0)
(-0.0262699 -0.0689146 0)
(-0.0309471 -0.0649881 0)
(-0.0354659 -0.0599938 0)
(-0.0395723 -0.053843 0)
(-0.0429494 -0.0465132 0)
(-0.0452382 -0.0380875 0)
(-0.0460776 -0.0287914 0)
(-0.0451686 -0.0190146 0)
(-0.0423561 -0.00929937 0)
(-0.037703 -0.000283495 0)
(-0.0315435 0.00740425 0)
(-0.0244493 0.0132609 0)
(-0.017156 0.0170333 0)
(-0.0104019 0.0187701 0)
(-0.00476265 0.0187901 0)
(-0.000536145 0.0175609 0)
(0.0022484 0.0155666 0)
(0.00379033 0.0131933 0)
(0.00437535 0.0107184 0)
(0.0043151 0.0083233 0)
(0.00389691 0.0061137 0)
(0.0033607 0.00412468 0)
(0.00289326 0.00233003 0)
(0.00263114 0.00062772 0)
(-0.00149557 -0.0646539 0)
(-0.00382385 -0.0645818 0)
(-0.00640058 -0.0642875 0)
(-0.00922538 -0.0636453 0)
(-0.0122819 -0.0625755 0)
(-0.0155356 -0.0609982 0)
(-0.0189303 -0.0588184 0)
(-0.0223791 -0.0559337 0)
(-0.0257579 -0.0522427 0)
(-0.0288997 -0.0476587 0)
(-0.0315907 -0.0421348 0)
(-0.0335796 -0.0356889 0)
(-0.0345987 -0.0284339 0)
(-0.0344031 -0.0206019 0)
(-0.032825 -0.0125502 0)
(-0.0298352 -0.00474012 0)
(-0.0255888 0.00232039 0)
(-0.0204393 0.00816116 0)
(-0.0148968 0.0124484 0)
(-0.00953307 0.015056 0)
(-0.00485452 0.016083 0)
(-0.00119263 0.0158038 0)
(0.00133885 0.0145749 0)
(0.0028251 0.0127474 0)
(0.00347026 0.0106146 0)
(0.00352446 0.00839871 0)
(0.0032366 0.00625496 0)
(0.00281946 0.00426041 0)
(0.00244111 0.00242008 0)
(0.00222556 0.000653987 0)
(-0.00104247 -0.0553551 0)
(-0.0026594 -0.0552774 0)
(-0.0044385 -0.0550306 0)
(-0.00638312 -0.0545386 0)
(-0.00848956 -0.0537417 0)
(-0.0107399 -0.0525739 0)
(-0.0131013 -0.0509585 0)
(-0.0155221 -0.0488116 0)
(-0.0179255 -0.0460462 0)
(-0.0202043 -0.0425815 0)
(-0.022218 -0.0383608 0)
(-0.0237971 -0.0333674 0)
(-0.0247545 -0.0276458 0)
(-0.0249068 -0.0213246 0)
(-0.024108 -0.0146301 0)
(-0.0222923 -0.0078857 0)
(-0.0195141 -0.00148462 0)
(-0.0159749 0.0041612 0)
(-0.0120013 0.0086957 0)
(-0.00800332 0.011888 0)
(-0.00438145 0.0136781 0)
(-0.00143786 0.014175 0)
(0.000678093 0.0136131 0)
(0.00197889 0.0122844 0)
(0.00259491 0.0104759 0)
(0.00271229 0.00843939 0)
(0.00253037 0.00636655 0)
(0.00222501 0.00437423 0)
(0.00193647 0.00249776 0)
(0.00176954 0.000676508 0)
(-0.00066917 -0.0484416 0)
(-0.0017052 -0.0484498 0)
(-0.00283777 -0.048338 0)
(-0.00406868 -0.0480091 0)
(-0.00539894 -0.0474142 0)
(-0.00682339 -0.0465117 0)
(-0.00832832 -0.0452516 0)
(-0.00988586 -0.0435753 0)
(-0.0114507 -0.0414159 0)
(-0.0129578 -0.0387023 0)
(-0.0143208 -0.0353727 0)
(-0.0154337 -0.031389 0)
(-0.0161763 -0.0267539 0)
(-0.0164261 -0.021531 0)
(-0.0160768 -0.0158603 0)
(-0.0150652 -0.00996606 0)
(-0.0133981 -0.00415005 0)
(-0.0111752 0.00123759 0)
(-0.00859019 0.00584931 0)
(-0.00590481 0.00939949 0)
(-0.00339618 0.0117228 0)
(-0.00129455 0.0128051 0)
(0.0002648 0.0127745 0)
(0.00125515 0.0118597 0)
(0.00175247 0.0103308 0)
(0.00187929 0.00845307 0)
(0.00177725 0.00644788 0)
(0.00157512 0.00446359 0)
(0.00137684 0.0025596 0)
(0.00126052 0.000694528 0)
(-0.000317961 -0.0442912 0)
(-0.000813468 -0.0442679 0)
(-0.0013754 -0.044137 0)
(-0.00200546 -0.0438349 0)
(-0.00269803 -0.0433263 0)
(-0.00344465 -0.0425779 0)
(-0.00423513 -0.0415445 0)
(-0.00505303 -0.0401683 0)
(-0.00587395 -0.0383855 0)
(-0.00666676 -0.0361313 0)
(-0.00739169 -0.0333463 0)
(-0.00799788 -0.029985 0)
(-0.00842451 -0.0260291 0)
(-0.00860698 -0.021505 0)
(-0.00848647 -0.0165018 0)
(-0.00802339 -0.0111829 0)
(-0.00721166 -0.00578917 0)
(-0.00608969 -0.000625374 0)
(-0.00475043 0.00398362 0)
(-0.00333269 0.00772576 0)
(-0.00197826 0.010372 0)
(-0.000817049 0.0118337 0)
(6.39662e-05 0.0121633 0)
(0.000635565 0.0115397 0)
(0.000932993 0.0102125 0)
(0.00101967 0.00845259 0)
(0.000973627 0.00649919 0)
(0.000867435 0.00452306 0)
(0.000760357 0.00260255 0)
(0.000696804 0.00070719 0)
(-0.000137997 -0.0428248 0)
(-0.000302583 -0.0427492 0)
(-0.000493198 -0.0425574 0)
(-0.000708059 -0.0422151 0)
(-0.000943774 -0.0416891 0)
(-0.00119649 -0.0409382 0)
(-0.00146102 -0.039914 0)
(-0.0017317 -0.0385599 0)
(-0.00200148 -0.0368136 0)
(-0.00225987 -0.0346097 0)
(-0.00249231 -0.03189 0)
(-0.00268154 -0.0286116 0)
(-0.00280798 -0.0247584 0)
(-0.00285081 -0.0203582 0)
(-0.00279146 -0.0154977 0)
(-0.00261849 -0.0103373 0)
(-0.00233437 -0.0051144 0)
(-0.00195121 -0.00014857 0)
(-0.00149347 0.00430677 0)
(-0.00103112 0.00787008 0)
(-0.000586542 0.0103508 0)
(-0.000210021 0.0116679 0)
(6.87112e-05 0.0118776 0)
(0.00024363 0.0111631 0)
(0.000328127 0.00977752 0)
(0.00034562 0.0079908 0)
(0.000323419 0.00603602 0)
(0.000285538 0.00407111 0)
(0.000251202 0.00215574 0)
(0.000234449 0.000243076 0)
(-7.6515e-05 1.0866e-05 0)
(-0.000182425 1.279e-06 0)
(-0.000429326 2.3249e-06 0)
(-0.000842523 4.31119e-06 0)
(-0.00151926 7.66228e-06 0)
(-0.00257401 1.29132e-05 0)
(-0.00413342 2.06473e-05 0)
(-0.00632397 3.13826e-05 0)
(-0.00925271 4.53879e-05 0)
(-0.0129806 6.24196e-05 0)
(-0.0174899 8.13732e-05 0)
(-0.0226526 0.000100008 0)
(-0.0282091 0.000114902 0)
(-0.0337758 0.000121885 0)
(-0.0388878 0.000116991 0)
(-0.0430762 9.76052e-05 0)
(-0.045957 6.33584e-05 0)
(-0.0473 1.62679e-05 0)
(-0.0470591 -3.97171e-05 0)
(-0.0453546 -9.99939e-05 0)
(-0.0424265 -0.000159882 0)
(-0.038576 -0.000215699 0)
(-0.0341134 -0.000264885 0)
(-0.0293189 -0.000306131 0)
(-0.0244249 -0.000339139 0)
(-0.019608 -0.000364291 0)
(-0.0149918 -0.000382467 0)
(-0.0106556 -0.000394656 0)
(-0.00664376 -0.000401916 0)
(-0.00297148 -0.000405258 0)
(-7.62644e-05 2.451e-05 0)
(-0.000323252 2.22347e-05 0)
(-0.000712619 4.11135e-05 0)
(-0.00136471 7.56489e-05 0)
(-0.00242116 0.000132803 0)
(-0.00404734 0.000221106 0)
(-0.00642304 0.000349574 0)
(-0.00972348 0.000525926 0)
(-0.0140908 0.000753583 0)
(-0.0195949 0.00102732 0)
(-0.0261877 0.00132801 0)
(-0.0336591 0.00161818 0)
(-0.041611 0.00184177 0)
(-0.0494734 0.00193143 0)
(-0.0565721 0.00182402 0)
(-0.062243 0.00147979 0)
(-0.0659625 0.000896573 0)
(-0.0674415 0.000112226 0)
(-0.0666595 -0.000805807 0)
(-0.0638306 -0.0017782 0)
(-0.0593285 -0.00273085 0)
(-0.0535989 -0.0036062 0)
(-0.0470855 -0.00436781 0)
(-0.0401796 -0.00499912 0)
(-0.0331954 -0.00549897 0)
(-0.0263713 -0.00587636 0)
(-0.0198656 -0.00614635 0)
(-0.0137799 -0.00632614 0)
(-0.0081667 -0.006433 0)
(-0.00304161 -0.00648273 0)
(-7.57926e-05 3.80879e-05 0)
(-0.000321906 4.34528e-05 0)
(-0.000709631 8.03436e-05 0)
(-0.00135897 0.000147835 0)
(-0.002411 0.000259536 0)
(-0.00403042 0.000432132 0)
(-0.00639649 0.000683304 0)
(-0.00968421 0.00102824 0)
(-0.0140363 0.00147384 0)
(-0.0195251 0.00201032 0)
(-0.0261073 0.00260083 0)
(-0.0335805 0.00317277 0)
(-0.0415563 0.00361683 0)
(-0.0494735 0.0038008 0)
(-0.0566615 0.00359947 0)
(-0.0624515 0.00293253 0)
(-0.066306 0.00179324 0)
(-0.0679166 0.000254206 0)
(-0.0672441 -0.00155234 0)
(-0.0644894 -0.00346969 0)
(-0.0600203 -0.0053506 0)
(-0.0542838 -0.00708056 0)
(-0.0477297 -0.00858663 0)
(-0.0407578 -0.00983548 0)
(-0.0336909 -0.0108246 0)
(-0.0267753 -0.0115714 0)
(-0.0201754 -0.0121059 0)
(-0.0139974 -0.0124618 0)
(-0.00829625 -0.0126731 0)
(-0.00309007 -0.0127714 0)
(-7.51169e-05 5.15644e-05 0)
(-0.000319684 6.45525e-05 0)
(-0.000704703 0.000119352 0)
(-0.00134951 0.000219613 0)
(-0.00239423 0.000385558 0)
(-0.00400252 0.000641996 0)
(-0.00635269 0.00101525 0)
(-0.00961937 0.00152804 0)
(-0.0139464 0.002191 0)
(-0.0194097 0.00299024 0)
(-0.0259737 0.00387213 0)
(-0.033449 0.00473015 0)
(-0.0414628 0.00540286 0)
(-0.0494692 0.00569339 0)
(-0.0568039 0.00541295 0)
(-0.0627908 0.00443722 0)
(-0.0668695 0.00275066 0)
(-0.0687003 0.000457263 0)
(-0.0682122 -0.00224737 0)
(-0.0655834 -0.00512799 0)
(-0.0611713 -0.00796161 0)
(-0.0554249 -0.0105732 0)
(-0.0488042 -0.0128505 0)
(-0.0417228 -0.014741 0)
(-0.0345184 -0.0162397 0)
(-0.0274503 -0.017372 0)
(-0.0206931 -0.0181827 0)
(-0.0143606 -0.0187227 0)
(-0.00851312 -0.0190434 0)
(-0.00317103 -0.0191921 0)
(-7.42392e-05 6.49002e-05 0)
(-0.000316597 8.54751e-05 0)
(-0.000697857 0.000158032 0)
(-0.00133637 0.000290791 0)
(-0.00237093 0.000510536 0)
(-0.00396375 0.000850147 0)
(-0.00629181 0.00134458 0)
(-0.00952921 0.00202416 0)
(-0.0138211 0.00290356 0)
(-0.0192485 0.00396558 0)
(-0.0257867 0.0051411 0)
(-0.0332634 0.00629153 0)
(-0.0413285 0.00720501 0)
(-0.049457 0.00762041 0)
(-0.056995 0.00728314 0)
(-0.063257 0.0060199 0)
(-0.067652 0.00379992 0)
(-0.0697957 0.000753135 0)
(-0.0695719 -0.00286348 0)
(-0.0671256 -0.00673489 0)
(-0.0627989 -0.010558 0)
(-0.0570422 -0.0140925 0)
(-0.0503296 -0.0171817 0)
(-0.0430946 -0.0197508 0)
(-0.0356959 -0.0217902 0)
(-0.0284113 -0.0233327 0)
(-0.0214307 -0.0244376 0)
(-0.0148784 -0.0251739 0)
(-0.00882218 -0.0256113 0)
(-0.00328662 -0.0258141 0)
(-7.31617e-05 7.80585e-05 0)
(-0.000312654 0.000106164 0)
(-0.00068911 0.000196281 0)
(-0.00131958 0.000361175 0)
(-0.00234117 0.000634128 0)
(-0.00391421 0.00105602 0)
(-0.00621399 0.00167042 0)
(-0.00941388 0.00251536 0)
(-0.0136607 0.00360998 0)
(-0.0190416 0.00493471 0)
(-0.0255454 0.00640672 0)
(-0.0330217 0.00785778 0)
(-0.0411492 0.00902795 0)
(-0.0494309 0.00959255 0)
(-0.0572276 0.00922852 0)
(-0.0638436 0.00770703 0)
(-0.0686501 0.00497336 0)
(-0.0712052 0.00117597 0)
(-0.0713332 -0.00337057 0)
(-0.0691338 -0.00826935 0)
(-0.0649266 -0.0131319 0)
(-0.059163 -0.0176454 0)
(-0.0523346 -0.0216023 0)
(-0.044901 -0.024901 0)
(-0.0372484 -0.027524 0)
(-0.0296798 -0.0295104 0)
(-0.0224049 -0.0309347 0)
(-0.0155627 -0.0318843 0)
(-0.00923067 -0.0324487 0)
(-0.00343923 -0.0327105 0)
(-7.18871e-05 9.10101e-05 0)
(-0.000307867 0.000126561 0)
(-0.000678487 0.00023399 0)
(-0.00129919 0.000430569 0)
(-0.00230503 0.000755994 0)
(-0.00385403 0.00125906 0)
(-0.00611942 0.0019919 0)
(-0.0092736 0.00300041 0)
(-0.0134652 0.00430868 0)
(-0.0187888 0.00589593 0)
(-0.0252488 0.00766778 0)
(-0.0327214 0.00942937 0)
(-0.0409201 0.0108758 0)
(-0.0493832 0.0116199 0)
(-0.0574919 0.0112674 0)
(-0.0645415 0.00952571 0)
(-0.0698589 0.00630513 0)
(-0.0729318 0.00176249 0)
(-0.073509 -0.00373479 0)
(-0.0716305 -0.00970661 0)
(-0.0675855 -0.0156722 0)
(-0.0618238 -0.021237 0)
(-0.0548578 -0.0261345 0)
(-0.0471795 -0.030229 0)
(-0.0392099 -0.033492 0)
(-0.0312843 -0.035967 0)
(-0.0236381 -0.0377435 0)
(-0.0164293 -0.038929 0)
(-0.00974815 -0.0396337 0)
(-0.00363282 -0.0399603 0)
(-7.04186e-05 0.000103717 0)
(-0.000302247 0.000146612 0)
(-0.000666016 0.000271058 0)
(-0.00127526 0.000498787 0)
(-0.00226259 0.000875812 0)
(-0.00378336 0.00145873 0)
(-0.00600832 0.00230821 0)
(-0.00910863 0.00347813 0)
(-0.0132349 0.00499809 0)
(-0.0184898 0.0068475 0)
(-0.0248957 0.0089229 0)
(-0.0323592 0.0110064 0)
(-0.0406351 0.0127521 0)
(-0.0493044 0.0137121 0)
(-0.057776 0.0134178 0)
(-0.0653391 0.0115038 0)
(-0.0712715 0.00783168 0)
(-0.074978 0.00255352 0)
(-0.0761144 -0.00391756 0)
(-0.0746443 -0.0110171 0)
(-0.0708149 -0.0181639 0)
(-0.0650711 -0.0248704 0)
(-0.0579484 -0.0307998 0)
(-0.049978 -0.0357744 0)
(-0.0416241 -0.039749 0)
(-0.0332621 -0.0427695 0)
(-0.0251598 -0.0449405 0)
(-0.0174994 -0.0463905 0)
(-0.0103875 -0.047253 0)
(-0.00387191 -0.0476528 0)
(-6.87605e-05 0.000116146 0)
(-0.00029581 0.000166263 0)
(-0.000651733 0.000307386 0)
(-0.00124784 0.000565645 0)
(-0.00221398 0.000993252 0)
(-0.00370239 0.00165449 0)
(-0.00588095 0.0026185 0)
(-0.00891929 0.00394728 0)
(-0.01297 0.00567659 0)
(-0.0181444 0.00778752 0)
(-0.0244849 0.0101703 0)
(-0.0319317 0.0125885 0)
(-0.0402871 0.0146594 0)
(-0.0491831 0.0158776 0)
(-0.0580651 0.0156972 0)
(-0.0662214 0.0136698 0)
(-0.0728784 0.00959203 0)
(-0.0773457 0.00359453 0)
(-0.0791664 -0.0038743 0)
(-0.0782089 -0.0121645 0)
(-0.0746629 -0.0205864 0)
(-0.0689624 -0.028545 0)
(-0.061668 -0.0356193 0)
(-0.053357 -0.0415787 0)
(-0.0445462 -0.0463546 0)
(-0.0356601 -0.049992 0)
(-0.0270069 -0.0526106 0)
(-0.0187993 -0.0543614 0)
(-0.0111645 -0.0554034 0)
(-0.0041626 -0.0558866 0)
(-6.6917e-05 0.000128264 0)
(-0.000288575 0.000185461 0)
(-0.000635679 0.000342874 0)
(-0.00121702 0.000630957 0)
(-0.00215932 0.00110799 0)
(-0.00361132 0.0018458 0)
(-0.00573761 0.00292193 0)
(-0.00870595 0.00440666 0)
(-0.0126707 0.00634253 0)
(-0.0177526 0.00871396 0)
(-0.0240148 0.0114081 0)
(-0.031435 0.0141744 0)
(-0.0398681 0.0165995 0)
(-0.0490061 0.0181238 0)
(-0.0583415 0.0181224 0)
(-0.0671698 0.016053 0)
(-0.0746666 0.0116282 0)
(-0.0800349 0.00493658 0)
(-0.0826844 -0.00355168 0)
(-0.0823637 -0.0131048 0)
(-0.079187 -0.0229123 0)
(-0.0735678 -0.032256 0)
(-0.0660925 -0.040613 0)
(-0.0573916 -0.0476859 0)
(-0.0480449 -0.053374 0)
(-0.038537 -0.0577172 0)
(-0.029226 -0.0608496 0)
(-0.0203624 -0.0629464 0)
(-0.0120994 -0.0641953 0)
(-0.00451228 -0.0647749 0)
(-6.48924e-05 0.000140039 0)
(-0.000280562 0.000204153 0)
(-0.000617895 0.000377423 0)
(-0.00118288 0.000694545 0)
(-0.00209876 0.00121971 0)
(-0.0035104 0.00203215 0)
(-0.00557864 0.0032177 0)
(-0.00846903 0.00485505 0)
(-0.0123375 0.00699423 0)
(-0.0173142 0.00962471 0)
(-0.0234842 0.0126339 0)
(-0.0308649 0.0157625 0)
(-0.0393693 0.0185729 0)
(-0.0487585 0.0204566 0)
(-0.0585844 0.0207091 0)
(-0.0681616 0.0186831 0)
(-0.0766188 0.0139855 0)
(-0.0830432 0.00663732 0)
(-0.0866882 -0.00288972 0)
(-0.0871545 -0.0137834 0)
(-0.0844558 -0.0251053 0)
(-0.0789723 -0.0359925 0)
(-0.0713147 -0.045799 0)
(-0.0621741 -0.054143 0)
(-0.0522053 -0.0608799 0)
(-0.0419658 -0.0660389 0)
(-0.031875 -0.0697672 0)
(-0.0222304 -0.0722663 0)
(-0.013217 -0.0737562 0)
(-0.00493042 -0.074448 0)
(-6.26925e-05 0.000151441 0)
(-0.000271793 0.000222287 0)
(-0.00059843 0.000410938 0)
(-0.00114551 0.000756237 0)
(-0.00203246 0.00132812 0)
(-0.00339987 0.00221304 0)
(-0.00540444 0.00350501 0)
(-0.00820902 0.00529126 0)
(-0.0119709 0.00762999 0)
(-0.0168291 0.0105175 0)
(-0.0228915 0.0138449 0)
(-0.0302169 0.0173502 0)
(-0.0387811 0.0205787 0)
(-0.0484235 0.0228803 0)
(-0.0587696 0.0234716 0)
(-0.0691689 0.0215899 0)
(-0.078712 0.0167127 0)
(-0.086364 0.00876211 0)
(-0.0911979 -0.00181405 0)
(-0.0926325 -0.0141332 0)
(-0.0905497 -0.0271173 0)
(-0.0852775 -0.0397358 0)
(-0.0774469 -0.0511928 0)
(-0.0678176 -0.0609996 0)
(-0.0571323 -0.0689529 0)
(-0.0460371 -0.0750632 0)
(-0.0350261 -0.0794892 0)
(-0.0244548 -0.0824608 0)
(-0.0145489 -0.0842338 0)
(-0.00542897 -0.0850575 0)
(-6.03225e-05 0.000162438 0)
(-0.000262292 0.000239815 0)
(-0.000577338 0.00044333 0)
(-0.00110502 0.000815861 0)
(-0.0019606 0.00143291 0)
(-0.00328004 0.00238795 0)
(-0.00521543 0.00378306 0)
(-0.00792647 0.00571409 0)
(-0.0115712 0.00824807 0)
(-0.0162974 0.0113899 0)
(-0.0222355 0.0150382 0)
(-0.0294866 0.0189341 0)
(-0.0380932 0.0226148 0)
(-0.0479824 0.0253969 0)
(-0.0588691 0.0264221 0)
(-0.0701579 0.024803 0)
(-0.0809162 0.0198621 0)
(-0.0899848 0.011385 0)
(-0.0962326 -0.000237399 0)
(-0.0988546 -0.0140708 0)
(-0.0975625 -0.0288854 0)
(-0.0926048 -0.0434566 0)
(-0.0846255 -0.0568057 0)
(-0.0744599 -0.0683083 0)
(-0.0629548 -0.0776833 0)
(-0.0508625 -0.0849121 0)
(-0.0387684 -0.0901621 0)
(-0.0271003 -0.0936932 0)
(-0.0161342 -0.0958024 0)
(-0.00602257 -0.0967827 0)
(-5.77876e-05 0.000173007 0)
(-0.000252087 0.00025669 0)
(-0.000554677 0.000474507 0)
(-0.0010615 0.000873254 0)
(-0.00188339 0.0015338 0)
(-0.00315122 0.00255642 0)
(-0.00501208 0.00405109 0)
(-0.007622 0.00612234 0)
(-0.0111392 0.0088467 0)
(-0.0157195 0.0122394 0)
(-0.021515 0.0162101 0)
(-0.0286695 0.0205099 0)
(-0.0372952 0.0246772 0)
(-0.0474151 0.0280062 0)
(-0.0588514 0.0295702 0)
(-0.0710883 0.028351 0)
(-0.0831926 0.0234891 0)
(-0.0938854 0.0145899 0)
(-0.101807 0.00194147 0)
(-0.105883 -0.0134935 0)
(-0.105603 -0.0303281 0)
(-0.101098 -0.0471119 0)
(-0.0930147 -0.0626424 0)
(-0.0822697 -0.076124 0)
(-0.0698315 -0.0871724 0)
(-0.0565802 -0.0957264 0)
(-0.0432133 -0.101957 0)
(-0.0302472 -0.106156 0)
(-0.0180216 -0.108668 0)
(-0.00672952 -0.109836 0)
(-5.50942e-05 0.000183119 0)
(-0.000241205 0.000272862 0)
(-0.000530508 0.000504383 0)
(-0.00101509 0.000928259 0)
(-0.00180101 0.00163051 0)
(-0.00301374 0.00271798 0)
(-0.00479489 0.00430835 0)
(-0.00729626 0.00651489 0)
(-0.0106755 0.00942412 0)
(-0.0150955 0.0130633 0)
(-0.0207289 0.017357 0)
(-0.0277613 0.0220725 0)
(-0.0363761 0.0267601 0)
(-0.0467 0.0307048 0)
(-0.0586808 0.0329221 0)
(-0.0719122 0.0322605 0)
(-0.0854917 0.0276521 0)
(-0.0980343 0.0184714 0)
(-0.107932 0.00484495 0)
(-0.113785 -0.0122739 0)
(-0.114795 -0.0313394 0)
(-0.11093 -0.0506404 0)
(-0.102814 -0.0686995 0)
(-0.0914527 -0.0845041 0)
(-0.0779579 -0.0975349 0)
(-0.063362 -0.10767 0)
(-0.0484993 -0.115077 0)
(-0.0339962 -0.12008 0)
(-0.0202726 -0.123077 0)
(-0.00757302 -0.124472 0)
(-5.22477e-05 0.000192744 0)
(-0.000229678 0.000288288 0)
(-0.000504898 0.000532879 0)
(-0.00096591 0.000980722 0)
(-0.0017137 0.00172277 0)
(-0.00286797 0.00287217 0)
(-0.00456441 0.00455411 0)
(-0.00695001 0.00689055 0)
(-0.010181 0.00997853 0)
(-0.014426 0.013859 0)
(-0.0198765 0.0184745 0)
(-0.0267581 0.0236157 0)
(-0.035325 0.0288558 0)
(-0.0458143 0.033486 0)
(-0.0583179 0.0364795 0)
(-0.0725734 0.0365545 0)
(-0.0877506 0.032411 0)
(-0.102385 0.0231353 0)
(-0.114607 0.00861816 0)
(-0.122629 -0.0102527 0)
(-0.125284 -0.0317823 0)
(-0.122303 -0.0539566 0)
(-0.114262 -0.0749605 0)
(-0.10226 -0.0935063 0)
(-0.0875746 -0.108899 0)
(-0.0714212 -0.120931 0)
(-0.0548003 -0.12976 0)
(-0.0384747 -0.13574 0)
(-0.022965 -0.139328 0)
(-0.00858224 -0.140999 0)
(-4.92548e-05 0.000201866 0)
(-0.000217536 0.000302927 0)
(-0.000477917 0.000559913 0)
(-0.000914089 0.0010305 0)
(-0.00162169 0.00181032 0)
(-0.00271429 0.00301858 0)
(-0.00432123 0.00478767 0)
(-0.00658407 0.00724822 0)
(-0.00965662 0.0105082 0)
(-0.0137118 0.0146234 0)
(-0.0189575 0.019558 0)
(-0.0256562 0.0251325 0)
(-0.0341316 0.0309545 0)
(-0.0447346 0.0363393 0)
(-0.0577195 0.0402388 0)
(-0.0730064 0.0412512 0)
(-0.0898908 0.0378261 0)
(-0.106873 0.0286994 0)
(-0.121817 0.0134327 0)
(-0.132484 -0.00723428 0)
(-0.137231 -0.0314801 0)
(-0.135458 -0.0569436 0)
(-0.127649 -0.0813921 0)
(-0.114999 -0.103188 0)
(-0.0989791 -0.121409 0)
(-0.0810242 -0.135733 0)
(-0.0623357 -0.146291 0)
(-0.0438443 -0.153466 0)
(-0.026198 -0.157782 0)
(-0.0097947 -0.159793 0)
(-4.61191e-05 0.000210469 0)
(-0.000204814 0.000316738 0)
(-0.000449637 0.000585413 0)
(-0.00085977 0.00107746 0)
(-0.00152523 0.00189294 0)
(-0.00255312 0.0031568 0)
(-0.00406597 0.00500837 0)
(-0.00619929 0.00758682 0)
(-0.00910346 0.0110112 0)
(-0.0129538 0.0153536 0)
(-0.0179718 0.0206027 0)
(-0.0244528 0.0266149 0)
(-0.032786 0.0330442 0)
(-0.0434372 0.0392502 0)
(-0.056839 0.0441895 0)
(-0.0731358 0.0463617 0)
(-0.0918151 0.0439553 0)
(-0.111407 0.0352928 0)
(-0.129528 0.0194914 0)
(-0.143418 -0.00297652 0)
(-0.150822 -0.0302044 0)
(-0.150685 -0.0594431 0)
(-0.143327 -0.0879379 0)
(-0.130045 -0.113603 0)
(-0.112539 -0.135226 0)
(-0.0925054 -0.152333 0)
(-0.0713848 -0.16501 0)
(-0.0503137 -0.173663 0)
(-0.0301012 -0.178883 0)
(-0.0112596 -0.181319 0)
(-4.2848e-05 0.000218528 0)
(-0.000191546 0.000329681 0)
(-0.000420139 0.000609311 0)
(-0.000803105 0.00112147 0)
(-0.00142458 0.00197038 0)
(-0.00238489 0.00328642 0)
(-0.00379931 0.00521556 0)
(-0.00579665 0.00790528 0)
(-0.00852274 0.011486 0)
(-0.0121534 0.0160468 0)
(-0.01692 0.0216034 0)
(-0.0231459 0.028054 0)
(-0.0312795 0.0351108 0)
(-0.0418989 0.0421991 0)
(-0.0556273 0.0483132 0)
(-0.0728761 0.0518865 0)
(-0.093404 0.0508505 0)
(-0.115864 0.0430537 0)
(-0.137671 0.027032 0)
(-0.155485 0.0028325 0)
(-0.166266 -0.0276587 0)
(-0.168325 -0.0612428 0)
(-0.161721 -0.0945105 0)
(-0.147856 -0.124798 0)
(-0.128709 -0.150525 0)
(-0.106284 -0.171027 0)
(-0.0823057 -0.186321 0)
(-0.0581556 -0.196821 0)
(-0.0348464 -0.203182 0)
(-0.0130425 -0.206157 0)
(-3.94451e-05 0.000226034 0)
(-0.00017777 0.000341724 0)
(-0.0003895 0.000631539 0)
(-0.000744248 0.00116241 0)
(-0.00132002 0.00204244 0)
(-0.00221005 0.00340708 0)
(-0.00352195 0.00540862 0)
(-0.00537716 0.00820258 0)
(-0.0079158 0.0119307 0)
(-0.0113119 0.0166998 0)
(-0.0158032 0.0225546 0)
(-0.0217343 0.0294402 0)
(-0.0296049 0.037138 0)
(-0.0400981 0.0451616 0)
(-0.0540336 0.0525819 0)
(-0.0721321 0.0578132 0)
(-0.0945136 0.0585526 0)
(-0.120078 0.0521264 0)
(-0.146133 0.0363319 0)
(-0.168718 0.0105638 0)
(-0.183798 -0.0234585 0)
(-0.188787 -0.0620601 0)
(-0.183344 -0.100984 0)
(-0.168987 -0.13681 0)
(-0.148045 -0.167495 0)
(-0.12289 -0.192151 0)
(-0.0955647 -0.210701 0)
(-0.0677368 -0.22354 0)
(-0.0406698 -0.231368 0)
(-0.0152345 -0.235045 0)
(-3.59117e-05 0.00023298 0)
(-0.000163525 0.000352828 0)
(-0.000357804 0.000652032 0)
(-0.000683356 0.00120016 0)
(-0.00121184 0.00210891 0)
(-0.00202907 0.00351845 0)
(-0.00323463 0.005587 0)
(-0.0049419 0.00847778 0)
(-0.00728411 0.0123437 0)
(-0.0104313 0.0173096 0)
(-0.0146229 0.0234508 0)
(-0.0202183 0.0307632 0)
(-0.0277568 0.0391076 0)
(-0.0380151 0.0481081 0)
(-0.0520073 0.0569571 0)
(-0.0707997 0.0641123 0)
(-0.0949723 0.0670852 0)
(-0.123834 0.0626552 0)
(-0.154741 0.0477111 0)
(-0.183112 0.0206944 0)
(-0.203675 -0.0171033 0)
(-0.212571 -0.0615213 0)
(-0.208827 -0.107188 0)
(-0.19411 -0.149661 0)
(-0.171224 -0.186332 0)
(-0.142985 -0.216072 0)
(-0.111776 -0.238703 0)
(-0.0795638 -0.254553 0)
(-0.0479146 -0.264323 0)
(-0.0179737 -0.268948 0)
(-3.22506e-05 0.000239362 0)
(-0.000148849 0.000362968 0)
(-0.00032514 0.000670739 0)
(-0.000620601 0.00123462 0)
(-0.00110031 0.0021696 0)
(-0.00184245 0.00362019 0)
(-0.00293812 0.00575014 0)
(-0.00449204 0.00872995 0)
(-0.0066293 0.0127234 0)
(-0.00951353 0.0178733 0)
(-0.0133816 0.0242863 0)
(-0.018599 0.0320122 0)
(-0.0257326 0.0409993 0)
(-0.035634 0.0510038 0)
(-0.0494996 0.0613878 0)
(-0.0687679 0.0707329 0)
(-0.09458 0.076445 0)
(-0.126851 0.0747732 0)
(-0.163228 0.0615311 0)
(-0.198599 0.0338182 0)
(-0.226187 -0.00792545 0)
(-0.240296 -0.0591283 0)
(-0.238936 -0.112903 0)
(-0.224022 -0.163363 0)
(-0.199048 -0.207228 0)
(-0.167395 -0.24316 0)
(-0.131762 -0.270938 0)
(-0.0943582 -0.29074 0)
(-0.057114 -0.303169 0)
(-0.0214956 -0.309177 0)
(-2.84629e-05 0.000245183 0)
(-0.000133784 0.000372118 0)
(-0.000291599 0.000687611 0)
(-0.000556151 0.0012657 0)
(-0.000985762 0.00222435 0)
(-0.00165069 0.00371202 0)
(-0.00263323 0.00589754 0)
(-0.00402879 0.00895824 0)
(-0.00595314 0.0130683 0)
(-0.00856107 0.0183881 0)
(-0.0120822 0.0250557 0)
(-0.0168795 0.0331762 0)
(-0.0235321 0.0427918 0)
(-0.0329436 0.053809 0)
(-0.0464664 0.0658102 0)
(-0.0659224 0.0775987 0)
(-0.0931082 0.086591 0)
(-0.128774 0.0885859 0)
(-0.171209 0.0781888 0)
(-0.215005 0.0506785 0)
(-0.251648 0.00497708 0)
(-0.27275 -0.0542255 0)
(-0.274615 -0.117883 0)
(-0.259652 -0.177932 0)
(-0.232428 -0.230366 0)
(-0.197105 -0.273715 0)
(-0.156659 -0.308026 0)
(-0.113144 -0.333125 0)
(-0.0691983 -0.349296 0)
(-0.0263272 -0.35765 0)
(-2.45459e-05 0.000250458 0)
(-0.000118371 0.000380246 0)
(-0.00025727 0.000702599 0)
(-0.00049018 0.00129332 0)
(-0.000868493 0.00227301 0)
(-0.00145431 0.00379368 0)
(-0.00232078 0.00602878 0)
(-0.00355343 0.00916187 0)
(-0.00525749 0.0133769 0)
(-0.00757661 0.0188511 0)
(-0.0107283 0.0257533 0)
(-0.015064 0.034244 0)
(-0.0211586 0.0444626 0)
(-0.0299388 0.0564798 0)
(-0.0428712 0.0701469 0)
(-0.0621507 0.0846038 0)
(-0.0903038 0.0974312 0)
(-0.129158 0.104148 0)
(-0.17813 0.0980994 0)
(-0.231978 0.0722002 0)
(-0.280356 0.0228469 0)
(-0.310999 -0.0459248 0)
(-0.317054 -0.121912 0)
(-0.302043 -0.193406 0)
(-0.272312 -0.255987 0)
(-0.233117 -0.307785 0)
(-0.188235 -0.350364 0)
(-0.136874 -0.383031 0)
(-0.0858549 -0.40378 0)
(-0.0340627 -0.417672 0)
(-2.04946e-05 0.000255194 0)
(-0.000102654 0.000387331 0)
(-0.00022225 0.000715662 0)
(-0.000422873 0.00131739 0)
(-0.000748831 0.00231543 0)
(-0.00125387 0.00386492 0)
(-0.00200166 0.00614341 0)
(-0.0030673 0.00934012 0)
(-0.00454442 0.0136479 0)
(-0.00656318 0.0192599 0)
(-0.00932433 0.0263739 0)
(-0.0131586 0.0352046 0)
(-0.0186191 0.0459887 0)
(-0.0266226 0.0589686 0)
(-0.0386892 0.074306 0)
(-0.0573488 0.0916091 0)
(-0.0858988 0.108806 0)
(-0.127466 0.121426 0)
(-0.183218 0.121656 0)
(-0.248872 0.0995102 0)
(-0.312541 0.0474521 0)
(-0.356598 -0.0329438 0)
(-0.367731 -0.125029 0)
(-0.352245 -0.209749 0)
(-0.319565 -0.284843 0)
(-0.274406 -0.345185 0)
(-0.224295 -0.396249 0)
(-0.15729 -0.445387 0)
(-0.0992021 -0.463916 0)
(-0.0434555 -0.495011 0)
(-1.63007e-05 0.000259405 0)
(-8.66757e-05 0.000393351 0)
(-0.000186635 0.000726761 0)
(-0.000354415 0.00133785 0)
(-0.000627104 0.00235149 0)
(-0.0010499 0.00392552 0)
(-0.00167675 0.00624109 0)
(-0.0025718 0.00949235 0)
(-0.00381605 0.0138801 0)
(-0.00552409 0.019612 0)
(-0.00787541 0.0269126 0)
(-0.0111709 0.0360476 0)
(-0.0159242 0.0473476 0)
(-0.0230068 0.0612264 0)
(-0.0339118 0.0781829 0)
(-0.0514294 0.0984421 0)
(-0.0796258 0.120471 0)
(-0.123065 0.140255 0)
(-0.185423 0.149164 0)
(-0.264581 0.133925 0)
(-0.348133 0.0813768 0)
(-0.412075 -0.0132244 0)
(-0.428544 -0.128383 0)
(-0.410178 -0.226323 0)
(-0.369267 -0.323253 0)
(-0.283848 -0.396414 0)
(-0.150153 -0.469619 0)
(-0.0386532 -0.536555 0)
(-0.0193507 -0.507167 0)
(-0.0100928 -0.55523 0)
(-1.19472e-05 0.000263105 0)
(-7.04782e-05 0.000398288 0)
(-0.000150523 0.000735866 0)
(-0.000284988 0.00135464 0)
(-0.000503642 0.00238109 0)
(-0.000842974 0.00397532 0)
(-0.00134695 0.00632148 0)
(-0.00206836 0.00961801 0)
(-0.00307464 0.0140726 0)
(-0.00446286 0.0199054 0)
(-0.00638717 0.0273649 0)
(-0.00911008 0.036763 0)
(-0.0130884 0.0485177 0)
(-0.0191131 0.0632046 0)
(-0.028551 0.0816607 0)
(-0.0443304 0.1049 0)
(-0.0712452 0.132084 0)
(-0.115247 0.160283 0)
(-0.183364 0.180727 0)
(-0.277314 0.176852 0)
(-0.386151 0.128329 0)
(-0.481836 0.0174291 0)
(-0.502191 -0.137326 0)
(-0.460503 -0.247027 0)
(-0.376047 -0.408209 0)
(-0.235907 -0.47461 0)
(-0.214241 -0.608465 0)
(-0.18144 -0.541008 0)
(-0.0892629 -0.54938 0)
(-0.025532 -0.574023 0)
(-7.41048e-06 0.000266305 0)
(-5.41063e-05 0.000402124 0)
(-0.000114012 0.000742954 0)
(-0.000214784 0.00136771 0)
(-0.000378783 0.00240413 0)
(-0.000633657 0.00401413 0)
(-0.00101319 0.00638433 0)
(-0.00155846 0.00971661 0)
(-0.00232253 0.0142243 0)
(-0.00338331 0.0201382 0)
(-0.00486598 0.0277268 0)
(-0.00698692 0.0373423 0)
(-0.0101299 0.049479 0)
(-0.0149742 0.0648579 0)
(-0.0226468 0.0846125 0)
(-0.0360193 0.110754 0)
(-0.0605893 0.143183 0)
(-0.103267 0.180908 0)
(-0.175307 0.216094 0)
(-0.284172 0.229359 0)
(-0.42181 0.194225 0)
(-0.573095 0.0798885 0)
(-0.616863 -0.157733 0)
(-0.55303 -0.318301 0)
(-0.455308 -0.450132 0)
(-0.377922 -0.547291 0)
(-0.265479 -0.645655 0)
(-0.17846 -0.645531 0)
(-0.105538 -0.645678 0)
(-0.0390879 -0.64969 0)
(-2.65975e-06 0.000268968 0)
(-3.76033e-05 0.000404847 0)
(-7.72037e-05 0.000748004 0)
(-0.000143995 0.00137702 0)
(-0.000252867 0.00242055 0)
(-0.000422517 0.00404184 0)
(-0.00067642 0.00642939 0)
(-0.0010436 0.00978777 0)
(-0.00156214 0.0143345 0)
(-0.00228943 0.0203091 0)
(-0.00331864 0.0279952 0)
(-0.00481337 0.037778 0)
(-0.00707027 0.0502148 0)
(-0.0106323 0.0661504 0)
(-0.0162762 0.0869101 0)
(-0.0264825 0.115786 0)
(-0.0476371 0.153211 0)
(-0.0864042 0.201362 0)
(-0.158855 0.254681 0)
(-0.265431 0.289659 0)
(-0.479271 0.299918 0)
(-0.536498 0.274372 0)
(-0.889882 -0.0824377 0)
(-0.793658 -0.461895 0)
(-0.543309 -0.564655 0)
(-0.416186 -0.649746 0)
(-0.286092 -0.70532 0)
(-0.193651 -0.740182 0)
(-0.116329 -0.735092 0)
(-0.0425967 -0.734603 0)
(-6.56037e-06 0.000230335 0)
(-2.10212e-05 0.000406311 0)
(-4.02119e-05 0.000750797 0)
(-7.2833e-05 0.0013823 0)
(-0.000126261 0.00243017 0)
(-0.000210169 0.00405901 0)
(-0.000337636 0.00645945 0)
(-0.000525425 0.00983931 0)
(-0.000796176 0.0144212 0)
(-0.00118578 0.0204538 0)
(-0.00175316 0.0282352 0)
(-0.00260384 0.0381794 0)
(-0.00393592 0.050897 0)
(-0.0061389 0.0673448 0)
(-0.00957144 0.0888555 0)
(-0.015684 0.120405 0)
(-0.0325072 0.162066 0)
(-0.0607693 0.220788 0)
(-0.128377 0.29429 0)
(-0.25622 0.366322 0)
(-0.426185 0.409762 0)
(-0.697865 0.322846 0)
(-1.29656 0.232387 0)
(-0.678746 -0.430308 0)
(-0.672952 -0.809767 0)
(-0.392195 -0.771308 0)
(-0.320489 -0.820198 0)
(-0.217052 -0.834829 0)
(-0.123408 -0.827384 0)
(-0.0427818 -0.831098 0)
(0.000401122 -0.000406077 0)
(0.0038161 -0.000404746 0)
(0.0075746 -0.000400641 0)
(0.0116714 -0.000392283 0)
(0.0160844 -0.000378733 0)
(0.0207614 -0.000358967 0)
(0.0256149 -0.000331942 0)
(0.0305058 -0.000296934 0)
(0.0352464 -0.000253643 0)
(0.039589 -0.000202643 0)
(0.043244 -0.000145513 0)
(0.045899 -8.5082e-05 0)
(0.0472619 -2.53508e-05 0)
(0.0471171 2.89039e-05 0)
(0.0453818 7.3153e-05 0)
(0.0421483 0.00010385 0)
(0.0376893 0.000119523 0)
(0.0324186 0.00012115 0)
(0.026812 0.000111792 0)
(0.021321 9.55833e-05 0)
(0.0163009 7.65786e-05 0)
(0.0119782 5.79346e-05 0)
(0.00845063 4.15875e-05 0)
(0.00571333 2.83975e-05 0)
(0.00369084 1.84496e-05 0)
(0.00226913 1.13881e-05 0)
(0.00131999 6.66649e-06 0)
(0.000718954 3.70421e-06 0)
(0.000355603 1.98777e-06 0)
(0.000136765 1.12781e-06 0)
(0.00177765 -0.00648771 0)
(0.00677994 -0.00645093 0)
(0.0122734 -0.00636036 0)
(0.0182461 -0.00620108 0)
(0.0246562 -0.0059558 0)
(0.0314159 -0.00560751 0)
(0.0383844 -0.00513994 0)
(0.0453416 -0.00454236 0)
(0.0519948 -0.00381263 0)
(0.0579684 -0.0029632 0)
(0.0628286 -0.00202508 0)
(0.066124 -0.00105061 0)
(0.0674538 -0.000110726 0)
(0.0665551 0.000715045 0)
(0.0633842 0.00135435 0)
(0.058163 0.00176049 0)
(0.0513631 0.00192522 0)
(0.0436261 0.00187981 0)
(0.0356354 0.00168335 0)
(0.0279965 0.00140392 0)
(0.0211544 0.00110149 0)
(0.0153658 0.00081846 0)
(0.010715 0.000578237 0)
(0.00715767 0.000389059 0)
(0.00456541 0.000249178 0)
(0.00276826 0.00015164 0)
(0.00158525 8.75185e-05 0)
(0.000846089 4.8048e-05 0)
(0.00040285 2.57923e-05 0)
(0.000130932 1.5402e-05 0)
(0.00180594 -0.0127817 0)
(0.00688749 -0.0127087 0)
(0.0124673 -0.0125294 0)
(0.0185314 -0.0122141 0)
(0.0250359 -0.0117288 0)
(0.0318883 -0.0110394 0)
(0.0389425 -0.0101141 0)
(0.045971 -0.00893189 0)
(0.0526722 -0.00748873 0)
(0.0586621 -0.00580962 0)
(0.0634999 -0.00395687 0)
(0.0667313 -0.0020347 0)
(0.0679594 -0.000184223 0)
(0.066933 0.00143759 0)
(0.063626 0.0026881 0)
(0.0582801 0.00347716 0)
(0.0513825 0.00379094 0)
(0.043582 0.00369326 0)
(0.0355603 0.00330171 0)
(0.0279151 0.0027502 0)
(0.0210813 0.00215583 0)
(0.0153074 0.00160091 0)
(0.0106721 0.00113059 0)
(0.0071282 0.000760516 0)
(0.00454636 0.000487013 0)
(0.00275664 0.000296353 0)
(0.00157858 0.000171032 0)
(0.000842535 9.38952e-05 0)
(0.000401165 5.04039e-05 0)
(0.000130389 3.01001e-05 0)
(0.00185331 -0.019208 0)
(0.00706769 -0.0190971 0)
(0.0127915 -0.0188255 0)
(0.0190086 -0.0183468 0)
(0.0256702 -0.0176107 0)
(0.0326775 -0.0165653 0)
(0.0398744 -0.0151631 0)
(0.0470209 -0.0133729 0)
(0.0538013 -0.0111901 0)
(0.0598168 -0.00865407 0)
(0.0646151 -0.00586129 0)
(0.0677376 -0.00297119 0)
(0.0687943 -0.000198073 0)
(0.067554 0.00222187 0)
(0.0640205 0.00407668 0)
(0.0584681 0.0052356 0)
(0.0514098 0.00568348 0)
(0.0435058 0.00552042 0)
(0.0354343 0.00492452 0)
(0.0277795 0.00409572 0)
(0.0209601 0.00320729 0)
(0.0152108 0.00238018 0)
(0.0106013 0.00168027 0)
(0.00707959 0.00113002 0)
(0.00451494 0.000723547 0)
(0.00273748 0.000440257 0)
(0.00156759 0.000254076 0)
(0.000836676 0.000139483 0)
(0.000398389 7.48776e-05 0)
(0.000129493 4.47184e-05 0)
(0.00192063 -0.0258356 0)
(0.00732443 -0.0256846 0)
(0.0132535 -0.025314 0)
(0.0196884 -0.0246614 0)
(0.0265737 -0.0236578 0)
(0.0338006 -0.0222336 0)
(0.0411993 -0.020325 0)
(0.048512 -0.0178913 0)
(0.0554022 -0.0149287 0)
(0.0614505 -0.0114943 0)
(0.0661885 -0.00772299 0)
(0.0691524 -0.00383458 0)
(0.0699629 -0.000120996 0)
(0.0684179 0.00309962 0)
(0.0645644 0.00554771 0)
(0.0587228 0.00705648 0)
(0.0514411 0.00761584 0)
(0.0433948 0.00736776 0)
(0.035256 0.00655379 0)
(0.0275895 0.00544005 0)
(0.020791 0.00425446 0)
(0.0150763 0.00315473 0)
(0.0105027 0.002226 0)
(0.00701202 0.00149663 0)
(0.00447129 0.000958161 0)
(0.00271086 0.000582971 0)
(0.00155232 0.000336427 0)
(0.000828536 0.000184688 0)
(0.000394533 9.91455e-05 0)
(0.000128249 5.92152e-05 0)
(0.00200974 -0.0327381 0)
(0.00766376 -0.0325434 0)
(0.0138642 -0.0320652 0)
(0.0205863 -0.0312233 0)
(0.0277663 -0.0299295 0)
(0.0352819 -0.0280949 0)
(0.0429448 -0.0256391 0)
(0.0504729 -0.0225128 0)
(0.0575029 -0.0187154 0)
(0.0635881 -0.014326 0)
(0.0682396 -0.00952393 0)
(0.0709879 -0.00459661 0)
(0.0714696 8.03194e-05 0)
(0.0695226 0.0041041 0)
(0.0652516 0.00712944 0)
(0.0590367 0.00896035 0)
(0.0514702 0.00960055 0)
(0.0432447 0.00924125 0)
(0.0350229 0.00819113 0)
(0.0273438 0.00678249 0)
(0.0205736 0.00529577 0)
(0.0149039 0.00392296 0)
(0.0103766 0.00276645 0)
(0.00692565 0.00185941 0)
(0.0044155 0.00119022 0)
(0.00267685 0.000724106 0)
(0.00153281 0.000417861 0)
(0.00081814 0.000229388 0)
(0.000389607 0.000123142 0)
(0.000126661 7.35515e-05 0)
(0.00212266 -0.039995 0)
(0.00809376 -0.0397519 0)
(0.0146378 -0.0391547 0)
(0.0217234 -0.0381037 0)
(0.0292754 -0.0364895 0)
(0.0371541 -0.0342029 0)
(0.0451473 -0.0311466 0)
(0.0529423 -0.0272636 0)
(0.0601408 -0.0225598 0)
(0.0662624 -0.017142 0)
(0.0707935 -0.0112425 0)
(0.0732593 -0.00522521 0)
(0.0733193 0.000442553 0)
(0.0708649 0.00527061 0)
(0.0660738 0.00885101 0)
(0.0594001 0.0109677 0)
(0.0514886 0.0116496 0)
(0.0430497 0.0111463 0)
(0.0347319 0.00983773 0)
(0.0270412 0.0081221 0)
(0.0203076 0.00632958 0)
(0.0146938 0.00468322 0)
(0.0102232 0.00330032 0)
(0.00682067 0.0022174 0)
(0.00434774 0.00141911 0)
(0.00263555 0.000863273 0)
(0.00150913 0.000498149 0)
(0.000805516 0.000273458 0)
(0.000383626 0.000146799 0)
(0.000124731 8.76897e-05 0)
(0.0022623 -0.0476953 0)
(0.00862497 -0.0473976 0)
(0.0155931 -0.0466667 0)
(0.0231266 -0.0453809 0)
(0.0311359 -0.0434079 0)
(0.0394593 -0.0406161 0)
(0.0478542 -0.0368913 0)
(0.0559693 -0.0321702 0)
(0.0633634 -0.0264696 0)
(0.0695149 -0.0199319 0)
(0.0738815 -0.0128523 0)
(0.0759852 -0.00568335 0)
(0.075518 0.00100678 0)
(0.0724399 0.00663728 0)
(0.0670201 0.0107427 0)
(0.0598008 0.0130991 0)
(0.051486 0.0137746 0)
(0.0428029 0.0130877 0)
(0.0343793 0.0114944 0)
(0.0266801 0.00945775 0)
(0.0199926 0.00735416 0)
(0.014446 0.00543388 0)
(0.0100427 0.0038263 0)
(0.0066973 0.0025697 0)
(0.00426816 0.00164422 0)
(0.00258705 0.00100011 0)
(0.00148132 0.000577081 0)
(0.000790698 0.000316779 0)
(0.000376607 0.000170055 0)
(0.000122467 0.000101592 0)
(0.0024318 -0.0559381 0)
(0.00927059 -0.0555783 0)
(0.0167537 -0.0546952 0)
(0.0248303 -0.0531423 0)
(0.0333926 -0.0507617 0)
(0.0422508 -0.0473982 0)
(0.0511249 -0.0429196 0)
(0.0596158 -0.037259 0)
(0.0672299 -0.0304498 0)
(0.0733965 -0.0226797 0)
(0.0775414 -0.0143207 0)
(0.0791871 -0.0059278 0)
(0.078071 0.00181904 0)
(0.0742403 0.00824526 0)
(0.0680762 0.0128359 0)
(0.0602235 0.0153747 0)
(0.0514501 0.0159858 0)
(0.0424963 0.0150692 0)
(0.0339607 0.0131611 0)
(0.0262587 0.0107879 0)
(0.0196283 0.00836758 0)
(0.0141607 0.00617321 0)
(0.00983548 0.00434306 0)
(0.00655585 0.00291536 0)
(0.00417696 0.00186494 0)
(0.00253149 0.00113423 0)
(0.00144947 0.00065444 0)
(0.000773727 0.000359234 0)
(0.000368568 0.000192845 0)
(0.000119875 0.00011522 0)
(0.00263599 -0.0648364 0)
(0.0100473 -0.0644052 0)
(0.0181495 -0.0633464 0)
(0.0268776 -0.0614862 0)
(0.0361009 -0.0586375 0)
(0.045595 -0.0546193 0)
(0.0550332 -0.0492813 0)
(0.0639579 -0.0425564 0)
(0.0718125 -0.0345018 0)
(0.0779688 -0.0253635 0)
(0.0818179 -0.0156068 0)
(0.0828893 -0.0059071 0)
(0.0809826 0.00293151 0)
(0.0762558 0.0101394 0)
(0.0692244 0.0151632 0)
(0.0606498 0.0178141 0)
(0.0513663 0.0182928 0)
(0.0421205 0.0170937 0)
(0.0334713 0.0148373 0)
(0.0257753 0.0121106 0)
(0.0192143 0.00936778 0)
(0.0138383 0.00689947 0)
(0.00960187 0.00484929 0)
(0.00639663 0.00325347 0)
(0.00407439 0.00208067 0)
(0.00246903 0.00126527 0)
(0.00141367 0.000730011 0)
(0.000754648 0.000400708 0)
(0.000359531 0.000215109 0)
(0.000116961 0.000128538 0)
(0.00288023 -0.0745213 0)
(0.0109763 -0.0740066 0)
(0.0198178 -0.0727433 0)
(0.0293223 -0.0705256 0)
(0.0393304 -0.0671336 0)
(0.0495745 -0.0623579 0)
(0.0596702 -0.0560305 0)
(0.0690892 -0.0480881 0)
(0.0771992 -0.0386222 0)
(0.0833052 -0.0279528 0)
(0.0867627 -0.01666 0)
(0.0871181 -0.00556038 0)
(0.0842556 0.0044039 0)
(0.0784721 0.0123687 0)
(0.0704423 0.0177582 0)
(0.0610579 0.0204362 0)
(0.0512181 0.0207035 0)
(0.0416653 0.0191627 0)
(0.032906 0.0165217 0)
(0.0252278 0.0134237 0)
(0.0187502 0.0103526 0)
(0.0134789 0.00761086 0)
(0.0093423 0.00534368 0)
(0.00622001 0.00358313 0)
(0.00396069 0.00229084 0)
(0.00239982 0.00139289 0)
(0.001374 0.000803589 0)
(0.000733513 0.000441086 0)
(0.000349522 0.000236787 0)
(0.000113734 0.000141513 0)
(0.00317131 -0.0851449 0)
(0.0120835 -0.0845319 0)
(0.021805 -0.0830282 0)
(0.0322315 -0.0803905 0)
(0.043167 -0.0763619 0)
(0.0542906 -0.0707018 0)
(0.0651475 -0.0632251 0)
(0.0751231 -0.0538785 0)
(0.0834951 -0.0428006 0)
(0.0894925 -0.0304064 0)
(0.092435 -0.0174167 0)
(0.0919016 -0.00481512 0)
(0.0878893 0.00630466 0)
(0.080869 0.0149866 0)
(0.0717024 0.0206554 0)
(0.061422 0.0232589 0)
(0.0509867 0.0232241 0)
(0.0411194 0.0212763 0)
(0.0322593 0.0182119 0)
(0.0246141 0.0147243 0)
(0.0182358 0.0113195 0)
(0.0130829 0.00830552 0)
(0.00905729 0.00582489 0)
(0.0060264 0.00390345 0)
(0.00383617 0.00249487 0)
(0.00232405 0.00151672 0)
(0.00133058 0.000874973 0)
(0.000710381 0.000480256 0)
(0.000338569 0.000257816 0)
(0.000110204 0.000154106 0)
(0.00351796 -0.0968867 0)
(0.0134015 -0.096157 0)
(0.024169 -0.0943678 0)
(0.0356878 -0.0912325 0)
(0.0477168 -0.0864513 0)
(0.0598687 -0.0797501 0)
(0.0716017 -0.0709278 0)
(0.0821974 -0.0599497 0)
(0.0908269 -0.0470178 0)
(0.0966326 -0.032669 0)
(0.0989021 -0.0177972 0)
(0.0972671 -0.00358329 0)
(0.0918782 0.00871226 0)
(0.0834196 0.0180513 0)
(0.0729707 0.0238899 0)
(0.0617123 0.0262979 0)
(0.050651 0.0258587 0)
(0.0404708 0.023433 0)
(0.0315255 0.0199045 0)
(0.0239325 0.0160093 0)
(0.0176709 0.012266 0)
(0.0126509 0.00898157 0)
(0.00874738 0.0062916 0)
(0.00581627 0.00421354 0)
(0.00370115 0.0026922 0)
(0.00224192 0.00163643 0)
(0.00128353 0.000943966 0)
(0.000685314 0.000518112 0)
(0.000326701 0.00027814 0)
(0.000106381 0.000166285 0)
(0.00393097 -0.10996 0)
(0.0149709 -0.10909 0)
(0.0269818 -0.106959 0)
(0.0397949 -0.103229 0)
(0.0531117 -0.0975514 0)
(0.0664627 -0.0896152 0)
(0.0791999 -0.0792063 0)
(0.090479 -0.0663194 0)
(0.0993455 -0.0512426 0)
(0.104845 -0.0346674 0)
(0.106238 -0.0177018 0)
(0.103243 -0.00175928 0)
(0.0962093 0.0117167 0)
(0.0860879 0.0216258 0)
(0.0742059 0.0274963 0)
(0.0618943 0.0295667 0)
(0.0501882 0.0286086 0)
(0.0397067 0.0256292 0)
(0.0306989 0.0215953 0)
(0.0231811 0.0172748 0)
(0.0170554 0.0131893 0)
(0.0121833 0.00963706 0)
(0.00841321 0.00674251 0)
(0.00559012 0.00451255 0)
(0.00355597 0.00288228 0)
(0.00215365 0.00175169 0)
(0.00123297 0.00101038 0)
(0.000658381 0.00055455 0)
(0.000313949 0.000297704 0)
(0.000102275 0.000178022 0)
(0.00442396 -0.12462 0)
(0.0168434 -0.123581 0)
(0.0303343 -0.121037 0)
(0.0446818 -0.116591 0)
(0.0595154 -0.109837 0)
(0.0742629 -0.100425 0)
(0.0881465 -0.0881332 0)
(0.100171 -0.0730001 0)
(0.109232 -0.0554277 0)
(0.114267 -0.0363054 0)
(0.114526 -0.0170068 0)
(0.109852 0.000781784 0)
(0.10086 0.0154211 0)
(0.088827 0.0257775 0)
(0.0753585 0.0315083 0)
(0.0619291 0.0330756 0)
(0.0495732 0.0314722 0)
(0.0388139 0.0278594 0)
(0.0297739 0.0232789 0)
(0.0223582 0.0185169 0)
(0.0163896 0.0140866 0)
(0.0116809 0.01027 0)
(0.00805549 0.00717634 0)
(0.00534851 0.00479964 0)
(0.00340101 0.0030646 0)
(0.00205948 0.00186218 0)
(0.00117904 0.00107403 0)
(0.000629656 0.000589469 0)
(0.000300348 0.000316452 0)
(9.78993e-05 0.000189282 0)
(0.00501437 -0.141176 0)
(0.0190837 -0.139931 0)
(0.0343407 -0.136884 0)
(0.0505107 -0.131566 0)
(0.0671316 -0.12351 0)
(0.0835041 -0.112325 0)
(0.0986917 -0.0977851 0)
(0.111517 -0.0799946 0)
(0.120701 -0.0595045 0)
(0.125061 -0.0374566 0)
(0.123852 -0.0155549 0)
(0.11711 0.00419067 0)
(0.105792 0.0199428 0)
(0.0915754 0.0305777 0)
(0.0763688 0.0359569 0)
(0.0617724 0.0368301 0)
(0.0487795 0.0344438 0)
(0.0377792 0.0301157 0)
(0.0287453 0.0249485 0)
(0.0214626 0.0197307 0)
(0.0156738 0.0149546 0)
(0.0111445 0.0108785 0)
(0.00767501 0.00759178 0)
(0.00509204 0.00507399 0)
(0.00323669 0.00323864 0)
(0.00195966 0.0019676 0)
(0.00112189 0.00113474 0)
(0.000599218 0.000622773 0)
(0.000285938 0.000334333 0)
(9.32668e-05 0.000200035 0)
(0.00572456 -0.160006 0)
(0.0217754 -0.158506 0)
(0.0391472 -0.15484 0)
(0.0574867 -0.148454 0)
(0.0762156 -0.138811 0)
(0.0944771 -0.12548 0)
(0.111142 -0.108243 0)
(0.124815 -0.0872931 0)
(0.13401 -0.0633762 0)
(0.137412 -0.0379561 0)
(0.134313 -0.0131492 0)
(0.125021 0.00865108 0)
(0.11095 0.0254146 0)
(0.0942546 0.0361002 0)
(0.0771665 0.0408689 0)
(0.0613754 0.0408303 0)
(0.0477792 0.0375138 0)
(0.0365895 0.0323879 0)
(0.0276081 0.0265964 0)
(0.0204933 0.020911 0)
(0.0149084 0.0157902 0)
(0.0105751 0.0114604 0)
(0.00727263 0.00798758 0)
(0.00482134 0.00533482 0)
(0.00306342 0.00340391 0)
(0.00185446 0.00206766 0)
(0.00106167 0.00119235 0)
(0.000567148 0.000654372 0)
(0.000270759 0.0003513 0)
(8.83924e-05 0.000210256 0)
(0.00658384 -0.181576 0)
(0.0250276 -0.179759 0)
(0.0449429 -0.17532 0)
(0.0658722 -0.167612 0)
(0.0870887 -0.15602 0)
(0.107543 -0.140076 0)
(0.125874 -0.119589 0)
(0.140426 -0.0948682 0)
(0.149468 -0.0669092 0)
(0.151535 -0.0375894 0)
(0.146002 -0.00954336 0)
(0.133572 0.0143803 0)
(0.116251 0.0319853 0)
(0.0967653 0.0424193 0)
(0.0776693 0.0462644 0)
(0.0606846 0.0450694 0)
(0.0465438 0.0406676 0)
(0.0352322 0.0346631 0)
(0.0263582 0.0282137 0)
(0.01945 0.0220525 0)
(0.0140945 0.01659 0)
(0.00997357 0.0120138 0)
(0.00684926 0.00836254 0)
(0.00453711 0.00558137 0)
(0.00288168 0.00355996 0)
(0.00174417 0.00216207 0)
(0.000998552 0.0012467 0)
(0.000533534 0.000684179 0)
(0.00025485 0.000367303 0)
(8.32913e-05 0.00021992 0)
(0.00763177 -0.206471 0)
(0.0289856 -0.204248 0)
(0.0519761 -0.198832 0)
(0.0760049 -0.189465 0)
(0.100156 -0.175459 0)
(0.123146 -0.156322 0)
(0.143344 -0.131905 0)
(0.158788 -0.102668 0)
(0.167445 -0.0699214 0)
(0.167677 -0.0360746 0)
(0.159016 -0.00442959 0)
(0.14272 0.0216385 0)
(0.12158 0.0398189 0)
(0.0989829 0.0496052 0)
(0.0777821 0.0521534 0)
(0.0596424 0.0495311 0)
(0.0450448 0.0438849 0)
(0.0336959 0.0369256 0)
(0.0249924 0.0297904 0)
(0.0183326 0.023149 0)
(0.0132331 0.0173506 0)
(0.00934136 0.0125367 0)
(0.00640596 0.00871542 0)
(0.00424009 0.00581291 0)
(0.00269194 0.00370634 0)
(0.00162908 0.00225058 0)
(0.000932699 0.00129764 0)
(0.000498473 0.000712114 0)
(0.000238254 0.000382299 0)
(7.79795e-05 0.000229 0)
(0.00892384 -0.235432 0)
(0.0338509 -0.23268 0)
(0.0605841 -0.226 0)
(0.0883291 -0.214522 0)
(0.115931 -0.1975 0)
(0.141837 -0.174444 0)
(0.164112 -0.145269 0)
(0.180432 -0.110613 0)
(0.188387 -0.0721685 0)
(0.186125 -0.0330449 0)
(0.173436 0.00258996 0)
(0.152381 0.0307357 0)
(0.126777 0.0490925 0)
(0.100753 0.0577206 0)
(0.0773968 0.0585326 0)
(0.0581881 0.0541888 0)
(0.0432548 0.0471397 0)
(0.0319707 0.0391571 0)
(0.0235086 0.0313152 0)
(0.0171421 0.0241944 0)
(0.0123257 0.0180685 0)
(0.00867985 0.013027 0)
(0.00594383 0.00904508 0)
(0.00393106 0.00602874 0)
(0.00249472 0.00384264 0)
(0.00150951 0.00233294 0)
(0.000864299 0.00134503 0)
(0.000462058 0.000738097 0)
(0.000221019 0.000396248 0)
(7.24744e-05 0.000237475 0)
(0.0105429 -0.269437 0)
(0.0399208 -0.265964 0)
(0.0712416 -0.257595 0)
(0.103438 -0.243376 0)
(0.135066 -0.222551 0)
(0.164285 -0.194682 0)
(0.188848 -0.159755 0)
(0.206004 -0.118587 0)
(0.21284 -0.0733276 0)
(0.20721 -0.028012 0)
(0.189321 0.0120069 0)
(0.162409 0.0420379 0)
(0.131623 0.0599916 0)
(0.10189 0.0668124 0)
(0.0763927 0.0653803 0)
(0.0562598 0.0590037 0)
(0.0411482 0.0503994 0)
(0.0300489 0.0413367 0)
(0.0219059 0.0327764 0)
(0.0158797 0.025182 0)
(0.0113742 0.0187403 0)
(0.0079906 0.0134829 0)
(0.00546404 0.00935043 0)
(0.00361083 0.00622823 0)
(0.00229054 0.00396845 0)
(0.00138578 0.00240892 0)
(0.000793535 0.00138873 0)
(0.000424384 0.000762058 0)
(0.00020319 0.000409108 0)
(6.67977e-05 0.000245327 0)
(0.0126243 -0.309829 0)
(0.0476724 -0.305295 0)
(0.0846476 -0.294554 0)
(0.122136 -0.276691 0)
(0.158377 -0.251029 0)
(0.191284 -0.217271 0)
(0.218345 -0.175433 0)
(0.23629 -0.126448 0)
(0.241483 -0.0729737 0)
(0.231318 -0.0203408 0)
(0.206679 0.0244624 0)
(0.172571 0.0559714 0)
(0.135829 0.0726996 0)
(0.102167 0.0769017 0)
(0.0746382 0.0726514 0)
(0.0537961 0.0639222 0)
(0.0387032 0.053625 0)
(0.0279255 0.0434413 0)
(0.0201853 0.0341612 0)
(0.0145477 0.0261054 0)
(0.0103807 0.0193623 0)
(0.00727537 0.0139026 0)
(0.00496788 0.00963041 0)
(0.00328027 0.00641074 0)
(0.00207998 0.00408341 0)
(0.00125822 0.00247829 0)
(0.000720601 0.00142862 0)
(0.000385559 0.000783934 0)
(0.000184816 0.000420847 0)
(6.09724e-05 0.000252538 0)
(0.0154448 -0.358662 0)
(0.0580279 -0.352266 0)
(0.101863 -0.337937 0)
(0.145546 -0.31516 0)
(0.18687 -0.283276 0)
(0.223725 -0.242434 0)
(0.253517 -0.192386 0)
(0.272241 -0.134048 0)
(0.275203 -0.0705537 0)
(0.25889 -0.00912547 0)
(0.225439 0.0407727 0)
(0.182502 0.0730242 0)
(0.139015 0.0873826 0)
(0.101324 0.0879712 0)
(0.0719944 0.0802716 0)
(0.0507394 0.068875 0)
(0.0359032 0.056771 0)
(0.0255987 0.0454455 0)
(0.0183491 0.0354565 0)
(0.0131493 0.0269577 0)
(0.0093479 0.0199313 0)
(0.00653608 0.0142841 0)
(0.00445667 0.00988404 0)
(0.00294028 0.00657572 0)
(0.00186359 0.0041872 0)
(0.0011272 0.00254088 0)
(0.0006457 0.0014646 0)
(0.000345689 0.000803665 0)
(0.000165948 0.000431435 0)
(5.50211e-05 0.000259091 0)
(0.0198381 -0.419886 0)
(0.0731582 -0.408719 0)
(0.124076 -0.388571 0)
(0.17536 -0.359506 0)
(0.221664 -0.319304 0)
(0.262467 -0.270429 0)
(0.295389 -0.21073 0)
(0.315008 -0.141308 0)
(0.315185 -0.0653595 0)
(0.29048 0.00685468 0)
(0.245367 0.0619861 0)
(0.19166 0.0937345 0)
(0.140694 0.104164 0)
(0.0990604 0.0999482 0)
(0.0683197 0.088132 0)
(0.0470392 0.0737757 0)
(0.0327384 0.059786 0)
(0.0230707 0.0473227 0)
(0.0164018 0.036649 0)
(0.0116882 0.0277326 0)
(0.00827862 0.020444 0)
(0.00577478 0.0146259 0)
(0.00393183 0.0101104 0)
(0.00259176 0.00672266 0)
(0.00164197 0.00427952 0)
(0.000993053 0.00259651 0)
(0.000569033 0.00149657 0)
(0.00030488 0.0008212 0)
(0.000146633 0.000440838 0)
(4.89723e-05 0.000264972 0)
(0.02566 -0.501265 0)
(0.086064 -0.47255 0)
(0.143074 -0.446584 0)
(0.210462 -0.409923 0)
(0.261506 -0.358444 0)
(0.307794 -0.30218 0)
(0.345068 -0.230501 0)
(0.365883 -0.148443 0)
(0.363229 -0.0564654 0)
(0.326638 0.0294398 0)
(0.265948 0.0894345 0)
(0.19925 0.118658 0)
(0.140252 0.123084 0)
(0.0950487 0.112683 0)
(0.0634788 0.0960833 0)
(0.0426571 0.0785195 0)
(0.0292082 0.0626137 0)
(0.0203483 0.0490453 0)
(0.0143496 0.0377255 0)
(0.0101693 0.0284236 0)
(0.00717624 0.0208974 0)
(0.00499374 0.0149264 0)
(0.00339487 0.0103087 0)
(0.00223572 0.00685106 0)
(0.00141571 0.00436008 0)
(0.000856159 0.002645 0)
(0.000490813 0.00152445 0)
(0.000263247 0.000836487 0)
(0.000126924 0.000449031 0)
(4.28603e-05 0.000270167 0)
(0.0235985 -0.569806 0)
(0.0273003 -0.51511 0)
(0.0331689 -0.51808 0)
(0.118709 -0.474868 0)
(0.259715 -0.41363 0)
(0.348586 -0.347508 0)
(0.402732 -0.250797 0)
(0.425963 -0.156977 0)
(0.422344 -0.0425043 0)
(0.367829 0.0614384 0)
(0.286185 0.124756 0)
(0.204145 0.148304 0)
(0.136947 0.144047 0)
(0.0889475 0.125928 0)
(0.0573518 0.103934 0)
(0.0375718 0.082984 0)
(0.0253226 0.0651944 0)
(0.0174425 0.0505859 0)
(0.0122012 0.0386731 0)
(0.00859828 0.0290248 0)
(0.00604443 0.0212886 0)
(0.00419536 0.0151842 0)
(0.00284734 0.0104782 0)
(0.00187315 0.00696052 0)
(0.00118548 0.00442864 0)
(0.000716893 0.00268622 0)
(0.00041126 0.00154814 0)
(0.000220905 0.000849484 0)
(0.000106876 0.000455992 0)
(3.67226e-05 0.000274673 0)
(0.00531073 -0.583354 0)
(0.0665453 -0.54812 0)
(0.165673 -0.541874 0)
(0.22381 -0.590506 0)
(0.220014 -0.489215 0)
(0.344127 -0.450441 0)
(0.445137 -0.277063 0)
(0.494859 -0.173857 0)
(0.498381 -0.0208011 0)
(0.413744 0.107294 0)
(0.304303 0.169813 0)
(0.204799 0.183015 0)
(0.129907 0.166752 0)
(0.0804312 0.139307 0)
(0.049846 0.111455 0)
(0.0317852 0.0870295 0)
(0.0211043 0.067468 0)
(0.0143694 0.051918 0)
(0.00996666 0.03948 0)
(0.00698149 0.0295307 0)
(0.00488717 0.021615 0)
(0.00338214 0.015398 0)
(0.00229084 0.0106182 0)
(0.00150506 0.00705068 0)
(0.000951878 0.00448498 0)
(0.000575635 0.00272005 0)
(0.000330588 0.00156759 0)
(0.000177967 0.000860158 0)
(8.65406e-05 0.000461696 0)
(3.06014e-05 0.000278508 0)
(0.021508 -0.649533 0)
(0.0870482 -0.643122 0)
(0.158082 -0.641946 0)
(0.230276 -0.620181 0)
(0.34578 -0.589419 0)
(0.437683 -0.501066 0)
(0.515102 -0.347867 0)
(0.625685 -0.202553 0)
(0.60115 0.0195893 0)
(0.459597 0.17558 0)
(0.317105 0.226244 0)
(0.19917 0.222787 0)
(0.118175 0.190615 0)
(0.0692381 0.152287 0)
(0.0409041 0.118388 0)
(0.0253313 0.0904999 0)
(0.0165902 0.0693773 0)
(0.0111499 0.0530171 0)
(0.00765846 0.0401353 0)
(0.00532617 0.0299366 0)
(0.00370879 0.0218745 0)
(0.00255674 0.0155669 0)
(0.00172706 0.0107282 0)
(0.00113252 0.00712122 0)
(0.000715576 0.00452893 0)
(0.000432777 0.00274637 0)
(0.000249022 0.00158274 0)
(0.000134552 0.000868478 0)
(6.59718e-05 0.000466131 0)
(2.45459e-05 0.000281688 0)
(0.0245795 -0.735594 0)
(0.09728 -0.734027 0)
(0.172874 -0.719582 0)
(0.266304 -0.721296 0)
(0.353375 -0.677017 0)
(0.53536 -0.608995 0)
(0.721513 -0.482133 0)
(0.879462 -0.183048 0)
(0.7247 0.174372 0)
(0.509154 0.29256 0)
(0.295435 0.29269 0)
(0.18388 0.267211 0)
(0.100752 0.214849 0)
(0.0552505 0.16418 0)
(0.0304931 0.124493 0)
(0.0182883 0.093233 0)
(0.0118306 0.0708756 0)
(0.00780891 0.0538624 0)
(0.00529051 0.0406302 0)
(0.00364016 0.0302384 0)
(0.0025138 0.0220655 0)
(0.0017219 0.0156899 0)
(0.0011577 0.0108077 0)
(0.000756601 0.00717188 0)
(0.000477233 0.00456032 0)
(0.000288714 0.00276513 0)
(0.000166789 0.00159354 0)
(9.07806e-05 0.000874417 0)
(4.52237e-05 0.000469284 0)
(1.8609e-05 0.000284234 0)
(0.0274308 -0.83072 0)
(0.108011 -0.829537 0)
(0.186182 -0.830413 0)
(0.306155 -0.825429 0)
(0.438388 -0.830169 0)
(0.601699 -0.755284 0)
(0.706927 -0.570504 0)
(0.660825 -0.22233 0)
(0.789806 0.284455 0)
(0.457027 0.400193 0)
(0.312572 0.373663 0)
(0.152836 0.314101 0)
(0.0719612 0.238214 0)
(0.0383682 0.174552 0)
(0.0185513 0.130247 0)
(0.0108075 0.0955383 0)
(0.0068904 0.0722497 0)
(0.00437724 0.0546449 0)
(0.00287967 0.0410881 0)
(0.00193264 0.0305108 0)
(0.00130737 0.0222298 0)
(0.000880665 0.0157886 0)
(0.000584654 0.0108665 0)
(0.000378465 0.00720634 0)
(0.000237565 0.00458007 0)
(0.000143881 0.00277626 0)
(8.41339e-05 0.0015997 0)
(4.67918e-05 0.000877734 0)
(2.43687e-05 0.000470993 0)
(1.28585e-05 0.000286085 0)
(-0.00254067 -8.87227e-05 0)
(-0.000111425 0.000395552 0)
(-0.000141458 0.000732926 0)
(-0.000181749 0.00135299 0)
(-0.000227978 0.00238127 0)
(-0.000280196 0.00397162 0)
(-0.000339083 0.00629238 0)
(-0.000406011 0.00951419 0)
(-0.00048874 0.0138204 0)
(-0.000587347 0.0194567 0)
(-0.000715598 0.0267726 0)
(-0.000917818 0.0363258 0)
(-0.00127042 0.0490744 0)
(-0.00195218 0.0661345 0)
(-0.00315151 0.0879262 0)
(-0.0100573 0.121255 0)
(-0.0242812 0.164807 0)
(-0.0135706 0.235571 0)
(-0.114438 0.325506 0)
(-0.236625 0.452223 0)
(-0.507628 0.513352 0)
(-0.617982 0.328113 0)
(-0.735339 -0.312128 0)
(-0.28814 -0.517634 0)
(-0.360906 -0.718534 0)
(-0.494081 -0.856571 0)
(-0.489966 -0.916631 0)
(-0.442178 -0.93889 0)
(-0.327671 -0.948736 0)
(-0.134541 -0.967787 0)
(-0.00434264 -0.000228068 0)
(-0.00333375 0.000417554 0)
(-0.0040517 0.000769044 0)
(-0.00507244 0.00140489 0)
(-0.00638096 0.00245834 0)
(-0.00808057 0.00409683 0)
(-0.0102745 0.00651522 0)
(-0.013117 0.00991794 0)
(-0.0167792 0.0144869 0)
(-0.0205487 0.0205042 0)
(-0.0251029 0.0284116 0)
(-0.0335577 0.0386291 0)
(-0.0468577 0.0513044 0)
(-0.0819048 0.070092 0)
(-0.163614 0.0877592 0)
(-0.098604 0.115986 0)
(-0.131158 0.15461 0)
(0.0769178 0.251823 0)
(-0.114213 0.332167 0)
(-0.187481 0.504694 0)
(-0.456854 0.582639 0)
(-0.622716 0.377031 0)
(-0.452484 -0.377508 0)
(-0.159404 -0.583018 0)
(-0.113583 -0.665775 0)
(-0.247235 -0.812218 0)
(-0.340568 -0.902773 0)
(-0.34916 -0.971347 0)
(-0.262173 -1.03343 0)
(-0.123784 -1.09433 0)
(-0.00492663 -0.000240817 0)
(-0.00489121 0.000451763 0)
(-0.00602894 0.000828319 0)
(-0.00767993 0.00148443 0)
(-0.00984974 0.00256511 0)
(-0.0127199 0.00424666 0)
(-0.0164998 0.00674351 0)
(-0.0214873 0.010272 0)
(-0.0284403 0.0149976 0)
(-0.03739 0.0211844 0)
(-0.0498613 0.0294808 0)
(-0.0718966 0.0408537 0)
(-0.119558 0.0570013 0)
(-0.276841 0.106088 0)
(-1.45728 0.101551 0)
(-2.58833 0.0681561 0)
(-0.735121 0.164469 0)
(-0.507807 0.205944 0)
(-0.170816 0.344478 0)
(-0.179561 0.574744 0)
(-0.447939 0.612089 0)
(-0.700179 0.446316 0)
(-0.391534 -0.502336 0)
(-0.134691 -0.655714 0)
(0.015482 -0.669558 0)
(0.00953504 -0.758514 0)
(-0.0626887 -0.873486 0)
(-0.0904823 -0.984774 0)
(-0.0590232 -1.07109 0)
(-0.0366487 -1.21331 0)
(-0.0050645 -0.000211795 0)
(-0.00538307 0.000496536 0)
(-0.00664524 0.000905675 0)
(-0.00846825 0.00158903 0)
(-0.0108876 0.0027067 0)
(-0.0140962 0.00444409 0)
(-0.0183726 0.0070438 0)
(-0.0240431 0.0107425 0)
(-0.0319779 0.015732 0)
(-0.0423821 0.0223077 0)
(-0.0573622 0.0314508 0)
(-0.0842177 0.0450193 0)
(-0.142188 0.0683556 0)
(-0.321931 0.158934 0)
(-1.28331 0.425595 0)
(-2.26187 -0.0957252 0)
(-1.10359 -0.0554332 0)
(-0.703457 0.13376 0)
(-0.279469 0.277461 0)
(-0.17986 0.614087 0)
(-0.512064 0.68581 0)
(-0.628669 0.291255 0)
(-0.336827 -0.618781 0)
(-0.142304 -0.736906 0)
(0.0316542 -0.727563 0)
(0.133967 -0.752565 0)
(0.136271 -0.855252 0)
(0.12169 -0.967499 0)
(0.0904748 -1.06597 0)
(0.0462511 -1.18995 0)
(-0.00509492 -0.000171916 0)
(-0.00552522 0.000547132 0)
(-0.00681602 0.000991926 0)
(-0.00866744 0.00170893 0)
(-0.0111424 0.00287367 0)
(-0.014399 0.00467779 0)
(-0.018748 0.00739513 0)
(-0.0244704 0.0112858 0)
(-0.0323562 0.0165748 0)
(-0.0428159 0.0236073 0)
(-0.0581753 0.033783 0)
(-0.0854664 0.0499513 0)
(-0.143075 0.0814027 0)
(-0.298979 0.206362 0)
(-0.670109 0.739035 0)
(-1.16825 -0.267814 0)
(-0.709352 -0.158911 0)
(-0.608242 0.101507 0)
(-0.559794 0.150603 0)
(-0.335168 0.69088 0)
(-0.567672 0.815323 0)
(-0.623815 0.356842 0)
(-0.615558 -0.670395 0)
(-0.148746 -0.837303 0)
(0.0289787 -0.800001 0)
(0.146973 -0.794395 0)
(0.200882 -0.85765 0)
(0.201229 -0.95458 0)
(0.153465 -1.03447 0)
(0.077486 -1.09703 0)
(-0.00509996 -0.000129358 0)
(-0.00558915 0.000600977 0)
(-0.00688466 0.00108278 0)
(-0.00873726 0.00183946 0)
(-0.011228 0.00306027 0)
(-0.0144702 0.00493953 0)
(-0.0187785 0.00778111 0)
(-0.0243751 0.0118698 0)
(-0.0319112 0.0174763 0)
(-0.0420282 0.0249956 0)
(-0.0570968 0.036277 0)
(-0.0832838 0.0551236 0)
(-0.135954 0.0943445 0)
(-0.251001 0.239423 0)
(-0.111188 0.831149 0)
(-0.0608117 -0.314216 0)
(-0.429286 -0.186019 0)
(-0.452677 0.117458 0)
(-0.481866 0.133041 0)
(-0.671151 0.58002 0)
(-0.587728 0.934186 0)
(-0.759262 0.649798 0)
(-0.494428 -0.870662 0)
(-0.126755 -0.954615 0)
(0.0407479 -0.870138 0)
(0.134895 -0.844884 0)
(0.186035 -0.875443 0)
(0.190997 -0.943089 0)
(0.152808 -0.982765 0)
(0.0712638 -0.999559 0)
(-0.00509141 -8.55618e-05 0)
(-0.00563077 0.000657983 0)
(-0.00692254 0.00117896 0)
(-0.00877272 0.00198197 0)
(-0.0112664 0.00326757 0)
(-0.0144809 0.00523075 0)
(-0.0187092 0.00820148 0)
(-0.0241281 0.0124893 0)
(-0.0312541 0.0184203 0)
(-0.0409175 0.0264479 0)
(-0.0553758 0.0388569 0)
(-0.0797002 0.0602881 0)
(-0.125046 0.106047 0)
(-0.197195 0.256085 0)
(0.0865791 0.699518 0)
(0.528169 -0.204993 0)
(-0.258863 -0.131671 0)
(-0.403996 0.144221 0)
(-0.41954 0.0555162 0)
(-0.535056 0.596703 0)
(-0.603917 1.05474 0)
(-1.35112 1.18956 0)
(-0.406142 -1.36119 0)
(-0.0510775 -1.07389 0)
(0.0739759 -0.928931 0)
(0.132143 -0.881668 0)
(0.157022 -0.888861 0)
(0.147225 -0.926584 0)
(0.107596 -0.93472 0)
(0.0480149 -0.916138 0)
(-0.00507247 -4.07838e-05 0)
(-0.005655 0.000718201 0)
(-0.00693845 0.00128169 0)
(-0.00878484 0.00213769 0)
(-0.0112696 0.00349532 0)
(-0.0144468 0.0055508 0)
(-0.0185657 0.00865409 0)
(-0.0237738 0.0131385 0)
(-0.0304724 0.0193915 0)
(-0.0396016 0.0279451 0)
(-0.0531754 0.0414613 0)
(-0.0750227 0.0652433 0)
(-0.111538 0.115726 0)
(-0.146043 0.25848 0)
(0.115026 0.534643 0)
(0.468533 -0.0438686 0)
(-0.15973 -0.0415499 0)
(-0.38523 0.196183 0)
(-0.657665 0.259174 0)
(-0.4665 0.508976 0)
(-0.801216 1.11634 0)
(-1.02637 1.09537 0)
(-0.0225652 -1.62501 0)
(0.093334 -1.14834 0)
(0.130281 -0.961647 0)
(0.143399 -0.896849 0)
(0.138277 -0.885822 0)
(0.109225 -0.897173 0)
(0.0660813 -0.891361 0)
(0.0244854 -0.860981 0)
(-0.00504498 4.83001e-06 0)
(-0.00566186 0.000781581 0)
(-0.00693499 0.00139203 0)
(-0.00877513 0.00230736 0)
(-0.0112387 0.00374238 0)
(-0.0143665 0.00589745 0)
(-0.0183492 0.00913543 0)
(-0.0233145 0.0138109 0)
(-0.0295668 0.0203744 0)
(-0.0380644 0.0294624 0)
(-0.0504804 0.0440196 0)
(-0.0692933 0.0697763 0)
(-0.096181 0.122818 0)
(-0.101305 0.250307 0)
(0.114295 0.414405 0)
(0.311053 0.0638988 0)
(-0.0895792 0.051742 0)
(-0.355478 0.291276 0)
(-0.681122 0.275213 0)
(-1.04747 0.770523 0)
(-0.862762 0.948248 0)
(0.503603 0.397839 0)
(0.513434 -1.53634 0)
(0.266927 -1.1253 0)
(0.200149 -0.95394 0)
(0.166313 -0.885996 0)
(0.133845 -0.863318 0)
(0.0918499 -0.856812 0)
(0.0461618 -0.847572 0)
(0.0130814 -0.828742 0)
(-0.00500921 5.1095e-05 0)
(-0.00565058 0.000847952 0)
(-0.00691257 0.0015106 0)
(-0.0087427 0.0024911 0)
(-0.0111727 0.00400709 0)
(-0.0142362 0.00626736 0)
(-0.0180569 0.00964016 0)
(-0.022748 0.0144986 0)
(-0.0285266 0.0213527 0)
(-0.0362818 0.0309648 0)
(-0.0472732 0.0464461 0)
(-0.0625854 0.0736615 0)
(-0.0797712 0.127013 0)
(-0.0643226 0.235413 0)
(0.105101 0.331596 0)
(0.215531 0.126483 0)
(-0.0282772 0.132946 0)
(-0.246655 0.442003 0)
(-0.9108 0.355581 0)
(-1.44977 0.723583 0)
(-0.0293859 -0.246611 0)
(1.36407 -0.387474 0)
(0.765153 -1.18183 0)
(0.399137 -1.01209 0)
(0.264763 -0.90288 0)
(0.194168 -0.848682 0)
(0.141746 -0.82384 0)
(0.093934 -0.810196 0)
(0.0499323 -0.801632 0)
(0.0162271 -0.800258 0)
(-0.0049672 9.78318e-05 0)
(-0.00562151 0.000917245 0)
(-0.00687089 0.00163785 0)
(-0.00868549 0.00268859 0)
(-0.0110695 0.00428799 0)
(-0.0140505 0.00665745 0)
(-0.0176842 0.0101623 0)
(-0.0220687 0.0151927 0)
(-0.0273355 0.0223105 0)
(-0.034233 0.0324095 0)
(-0.0435525 0.0486424 0)
(-0.0550351 0.0766816 0)
(-0.06311 0.128266 0)
(-0.0349142 0.217038 0)
(0.0947706 0.27448 0)
(0.163674 0.161726 0)
(0.0313739 0.190515 0)
(-0.0237269 0.497711 0)
(-0.137272 0.890186 0)
(0.210207 -0.11622 0)
(0.795765 -0.23943 0)
(1.11482 -0.444393 0)
(0.749708 -0.854742 0)
(0.458175 -0.861633 0)
(0.307502 -0.820169 0)
(0.218023 -0.789653 0)
(0.154267 -0.771689 0)
(0.103403 -0.760448 0)
(0.0618943 -0.754696 0)
(0.0246807 -0.757575 0)
(-0.00492011 0.000144853 0)
(-0.00557821 0.000989453 0)
(-0.00681241 0.00177391 0)
(-0.0086039 0.00289902 0)
(-0.01093 0.00458366 0)
(-0.0138071 0.00706441 0)
(-0.0172297 0.0106948 0)
(-0.021272 0.0158824 0)
(-0.0259794 0.0232299 0)
(-0.0319051 0.0337468 0)
(-0.0393401 0.0505021 0)
(-0.0468367 0.0786506 0)
(-0.0469044 0.126764 0)
(-0.0120455 0.197499 0)
(0.0869455 0.234068 0)
(0.138486 0.178428 0)
(0.0867616 0.218391 0)
(0.140069 0.436017 0)
(0.632429 0.662053 0)
(0.961997 -0.0549162 0)
(0.816562 -0.212152 0)
(0.822629 -0.411808 0)
(0.654286 -0.649628 0)
(0.457461 -0.718118 0)
(0.322653 -0.723677 0)
(0.230816 -0.716706 0)
(0.162986 -0.709881 0)
(0.109265 -0.705444 0)
(0.0647115 -0.703495 0)
(0.0249531 -0.701505 0)
(-0.00486467 0.000191782 0)
(-0.00552175 0.00106453 0)
(-0.00673701 0.00191825 0)
(-0.00849663 0.00312102 0)
(-0.010754 0.00489261 0)
(-0.0135048 0.00748434 0)
(-0.0166934 0.0112303 0)
(-0.0203559 0.0165549 0)
(-0.0244502 0.0240883 0)
(-0.0292983 0.0349212 0)
(-0.0346891 0.0519147 0)
(-0.038233 0.0794322 0)
(-0.0317086 0.122858 0)
(0.0056336 0.178151 0)
(0.0827087 0.203784 0)
(0.129096 0.181162 0)
(0.131833 0.218788 0)
(0.230566 0.34294 0)
(0.548908 0.368732 0)
(0.757975 0.0295009 0)
(0.710883 -0.188809 0)
(0.665854 -0.36549 0)
(0.556403 -0.520551 0)
(0.423825 -0.598192 0)
(0.314374 -0.627707 0)
(0.230222 -0.637843 0)
(0.164074 -0.641193 0)
(0.109892 -0.642349 0)
(0.0636314 -0.642888 0)
(0.0234721 -0.643237 0)
(-0.00479829 0.000237985 0)
(-0.00544992 0.00114269 0)
(-0.00664097 0.00206989 0)
(-0.00835907 0.00335274 0)
(-0.0105361 0.00521267 0)
(-0.0131396 0.00791145 0)
(-0.0160725 0.01176 0)
(-0.0193178 0.017195 0)
(-0.0227456 0.0248587 0)
(-0.0264264 0.0358731 0)
(-0.0296824 0.0527756 0)
(-0.0294898 0.0789545 0)
(-0.0178901 0.116973 0)
(0.0194083 0.159643 0)
(0.0816442 0.179083 0)
(0.127823 0.17312 0)
(0.162572 0.199588 0)
(0.266881 0.253631 0)
(0.466717 0.216328 0)
(0.597594 0.018122 0)
(0.59543 -0.167115 0)
(0.55042 -0.314588 0)
(0.470536 -0.429975 0)
(0.376671 -0.501383 0)
(0.290598 -0.539562 0)
(0.218065 -0.559295 0)
(0.157542 -0.56972 0)
(0.106299 -0.575448 0)
(0.0620149 -0.578564 0)
(0.0230237 -0.579816 0)
(-0.00472029 0.000282591 0)
(-0.00536272 0.00122436 0)
(-0.0065227 0.00222789 0)
(-0.00818842 0.00359207 0)
(-0.0102711 0.0055403 0)
(-0.0127068 0.00833726 0)
(-0.0153623 0.0122721 0)
(-0.0181549 0.0177836 0)
(-0.020868 0.0255081 0)
(-0.0233178 0.0365395 0)
(-0.0244303 0.0529944 0)
(-0.0208778 0.077213 0)
(-0.00566061 0.109542 0)
(0.0302351 0.142051 0)
(0.0826126 0.157102 0)
(0.129296 0.157247 0)
(0.178682 0.169705 0)
(0.27064 0.179782 0)
(0.39823 0.124492 0)
(0.481192 -0.00964785 0)
(0.489284 -0.151233 0)
(0.454679 -0.269555 0)
(0.395293 -0.360564 0)
(0.325983 -0.422617 0)
(0.258551 -0.461447 0)
(0.197972 -0.484938 0)
(0.144893 -0.499087 0)
(0.0984754 -0.507568 0)
(0.0576203 -0.512398 0)
(0.0213076 -0.514583 0)
(-0.00462762 0.000324731 0)
(-0.00526185 0.00131047 0)
(-0.00638445 0.00239229 0)
(-0.00798578 0.00383771 0)
(-0.00995906 0.00587165 0)
(-0.0122054 0.00875268 0)
(-0.0145599 0.0127527 0)
(-0.0168676 0.0182985 0)
(-0.0188264 0.0259991 0)
(-0.0200154 0.0368572 0)
(-0.019068 0.052504 0)
(-0.0126598 0.0742664 0)
(0.00488498 0.100953 0)
(0.0387287 0.125258 0)
(0.0842879 0.136303 0)
(0.130119 0.136459 0)
(0.182426 0.136232 0)
(0.256841 0.122075 0)
(0.33984 0.0648024 0)
(0.392081 -0.0338413 0)
(0.398961 -0.140029 0)
(0.373318 -0.232495 0)
(0.328884 -0.305059 0)
(0.276419 -0.357478 0)
(0.223393 -0.393187 0)
(0.173636 -0.416709 0)
(0.128416 -0.431915 0)
(0.0878205 -0.441518 0)
(0.0514849 -0.447219 0)
(0.0189311 -0.449922 0)
(-0.00451601 0.000363906 0)
(-0.00514569 0.00140248 0)
(-0.00622576 0.00256425 0)
(-0.00775044 0.00408985 0)
(-0.00959958 0.00620355 0)
(-0.0116362 0.00915044 0)
(-0.0136663 0.0131879 0)
(-0.0154621 0.0187159 0)
(-0.0166403 0.0262917 0)
(-0.016578 0.036768 0)
(-0.0137423 0.051267 0)
(-0.00506579 0.070223 0)
(0.0137273 0.0915627 0)
(0.0452043 0.109105 0)
(0.085495 0.116087 0)
(0.128539 0.113399 0)
(0.177001 0.103698 0)
(0.234344 0.0779676 0)
(0.288821 0.0246811 0)
(0.32101 -0.0509035 0)
(0.324141 -0.13093 0)
(0.304393 -0.202233 0)
(0.270646 -0.259678 0)
(0.230309 -0.302885 0)
(0.188468 -0.33386 0)
(0.148031 -0.355329 0)
(0.110318 -0.369832 0)
(0.0757967 -0.37934 0)
(0.0445097 -0.385203 0)
(0.0162876 -0.388097 0)
(-0.00438345 0.00040104 0)
(-0.00501025 0.0015014 0)
(-0.00604289 0.00274462 0)
(-0.00748081 0.00434887 0)
(-0.00919248 0.00653335 0)
(-0.0110023 0.00952539 0)
(-0.0126882 0.013565 0)
(-0.0139544 0.0190128 0)
(-0.0143441 0.0263478 0)
(-0.0130854 0.0362275 0)
(-0.00861077 0.0492818 0)
(0.00170833 0.0652275 0)
(0.0208553 0.0816301 0)
(0.0497728 0.0935175 0)
(0.0853956 0.0964808 0)
(0.124001 0.0902154 0)
(0.165443 0.07452 0)
(0.208158 0.0446955 0)
(0.243804 -0.00241702 0)
(0.262846 -0.0614841 0)
(0.262531 -0.122297 0)
(0.246487 -0.176966 0)
(0.220304 -0.221935 0)
(0.188921 -0.256734 0)
(0.155857 -0.282502 0)
(0.123295 -0.300933 0)
(0.0923899 -0.313745 0)
(0.0636996 -0.322392 0)
(0.0374411 -0.327938 0)
(0.0136252 -0.33079 0)
(-0.00422839 0.000437362 0)
(-0.00485124 0.0016066 0)
(-0.00583075 0.00293235 0)
(-0.00717299 0.00461247 0)
(-0.00873466 0.00685673 0)
(-0.0103045 0.00987084 0)
(-0.0116325 0.0138708 0)
(-0.0123657 0.0191663 0)
(-0.0119853 0.0261353 0)
(-0.00963618 0.0352125 0)
(-0.00383514 0.046587 0)
(0.00751841 0.0594847 0)
(0.0262863 0.0714183 0)
(0.0524604 0.0785457 0)
(0.0835466 0.0778291 0)
(0.116705 0.0684485 0)
(0.150224 0.0497204 0)
(0.181139 0.0199658 0)
(0.204091 -0.0204053 0)
(0.214547 -0.0669238 0)
(0.211761 -0.113435 0)
(0.198207 -0.155238 0)
(0.177476 -0.190062 0)
(0.152844 -0.217517 0)
(0.126744 -0.238268 0)
(0.100783 -0.253397 0)
(0.0758895 -0.264089 0)
(0.0525578 -0.271436 0)
(0.030995 -0.276275 0)
(0.0112505 -0.278832 0)
(-0.00404797 0.000472919 0)
(-0.00466484 0.00171563 0)
(-0.00558482 0.00312397 0)
(-0.00682304 0.00487592 0)
(-0.00822292 0.00716694 0)
(-0.00954437 0.0101777 0)
(-0.0105088 0.0140918 0)
(-0.0107212 0.0191555 0)
(-0.00961964 0.0256308 0)
(-0.00633503 0.0337231 0)
(0.000433445 0.0432556 0)
(0.0122386 0.0531768 0)
(0.0300521 0.0611754 0)
(0.0533079 0.0643474 0)
(0.0798619 0.0605634 0)
(0.107238 0.0490432 0)
(0.133193 0.0294849 0)
(0.154919 0.00195809 0)
(0.16923 -0.0318647 0)
(0.174143 -0.0685316 0)
(0.169849 -0.104213 0)
(0.158178 -0.136101 0)
(0.141523 -0.162815 0)
(0.122078 -0.184108 0)
(0.101527 -0.200409 0)
(0.0810355 -0.212435 0)
(0.0613005 -0.22099 0)
(0.0426828 -0.226812 0)
(0.0252931 -0.23047 0)
(0.00916204 -0.232259 0)
(-0.00383935 0.000507081 0)
(-0.0044484 0.00182739 0)
(-0.0053025 0.00331621 0)
(-0.00642939 0.00513444 0)
(-0.00765717 0.0074566 0)
(-0.00872694 0.0104354 0)
(-0.00933301 0.014214 0)
(-0.00905503 0.0189644 0)
(-0.00731413 0.0248242 0)
(-0.00329112 0.0317856 0)
(0.00407579 0.0394151 0)
(0.0158011 0.0465285 0)
(0.0322106 0.0511491 0)
(0.0524206 0.0511403 0)
(0.0745206 0.045066 0)
(0.0963128 0.0324688 0)
(0.115662 0.0135596 0)
(0.130428 -0.0107528 0)
(0.138861 -0.0385889 0)
(0.140276 -0.067398 0)
(0.135239 -0.0947616 0)
(0.125149 -0.119004 0)
(0.111652 -0.139322 0)
(0.0962387 -0.155606 0)
(0.0800642 -0.168157 0)
(0.0639413 -0.177458 0)
(0.048369 -0.184024 0)
(0.033631 -0.188304 0)
(0.0198608 -0.190684 0)
(0.00713438 -0.191624 0)
(-0.00359871 0.000540202 0)
(-0.00419901 0.00194054 0)
(-0.00498122 0.00350627 0)
(-0.00599002 0.00538256 0)
(-0.00703947 0.00771901 0)
(-0.00786044 0.0106349 0)
(-0.00812639 0.0142265 0)
(-0.00740874 0.0185839 0)
(-0.0051424 0.0237218 0)
(-0.000612513 0.029452 0)
(0.00698062 0.0351909 0)
(0.0181797 0.0397652 0)
(0.0328597 0.0415831 0)
(0.049986 0.0391474 0)
(0.0678625 0.0315923 0)
(0.0846211 0.0188394 0)
(0.0985264 0.0014706 0)
(0.108152 -0.0193289 0)
(0.112643 -0.0418891 0)
(0.111946 -0.0643922 0)
(0.106723 -0.0853091 0)
(0.0980472 -0.103649 0)
(0.0870756 -0.118969 0)
(0.0748281 -0.131246 0)
(0.0620974 -0.140707 0)
(0.0494558 -0.147683 0)
(0.0372729 -0.152531 0)
(0.0257853 -0.155568 0)
(0.0151322 -0.157107 0)
(0.00538247 -0.157607 0)
(-0.00332217 0.000571993 0)
(-0.00391305 0.00205261 0)
(-0.00461793 0.00369133 0)
(-0.00550334 0.00561633 0)
(-0.00637345 0.00794817 0)
(-0.00695598 0.0107688 0)
(-0.00691469 0.0141225 0)
(-0.00582887 0.0180149 0)
(-0.00317919 0.0223498 0)
(0.0016157 0.0268111 0)
(0.00908108 0.0307459 0)
(0.0193948 0.0331099 0)
(0.0321416 0.0326989 0)
(0.0462603 0.0285463 0)
(0.0602938 0.0202463 0)
(0.0727502 0.00802783 0)
(0.082369 -0.00734591 0)
(0.0882992 -0.0247213 0)
(0.0902211 -0.0427615 0)
(0.0883602 -0.0602106 0)
(0.0833426 -0.076111 0)
(0.075985 -0.0898897 0)
(0.0671077 -0.101325 0)
(0.0574192 -0.110455 0)
(0.0474723 -0.117464 0)
(0.0376744 -0.122602 0)
(0.028294 -0.12613 0)
(0.0195048 -0.128293 0)
(0.0114033 -0.129345 0)
(0.00402278 -0.129657 0)
(-0.00300566 0.000602454 0)
(-0.00358714 0.00216258 0)
(-0.00420961 0.00386808 0)
(-0.00496876 0.00583085 0)
(-0.00566423 0.00813874 0)
(-0.00602781 0.0108333 0)
(-0.00572679 0.0139022 0)
(-0.00436529 0.0172728 0)
(-0.00149597 0.0207566 0)
(0.00331607 0.0239654 0)
(0.0103449 0.0262543 0)
(0.0195091 0.0267735 0)
(0.0302392 0.0246842 0)
(0.0415392 0.0194466 0)
(0.0522179 0.0109987 0)
(0.0611596 -0.000238764 0)
(0.0675363 -0.0134748 0)
(0.0709024 -0.0277236 0)
(0.0712347 -0.0419841 0)
(0.0688559 -0.0554144 0)
(0.0643054 -0.0674275 0)
(0.0581981 -0.0777079 0)
(0.0511176 -0.0861685 0)
(0.0435548 -0.0928823 0)
(0.0358896 -0.0980143 0)
(0.0284024 -0.101764 0)
(0.0212775 -0.104336 0)
(0.014633 -0.105908 0)
(0.00853207 -0.106666 0)
(0.00299075 -0.106881 0)
(-0.00264536 0.000631352 0)
(-0.00321742 0.00226806 0)
(-0.00375377 0.0040335 0)
(-0.00438641 0.0060218 0)
(-0.00491797 0.00828747 0)
(-0.00509195 0.0108281 0)
(-0.00459309 0.0135758 0)
(-0.00306684 0.0163881 0)
(-0.000156535 0.0190092 0)
(0.00443601 0.021037 0)
(0.0107783 0.021891 0)
(0.0186241 0.0209413 0)
(0.0273608 0.0176733 0)
(0.0361208 0.0118736 0)
(0.043983 0.00370966 0)
(0.0501721 -0.00631445 0)
(0.0541895 -0.0174797 0)
(0.0558583 -0.0290045 0)
(0.0552952 -0.0401778 0)
(0.0528291 -0.0504544 0)
(0.0488972 -0.0594901 0)
(0.0439553 -0.0671286 0)
(0.038417 -0.0733599 0)
(0.0326204 -0.0782729 0)
(0.0268209 -0.0820088 0)
(0.0212012 -0.084725 0)
(0.0158759 -0.0865779 0)
(0.0109168 -0.0877077 0)
(0.00636168 -0.0882537 0)
(0.0022197 -0.0884088 0)
(-0.00223759 0.000657399 0)
(-0.00280037 0.00236607 0)
(-0.00324823 0.00418361 0)
(-0.00375688 0.00618574 0)
(-0.00414129 0.00839352 0)
(-0.00416478 0.01076 0)
(-0.00354308 0.0131642 0)
(-0.00197693 0.0154094 0)
(0.000800294 0.017206 0)
(0.00495528 0.0181639 0)
(0.0104208 0.0178235 0)
(0.0168687 0.0157669 0)
(0.0237214 0.0117459 0)
(0.0302748 0.00577983 0)
(0.0358577 -0.00183421 0)
(0.0399715 -0.010588 0)
(0.0423477 -0.0198802 0)
(0.0429633 -0.0291252 0)
(0.0419869 -0.0378389 0)
(0.0397077 -0.0456839 0)
(0.0364614 -0.052473 0)
(0.0325757 -0.0581469 0)
(0.0283366 -0.062738 0)
(0.0239721 -0.0663361 0)
(0.0196524 -0.0690586 0)
(0.0154987 -0.0710275 0)
(0.0115855 -0.072358 0)
(0.00795648 -0.073147 0)
(0.00463071 -0.0734955 0)
(0.00160786 -0.0735651 0)
(-0.00177905 0.000679926 0)
(-0.0023328 0.00245384 0)
(-0.00269065 0.00431472 0)
(-0.003081 0.00632048 0)
(-0.00334012 0.00845935 0)
(-0.00326049 0.0106417 0)
(-0.00260162 0.0127015 0)
(-0.00112717 0.0144022 0)
(0.00134726 0.0154461 0)
(0.00488232 0.0154899 0)
(0.00934059 0.0142056 0)
(0.0143826 0.0113664 0)
(0.0195179 0.00692799 0)
(0.0242128 0.00105921 0)
(0.028015 -0.0058845 0)
(0.0306195 -0.0134422 0)
(0.0319117 -0.0211361 0)
(0.0319405 -0.0285462 0)
(0.0308737 -0.035357 0)
(0.0289424 -0.0413707 0)
(0.0263925 -0.0464984 0)
(0.0234522 -0.0507354 0)
(0.0203127 -0.0541338 0)
(0.0171232 -0.0567797 0)
(0.0139933 -0.0587721 0)
(0.0110013 -0.0602082 0)
(0.00819565 -0.061178 0)
(0.00560634 -0.0617575 0)
(0.00324844 -0.0620216 0)
(0.00112062 -0.0620805 0)
(-0.00126728 0.000698317 0)
(-0.00181179 0.00252849 0)
(-0.00207912 0.0044236 0)
(-0.0023591 0.00642474 0)
(-0.00251828 0.00849112 0)
(-0.0023889 0.0104956 0)
(-0.00178394 0.0122348 0)
(-0.00053174 0.013449 0)
(0.00148174 0.0138512 0)
(0.00425262 0.0131621 0)
(0.00762358 0.0111771 0)
(0.0113008 0.00782621 0)
(0.0149094 0.00320791 0)
(0.0180777 -0.00242156 0)
(0.02052 -0.00869949 0)
(0.0220704 -0.0152287 0)
(0.0226948 -0.0216417 0)
(0.0224649 -0.027646 0)
(0.0215199 -0.0330433 0)
(0.0200287 -0.0377273 0)
(0.0181606 -0.0416684 0)
(0.0160677 -0.0448915 0)
(0.0138757 -0.0474558 0)
(0.0116798 -0.0494392 0)
(0.00954597 -0.0509255 0)
(0.00751849 -0.0519952 0)
(0.00562228 -0.0527208 0)
(0.00386834 -0.0531597 0)
(0.00225632 -0.053365 0)
(0.000782462 -0.0534139 0)
(-0.000700561 0.000710786 0)
(-0.00123488 0.00258651 0)
(-0.00141137 0.00450585 0)
(-0.00158954 0.00649862 0)
(-0.0016751 0.00849934 0)
(-0.00155037 0.0103508 0)
(-0.00108848 0.0118236 0)
(-0.000181349 0.012647 0)
(0.0012348 0.0125536 0)
(0.00312659 0.0113285 0)
(0.0053635 0.00886792 0)
(0.0077349 0.00521409 0)
(0.00999363 0.000557656 0)
(0.0119138 -0.00480145 0)
(0.0133299 -0.0105176 0)
(0.0141639 -0.0162533 0)
(0.0144177 -0.021726 0)
(0.014152 -0.0267319 0)
(0.0134628 -0.0311489 0)
(0.0124582 -0.0349272 0)
(0.0112427 -0.0380727 0)
(0.00990795 -0.0406283 0)
(0.00852709 -0.0426569 0)
(0.00715384 -0.0442276 0)
(0.00582523 -0.0454047 0)
(0.00456771 -0.0462436 0)
(0.00339808 -0.0467913 0)
(0.00232502 -0.0470844 0)
(0.0013489 -0.0471683 0)
(0.000465298 -0.0471403 0)
(-9.87105e-05 0.000716383 0)
(-0.000600451 0.00262347 0)
(-0.000684854 0.0045578 0)
(-0.000767921 0.00654278 0)
(-0.000802606 0.00849658 0)
(-0.000730574 0.0102431 0)
(-0.000490031 0.0115368 0)
(-3.13235e-05 0.0121039 0)
(0.000671099 0.0116968 0)
(0.00159102 0.0101463 0)
(0.00265563 0.00741569 0)
(0.00376029 0.0036088 0)
(0.00480038 -0.00103226 0)
(0.00566313 -0.00618146 0)
(0.00627819 -0.0115225 0)
(0.00662049 -0.0167567 0)
(0.00669689 -0.0216541 0)
(0.00653983 -0.0260623 0)
(0.00619595 -0.0299018 0)
(0.0057157 -0.0331529 0)
(0.00514559 -0.0358377 0)
(0.00452416 -0.0380036 0)
(0.00388229 -0.0397111 0)
(0.00324489 -0.0410263 0)
(0.00263061 -0.042012 0)
(0.00205136 -0.0427231 0)
(0.00151394 -0.0432057 0)
(0.00102444 -0.0434961 0)
(0.000586921 -0.0436274 0)
(0.000199575 -0.0436525 0)
(0.0774983 -0.971771 0)
(0.279557 -0.95502 0)
(0.415477 -0.936437 0)
(0.479215 -0.917368 0)
(0.494542 -0.871876 0)
(0.398812 -0.764605 0)
(0.269985 -0.582634 0)
(0.478887 -0.381312 0)
(0.70877 0.233358 0)
(0.591302 0.514251 0)
(0.303123 0.472944 0)
(0.149094 0.353531 0)
(0.0291408 0.257477 0)
(0.0221701 0.177619 0)
(0.0120825 0.131896 0)
(0.00382168 0.0947578 0)
(0.00220871 0.0712278 0)
(0.00137946 0.0529306 0)
(0.000975714 0.0391799 0)
(0.00074809 0.0289348 0)
(0.000607461 0.0211191 0)
(0.000507349 0.0150993 0)
(0.000424841 0.0104844 0)
(0.000357188 0.0070089 0)
(0.000298041 0.00447771 0)
(0.000244747 0.00272022 0)
(0.000196397 0.00156647 0)
(0.000154734 0.000857405 0)
(0.000121699 0.000458784 0)
(0.000106649 0.000279127 0)
(0.0692822 -1.113 0)
(0.234232 -1.06012 0)
(0.328367 -0.979194 0)
(0.349846 -0.916802 0)
(0.277209 -0.841473 0)
(0.139395 -0.702485 0)
(0.130289 -0.603115 0)
(0.340465 -0.490741 0)
(0.718003 0.224016 0)
(0.504592 0.56603 0)
(0.27073 0.532346 0)
(0.118989 0.36965 0)
(-0.0659726 0.274177 0)
(0.0764724 0.1698 0)
(0.0968338 0.126014 0)
(0.0793484 0.0952665 0)
(0.0870727 0.0750933 0)
(0.0472323 0.055325 0)
(0.03509 0.0415347 0)
(0.0258927 0.0307324 0)
(0.0209455 0.0222945 0)
(0.017256 0.0158472 0)
(0.0136238 0.0109484 0)
(0.0106943 0.00726869 0)
(0.00847293 0.00462019 0)
(0.0067402 0.00280402 0)
(0.00539953 0.00161914 0)
(0.00437988 0.000893254 0)
(0.00362581 0.000483419 0)
(0.0032846 0.000285838 0)
(0.0192516 -1.20313 0)
(0.0569309 -1.07541 0)
(0.0930758 -1.01641 0)
(0.0714901 -0.896152 0)
(0.0117835 -0.791751 0)
(-0.0292478 -0.683004 0)
(0.0887407 -0.662137 0)
(0.312693 -0.553237 0)
(0.676189 0.121514 0)
(0.470337 0.602117 0)
(0.273211 0.621607 0)
(0.0417723 0.403298 0)
(0.477392 0.226946 0)
(0.533704 0.184377 0)
(2.3102 -0.0259537 0)
(1.60629 0.0657766 0)
(0.331763 0.130823 0)
(0.131215 0.0618091 0)
(0.077015 0.0440005 0)
(0.0526488 0.0319007 0)
(0.0390875 0.0230207 0)
(0.0297796 0.0164142 0)
(0.0226015 0.01135 0)
(0.0173868 0.00752296 0)
(0.013497 0.00477968 0)
(0.0105148 0.00291056 0)
(0.00824896 0.00169034 0)
(0.00656695 0.000946185 0)
(0.00535808 0.000521683 0)
(0.00477269 0.000288645 0)
(-0.0272489 -1.19571 0)
(-0.0867274 -1.07497 0)
(-0.113855 -1.00438 0)
(-0.130771 -0.883921 0)
(-0.138424 -0.775537 0)
(-0.0642194 -0.726893 0)
(0.0940532 -0.739973 0)
(0.429003 -0.600706 0)
(0.599868 0.0517207 0)
(0.594258 0.668823 0)
(0.234143 0.722071 0)
(0.282745 0.324191 0)
(0.627558 0.15614 0)
(1.04301 0.00401463 0)
(2.00399 -0.281745 0)
(1.6422 0.350711 0)
(0.378967 0.203743 0)
(0.156988 0.0754131 0)
(0.0906602 0.0487423 0)
(0.0608756 0.0341049 0)
(0.0445539 0.0242626 0)
(0.0336619 0.017251 0)
(0.0254234 0.0118883 0)
(0.0194536 0.00785537 0)
(0.0150107 0.00499056 0)
(0.0116348 0.003052 0)
(0.00908736 0.00178465 0)
(0.00720515 0.00101623 0)
(0.00586211 0.000570659 0)
(0.00519185 0.000294772 0)
(-0.0428743 -1.10666 0)
(-0.136507 -1.04799 0)
(-0.191816 -0.978942 0)
(-0.201023 -0.883147 0)
(-0.163769 -0.805242 0)
(-0.0595564 -0.79453 0)
(0.0968767 -0.828249 0)
(0.331769 -0.776831 0)
(0.63945 0.183482 0)
(0.643312 0.759691 0)
(0.186835 0.809926 0)
(0.52725 0.306544 0)
(0.62956 0.111406 0)
(0.68981 -0.0784817 0)
(1.00004 -0.458835 0)
(0.89901 0.67128 0)
(0.338657 0.260731 0)
(0.15746 0.0909667 0)
(0.091991 0.0543666 0)
(0.0618454 0.0367166 0)
(0.0451596 0.0256935 0)
(0.0341281 0.0181947 0)
(0.0258851 0.0125011 0)
(0.0198549 0.0082418 0)
(0.01532 0.0052445 0)
(0.0118678 0.00322266 0)
(0.00925536 0.00189886 0)
(0.00731514 0.00109919 0)
(0.00593493 0.000624518 0)
(0.00524415 0.000302788 0)
(-0.039275 -0.999891 0)
(-0.131416 -0.989103 0)
(-0.181619 -0.957701 0)
(-0.187196 -0.893356 0)
(-0.14806 -0.848581 0)
(-0.0646649 -0.859229 0)
(0.0769508 -0.927335 0)
(0.42652 -1.02951 0)
(1.34073 0.548408 0)
(0.630345 0.822898 0)
(0.56243 0.790858 0)
(0.404406 0.260817 0)
(0.482764 0.129109 0)
(0.435331 -0.096836 0)
(0.0486674 -0.472082 0)
(0.0852793 0.804066 0)
(0.270606 0.293211 0)
(0.148384 0.106127 0)
(0.0894124 0.0602576 0)
(0.0606898 0.0394984 0)
(0.0443909 0.0272077 0)
(0.033662 0.0191829 0)
(0.0257443 0.0131495 0)
(0.0198584 0.00866371 0)
(0.0153609 0.00553304 0)
(0.0119104 0.00341815 0)
(0.00927878 0.00203168 0)
(0.00731153 0.00119348 0)
(0.00591365 0.000680694 0)
(0.0052179 0.000311186 0)
(-0.0253299 -0.909998 0)
(-0.0899378 -0.932373 0)
(-0.134776 -0.932973 0)
(-0.153807 -0.899655 0)
(-0.137071 -0.880387 0)
(-0.0877992 -0.911313 0)
(0.0142771 -1.02406 0)
(0.330436 -1.26857 0)
(1.61693 0.0871673 0)
(0.67331 0.910563 0)
(0.719623 0.698375 0)
(0.289772 0.158626 0)
(0.435283 0.155163 0)
(0.293497 -0.0531076 0)
(-0.379277 -0.307001 0)
(-0.219907 0.690115 0)
(0.201195 0.303049 0)
(0.13482 0.119412 0)
(0.0851979 0.0661026 0)
(0.0587586 0.0423644 0)
(0.0432076 0.0287807 0)
(0.0329429 0.0202 0)
(0.0254366 0.0138251 0)
(0.0197524 0.00911979 0)
(0.0153372 0.00585491 0)
(0.0119139 0.0036395 0)
(0.00927515 0.00218483 0)
(0.00729216 0.00130003 0)
(0.00588341 0.000740229 0)
(0.00518313 0.000320739 0)
(-0.0113423 -0.853706 0)
(-0.0510364 -0.885953 0)
(-0.0946366 -0.898823 0)
(-0.12934 -0.890117 0)
(-0.139561 -0.891796 0)
(-0.130381 -0.939553 0)
(-0.0990165 -1.0842 0)
(-0.0100844 -1.48652 0)
(0.126083 -0.600659 0)
(0.782702 0.962041 0)
(0.579375 0.738556 0)
(0.821052 0.403848 0)
(0.434814 0.205079 0)
(0.207102 0.0230935 0)
(-0.33717 -0.102633 0)
(-0.206433 0.517718 0)
(0.140301 0.296098 0)
(0.118392 0.129872 0)
(0.0797242 0.0716444 0)
(0.0562528 0.0452455 0)
(0.0417556 0.0303966 0)
(0.0320729 0.0212355 0)
(0.0250184 0.0145217 0)
(0.0195704 0.00960712 0)
(0.0152696 0.00620582 0)
(0.0118931 0.00388566 0)
(0.0092594 0.00235806 0)
(0.00726876 0.00141868 0)
(0.00585615 0.000804574 0)
(0.00514933 0.00033266 0)
(-0.00463784 -0.82491 0)
(-0.0323958 -0.843986 0)
(-0.0764569 -0.85604 0)
(-0.120539 -0.862757 0)
(-0.154531 -0.879229 0)
(-0.185772 -0.932966 0)
(-0.23639 -1.07031 0)
(-0.398432 -1.41579 0)
(-0.84942 -0.804315 0)
(-0.550703 1.29105 0)
(1.12221 0.926208 0)
(0.786531 0.29046 0)
(0.449627 0.303447 0)
(0.137395 0.108996 0)
(-0.234261 0.033652 0)
(-0.166327 0.39688 0)
(0.0907625 0.278661 0)
(0.100175 0.136939 0)
(0.07307 0.0766181 0)
(0.0531753 0.0480572 0)
(0.0400317 0.0320313 0)
(0.0310531 0.0222772 0)
(0.0244876 0.0152335 0)
(0.0193096 0.0101212 0)
(0.0151533 0.0065811 0)
(0.0118433 0.00415484 0)
(0.00923063 0.00255004 0)
(0.00723938 0.00154871 0)
(0.00583057 0.000874829 0)
(0.00511565 0.00034788 0)
(-0.00695107 -0.800548 0)
(-0.0370318 -0.801289 0)
(-0.0792574 -0.808472 0)
(-0.126223 -0.821475 0)
(-0.176679 -0.842758 0)
(-0.239832 -0.888614 0)
(-0.349101 -0.983323 0)
(-0.621149 -1.15126 0)
(-1.37162 -0.928202 0)
(-0.268343 0.455289 0)
(0.692035 0.676121 0)
(1.02122 0.496153 0)
(0.350547 0.537715 0)
(0.0662778 0.188598 0)
(-0.170886 0.115567 0)
(-0.134123 0.318748 0)
(0.0523422 0.256014 0)
(0.081214 0.140422 0)
(0.06535 0.0807587 0)
(0.049521 0.0506954 0)
(0.0380198 0.0336481 0)
(0.0298748 0.02331 0)
(0.0238387 0.0159535 0)
(0.0189662 0.0106559 0)
(0.0149835 0.00697654 0)
(0.0117602 0.00444473 0)
(0.00918655 0.00275884 0)
(0.00720293 0.00168931 0)
(0.0058048 0.000951526 0)
(0.00508086 0.000366941 0)
(-0.0128281 -0.758705 0)
(-0.0498753 -0.755325 0)
(-0.089649 -0.759385 0)
(-0.137904 -0.770116 0)
(-0.197722 -0.78664 0)
(-0.278512 -0.814797 0)
(-0.408453 -0.857252 0)
(-0.656072 -0.882117 0)
(-1.08385 -0.646488 0)
(-0.784104 -0.143112 0)
(-0.305343 -0.0729749 0)
(0.898335 0.910518 0)
(-0.00151623 0.645671 0)
(-0.0114898 0.243624 0)
(-0.138769 0.162984 0)
(-0.111285 0.267478 0)
(0.0233756 0.231853 0)
(0.0624632 0.140479 0)
(0.0567531 0.0838289 0)
(0.0453049 0.0530426 0)
(0.03571 0.035198 0)
(0.0285298 0.0243166 0)
(0.0230686 0.0166737 0)
(0.0185388 0.0112045 0)
(0.0147586 0.0073893 0)
(0.0116421 0.00475303 0)
(0.00912456 0.00298236 0)
(0.0071589 0.00183968 0)
(0.00577606 0.00103475 0)
(0.00504373 0.000390108 0)
(-0.0134378 -0.701245 0)
(-0.0524987 -0.703663 0)
(-0.0954549 -0.705833 0)
(-0.14655 -0.710168 0)
(-0.21031 -0.71724 0)
(-0.295009 -0.725775 0)
(-0.417551 -0.727545 0)
(-0.601595 -0.685906 0)
(-0.811181 -0.495416 0)
(-0.80981 -0.235427 0)
(-0.897571 -0.137886 0)
(-0.902704 0.651756 0)
(-0.200906 0.51902 0)
(-0.0854413 0.262985 0)
(-0.127114 0.186283 0)
(-0.0973299 0.232063 0)
(0.00170064 0.208327 0)
(0.0446776 0.137522 0)
(0.0475298 0.0856427 0)
(0.0405659 0.054975 0)
(0.0330976 0.0366215 0)
(0.0270067 0.0252758 0)
(0.0221705 0.0173836 0)
(0.0180226 0.01176 0)
(0.0144741 0.00781685 0)
(0.0114847 0.00507734 0)
(0.00903821 0.00321856 0)
(0.00710259 0.00199887 0)
(0.00573829 0.00112431 0)
(0.00500067 0.00041745 0)
(-0.0129195 -0.64344 0)
(-0.0516609 -0.64353 0)
(-0.0963927 -0.643483 0)
(-0.148403 -0.643094 0)
(-0.211309 -0.6412 0)
(-0.29072 -0.634321 0)
(-0.394291 -0.612588 0)
(-0.525006 -0.551504 0)
(-0.651189 -0.413507 0)
(-0.704674 -0.231965 0)
(-0.757807 -0.0480155 0)
(-0.651709 0.325701 0)
(-0.289387 0.380437 0)
(-0.143272 0.251145 0)
(-0.12731 0.191323 0)
(-0.0906292 0.205201 0)
(-0.0147278 0.186385 0)
(0.028374 0.132089 0)
(0.0379734 0.0860811 0)
(0.0353731 0.0563695 0)
(0.0301864 0.0378501 0)
(0.0252951 0.0261612 0)
(0.0211376 0.0180704 0)
(0.0174133 0.0123152 0)
(0.0141253 0.00825588 0)
(0.0112847 0.00541502 0)
(0.0089231 0.00346562 0)
(0.0070304 0.00216572 0)
(0.00568852 0.00121968 0)
(0.00495004 0.000448832 0)
(-0.013168 -0.580058 0)
(-0.0510504 -0.579488 0)
(-0.0939637 -0.577258 0)
(-0.14343 -0.57273 0)
(-0.201657 -0.564275 0)
(-0.271426 -0.54805 0)
(-0.355069 -0.516184 0)
(-0.449688 -0.454797 0)
(-0.537358 -0.349345 0)
(-0.591676 -0.207539 0)
(-0.611597 -0.0347351 0)
(-0.521713 0.183347 0)
(-0.312768 0.265801 0)
(-0.179974 0.219745 0)
(-0.132458 0.182627 0)
(-0.0889888 0.182298 0)
(-0.0275011 0.166137 0)
(0.013836 0.124731 0)
(0.0283891 0.0851018 0)
(0.0298244 0.0571142 0)
(0.0269908 0.0388121 0)
(0.0233903 0.0269425 0)
(0.0199688 0.0187187 0)
(0.0167099 0.0128612 0)
(0.0137109 0.00870068 0)
(0.0110425 0.00576267 0)
(0.00877881 0.00372168 0)
(0.00694127 0.00233894 0)
(0.00562706 0.00132014 0)
(0.00489292 0.000483872 0)
(-0.0125469 -0.514908 0)
(-0.0478943 -0.513522 0)
(-0.0876176 -0.509715 0)
(-0.132704 -0.5026 0)
(-0.18428 -0.490471 0)
(-0.243374 -0.470104 0)
(-0.309985 -0.436037 0)
(-0.380542 -0.380509 0)
(-0.444782 -0.296391 0)
(-0.487677 -0.18376 0)
(-0.494164 -0.0460041 0)
(-0.431064 0.0999572 0)
(-0.303802 0.17974 0)
(-0.197059 0.180064 0)
(-0.137639 0.164473 0)
(-0.0901318 0.160768 0)
(-0.0376356 0.147262 0)
(0.00118326 0.115931 0)
(0.0190748 0.0827365 0)
(0.0240482 0.0571192 0)
(0.0235441 0.0394362 0)
(0.0212985 0.0275836 0)
(0.0186672 0.019308 0)
(0.015912 0.0133852 0)
(0.0132299 0.0091421 0)
(0.0107559 0.0061155 0)
(0.00860294 0.00398449 0)
(0.00683175 0.00251747 0)
(0.00555095 0.00142498 0)
(0.00482669 0.000522137 0)
(-0.0114589 -0.450274 0)
(-0.0431671 -0.448402 0)
(-0.0785934 -0.44372 0)
(-0.118224 -0.435434 0)
(-0.162492 -0.42205 0)
(-0.2115 -0.401104 0)
(-0.264412 -0.368946 0)
(-0.318156 -0.321024 0)
(-0.366152 -0.253279 0)
(-0.398254 -0.16483 0)
(-0.401464 -0.0597499 0)
(-0.360439 0.0457911 0)
(-0.280147 0.116697 0)
(-0.199058 0.13978 0)
(-0.14 0.140873 0)
(-0.0920508 0.139481 0)
(-0.0456634 0.129378 0)
(-0.00958478 0.106122 0)
(0.0103031 0.0790842 0)
(0.0182 0.0563251 0)
(0.0199022 0.0396552 0)
(0.0190384 0.0280427 0)
(0.0172401 0.019813 0)
(0.0150206 0.0138712 0)
(0.0126804 0.00956979 0)
(0.0104201 0.00646841 0)
(0.00839075 0.0042525 0)
(0.00669578 0.00270136 0)
(0.00545498 0.00153429 0)
(0.00474631 0.000563544 0)
(-0.0101245 -0.388452 0)
(-0.0376399 -0.386355 0)
(-0.0682057 -0.3814 0)
(-0.102023 -0.373031 0)
(-0.139127 -0.360058 0)
(-0.179199 -0.340635 0)
(-0.221212 -0.312303 0)
(-0.262697 -0.272273 0)
(-0.299127 -0.218158 0)
(-0.323552 -0.149518 0)
(-0.327137 -0.0699347 0)
(-0.301941 0.00957821 0)
(-0.250509 0.0706303 0)
(-0.190814 0.103011 0)
(-0.138426 0.1152 0)
(-0.0932344 0.118257 0)
(-0.0517702 0.112186 0)
(-0.018488 0.0956044 0)
(0.00230674 0.0742896 0)
(0.0124486 0.0547087 0)
(0.01614 0.0394106 0)
(0.016637 0.0282743 0)
(0.0156964 0.0202058 0)
(0.0140362 0.014303 0)
(0.0120592 0.00997497 0)
(0.0100303 0.00681734 0)
(0.00813856 0.00452531 0)
(0.00652945 0.00289202 0)
(0.00533618 0.00164919 0)
(0.0046482 0.000608336 0)
(-0.00870268 -0.331121 0)
(-0.0319363 -0.328984 0)
(-0.0576243 -0.324193 0)
(-0.0857896 -0.31647 0)
(-0.116286 -0.30488 0)
(-0.148669 -0.288027 0)
(-0.181979 -0.264218 0)
(-0.214302 -0.231691 0)
(-0.242455 -0.189037 0)
(-0.261756 -0.136174 0)
(-0.266526 -0.0757212 0)
(-0.252109 -0.0145275 0)
(-0.219238 0.0370356 0)
(-0.176298 0.0714824 0)
(-0.132967 0.0899545 0)
(-0.0927488 0.097474 0)
(-0.0559504 0.0955832 0)
(-0.025553 0.0846468 0)
(-0.0047308 0.0685434 0)
(0.00697128 0.0522853 0)
(0.0123524 0.0386601 0)
(0.0141328 0.0282353 0)
(0.014049 0.0204589 0)
(0.0129612 0.0146653 0)
(0.0113642 0.0103513 0)
(0.00958253 0.00715935 0)
(0.00784362 0.00480265 0)
(0.00633111 0.00309062 0)
(0.00519333 0.00177082 0)
(0.00453062 0.000656455 0)
(-0.00735086 -0.27912 0)
(-0.0266446 -0.277166 0)
(-0.0477865 -0.27292 0)
(-0.0707394 -0.266282 0)
(-0.0953516 -0.25653 0)
(-0.121214 -0.2426 0)
(-0.147531 -0.2233 0)
(-0.172867 -0.197484 0)
(-0.19499 -0.164302 0)
(-0.210765 -0.123796 0)
(-0.21652 -0.0776884 0)
(-0.209229 -0.0301217 0)
(-0.18861 0.0127631 0)
(-0.158414 0.0455857 0)
(-0.124307 0.0667643 0)
(-0.0901981 0.0777245 0)
(-0.0581613 0.0796547 0)
(-0.0308052 0.0735048 0)
(-0.0106614 0.0620541 0)
(0.00194072 0.0491113 0)
(0.0086478 0.0373858 0)
(0.0115774 0.0278919 0)
(0.0123195 0.0205472 0)
(0.0118051 0.0149432 0)
(0.0105986 0.0106912 0)
(0.00907696 0.0074899 0)
(0.00750544 0.00508217 0)
(0.00609985 0.00329608 0)
(0.00502512 0.00189876 0)
(0.00439217 0.00070724 0)
(-0.00614183 -0.232444 0)
(-0.0219434 -0.231083 0)
(-0.0390411 -0.227904 0)
(-0.0573835 -0.222657 0)
(-0.0769033 -0.214831 0)
(-0.0973112 -0.203709 0)
(-0.118006 -0.188478 0)
(-0.137935 -0.168376 0)
(-0.155537 -0.142855 0)
(-0.168698 -0.111948 0)
(-0.174981 -0.0767115 0)
(-0.172271 -0.0396266 0)
(-0.15984 -0.0044403 0)
(-0.13916 0.0250362 0)
(-0.11336 0.0465129 0)
(-0.085609 0.0595788 0)
(-0.0584263 0.0646097 0)
(-0.0342845 0.0624318 0)
(-0.015378 0.055041 0)
(-0.00249376 0.0452872 0)
(0.005143 0.035597 0)
(0.00903599 0.0272222 0)
(0.0105403 0.0204489 0)
(0.0105827 0.0151224 0)
(0.00976837 0.010985 0)
(0.00851564 0.00780197 0)
(0.00712384 0.00535913 0)
(0.0058344 0.00350488 0)
(0.00482949 0.00203044 0)
(0.00423052 0.000759337 0)
(-0.00490335 -0.191702 0)
(-0.017355 -0.191012 0)
(-0.0308809 -0.189021 0)
(-0.0453989 -0.185223 0)
(-0.0608008 -0.179231 0)
(-0.076848 -0.170611 0)
(-0.0931047 -0.15885 0)
(-0.108829 -0.14344 0)
(-0.122946 -0.124004 0)
(-0.134021 -0.100527 0)
(-0.140393 -0.0736174 0)
(-0.140522 -0.0447466 0)
(-0.133557 -0.016236 0)
(-0.119863 0.00925599 0)
(-0.101035 0.0295477 0)
(-0.079281 0.0434678 0)
(-0.0568728 0.0507098 0)
(-0.0360632 0.0516894 0)
(-0.0188253 0.047744 0)
(-0.00620382 0.0409483 0)
(0.00195683 0.0333317 0)
(0.00658383 0.0262199 0)
(0.00875139 0.0201482 0)
(0.00931293 0.0151881 0)
(0.00888108 0.0112207 0)
(0.00790007 0.00808779 0)
(0.00669632 0.00562868 0)
(0.00553158 0.00371341 0)
(0.00460271 0.00216396 0)
(0.00404212 0.000812 0)
(-0.00378971 -0.157635 0)
(-0.0133089 -0.157275 0)
(-0.0237458 -0.156019 0)
(-0.0350416 -0.153353 0)
(-0.0470761 -0.148944 0)
(-0.0596386 -0.142481 0)
(-0.0724002 -0.133609 0)
(-0.0848349 -0.121981 0)
(-0.0962028 -0.107327 0)
(-0.105521 -0.0895942 0)
(-0.111637 -0.0691098 0)
(-0.113414 -0.0467329 0)
(-0.110042 -0.0239037 0)
(-0.101378 -0.0024437 0)
(-0.088123 0.0158529 0)
(-0.0716536 0.0296367 0)
(-0.0537307 0.0382004 0)
(-0.0362608 0.0415334 0)
(-0.0209948 0.0404067 0)
(-0.00908603 0.0362482 0)
(-0.000801048 0.0306567 0)
(0.00430229 0.0248979 0)
(0.00700045 0.0196373 0)
(0.0080204 0.0151291 0)
(0.00794732 0.0113881 0)
(0.00723326 0.00834043 0)
(0.00622163 0.0058849 0)
(0.00518817 0.00391847 0)
(0.00434119 0.0022977 0)
(0.00382345 0.000864792 0)
(-0.00290664 -0.129666 0)
(-0.010106 -0.129439 0)
(-0.0180297 -0.128581 0)
(-0.0266533 -0.126686 0)
(-0.0358973 -0.12348 0)
(-0.0456089 -0.118722 0)
(-0.0555467 -0.112147 0)
(-0.065333 -0.103502 0)
(-0.074451 -0.0925725 0)
(-0.0822195 -0.0792792 0)
(-0.0878305 -0.0637719 0)
(-0.0904418 -0.0465371 0)
(-0.0893525 -0.0284603 0)
(-0.0842222 -0.0107616 0)
(-0.0752494 0.00518701 0)
(-0.0632014 0.0181477 0)
(-0.0493034 0.0272579 0)
(-0.0350492 0.0321926 0)
(-0.0219278 0.0332646 0)
(-0.0110834 0.0313657 0)
(-0.00304545 0.0276798 0)
(0.00227206 0.0232912 0)
(0.00534018 0.0189203 0)
(0.00673439 0.0149396 0)
(0.0069811 0.0114799 0)
(0.0065197 0.00855414 0)
(0.00569909 0.0061228 0)
(0.00480132 0.00411734 0)
(0.0040418 0.00242918 0)
(0.00357078 0.000917097 0)
(-0.00220486 -0.106884 0)
(-0.00760666 -0.106722 0)
(-0.0135673 -0.106102 0)
(-0.0200782 -0.10472 0)
(-0.0270877 -0.102377 0)
(-0.0344916 -0.0988969 0)
(-0.0421249 -0.0940804 0)
(-0.0497276 -0.0877249 0)
(-0.0569451 -0.0796502 0)
(-0.063307 -0.0697571 0)
(-0.0682442 -0.0580885 0)
(-0.0711365 -0.0449021 0)
(-0.0714096 -0.0307294 0)
(-0.0686754 -0.0163686 0)
(-0.0628729 -0.00281436 0)
(-0.0543671 0.00891616 0)
(-0.0439275 0.0179713 0)
(-0.0326427 0.0238515 0)
(-0.0217105 0.0265358 0)
(-0.0121774 0.0264891 0)
(-0.00469568 0.0245099 0)
(0.0005706 0.0214564 0)
(0.00382536 0.0180178 0)
(0.00548849 0.0146219 0)
(0.00599966 0.011493 0)
(0.00576587 0.0087238 0)
(0.00512905 0.00633743 0)
(0.00436869 0.00430602 0)
(0.0037011 0.0025571 0)
(0.00328059 0.000968103 0)
(-0.00166675 -0.0884094 0)
(-0.00570526 -0.0882896 0)
(-0.0101556 -0.0878362 0)
(-0.015013 -0.0868363 0)
(-0.0202466 -0.0851438 0)
(-0.0257931 -0.082622 0)
(-0.0315508 -0.0791165 0)
(-0.0373514 -0.0744692 0)
(-0.0429582 -0.0685309 0)
(-0.0480496 -0.0611985 0)
(-0.0522268 -0.0524545 0)
(-0.0550372 -0.0424175 0)
(-0.0560292 -0.0313914 0)
(-0.054839 -0.0198807 0)
(-0.0512963 -0.00857352 0)
(-0.0455121 0.00174665 0)
(-0.0379289 0.0103345 0)
(-0.0292784 0.0166318 0)
(-0.0204685 0.0204059 0)
(-0.0123896 0.0218022 0)
(-0.00571006 0.0212871 0)
(-0.000746622 0.0194784 0)
(0.00250868 0.0169672 0)
(0.00431696 0.01419 0)
(0.00502184 0.0114289 0)
(0.00497988 0.00884639 0)
(0.00451274 0.00652483 0)
(0.00388806 0.00448104 0)
(0.0033158 0.00267879 0)
(0.00294906 0.00101767 0)
(-0.00122888 -0.0735584 0)
(-0.00417621 -0.0735045 0)
(-0.00742475 -0.0732222 0)
(-0.0109762 -0.0725299 0)
(-0.0148161 -0.0713173 0)
(-0.0189064 -0.0694892 0)
(-0.0231824 -0.0669342 0)
(-0.0275333 -0.0635323 0)
(-0.0318018 -0.0591624 0)
(-0.0357717 -0.0537277 0)
(-0.0391693 -0.0471798 0)
(-0.0416734 -0.0395537 0)
(-0.0429449 -0.0310078 0)
(-0.0426781 -0.0218459 0)
(-0.0406717 -0.0125269 0)
(-0.036904 -0.00362129 0)
(-0.0315921 0.00426399 0)
(-0.0251931 0.0105926 0)
(-0.0183525 0.0150216 0)
(-0.0117772 0.0174769 0)
(-0.00607693 0.0181582 0)
(-0.00163471 0.0174569 0)
(0.00143584 0.0158251 0)
(0.00325287 0.0136691 0)
(0.00406643 0.011297 0)
(0.00417041 0.00892238 0)
(0.00385208 0.00668174 0)
(0.00335762 0.00463858 0)
(0.0028827 0.00279135 0)
(0.00257249 0.00106407 0)
(-0.000868466 -0.0620759 0)
(-0.00293988 -0.0620287 0)
(-0.00523838 -0.0618111 0)
(-0.00776839 -0.0612989 0)
(-0.0105181 -0.0604119 0)
(-0.0134609 -0.0590772 0)
(-0.0165542 -0.0572075 0)
(-0.0197255 -0.0547076 0)
(-0.0228736 -0.0514774 0)
(-0.0258578 -0.0474276 0)
(-0.0284968 -0.0424972 0)
(-0.0305703 -0.0366754 0)
(-0.0318334 -0.0300319 0)
(-0.0320484 -0.0227385 0)
(-0.0310292 -0.0150872 0)
(-0.0286973 -0.00747777 0)
(-0.0251305 -0.00038087 0)
(-0.0205965 0.0057347 0)
(-0.0155193 0.0104863 0)
(-0.0104237 0.0136654 0)
(-0.00581517 0.015274 0)
(-0.0020683 0.0155042 0)
(0.000639278 0.0146656 0)
(0.00232338 0.0130999 0)
(0.00315002 0.0111138 0)
(0.003345 0.00895608 0)
(0.00314874 0.00680699 0)
(0.00277576 0.00477486 0)
(0.00239873 0.00289187 0)
(0.00214746 0.00110575 0)
(-0.000605423 -0.0534105 0)
(-0.00204406 -0.0533701 0)
(-0.00361994 -0.0531983 0)
(-0.00533551 -0.0528076 0)
(-0.00719319 -0.0521419 0)
(-0.00918526 -0.0511462 0)
(-0.0112903 -0.0497514 0)
(-0.0134675 -0.0478788 0)
(-0.0156573 -0.0454449 0)
(-0.0177709 -0.0423705 0)
(-0.0196897 -0.0385912 0)
(-0.0212673 -0.0340731 0)
(-0.0223365 -0.0288329 0)
(-0.0227273 -0.0229581 0)
(-0.0222911 -0.0166269 0)
(-0.0209391 -0.0101112 0)
(-0.0186802 -0.00376386 0)
(-0.0156509 0.00202055 0)
(-0.0121145 0.00686951 0)
(-0.0084275 0.0105014 0)
(-0.00496933 0.0127833 0)
(-0.00205494 0.0137505 0)
(0.000131293 0.0135784 0)
(0.00154428 0.0125366 0)
(0.00228393 0.0109066 0)
(0.0025088 0.00895609 0)
(0.00240372 0.00690066 0)
(0.00214093 0.00488681 0)
(0.00186118 0.00297694 0)
(0.00167098 0.00114152 0)
(-0.000362751 -0.0471289 0)
(-0.00122375 -0.0471521 0)
(-0.00217583 -0.0470962 0)
(-0.00322335 -0.0468478 0)
(-0.00436707 -0.0463526 0)
(-0.00560077 -0.0455749 0)
(-0.00691013 -0.0444706 0)
(-0.00827018 -0.0429867 0)
(-0.00964695 -0.0410608 0)
(-0.0109905 -0.0386251 0)
(-0.012232 -0.0356147 0)
(-0.0132844 -0.0319812 0)
(-0.0140455 -0.0277096 0)
(-0.0144071 -0.0228355 0)
(-0.0142695 -0.0174647 0)
(-0.0135623 -0.0117817 0)
(-0.0122691 -0.00605177 0)
(-0.0104497 -0.000603143 0)
(-0.00825166 0.00422073 0)
(-0.00588899 0.00810581 0)
(-0.00360836 0.0108351 0)
(-0.00163034 0.0123335 0)
(-0.000103956 0.0126723 0)
(0.000912802 0.0120464 0)
(0.00146852 0.0107104 0)
(0.00166145 0.00893669 0)
(0.00161562 0.00696468 0)
(0.00145114 0.00497058 0)
(0.00126755 0.00304269 0)
(0.00114057 0.00116953 0)
(-0.000159215 -0.0436491 0)
(-0.000535032 -0.0436288 0)
(-0.000959381 -0.0435202 0)
(-0.00143575 -0.0432613 0)
(-0.00196096 -0.0428168 0)
(-0.00252888 -0.0421529 0)
(-0.00313302 -0.041226 0)
(-0.00376307 -0.039984 0)
(-0.00440248 -0.0383652 0)
(-0.00502733 -0.0363043 0)
(-0.00560818 -0.0337392 0)
(-0.00610851 -0.0306191 0)
(-0.0064835 -0.0269159 0)
(-0.00668317 -0.0226383 0)
(-0.0066594 -0.0178516 0)
(-0.0063758 -0.0126904 0)
(-0.00581918 -0.00736645 0)
(-0.00500887 -0.00216382 0)
(-0.0039992 0.00260068 0)
(-0.00290222 0.00660737 0)
(-0.00182245 0.00958575 0)
(-0.000865016 0.0114026 0)
(-0.000111271 0.0120637 0)
(0.000400533 0.0117074 0)
(0.000687424 0.0105678 0)
(0.000793708 0.00891477 0)
(0.000779286 0.0070016 0)
(0.00070353 0.00502307 0)
(0.000616154 0.00308455 0)
(0.000554943 0.00118751 0)
(-0.000136726 1.12704e-06 0)
(-0.000355453 1.98664e-06 0)
(-0.00071865 3.70304e-06 0)
(-0.00131944 6.6638e-06 0)
(-0.00226814 1.13833e-05 0)
(-0.00368923 1.84416e-05 0)
(-0.0057108 2.83848e-05 0)
(-0.00844688 4.157e-05 0)
(-0.0119728 5.79099e-05 0)
(-0.0162937 7.65487e-05 0)
(-0.0213119 9.5549e-05 0)
(-0.0268011 0.000111762 0)
(-0.0324063 0.000121133 0)
(-0.0376772 0.00011953 0)
(-0.0421371 0.000103894 0)
(-0.0453733 7.32468e-05 0)
(-0.0471126 2.90519e-05 0)
(-0.0472627 -2.51434e-05 0)
(-0.0459058 -8.48358e-05 0)
(-0.0432574 -0.000145223 0)
(-0.0396081 -0.00020234 0)
(-0.0352714 -0.000253347 0)
(-0.0305357 -0.000296665 0)
(-0.0256486 -0.000331724 0)
(-0.0207982 -0.000358776 0)
(-0.0161235 -0.000378617 0)
(-0.0117121 -0.00039213 0)
(-0.00761633 -0.000400541 0)
(-0.0038577 -0.000404743 0)
(-0.000442683 -0.00040607 0)
(-0.000130782 1.90754e-05 0)
(-0.000402384 3.19407e-05 0)
(-0.000845077 5.94962e-05 0)
(-0.00158333 0.000108383 0)
(-0.00276488 0.000187787 0)
(-0.00455981 0.00030859 0)
(-0.00714892 0.000481841 0)
(-0.0107021 0.00071619 0)
(-0.0153478 0.00101384 0)
(-0.0211311 0.00136469 0)
(-0.0279689 0.00173989 0)
(-0.0356064 0.00208702 0)
(-0.0436007 0.00233184 0)
(-0.0513496 0.00238991 0)
(-0.0581688 0.00218767 0)
(-0.0634172 0.0016859 0)
(-0.0666192 0.000894422 0)
(-0.0675491 -0.000129109 0)
(-0.0662471 -0.00129488 0)
(-0.0629731 -0.00250422 0)
(-0.0581254 -0.0036692 0)
(-0.0521573 -0.00472433 0)
(-0.0455021 -0.00563107 0)
(-0.0385373 -0.00637379 0)
(-0.0315572 -0.00695524 0)
(-0.0247834 -0.00738864 0)
(-0.0183579 -0.00769391 0)
(-0.0123695 -0.00789251 0)
(-0.00685982 -0.00800581 0)
(-0.00184279 -0.00805229 0)
(-0.00013015 3.37523e-05 0)
(-0.000400425 5.65074e-05 0)
(-0.000840941 0.000105266 0)
(-0.00157557 0.000191762 0)
(-0.00275136 0.000332264 0)
(-0.00453763 0.000546046 0)
(-0.00711462 0.000852716 0)
(-0.0106521 0.00126773 0)
(-0.0152798 0.00179526 0)
(-0.0210459 0.00241796 0)
(-0.0278738 0.00308545 0)
(-0.0355183 0.00370574 0)
(-0.0435483 0.00414769 0)
(-0.0513706 0.00426107 0)
(-0.0583031 0.00391341 0)
(-0.0636964 0.00303211 0)
(-0.0670567 0.00163167 0)
(-0.0681356 -0.000187351 0)
(-0.0669525 -0.00226548 0)
(-0.0637536 -0.00442606 0)
(-0.0589326 -0.00651074 0)
(-0.0529461 -0.00840096 0)
(-0.0462353 -0.0100267 0)
(-0.0391879 -0.0113593 0)
(-0.0321084 -0.0124029 0)
(-0.0252267 -0.013181 0)
(-0.0186915 -0.0137292 0)
(-0.0125966 -0.014086 0)
(-0.00698633 -0.0142893 0)
(-0.00187704 -0.0143728 0)
(-0.000129167 4.83335e-05 0)
(-0.000397379 8.0924e-05 0)
(-0.000834513 0.00015075 0)
(-0.00156351 0.000274617 0)
(-0.00273033 0.000475844 0)
(-0.00450317 0.000782045 0)
(-0.00706128 0.00122141 0)
(-0.0105744 0.00181628 0)
(-0.0151737 0.00257314 0)
(-0.0209128 0.00346802 0)
(-0.0277247 0.00443019 0)
(-0.0353794 0.00532946 0)
(-0.0434635 0.00597892 0)
(-0.051399 0.00616233 0)
(-0.0585078 0.00568607 0)
(-0.0641279 0.00443998 0)
(-0.0677377 0.00243849 0)
(-0.0690528 -0.000178176 0)
(-0.0680592 -0.00318227 0)
(-0.0649814 -0.0063168 0)
(-0.060205 -0.00934976 0)
(-0.0541912 -0.0121058 0)
(-0.047394 -0.0144802 0)
(-0.040217 -0.0164289 0)
(-0.0329804 -0.0179565 0)
(-0.0259283 -0.0190962 0)
(-0.0192198 -0.0198995 0)
(-0.0129562 -0.0204225 0)
(-0.00718704 -0.0207203 0)
(-0.00193101 -0.0208426 0)
(-0.000127837 6.2786e-05 0)
(-0.000393257 0.00010512 0)
(-0.000825812 0.000195821 0)
(-0.00154719 0.000356727 0)
(-0.00270187 0.000618135 0)
(-0.00445649 0.00101597 0)
(-0.00698904 0.00158698 0)
(-0.010469 0.00236056 0)
(-0.0150298 0.0033459 0)
(-0.0207317 0.0045134 0)
(-0.0275208 0.00577356 0)
(-0.0351876 0.00696004 0)
(-0.0433431 0.00783182 0)
(-0.0514301 0.00810651 0)
(-0.0587774 0.00752623 0)
(-0.0647073 0.00593723 0)
(-0.0686609 0.00334686 0)
(-0.0703042 -7.03258e-05 0)
(-0.0695769 -0.00401907 0)
(-0.0666715 -0.00816036 0)
(-0.0619618 -0.0121834 0)
(-0.0559145 -0.0158505 0)
(-0.0490004 -0.0190172 0)
(-0.0416456 -0.0216209 0)
(-0.0341923 -0.0236646 0)
(-0.0269041 -0.0251908 0)
(-0.0199547 -0.0262673 0)
(-0.013457 -0.0269684 0)
(-0.00746636 -0.0273677 0)
(-0.00200632 -0.0275316 0)
(-0.000126163 7.70734e-05 0)
(-0.00038807 0.000129025 0)
(-0.000814861 0.000240357 0)
(-0.00152665 0.000437861 0)
(-0.00266604 0.000758749 0)
(-0.00439773 0.00124719 0)
(-0.00689803 0.00194848 0)
(-0.0103361 0.00289923 0)
(-0.0148481 0.00411192 0)
(-0.0205022 0.00555252 0)
(-0.0272611 0.0071148 0)
(-0.0349403 0.00859898 0)
(-0.043182 0.0097122 0)
(-0.0514568 0.010106 0)
(-0.0591038 0.0094544 0)
(-0.0654279 0.00755227 0)
(-0.0698238 0.00439052 0)
(-0.0718945 0.000170824 0)
(-0.0715184 -0.00474676 0)
(-0.0688448 -0.00993793 0)
(-0.0642299 -0.0150067 0)
(-0.058146 -0.0196453 0)
(-0.0510857 -0.0236634 0)
(-0.0435033 -0.0269748 0)
(-0.0357703 -0.0295783 0)
(-0.0281758 -0.0315251 0)
(-0.0209135 -0.0328995 0)
(-0.0141101 -0.0337951 0)
(-0.00783094 -0.0343053 0)
(-0.00210453 -0.0345146 0)
(-0.00012415 9.11485e-05 0)
(-0.000381831 0.000152585 0)
(-0.000801691 0.000284236 0)
(-0.00150194 0.000517801 0)
(-0.00262295 0.000897315 0)
(-0.00432703 0.00147508 0)
(-0.00678848 0.00230498 0)
(-0.010176 0.00343101 0)
(-0.0146286 0.0048696 0)
(-0.0202241 0.00658374 0)
(-0.0269441 0.00845299 0)
(-0.0346342 0.0102474 0)
(-0.0429745 0.0116254 0)
(-0.0514704 0.0121728 0)
(-0.0594767 0.0114912 0)
(-0.0662808 0.00931453 0)
(-0.071223 0.00560545 0)
(-0.073829 0.000582809 0)
(-0.0738997 -0.00533213 0)
(-0.0715278 -0.0116268 0)
(-0.0670441 -0.0178118 0)
(-0.0609258 -0.0234997 0)
(-0.0536908 -0.0284452 0)
(-0.0458293 -0.0325323 0)
(-0.0377493 -0.0357527 0)
(-0.0297725 -0.0381645 0)
(-0.0221181 -0.0398688 0)
(-0.0149312 -0.0409804 0)
(-0.00828931 -0.0416136 0)
(-0.00222816 -0.0418735 0)
(-0.000121804 0.000104984 0)
(-0.000374559 0.000175726 0)
(-0.000786336 0.000327337 0)
(-0.00147313 0.000596329 0)
(-0.0025727 0.00103345 0)
(-0.00424456 0.00169905 0)
(-0.00666063 0.00265555 0)
(-0.00998884 0.00395457 0)
(-0.0143716 0.00561724 0)
(-0.019897 0.00760525 0)
(-0.0265682 0.00978683 0)
(-0.0342654 0.011906 0)
(-0.0427132 0.0135759 0)
(-0.0514599 0.014318 0)
(-0.0598832 0.0136568 0)
(-0.0672541 0.0112545 0)
(-0.0728529 0.00703037 0)
(-0.0761133 0.00120762 0)
(-0.0767403 -0.0057367 0)
(-0.0747533 -0.0131989 0)
(-0.0704481 -0.0205867 0)
(-0.0643038 -0.0274203 0)
(-0.0568681 -0.0333886 0)
(-0.0486738 -0.0383377 0)
(-0.0401742 -0.042247 0)
(-0.0317318 -0.0451801 0)
(-0.0235977 -0.0472556 0)
(-0.0159404 -0.04861 0)
(-0.00885287 -0.0493824 0)
(-0.00238024 -0.0496993 0)
(-0.000119132 0.000118533 0)
(-0.000366272 0.000198383 0)
(-0.000768841 0.000369543 0)
(-0.00144029 0.000673229 0)
(-0.00251543 0.00116677 0)
(-0.00415054 0.00191848 0)
(-0.00651477 0.00299925 0)
(-0.00977508 0.00446858 0)
(-0.0140771 0.00635312 0)
(-0.0195204 0.00861508 0)
(-0.0261316 0.0111147 0)
(-0.0338295 0.0135745 0)
(-0.0423898 0.0155672 0)
(-0.0514127 0.0165518 0)
(-0.0603071 0.0159714 0)
(-0.068333 0.0134038 0)
(-0.0747055 0.00870729 0)
(-0.0787527 0.002093 0)
(-0.080062 -0.00591529 0)
(-0.0785608 -0.0146198 0)
(-0.0744952 -0.0233141 0)
(-0.0683425 -0.0314112 0)
(-0.0606826 -0.03852 0)
(-0.0520996 -0.044438 0)
(-0.0431014 -0.0491262 0)
(-0.0341007 -0.0526513 0)
(-0.0253886 -0.0551492 0)
(-0.0171629 -0.0567812 0)
(-0.0095358 -0.0577122 0)
(-0.00256427 -0.0580942 0)
(-0.00011614 0.000131766 0)
(-0.000356994 0.000220501 0)
(-0.00074925 0.000410734 0)
(-0.00140353 0.000748286 0)
(-0.0024513 0.00129694 0)
(-0.00404521 0.00213278 0)
(-0.00635124 0.00333518 0)
(-0.00953504 0.00497174 0)
(-0.0137455 0.00707549 0)
(-0.0190941 0.00961117 0)
(-0.0256324 0.0124346 0)
(-0.0333216 0.0152522 0)
(-0.0419948 0.017602 0)
(-0.0513135 0.0188834 0)
(-0.0607295 0.0184546 0)
(-0.0694986 0.0157953 0)
(-0.0767697 0.0106821 0)
(-0.0817508 0.00329273 0)
(-0.0838899 -0.00581454 0)
(-0.0829965 -0.0158464 0)
(-0.0792499 -0.02597 0)
(-0.0731177 -0.0354727 0)
(-0.0652148 -0.0438655 0)
(-0.0561847 -0.0508841 0)
(-0.0466013 -0.0564627 0)
(-0.0369385 -0.0606673 0)
(-0.0275367 -0.063652 0)
(-0.0186304 -0.065604 0)
(-0.0103561 -0.0667184 0)
(-0.00278556 -0.0671761 0)
(-0.000112839 0.000144644 0)
(-0.000346751 0.000242012 0)
(-0.00072762 0.000450802 0)
(-0.00136293 0.0008213 0)
(-0.00238046 0.00142358 0)
(-0.00392884 0.00234137 0)
(-0.00617042 0.00366243 0)
(-0.00926919 0.00546272 0)
(-0.0133771 0.00778253 0)
(-0.0186176 0.0105912 0)
(-0.0250687 0.0137442 0)
(-0.0327365 0.0169374 0)
(-0.0415176 0.0196813 0)
(-0.0511454 0.0213203 0)
(-0.0611274 0.0211248 0)
(-0.0707272 0.0184628 0)
(-0.0790296 0.0130047 0)
(-0.08511 0.00486848 0)
(-0.0882504 -0.00537019 0)
(-0.0881139 -0.0168248 0)
(-0.0847885 -0.0285213 0)
(-0.0787212 -0.0395996 0)
(-0.0705627 -0.0494504 0)
(-0.0610248 -0.0577304 0)
(-0.0507607 -0.0643365 0)
(-0.0403183 -0.0693293 0)
(-0.0300989 -0.0728803 0)
(-0.0203825 -0.0752057 0)
(-0.0113359 -0.0765342 0)
(-0.00304979 -0.07708 0)
(-0.000109236 0.000157132 0)
(-0.000335571 0.000262859 0)
(-0.000704008 0.000489633 0)
(-0.00131861 0.000892071 0)
(-0.00230312 0.00154636 0)
(-0.00380172 0.00254368 0)
(-0.00597273 0.00398011 0)
(-0.00897804 0.00594019 0)
(-0.0129723 0.00847237 0)
(-0.0180908 0.0115528 0)
(-0.0244384 0.0150406 0)
(-0.0320685 0.0186277 0)
(-0.0409468 0.0218049 0)
(-0.050889 0.0238682 0)
(-0.0614741 0.0239993 0)
(-0.0719898 0.0214409 0)
(-0.0814637 0.0157296 0)
(-0.0888282 0.00689102 0)
(-0.0931714 -0.00450708 0)
(-0.0939738 -0.0174879 0)
(-0.0912013 -0.0309234 0)
(-0.0852633 -0.0437791 0)
(-0.0768453 -0.0552982 0)
(-0.0667376 -0.0650358 0)
(-0.0556866 -0.072838 0)
(-0.044331 -0.0787529 0)
(-0.033146 -0.0829688 0)
(-0.0224683 -0.0857339 0)
(-0.0125029 -0.0873147 0)
(-0.0033646 -0.0879643 0)
(-0.000105343 0.000169203 0)
(-0.000323483 0.000282986 0)
(-0.000678479 0.000527124 0)
(-0.00127069 0.000960406 0)
(-0.00221947 0.00166493 0)
(-0.00366419 0.00273916 0)
(-0.00575864 0.00428737 0)
(-0.00866214 0.00640287 0)
(-0.0125315 0.00914315 0)
(-0.0175135 0.0124934 0)
(-0.0237397 0.0163204 0)
(-0.0313121 0.0203195 0)
(-0.0402702 0.0239707 0)
(-0.0505228 0.0265305 0)
(-0.0617388 0.0270936 0)
(-0.0732509 0.0247647 0)
(-0.0840429 0.0189163 0)
(-0.0928983 0.00944154 0)
(-0.0986813 -0.00313201 0)
(-0.100645 -0.0177513 0)
(-0.0985941 -0.0331169 0)
(-0.0928763 -0.0479893 0)
(-0.0842076 -0.0614299 0)
(-0.073467 -0.0728643 0)
(-0.0615116 -0.0820694 0)
(-0.0490891 -0.0890721 0)
(-0.0367661 -0.0940757 0)
(-0.0249494 -0.0973626 0)
(-0.0138921 -0.0992438 0)
(-0.00373948 -0.100017 0)
(-0.000101171 0.000180819 0)
(-0.000310523 0.000302339 0)
(-0.000651103 0.000563174 0)
(-0.0012193 0.00102611 0)
(-0.00212975 0.00177898 0)
(-0.0035166 0.00292727 0)
(-0.00552869 0.00458333 0)
(-0.00832219 0.00684942 0)
(-0.0120554 0.00979288 0)
(-0.0168857 0.01341 0)
(-0.0229708 0.0175798 0)
(-0.0304615 0.022008 0)
(-0.0394748 0.0261747 0)
(-0.0500233 0.0293077 0)
(-0.0618858 0.0304203 0)
(-0.0744671 0.0284684 0)
(-0.0867288 0.0226286 0)
(-0.097305 0.0126129 0)
(-0.104806 -0.0011373 0)
(-0.108204 -0.0175098 0)
(-0.10709 -0.0350231 0)
(-0.101717 -0.0521948 0)
(-0.0928244 -0.0678615 0)
(-0.0813885 -0.0812839 0)
(-0.0683978 -0.0921459 0)
(-0.0547317 -0.100441 0)
(-0.0410685 -0.106385 0)
(-0.0279024 -0.110297 0)
(-0.0155469 -0.112538 0)
(-0.00418607 -0.11346 0)
(-9.67326e-05 0.000191951 0)
(-0.000296725 0.000320862 0)
(-0.000621955 0.000597678 0)
(-0.00116458 0.00108902 0)
(-0.00203419 0.00188818 0)
(-0.00335934 0.00310748 0)
(-0.00528342 0.00486718 0)
(-0.00795888 0.00727855 0)
(-0.0115447 0.0104196 0)
(-0.0162076 0.0142997 0)
(-0.0221302 0.0188145 0)
(-0.0295113 0.0236877 0)
(-0.0385476 0.0284109 0)
(-0.0493653 0.0321973 0)
(-0.061875 0.0339885 0)
(-0.0755865 0.0325852 0)
(-0.0894709 0.026935 0)
(-0.102022 0.0165115 0)
(-0.111566 0.00161042 0)
(-0.116733 -0.0166314 0)
(-0.116833 -0.0365385 0)
(-0.111976 -0.056343 0)
(-0.102908 -0.0746027 0)
(-0.0907175 -0.0903677 0)
(-0.0765463 -0.103199 0)
(-0.0614322 -0.113042 0)
(-0.0461904 -0.120117 0)
(-0.0314236 -0.124783 0)
(-0.0175219 -0.127461 0)
(-0.00471911 -0.128562 0)
(-9.20409e-05 0.000202571 0)
(-0.000282127 0.000338503 0)
(-0.000591114 0.000630548 0)
(-0.00110667 0.00114895 0)
(-0.00193305 0.00199224 0)
(-0.00319281 0.00327929 0)
(-0.00502346 0.0051381 0)
(-0.00757302 0.00768901 0)
(-0.0110001 0.0110213 0)
(-0.0154797 0.0151595 0)
(-0.0212166 0.0200198 0)
(-0.0284562 0.0253517 0)
(-0.0374752 0.0306708 0)
(-0.0485217 0.0351928 0)
(-0.061661 0.0378026 0)
(-0.076547 0.0371454 0)
(-0.0922041 0.0319075 0)
(-0.107008 0.0212583 0)
(-0.118977 0.00526938 0)
(-0.126323 -0.0149504 0)
(-0.127989 -0.037528 0)
(-0.123875 -0.0603583 0)
(-0.114716 -0.0816528 0)
(-0.101718 -0.100193 0)
(-0.0862056 -0.11538 0)
(-0.0694069 -0.127086 0)
(-0.0523044 -0.135531 0)
(-0.0356352 -0.141117 0)
(-0.0198866 -0.144326 0)
(-0.00535751 -0.145647 0)
(-8.71104e-05 0.000212653 0)
(-0.00026677 0.000355218 0)
(-0.000558664 0.000661692 0)
(-0.00104574 0.00120573 0)
(-0.0018266 0.00209087 0)
(-0.00301747 0.00344223 0)
(-0.00474945 0.00539531 0)
(-0.00716549 0.00807953 0)
(-0.0104228 0.011596 0)
(-0.0147025 0.015986 0)
(-0.0202293 0.0211903 0)
(-0.0272915 0.0269917 0)
(-0.0362447 0.0329434 0)
(-0.0474645 0.0382833 0)
(-0.0611938 0.0418611 0)
(-0.0772755 0.0421739 0)
(-0.094845 0.0376197 0)
(-0.1122 0.0269895 0)
(-0.127036 0.0100286 0)
(-0.137066 -0.0122603 0)
(-0.140749 -0.0378147 0)
(-0.137685 -0.0641346 0)
(-0.128559 -0.0889968 0)
(-0.114712 -0.11084 0)
(-0.0976831 -0.128856 0)
(-0.0789267 -0.14282 0)
(-0.0596287 -0.15294 0)
(-0.0406929 -0.159655 0)
(-0.0227305 -0.163521 0)
(-0.00612526 -0.165113 0)
(-8.19561e-05 0.000222171 0)
(-0.000250696 0.000370962 0)
(-0.000524695 0.000691023 0)
(-0.000981945 0.00125922 0)
(-0.00171513 0.00218379 0)
(-0.00283377 0.00359582 0)
(-0.00446209 0.00563807 0)
(-0.00673726 0.00844889 0)
(-0.00981385 0.0121417 0)
(-0.0138769 0.0167759 0)
(-0.0191679 0.0223203 0)
(-0.0260133 0.0285987 0)
(-0.0348438 0.0352152 0)
(-0.0461652 0.0414527 0)
(-0.0604188 0.0461548 0)
(-0.0776867 0.0476888 0)
(-0.0972885 0.0441453 0)
(-0.11751 0.0338577 0)
(-0.135725 0.0161159 0)
(-0.14906 -0.00829994 0)
(-0.155335 -0.037169 0)
(-0.153727 -0.0675263 0)
(-0.144817 -0.0966 0)
(-0.130097 -0.12239 0)
(-0.11136 -0.14382 0)
(-0.0903332 -0.160537 0)
(-0.0684432 -0.172717 0)
(-0.046799 -0.180834 0)
(-0.0261703 -0.185522 0)
(-0.00705394 -0.187454 0)
(-7.65959e-05 0.000231099 0)
(-0.000233948 0.000385681 0)
(-0.000489298 0.000718463 0)
(-0.000915468 0.00130926 0)
(-0.00159895 0.00227075 0)
(-0.00264221 0.00373966 0)
(-0.00416213 0.00586564 0)
(-0.00628935 0.00879592 0)
(-0.00917449 0.0126564 0)
(-0.0130043 0.0175258 0)
(-0.0180327 0.023404 0)
(-0.0246187 0.0301623 0)
(-0.0332613 0.0374699 0)
(-0.0445953 0.0446796 0)
(-0.0592776 0.0506653 0)
(-0.0776824 0.0536973 0)
(-0.0994034 0.0515533 0)
(-0.122811 0.0420299 0)
(-0.144992 0.0238028 0)
(-0.162394 -0.00274153 0)
(-0.172003 -0.0352925 0)
(-0.172387 -0.0703355 0)
(-0.16395 -0.104402 0)
(-0.148356 -0.134921 0)
(-0.127711 -0.160485 0)
(-0.104059 -0.180572 0)
(-0.0791103 -0.195311 0)
(-0.0542213 -0.205191 0)
(-0.030363 -0.210921 0)
(-0.00818645 -0.213287 0)
(-7.10477e-05 0.000239421 0)
(-0.000216573 0.000399341 0)
(-0.000452572 0.00074393 0)
(-0.000846488 0.00135571 0)
(-0.00147836 0.0023515 0)
(-0.0024433 0.00387331 0)
(-0.00385037 0.00607735 0)
(-0.00582291 0.00911946 0)
(-0.00850623 0.013138 0)
(-0.0120862 0.0182321 0)
(-0.0168246 0.0244349 0)
(-0.0231059 0.0316712 0)
(-0.0314881 0.0396884 0)
(-0.042728 0.0479361 0)
(-0.0577093 0.055363 0)
(-0.0771513 0.0601915 0)
(-0.101028 0.0599025 0)
(-0.12793 0.0516852 0)
(-0.15474 0.033411 0)
(-0.177143 0.00483387 0)
(-0.191045 -0.0317847 0)
(-0.194129 -0.0722976 0)
(-0.186512 -0.112308 0)
(-0.170075 -0.148507 0)
(-0.147316 -0.179078 0)
(-0.120651 -0.203309 0)
(-0.092107 -0.221252 0)
(-0.063324 -0.233384 0)
(-0.0355282 -0.240469 0)
(-0.0095831 -0.243406 0)
(-6.53322e-05 0.000247113 0)
(-0.00019862 0.000411906 0)
(-0.000414617 0.000767359 0)
(-0.000775196 0.00139845 0)
(-0.0013537 0.00242583 0)
(-0.00223757 0.00399639 0)
(-0.00352763 0.00627256 0)
(-0.00533915 0.00941842 0)
(-0.00781067 0.0135848 0)
(-0.0111245 0.0188913 0)
(-0.0155453 0.0254064 0)
(-0.0214745 0.0331132 0)
(-0.0295169 0.0418493 0)
(-0.0405384 0.0511881 0)
(-0.0556517 0.0602056 0)
(-0.0759702 0.0671447 0)
(-0.101966 0.0692346 0)
(-0.132633 0.063009 0)
(-0.164803 0.0453199 0)
(-0.19336 0.0149502 0)
(-0.2128 -0.0261337 0)
(-0.219526 -0.0730661 0)
(-0.213183 -0.12019 0)
(-0.195961 -0.163214 0)
(-0.170883 -0.199838 0)
(-0.140807 -0.229166 0)
(-0.108073 -0.251161 0)
(-0.0746221 -0.266228 0)
(-0.0419937 -0.275133 0)
(-0.0113389 -0.278859 0)
(-5.94719e-05 0.000254162 0)
(-0.000180136 0.00042333 0)
(-0.000375535 0.000788684 0)
(-0.000701783 0.00143737 0)
(-0.00122531 0.00249351 0)
(-0.00202559 0.00410856 0)
(-0.00319477 0.00645067 0)
(-0.00483933 0.00969178 0)
(-0.00708959 0.0139949 0)
(-0.0101214 0.0195001 0)
(-0.0141971 0.0263121 0)
(-0.0197256 0.0344758 0)
(-0.0273435 0.043929 0)
(-0.0380059 0.0543949 0)
(-0.0530441 0.0651361 0)
(-0.0740055 0.0745052 0)
(-0.101985 0.0795625 0)
(-0.136612 0.0761822 0)
(-0.174921 0.0599703 0)
(-0.211033 0.0282807 0)
(-0.237664 -0.0176401 0)
(-0.249292 -0.0721756 0)
(-0.244784 -0.127888 0)
(-0.226844 -0.179102 0)
(-0.199252 -0.222997 0)
(-0.165406 -0.258562 0)
(-0.127882 -0.285737 0)
(-0.0888691 -0.304709 0)
(-0.0502985 -0.316179 0)
(-0.0136301 -0.321111 0)
(-5.34924e-05 0.00026055 0)
(-0.000161173 0.000433586 0)
(-0.000335433 0.000807839 0)
(-0.000626451 0.00147234 0)
(-0.00109354 0.00255436 0)
(-0.00180794 0.00420948 0)
(-0.00285271 0.00661112 0)
(-0.00432483 0.00993857 0)
(-0.00634498 0.0143665 0)
(-0.00907977 0.0200551 0)
(-0.0127834 0.0271451 0)
(-0.0178624 0.0357455 0)
(-0.0249674 0.0459016 0)
(-0.0351154 0.0575094 0)
(-0.0498301 0.070081 0)
(-0.0711174 0.0821906 0)
(-0.100813 0.0908565 0)
(-0.139461 0.0913622 0)
(-0.184691 0.0778615 0)
(-0.230057 0.0456905 0)
(-0.266104 -0.00536548 0)
(-0.284354 -0.0690441 0)
(-0.282304 -0.135238 0)
(-0.263678 -0.196241 0)
(-0.233346 -0.248763 0)
(-0.195526 -0.2918 0)
(-0.152792 -0.325729 0)
(-0.107133 -0.349945 0)
(-0.0615091 -0.365193 0)
(-0.0169181 -0.372433 0)
(-4.74233e-05 0.000266263 0)
(-0.000141781 0.000442644 0)
(-0.000294421 0.000824781 0)
(-0.000549408 0.00150327 0)
(-0.000958754 0.00260821 0)
(-0.00158521 0.00429886 0)
(-0.00250239 0.00675341 0)
(-0.00379706 0.0101579 0)
(-0.00557892 0.0146979 0)
(-0.00800249 0.0205529 0)
(-0.0113083 0.0278991 0)
(-0.0158895 0.0369092 0)
(-0.0223917 0.0477403 0)
(-0.0318593 0.0604787 0)
(-0.0459617 0.0749497 0)
(-0.0671658 0.0900824 0)
(-0.0981433 0.103027 0)
(-0.140666 0.108656 0)
(-0.193518 0.0995383 0)
(-0.250147 0.0682882 0)
(-0.298658 0.0120648 0)
(-0.325986 -0.0629097 0)
(-0.32693 -0.142167 0)
(-0.307528 -0.214724 0)
(-0.274015 -0.277419 0)
(-0.232241 -0.328742 0)
(-0.18499 -0.371936 0)
(-0.129787 -0.402978 0)
(-0.0777392 -0.423305 0)
(-0.0224643 -0.437145 0)
(-4.12981e-05 0.000271295 0)
(-0.000122014 0.000450482 0)
(-0.000252609 0.000839453 0)
(-0.000470864 0.00153008 0)
(-0.000821314 0.00265491 0)
(-0.00135801 0.00437644 0)
(-0.00214478 0.0068771 0)
(-0.00325755 0.010349 0)
(-0.00479369 0.0149877 0)
(-0.00689299 0.0209908 0)
(-0.00977678 0.0285678 0)
(-0.0138139 0.0379538 0)
(-0.0196243 0.0494175 0)
(-0.0282393 0.0632452 0)
(-0.0414033 0.0796337 0)
(-0.0620191 0.0980217 0)
(-0.0936414 0.115904 0)
(-0.139584 0.128077 0)
(-0.200536 0.125552 0)
(-0.270698 0.0974775 0)
(-0.335891 0.0366342 0)
(-0.376143 -0.0527939 0)
(-0.37992 -0.148968 0)
(-0.359559 -0.234461 0)
(-0.320955 -0.310399 0)
(-0.270539 -0.369824 0)
(-0.215722 -0.422112 0)
(-0.137914 -0.465033 0)
(-0.0800005 -0.487715 0)
(-0.0248468 -0.522866 0)
(-3.51565e-05 0.000275641 0)
(-0.000101925 0.000457072 0)
(-0.000210113 0.000851825 0)
(-0.000391037 0.0015527 0)
(-0.000681606 0.00269433 0)
(-0.00112697 0.004442 0)
(-0.00178089 0.00698178 0)
(-0.00270786 0.0105111 0)
(-0.00399174 0.0152345 0)
(-0.00575507 0.0213658 0)
(-0.00819467 0.0291454 0)
(-0.0116446 0.0388665 0)
(-0.0166778 0.0509061 0)
(-0.0242691 0.0657483 0)
(-0.0361374 0.0840063 0)
(-0.0555662 0.105807 0)
(-0.0869651 0.129209 0)
(-0.13544 0.149486 0)
(-0.204524 0.156382 0)
(-0.290555 0.134962 0)
(-0.378196 0.071459 0)
(-0.438276 -0.0372758 0)
(-0.442032 -0.157565 0)
(-0.418411 -0.254537 0)
(-0.351244 -0.365024 0)
(-0.243649 -0.442144 0)
(-0.0768341 -0.512422 0)
(-0.00985295 -0.524819 0)
(-0.0115462 -0.518706 0)
(-0.00169082 -0.582284 0)
(-2.90419e-05 0.000279325 0)
(-8.1568e-05 0.000462399 0)
(-0.000167047 0.000861857 0)
(-0.000310147 0.00157105 0)
(-0.000540014 0.00272636 0)
(-0.00089273 0.00449535 0)
(-0.00141173 0.00706713 0)
(-0.00214961 0.0106436 0)
(-0.00317561 0.0154371 0)
(-0.00459281 0.0216755 0)
(-0.0065686 0.0296265 0)
(-0.00939229 0.0396359 0)
(-0.0135695 0.0521802 0)
(-0.0199755 0.0679278 0)
(-0.0301697 0.0879238 0)
(-0.0477296 0.113201 0)
(-0.0777919 0.142533 0)
(-0.127346 0.172521 0)
(-0.203826 0.192303 0)
(-0.307713 0.182627 0)
(-0.424905 0.121327 0)
(-0.519161 -0.0134692 0)
(-0.512268 -0.176864 0)
(-0.449143 -0.288399 0)
(-0.357234 -0.477826 0)
(-0.257514 -0.503197 0)
(-0.26107 -0.56892 0)
(-0.187423 -0.575842 0)
(-0.0895588 -0.575139 0)
(-0.0195144 -0.597675 0)
(-2.3005e-05 0.000282363 0)
(-6.09965e-05 0.000466451 0)
(-0.000123526 0.00086952 0)
(-0.000228413 0.0015851 0)
(-0.000396924 0.00275091 0)
(-0.000655938 0.00453634 0)
(-0.00103836 0.00713287 0)
(-0.00158444 0.010746 0)
(-0.00234792 0.0155944 0)
(-0.00341055 0.0219179 0)
(-0.00490592 0.0300065 0)
(-0.00706972 0.0402515 0)
(-0.0103213 0.0532163 0)
(-0.0154002 0.0697277 0)
(-0.0235367 0.0912244 0)
(-0.0384774 0.119947 0)
(-0.0658636 0.155298 0)
(-0.114342 0.196496 0)
(-0.196321 0.233148 0)
(-0.320675 0.242616 0)
(-0.479785 0.188062 0)
(-0.635144 0.0120398 0)
(-0.694724 -0.19348 0)
(-0.569154 -0.370466 0)
(-0.450089 -0.527409 0)
(-0.343107 -0.626514 0)
(-0.243528 -0.638087 0)
(-0.169421 -0.656263 0)
(-0.0916213 -0.666986 0)
(-0.0245201 -0.672362 0)
(-1.71012e-05 0.000284787 0)
(-4.02652e-05 0.000469223 0)
(-7.96694e-05 0.000874808 0)
(-0.00014606 0.0015948 0)
(-0.000252733 0.00276795 0)
(-0.00041725 0.00456489 0)
(-0.000661823 0.00717882 0)
(-0.00101405 0.010818 0)
(-0.00151144 0.0157056 0)
(-0.00221294 0.0220909 0)
(-0.00321469 0.0302811 0)
(-0.00469125 0.0407031 0)
(-0.00695879 0.0539901 0)
(-0.0106002 0.0710936 0)
(-0.0163173 0.0937054 0)
(-0.0278207 0.125756 0)
(-0.0510435 0.166566 0)
(-0.0956496 0.220061 0)
(-0.181184 0.277621 0)
(-0.363141 0.321459 0)
(-0.427579 0.254447 0)
(-0.805136 0.0457127 0)
(-0.9321 -0.216592 0)
(-0.794499 -0.556956 0)
(-0.530336 -0.632974 0)
(-0.3734 -0.699018 0)
(-0.273643 -0.744949 0)
(-0.174115 -0.749683 0)
(-0.0994109 -0.758044 0)
(-0.0269003 -0.759015 0)
(-1.14977e-05 0.000282295 0)
(-1.95733e-05 0.000463636 0)
(-3.57833e-05 0.000864671 0)
(-6.34952e-05 0.00157648 0)
(-0.000108013 0.00273686 0)
(-0.000177501 0.00451501 0)
(-0.000283271 0.00710301 0)
(-0.000440014 0.0107089 0)
(-0.000668442 0.0155569 0)
(-0.00100377 0.021901 0)
(-0.0015018 0.030058 0)
(-0.00227031 0.040481 0)
(-0.00350791 0.0538539 0)
(-0.00563837 0.0712317 0)
(-0.00864402 0.0942746 0)
(-0.0156738 0.129487 0)
(-0.0350026 0.174668 0)
(-0.0793857 0.242562 0)
(-0.152479 0.32621 0)
(-0.294108 0.403853 0)
(-0.465669 0.407551 0)
(-0.687625 0.220704 0)
(0.295054 -0.384812 0)
(-0.512458 -0.580966 0)
(-0.639565 -0.821061 0)
(-0.443616 -0.746844 0)
(-0.322213 -0.851132 0)
(-0.19209 -0.862496 0)
(-0.11163 -0.858004 0)
(-0.0290889 -0.859711 0)
(0.00292923 -0.000405187 0)
(0.00660121 -0.000401969 0)
(0.0106147 -0.000394749 0)
(0.0149523 -0.000382604 0)
(0.0195705 -0.00036449 0)
(0.0243904 -0.000339383 0)
(0.0292875 -0.000306408 0)
(0.0340871 -0.000265173 0)
(0.0385551 -0.000215985 0)
(0.0424117 -0.00016017 0)
(0.0453461 -0.000100253 0)
(0.0470568 -3.99296e-05 0)
(0.0473033 1.60998e-05 0)
(0.0459647 6.32447e-05 0)
(0.0430869 9.75459e-05 0)
(0.0389 0.000116973 0)
(0.033788 0.000121898 0)
(0.0282204 0.000114929 0)
(0.0226622 0.000100041 0)
(0.0174976 8.14051e-05 0)
(0.0129863 6.24445e-05 0)
(0.0092569 4.54083e-05 0)
(0.00632678 3.13961e-05 0)
(0.0041352 2.06549e-05 0)
(0.00257511 1.2919e-05 0)
(0.00151991 7.66548e-06 0)
(0.000842879 4.31278e-06 0)
(0.000429505 2.32632e-06 0)
(0.000182482 1.27881e-06 0)
(1.8028e-05 1.00442e-06 0)
(0.00298996 -0.00804641 0)
(0.00812988 -0.00798562 0)
(0.0137618 -0.00785357 0)
(0.0198667 -0.00763128 0)
(0.0263928 -0.0072966 0)
(0.0332379 -0.00682876 0)
(0.040242 -0.00620866 0)
(0.0471674 -0.00542506 0)
(0.053696 -0.00447938 0)
(0.0594355 -0.00339215 0)
(0.0639407 -0.0022087 0)
(0.0667649 -0.00100057 0)
(0.0675348 0.000139954 0)
(0.0660381 0.00111412 0)
(0.0622981 0.00183803 0)
(0.0566073 0.00226481 0)
(0.0494922 0.00239736 0)
(0.0416181 0.00228535 0)
(0.0336593 0.00200735 0)
(0.0261845 0.00164701 0)
(0.0195907 0.00127386 0)
(0.0140872 0.000934306 0)
(0.00972056 0.000651985 0)
(0.00642092 0.000433332 0)
(0.00404594 0.000274065 0)
(0.00242031 0.000164608 0)
(0.00136421 9.37616e-05 0)
(0.000712351 5.09527e-05 0)
(0.000323117 2.756e-05 0)
(7.64476e-05 1.77022e-05 0)
(0.00304504 -0.014362 0)
(0.00827957 -0.0142531 0)
(0.0140137 -0.0140162 0)
(0.0202264 -0.0136166 0)
(0.0268624 -0.0130158 0)
(0.0338142 -0.0121758 0)
(0.0409147 -0.0110629 0)
(0.047917 -0.0096573 0)
(0.0544931 -0.007962 0)
(0.0602407 -0.00601468 0)
(0.0647072 -0.0038977 0)
(0.0674448 -0.00174036 0)
(0.0680868 0.000291392 0)
(0.0664366 0.00202107 0)
(0.0625394 0.00330018 0)
(0.0567101 0.00404757 0)
(0.0494912 0.00427155 0)
(0.0415536 0.00406304 0)
(0.0335672 0.00356303 0)
(0.0260907 0.00292002 0)
(0.0195093 0.00225664 0)
(0.0140237 0.00165425 0)
(0.00967478 0.001154 0)
(0.00638998 0.000766839 0)
(0.00402623 0.000484945 0)
(0.00240846 0.000291247 0)
(0.00135752 0.000165891 0)
(0.000708868 9.01502e-05 0)
(0.000321546 4.87562e-05 0)
(7.60781e-05 3.13236e-05 0)
(0.00313258 -0.0208272 0)
(0.00851718 -0.0206671 0)
(0.014413 -0.0203201 0)
(0.0207961 -0.0197343 0)
(0.0276057 -0.0188541 0)
(0.034726 -0.0176239 0)
(0.0419783 -0.0159954 0)
(0.0491014 -0.0139404 0)
(0.055751 -0.0114653 0)
(0.0615092 -0.00862737 0)
(0.0659124 -0.00554933 0)
(0.0685108 -0.00242206 0)
(0.0689491 0.000511704 0)
(0.0670559 0.00299653 0)
(0.0629116 0.00482082 0)
(0.0568657 0.00587312 0)
(0.0494857 0.00617188 0)
(0.0414504 0.00585308 0)
(0.0334224 0.00512185 0)
(0.0259438 0.00419135 0)
(0.0193824 0.00323598 0)
(0.0139248 0.00237073 0)
(0.00960357 0.00165323 0)
(0.00634187 0.00109836 0)
(0.00399558 0.000694523 0)
(0.00239005 0.000417099 0)
(0.00134713 0.000237567 0)
(0.000703455 0.000129104 0)
(0.000319106 6.98238e-05 0)
(7.55039e-05 4.48565e-05 0)
(0.00325463 -0.027511 0)
(0.00884761 -0.0272965 0)
(0.0149686 -0.026831 0)
(0.0215887 -0.0260459 0)
(0.0286393 -0.0248666 0)
(0.0359928 -0.0232195 0)
(0.0434544 -0.0210414 0)
(0.0507429 -0.0182968 0)
(0.057491 -0.0149974 0)
(0.0632596 -0.011224 0)
(0.0675701 -0.00714476 0)
(0.0699709 -0.00301768 0)
(0.0701239 0.000833112 0)
(0.0678939 0.00407181 0)
(0.0634095 0.00642608 0)
(0.0570686 0.00776007 0)
(0.049471 0.00810939 0)
(0.0413054 0.00766048 0)
(0.033223 0.00668494 0)
(0.0257432 0.00546011 0)
(0.0192098 0.00421035 0)
(0.0137907 0.00308224 0)
(0.00950705 0.00214846 0)
(0.00627671 0.00142704 0)
(0.00395409 0.000902246 0)
(0.00236511 0.000541818 0)
(0.00133307 0.000308598 0)
(0.000696126 0.000167704 0)
(0.000315802 9.07016e-05 0)
(7.47263e-05 5.82698e-05 0)
(0.00341374 -0.0344882 0)
(0.00927896 -0.0342141 0)
(0.0156936 -0.0336194 0)
(0.0226223 -0.0326167 0)
(0.0299861 -0.0311115 0)
(0.0376418 -0.029011 0)
(0.0453733 -0.0262372 0)
(0.0528724 -0.0227484 0)
(0.0597427 -0.0185649 0)
(0.0655173 -0.0137959 0)
(0.0696991 -0.00866213 0)
(0.0718361 -0.00349633 0)
(0.0716141 0.00129034 0)
(0.0689466 0.00527965 0)
(0.0640261 0.00814256 0)
(0.0573109 0.00972688 0)
(0.0494408 0.0100946 0)
(0.0411144 0.00948977 0)
(0.032967 0.00825306 0)
(0.0254881 0.00672524 0)
(0.0189913 0.00517809 0)
(0.0136214 0.0037872 0)
(0.0093854 0.00263846 0)
(0.00619465 0.00175201 0)
(0.00390185 0.00110755 0)
(0.00233373 0.000665063 0)
(0.00131537 0.000378784 0)
(0.000686903 0.000205845 0)
(0.000311645 0.000111328 0)
(7.37475e-05 7.15304e-05 0)
(0.00361392 -0.0418407 0)
(0.00982141 -0.0415005 0)
(0.0166048 -0.0407623 0)
(0.0239208 -0.0395181 0)
(0.0316768 -0.0376517 0)
(0.0397092 -0.0350506 0)
(0.0477746 -0.0316211 0)
(0.0555312 -0.0273175 0)
(0.0625451 -0.0221728 0)
(0.0683155 -0.0163313 0)
(0.0723237 -0.0100757 0)
(0.0741196 -0.00382306 0)
(0.0734224 0.00192109 0)
(0.0702089 0.00665483 0)
(0.0647516 0.00999764 0)
(0.0575824 0.0117919 0)
(0.0493868 0.0121378 0)
(0.0408721 0.011345 0)
(0.0326515 0.00982667 0)
(0.0251774 0.00798552 0)
(0.0187269 0.00613752 0)
(0.0134171 0.00448407 0)
(0.00923885 0.00312204 0)
(0.00609588 0.00207244 0)
(0.003839 0.00130989 0)
(0.00229598 0.000786507 0)
(0.00129408 0.000447936 0)
(0.00067581 0.000243424 0)
(0.000306645 0.000131659 0)
(7.25702e-05 8.45941e-05 0)
(0.00385984 -0.0496593 0)
(0.0104882 -0.0492444 0)
(0.0177247 -0.0483444 0)
(0.0255154 -0.0468283 0)
(0.0337506 -0.0445562 0)
(0.0422413 -0.041394 0)
(0.0507096 -0.0372332 0)
(0.0587714 -0.0320258 0)
(0.0659473 -0.0258231 0)
(0.0716956 -0.0188139 0)
(0.0754736 -0.0113544 0)
(0.0768372 -0.00395795 0)
(0.0755514 0.00276728 0)
(0.0716733 0.00823439 0)
(0.0655736 0.0120193 0)
(0.0578704 0.0139729 0)
(0.0492991 0.014248 0)
(0.0405723 0.0132295 0)
(0.0322734 0.0114057 0)
(0.0248099 0.00923946 0)
(0.0184162 0.00708683 0)
(0.013178 0.00517124 0)
(0.00906768 0.00359796 0)
(0.00598063 0.00238747 0)
(0.00376571 0.00150873 0)
(0.00225197 0.000905815 0)
(0.00126926 0.000515866 0)
(0.000662878 0.000280336 0)
(0.000300817 0.000151628 0)
(7.11978e-05 9.74359e-05 0)
(0.00415796 -0.058046 0)
(0.0112961 -0.0575458 0)
(0.0190809 -0.0564609 0)
(0.0274451 -0.0546347 0)
(0.0362573 -0.051901 0)
(0.0452964 -0.0481024 0)
(0.0542419 -0.0431156 0)
(0.0626579 -0.0368942 0)
(0.0700098 -0.0295146 0)
(0.075708 -0.0212218 0)
(0.0791841 -0.0124603 0)
(0.080007 -0.00385407 0)
(0.0780024 0.00387567 0)
(0.0733295 0.0100581 0)
(0.0664762 0.0142364 0)
(0.0581594 0.0162874 0)
(0.0491659 0.0164335 0)
(0.0402076 0.0151456 0)
(0.031829 0.0129895 0)
(0.0243843 0.0104853 0)
(0.0180591 0.00802407 0)
(0.0129044 0.00584708 0)
(0.00887221 0.00406499 0)
(0.00584917 0.00269626 0)
(0.00368215 0.00170352 0)
(0.00220181 0.00102266 0)
(0.00124097 0.000582385 0)
(0.000648143 0.000316483 0)
(0.000294177 0.000171179 0)
(6.96337e-05 0.000110012 0)
(0.00451626 -0.0671182 0)
(0.0122664 -0.0665192 0)
(0.0207087 -0.0652208 0)
(0.029759 -0.0630369 0)
(0.0392588 -0.0597717 0)
(0.0489469 -0.0552431 0)
(0.0584506 -0.0493136 0)
(0.0672707 -0.0419425 0)
(0.0748065 -0.0332414 0)
(0.0804131 -0.0235258 0)
(0.0834964 -0.0133468 0)
(0.0836481 -0.00345796 0)
(0.0807753 0.00529894 0)
(0.0751635 0.0121689 0)
(0.06744 0.0166783 0)
(0.0584309 0.018752 0)
(0.0489735 0.0187016 0)
(0.0397698 0.0170948 0)
(0.0313143 0.0145769 0)
(0.0238991 0.0117208 0)
(0.0176554 0.00894723 0)
(0.0125965 0.00650994 0)
(0.00865283 0.00452196 0)
(0.00570183 0.002998 0)
(0.00358855 0.00189372 0)
(0.00214563 0.00113672 0)
(0.0012093 0.000647308 0)
(0.000631644 0.000351758 0)
(0.000286742 0.000190268 0)
(6.7882e-05 0.000122296 0)
(0.00494415 -0.0770108 0)
(0.0134253 -0.0762968 0)
(0.0226518 -0.0747488 0)
(0.0325182 -0.072148 0)
(0.042832 -0.0682649 0)
(0.0532826 -0.0628906 0)
(0.0634328 -0.0558747 0)
(0.072707 -0.0471885 0)
(0.0804263 -0.0369909 0)
(0.0858825 -0.0256867 0)
(0.0884576 -0.0139566 0)
(0.0877806 -0.00270318 0)
(0.0838667 0.00709665 0)
(0.0771568 0.0146129 0)
(0.068441 0.0193747 0)
(0.0586633 0.021382 0)
(0.0487065 0.0210576 0)
(0.0392498 0.0190773 0)
(0.0307251 0.016166 0)
(0.023353 0.0129438 0)
(0.0172052 0.00985414 0)
(0.0122547 0.00715814 0)
(0.00840998 0.00496762 0)
(0.00553894 0.00329186 0)
(0.00348516 0.00207884 0)
(0.0020836 0.00124769 0)
(0.00117433 0.000710462 0)
(0.000613426 0.000386072 0)
(0.000278534 0.000208832 0)
(6.59473e-05 0.000134252 0)
(0.00545401 -0.0878821 0)
(0.0148057 -0.0870319 0)
(0.0249646 -0.0851903 0)
(0.0357984 -0.0820987 0)
(0.0470719 -0.0774906 0)
(0.0584135 -0.071128 0)
(0.0693072 -0.0628497 0)
(0.079085 -0.052647 0)
(0.0869754 -0.0407423 0)
(0.0921998 -0.0276534 0)
(0.0941207 -0.0142189 0)
(0.0924253 -0.00151618 0)
(0.0872687 0.00933627 0)
(0.0792846 0.0174399 0)
(0.0694497 0.0223557 0)
(0.0588314 0.0241912 0)
(0.0483476 0.0235054 0)
(0.0386379 0.0210919 0)
(0.0300569 0.0177538 0)
(0.0227444 0.0141513 0)
(0.0167082 0.0107425 0)
(0.0118796 0.00778994 0)
(0.00814416 0.00540079 0)
(0.00536091 0.00357705 0)
(0.00337222 0.00225836 0)
(0.00201586 0.00135527 0)
(0.00113615 0.000771674 0)
(0.000593541 0.000419325 0)
(0.000269576 0.000226824 0)
(6.38347e-05 0.000145846 0)
(0.00606119 -0.0999191 0)
(0.0164487 -0.0989069 0)
(0.0277151 -0.0967158 0)
(0.0396937 -0.0930418 0)
(0.0520964 -0.0875757 0)
(0.0644756 -0.0800489 0)
(0.076219 -0.0702923 0)
(0.0865476 -0.0583285 0)
(0.0945811 -0.0444636 0)
(0.0994629 -0.0293591 0)
(0.100544 -0.014046 0)
(0.0975999 0.000196522 0)
(0.0909675 0.0120945 0)
(0.0815153 0.0207032 0)
(0.070431 0.0256506 0)
(0.0589065 0.0271915 0)
(0.0478777 0.0260466 0)
(0.0379238 0.0231362 0)
(0.0293052 0.019337 0)
(0.0220721 0.0153402 0)
(0.0161647 0.0116098 0)
(0.0114715 0.00840363 0)
(0.00785593 0.00582029 0)
(0.00516818 0.00385279 0)
(0.00325005 0.00243178 0)
(0.00194261 0.00145916 0)
(0.00109487 0.000830779 0)
(0.00057204 0.000451432 0)
(0.000259891 0.000244196 0)
(6.15494e-05 0.000157057 0)
(0.00678473 -0.113343 0)
(0.0184055 -0.112137 0)
(0.0309878 -0.109526 0)
(0.0443212 -0.105155 0)
(0.0580508 -0.0986662 0)
(0.0716354 -0.0897577 0)
(0.0843449 -0.0782582 0)
(0.0952669 -0.0642362 0)
(0.103394 -0.048108 0)
(0.107784 -0.0307166 0)
(0.107792 -0.0133289 0)
(0.103319 0.00253894 0)
(0.09494 0.0154577 0)
(0.0838072 0.0244589 0)
(0.0713427 0.0292877 0)
(0.0588558 0.0303915 0)
(0.0472763 0.02868 0)
(0.0370967 0.0252054 0)
(0.0284655 0.0209109 0)
(0.021335 0.0165069 0)
(0.015575 0.0124536 0)
(0.0110313 0.00899742 0)
(0.00754593 0.00622492 0)
(0.00496122 0.00411831 0)
(0.00311897 0.00259864 0)
(0.00186405 0.00155907 0)
(0.0010506 0.000887607 0)
(0.000548985 0.000482305 0)
(0.000249509 0.000260901 0)
(5.90968e-05 0.000167847 0)
(0.0076488 -0.128422 0)
(0.020741 -0.12698 0)
(0.034889 -0.123862 0)
(0.0498271 -0.118651 0)
(0.0651158 -0.110932 0)
(0.0800983 -0.100373 0)
(0.0939012 -0.0868059 0)
(0.105452 -0.0703643 0)
(0.113593 -0.0516092 0)
(0.117294 -0.0316132 0)
(0.115932 -0.0119343 0)
(0.109591 0.0056415 0)
(0.0991518 0.0195235 0)
(0.0861078 0.0287661 0)
(0.0721348 0.0332929 0)
(0.0586427 0.0337965 0)
(0.0465215 0.0314015 0)
(0.0361457 0.0272936 0)
(0.0275337 0.0224702 0)
(0.0205321 0.0176474 0)
(0.0149393 0.0132712 0)
(0.0105596 0.00956953 0)
(0.00721484 0.00661352 0)
(0.00474055 0.00437288 0)
(0.00297932 0.00275847 0)
(0.00178038 0.00165472 0)
(0.00100347 0.000942016 0)
(0.000524438 0.000511853 0)
(0.000238457 0.000276891 0)
(5.64828e-05 0.000178191 0)
(0.00868433 -0.145479 0)
(0.0235374 -0.143748 0)
(0.0395535 -0.140012 0)
(0.0563951 -0.133777 0)
(0.0735166 -0.124571 0)
(0.090118 -0.112027 0)
(0.105152 -0.095994 0)
(0.117354 -0.0766939 0)
(0.125393 -0.0548752 0)
(0.128141 -0.0319029 0)
(0.125034 -0.00969179 0)
(0.116413 0.00965439 0)
(0.103552 0.0244012 0)
(0.0883506 0.0336853 0)
(0.0727487 0.0376883 0)
(0.0582269 0.037407 0)
(0.0455902 0.0342037 0)
(0.03506 0.0293924 0)
(0.0265058 0.0240085 0)
(0.0196627 0.0187575 0)
(0.0142582 0.0140596 0)
(0.0100573 0.0101182 0)
(0.00686342 0.00698497 0)
(0.00450673 0.00461577 0)
(0.00283146 0.00291083 0)
(0.00169183 0.00174587 0)
(0.000953589 0.000993841 0)
(0.000498464 0.000540002 0)
(0.000226765 0.000292119 0)
(5.37132e-05 0.000188067 0)
(0.00993096 -0.16491 0)
(0.0269003 -0.162823 0)
(0.0451528 -0.158323 0)
(0.0642571 -0.150833 0)
(0.0835338 -0.139813 0)
(0.102007 -0.12487 0)
(0.118419 -0.10588 0)
(0.131277 -0.0831873 0)
(0.139045 -0.0577807 0)
(0.140494 -0.0313977 0)
(0.135168 -0.00639801 0)
(0.123765 0.0147573 0)
(0.108071 0.0302114 0)
(0.0904525 0.0392762 0)
(0.0731165 0.0424905 0)
(0.0575641 0.0412178 0)
(0.0444589 0.037075 0)
(0.0338294 0.0314916 0)
(0.0253784 0.0255185 0)
(0.0187266 0.0198325 0)
(0.0135326 0.0148162 0)
(0.0095254 0.0106416 0)
(0.0064925 0.00733813 0)
(0.00426036 0.00484628 0)
(0.0026758 0.00305529 0)
(0.00159864 0.00183225 0)
(0.000901108 0.00104295 0)
(0.000471137 0.000566673 0)
(0.000214468 0.00030655 0)
(5.07939e-05 0.000197448 0)
(0.0114415 -0.187205 0)
(0.0309682 -0.184671 0)
(0.0519092 -0.179217 0)
(0.0737093 -0.170171 0)
(0.0955198 -0.156926 0)
(0.116151 -0.139066 0)
(0.134097 -0.116519 0)
(0.14759 -0.0897829 0)
(0.154851 -0.0601559 0)
(0.154546 -0.0298546 0)
(0.146399 -0.00179018 0)
(0.131607 0.0211618 0)
(0.112608 0.0370862 0)
(0.0923108 0.0455961 0)
(0.07316 0.0477082 0)
(0.056607 0.0452165 0)
(0.0431039 0.0399996 0)
(0.0324441 0.0335785 0)
(0.0241489 0.0269919 0)
(0.0177238 0.0208673 0)
(0.0127636 0.0155378 0)
(0.00896497 0.011138 0)
(0.00610298 0.00767195 0)
(0.00400206 0.00506377 0)
(0.00251275 0.00319144 0)
(0.00150106 0.00191363 0)
(0.000846164 0.0010892 0)
(0.00044253 0.000591789 0)
(0.000201598 0.000320144 0)
(4.77307e-05 0.000206316 0)
(0.0132866 -0.212981 0)
(0.0359268 -0.209875 0)
(0.0601157 -0.203211 0)
(0.0851328 -0.192214 0)
(0.109918 -0.176215 0)
(0.133028 -0.154797 0)
(0.152665 -0.127957 0)
(0.16674 -0.0963873 0)
(0.173172 -0.0617742 0)
(0.170513 -0.0269563 0)
(0.158778 0.00445182 0)
(0.13986 0.0291164 0)
(0.117032 0.0451663 0)
(0.0938002 0.0526949 0)
(0.0727914 0.0533393 0)
(0.0553059 0.0493825 0)
(0.0415023 0.0429568 0)
(0.0308958 0.0356386 0)
(0.0228153 0.0284198 0)
(0.0166551 0.0218567 0)
(0.0119523 0.0162216 0)
(0.00837726 0.0116056 0)
(0.00569583 0.00798537 0)
(0.00373253 0.00526758 0)
(0.00234274 0.00331891 0)
(0.00139936 0.00198979 0)
(0.000788908 0.00113247 0)
(0.000412722 0.000615286 0)
(0.000188191 0.000332854 0)
(4.45288e-05 0.00021465 0)
(0.0155674 -0.243023 0)
(0.0420349 -0.239165 0)
(0.0701693 -0.230932 0)
(0.0990247 -0.217453 0)
(0.127282 -0.198024 0)
(0.153216 -0.172256 0)
(0.174705 -0.140232 0)
(0.189269 -0.102867 0)
(0.194439 -0.0623338 0)
(0.188638 -0.0222925 0)
(0.172335 0.0127313 0)
(0.148397 0.0389095 0)
(0.121165 0.0545971 0)
(0.0947696 0.0606096 0)
(0.0719127 0.0593671 0)
(0.05361 0.0536852 0)
(0.0396328 0.0459209 0)
(0.0291777 0.037655 0)
(0.0213768 0.0297922 0)
(0.0155217 0.0227952 0)
(0.0111004 0.0168644 0)
(0.00776368 0.0120428 0)
(0.00527209 0.00827738 0)
(0.00345248 0.00545711 0)
(0.00216624 0.00343734 0)
(0.00129382 0.00206049 0)
(0.000729501 0.00117264 0)
(0.000381795 0.000637095 0)
(0.000174286 0.00034465 0)
(4.11931e-05 0.000222438 0)
(0.0184376 -0.278371 0)
(0.0496773 -0.27348 0)
(0.0826266 -0.263146 0)
(0.116042 -0.246451 0)
(0.148309 -0.222723 0)
(0.177419 -0.19164 0)
(0.200915 -0.153371 0)
(0.21584 -0.109047 0)
(0.219184 -0.061437 0)
(0.209192 -0.0153193 0)
(0.187046 0.0235502 0)
(0.157025 0.050873 0)
(0.124777 0.0655215 0)
(0.0950401 0.0693583 0)
(0.0704178 0.0657573 0)
(0.0514687 0.058083 0)
(0.0374766 0.0488611 0)
(0.027285 0.0396089 0)
(0.019834 0.0310987 0)
(0.0143253 0.0236774 0)
(0.0102099 0.0174633 0)
(0.00712573 0.0124478 0)
(0.00483286 0.00854702 0)
(0.00316265 0.0056318 0)
(0.00198371 0.00354638 0)
(0.00118472 0.00212556 0)
(0.0006681 0.00120959 0)
(0.000349833 0.000657157 0)
(0.00015992 0.000355501 0)
(3.77274e-05 0.000229665 0)
(0.0221628 -0.320475 0)
(0.0594777 -0.31403 0)
(0.0982971 -0.300753 0)
(0.137067 -0.279813 0)
(0.173849 -0.250667 0)
(0.206455 -0.213147 0)
(0.232122 -0.167396 0)
(0.247265 -0.11471 0)
(0.248071 -0.0585442 0)
(0.232476 -0.0053255 0)
(0.202827 0.0375408 0)
(0.16545 0.0653799 0)
(0.127567 0.0780682 0)
(0.0944039 0.0789296 0)
(0.0681942 0.0724529 0)
(0.0488343 0.0625219 0)
(0.0350187 0.0517413 0)
(0.0252155 0.0414798 0)
(0.0181884 0.0323285 0)
(0.0130684 0.0244974 0)
(0.0092827 0.0180153 0)
(0.00646508 0.0128191 0)
(0.00437932 0.00879342 0)
(0.00286383 0.00579113 0)
(0.00179567 0.00364573 0)
(0.00107236 0.00218481 0)
(0.000604874 0.00124324 0)
(0.000316923 0.000675418 0)
(0.000145134 0.000365365 0)
(3.41345e-05 0.000236331 0)
(0.027345 -0.371592 0)
(0.0726282 -0.362313 0)
(0.118337 -0.344734 0)
(0.163311 -0.318102 0)
(0.20489 -0.282112 0)
(0.241232 -0.236974 0)
(0.269278 -0.182348 0)
(0.284556 -0.119621 0)
(0.281958 -0.0529661 0)
(0.2588 0.00868723 0)
(0.219465 0.055493 0)
(0.173247 0.0828351 0)
(0.129157 0.0923324 0)
(0.0926255 0.0892708 0)
(0.0651273 0.0793701 0)
(0.0456645 0.0669344 0)
(0.0322494 0.0545208 0)
(0.02297 0.043246 0)
(0.0164433 0.0334704 0)
(0.0117543 0.0252497 0)
(0.00832148 0.0185176 0)
(0.00578352 0.0131552 0)
(0.0039127 0.00901572 0)
(0.00255683 0.00593461 0)
(0.00160262 0.00373509 0)
(0.000957052 0.00223807 0)
(0.000539998 0.00127347 0)
(0.000283156 0.00069182 0)
(0.000129968 0.000374219 0)
(3.04155e-05 0.000242432 0)
(0.0357597 -0.436146 0)
(0.0912 -0.419307 0)
(0.143377 -0.396091 0)
(0.196554 -0.361597 0)
(0.242291 -0.316978 0)
(0.282663 -0.263444 0)
(0.313427 -0.198299 0)
(0.328997 -0.123635 0)
(0.322031 -0.0437063 0)
(0.28847 0.0280655 0)
(0.236544 0.078386 0)
(0.17981 0.103654 0)
(0.129081 0.10835 0)
(0.0894468 0.100275 0)
(0.0611053 0.0863944 0)
(0.0419256 0.0712395 0)
(0.0291653 0.0571546 0)
(0.0205526 0.0448847 0)
(0.0146035 0.0345132 0)
(0.0103866 0.025929 0)
(0.00732896 0.0189676 0)
(0.00508298 0.0134547 0)
(0.00343429 0.00921316 0)
(0.00224249 0.0060618 0)
(0.00140508 0.00381422 0)
(0.000839108 0.0022852 0)
(0.000473646 0.00130021 0)
(0.000248623 0.000706328 0)
(0.000114464 0.000382037 0)
(2.65697e-05 0.000247977 0)
(0.0421386 -0.519593 0)
(0.0932783 -0.481613 0)
(0.156078 -0.459743 0)
(0.225927 -0.409604 0)
(0.282138 -0.355241 0)
(0.331452 -0.293805 0)
(0.365505 -0.215181 0)
(0.382216 -0.127011 0)
(0.370085 -0.029323 0)
(0.321658 0.0547829 0)
(0.253317 0.107403 0)
(0.184301 0.128218 0)
(0.126773 0.126059 0)
(0.0845981 0.111762 0)
(0.0560267 0.0933778 0)
(0.0375969 0.0753422 0)
(0.0257712 0.0595949 0)
(0.017971 0.046373 0)
(0.0126754 0.0354461 0)
(0.00897007 0.0265299 0)
(0.00630822 0.0193626 0)
(0.0043655 0.0137162 0)
(0.00294545 0.00938505 0)
(0.00192168 0.00617231 0)
(0.0012036 0.00388289 0)
(0.000718853 0.00232607 0)
(0.000406001 0.00132339 0)
(0.000213419 0.000718892 0)
(9.86648e-05 0.000388798 0)
(2.25948e-05 0.000252984 0)
(0.0126366 -0.557832 0)
(0.0117765 -0.508131 0)
(-0.0244242 -0.514924 0)
(0.117368 -0.526006 0)
(0.262973 -0.414938 0)
(0.376275 -0.339399 0)
(0.423799 -0.232244 0)
(0.446516 -0.131643 0)
(0.429017 -0.00731519 0)
(0.358123 0.0916929 0)
(0.268519 0.143898 0)
(0.185585 0.156793 0)
(0.121578 0.145249 0)
(0.0778179 0.123468 0)
(0.0498083 0.100137 0)
(0.0326758 0.0791349 0)
(0.022081 0.0617926 0)
(0.0152369 0.0476883 0)
(0.010667 0.0362587 0)
(0.00750989 0.0270477 0)
(0.00526269 0.0197003 0)
(0.0036333 0.0139387 0)
(0.00244761 0.00953078 0)
(0.00159532 0.00626579 0)
(0.000998746 0.00394089 0)
(0.000596626 0.00236055 0)
(0.00033725 0.00134294 0)
(0.000177642 0.000729488 0)
(8.26128e-05 0.000394477 0)
(1.84845e-05 0.000257455 0)
(0.025408 -0.590361 0)
(0.110505 -0.575746 0)
(0.213267 -0.578815 0)
(0.256488 -0.599451 0)
(0.275974 -0.501867 0)
(0.380094 -0.428045 0)
(0.466753 -0.259213 0)
(0.526216 -0.145142 0)
(0.503848 0.0279002 0)
(0.396436 0.142702 0)
(0.280149 0.189283 0)
(0.18219 0.18941 0)
(0.112768 0.165505 0)
(0.0688854 0.135025 0)
(0.0423913 0.106457 0)
(0.0271827 0.0824998 0)
(0.0181188 0.0636996 0)
(0.0123657 0.0488092 0)
(0.00858799 0.0369412 0)
(0.00601192 0.0274779 0)
(0.00419593 0.0199788 0)
(0.00288863 0.0141211 0)
(0.00194219 0.0096498 0)
(0.00126432 0.00634197 0)
(0.000791074 0.00398808 0)
(0.000472763 0.00238856 0)
(0.000267579 0.00135879 0)
(0.000141388 0.000738082 0)
(6.63526e-05 0.000399057 0)
(1.42266e-05 0.000261411 0)
(0.0372763 -0.670069 0)
(0.110707 -0.665833 0)
(0.181482 -0.662993 0)
(0.278249 -0.656268 0)
(0.379038 -0.570474 0)
(0.48463 -0.469767 0)
(0.621624 -0.355478 0)
(0.683009 -0.157279 0)
(0.601289 0.0614823 0)
(0.437405 0.209602 0)
(0.286158 0.245451 0)
(0.172305 0.225646 0)
(0.0995828 0.186133 0)
(0.0576773 0.145955 0)
(0.0337424 0.11209 0)
(0.0211689 0.0853119 0)
(0.0139183 0.0652718 0)
(0.00937642 0.0497164 0)
(0.00644934 0.0374854 0)
(0.00448259 0.0278168 0)
(0.0031118 0.0201963 0)
(0.00213385 0.0142625 0)
(0.0014307 0.00974169 0)
(0.000929595 0.00640059 0)
(0.000581162 0.00402432 0)
(0.000347606 0.00241003 0)
(0.00019718 0.00137093 0)
(0.000104757 0.000744649 0)
(4.99266e-05 0.000402529 0)
(9.80249e-06 0.000264859 0)
(0.0425731 -0.756784 0)
(0.117549 -0.756692 0)
(0.202907 -0.757088 0)
(0.297776 -0.72451 0)
(0.440306 -0.698815 0)
(0.542912 -0.593159 0)
(0.889831 -0.507246 0)
(0.904871 -0.0669783 0)
(0.819012 0.151213 0)
(0.394636 0.288691 0)
(0.30865 0.315477 0)
(0.154781 0.263952 0)
(0.0813564 0.205914 0)
(0.0442779 0.155554 0)
(0.0238328 0.11671 0)
(0.0147259 0.0874293 0)
(0.00952269 0.0664647 0)
(0.00629155 0.0503898 0)
(0.0042634 0.0378826 0)
(0.00292887 0.0280607 0)
(0.00201431 0.0203511 0)
(0.00137144 0.0143623 0)
(0.000914683 0.0098061 0)
(0.00059213 0.00644151 0)
(0.000369606 0.00404954 0)
(0.000221507 0.00242491 0)
(0.000126246 0.00137931 0)
(6.78508e-05 0.000749189 0)
(3.33792e-05 0.000404885 0)
(5.18647e-06 0.000267815 0)
(0.0431105 -0.860395 0)
(0.126788 -0.853961 0)
(0.2206 -0.87823 0)
(0.35479 -0.834248 0)
(0.477382 -0.724259 0)
(0.658464 -0.826361 0)
(0.491574 -0.480323 0)
(-0.0812395 0.353965 0)
(0.764418 0.338396 0)
(0.435937 0.408114 0)
(0.259484 0.392867 0)
(0.135984 0.304565 0)
(0.064659 0.224267 0)
(0.0292301 0.162332 0)
(0.0125186 0.118962 0)
(0.00798446 0.0878701 0)
(0.00497588 0.0665165 0)
(0.00313346 0.0502173 0)
(0.0020412 0.037654 0)
(0.00135645 0.0278437 0)
(0.000906689 0.020171 0)
(0.000603525 0.0142237 0)
(0.000395648 0.00970587 0)
(0.000253017 0.00637277 0)
(0.000157223 0.00400498 0)
(9.50102e-05 0.00239752 0)
(5.51811e-05 0.00136342 0)
(3.09373e-05 0.000740523 0)
(1.68664e-05 0.000400011 0)
(4.471e-07 0.000268348 0)
(-0.000898605 0.000299645 0)
(-0.000924575 0.000487467 0)
(-0.000959497 0.000897915 0)
(-0.00095636 0.00162033 0)
(-0.000929744 0.0027911 0)
(-0.000906592 0.00457735 0)
(-0.000905373 0.00716811 0)
(-0.000929251 0.0107609 0)
(-0.00102249 0.0155693 0)
(-0.00114069 0.0218325 0)
(-0.00129119 0.0297617 0)
(-0.00149655 0.039634 0)
(-0.001842 0.0520789 0)
(-0.00235428 0.0691725 0)
(7.53074e-05 0.0935057 0)
(0.00107192 0.13258 0)
(-0.0403735 0.177945 0)
(-0.0317474 0.259409 0)
(-0.119926 0.356738 0)
(-0.291573 0.491297 0)
(-0.580711 0.531934 0)
(-0.748876 0.270622 0)
(-0.494212 -0.395865 0)
(-0.228201 -0.585133 0)
(-0.334325 -0.746913 0)
(-0.456354 -0.869821 0)
(-0.474375 -0.922103 0)
(-0.424463 -0.948275 0)
(-0.290336 -0.983437 0)
(-0.0877239 -1.00501 0)
(-0.0036544 0.000284131 0)
(-0.00414747 0.000498777 0)
(-0.00509332 0.000914714 0)
(-0.00640757 0.00164689 0)
(-0.00813291 0.00283821 0)
(-0.010384 0.00465903 0)
(-0.0132799 0.00730872 0)
(-0.0170251 0.0110024 0)
(-0.0219668 0.0158995 0)
(-0.0278576 0.0223629 0)
(-0.0360034 0.0308711 0)
(-0.0512376 0.0417741 0)
(-0.0827379 0.0557663 0)
(-0.227894 0.0935041 0)
(-0.535186 0.0749333 0)
(-0.164455 0.128417 0)
(-0.320866 0.156833 0)
(0.0194424 0.279027 0)
(-0.108493 0.372279 0)
(-0.249498 0.561846 0)
(-0.476409 0.576178 0)
(-0.722768 0.230987 0)
(-0.310171 -0.501596 0)
(-0.111281 -0.615769 0)
(-0.0814668 -0.688805 0)
(-0.205705 -0.827934 0)
(-0.284987 -0.912137 0)
(-0.271546 -0.991262 0)
(-0.197272 -1.07216 0)
(-0.0619478 -1.1443 0)
(-0.00472344 0.000285053 0)
(-0.00542623 0.000559688 0)
(-0.00671407 0.000999668 0)
(-0.00854275 0.00176088 0)
(-0.0109871 0.00299219 0)
(-0.0142205 0.00486482 0)
(-0.0184414 0.00759159 0)
(-0.0240009 0.0114285 0)
(-0.0317556 0.016496 0)
(-0.0420778 0.0232641 0)
(-0.0574248 0.0325981 0)
(-0.085901 0.0455809 0)
(-0.15214 0.0666451 0)
(-0.409663 0.189864 0)
(-1.89707 0.114228 0)
(-2.25392 -0.191335 0)
(-0.772068 0.148371 0)
(-0.501948 0.228307 0)
(-0.19634 0.376362 0)
(-0.245539 0.631385 0)
(-0.49802 0.6141 0)
(-0.559149 0.0947482 0)
(-0.337938 -0.556452 0)
(-0.0878253 -0.68137 0)
(0.0496066 -0.687276 0)
(0.0425751 -0.781688 0)
(-0.0082779 -0.891818 0)
(-0.0296741 -1.01493 0)
(-0.0188602 -1.06967 0)
(-0.00998014 -1.21665 0)
(-0.00501965 0.000289276 0)
(-0.00577598 0.00063411 0)
(-0.00715024 0.00110426 0)
(-0.00912404 0.00190423 0)
(-0.0117703 0.00318981 0)
(-0.0152613 0.00513632 0)
(-0.0198414 0.00796942 0)
(-0.0258888 0.0119965 0)
(-0.0343601 0.0173113 0)
(-0.0457798 0.0245344 0)
(-0.0631569 0.0350605 0)
(-0.0954952 0.0510999 0)
(-0.169711 0.0830688 0)
(-0.412822 0.267946 0)
(-1.71072 0.442503 0)
(-1.63659 -0.479767 0)
(-0.900568 0.0131106 0)
(-0.654678 0.139775 0)
(-0.138647 0.25314 0)
(-0.197473 0.7425 0)
(-0.630852 0.69046 0)
(-0.743378 0.0585666 0)
(-0.428415 -0.616873 0)
(-0.0945217 -0.761706 0)
(0.0660568 -0.742159 0)
(0.156777 -0.777977 0)
(0.162668 -0.881289 0)
(0.148323 -0.996164 0)
(0.109412 -1.07056 0)
(0.0315782 -1.17651 0)
(-0.00509363 0.000295635 0)
(-0.00584676 0.000710072 0)
(-0.00724001 0.00121362 0)
(-0.00926023 0.00205804 0)
(-0.0119602 0.00340615 0)
(-0.0154772 0.00544221 0)
(-0.020074 0.00839877 0)
(-0.0260986 0.0126374 0)
(-0.0344552 0.0182474 0)
(-0.0458081 0.0259995 0)
(-0.0632861 0.0378505 0)
(-0.0952779 0.0572852 0)
(-0.165842 0.100619 0)
(-0.345761 0.318296 0)
(-0.8068 0.726015 0)
(-0.732265 -0.625957 0)
(-0.577 -0.0393231 0)
(-0.570519 0.117313 0)
(-0.55308 0.182313 0)
(-0.215134 0.775385 0)
(-0.643632 0.777673 0)
(-0.729714 0.357594 0)
(-0.342301 -0.851711 0)
(-0.0918216 -0.853617 0)
(0.0626974 -0.810811 0)
(0.164602 -0.814695 0)
(0.206031 -0.883621 0)
(0.199036 -0.971601 0)
(0.144192 -1.03379 0)
(0.049259 -1.07893 0)
(-0.00512259 0.000303702 0)
(-0.00586302 0.000782619 0)
(-0.00726437 0.00132273 0)
(-0.00930772 0.00221603 0)
(-0.0120273 0.00363232 0)
(-0.0155203 0.00576909 0)
(-0.0200456 0.00885834 0)
(-0.0259132 0.0133127 0)
(-0.0339169 0.019253 0)
(-0.0448772 0.0275897 0)
(-0.0618131 0.0408083 0)
(-0.0919126 0.0636261 0)
(-0.153592 0.116878 0)
(-0.261621 0.339363 0)
(0.0582623 0.807828 0)
(0.0387698 -0.573196 0)
(-0.395918 -0.0491984 0)
(-0.454777 0.137596 0)
(-0.371597 0.156384 0)
(-0.658427 0.72996 0)
(-0.634681 0.837465 0)
(-1.53279 0.558144 0)
(-0.4201 -1.07568 0)
(-0.0608963 -0.954089 0)
(0.072801 -0.873164 0)
(0.148221 -0.856746 0)
(0.182946 -0.894307 0)
(0.175365 -0.951052 0)
(0.127273 -0.973144 0)
(0.0419123 -0.974511 0)
(-0.0051379 0.000313945 0)
(-0.0058681 0.000851348 0)
(-0.00727522 0.00143199 0)
(-0.0093291 0.00237874 0)
(-0.0120494 0.00386857 0)
(-0.0155026 0.00611465 0)
(-0.0199232 0.00934319 0)
(-0.0255886 0.0140121 0)
(-0.0331649 0.0203059 0)
(-0.0436101 0.0292657 0)
(-0.0596479 0.0438413 0)
(-0.086993 0.0698087 0)
(-0.137094 0.130389 0)
(-0.183686 0.336884 0)
(0.321273 0.658324 0)
(0.314503 -0.352268 0)
(-0.288775 -0.0111056 0)
(-0.434658 0.167117 0)
(-0.36817 0.047737 0)
(-0.558472 0.65109 0)
(-0.700902 0.893343 0)
(-1.33127 -0.0896323 0)
(-0.246133 -1.34913 0)
(0.0163732 -1.04444 0)
(0.101614 -0.919964 0)
(0.140633 -0.883838 0)
(0.150534 -0.897433 0)
(0.127366 -0.92427 0)
(0.0834718 -0.919707 0)
(0.0260719 -0.892619 0)
(-0.0051425 0.000327199 0)
(-0.00586515 0.000917543 0)
(-0.00727554 0.0015434 0)
(-0.00932976 0.00254856 0)
(-0.0120315 0.00411722 0)
(-0.0154308 0.00647861 0)
(-0.0197209 0.00985157 0)
(-0.0251477 0.0147327 0)
(-0.0322501 0.0213906 0)
(-0.0420706 0.0309922 0)
(-0.0568907 0.0468628 0)
(-0.0807573 0.0755471 0)
(-0.117972 0.140269 0)
(-0.119542 0.318772 0)
(0.265895 0.481354 0)
(0.269621 -0.130308 0)
(-0.209458 0.0559489 0)
(-0.44453 0.228487 0)
(0.215301 0.195454 0)
(-0.752063 0.843156 0)
(-0.841857 0.963067 0)
(0.272142 -0.700593 0)
(0.126943 -1.49352 0)
(0.140557 -1.08623 0)
(0.14868 -0.939479 0)
(0.146575 -0.889163 0)
(0.129667 -0.883311 0)
(0.0918674 -0.88784 0)
(0.047961 -0.874859 0)
(0.0124882 -0.844618 0)
(-0.00513657 0.000344207 0)
(-0.00585306 0.000983064 0)
(-0.00726361 0.00165907 0)
(-0.00930884 0.00272795 0)
(-0.011973 0.00438014 0)
(-0.0153022 0.00685974 0)
(-0.0194364 0.0103806 0)
(-0.0245871 0.0154703 0)
(-0.0311729 0.02249 0)
(-0.0402417 0.032729 0)
(-0.0535317 0.0497717 0)
(-0.0732971 0.0805499 0)
(-0.0974909 0.146117 0)
(-0.0701133 0.292304 0)
(0.202761 0.366583 0)
(0.198494 0.0137831 0)
(-0.136307 0.133624 0)
(-0.471679 0.35715 0)
(-0.948546 0.33139 0)
(-1.41386 0.966312 0)
(0.736132 0.918424 0)
(1.00745 -0.769007 0)
(0.488032 -1.35171 0)
(0.275585 -1.04997 0)
(0.204907 -0.922288 0)
(0.163735 -0.870024 0)
(0.124579 -0.851885 0)
(0.0792225 -0.843247 0)
(0.0352119 -0.832888 0)
(0.00777561 -0.819273 0)
(-0.00512018 0.000365518 0)
(-0.00583094 0.00105008 0)
(-0.00723828 0.00178109 0)
(-0.0092645 0.00291885 0)
(-0.0118743 0.00465792 0)
(-0.0151151 0.00725541 0)
(-0.0190662 0.0109249 0)
(-0.0239033 0.0162167 0)
(-0.0299296 0.0235839 0)
(-0.0381077 0.0344263 0)
(-0.0495712 0.0524495 0)
(-0.0647778 0.0845343 0)
(-0.0768468 0.147966 0)
(-0.0336784 0.262993 0)
(0.157287 0.295512 0)
(0.154976 0.100899 0)
(-0.0578486 0.203973 0)
(-0.260824 0.625807 0)
(-1.34536 0.672615 0)
(-0.411348 0.530857 0)
(0.328666 0.00891121 0)
(1.35916 -0.828471 0)
(0.650849 -1.06535 0)
(0.374268 -0.947704 0)
(0.255297 -0.868631 0)
(0.185818 -0.827743 0)
(0.132215 -0.807662 0)
(0.0848734 -0.795082 0)
(0.043402 -0.789341 0)
(0.0114803 -0.791851 0)
(-0.00509313 0.000391621 0)
(-0.00579791 0.0011211 0)
(-0.00719836 0.00191214 0)
(-0.00919464 0.00312317 0)
(-0.0117366 0.00495105 0)
(-0.0148682 0.00766325 0)
(-0.0186075 0.0114789 0)
(-0.0230919 0.0169623 0)
(-0.0285128 0.0246505 0)
(-0.0356586 0.0360284 0)
(-0.0450312 0.0547701 0)
(-0.0554391 0.0872674 0)
(-0.0570221 0.146207 0)
(-0.00742602 0.234262 0)
(0.126899 0.249954 0)
(0.133889 0.151148 0)
(0.0250083 0.24711 0)
(0.0707218 0.614065 0)
(0.169761 0.967448 0)
(0.69044 -0.0967168 0)
(0.841047 -0.23036 0)
(0.984525 -0.575593 0)
(0.647347 -0.814678 0)
(0.417199 -0.817721 0)
(0.287383 -0.789316 0)
(0.20444 -0.767474 0)
(0.143134 -0.753954 0)
(0.094307 -0.745385 0)
(0.0543437 -0.742348 0)
(0.0161343 -0.744605 0)
(-0.00505471 0.000422368 0)
(-0.00575236 0.00119785 0)
(-0.00714066 0.00205424 0)
(-0.00909612 0.00334165 0)
(-0.0115588 0.00525873 0)
(-0.0145583 0.00808004 0)
(-0.0180569 0.0120356 0)
(-0.0221476 0.0176944 0)
(-0.026912 0.0256639 0)
(-0.0328929 0.0374716 0)
(-0.0399645 0.0566056 0)
(-0.0455832 0.0885872 0)
(-0.0387268 0.141445 0)
(0.0114899 0.2078 0)
(0.108642 0.218555 0)
(0.128088 0.175406 0)
(0.0987859 0.256117 0)
(0.233502 0.475703 0)
(0.795067 0.50169 0)
(0.857984 -0.0814705 0)
(0.785429 -0.244808 0)
(0.754181 -0.465812 0)
(0.580605 -0.639994 0)
(0.414359 -0.691621 0)
(0.296966 -0.698909 0)
(0.21328 -0.695871 0)
(0.149426 -0.692015 0)
(0.097692 -0.689655 0)
(0.053569 -0.688455 0)
(0.014751 -0.686366 0)
(-0.00500376 0.000457014 0)
(-0.00569398 0.0012813 0)
(-0.00706223 0.0022084 0)
(-0.00896671 0.00357368 0)
(-0.0113395 0.00557849 0)
(-0.0141824 0.00850105 0)
(-0.0174131 0.0125857 0)
(-0.0210678 0.0183963 0)
(-0.0251191 0.0265911 0)
(-0.0298206 0.0386864 0)
(-0.0344596 0.057836 0)
(-0.0355435 0.0884174 0)
(-0.0223768 0.13436 0)
(0.0254417 0.18407 0)
(0.0993403 0.194253 0)
(0.130809 0.180412 0)
(0.153004 0.237766 0)
(0.298507 0.341246 0)
(0.604027 0.270336 0)
(0.708328 -0.0349146 0)
(0.67211 -0.225588 0)
(0.614148 -0.393088 0)
(0.502789 -0.519824 0)
(0.384644 -0.582648 0)
(0.287262 -0.60886 0)
(0.21054 -0.619435 0)
(0.148803 -0.623875 0)
(0.097442 -0.625882 0)
(0.0533265 -0.626954 0)
(0.0145116 -0.627686 0)
(-0.00493905 0.000495243 0)
(-0.00562239 0.00137287 0)
(-0.00696088 0.00237586 0)
(-0.00880436 0.00381915 0)
(-0.0110753 0.00590871 0)
(-0.0137373 0.0089219 0)
(-0.0166742 0.0131193 0)
(-0.019851 0.0190476 0)
(-0.0231319 0.0273928 0)
(-0.0264652 0.0395988 0)
(-0.0286354 0.0583569 0)
(-0.0256442 0.0867666 0)
(-0.0081313 0.125582 0)
(0.036102 0.162735 0)
(0.0958832 0.172868 0)
(0.136344 0.171473 0)
(0.185172 0.203815 0)
(0.310306 0.235254 0)
(0.489796 0.153085 0)
(0.572215 -0.0362819 0)
(0.559706 -0.199929 0)
(0.508505 -0.332901 0)
(0.42905 -0.431491 0)
(0.342702 -0.491809 0)
(0.264524 -0.525231 0)
(0.197946 -0.543422 0)
(0.141565 -0.553524 0)
(0.0931949 -0.559235 0)
(0.050946 -0.562292 0)
(0.0136589 -0.563474 0)
(-0.00485975 0.000536815 0)
(-0.00553647 0.00147365 0)
(-0.00683582 0.00255731 0)
(-0.00860765 0.00407782 0)
(-0.0107625 0.00624841 0)
(-0.0132208 0.00933909 0)
(-0.0158379 0.0136253 0)
(-0.0184983 0.0196254 0)
(-0.020958 0.0280242 0)
(-0.0228703 0.0401335 0)
(-0.0226417 0.0580871 0)
(-0.0161892 0.0837192 0)
(0.00400512 0.115629 0)
(0.0444637 0.143228 0)
(0.0955194 0.152239 0)
(0.140694 0.153352 0)
(0.198321 0.16432 0)
(0.296465 0.156905 0)
(0.407295 0.0804528 0)
(0.463699 -0.0505604 0)
(0.459657 -0.178027 0)
(0.420546 -0.283346 0)
(0.361848 -0.362527 0)
(0.296924 -0.416157 0)
(0.234702 -0.450209 0)
(0.178671 -0.471278 0)
(0.129189 -0.484226 0)
(0.0855678 -0.492053 0)
(0.0469075 -0.496423 0)
(0.0124604 -0.498206 0)
(-0.00476546 0.000580922 0)
(-0.00543496 0.00158312 0)
(-0.00668702 0.00275129 0)
(-0.0083766 0.00434792 0)
(-0.0103997 0.00659522 0)
(-0.0126337 0.00974902 0)
(-0.0149047 0.0140932 0)
(-0.0170155 0.020107 0)
(-0.0186158 0.0284433 0)
(-0.0190985 0.0402243 0)
(-0.0166451 0.0569796 0)
(-0.0074352 0.0794155 0)
(0.0141302 0.104928 0)
(0.0509907 0.124986 0)
(0.0960448 0.131555 0)
(0.141705 0.130227 0)
(0.197481 0.125646 0)
(0.27111 0.0997233 0)
(0.341482 0.0324303 0)
(0.37755 -0.0639375 0)
(0.374816 -0.160746 0)
(0.345517 -0.243087 0)
(0.301432 -0.306789 0)
(0.251707 -0.352595 0)
(0.202238 -0.383965 0)
(0.155934 -0.404825 0)
(0.113738 -0.418416 0)
(0.0757143 -0.427005 0)
(0.0415664 -0.431993 0)
(0.0109193 -0.434115 0)
(-0.00465553 0.0006265 0)
(-0.00531517 0.0016995 0)
(-0.00651288 0.00295378 0)
(-0.00811038 0.00462593 0)
(-0.00998615 0.00694412 0)
(-0.011978 0.0101449 0)
(-0.0138787 0.0145093 0)
(-0.015415 0.0204683 0)
(-0.0161371 0.0286096 0)
(-0.015234 0.0398191 0)
(-0.010823 0.055027 0)
(0.000405507 0.0740255 0)
(0.022319 0.0937448 0)
(0.0557946 0.107633 0)
(0.0959098 0.110866 0)
(0.13872 0.105426 0)
(0.187427 0.0910194 0)
(0.241204 0.0580102 0)
(0.286282 0.000257622 0)
(0.308006 -0.0730245 0)
(0.304272 -0.146404 0)
(0.281683 -0.210133 0)
(0.248003 -0.260832 0)
(0.209454 -0.298768 0)
(0.170134 -0.325976 0)
(0.132355 -0.344877 0)
(0.0971504 -0.357669 0)
(0.0649044 -0.366041 0)
(0.0356505 -0.371101 0)
(0.00926041 -0.373325 0)
(-0.00452874 0.000673473 0)
(-0.00517181 0.00182144 0)
(-0.00630898 0.003161 0)
(-0.00780484 0.00490711 0)
(-0.00951962 0.00728721 0)
(-0.0112544 0.010515 0)
(-0.0127669 0.0148557 0)
(-0.0137162 0.0206831 0)
(-0.013568 0.0284873 0)
(-0.0113813 0.0388877 0)
(-0.00535437 0.052267 0)
(0.00718384 0.0677839 0)
(0.0286475 0.0823297 0)
(0.0588252 0.0910275 0)
(0.0942139 0.0906669 0)
(0.132038 0.08132 0)
(0.171891 0.061681 0)
(0.210318 0.0276891 0)
(0.23897 -0.0210029 0)
(0.251014 -0.0776999 0)
(0.245974 -0.133549 0)
(0.227858 -0.182559 0)
(0.201641 -0.222367 0)
(0.171495 -0.252969 0)
(0.140301 -0.275561 0)
(0.109828 -0.291688 0)
(0.0810014 -0.302878 0)
(0.0542751 -0.310417 0)
(0.0298192 -0.315169 0)
(0.00765183 -0.317337 0)
(-0.00438187 0.000722275 0)
(-0.00499998 0.00194759 0)
(-0.00607025 0.00336965 0)
(-0.0074551 0.00518671 0)
(-0.00899671 0.00761575 0)
(-0.0104631 0.0108465 0)
(-0.011578 0.015114 0)
(-0.0119444 0.0207246 0)
(-0.0109663 0.0280458 0)
(-0.00765514 0.0374216 0)
(-0.000410379 0.0487726 0)
(0.0127696 0.0608897 0)
(0.0331738 0.0709091 0)
(0.0600227 0.0752359 0)
(0.0906098 0.0715843 0)
(0.122442 0.0593842 0)
(0.153541 0.0377953 0)
(0.180366 0.00590959 0)
(0.198127 -0.0345319 0)
(0.203823 -0.07873 0)
(0.197846 -0.121395 0)
(0.182873 -0.158918 0)
(0.162138 -0.189784 0)
(0.138436 -0.213922 0)
(0.113783 -0.232067 0)
(0.089504 -0.245232 0)
(0.0663418 -0.254489 0)
(0.0446771 -0.260811 0)
(0.0246365 -0.264856 0)
(0.00627293 -0.266715 0)
(-0.004211 0.000773093 0)
(-0.00479762 0.0020775 0)
(-0.00579442 0.00357907 0)
(-0.00705975 0.00546217 0)
(-0.00841734 0.00792307 0)
(-0.00960874 0.0111271 0)
(-0.0103266 0.0152664 0)
(-0.0101337 0.0205712 0)
(-0.00840158 0.0272673 0)
(-0.00417439 0.0354415 0)
(0.00387508 0.0446757 0)
(0.0170918 0.0535802 0)
(0.0359622 0.0597124 0)
(0.0594091 0.0604496 0)
(0.0851585 0.0541761 0)
(0.110857 0.0403884 0)
(0.134193 0.0189933 0)
(0.152396 -0.00937637 0)
(0.162876 -0.0425111 0)
(0.164536 -0.0770174 0)
(0.158122 -0.109654 0)
(0.145541 -0.138264 0)
(0.128957 -0.161935 0)
(0.11026 -0.180637 0)
(0.0908573 -0.194856 0)
(0.0717095 -0.20527 0)
(0.0533657 -0.212594 0)
(0.0360926 -0.217445 0)
(0.0199566 -0.220286 0)
(0.00502712 -0.221444 0)
(-0.00401283 0.000825698 0)
(-0.00456217 0.00221012 0)
(-0.00547947 0.0037878 0)
(-0.00661767 0.0057279 0)
(-0.0077833 0.00820294 0)
(-0.00869981 0.0113472 0)
(-0.00903381 0.0152998 0)
(-0.00832707 0.0202075 0)
(-0.00595336 0.0261521 0)
(-0.00105857 0.0329958 0)
(0.00737808 0.0401092 0)
(0.0201207 0.0460953 0)
(0.0371051 0.0489807 0)
(0.0571171 0.0469092 0)
(0.0781725 0.0388394 0)
(0.0981612 0.024604 0)
(0.115046 0.0046846 0)
(0.126947 -0.0196944 0)
(0.132592 -0.0465015 0)
(0.131792 -0.0733741 0)
(0.125378 -0.098303 0)
(0.114752 -0.120013 0)
(0.1014 -0.137992 0)
(0.0866097 -0.152263 0)
(0.0713447 -0.163165 0)
(0.0562761 -0.171147 0)
(0.0418077 -0.176665 0)
(0.0281742 -0.180105 0)
(0.0154914 -0.18184 0)
(0.00384318 -0.182395 0)
(-0.00378378 0.000879809 0)
(-0.0042906 0.00234299 0)
(-0.00512297 0.00399267 0)
(-0.00612784 0.00598062 0)
(-0.00709828 0.00844831 0)
(-0.00774769 0.0114956 0)
(-0.00772615 0.0152036 0)
(-0.00657458 0.0196292 0)
(-0.00370451 0.0247204 0)
(0.00159267 0.0301704 0)
(0.0100163 0.0352437 0)
(0.0218722 0.038672 0)
(0.0367388 0.0389451 0)
(0.0533802 0.0348295 0)
(0.0700826 0.0257772 0)
(0.0850932 0.0119676 0)
(0.0968637 -0.00580709 0)
(0.104252 -0.0262313 0)
(0.106747 -0.0476595 0)
(0.104564 -0.0684782 0)
(0.0984796 -0.0874444 0)
(0.0895342 -0.103817 0)
(0.0787637 -0.117334 0)
(0.0670529 -0.128052 0)
(0.0550704 -0.136219 0)
(0.0432962 -0.142152 0)
(0.0320337 -0.146177 0)
(0.0214774 -0.148581 0)
(0.0117369 -0.149684 0)
(0.00286545 -0.149975 0)
(-0.00351997 0.000933166 0)
(-0.00397984 0.00247538 0)
(-0.00472206 0.00418993 0)
(-0.00558984 0.00621423 0)
(-0.00636769 0.00865255 0)
(-0.00676732 0.0115662 0)
(-0.00643475 0.0149743 0)
(-0.00493015 0.0188464 0)
(-0.00173523 0.0230151 0)
(0.00369344 0.0270708 0)
(0.0117484 0.0302623 0)
(0.0224077 0.0315355 0)
(0.0350465 0.02981 0)
(0.0484986 0.0243551 0)
(0.0613416 0.0150158 0)
(0.0722245 0.00221663 0)
(0.0800956 -0.0131581 0)
(0.0843415 -0.0299358 0)
(0.0848678 -0.046873 0)
(0.0820397 -0.0628928 0)
(0.0765194 -0.0772356 0)
(0.0690801 -0.0894875 0)
(0.0604509 -0.0995392 0)
(0.0512465 -0.107476 0)
(0.041933 -0.1135 0)
(0.0328518 -0.11785 0)
(0.0242233 -0.120769 0)
(0.016188 -0.122478 0)
(0.00881393 -0.123232 0)
(0.00211996 -0.12341 0)
(-0.00321758 0.000985579 0)
(-0.00362667 0.00260261 0)
(-0.00427443 0.00437673 0)
(-0.00500428 0.00642345 0)
(-0.00559891 0.00881077 0)
(-0.00577682 0.0115563 0)
(-0.00519395 0.0146188 0)
(-0.00344909 0.0178837 0)
(-0.000119567 0.021099 0)
(0.00517586 0.0238211 0)
(0.0125721 0.0253529 0)
(0.0218291 0.0248899 0)
(0.0322478 0.021734 0)
(0.0427982 0.0155441 0)
(0.0523604 0.00644415 0)
(0.0599689 -0.0050193 0)
(0.0649767 -0.0180096 0)
(0.0671191 -0.0315801 0)
(0.0665061 -0.0448383 0)
(0.0635273 -0.0570838 0)
(0.0587211 -0.0678666 0)
(0.0526581 -0.0769724 0)
(0.0458522 -0.0843833 0)
(0.0387272 -0.0902009 0)
(0.0316004 -0.0945984 0)
(0.0247029 -0.0977666 0)
(0.018181 -0.0998913 0)
(0.0121275 -0.101136 0)
(0.0065866 -0.101684 0)
(0.00156698 -0.101809 0)
(-0.00287284 0.00103494 0)
(-0.00322763 0.00272301 0)
(-0.00377817 0.00454819 0)
(-0.00437251 0.00660395 0)
(-0.00480044 0.00892122 0)
(-0.0047955 0.0114709 0)
(-0.00403825 0.0141517 0)
(-0.00218313 0.0167852 0)
(0.00109268 0.0190708 0)
(0.00600862 0.0205634 0)
(0.0125227 0.0206945 0)
(0.0202724 0.0189044 0)
(0.0285779 0.0148136 0)
(0.0365863 0.00836467 0)
(0.043465 -0.000150404 0)
(0.0485799 -0.0101594 0)
(0.0515708 -0.0209509 0)
(0.0523834 -0.0318047 0)
(0.0512089 -0.0421087 0)
(0.0483999 -0.0514251 0)
(0.0443755 -0.0595026 0)
(0.0395508 -0.066249 0)
(0.0342857 -0.0716965 0)
(0.0288693 -0.0759475 0)
(0.0235126 -0.0791437 0)
(0.0183652 -0.0814312 0)
(0.0135168 -0.0829526 0)
(0.00902078 -0.0838363 0)
(0.00489834 -0.0842202 0)
(0.00115363 -0.0843034 0)
(-0.00248209 0.00108036 0)
(-0.00277956 0.0028335 0)
(-0.00323163 0.00470104 0)
(-0.00369668 0.0067539 0)
(-0.00398097 0.00898538 0)
(-0.00384225 0.0113192 0)
(-0.00300018 0.0136049 0)
(-0.00117519 0.0156127 0)
(0.00186015 0.0170269 0)
(0.00619078 0.0174473 0)
(0.0116688 0.0164527 0)
(0.0178929 0.0137096 0)
(0.0242653 0.00908673 0)
(0.0301245 0.00271525 0)
(0.0348917 -0.00503268 0)
(0.0381761 -0.0136293 0)
(0.0398157 -0.0225031 0)
(0.0398593 -0.0311358 0)
(0.038512 -0.0391237 0)
(0.036064 -0.0462069 0)
(0.0328269 -0.05226 0)
(0.0290937 -0.0572627 0)
(0.0251087 -0.0612713 0)
(0.0210658 -0.064382 0)
(0.0171043 -0.0667106 0)
(0.0133226 -0.0683692 0)
(0.0097787 -0.0694608 0)
(0.00650736 -0.0700726 0)
(0.00352175 -0.0703067 0)
(0.0008197 -0.0703333 0)
(-0.00204184 0.00112141 0)
(-0.00227941 0.00293101 0)
(-0.0026331 0.00483236 0)
(-0.00297843 0.00687124 0)
(-0.00314751 0.0090079 0)
(-0.00293276 0.0111231 0)
(-0.00210466 0.013022 0)
(-0.000453582 0.0144466 0)
(0.00216789 0.0150889 0)
(0.00575017 0.0146221 0)
(0.0101003 0.0127713 0)
(0.0148454 0.00939377 0)
(0.019505 0.0045374 0)
(0.0235996 -0.00155604 0)
(0.0267564 -0.00849562 0)
(0.0287537 -0.0158278 0)
(0.0295432 -0.0231154 0)
(0.0292146 -0.0299983 0)
(0.0279482 -0.0362229 0)
(0.0259651 -0.0416455 0)
(0.0234878 -0.0462169 0)
(0.0207154 -0.0499548 0)
(0.0178092 -0.0529248 0)
(0.014894 -0.0552149 0)
(0.0120592 -0.0569217 0)
(0.00936823 -0.0581357 0)
(0.00685754 -0.0589388 0)
(0.00455004 -0.0594023 0)
(0.0024548 -0.0595997 0)
(0.000567493 -0.0596369 0)
(-0.00154921 0.00115562 0)
(-0.00172472 0.0030121 0)
(-0.00198098 0.0049374 0)
(-0.00221842 0.00695719 0)
(-0.00230427 0.00900072 0)
(-0.00207634 0.0109106 0)
(-0.00136336 0.012462 0)
(-2.17909e-05 0.0133807 0)
(0.00203111 0.0133892 0)
(0.00473957 0.0122361 0)
(0.00791821 0.00977738 0)
(0.0112677 0.00601615 0)
(0.014439 0.00111808 0)
(0.0171183 -0.00461743 0)
(0.0190764 -0.010819 0)
(0.0202061 -0.0171108 0)
(0.0205122 -0.0231655 0)
(0.0200838 -0.0287397 0)
(0.0190588 -0.0336802 0)
(0.017592 -0.0379175 0)
(0.0158324 -0.0414478 0)
(0.0139108 -0.0443098 0)
(0.0119318 -0.04657 0)
(0.00997451 -0.0483044 0)
(0.00809101 -0.0495913 0)
(0.0063135 -0.0505036 0)
(0.00465449 -0.0511031 0)
(0.00311673 -0.0514372 0)
(0.00169705 -0.0515611 0)
(0.000395996 -0.0515699 0)
(-0.00100188 0.00118126 0)
(-0.00111315 0.00307206 0)
(-0.00127296 0.00501428 0)
(-0.00141445 0.00701417 0)
(-0.00144895 0.00897759 0)
(-0.00126955 0.0107205 0)
(-0.000767417 0.011996 0)
(0.000141426 0.0125289 0)
(0.001495 0.0120685 0)
(0.00323414 0.0104378 0)
(0.00522138 0.00758899 0)
(0.00726105 0.00362233 0)
(0.00914031 -0.00122339 0)
(0.0106771 -0.00662794 0)
(0.0117497 -0.012251 0)
(0.0123146 -0.0177793 0)
(0.0123914 -0.0229652 0)
(0.0120442 -0.0276419 0)
(0.0113607 -0.0317194 0)
(0.010434 -0.0351728 0)
(0.00935089 -0.0380242 0)
(0.00818509 -0.0403237 0)
(0.0069926 -0.0421357 0)
(0.00581424 -0.0435254 0)
(0.00467904 -0.0445554 0)
(0.00361061 -0.0452802 0)
(0.00262441 -0.0457426 0)
(0.00172935 -0.0459732 0)
(0.000926887 -0.0460204 0)
(0.00021147 -0.0459906 0)
(-0.000399039 0.00119665 0)
(-0.000443262 0.00310771 0)
(-0.00050606 0.00505791 0)
(-0.000560237 0.00704411 0)
(-0.000569478 0.00895697 0)
(-0.000490527 0.0105965 0)
(-0.000280047 0.0117045 0)
(9.34798e-05 0.0120092 0)
(0.000640395 0.0112799 0)
(0.00133052 0.00938743 0)
(0.00210165 0.00634039 0)
(0.00287714 0.00228107 0)
(0.00359709 -0.00250488 0)
(0.00416274 -0.00769208 0)
(0.00454671 -0.0129708 0)
(0.00473677 -0.0180623 0)
(0.00474316 -0.0227634 0)
(0.00459264 -0.0269483 0)
(0.0043196 -0.0305592 0)
(0.00395912 -0.0335919 0)
(0.00354232 -0.0360776 0)
(0.00309521 -0.0380676 0)
(0.00263836 -0.0396265 0)
(0.00218802 -0.0408199 0)
(0.00175573 -0.0417079 0)
(0.00134976 -0.0423414 0)
(0.000975454 -0.0427656 0)
(0.000637256 -0.0430156 0)
(0.000337929 -0.0431237 0)
(7.52937e-05 -0.0431425 0)
(0.133478 -0.998588 0)
(0.332446 -0.970824 0)
(0.441973 -0.94655 0)
(0.472606 -0.9162 0)
(0.440168 -0.851234 0)
(0.292439 -0.705507 0)
(0.245794 -0.531966 0)
(0.633823 -0.332112 0)
(0.616622 0.334467 0)
(0.490418 0.525007 0)
(0.229169 0.467239 0)
(0.0739274 0.330787 0)
(0.0415362 0.236611 0)
(0.0332142 0.166711 0)
(-0.00565485 0.119997 0)
(0.00191441 0.0867853 0)
(0.0021429 0.0643555 0)
(0.00170337 0.0486701 0)
(0.00139073 0.0369855 0)
(0.00121778 0.027626 0)
(0.00108818 0.020131 0)
(0.000980459 0.0142476 0)
(0.000914369 0.00976444 0)
(0.000902806 0.00643786 0)
(0.000916361 0.00406571 0)
(0.000938207 0.00244924 0)
(0.000958173 0.00140451 0)
(0.000939303 0.000771229 0)
(0.000882995 0.000421718 0)
(0.000890757 8.78327e-05 0)
(0.101612 -1.12986 0)
(0.208858 -1.0478 0)
(0.286673 -0.979809 0)
(0.270675 -0.894609 0)
(0.175101 -0.797521 0)
(0.0664587 -0.662478 0)
(0.144919 -0.60259 0)
(0.436468 -0.38881 0)
(0.64148 0.398678 0)
(0.445979 0.592553 0)
(0.171587 0.526235 0)
(0.0380928 0.348723 0)
(0.0637096 0.246814 0)
(0.258179 0.151854 0)
(0.240938 0.118026 0)
(0.801352 0.0790841 0)
(0.127702 0.0715489 0)
(0.0680591 0.0515557 0)
(0.0449022 0.0388208 0)
(0.0328206 0.0285213 0)
(0.0257658 0.0205788 0)
(0.0202532 0.0145548 0)
(0.0157121 0.00997379 0)
(0.0123927 0.00656147 0)
(0.00982267 0.00413527 0)
(0.00771013 0.00248368 0)
(0.00608228 0.00142178 0)
(0.00478263 0.000783927 0)
(0.0038571 0.000429721 0)
(0.00363114 -0.000171079 0)
(0.019573 -1.22328 0)
(0.0141921 -1.07489 0)
(0.022358 -0.981648 0)
(0.000631245 -0.86777 0)
(-0.0539482 -0.7528 0)
(-0.0245006 -0.68258 0)
(0.137376 -0.674762 0)
(0.37392 -0.533792 0)
(0.688075 0.443897 0)
(0.46287 0.634109 0)
(0.160985 0.614968 0)
(0.333751 0.316214 0)
(0.512483 0.203942 0)
(1.10243 0.0628099 0)
(2.70294 0.162812 0)
(1.31275 0.235422 0)
(0.264104 0.104945 0)
(0.121512 0.0586888 0)
(0.0742343 0.0416755 0)
(0.0515238 0.0298849 0)
(0.0384274 0.0213648 0)
(0.0291517 0.0151092 0)
(0.0222001 0.0103495 0)
(0.0172536 0.00682167 0)
(0.0134695 0.0043214 0)
(0.0104166 0.00261205 0)
(0.00810692 0.00151441 0)
(0.00629969 0.000857126 0)
(0.00503685 0.000480253 0)
(0.00467875 -0.000206273 0)
(-0.060482 -1.16867 0)
(-0.115179 -1.06107 0)
(-0.152777 -0.965637 0)
(-0.162281 -0.854646 0)
(-0.140683 -0.762058 0)
(-0.0280877 -0.746667 0)
(0.146384 -0.760453 0)
(0.374128 -0.624297 0)
(0.611699 0.292842 0)
(0.532632 0.707635 0)
(0.180915 0.627381 0)
(0.242844 0.191159 0)
(0.744426 0.109953 0)
(1.10525 -0.146187 0)
(2.12289 0.0813202 0)
(0.974459 0.554418 0)
(0.289714 0.15014 0)
(0.135738 0.069425 0)
(0.0821614 0.0457994 0)
(0.0564719 0.0318382 0)
(0.0418018 0.0224646 0)
(0.0315849 0.0158577 0)
(0.0239828 0.0108493 0)
(0.0185618 0.00716679 0)
(0.0144186 0.00456612 0)
(0.0111308 0.00277859 0)
(0.00864121 0.00163186 0)
(0.00671476 0.000947547 0)
(0.00538149 0.000541237 0)
(0.00496176 -0.000162062 0)
(-0.0729583 -1.07322 0)
(-0.156826 -1.02342 0)
(-0.201332 -0.952817 0)
(-0.197596 -0.863104 0)
(-0.140217 -0.809414 0)
(-0.0270462 -0.818903 0)
(0.149658 -0.863732 0)
(0.65266 -0.671298 0)
(0.683433 0.309845 0)
(0.565597 0.84022 0)
(0.471435 0.65343 0)
(0.606774 0.209955 0)
(0.573822 0.0944685 0)
(0.659706 -0.242576 0)
(0.922155 -0.0421734 0)
(0.427604 0.770719 0)
(0.266164 0.190513 0)
(0.134166 0.08123 0)
(0.0821688 0.0504339 0)
(0.0566437 0.0340674 0)
(0.0419017 0.0237226 0)
(0.0317197 0.0167035 0)
(0.024191 0.0114145 0)
(0.0187396 0.00755754 0)
(0.0145416 0.00484246 0)
(0.0112537 0.00296595 0)
(0.00873093 0.00176116 0)
(0.00680273 0.00104307 0)
(0.005482 0.000602327 0)
(0.00502731 -9.92567e-05 0)
(-0.0607786 -0.975981 0)
(-0.138108 -0.970461 0)
(-0.176718 -0.941218 0)
(-0.174233 -0.881615 0)
(-0.128888 -0.85742 0)
(-0.0427969 -0.887282 0)
(0.118823 -0.984435 0)
(0.430105 -0.993579 0)
(1.02295 0.846557 0)
(0.57908 0.962748 0)
(0.75695 0.687982 0)
(0.448609 0.165971 0)
(0.440659 0.113024 0)
(0.350498 -0.22832 0)
(-0.175705 -0.0758494 0)
(0.07447 0.757328 0)
(0.224638 0.218826 0)
(0.126831 0.0927695 0)
(0.0797115 0.0552341 0)
(0.0554335 0.0364502 0)
(0.041106 0.0250746 0)
(0.0312693 0.0175965 0)
(0.0240328 0.0120127 0)
(0.0186724 0.00797473 0)
(0.0145028 0.00513891 0)
(0.0112588 0.00316798 0)
(0.00873135 0.00189817 0)
(0.00682349 0.00113955 0)
(0.00552794 0.000659479 0)
(0.0050465 -3.8121e-05 0)
(-0.0366928 -0.898947 0)
(-0.0909822 -0.923761 0)
(-0.13151 -0.92139 0)
(-0.146723 -0.891457 0)
(-0.129395 -0.889329 0)
(-0.0813261 -0.941519 0)
(0.0272502 -1.09943 0)
(0.365313 -1.45455 0)
(1.68256 1.28833 0)
(0.62749 1.09338 0)
(0.785154 0.773126 0)
(0.412775 0.0524419 0)
(0.397364 0.145597 0)
(0.190254 -0.135303 0)
(-0.556531 -0.00234023 0)
(-0.0301254 0.611586 0)
(0.178711 0.233659 0)
(0.116461 0.10318 0)
(0.0760683 0.0600078 0)
(0.0536434 0.0389202 0)
(0.0399963 0.0264929 0)
(0.0306383 0.0185206 0)
(0.0237631 0.0126352 0)
(0.0185395 0.00841381 0)
(0.0144349 0.00545305 0)
(0.0112363 0.00338418 0)
(0.00871443 0.00204313 0)
(0.00682845 0.0012372 0)
(0.00555395 0.000712828 0)
(0.00505011 1.72904e-05 0)
(-0.0163173 -0.851053 0)
(-0.0544484 -0.880739 0)
(-0.0985332 -0.888752 0)
(-0.131658 -0.883429 0)
(-0.143993 -0.898461 0)
(-0.142221 -0.96591 0)
(-0.129999 -1.15481 0)
(-0.110452 -1.64393 0)
(0.554999 0.919977 0)
(0.800375 1.10714 0)
(0.583036 0.64833 0)
(0.248792 0.0438471 0)
(0.372452 0.207784 0)
(0.108913 -0.02487 0)
(-0.416457 0.0824407 0)
(-0.0624963 0.478972 0)
(0.13459 0.236639 0)
(0.103849 0.111797 0)
(0.0714172 0.0645766 0)
(0.0513801 0.0414124 0)
(0.0386517 0.0279552 0)
(0.0298753 0.0194668 0)
(0.0234009 0.0132789 0)
(0.0183547 0.0088734 0)
(0.0143462 0.00578435 0)
(0.0111938 0.00361508 0)
(0.00868941 0.00219734 0)
(0.00682363 0.00133748 0)
(0.00556505 0.000763983 0)
(0.00504286 6.7128e-05 0)
(-0.00934719 -0.822185 0)
(-0.0416953 -0.836562 0)
(-0.0872383 -0.846336 0)
(-0.13114 -0.856267 0)
(-0.169244 -0.881075 0)
(-0.213021 -0.947797 0)
(-0.29962 -1.10783 0)
(-0.596743 -1.47156 0)
(-0.523333 0.304125 0)
(-0.0150567 -0.0873209 0)
(1.2984 0.844414 0)
(0.890773 0.286838 0)
(0.332979 0.318784 0)
(0.0518318 0.0760823 0)
(-0.273705 0.137408 0)
(-0.0735719 0.382238 0)
(0.0953217 0.230626 0)
(0.0895907 0.118122 0)
(0.065792 0.0687416 0)
(0.0486408 0.0438507 0)
(0.037071 0.0294333 0)
(0.0289742 0.0204239 0)
(0.0229356 0.01394 0)
(0.0181116 0.00935144 0)
(0.0142281 0.00613178 0)
(0.011129 0.00386081 0)
(0.00865609 0.00236221 0)
(0.00680866 0.00144187 0)
(0.0055634 0.000814916 0)
(0.00502648 0.000112102 0)
(-0.0154644 -0.791364 0)
(-0.0500192 -0.790378 0)
(-0.0931251 -0.79892 0)
(-0.1417 -0.81334 0)
(-0.197569 -0.837955 0)
(-0.274257 -0.887901 0)
(-0.416147 -0.981498 0)
(-0.771244 -1.10086 0)
(-1.42075 -0.497674 0)
(-0.180314 -0.20073 0)
(0.689544 0.489968 0)
(0.869443 0.408903 0)
(0.192633 0.465031 0)
(-0.000565747 0.156416 0)
(-0.192078 0.17053 0)
(-0.0747959 0.313325 0)
(0.0621659 0.21866 0)
(0.0743644 0.121863 0)
(0.0592642 0.0722898 0)
(0.0454172 0.0461454 0)
(0.035244 0.0308901 0)
(0.0279238 0.0213776 0)
(0.0223582 0.0146123 0)
(0.017802 0.00984393 0)
(0.0140703 0.00649319 0)
(0.011039 0.00412067 0)
(0.00861155 0.0025388 0)
(0.0067824 0.00155188 0)
(0.00555024 0.00086774 0)
(0.00500167 0.000152895 0)
(-0.0233647 -0.744232 0)
(-0.0613913 -0.743054 0)
(-0.103053 -0.748296 0)
(-0.15462 -0.758573 0)
(-0.220002 -0.774736 0)
(-0.311421 -0.800244 0)
(-0.460346 -0.829856 0)
(-0.729046 -0.804155 0)
(-1.04405 -0.451253 0)
(-0.804928 -0.207071 0)
(-0.616922 -0.198953 0)
(-0.370499 0.983982 0)
(-0.023187 0.488833 0)
(-0.0534825 0.208282 0)
(-0.149029 0.188477 0)
(-0.0729802 0.264065 0)
(0.035122 0.203347 0)
(0.0588544 0.122956 0)
(0.0519562 0.0750172 0)
(0.0417096 0.0481995 0)
(0.0331597 0.032283 0)
(0.026713 0.0223123 0)
(0.0216626 0.0152889 0)
(0.0174175 0.0103469 0)
(0.0138648 0.00686683 0)
(0.010921 0.00439455 0)
(0.00855122 0.00272841 0)
(0.00674391 0.00166963 0)
(0.00552561 0.000924803 0)
(0.0049685 0.000190354 0)
(-0.0221742 -0.687056 0)
(-0.0622168 -0.689477 0)
(-0.10796 -0.6912 0)
(-0.162304 -0.694646 0)
(-0.230369 -0.699445 0)
(-0.321312 -0.70245 0)
(-0.450975 -0.690511 0)
(-0.631695 -0.618603 0)
(-0.786685 -0.404238 0)
(-0.786958 -0.204805 0)
(-0.943116 -0.033298 0)
(-0.613428 0.57737 0)
(-0.169274 0.418705 0)
(-0.102932 0.228916 0)
(-0.129562 0.194254 0)
(-0.0717251 0.227845 0)
(0.0134856 0.186591 0)
(0.043686 0.121535 0)
(0.0440484 0.076747 0)
(0.0375414 0.0499105 0)
(0.0308123 0.0335627 0)
(0.0253339 0.0232091 0)
(0.0208455 0.0159604 0)
(0.0169514 0.0108549 0)
(0.0136063 0.00725026 0)
(0.0107728 0.00468156 0)
(0.00847084 0.00293146 0)
(0.00669262 0.00179684 0)
(0.0054894 0.000987558 0)
(0.00492662 0.000224948 0)
(-0.0225392 -0.627767 0)
(-0.0625828 -0.627323 0)
(-0.108356 -0.626556 0)
(-0.162119 -0.624648 0)
(-0.227398 -0.619813 0)
(-0.309335 -0.607343 0)
(-0.413563 -0.575373 0)
(-0.53658 -0.498957 0)
(-0.639298 -0.354304 0)
(-0.684535 -0.184906 0)
(-0.72481 0.0286955 0)
(-0.532346 0.331061 0)
(-0.245271 0.325494 0)
(-0.142467 0.22291 0)
(-0.123721 0.189692 0)
(-0.0723196 0.19958 0)
(-0.00373276 0.169546 0)
(0.0293653 0.117882 0)
(0.0357673 0.0773495 0)
(0.0329643 0.0511756 0)
(0.0282031 0.0346737 0)
(0.0237814 0.0240424 0)
(0.0199059 0.0166118 0)
(0.0163998 0.0113606 0)
(0.0132912 0.00763959 0)
(0.0105913 0.00497959 0)
(0.00836664 0.00314731 0)
(0.00662669 0.00193438 0)
(0.00544109 0.00105665 0)
(0.00487554 0.000256871 0)
(-0.0218967 -0.563498 0)
(-0.0603797 -0.562243 0)
(-0.104112 -0.558976 0)
(-0.154466 -0.552796 0)
(-0.213514 -0.541581 0)
(-0.283491 -0.520904 0)
(-0.365254 -0.482404 0)
(-0.453183 -0.413209 0)
(-0.528359 -0.304011 0)
(-0.57159 -0.163665 0)
(-0.571963 0.0121545 0)
(-0.453113 0.194643 0)
(-0.272048 0.239143 0)
(-0.168381 0.199216 0)
(-0.124406 0.176672 0)
(-0.0746407 0.175668 0)
(-0.0175067 0.152795 0)
(0.0162434 0.112349 0)
(0.0273582 0.0767531 0)
(0.0280549 0.0518974 0)
(0.0253407 0.0355547 0)
(0.0220537 0.0247801 0)
(0.0188436 0.0172251 0)
(0.0157613 0.011856 0)
(0.0129164 0.0080315 0)
(0.0103725 0.0052876 0)
(0.00823547 0.00337602 0)
(0.00654316 0.00208347 0)
(0.00537966 0.00113322 0)
(0.00481409 0.000287021 0)
(-0.0205298 -0.498101 0)
(-0.0560106 -0.495994 0)
(-0.0959319 -0.491137 0)
(-0.141109 -0.482525 0)
(-0.192474 -0.468189 0)
(-0.250609 -0.44468 0)
(-0.314656 -0.406551 0)
(-0.37994 -0.346827 0)
(-0.435879 -0.260392 0)
(-0.468721 -0.14829 0)
(-0.461254 -0.0149322 0)
(-0.38636 0.110943 0)
(-0.27013 0.168596 0)
(-0.180653 0.166742 0)
(-0.126731 0.157484 0)
(-0.0778472 0.153853 0)
(-0.0285376 0.136466 0)
(0.00455101 0.105305 0)
(0.0190789 0.0749477 0)
(0.0229205 0.0519889 0)
(0.0222525 0.0361402 0)
(0.0201577 0.025385 0)
(0.0176619 0.0177802 0)
(0.0150363 0.0123325 0)
(0.0124791 0.00842342 0)
(0.0101115 0.00560528 0)
(0.00807362 0.00361753 0)
(0.0064381 0.00224492 0)
(0.00530259 0.00121816 0)
(0.00474034 0.000316443 0)
(-0.0184916 -0.433917 0)
(-0.0500066 -0.431306 0)
(-0.0851689 -0.425698 0)
(-0.124367 -0.416217 0)
(-0.167854 -0.401236 0)
(-0.215429 -0.378225 0)
(-0.265783 -0.343664 0)
(-0.315343 -0.293488 0)
(-0.357276 -0.224636 0)
(-0.381682 -0.137288 0)
(-0.375964 -0.0373125 0)
(-0.329035 0.056113 0)
(-0.25314 0.113656 0)
(-0.181612 0.132104 0)
(-0.127721 0.134631 0)
(-0.0808872 0.13296 0)
(-0.0372747 0.120536 0)
(-0.00559352 0.0970974 0)
(0.0111762 0.0719812 0)
(0.0176916 0.0513853 0)
(0.0189837 0.0363697 0)
(0.0181089 0.0258213 0)
(0.0163654 0.0182581 0)
(0.0142244 0.0127818 0)
(0.0119761 0.00881262 0)
(0.00980292 0.00593098 0)
(0.00787649 0.00387016 0)
(0.00630726 0.00241754 0)
(0.00520569 0.00131084 0)
(0.00465225 0.00034543 0)
(-0.0160999 -0.373075 0)
(-0.0432148 -0.37028 0)
(-0.0732743 -0.36457 0)
(-0.106385 -0.355335 0)
(-0.142457 -0.341291 0)
(-0.18099 -0.320589 0)
(-0.220695 -0.290902 0)
(-0.258859 -0.249759 0)
(-0.290796 -0.195379 0)
(-0.309733 -0.128131 0)
(-0.307609 -0.0527081 0)
(-0.27887 0.0191601 0)
(-0.228975 0.0717237 0)
(-0.174326 0.0993275 0)
(-0.125954 0.110449 0)
(-0.0828314 0.11262 0)
(-0.0439361 0.104961 0)
(-0.0141279 0.088037 0)
(0.00387816 0.0679508 0)
(0.0125161 0.0500512 0)
(0.0155983 0.0361906 0)
(0.0159305 0.0260535 0)
(0.0149596 0.0186383 0)
(0.013324 0.0131921 0)
(0.0114028 0.00919339 0)
(0.00944105 0.00626064 0)
(0.0076397 0.00413052 0)
(0.00614717 0.00259788 0)
(0.00508575 0.00140948 0)
(0.00454799 0.000373742 0)
(-0.0136746 -0.317059 0)
(-0.0364231 -0.314302 0)
(-0.0614897 -0.308959 0)
(-0.0888362 -0.300669 0)
(-0.118245 -0.28841 0)
(-0.149166 -0.270812 0)
(-0.180496 -0.246297 0)
(-0.210208 -0.213319 0)
(-0.23505 -0.170859 0)
(-0.250516 -0.11935 0)
(-0.251521 -0.0619877 0)
(-0.234683 -0.00578016 0)
(-0.202058 0.040148 0)
(-0.161642 0.0704415 0)
(-0.121113 0.0868227 0)
(-0.0830519 0.0929781 0)
(-0.0485915 0.0897781 0)
(-0.0210035 0.0783921 0)
(-0.00261985 0.0629986 0)
(0.00755005 0.0479892 0)
(0.0121759 0.0355654 0)
(0.0136542 0.0260481 0)
(0.0134551 0.0188979 0)
(0.0123377 0.0135476 0)
(0.0107594 0.00955543 0)
(0.00902465 0.00658761 0)
(0.00736267 0.0043943 0)
(0.00595727 0.00278291 0)
(0.00494304 0.00151288 0)
(0.0044257 0.00040166 0)
(-0.0114614 -0.266461 0)
(-0.0302604 -0.26407 0)
(-0.0507402 -0.259505 0)
(-0.0728501 -0.252541 0)
(-0.0964147 -0.242398 0)
(-0.120972 -0.228057 0)
(-0.145647 -0.208428 0)
(-0.168955 -0.182514 0)
(-0.188646 -0.149713 0)
(-0.201726 -0.110365 0)
(-0.204901 -0.0664902 0)
(-0.195823 -0.0222688 0)
(-0.174887 0.0167458 0)
(-0.145839 0.0461992 0)
(-0.113539 0.0650661 0)
(-0.0812773 0.074423 0)
(-0.0512684 0.0751256 0)
(-0.0262096 0.0684324 0)
(-0.00816754 0.0573143 0)
(0.00295025 0.0452402 0)
(0.00881198 0.0344735 0)
(0.0113261 0.0257742 0)
(0.0118729 0.0190128 0)
(0.0112753 0.0138317 0)
(0.0100509 0.00988766 0)
(0.00855556 0.00690454 0)
(0.00704626 0.00465734 0)
(0.00573761 0.00297 0)
(0.00477752 0.0016199 0)
(0.00428297 0.000430039 0)
(-0.00943769 -0.221284 0)
(-0.0246849 -0.219733 0)
(-0.041119 -0.216413 0)
(-0.0586961 -0.210978 0)
(-0.0773149 -0.202918 0)
(-0.096642 -0.191574 0)
(-0.11603 -0.176217 0)
(-0.134409 -0.156181 0)
(-0.150225 -0.131074 0)
(-0.161465 -0.101096 0)
(-0.165918 -0.0674638 0)
(-0.161837 -0.0326782 0)
(-0.148872 -0.000214593 0)
(-0.128605 0.0266226 0)
(-0.103887 0.0459503 0)
(-0.0775504 0.0573852 0)
(-0.052033 0.061222 0)
(-0.0297611 0.0584214 0)
(-0.0126396 0.0510861 0)
(-0.00113566 0.0418789 0)
(0.0056115 0.0329183 0)
(0.0090039 0.0252105 0)
(0.0102412 0.0189625 0)
(0.0101494 0.014028 0)
(0.00928178 0.0101793 0)
(0.00803347 0.00720571 0)
(0.00668807 0.00491764 0)
(0.00548474 0.00315878 0)
(0.00458554 0.0017302 0)
(0.00411705 0.000459479 0)
(-0.00740828 -0.182317 0)
(-0.0193244 -0.18151 0)
(-0.0322586 -0.179366 0)
(-0.0461269 -0.175409 0)
(-0.0607912 -0.169273 0)
(-0.0759773 -0.160552 0)
(-0.0912188 -0.148776 0)
(-0.105772 -0.1335 0)
(-0.118572 -0.114441 0)
(-0.128254 -0.0916845 0)
(-0.133289 -0.0659308 0)
(-0.132345 -0.0386716 0)
(-0.124796 -0.0121051 0)
(-0.111135 0.0113614 0)
(-0.0928956 0.0298157 0)
(-0.0721377 0.0422204 0)
(-0.0510251 0.0483211 0)
(-0.0317113 0.0486253 0)
(-0.0159648 0.0445372 0)
(-0.0045901 0.0380327 0)
(0.00268321 0.0309298 0)
(0.00675521 0.0243496 0)
(0.00859608 0.0187313 0)
(0.00897646 0.0141242 0)
(0.00845792 0.0104221 0)
(0.00745877 0.00748563 0)
(0.00628559 0.00517058 0)
(0.00519501 0.0033481 0)
(0.00436319 0.00184316 0)
(0.00392457 0.000490181 0)
(-0.00567841 -0.149929 0)
(-0.0147688 -0.149465 0)
(-0.0247219 -0.148043 0)
(-0.0354727 -0.145224 0)
(-0.0468916 -0.140708 0)
(-0.0587569 -0.134195 0)
(-0.0707237 -0.125353 0)
(-0.0822667 -0.113871 0)
(-0.0926507 -0.0995368 0)
(-0.100937 -0.082355 0)
(-0.106051 -0.0627076 0)
(-0.106979 -0.0414757 0)
(-0.10305 -0.0200466 0)
(-0.0942313 -0.000117976 0)
(-0.0812483 0.0166826 0)
(-0.0654304 0.029144 0)
(-0.0484656 0.0366568 0)
(-0.0321622 0.039299 0)
(-0.0181183 0.0378957 0)
(-0.00730452 0.0338294 0)
(0.000132126 0.0285621 0)
(0.00465315 0.0232018 0)
(0.00698013 0.0183124 0)
(0.00777834 0.0141098 0)
(0.00758807 0.0106058 0)
(0.00683356 0.0077377 0)
(0.00583707 0.00541364 0)
(0.00486551 0.00353525 0)
(0.00410682 0.00195647 0)
(0.00370187 0.000522148 0)
(-0.00432102 -0.123377 0)
(-0.0111831 -0.12307 0)
(-0.0187241 -0.122076 0)
(-0.0269147 -0.120049 0)
(-0.03567 -0.116752 0)
(-0.0448291 -0.111959 0)
(-0.0541424 -0.105424 0)
(-0.0632374 -0.0969073 0)
(-0.0716031 -0.0862323 0)
(-0.0785877 -0.0733509 0)
(-0.0834309 -0.0584485 0)
(-0.0853637 -0.0420311 0)
(-0.0837759 -0.024964 0)
(-0.07841 -0.00840902 0)
(-0.0695145 0.00636321 0)
(-0.0578595 0.0182218 0)
(-0.0446358 0.0264039 0)
(-0.031265 0.0306703 0)
(-0.0191236 0.0313869 0)
(-0.00921662 0.0294345 0)
(-0.00196158 0.025914 0)
(0.00277129 0.0217969 0)
(0.00544056 0.0177105 0)
(0.00658119 0.0139795 0)
(0.00668381 0.0107234 0)
(0.00616133 0.0079554 0)
(0.00534135 0.00564148 0)
(0.00449326 0.00371684 0)
(0.00381291 0.00206967 0)
(0.00344517 0.000553525 0)
(-0.00325918 -0.101783 0)
(-0.00840598 -0.101557 0)
(-0.0140746 -0.100828 0)
(-0.0202484 -0.0993459 0)
(-0.0268713 -0.0969392 0)
(-0.0338356 -0.0934399 0)
(-0.0409739 -0.0886585 0)
(-0.0480344 -0.0824037 0)
(-0.0546687 -0.0745178 0)
(-0.0604265 -0.0649223 0)
(-0.0647678 -0.0536839 0)
(-0.0671174 -0.0410772 0)
(-0.0669591 -0.0276282 0)
(-0.0639663 -0.0141086 0)
(-0.0581281 -0.00145548 0)
(-0.0498336 0.00939192 0)
(-0.0398464 0.0176597 0)
(-0.029211 0.0229259 0)
(-0.0190477 0.0252217 0)
(-0.0102988 0.0250221 0)
(-0.00352022 0.023083 0)
(0.00117978 0.0201867 0)
(0.00402668 0.016943 0)
(0.00541424 0.0137376 0)
(0.00575979 0.0107712 0)
(0.0054473 0.00813399 0)
(0.004798 0.00584929 0)
(0.00407553 0.0038903 0)
(0.00347807 0.00217852 0)
(0.00315067 0.000584814 0)
(-0.00245061 -0.0842835 0)
(-0.00628775 -0.0841257 0)
(-0.0105017 -0.0836067 0)
(-0.0150847 -0.0825463 0)
(-0.0200081 -0.0808138 0)
(-0.0252092 -0.0782782 0)
(-0.0305833 -0.0747951 0)
(-0.0359663 -0.070216 0)
(-0.0411244 -0.064408 0)
(-0.0457493 -0.0572822 0)
(-0.0494605 -0.0488372 0)
(-0.051835 -0.0392047 0)
(-0.0524611 -0.028689 0)
(-0.0510197 -0.0177843 0)
(-0.0473828 -0.00714628 0)
(-0.0416929 0.00248881 0)
(-0.0343989 0.0104346 0)
(-0.0262144 0.016194 0)
(-0.017997 0.0195826 0)
(-0.0105623 0.0207669 0)
(-0.00449891 0.020197 0)
(-6.21524e-05 0.0184424 0)
(0.00278575 0.016045 0)
(0.00430734 0.0133939 0)
(0.00483184 0.0107521 0)
(0.00469772 0.00827113 0)
(0.00420716 0.00603259 0)
(0.00360988 0.00405092 0)
(0.0030987 0.00228175 0)
(0.00281437 0.000614069 0)
(-0.00177791 -0.0703224 0)
(-0.00454848 -0.0702445 0)
(-0.00760337 -0.0699075 0)
(-0.0109411 -0.0691611 0)
(-0.014543 -0.0679117 0)
(-0.0183678 -0.0660682 0)
(-0.0223477 -0.0635246 0)
(-0.026375 -0.0601669 0)
(-0.0302949 -0.0558839 0)
(-0.0339007 -0.0505871 0)
(-0.0369315 -0.0442392 0)
(-0.0390865 -0.0368855 0)
(-0.0400536 -0.028688 0)
(-0.0395595 -0.0199487 0)
(-0.0374364 -0.0111097 0)
(-0.0336928 -0.00271507 0)
(-0.0285593 0.0046684 0)
(-0.0224908 0.0105475 0)
(-0.0161032 0.0146196 0)
(-0.0100514 0.0168354 0)
(-0.00488214 0.017395 0)
(-0.000919065 0.0166659 0)
(0.00175887 0.0150677 0)
(0.00328915 0.0129739 0)
(0.00391567 0.0106717 0)
(0.0039192 0.0083668 0)
(0.00356959 0.00618903 0)
(0.00309419 0.00419555 0)
(0.00267148 0.00237679 0)
(0.00243258 0.000641211 0)
(-0.00124392 -0.0596252 0)
(-0.00318119 -0.0595452 0)
(-0.0053283 -0.0592728 0)
(-0.00768587 -0.0587124 0)
(-0.0102405 -0.0577932 0)
(-0.0129656 -0.056442 0)
(-0.0158182 -0.0545746 0)
(-0.018729 -0.0520982 0)
(-0.0215984 -0.0489179 0)
(-0.0242925 -0.0449496 0)
(-0.0266387 -0.0401405 0)
(-0.0284305 -0.0344883 0)
(-0.0294424 -0.0280673 0)
(-0.0294604 -0.0210514 0)
(-0.0283249 -0.0137257 0)
(-0.025982 -0.00647696 0)
(-0.0225274 0.000246031 0)
(-0.0182321 0.00600499 0)
(-0.0135058 0.0104445 0)
(-0.00883755 0.0133797 0)
(-0.00468366 0.0148221 0)
(-0.00136705 0.0149577 0)
(0.000973766 0.0140804 0)
(0.0023824 0.012513 0)
(0.00302434 0.0105477 0)
(0.00311718 0.00842328 0)
(0.00288596 0.00631532 0)
(0.00252624 0.00432117 0)
(0.00219311 0.00246109 0)
(0.00200184 0.000665863 0)
(-0.000860122 -0.0515637 0)
(-0.00219024 -0.0515253 0)
(-0.00363744 -0.0513424 0)
(-0.00520314 -0.0509311 0)
(-0.0068897 -0.0502415 0)
(-0.00869161 -0.0492241 0)
(-0.0105914 -0.0478137 0)
(-0.0125524 -0.045935 0)
(-0.0145147 -0.0435106 0)
(-0.016393 -0.0404662 0)
(-0.0180748 -0.0367423 0)
(-0.019424 -0.0323101 0)
(-0.0202882 -0.0271901 0)
(-0.0205151 -0.0214739 0)
(-0.0199775 -0.0153395 0)
(-0.0186071 -0.00905554 0)
(-0.0164293 -0.00296523 0)
(-0.0135874 0.00255188 0)
(-0.0103365 0.00714096 0)
(-0.00700856 0.0105385 0)
(-0.00394358 0.0126254 0)
(-0.00141144 0.0134429 0)
(0.000439848 0.0131682 0)
(0.00159874 0.0120616 0)
(0.0021657 0.0104018 0)
(0.00229465 0.00844928 0)
(0.0021562 0.00641151 0)
(0.001904 0.00442266 0)
(0.0016609 0.00253151 0)
(0.00151929 0.000686392 0)
(-0.000472745 -0.045991 0)
(-0.00120839 -0.0460039 0)
(-0.00203292 -0.0459069 0)
(-0.00294997 -0.045609 0)
(-0.00395601 -0.0450701 0)
(-0.00504021 -0.0442583 0)
(-0.00618493 -0.0431279 0)
(-0.00736545 -0.041622 0)
(-0.00854943 -0.0396777 0)
(-0.00969244 -0.0372293 0)
(-0.0107334 -0.0342158 0)
(-0.011595 -0.0305934 0)
(-0.0121882 -0.0263516 0)
(-0.01242 -0.0215319 0)
(-0.0122078 -0.0162446 0)
(-0.011498 -0.0106787 0)
(-0.0102878 -0.00510132 0)
(-0.00864146 0.000162748 0)
(-0.00670032 0.00477897 0)
(-0.00465879 0.00844371 0)
(-0.00272812 0.0109554 0)
(-0.00109018 0.0122561 0)
(0.000140413 0.012431 0)
(0.000931497 0.011681 0)
(0.00133704 0.0102657 0)
(0.00144936 0.00845404 0)
(0.00137814 0.00647771 0)
(0.00122519 0.00449779 0)
(0.00107271 0.0025838 0)
(0.000982723 0.000701585 0)
(-0.000174541 -0.0431361 0)
(-0.000445776 -0.0430928 0)
(-0.000754733 -0.0429428 0)
(-0.00110194 -0.0426407 0)
(-0.00148382 -0.0421556 0)
(-0.00189541 -0.0414496 0)
(-0.00233079 -0.0404765 0)
(-0.00278133 -0.0391829 0)
(-0.00323441 -0.0375075 0)
(-0.00367285 -0.0353844 0)
(-0.00407434 -0.0327526 0)
(-0.00441143 -0.029565 0)
(-0.00465167 -0.0257992 0)
(-0.00475971 -0.0214727 0)
(-0.0047027 -0.0166607 0)
(-0.00445767 -0.0115097 0)
(-0.00402036 -0.006243 0)
(-0.00340891 -0.00115529 0)
(-0.00266452 0.00344957 0)
(-0.00188534 0.00724066 0)
(-0.00113118 0.00997363 0)
(-0.000477667 0.0115429 0)
(2.19816e-05 0.011978 0)
(0.000348417 0.0114411 0)
(0.000519708 0.0101749 0)
(0.000571072 0.00845103 0)
(0.000546508 0.00651388 0)
(0.00048732 0.00454066 0)
(0.000427244 0.002615 0)
(0.000391365 0.000710817 0)
(-5.48851e-05 9.38988e-07 0)
(-0.000322683 1.16034e-05 0)
(-0.000711372 2.14557e-05 0)
(-0.00136232 3.94774e-05 0)
(-0.00241691 6.93006e-05 0)
(-0.00404017 0.000115369 0)
(-0.0064115 0.000182371 0)
(-0.00970557 0.000274302 0)
(-0.0140638 0.000392891 0)
(-0.0195552 0.000535326 0)
(-0.0261303 0.000691511 0)
(-0.0335776 0.000841819 0)
(-0.0414974 0.000957032 0)
(-0.0493198 0.00100225 0)
(-0.0563722 0.000944982 0)
(-0.0619947 0.000765023 0)
(-0.0656693 0.000461585 0)
(-0.0671128 5.44173e-05 0)
(-0.0663088 -0.000421667 0)
(-0.0634737 -0.000925723 0)
(-0.0589803 -0.0014196 0)
(-0.0532724 -0.00187355 0)
(-0.0467905 -0.00226866 0)
(-0.0399225 -0.00259625 0)
(-0.0329796 -0.00285573 0)
(-0.0261978 -0.00305157 0)
(-0.019734 -0.00319172 0)
(-0.0136883 -0.00328489 0)
(-0.00811208 -0.00334042 0)
(-0.00302124 -0.00336615 0)
(-2.5096e-05 1.69895e-05 0)
(-0.000322689 3.28548e-05 0)
(-0.000711372 6.075e-05 0)
(-0.00136231 0.00011178 0)
(-0.00241692 0.000196238 0)
(-0.00404028 0.000326732 0)
(-0.00641196 0.000516611 0)
(-0.00970709 0.000777324 0)
(-0.014068 0.00111402 0)
(-0.0195658 0.00151912 0)
(-0.0261542 0.00196458 0)
(-0.0336266 0.00239523 0)
(-0.0415886 0.00272828 0)
(-0.0494741 0.00286394 0)
(-0.0566102 0.00270818 0)
(-0.0623311 0.00220129 0)
(-0.066107 0.00133922 0)
(-0.0676409 0.000177501 0)
(-0.0669045 -0.00118389 0)
(-0.0641064 -0.00262706 0)
(-0.059618 -0.00404154 0)
(-0.0538853 -0.00534165 0)
(-0.0473549 -0.006473 0)
(-0.0404213 -0.00741086 0)
(-0.0334025 -0.0081534 0)
(-0.0265401 -0.00871408 0)
(-0.0199951 -0.00911511 0)
(-0.0138708 -0.00938232 0)
(-0.00822103 -0.00954093 0)
(-0.00306191 -0.00961459 0)
(-2.4975e-05 3.00615e-05 0)
(-0.000320902 5.40197e-05 0)
(-0.000707407 9.98814e-05 0)
(-0.0013547 0.000183786 0)
(-0.00240343 0.000322656 0)
(-0.00401783 0.000537244 0)
(-0.00637673 0.000849553 0)
(-0.00965496 0.00127853 0)
(-0.0139958 0.0018329 0)
(-0.0194731 0.00250076 0)
(-0.0260472 0.00323672 0)
(-0.0335214 0.00395103 0)
(-0.0415145 0.00450814 0)
(-0.049472 0.00474348 0)
(-0.0567263 0.00450029 0)
(-0.0626049 0.00367676 0)
(-0.0665602 0.00226244 0)
(-0.0682696 0.000346143 0)
(-0.0676797 -0.00190796 0)
(-0.0649812 -0.00430408 0)
(-0.0605375 -0.00665751 0)
(-0.0547962 -0.00882405 0)
(-0.048212 -0.0107115 0)
(-0.0411908 -0.0122774 0)
(-0.0340622 -0.0135181 0)
(-0.027078 -0.0144552 0)
(-0.0204077 -0.0151259 0)
(-0.0141603 -0.0155726 0)
(-0.00839349 -0.0158379 0)
(-0.00312642 -0.015961 0)
(-2.47865e-05 4.3054e-05 0)
(-0.000318247 7.50401e-05 0)
(-0.000701516 0.000138741 0)
(-0.0013434 0.000255291 0)
(-0.00238339 0.000448201 0)
(-0.00398448 0.000746323 0)
(-0.00632438 0.0011803 0)
(-0.00957744 0.00177665 0)
(-0.0138881 0.00254796 0)
(-0.0193348 0.00347859 0)
(-0.025887 0.00450697 0)
(-0.033363 0.00551029 0)
(-0.041401 0.00630163 0)
(-0.0494644 0.00665193 0)
(-0.0568938 0.00633981 0)
(-0.0630084 0.00521719 0)
(-0.0672336 0.00326183 0)
(-0.0692088 0.000591503 0)
(-0.0688426 -0.0025671 0)
(-0.0662975 -0.0059391 0)
(-0.0619243 -0.00926212 0)
(-0.0561726 -0.0123291 0)
(-0.0495089 -0.0150063 0)
(-0.0423563 -0.0172307 0)
(-0.035062 -0.0189952 0)
(-0.0278938 -0.0203289 0)
(-0.0210335 -0.021284 0)
(-0.0145995 -0.0219204 0)
(-0.00865552 -0.0222984 0)
(-0.00322433 -0.0224736 0)
(-2.45311e-05 5.59259e-05 0)
(-0.000314732 9.58537e-05 0)
(-0.000693715 0.000177218 0)
(-0.00132843 0.000326095 0)
(-0.00235686 0.000572525 0)
(-0.00394032 0.000953401 0)
(-0.00625501 0.00150799 0)
(-0.00947467 0.00227045 0)
(-0.0137453 0.00325763 0)
(-0.0191508 0.00445101 0)
(-0.0256729 0.00577439 0)
(-0.0331497 0.00707399 0)
(-0.0412448 0.0081136 0)
(-0.0494461 0.00860018 0)
(-0.0571067 0.00824527 0)
(-0.0635357 0.00684872 0)
(-0.0681244 0.00436902 0)
(-0.070461 0.000946475 0)
(-0.0704016 -0.00313266 0)
(-0.0680701 -0.00751261 0)
(-0.0637984 -0.0118484 0)
(-0.0580376 -0.0158643 0)
(-0.0512699 -0.0193794 0)
(-0.0439414 -0.0223061 0)
(-0.0364233 -0.0246311 0)
(-0.0290055 -0.0263906 0)
(-0.021887 -0.0276516 0)
(-0.0151989 -0.0284921 0)
(-0.00901338 -0.0289915 0)
(-0.00335814 -0.0292232 0)
(-2.42093e-05 6.86477e-05 0)
(-0.000310365 0.000116401 0)
(-0.000684027 0.000215207 0)
(-0.00130983 0.000396006 0)
(-0.00232389 0.000695296 0)
(-0.00388544 0.00115793 0)
(-0.00616879 0.00183176 0)
(-0.00934684 0.00275873 0)
(-0.0135673 0.00396039 0)
(-0.018921 0.00541642 0)
(-0.0254041 0.00703791 0)
(-0.0328791 0.00864289 0)
(-0.0410413 0.00994851 0)
(-0.0494103 0.0105987 0)
(-0.0573565 0.0102351 0)
(-0.0641793 0.0085982 0)
(-0.0692285 0.00561723 0)
(-0.0720287 0.00144632 0)
(-0.0723684 -0.00357285 0)
(-0.0703194 -0.00900184 0)
(-0.0661874 -0.0144071 0)
(-0.0604233 -0.0194361 0)
(-0.0535286 -0.0238531 0)
(-0.0459785 -0.0275404 0)
(-0.0381756 -0.0304754 0)
(-0.030438 -0.0326998 0)
(-0.0229874 -0.0342956 0)
(-0.015972 -0.0353599 0)
(-0.00947507 -0.0359926 0)
(-0.00353071 -0.0362859 0)
(-2.38224e-05 8.11874e-05 0)
(-0.00030516 0.000136632 0)
(-0.000672478 0.00025261 0)
(-0.00128766 0.000464838 0)
(-0.00228459 0.000816183 0)
(-0.00381999 0.00135935 0)
(-0.00606592 0.00215076 0)
(-0.00919418 0.00324027 0)
(-0.0133544 0.00465465 0)
(-0.0186451 0.00637305 0)
(-0.0250794 0.00829619 0)
(-0.0325482 0.0102173 0)
(-0.040785 0.0118102 0)
(-0.0493483 0.0126574 0)
(-0.0576324 0.0123276 0)
(-0.0649287 0.0104931 0)
(-0.0705403 0.0070417 0)
(-0.0739148 0.00212973 0)
(-0.074757 -0.00385146 0)
(-0.0730709 -0.0103798 0)
(-0.0691261 -0.0169253 0)
(-0.0633708 -0.0230484 0)
(-0.0563286 -0.0284492 0)
(-0.0485102 -0.032972 0)
(-0.0403573 -0.0365808 0)
(-0.032224 -0.0393206 0)
(-0.0243607 -0.0412885 0)
(-0.0169373 -0.0426021 0)
(-0.0100517 -0.0433832 0)
(-0.00374624 -0.0437456 0)
(-2.3371e-05 9.35059e-05 0)
(-0.000299129 0.000156491 0)
(-0.0006591 0.000289323 0)
(-0.00126198 0.000532399 0)
(-0.00223905 0.000934849 0)
(-0.00374415 0.00155713 0)
(-0.00594665 0.00246416 0)
(-0.00901698 0.00371385 0)
(-0.0131067 0.0053388 0)
(-0.0183229 0.00731907 0)
(-0.0246976 0.00954769 0)
(-0.0321539 0.0117969 0)
(-0.0404694 0.0137017 0)
(-0.0492498 0.0147852 0)
(-0.057921 0.0145403 0)
(-0.0657707 0.0125615 0)
(-0.0720514 0.00868006 0)
(-0.0761216 0.00303971 0)
(-0.0775834 -0.00392719 0)
(-0.0763554 -0.0116137 0)
(-0.0726582 -0.0193853 0)
(-0.0669321 -0.0267027 0)
(-0.0597252 -0.033189 0)
(-0.0515905 -0.0386414 0)
(-0.0430177 -0.0430043 0)
(-0.0344052 -0.0463232 0)
(-0.02604 -0.0487107 0)
(-0.0181187 -0.0503059 0)
(-0.0107576 -0.0512552 0)
(-0.00401022 -0.0516952 0)
(-2.28562e-05 0.000105571 0)
(-0.000292291 0.000175923 0)
(-0.000643926 0.000325241 0)
(-0.00123285 0.000598503 0)
(-0.00218739 0.00105097 0)
(-0.0036581 0.00175072 0)
(-0.00581126 0.00277112 0)
(-0.0088156 0.00417826 0)
(-0.0128246 0.00601123 0)
(-0.0179543 0.00825255 0)
(-0.0242573 0.0107906 0)
(-0.0316923 0.013381 0)
(-0.040087 0.0156252 0)
(-0.0491025 0.0169902 0)
(-0.0582061 0.0168905 0)
(-0.0666886 0.0148324 0)
(-0.0737508 0.0105728 0)
(-0.0786502 0.00422448 0)
(-0.080866 -0.00375129 0)
(-0.0802097 -0.0126637 0)
(-0.0768363 -0.0217635 0)
(-0.0711708 -0.0303964 0)
(-0.0637867 -0.0380931 0)
(-0.055287 -0.0445914 0)
(-0.0462185 -0.0498081 0)
(-0.0370344 -0.0537861 0)
(-0.0280666 -0.0566524 0)
(-0.0195455 -0.0585698 0)
(-0.0116107 -0.0597115 0)
(-0.00432942 -0.0602412 0)
(-2.22791e-05 0.000117354 0)
(-0.000284664 0.000194873 0)
(-0.000627 0.000360271 0)
(-0.00120036 0.000662977 0)
(-0.00212976 0.00116425 0)
(-0.00356207 0.00193963 0)
(-0.00566006 0.00307083 0)
(-0.0085904 0.00463231 0)
(-0.0125084 0.00667027 0)
(-0.0175392 0.00917144 0)
(-0.0237572 0.0120227 0)
(-0.0311594 0.0149684 0)
(-0.0396292 0.017582 0)
(-0.0488922 0.019279 0)
(-0.0584686 0.0193946 0)
(-0.0676619 0.0173353 0)
(-0.0756235 0.0127637 0)
(-0.0814995 0.00573824 0)
(-0.0846245 -0.00326721 0)
(-0.0846766 -0.0134807 0)
(-0.0817236 -0.0240282 0)
(-0.0761643 -0.034122 0)
(-0.0685974 -0.0431809 0)
(-0.0596829 -0.0508677 0)
(-0.0500363 -0.0570614 0)
(-0.0401773 -0.0617973 0)
(-0.0304926 -0.0652162 0)
(-0.0212553 -0.0675064 0)
(-0.0126334 -0.0688711 0)
(-0.00471208 -0.0695046 0)
(-2.16411e-05 0.000128819 0)
(-0.00027627 0.000213293 0)
(-0.00060837 0.000394315 0)
(-0.0011646 0.000725639 0)
(-0.00206631 0.00127435 0)
(-0.00345632 0.00212331 0)
(-0.00549343 0.00336246 0)
(-0.00834188 0.00507475 0)
(-0.0121584 0.00731421 0)
(-0.0170774 0.0100735 0)
(-0.0231957 0.0132414 0)
(-0.0305509 0.0165566 0)
(-0.039087 0.0195718 0)
(-0.0486031 0.0216569 0)
(-0.0586859 0.0220675 0)
(-0.0686653 0.0201 0)
(-0.0776495 0.0152997 0)
(-0.0846651 0.00764228 0)
(-0.0888785 -0.00240754 0)
(-0.0898041 -0.0140042 0)
(-0.087394 -0.0261374 0)
(-0.0820052 -0.0378648 0)
(-0.0742591 -0.0484691 0)
(-0.0648802 -0.0575181 0)
(-0.0545655 -0.06484 0)
(-0.0439148 -0.0704559 0)
(-0.0333826 -0.0745189 0)
(-0.0232942 -0.0772446 0)
(-0.0138539 -0.0788702 0)
(-0.00516887 -0.0796251 0)
(-2.09435e-05 0.000139936 0)
(-0.000267133 0.000231131 0)
(-0.000588085 0.00042728 0)
(-0.00112565 0.000786316 0)
(-0.00199722 0.00138098 0)
(-0.0033411 0.00230126 0)
(-0.00531177 0.00364523 0)
(-0.00807054 0.00550441 0)
(-0.0117751 0.00794134 0)
(-0.0165691 0.0109564 0)
(-0.0225716 0.0144439 0)
(-0.0298623 0.0181428 0)
(-0.0384503 0.0215932 0)
(-0.0482174 0.0241269 0)
(-0.0588319 0.0249226 0)
(-0.069668 0.0231563 0)
(-0.0798024 0.0182312 0)
(-0.0881378 0.0100063 0)
(-0.0936485 -0.00109363 0)
(-0.0956466 -0.0141594 0)
(-0.0939347 -0.0280364 0)
(-0.0888048 -0.0416012 0)
(-0.0808957 -0.0539713 0)
(-0.071004 -0.0645939 0)
(-0.0599223 -0.0732297 0)
(-0.0483475 -0.079876 0)
(-0.0368169 -0.0846965 0)
(-0.0257202 -0.0879357 0)
(-0.015307 -0.0898694 0)
(-0.0057128 -0.0907678 0)
(-2.01873e-05 0.000150675 0)
(-0.000257276 0.000248337 0)
(-0.000566201 0.000459075 0)
(-0.00108363 0.000844846 0)
(-0.00192265 0.00148386 0)
(-0.00321673 0.00247302 0)
(-0.00511552 0.00391838 0)
(-0.00777693 0.00592011 0)
(-0.0113592 0.00854993 0)
(-0.0160142 0.0118177 0)
(-0.0218834 0.015627 0)
(-0.0290892 0.0197233 0)
(-0.0377087 0.023643 0)
(-0.0477158 0.0266901 0)
(-0.0588771 0.027971 0)
(-0.0706332 0.0265334 0)
(-0.0820482 0.0216123 0)
(-0.0919018 0.0129091 0)
(-0.0989515 0.000769872 0)
(-0.102264 -0.013854 0)
(-0.101447 -0.0296534 0)
(-0.0966958 -0.0452958 0)
(-0.0886572 -0.059696 0)
(-0.078207 -0.0721492 0)
(-0.0662502 -0.0823262 0)
(-0.0536 -0.0901889 0)
(-0.0408952 -0.0959076 0)
(-0.0286052 -0.0997575 0)
(-0.0170366 -0.102059 0)
(-0.00636063 -0.103128 0)
(-1.93738e-05 0.000161007 0)
(-0.000246729 0.000264866 0)
(-0.000542779 0.000489614 0)
(-0.00103865 0.000901066 0)
(-0.00184283 0.00158269 0)
(-0.00308354 0.00263809 0)
(-0.00490518 0.00418112 0)
(-0.00746174 0.00632065 0)
(-0.0109112 0.00913818 0)
(-0.0154132 0.0126547 0)
(-0.0211302 0.016787 0)
(-0.028227 0.0212932 0)
(-0.0368514 0.0257165 0)
(-0.0470774 0.0293446 0)
(-0.0587876 0.0312205 0)
(-0.0715169 0.030259 0)
(-0.0843429 0.0254999 0)
(-0.0959313 0.0164397 0)
(-0.104801 0.00329404 0)
(-0.10972 -0.0129734 0)
(-0.110046 -0.0308954 0)
(-0.105835 -0.0488968 0)
(-0.0977241 -0.0656441 0)
(-0.0866751 -0.08024 0)
(-0.0737247 -0.0922369 0)
(-0.0598259 -0.101546 0)
(-0.0457412 -0.108337 0)
(-0.0320392 -0.11292 0)
(-0.0190973 -0.115662 0)
(-0.00713254 -0.116938 0)
(-1.85039e-05 0.000170898 0)
(-0.00023552 0.000280673 0)
(-0.000517881 0.000518809 0)
(-0.00099084 0.000954818 0)
(-0.00175796 0.00167721 0)
(-0.00294186 0.00279602 0)
(-0.00468127 0.00443271 0)
(-0.00712565 0.00670489 0)
(-0.010432 0.00970431 0)
(-0.0147664 0.0134649 0)
(-0.020311 0.0179197 0)
(-0.0272718 0.022847 0)
(-0.0358677 0.0278069 0)
(-0.0462799 0.0320856 0)
(-0.058526 0.0346752 0)
(-0.0722671 0.0343581 0)
(-0.0866307 0.0299533 0)
(-0.100188 0.0206984 0)
(-0.111201 0.00661279 0)
(-0.118084 -0.0113745 0)
(-0.119868 -0.0316419 0)
(-0.116409 -0.0523316 0)
(-0.108315 -0.0718061 0)
(-0.0966356 -0.0889238 0)
(-0.0825628 -0.103083 0)
(-0.0672167 -0.114123 0)
(-0.0515104 -0.122206 0)
(-0.0361351 -0.127674 0)
(-0.021558 -0.130952 0)
(-0.00805472 -0.132477 0)
(-1.7578e-05 0.000180323 0)
(-0.000223681 0.000295709 0)
(-0.000491577 0.000546582 0)
(-0.00094032 0.00100596 0)
(-0.00166826 0.00176715 0)
(-0.00279209 0.00294638 0)
(-0.00444437 0.00467246 0)
(-0.00676945 0.00707171 0)
(-0.00992245 0.0102466 0)
(-0.0140744 0.0142452 0)
(-0.0194253 0.0190208 0)
(-0.0262196 0.0243779 0)
(-0.0347467 0.0299055 0)
(-0.0453001 0.0349045 0)
(-0.058051 0.0383345 0)
(-0.0728229 0.0388517 0)
(-0.0888412 0.0350329 0)
(-0.104617 0.0257971 0)
(-0.118147 0.0108835 0)
(-0.127426 -0.00888247 0)
(-0.131064 -0.031737 0)
(-0.128641 -0.0555001 0)
(-0.120693 -0.078158 0)
(-0.108367 -0.0982589 0)
(-0.0930323 -0.115001 0)
(-0.0760107 -0.128125 0)
(-0.0583979 -0.137774 0)
(-0.0410363 -0.144321 0)
(-0.0245065 -0.148254 0)
(-0.00916022 -0.150086 0)
(-1.65964e-05 0.000189257 0)
(-0.000211244 0.000309937 0)
(-0.000463937 0.00057286 0)
(-0.000887232 0.00105434 0)
(-0.001574 0.00185227 0)
(-0.00263461 0.00308874 0)
(-0.00419507 0.00489967 0)
(-0.00639397 0.00741998 0)
(-0.00938356 0.0107631 0)
(-0.0133382 0.014993 0)
(-0.0184729 0.0200856 0)
(-0.0250673 0.0258786 0)
(-0.0334784 0.0320013 0)
(-0.0441145 0.0377888 0)
(-0.0573175 0.0421912 0)
(-0.0731142 0.0437545 0)
(-0.0908869 0.0407981 0)
(-0.109141 0.0318591 0)
(-0.125614 0.0162927 0)
(-0.137812 -0.00527707 0)
(-0.143808 -0.0309805 0)
(-0.142793 -0.0582662 0)
(-0.135177 -0.0846555 0)
(-0.122207 -0.108301 0)
(-0.105464 -0.128143 0)
(-0.0865062 -0.143791 0)
(-0.0666508 -0.155353 0)
(-0.0469262 -0.163228 0)
(-0.0280562 -0.16797 0)
(-0.010492 -0.170181 0)
(-1.55592e-05 0.000197668 0)
(-0.000198245 0.000323321 0)
(-0.000435038 0.000597569 0)
(-0.000831723 0.00109984 0)
(-0.00147542 0.00193232 0)
(-0.00246986 0.0032227 0)
(-0.00393404 0.00511369 0)
(-0.00600015 0.00774862 0)
(-0.00881648 0.0112523 0)
(-0.0125589 0.015705 0)
(-0.0174541 0.0211089 0)
(-0.0238124 0.0273404 0)
(-0.0320534 0.0340813 0)
(-0.0426996 0.0407213 0)
(-0.0562777 0.0462312 0)
(-0.0730603 0.0490726 0)
(-0.0926598 0.0473041 0)
(-0.113654 0.0390182 0)
(-0.133551 0.0230599 0)
(-0.149307 -0.000286118 0)
(-0.158298 -0.0291116 0)
(-0.159179 -0.0604462 0)
(-0.152154 -0.0912276 0)
(-0.138572 -0.1191 0)
(-0.120265 -0.142678 0)
(-0.099077 -0.161398 0)
(-0.0765847 -0.175313 0)
(-0.0540425 -0.184837 0)
(-0.0323554 -0.190593 0)
(-0.0121062 -0.193281 0)
(-1.44641e-05 0.000205532 0)
(-0.000184719 0.000335817 0)
(-0.000404956 0.000620636 0)
(-0.000773941 0.00114233 0)
(-0.00137278 0.0020071 0)
(-0.00229827 0.00334789 0)
(-0.00366193 0.00531389 0)
(-0.00558894 0.00805663 0)
(-0.00822246 0.0117122 0)
(-0.0117377 0.0163785 0)
(-0.0163696 0.0220855 0)
(-0.0224532 0.0287544 0)
(-0.0304636 0.0361305 0)
(-0.0410326 0.0436804 0)
(-0.0548814 0.0504316 0)
(-0.072571 0.054801 0)
(-0.0940288 0.0545987 0)
(-0.118013 0.0474169 0)
(-0.141871 0.031443 0)
(-0.161955 0.00643025 0)
(-0.174756 -0.0257959 0)
(-0.178174 -0.0617949 0)
(-0.172092 -0.0977691 0)
(-0.157968 -0.1307 0)
(-0.137942 -0.158789 0)
(-0.114195 -0.181263 0)
(-0.0886085 -0.198094 0)
(-0.0627009 -0.209693 0)
(-0.0376048 -0.216739 0)
(-0.0140799 -0.22004 0)
(-1.33072e-05 0.000212821 0)
(-0.000170704 0.000347394 0)
(-0.000373778 0.000642005 0)
(-0.000714045 0.00118169 0)
(-0.00126636 0.00207638 0)
(-0.0021203 0.00346395 0)
(-0.00337949 0.00549968 0)
(-0.00516143 0.00834301 0)
(-0.00760294 0.0121413 0)
(-0.0108764 0.0170103 0)
(-0.0152208 0.0230099 0)
(-0.0209893 0.0301103 0)
(-0.0287028 0.0381312 0)
(-0.0390929 0.0466389 0)
(-0.0530777 0.0547591 0)
(-0.0715463 0.0609189 0)
(-0.0948361 0.0627146 0)
(-0.122029 0.0572001 0)
(-0.150433 0.0417401 0)
(-0.175772 0.0152951 0)
(-0.193424 -0.0205908 0)
(-0.200229 -0.0619883 0)
(-0.195559 -0.104132 0)
(-0.181003 -0.14313 0)
(-0.159107 -0.176668 0)
(-0.132454 -0.203739 0)
(-0.103256 -0.224212 0)
(-0.0733304 -0.238458 0)
(-0.044087 -0.247186 0)
(-0.016524 -0.251298 0)
(-1.20859e-05 0.000219507 0)
(-0.000156238 0.000358022 0)
(-0.000341589 0.000661614 0)
(-0.000652201 0.00121781 0)
(-0.00115647 0.00213999 0)
(-0.00193644 0.00357054 0)
(-0.00308748 0.0056705 0)
(-0.00471872 0.0086068 0)
(-0.00695949 0.0125378 0)
(-0.00997689 0.0175974 0)
(-0.0140097 0.0238765 0)
(-0.0194214 0.0313976 0)
(-0.0267668 0.0400645 0)
(-0.0368626 0.0495647 0)
(-0.0508165 0.0591692 0)
(-0.0698783 0.0673866 0)
(-0.0948962 0.0716632 0)
(-0.125455 0.0685081 0)
(-0.15902 0.0542919 0)
(-0.190726 0.0268396 0)
(-0.214583 -0.0129171 0)
(-0.225897 -0.0605947 0)
(-0.223249 -0.110121 0)
(-0.208412 -0.156405 0)
(-0.184501 -0.196511 0)
(-0.154592 -0.229199 0)
(-0.121235 -0.254252 0)
(-0.0865334 -0.271939 0)
(-0.0522247 -0.282927 0)
(-0.0196148 -0.288171 0)
(-1.07928e-05 0.000225563 0)
(-0.000141363 0.000367669 0)
(-0.000308474 0.000679408 0)
(-0.000588575 0.00125059 0)
(-0.0010434 0.00219773 0)
(-0.00174718 0.00366736 0)
(-0.00278667 0.00582584 0)
(-0.004262 0.00884713 0)
(-0.00629376 0.0129003 0)
(-0.00904146 0.018137 0)
(-0.0127389 0.0246796 0)
(-0.0177515 0.0326055 0)
(-0.0246542 0.0419094 0)
(-0.0343279 0.0524204 0)
(-0.0480511 0.0636047 0)
(-0.067454 0.0741412 0)
(-0.0939943 0.0814243 0)
(-0.127975 0.081463 0)
(-0.167312 0.0694797 0)
(-0.206705 0.0417285 0)
(-0.238529 -0.00201023 0)
(-0.255872 -0.0570434 0)
(-0.256012 -0.115503 0)
(-0.24106 -0.170538 0)
(-0.214985 -0.218505 0)
(-0.181521 -0.257993 0)
(-0.143508 -0.28884 0)
(-0.103176 -0.311089 0)
(-0.0627111 -0.325231 0)
(-0.0236893 -0.332228 0)
(-9.41587e-06 0.000230962 0)
(-0.000126119 0.000376309 0)
(-0.000274527 0.000695343 0)
(-0.000523343 0.00127995 0)
(-0.000927447 0.00224945 0)
(-0.00155304 0.00375414 0)
(-0.00247789 0.00596521 0)
(-0.00379253 0.00906319 0)
(-0.00560762 0.0132272 0)
(-0.00807264 0.0186262 0)
(-0.0114118 0.0254138 0)
(-0.0159834 0.0337228 0)
(-0.0223666 0.0436439 0)
(-0.0314805 0.0551641 0)
(-0.0447408 0.0679948 0)
(-0.0641591 0.0810919 0)
(-0.0918891 0.0919328 0)
(-0.12919 0.0961481 0)
(-0.174844 0.0877121 0)
(-0.223453 0.0607913 0)
(-0.265582 0.0131964 0)
(-0.291068 -0.0505656 0)
(-0.294905 -0.120025 0)
(-0.279936 -0.185553 0)
(-0.251499 -0.242843 0)
(-0.214276 -0.290326 0)
(-0.171461 -0.328546 0)
(-0.124398 -0.35702 0)
(-0.076831 -0.375502 0)
(-0.029651 -0.385904 0)
(-7.94073e-06 0.00023567 0)
(-0.000110549 0.000383921 0)
(-0.00023984 0.000709375 0)
(-0.000456684 0.0013058 0)
(-0.000808944 0.002295 0)
(-0.00135457 0.00383061 0)
(-0.00216201 0.00608819 0)
(-0.00331163 0.00925421 0)
(-0.00490302 0.0135172 0)
(-0.00707334 0.0190624 0)
(-0.0100323 0.0260735 0)
(-0.0141221 0.0347384 0)
(-0.0199091 0.0452451 0)
(-0.0283192 0.0577499 0)
(-0.0408546 0.0722548 0)
(-0.0598846 0.0881163 0)
(-0.0883185 0.103064 0)
(-0.128609 0.112579 0)
(-0.180961 0.109399 0)
(-0.240491 0.0850527 0)
(-0.296007 0.0341685 0)
(-0.332755 -0.0401229 0)
(-0.34126 -0.123563 0)
(-0.326108 -0.201485 0)
(-0.294977 -0.269902 0)
(-0.253528 -0.326025 0)
(-0.207046 -0.373191 0)
(-0.149533 -0.411818 0)
(-0.095495 -0.433603 0)
(-0.0396741 -0.454035 0)
(-6.34786e-06 0.000239662 0)
(-9.46944e-05 0.000390476 0)
(-0.000204509 0.000721459 0)
(-0.000388777 0.00132807 0)
(-0.000688204 0.00233426 0)
(-0.00115229 0.00389656 0)
(-0.00183987 0.00619439 0)
(-0.00282063 0.00941953 0)
(-0.00418201 0.0137689 0)
(-0.00604662 0.0194432 0)
(-0.00860515 0.0266538 0)
(-0.0121745 0.0356414 0)
(-0.0172902 0.0466904 0)
(-0.024851 0.0601294 0)
(-0.0363748 0.0762867 0)
(-0.0545333 0.0950592 0)
(-0.0830118 0.114621 0)
(-0.125647 0.130664 0)
(-0.184759 0.134903 0)
(-0.256968 0.115742 0)
(-0.32994 0.0630475 0)
(-0.382878 -0.0241088 0)
(-0.396734 -0.126518 0)
(-0.380441 -0.218083 0)
(-0.345569 -0.301611 0)
(-0.290025 -0.366855 0)
(-0.217916 -0.420932 0)
(-0.140973 -0.488554 0)
(-0.0765828 -0.493535 0)
(-0.0343733 -0.528308 0)
(-4.6104e-06 0.000242901 0)
(-7.86007e-05 0.000395955 0)
(-0.000168632 0.000731564 0)
(-0.00031981 0.0013467 0)
(-0.000565566 0.0023671 0)
(-0.000946769 0.00395178 0)
(-0.00151239 0.00628346 0)
(-0.00232098 0.00955854 0)
(-0.00344683 0.0139814 0)
(-0.00499599 0.0197662 0)
(-0.00713581 0.0271498 0)
(-0.010149 0.0364218 0)
(-0.0145228 0.0479575 0)
(-0.0210928 0.0622534 0)
(-0.0313025 0.0799794 0)
(-0.04803 0.101732 0)
(-0.0757117 0.12631 0)
(-0.11963 0.150151 0)
(-0.185027 0.164444 0)
(-0.271464 0.154238 0)
(-0.366966 0.102943 0)
(-0.444785 0.000236868 0)
(-0.463546 -0.131464 0)
(-0.43892 -0.23482 0)
(-0.379736 -0.357731 0)
(-0.245783 -0.436923 0)
(-0.111396 -0.564995 0)
(-0.0190756 -0.499537 0)
(-0.0190517 -0.50286 0)
(0.00537182 -0.548971 0)
(-2.69636e-06 0.00024535 0)
(-6.23108e-05 0.000400344 0)
(-0.000132308 0.000739664 0)
(-0.000249972 0.00136164 0)
(-0.000441365 0.00239343 0)
(-0.000738578 0.0039961 0)
(-0.0011805 0.00635511 0)
(-0.00181412 0.00967071 0)
(-0.00269977 0.0141536 0)
(-0.00392513 0.0200295 0)
(-0.00563029 0.0275574 0)
(-0.00805557 0.0370702 0)
(-0.0116232 0.0490256 0)
(-0.0170718 0.0640744 0)
(-0.025663 0.0832106 0)
(-0.0403274 0.107917 0)
(-0.0662077 0.137732 0)
(-0.109824 0.170569 0)
(-0.180208 0.197968 0)
(-0.28176 0.201902 0)
(-0.405164 0.158295 0)
(-0.524236 0.0400855 0)
(-0.546974 -0.148035 0)
(-0.479912 -0.271054 0)
(-0.396505 -0.442404 0)
(-0.320606 -0.506525 0)
(-0.275084 -0.602336 0)
(-0.202927 -0.600699 0)
(-0.112767 -0.605432 0)
(-0.0362432 -0.612383 0)
(-5.68522e-07 0.000246978 0)
(-4.58679e-05 0.000403626 0)
(-9.56366e-05 0.000745734 0)
(-0.000179452 0.00137284 0)
(-0.000315937 0.00241318 0)
(-0.00052828 0.00402938 0)
(-0.000845115 0.00640909 0)
(-0.00130155 0.00975564 0)
(-0.0019432 0.0142846 0)
(-0.0028379 0.0202315 0)
(-0.00409513 0.0278729 0)
(-0.00590562 0.0375784 0)
(-0.00861124 0.0498759 0)
(-0.0128256 0.0655506 0)
(-0.0195131 0.0858499 0)
(-0.031405 0.113383 0)
(-0.0543922 0.148363 0)
(-0.0954909 0.191196 0)
(-0.168368 0.235018 0)
(-0.281882 0.258677 0)
(-0.42985 0.239575 0)
(-0.624156 0.172401 0)
(-0.752695 -0.139031 0)
(-0.671443 -0.389308 0)
(-0.501491 -0.498946 0)
(-0.381519 -0.582662 0)
(-0.284596 -0.668286 0)
(-0.187518 -0.693733 0)
(-0.113625 -0.692018 0)
(-0.0410872 -0.694454 0)
(1.81758e-06 0.000247754 0)
(-2.93154e-05 0.000405828 0)
(-5.87179e-05 0.000749836 0)
(-0.000108442 0.0013804 0)
(-0.000189623 0.0024265 0)
(-0.000316454 0.00405188 0)
(-0.000507187 0.0064458 0)
(-0.000784787 0.00981383 0)
(-0.00117961 0.0143752 0)
(-0.00173843 0.0203729 0)
(-0.00253747 0.028097 0)
(-0.00371185 0.0379465 0)
(-0.00551024 0.0505061 0)
(-0.00840071 0.0666777 0)
(-0.0129544 0.0878231 0)
(-0.0212458 0.118025 0)
(-0.040362 0.157763 0)
(-0.0756626 0.211386 0)
(-0.145432 0.274961 0)
(-0.239112 0.325891 0)
(-0.527368 0.33945 0)
(-0.686239 0.290508 0)
(-0.959682 -0.0724335 0)
(-0.962499 -0.561683 0)
(-0.547784 -0.635987 0)
(-0.451968 -0.74147 0)
(-0.314557 -0.754222 0)
(-0.209333 -0.775738 0)
(-0.118595 -0.778734 0)
(-0.042687 -0.779145 0)
(-4.22735e-06 0.000245822 0)
(-1.4087e-05 0.000436399 0)
(-2.35628e-05 0.000805801 0)
(-3.97432e-05 0.00148122 0)
(-6.60676e-05 0.00259787 0)
(-0.000107889 0.00432462 0)
(-0.000172834 0.00685134 0)
(-0.000271328 0.0103776 0)
(-0.000417855 0.0151098 0)
(-0.000636752 0.0212805 0)
(-0.000969655 0.0291782 0)
(-0.00149276 0.0392208 0)
(-0.00235505 0.0520225 0)
(-0.00387202 0.0685644 0)
(-0.00620911 0.0900487 0)
(-0.0100748 0.122493 0)
(-0.0242216 0.164851 0)
(-0.0382817 0.227628 0)
(-0.102066 0.310363 0)
(-0.25094 0.409027 0)
(-0.501264 0.423977 0)
(-0.703799 0.336653 0)
(-0.291841 0.0352694 0)
(-0.41277 -0.488003 0)
(-0.561569 -0.783588 0)
(-0.56458 -0.813246 0)
(-0.424878 -0.858455 0)
(-0.280417 -0.891027 0)
(-0.155726 -0.870543 0)
(-0.061977 -0.890306 0)
(0.00176558 -0.00336856 0)
(0.00673443 -0.00334961 0)
(0.0121916 -0.00330271 0)
(0.0181248 -0.00322006 0)
(0.0244937 -0.00309292 0)
(0.0312109 -0.00291209 0)
(0.0381376 -0.00266934 0)
(0.0450558 -0.00235924 0)
(0.0516754 -0.00198066 0)
(0.0576246 -0.00154012 0)
(0.0624725 -0.00105375 0)
(0.0657703 -0.000548606 0)
(0.067118 -6.12595e-05 0)
(0.0662518 0.000367258 0)
(0.0631239 0.000699658 0)
(0.0579508 0.000911642 0)
(0.0511983 0.000998658 0)
(0.0435032 0.000976488 0)
(0.0355466 0.000875491 0)
(0.0279338 0.000730885 0)
(0.0211108 0.00057388 0)
(0.015336 0.000426667 0)
(0.0106952 0.00030156 0)
(0.00714475 0.000202958 0)
(0.0045573 0.000130011 0)
(0.00276339 7.91281e-05 0)
(0.00158246 4.56709e-05 0)
(0.000844604 2.50743e-05 0)
(0.000402138 1.34602e-05 0)
(0.0001307 8.03777e-06 0)
(0.00178948 -0.0096222 0)
(0.00682494 -0.00956756 0)
(0.0123544 -0.00943305 0)
(0.0183654 -0.00919635 0)
(0.0248149 -0.00883212 0)
(0.0316134 -0.00831465 0)
(0.0386178 -0.00762003 0)
(0.0456048 -0.00673232 0)
(0.0522781 -0.00564833 0)
(0.0582587 -0.0043866 0)
(0.0631096 -0.00299354 0)
(0.0663785 -0.0015471 0)
(0.0676659 -0.00015305 0)
(0.066714 0.00107054 0)
(0.0634862 0.0020161 0)
(0.0582127 0.0026149 0)
(0.0513719 0.00285557 0)
(0.0436082 0.00278525 0)
(0.0356043 0.00249213 0)
(0.0279627 0.00207714 0)
(0.0211239 0.00162894 0)
(0.0153414 0.00121 0)
(0.0106971 0.000854676 0)
(0.00714538 0.000574978 0)
(0.00455746 0.000368222 0)
(0.00276341 0.000224075 0)
(0.00158246 0.000129321 0)
(0.000844604 7.09961e-05 0)
(0.000402146 3.81112e-05 0)
(0.000130705 2.2759e-05 0)
(0.00182709 -0.0159739 0)
(0.00696837 -0.0158825 0)
(0.0126126 -0.0156577 0)
(0.0187455 -0.0152617 0)
(0.0253204 -0.0146526 0)
(0.0322424 -0.0137876 0)
(0.0393607 -0.0126269 0)
(0.0464422 -0.0111444 0)
(0.0531792 -0.00933547 0)
(0.0591809 -0.00723219 0)
(0.0640011 -0.00491341 0)
(0.067184 -0.00251044 0)
(0.0683354 -0.000200319 0)
(0.0672131 0.00182005 0)
(0.0638043 0.00337383 0)
(0.0583654 0.00434987 0)
(0.0513953 0.00473304 0)
(0.043548 0.00460471 0)
(0.0355037 0.00411243 0)
(0.0278541 0.00342308 0)
(0.0210267 0.00268201 0)
(0.0152638 0.00199104 0)
(0.0106402 0.00140585 0)
(0.00710628 0.00094557 0)
(0.00453219 0.000605481 0)
(0.002748 0.00036843 0)
(0.00157362 0.000212627 0)
(0.000839889 0.000116728 0)
(0.000399912 6.26611e-05 0)
(0.000129985 3.7421e-05 0)
(0.00188419 -0.0224922 0)
(0.00718612 -0.0223618 0)
(0.0130048 -0.0220415 0)
(0.0193222 -0.0214774 0)
(0.0260872 -0.02061 0)
(0.033196 -0.0193786 0)
(0.0404862 -0.0177275 0)
(0.0477097 -0.0156209 0)
(0.0545412 -0.013054 0)
(0.0605724 -0.010075 0)
(0.0653434 -0.00679855 0)
(0.0683933 -0.00341372 0)
(0.0693367 -0.000172837 0)
(0.0679557 0.00264704 0)
(0.0642741 0.00480016 0)
(0.0585875 0.00613697 0)
(0.0514253 0.0066439 0)
(0.0434549 0.0064412 0)
(0.0353518 0.00573825 0)
(0.0276914 0.00476809 0)
(0.0208816 0.00373151 0)
(0.0151483 0.00276815 0)
(0.0105554 0.00195372 0)
(0.00704818 0.00131375 0)
(0.00449464 0.000841136 0)
(0.0027251 0.00051179 0)
(0.00156049 0.000295354 0)
(0.000832887 0.000162142 0)
(0.000396594 8.70422e-05 0)
(0.000128915 5.19845e-05 0)
(0.00196241 -0.0292477 0)
(0.00748327 -0.0290753 0)
(0.0135395 -0.0286521 0)
(0.0201089 -0.027907 0)
(0.0271323 -0.0267617 0)
(0.0344946 -0.0251368 0)
(0.0420174 -0.0229604 0)
(0.0494315 -0.0201875 0)
(0.0563879 -0.0168153 0)
(0.0624545 -0.0129116 0)
(0.0671529 -0.00863229 0)
(0.0700167 -0.00423016 0)
(0.0706736 -3.83016e-05 0)
(0.0689404 0.00358386 0)
(0.0648906 0.00632292 0)
(0.0588729 0.00799674 0)
(0.0514564 0.00860087 0)
(0.043325 0.00830086 0)
(0.0351465 0.00737135 0)
(0.0274736 0.00611155 0)
(0.0206883 0.00477594 0)
(0.0149948 0.00353973 0)
(0.0104431 0.00249696 0)
(0.00697118 0.00167856 0)
(0.0044449 0.00107455 0)
(0.00269478 0.000653759 0)
(0.00154309 0.000377272 0)
(0.000823618 0.000207109 0)
(0.000392202 0.000111183 0)
(0.000127497 6.64071e-05 0)
(0.00206315 -0.0363169 0)
(0.00786693 -0.0360986 0)
(0.0142296 -0.0355626 0)
(0.0211235 -0.034619 0)
(0.0284794 -0.0331693 0)
(0.0361667 -0.0311145 0)
(0.0439862 -0.028366 0)
(0.0516413 -0.0248704 0)
(0.058752 -0.0206298 0)
(0.0648558 -0.0157365 0)
(0.0694519 -0.010395 0)
(0.072068 -0.00492978 0)
(0.0723512 0.000238882 0)
(0.0701644 0.00466478 0)
(0.0656465 0.00797088 0)
(0.0592129 0.00994982 0)
(0.0514813 0.0106163 0)
(0.0431532 0.0101895 0)
(0.0348849 0.00901321 0)
(0.0271997 0.00745271 0)
(0.0204467 0.00581372 0)
(0.0148035 0.00430418 0)
(0.0103033 0.00303429 0)
(0.00687547 0.00203906 0)
(0.00438311 0.0013051 0)
(0.0026571 0.000793957 0)
(0.00152149 0.00045816 0)
(0.000812104 0.000251507 0)
(0.000386747 0.000135016 0)
(0.000125738 8.0648e-05 0)
(0.00218893 -0.043784 0)
(0.00834609 -0.0435144 0)
(0.0150914 -0.0428523 0)
(0.0223897 -0.0416875 0)
(0.0301592 -0.0398993 0)
(0.0382495 -0.0373676 0)
(0.0464343 -0.0339865 0)
(0.0543826 -0.0296958 0)
(0.0616757 -0.0245061 0)
(0.0678134 -0.0185411 0)
(0.0722686 -0.0120629 0)
(0.0745641 -0.00547814 0)
(0.0743747 0.000696711 0)
(0.0716237 0.00592644 0)
(0.0665323 0.00977368 0)
(0.0595967 0.0120167 0)
(0.0514907 0.012702 0)
(0.0429333 0.0121122 0)
(0.0345636 0.0106648 0)
(0.026868 0.00879052 0)
(0.0201563 0.00684315 0)
(0.0145746 0.00505986 0)
(0.0101363 0.00356438 0)
(0.00676127 0.00239433 0)
(0.00430941 0.00153218 0)
(0.00261219 0.000932008 0)
(0.00149573 0.000537801 0)
(0.000798378 0.000295219 0)
(0.000380244 0.00015848 0)
(0.00012364 9.46712e-05 0)
(0.00234299 -0.051742 0)
(0.0089325 -0.0514145 0)
(0.016146 -0.05061 0)
(0.0239384 -0.0491952 0)
(0.0322115 -0.0470251 0)
(0.0407904 -0.0439568 0)
(0.0494148 -0.0398669 0)
(0.0577107 -0.0346901 0)
(0.065212 -0.0284507 0)
(0.0713735 -0.0213122 0)
(0.0756373 -0.0136065 0)
(0.0775251 -0.00583526 0)
(0.0767499 0.00137878 0)
(0.0733125 0.00740837 0)
(0.0675354 0.0117621 0)
(0.0600105 0.0142176 0)
(0.0514731 0.0148688 0)
(0.0426577 0.0140732 0)
(0.0341785 0.0123265 0)
(0.0264771 0.0101236 0)
(0.0198167 0.00786238 0)
(0.014308 0.00580506 0)
(0.00994241 0.00408591 0)
(0.00662882 0.00274342 0)
(0.004224 0.00175516 0)
(0.00256015 0.00106753 0)
(0.0014659 0.000615972 0)
(0.000782478 0.000338124 0)
(0.000372712 0.000181513 0)
(0.000121212 0.000108441 0)
(0.00252927 -0.0602974 0)
(0.00964135 -0.0599033 0)
(0.01742 -0.0589355 0)
(0.0258078 -0.0572346 0)
(0.0346862 -0.0546284 0)
(0.043849 -0.050949 0)
(0.0529941 -0.0460554 0)
(0.0616944 -0.0398799 0)
(0.0694266 -0.0324669 0)
(0.075592 -0.0240313 0)
(0.0795995 -0.0149894 0)
(0.0809741 -0.00595418 0)
(0.0794817 0.00233421 0)
(0.075222 0.00915357 0)
(0.06864 0.0139682 0)
(0.0604375 0.0165727 0)
(0.0514152 0.0171268 0)
(0.0423177 0.0160759 0)
(0.0337252 0.0139981 0)
(0.0260249 0.0114503 0)
(0.0194276 0.00886945 0)
(0.0140041 0.00653808 0)
(0.00972194 0.00459757 0)
(0.00647844 0.00308541 0)
(0.00412708 0.00197346 0)
(0.00250112 0.00120016 0)
(0.00143206 0.000692459 0)
(0.000764447 0.000380101 0)
(0.000364172 0.000204048 0)
(0.000118457 0.000121921 0)
(0.00275275 -0.0695717 0)
(0.0104913 -0.0691003 0)
(0.0189469 -0.0679433 0)
(0.0280465 -0.0659113 0)
(0.0376456 -0.0628014 0)
(0.0474995 -0.0584187 0)
(0.0572542 -0.052604 0)
(0.0664184 -0.0452914 0)
(0.0743993 -0.0365539 0)
(0.0805364 -0.0266723 0)
(0.0842032 -0.0161662 0)
(0.0849361 -0.00577885 0)
(0.0825739 0.00361866 0)
(0.07734 0.0112089 0)
(0.0698262 0.0164251 0)
(0.0608576 0.0191012 0)
(0.0513014 0.0194848 0)
(0.0419035 0.0181226 0)
(0.0331985 0.0156786 0)
(0.0255097 0.0127685 0)
(0.0189885 0.00986225 0)
(0.0136632 0.00725714 0)
(0.00947529 0.00509805 0)
(0.00631047 0.00341942 0)
(0.00401891 0.00218649 0)
(0.00243526 0.00132953 0)
(0.00139431 0.000767061 0)
(0.000744333 0.00042104 0)
(0.000354647 0.000226025 0)
(0.000115386 0.000135071 0)
(0.00301939 -0.0797052 0)
(0.0115058 -0.0791434 0)
(0.0207682 -0.0777648 0)
(0.0307141 -0.0753459 0)
(0.0411667 -0.0716485 0)
(0.0518332 -0.0664482 0)
(0.0622959 -0.0595682 0)
(0.0719853 -0.0509495 0)
(0.080226 -0.040705 0)
(0.0862865 -0.0291997 0)
(0.0895039 -0.0170799 0)
(0.0894388 -0.00524245 0)
(0.0860276 0.00529607 0)
(0.0796494 0.0136255 0)
(0.071069 0.0191668 0)
(0.0612472 0.0218214 0)
(0.0511141 0.0219498 0)
(0.0414044 0.020214 0)
(0.0325932 0.0173662 0)
(0.0249293 0.0140757 0)
(0.0184993 0.0108384 0)
(0.0132854 0.00796039 0)
(0.00920294 0.00558601 0)
(0.0061253 0.00374451 0)
(0.00389977 0.00239366 0)
(0.00236274 0.0014553 0)
(0.00135276 0.000839568 0)
(0.000722193 0.000460828 0)
(0.000344161 0.000247385 0)
(0.000112007 0.000147858 0)
(0.00333711 -0.0908633 0)
(0.0127138 -0.0901946 0)
(0.0229357 -0.0885543 0)
(0.0338853 -0.0856787 0)
(0.0453451 -0.0812899 0)
(0.0569629 -0.075131 0)
(0.0682427 -0.0670086 0)
(0.0785203 -0.0568776 0)
(0.0870225 -0.0449059 0)
(0.0929363 -0.0315656 0)
(0.0955646 -0.0176596 0)
(0.0945098 -0.00426585 0)
(0.0898399 0.00743971 0)
(0.082127 0.0164592 0)
(0.0723379 0.0222283 0)
(0.0615784 0.0247503 0)
(0.0508333 0.024527 0)
(0.0408087 0.0223494 0)
(0.0319037 0.0190581 0)
(0.0242819 0.0153689 0)
(0.0179597 0.0117955 0)
(0.0128714 0.00864598 0)
(0.00890541 0.00606013 0)
(0.00592337 0.00405982 0)
(0.00376995 0.0025944 0)
(0.00228377 0.00157711 0)
(0.00130751 0.000909779 0)
(0.000698085 0.000499354 0)
(0.000332745 0.00026807 0)
(0.000108329 0.00016025 0)
(0.00371541 -0.103242 0)
(0.0141518 -0.102445 0)
(0.0255141 -0.100493 0)
(0.0376526 -0.0970741 0)
(0.0502993 -0.0918648 0)
(0.0630277 -0.0845729 0)
(0.075246 -0.0749907 0)
(0.0861756 -0.0630963 0)
(0.0949273 -0.0491318 0)
(0.100596 -0.0337067 0)
(0.102456 -0.0178161 0)
(0.100177 -0.00275229 0)
(0.0940021 0.0101338 0)
(0.0847417 0.0197707 0)
(0.0735954 0.0256445 0)
(0.0618192 0.0279028 0)
(0.050437 0.0272193 0)
(0.040104 0.0245264 0)
(0.0311242 0.0207505 0)
(0.0235656 0.0166447 0)
(0.0173695 0.0127307 0)
(0.0124215 0.009312 0)
(0.00858328 0.00651912 0)
(0.00570516 0.00436448 0)
(0.0036298 0.00278818 0)
(0.00219854 0.00169464 0)
(0.00125868 0.000977506 0)
(0.000672076 0.000536514 0)
(0.00032043 0.00028802 0)
(0.000104363 0.000172212 0)
(0.00416655 -0.117074 0)
(0.0158656 -0.116124 0)
(0.0285841 -0.113796 0)
(0.0421316 -0.109725 0)
(0.0561759 -0.103534 0)
(0.0701986 -0.0948935 0)
(0.0834902 -0.0835841 0)
(0.0951345 -0.0696205 0)
(0.104105 -0.0533439 0)
(0.109395 -0.0355386 0)
(0.110258 -0.0174383 0)
(0.106467 -0.000589661 0)
(0.0984966 0.0134745 0)
(0.0874522 0.0236252 0)
(0.0747961 0.0294496 0)
(0.0619328 0.0312907 0)
(0.0499013 0.0300265 0)
(0.0392772 0.0267405 0)
(0.0302491 0.0224384 0)
(0.0227786 0.0178991 0)
(0.0167288 0.0136414 0)
(0.0119365 0.00995649 0)
(0.00823725 0.00696165 0)
(0.00547121 0.00465764 0)
(0.00347968 0.00297445 0)
(0.00210729 0.00180755 0)
(0.00120642 0.00104256 0)
(0.000644238 0.000572206 0)
(0.00030725 0.000307184 0)
(0.000100121 0.000183713 0)
(0.00470586 -0.132639 0)
(0.0179128 -0.131502 0)
(0.0322475 -0.12872 0)
(0.0474668 -0.123859 0)
(0.0631573 -0.116486 0)
(0.0786867 -0.106229 0)
(0.0932016 -0.0928636 0)
(0.10562 -0.0764584 0)
(0.114753 -0.0574849 0)
(0.119481 -0.0369511 0)
(0.119053 -0.0163867 0)
(0.113399 0.00236684 0)
(0.103294 0.0175719 0)
(0.0902045 0.028092 0)
(0.0758855 0.0336762 0)
(0.0618776 0.034922 0)
(0.0492004 0.032945 0)
(0.0383151 0.0289849 0)
(0.0292729 0.0241159 0)
(0.0219195 0.0191276 0)
(0.0160379 0.0145244 0)
(0.0114169 0.0105774 0)
(0.00786805 0.00738643 0)
(0.00522209 0.00493846 0)
(0.00331999 0.00315268 0)
(0.00201026 0.00191555 0)
(0.00115086 0.00110476 0)
(0.000614645 0.000606329 0)
(0.000293242 0.000325506 0)
(9.56155e-05 0.000194724 0)
(0.00535293 -0.15028 0)
(0.0203671 -0.148915 0)
(0.0366334 -0.145574 0)
(0.0538406 -0.139751 0)
(0.0714719 -0.130941 0)
(0.0887536 -0.118734 0)
(0.104657 -0.102908 0)
(0.117901 -0.0836072 0)
(0.127107 -0.0614734 0)
(0.131029 -0.0377999 0)
(0.128935 -0.0144846 0)
(0.120984 0.00627699 0)
(0.108347 0.0225511 0)
(0.0929294 0.0332441 0)
(0.076799 0.0383536 0)
(0.0616072 0.0387998 0)
(0.0483069 0.0359674 0)
(0.0372045 0.0312506 0)
(0.0281905 0.0257757 0)
(0.0209872 0.0203254 0)
(0.0152972 0.0153766 0)
(0.0108639 0.0111729 0)
(0.00747649 0.00779222 0)
(0.00495842 0.00520615 0)
(0.00315114 0.0033224 0)
(0.00190771 0.00201832 0)
(0.00109215 0.00116395 0)
(0.00058338 0.000638791 0)
(0.000278442 0.000342933 0)
(9.08607e-05 0.000205215 0)
(0.00613337 -0.170415 0)
(0.0233235 -0.168766 0)
(0.0419076 -0.164735 0)
(0.0614844 -0.157725 0)
(0.0814057 -0.147158 0)
(0.100723 -0.132586 0)
(0.118196 -0.1138 0)
(0.132306 -0.0910489 0)
(0.141449 -0.0651952 0)
(0.144237 -0.0378965 0)
(0.139998 -0.0115162 0)
(0.129219 0.011342 0)
(0.113589 0.0285528 0)
(0.0955383 0.0391558 0)
(0.0774604 0.0435054 0)
(0.0610703 0.0429209 0)
(0.0471927 0.0390814 0)
(0.0359325 0.0335261 0)
(0.0269974 0.0274095 0)
(0.0199809 0.021487 0)
(0.0145075 0.0161948 0)
(0.0102782 0.0117408 0)
(0.0070635 0.00817775 0)
(0.00468087 0.00545993 0)
(0.00297358 0.00348312 0)
(0.00179993 0.00211559 0)
(0.00103046 0.00121994 0)
(0.000550529 0.000669505 0)
(0.00026289 0.000359423 0)
(8.58702e-05 0.000215159 0)
(0.00708135 -0.193565 0)
(0.0269074 -0.191558 0)
(0.0482861 -0.18666 0)
(0.0706951 -0.178171 0)
(0.0933186 -0.165438 0)
(0.114995 -0.147979 0)
(0.134234 -0.12562 0)
(0.149232 -0.0987444 0)
(0.158115 -0.068494 0)
(0.159336 -0.0369963 0)
(0.152337 -0.00719947 0)
(0.138075 0.0178 0)
(0.118921 0.0357333 0)
(0.0979196 0.0458995 0)
(0.0777809 0.0491469 0)
(0.0602112 0.0472737 0)
(0.0458291 0.0422697 0)
(0.0344871 0.035797 0)
(0.02569 0.0290078 0)
(0.0189006 0.0226067 0)
(0.0136696 0.0169754 0)
(0.00966123 0.0122792 0)
(0.00663005 0.0085418 0)
(0.00439017 0.00569905 0)
(0.00278778 0.00363439 0)
(0.0016872 0.00220708 0)
(0.000965957 0.00127261 0)
(0.00051618 0.000698385 0)
(0.000246633 0.000374931 0)
(8.06607e-05 0.000224533 0)
(0.00824316 -0.220388 0)
(0.0312893 -0.217919 0)
(0.0560577 -0.211914 0)
(0.0818603 -0.201558 0)
(0.107668 -0.186129 0)
(0.132067 -0.165134 0)
(0.153277 -0.138451 0)
(0.169163 -0.106629 0)
(0.177514 -0.071159 0)
(0.176593 -0.0347756 0)
(0.166045 -0.00119598 0)
(0.147494 0.0259357 0)
(0.124207 0.0442642 0)
(0.0999349 0.0535433 0)
(0.077659 0.0552826 0)
(0.0589706 0.0518375 0)
(0.0441879 0.0455095 0)
(0.0328575 0.0380465 0)
(0.0242653 0.03056 0)
(0.0177464 0.0236785 0)
(0.012785 0.0177151 0)
(0.00901418 0.012786 0)
(0.00617718 0.00888322 0)
(0.00408704 0.00592283 0)
(0.00259424 0.00377578 0)
(0.00156983 0.00229254 0)
(0.000898808 0.00132178 0)
(0.000480425 0.000725353 0)
(0.000229712 0.000389406 0)
(7.52504e-05 0.000233315 0)
(0.00968604 -0.251731 0)
(0.0367116 -0.248649 0)
(0.06562 -0.24119 0)
(0.0954911 -0.228434 0)
(0.125032 -0.209623 0)
(0.152545 -0.184284 0)
(0.175937 -0.152368 0)
(0.192682 -0.114605 0)
(0.200136 -0.0729085 0)
(0.196315 -0.0308156 0)
(0.181194 0.00696163 0)
(0.157361 0.0360861 0)
(0.12926 0.0543273 0)
(0.101414 0.0621425 0)
(0.0769801 0.0619001 0)
(0.0572871 0.0565796 0)
(0.0422425 0.0487712 0)
(0.0310348 0.0402548 0)
(0.0227221 0.0320545 0)
(0.0165197 0.0246958 0)
(0.0118553 0.0184104 0)
(0.00833858 0.0132594 0)
(0.00570606 0.00920086 0)
(0.0037723 0.00613057 0)
(0.00239347 0.00390688 0)
(0.00144813 0.00237174 0)
(0.000829201 0.00136734 0)
(0.000443367 0.000750335 0)
(0.000212174 0.000402815 0)
(6.9658e-05 0.000241481 0)
(0.0115142 -0.28873 0)
(0.043545 -0.284785 0)
(0.0775452 -0.275339 0)
(0.112277 -0.259433 0)
(0.146141 -0.236337 0)
(0.177162 -0.205668 0)
(0.202947 -0.167441 0)
(0.220502 -0.122542 0)
(0.226589 -0.073375 0)
(0.218859 -0.0245564 0)
(0.197818 0.0178087 0)
(0.167493 0.0486466 0)
(0.133827 0.0661084 0)
(0.102151 0.0717324 0)
(0.0756178 0.0689668 0)
(0.0550986 0.0614539 0)
(0.0399691 0.0520191 0)
(0.0290126 0.0423999 0)
(0.0210603 0.0334791 0)
(0.0152222 0.0256522 0)
(0.0108825 0.0190577 0)
(0.00763612 0.0136974 0)
(0.00521793 0.00949365 0)
(0.00344679 0.00632164 0)
(0.00218604 0.00402731 0)
(0.00132245 0.00244444 0)
(0.000757329 0.00140916 0)
(0.000405108 0.000773261 0)
(0.000194068 0.000415121 0)
(6.39031e-05 0.000249014 0)
(0.0139136 -0.333016 0)
(0.0524334 -0.327709 0)
(0.0926962 -0.315377 0)
(0.133166 -0.295239 0)
(0.171906 -0.266668 0)
(0.206768 -0.229518 0)
(0.235161 -0.183744 0)
(0.253491 -0.130289 0)
(0.257646 -0.0720687 0)
(0.244642 -0.0152415 0)
(0.215894 0.0320765 0)
(0.177594 0.0640755 0)
(0.137578 0.0797853 0)
(0.101904 0.0823172 0)
(0.0734363 0.0764239 0)
(0.0523452 0.0663994 0)
(0.0373483 0.055211 0)
(0.0267874 0.0444576 0)
(0.0192814 0.0348209 0)
(0.0138566 0.0265409 0)
(0.00986905 0.0196537 0)
(0.0069086 0.0140982 0)
(0.00471406 0.00976058 0)
(0.00311138 0.00649546 0)
(0.00197248 0.00413673 0)
(0.00119311 0.00251045 0)
(0.000683386 0.00144711 0)
(0.000365748 0.000794072 0)
(0.00017544 0.000426287 0)
(5.801e-05 0.000255897 0)
(0.0173411 -0.387327 0)
(0.0647908 -0.37922 0)
(0.112325 -0.362333 0)
(0.159507 -0.336548 0)
(0.203417 -0.300846 0)
(0.242264 -0.256053 0)
(0.273549 -0.201378 0)
(0.292694 -0.137715 0)
(0.294321 -0.0683708 0)
(0.274148 -0.00183535 0)
(0.235281 0.0506909 0)
(0.187221 0.0828876 0)
(0.140078 0.0955062 0)
(0.10039 0.0938537 0)
(0.0702946 0.0841803 0)
(0.0489724 0.071338 0)
(0.0343666 0.0582983 0)
(0.0243595 0.0464017 0)
(0.0173889 0.0360665 0)
(0.0124263 0.0273553 0)
(0.00881759 0.0201949 0)
(0.00615803 0.0144601 0)
(0.00419586 0.0100007 0)
(0.00276701 0.00665148 0)
(0.00175339 0.00423481 0)
(0.00106048 0.00256958 0)
(0.000607575 0.0014811 0)
(0.000325396 0.00081271 0)
(0.000156342 0.000436285 0)
(5.20066e-05 0.000262116 0)
(0.0231128 -0.457675 0)
(0.082535 -0.44045 0)
(0.136096 -0.416562 0)
(0.193301 -0.384109 0)
(0.241521 -0.338498 0)
(0.284369 -0.285684 0)
(0.319181 -0.220457 0)
(0.339347 -0.144843 0)
(0.338051 -0.0614542 0)
(0.307956 0.0171749 0)
(0.255623 0.0748347 0)
(0.195713 0.105635 0)
(0.140782 0.113358 0)
(0.0972944 0.106234 0)
(0.0660531 0.092107 0)
(0.0449353 0.0761743 0)
(0.0310187 0.0612269 0)
(0.0217333 0.048205 0)
(0.0153884 0.0372025 0)
(0.0109357 0.028089 0)
(0.00773136 0.0206783 0)
(0.00538661 0.0147814 0)
(0.00366479 0.0102131 0)
(0.00241463 0.0067892 0)
(0.00152938 0.00432128 0)
(0.000924923 0.00262165 0)
(0.000530108 0.00151103 0)
(0.000284164 0.000829127 0)
(0.000136826 0.000445089 0)
(4.59225e-05 0.000267656 0)
(0.0222394 -0.542995 0)
(0.066516 -0.501213 0)
(0.125812 -0.479876 0)
(0.204339 -0.434833 0)
(0.273895 -0.381092 0)
(0.331329 -0.321228 0)
(0.37313 -0.240701 0)
(0.394731 -0.152321 0)
(0.391129 -0.0502222 0)
(0.346594 0.0440306 0)
(0.276199 0.105998 0)
(0.20212 0.132863 0)
(0.139009 0.133323 0)
(0.0922804 0.119262 0)
(0.0605826 0.100035 0)
(0.0402029 0.080795 0)
(0.0273087 0.0639387 0)
(0.0189174 0.04984 0)
(0.0132868 0.0382162 0)
(0.00938995 0.0287358 0)
(0.00661376 0.0211009 0)
(0.00459658 0.0150607 0)
(0.00312233 0.0103971 0)
(0.00205518 0.00690819 0)
(0.00130105 0.00439587 0)
(0.000786796 0.00266653 0)
(0.000451192 0.00153682 0)
(0.000242161 0.000843275 0)
(0.000116942 0.000452667 0)
(3.9792e-05 0.000272505 0)
(-0.0032355 -0.564897 0)
(0.0085854 -0.513132 0)
(0.0192619 -0.510732 0)
(0.0755189 -0.570274 0)
(0.217639 -0.457501 0)
(0.3478 -0.39112 0)
(0.429953 -0.261467 0)
(0.459419 -0.163425 0)
(0.457684 -0.0328833 0)
(0.390284 0.082272 0)
(0.295659 0.145949 0)
(0.205117 0.165016 0)
(0.133952 0.155211 0)
(0.0850098 0.13263 0)
(0.0537756 0.107752 0)
(0.0347649 0.0850686 0)
(0.0232531 0.0663733 0)
(0.0159257 0.0512796 0)
(0.0110939 0.0390948 0)
(0.00779516 0.02929 0)
(0.0054687 0.02146 0)
(0.00379044 0.0152966 0)
(0.0025701 0.0105519 0)
(0.00168972 0.00700804 0)
(0.00106904 0.00445835 0)
(0.000646487 0.00270406 0)
(0.000371049 0.0015584 0)
(0.000199504 0.000855114 0)
(9.67432e-05 0.000459001 0)
(3.36565e-05 0.000276673 0)
(0.0224505 -0.61501 0)
(0.0917635 -0.604566 0)
(0.175186 -0.597714 0)
(0.261024 -0.583514 0)
(0.306128 -0.517243 0)
(0.385256 -0.486184 0)
(0.452339 -0.304581 0)
(0.538001 -0.190875 0)
(0.545945 -0.00510525 0)
(0.437717 0.137629 0)
(0.311722 0.196557 0)
(0.20292 0.202288 0)
(0.124689 0.178588 0)
(0.0751813 0.145887 0)
(0.0455569 0.115012 0)
(0.0286381 0.0888469 0)
(0.0188814 0.0684715 0)
(0.0127765 0.0524981 0)
(0.00882094 0.0398272 0)
(0.00615817 0.0297465 0)
(0.00430034 0.0217533 0)
(0.00297079 0.0154881 0)
(0.00200976 0.010677 0)
(0.00131928 0.00708842 0)
(0.000834013 0.00450851 0)
(0.000504381 0.00273415 0)
(0.000289903 0.0015757 0)
(0.000156313 0.000864613 0)
(7.62842e-05 0.000464074 0)
(2.7562e-05 0.000280179 0)
(0.0242452 -0.695908 0)
(0.0942513 -0.692694 0)
(0.179569 -0.676385 0)
(0.255569 -0.658923 0)
(0.345866 -0.647105 0)
(0.473992 -0.553913 0)
(0.630932 -0.397646 0)
(0.78389 -0.188938 0)
(0.666333 0.0777809 0)
(0.463177 0.223949 0)
(0.316157 0.258547 0)
(0.193128 0.24444 0)
(0.110243 0.202727 0)
(0.0625918 0.158412 0)
(0.0358842 0.121553 0)
(0.0218762 0.0919675 0)
(0.0142374 0.0701797 0)
(0.00949287 0.0534724 0)
(0.006481 0.0404032 0)
(0.00448647 0.0301007 0)
(0.00311306 0.0219787 0)
(0.00214032 0.0156341 0)
(0.00144297 0.0107718 0)
(0.000944918 0.00714905 0)
(0.000596603 0.0045462 0)
(0.000360868 0.0027567 0)
(0.000207975 0.00158868 0)
(0.000112704 0.000871746 0)
(5.56186e-05 0.000467869 0)
(2.15589e-05 0.000283038 0)
(0.0273136 -0.780373 0)
(0.101145 -0.779545 0)
(0.178893 -0.779088 0)
(0.286218 -0.769465 0)
(0.413522 -0.740745 0)
(0.518663 -0.66923 0)
(0.901953 -0.654633 0)
(1.0523 -0.205063 0)
(0.659682 0.205849 0)
(0.603396 0.35441 0)
(0.269426 0.327958 0)
(0.169901 0.291087 0)
(0.0891066 0.226908 0)
(0.0472294 0.169596 0)
(0.0247206 0.127288 0)
(0.014589 0.0943303 0)
(0.00937821 0.0714892 0)
(0.00610187 0.0541992 0)
(0.00408901 0.0408227 0)
(0.00278826 0.0303533 0)
(0.00191156 0.022137 0)
(0.00130181 0.0157354 0)
(0.00087148 0.0108369 0)
(0.000567715 0.00719034 0)
(0.000357492 0.0045717 0)
(0.000216351 0.00277192 0)
(0.000125491 0.00159746 0)
(6.88004e-05 0.000876578 0)
(3.48013e-05 0.000470422 0)
(1.57033e-05 0.000285309 0)
(0.0473418 -0.889058 0)
(0.130077 -0.877399 0)
(0.255758 -0.875833 0)
(0.373688 -0.839338 0)
(0.504037 -0.803286 0)
(0.598789 -0.825128 0)
(0.400905 -0.583312 0)
(0.0355465 -0.340903 0)
(0.625081 0.22728 0)
(0.555445 0.427915 0)
(0.301968 0.431688 0)
(0.123391 0.33482 0)
(0.0461108 0.246913 0)
(0.0289463 0.177515 0)
(0.0123978 0.13277 0)
(0.0070447 0.0967865 0)
(0.00439963 0.0734942 0)
(0.00264476 0.0557903 0)
(0.00166605 0.0421529 0)
(0.00107688 0.0314798 0)
(0.000706188 0.023088 0)
(0.00046438 0.0165138 0)
(0.000303053 0.0114429 0)
(0.000194013 0.00763359 0)
(0.000121843 0.0048748 0)
(7.48997e-05 0.00296574 0)
(4.54456e-05 0.00171331 0)
(2.69947e-05 0.00094171 0)
(1.57694e-05 0.000505841 0)
(1.15557e-05 0.00030793 0)
(-0.00793733 -9.05625e-05 0)
(-0.00185905 0.000415592 0)
(-0.00217109 0.000766276 0)
(-0.00257995 0.00140787 0)
(-0.00307647 0.00247533 0)
(-0.00371333 0.0041434 0)
(-0.00453743 0.00661956 0)
(-0.00559194 0.0101323 0)
(-0.00616048 0.0147597 0)
(-0.0049422 0.0206916 0)
(-0.00356063 0.028306 0)
(-0.00304396 0.0380049 0)
(-0.00320692 0.0499087 0)
(-0.00411894 0.0651987 0)
(-0.00523397 0.0841064 0)
(0.00812404 0.118979 0)
(0.0218913 0.166075 0)
(-0.0799091 0.234725 0)
(-0.0466469 0.342543 0)
(-0.233526 0.47187 0)
(-0.484058 0.547616 0)
(-0.606446 0.347833 0)
(-0.557501 -0.35758 0)
(-0.210732 -0.547952 0)
(-0.229496 -0.687873 0)
(-0.382692 -0.84002 0)
(-0.444757 -0.914078 0)
(-0.432152 -0.955746 0)
(-0.330065 -0.995295 0)
(-0.138291 -1.03054 0)
(-0.00557761 -0.000300063 0)
(-0.00431355 0.000432984 0)
(-0.00529758 0.000795658 0)
(-0.00672013 0.00144054 0)
(-0.00857377 0.00250619 0)
(-0.0110086 0.00416413 0)
(-0.0141848 0.00661724 0)
(-0.0183432 0.0100742 0)
(-0.0240488 0.0146971 0)
(-0.0311085 0.0207497 0)
(-0.0405203 0.0287544 0)
(-0.0570013 0.0393293 0)
(-0.0921331 0.0528734 0)
(-0.204753 0.0830051 0)
(-1.20281 0.0428436 0)
(-1.34684 0.101256 0)
(-0.365335 0.15177 0)
(-0.30208 0.222235 0)
(0.0262846 0.369397 0)
(-0.178929 0.539157 0)
(-0.439428 0.601746 0)
(-0.670732 0.417304 0)
(-0.421135 -0.423402 0)
(-0.137475 -0.620223 0)
(-0.0291351 -0.658904 0)
(-0.107131 -0.781981 0)
(-0.199935 -0.887322 0)
(-0.225031 -0.985842 0)
(-0.159761 -1.0572 0)
(-0.0804163 -1.15816 0)
(-0.00486541 -0.000359396 0)
(-0.00521559 0.000473501 0)
(-0.00643684 0.000866093 0)
(-0.00820665 0.00153549 0)
(-0.0105457 0.00263416 0)
(-0.0136495 0.00434331 0)
(-0.0177675 0.00689067 0)
(-0.0232254 0.010502 0)
(-0.0308716 0.0153524 0)
(-0.0408348 0.0217205 0)
(-0.0550078 0.0304099 0)
(-0.0803217 0.0428118 0)
(-0.135105 0.0623675 0)
(-0.31221 0.132534 0)
(-1.45246 0.247387 0)
(-2.68557 0.00593161 0)
(-1.13963 0.0281714 0)
(-0.564217 0.166674 0)
(-0.409638 0.305068 0)
(-0.0950272 0.635706 0)
(-0.476657 0.644275 0)
(-0.661235 0.411409 0)
(-0.350363 -0.576633 0)
(-0.138157 -0.693808 0)
(0.0308401 -0.694862 0)
(0.0914422 -0.747851 0)
(0.0539907 -0.862582 0)
(0.0338451 -0.975731 0)
(0.0175788 -1.07477 0)
(0.0068884 -1.22277 0)
(-0.00466547 -0.000343437 0)
(-0.0054733 0.000521176 0)
(-0.00675514 0.000947873 0)
(-0.00859954 0.00164711 0)
(-0.0110566 0.00278693 0)
(-0.014305 0.00455641 0)
(-0.0186435 0.00721381 0)
(-0.0243804 0.0110075 0)
(-0.0323582 0.0161468 0)
(-0.0428782 0.0229492 0)
(-0.0581827 0.0326007 0)
(-0.0855555 0.0474569 0)
(-0.144164 0.0748643 0)
(-0.315357 0.184288 0)
(-0.999035 0.60199 0)
(-1.72518 -0.19504 0)
(-0.897861 -0.114899 0)
(-0.699307 0.106268 0)
(-0.386601 0.181586 0)
(-0.127736 0.725483 0)
(-0.547689 0.74947 0)
(-0.616334 0.325936 0)
(-0.455119 -0.651002 0)
(-0.147136 -0.785797 0)
(0.0292422 -0.763905 0)
(0.148183 -0.770176 0)
(0.183875 -0.853531 0)
(0.177296 -0.961051 0)
(0.133603 -1.05292 0)
(0.0686292 -1.14389 0)
(-0.00465201 -0.000306321 0)
(-0.00556134 0.000573689 0)
(-0.00685591 0.00103685 0)
(-0.00870882 0.00177292 0)
(-0.0111937 0.00296469 0)
(-0.0144459 0.00480553 0)
(-0.0187812 0.00758484 0)
(-0.0244503 0.011575 0)
(-0.032174 0.0170233 0)
(-0.0424813 0.0242989 0)
(-0.0577417 0.035028 0)
(-0.0845909 0.052551 0)
(-0.140083 0.088036 0)
(-0.27632 0.225105 0)
(-0.350682 0.819607 0)
(-0.587414 -0.308329 0)
(-0.553121 -0.184279 0)
(-0.513607 0.108026 0)
(-0.547093 0.145164 0)
(-0.344803 0.578456 0)
(-0.579351 0.872037 0)
(-0.894367 0.282003 0)
(-0.630251 -0.710715 0)
(-0.142661 -0.894464 0)
(0.0325745 -0.836128 0)
(0.14059 -0.820766 0)
(0.19819 -0.865987 0)
(0.203489 -0.948561 0)
(0.162806 -1.00883 0)
(0.0774199 -1.04769 0)
(-0.00468809 -0.000265094 0)
(-0.00561224 0.000629197 0)
(-0.00690656 0.00113036 0)
(-0.00875803 0.00190951 0)
(-0.0112516 0.00316197 0)
(-0.0144811 0.00508248 0)
(-0.0187531 0.00798876 0)
(-0.0242648 0.012178 0)
(-0.0315966 0.0179479 0)
(-0.0414937 0.0257214 0)
(-0.0562882 0.037572 0)
(-0.081615 0.0577433 0)
(-0.130819 0.100459 0)
(-0.223893 0.249799 0)
(0.0281872 0.781339 0)
(0.338185 -0.27804 0)
(-0.331304 -0.166069 0)
(-0.419955 0.129056 0)
(-0.429844 0.103936 0)
(-0.65117 0.564644 0)
(-0.589744 0.994133 0)
(-1.58257 0.952225 0)
(-0.427755 -1.14247 0)
(-0.0971691 -1.01667 0)
(0.0545327 -0.902006 0)
(0.131786 -0.865754 0)
(0.170811 -0.883766 0)
(0.170015 -0.936159 0)
(0.131575 -0.957645 0)
(0.0605967 -0.954388 0)
(-0.00472418 -0.000223869 0)
(-0.0056451 0.000687936 0)
(-0.006933 0.00122989 0)
(-0.00878142 0.00205888 0)
(-0.0112721 0.00338016 0)
(-0.0144691 0.00538913 0)
(-0.0186459 0.00842666 0)
(-0.0239627 0.0128143 0)
(-0.0308746 0.0189082 0)
(-0.040279 0.0271993 0)
(-0.0543241 0.0401726 0)
(-0.0774708 0.0628282 0)
(-0.118501 0.111225 0)
(-0.17074 0.258854 0)
(0.107872 0.611593 0)
(0.540968 -0.119912 0)
(-0.203073 -0.0879926 0)
(-0.39423 0.166173 0)
(-0.533093 0.0251304 0)
(-0.565028 0.670542 0)
(-0.663105 1.0948 0)
(-1.74996 1.3795 0)
(-0.27339 -1.52672 0)
(0.0142057 -1.12116 0)
(0.0997915 -0.949723 0)
(0.136098 -0.892345 0)
(0.145812 -0.889714 0)
(0.125838 -0.913333 0)
(0.0846313 -0.912638 0)
(0.0351919 -0.884698 0)
(-0.00475047 -0.000183686 0)
(-0.00566057 0.000749796 0)
(-0.00693888 0.00133641 0)
(-0.00878245 0.00222168 0)
(-0.011258 0.00361797 0)
(-0.014412 0.00572318 0)
(-0.0184656 0.00889456 0)
(-0.0235554 0.0134764 0)
(-0.0300313 0.0198874 0)
(-0.0388546 0.0287103 0)
(-0.0518771 0.0427632 0)
(-0.072257 0.0675978 0)
(-0.103966 0.119651 0)
(-0.122537 0.255418 0)
(0.116347 0.468457 0)
(0.381924 0.0176951 0)
(-0.122328 0.00617421 0)
(-0.373044 0.237178 0)
(-0.402413 0.187822 0)
(-0.720654 0.695542 0)
(-0.920442 1.11124 0)
(-0.0727612 0.685897 0)
(0.26561 -1.62708 0)
(0.181968 -1.15009 0)
(0.164913 -0.963341 0)
(0.153828 -0.894755 0)
(0.134241 -0.876823 0)
(0.097639 -0.877924 0)
(0.0527242 -0.869537 0)
(0.0167697 -0.842854 0)
(-0.00476612 -0.000145008 0)
(-0.00565842 0.000814676 0)
(-0.006926 0.00145079 0)
(-0.00876157 0.00239837 0)
(-0.0112097 0.00387399 0)
(-0.0143072 0.00608177 0)
(-0.0182113 0.00938815 0)
(-0.0230425 0.0141573 0)
(-0.0290595 0.0208699 0)
(-0.0371962 0.030225 0)
(-0.0489247 0.0452666 0)
(-0.0660203 0.0718322 0)
(-0.0879745 0.125303 0)
(-0.081654 0.243397 0)
(0.11016 0.368743 0)
(0.25597 0.0997626 0)
(-0.0582221 0.0949805 0)
(-0.317871 0.365384 0)
(-0.868273 0.31808 0)
(-1.59537 0.86978 0)
(0.0546642 0.0105587 0)
(0.71556 0.0346603 0)
(0.685307 -1.3732 0)
(0.342178 -1.0765 0)
(0.234637 -0.93312 0)
(0.180295 -0.870258 0)
(0.136654 -0.845205 0)
(0.0910863 -0.833741 0)
(0.0457823 -0.824575 0)
(0.0131974 -0.815295 0)
(-0.0047714 -0.000108174 0)
(-0.00563787 0.000882472 0)
(-0.00689371 0.0015736 0)
(-0.00871678 0.00258893 0)
(-0.0111251 0.00414673 0)
(-0.0141495 0.00646173 0)
(-0.0178789 0.0099017 0)
(-0.0224198 0.0148483 0)
(-0.0279454 0.0218392 0)
(-0.035282 0.0317036 0)
(-0.0454579 0.0475893 0)
(-0.0588679 0.0753057 0)
(-0.0713457 0.128003 0)
(-0.0485917 0.226403 0)
(0.099732 0.300196 0)
(0.185191 0.146991 0)
(0.00200066 0.165495 0)
(-0.134583 0.493534 0)
(-1.08384 0.450793 0)
(-0.0733361 0.237274 0)
(0.507914 -0.241491 0)
(1.34185 -0.456355 0)
(0.776556 -1.00041 0)
(0.437861 -0.937405 0)
(0.289679 -0.86398 0)
(0.207231 -0.821145 0)
(0.14809 -0.798878 0)
(0.0986413 -0.785483 0)
(0.0562615 -0.778044 0)
(0.0207848 -0.78098 0)
(-0.00476642 -7.34561e-05 0)
(-0.00560118 0.000953295 0)
(-0.00684324 0.0017054 0)
(-0.00864715 0.00279321 0)
(-0.0110033 0.00443541 0)
(-0.0139347 0.00686092 0)
(-0.0174649 0.0104301 0)
(-0.0216815 0.0155417 0)
(-0.0266723 0.02278 0)
(-0.0330929 0.0331008 0)
(-0.0414841 0.0496296 0)
(-0.0509621 0.0778162 0)
(-0.0548332 0.127832 0)
(-0.0226384 0.207214 0)
(0.090396 0.252466 0)
(0.148413 0.172137 0)
(0.0602275 0.208335 0)
(0.0685653 0.47374 0)
(0.603745 0.946731 0)
(0.90016 -0.149152 0)
(0.848535 -0.225691 0)
(0.938801 -0.427999 0)
(0.704407 -0.738482 0)
(0.463495 -0.786703 0)
(0.318472 -0.772127 0)
(0.226116 -0.754035 0)
(0.159511 -0.741534 0)
(0.107191 -0.733643 0)
(0.0648754 -0.729931 0)
(0.0261388 -0.730018 0)
(-0.00474977 -4.07561e-05 0)
(-0.00555143 0.00102699 0)
(-0.0067766 0.00184581 0)
(-0.00855308 0.0030098 0)
(-0.0108457 0.0047382 0)
(-0.0136618 0.00727528 0)
(-0.0169692 0.0109655 0)
(-0.0208247 0.0162248 0)
(-0.0252295 0.023672 0)
(-0.0306233 0.0343632 0)
(-0.0370419 0.0512773 0)
(-0.0425267 0.079199 0)
(-0.0390799 0.125066 0)
(-0.00256043 0.187654 0)
(0.0843624 0.21785 0)
(0.132318 0.181343 0)
(0.111132 0.221598 0)
(0.193958 0.390061 0)
(0.59304 0.486419 0)
(0.859418 0.00841754 0)
(0.76618 -0.200466 0)
(0.735437 -0.390065 0)
(0.603555 -0.577864 0)
(0.443104 -0.654445 0)
(0.320903 -0.674553 0)
(0.232134 -0.677189 0)
(0.164521 -0.675827 0)
(0.109983 -0.67442 0)
(0.0635724 -0.673789 0)
(0.0233871 -0.672421 0)
(-0.00472153 -9.62433e-06 0)
(-0.00548747 0.00110355 0)
(-0.00669124 0.00199391 0)
(-0.00843111 0.00323688 0)
(-0.0106494 0.00505299 0)
(-0.0133284 0.00769959 0)
(-0.0163907 0.0114991 0)
(-0.0198474 0.0168829 0)
(-0.0236117 0.0244896 0)
(-0.0278803 0.0354328 0)
(-0.0321997 0.0524235 0)
(-0.0338198 0.0793494 0)
(-0.024546 0.120105 0)
(0.0130032 0.168692 0)
(0.0818385 0.190837 0)
(0.127827 0.178265 0)
(0.149227 0.210959 0)
(0.254166 0.296269 0)
(0.505614 0.28134 0)
(0.670231 0.0286303 0)
(0.652296 -0.177258 0)
(0.604476 -0.33943 0)
(0.511591 -0.471459 0)
(0.400912 -0.546749 0)
(0.303803 -0.582022 0)
(0.225312 -0.597863 0)
(0.161667 -0.605217 0)
(0.108752 -0.608863 0)
(0.0636006 -0.610755 0)
(0.0238292 -0.611726 0)
(-0.0046817 1.99825e-05 0)
(-0.00540765 0.00118341 0)
(-0.00658388 0.00214883 0)
(-0.0082769 0.00347267 0)
(-0.0104081 0.00537737 0)
(-0.0129294 0.0081272 0)
(-0.0157251 0.0120216 0)
(-0.0187464 0.0174996 0)
(-0.0218189 0.0252034 0)
(-0.024884 0.0362487 0)
(-0.0270528 0.0529703 0)
(-0.0251077 0.0782294 0)
(-0.0115077 0.113386 0)
(0.0251964 0.150649 0)
(0.0819636 0.167768 0)
(0.12848 0.165896 0)
(0.172424 0.185326 0)
(0.271726 0.214235 0)
(0.430644 0.164756 0)
(0.534614 0.0041938 0)
(0.54003 -0.158335 0)
(0.500104 -0.290849 0)
(0.431373 -0.392862 0)
(0.351153 -0.45967 0)
(0.275077 -0.498851 0)
(0.208665 -0.521073 0)
(0.151779 -0.533765 0)
(0.102792 -0.541084 0)
(0.0600329 -0.545151 0)
(0.0222152 -0.547033 0)
(-0.00462984 4.77606e-05 0)
(-0.00531345 0.00126713 0)
(-0.0064552 0.00230996 0)
(-0.0080899 0.00371522 0)
(-0.0101192 0.00570732 0)
(-0.0124619 0.00854888 0)
(-0.0149686 0.0125196 0)
(-0.0175203 0.0180541 0)
(-0.019857 0.025778 0)
(-0.0216716 0.0367469 0)
(-0.021728 0.0528378 0)
(-0.0166648 0.0758691 0)
(-0.000126477 0.105319 0)
(0.0347877 0.133483 0)
(0.0834504 0.146511 0)
(0.129936 0.147192 0)
(0.181916 0.152914 0)
(0.265192 0.148773 0)
(0.36771 0.0913502 0)
(0.433525 -0.0227224 0)
(0.441656 -0.145155 0)
(0.411968 -0.249882 0)
(0.360735 -0.331085 0)
(0.300651 -0.388255 0)
(0.24095 -0.425816 0)
(0.186011 -0.449672 0)
(0.136906 -0.464629 0)
(0.0933549 -0.473854 0)
(0.0546734 -0.479222 0)
(0.0201524 -0.481736 0)
(-0.00456523 7.33099e-05 0)
(-0.00520527 0.001356 0)
(-0.00630696 0.00247796 0)
(-0.00787101 0.00396398 0)
(-0.00978323 0.0060392 0)
(-0.011926 0.00895597 0)
(-0.0141195 0.0129788 0)
(-0.0161719 0.0185229 0)
(-0.017739 0.026174 0)
(-0.0182924 0.0368659 0)
(-0.016365 0.0519732 0)
(-0.00873498 0.0723527 0)
(0.00956356 0.0962968 0)
(0.0422396 0.11703 0)
(0.0850174 0.126033 0)
(0.129678 0.124952 0)
(0.180628 0.119497 0)
(0.246188 0.0982909 0)
(0.313274 0.0426033 0)
(0.354341 -0.0433279 0)
(0.359387 -0.135292 0)
(0.337064 -0.216475 0)
(0.298485 -0.281055 0)
(0.252616 -0.328749 0)
(0.205581 -0.362184 0)
(0.160716 -0.384852 0)
(0.119358 -0.399869 0)
(0.0818339 -0.409546 0)
(0.0480199 -0.415402 0)
(0.0176141 -0.418235 0)
(-0.00448456 9.59294e-05 0)
(-0.0050799 0.00145156 0)
(-0.00613656 0.00265408 0)
(-0.00761848 0.00421959 0)
(-0.00939959 0.00637028 0)
(-0.0113236 0.00934255 0)
(-0.0131821 0.013386 0)
(-0.0147123 0.018882 0)
(-0.0154921 0.0263515 0)
(-0.0148159 0.0365532 0)
(-0.0111175 0.0503564 0)
(-0.00153498 0.0678065 0)
(0.0175381 0.086599 0)
(0.047746 0.101166 0)
(0.0856449 0.106097 0)
(0.126618 0.101601 0)
(0.171761 0.0884612 0)
(0.221371 0.0599764 0)
(0.265402 0.00966695 0)
(0.290266 -0.0569672 0)
(0.291553 -0.126568 0)
(0.273881 -0.188953 0)
(0.244273 -0.239795 0)
(0.208782 -0.27864 0)
(0.171628 -0.306999 0)
(0.135335 -0.327006 0)
(0.101154 -0.34074 0)
(0.0696264 -0.349887 0)
(0.0409065 -0.355639 0)
(0.0149288 -0.358533 0)
(-0.00437958 0.000115269 0)
(-0.00493308 0.00155381 0)
(-0.00593958 0.00283854 0)
(-0.00733025 0.00448152 0)
(-0.00896746 0.00669753 0)
(-0.0106576 0.00970357 0)
(-0.0121642 0.0137287 0)
(-0.013161 0.019109 0)
(-0.013158 0.0262753 0)
(-0.0113326 0.0357746 0)
(-0.00614635 0.0480059 0)
(0.00477128 0.0624131 0)
(0.0238063 0.0764945 0)
(0.0513624 0.0858756 0)
(0.0846934 0.0869207 0)
(0.120631 0.0789805 0)
(0.158089 0.0614306 0)
(0.194501 0.0312723 0)
(0.22313 -0.0124466 0)
(0.237382 -0.0647812 0)
(0.235691 -0.117864 0)
(0.221009 -0.165624 0)
(0.197788 -0.205201 0)
(0.17004 -0.236152 0)
(0.140687 -0.259336 0)
(0.111604 -0.276102 0)
(0.0838322 -0.287867 0)
(0.0579119 -0.295896 0)
(0.0340775 -0.301138 0)
(0.0123775 -0.303889 0)
(-0.00424696 0.000132202 0)
(-0.00476061 0.00166115 0)
(-0.00571076 0.00302886 0)
(-0.00700138 0.00474579 0)
(-0.00848244 0.00701525 0)
(-0.00992762 0.010031 0)
(-0.0110724 0.0139935 0)
(-0.0115404 0.019182 0)
(-0.010788 0.0259175 0)
(-0.00794469 0.0345185 0)
(-0.00160954 0.0449785 0)
(0.0100416 0.0563568 0)
(0.0283916 0.0662362 0)
(0.0531127 0.0712694 0)
(0.0819094 0.0689149 0)
(0.112153 0.0583199 0)
(0.141761 0.0389461 0)
(0.167735 0.0101361 0)
(0.185914 -0.0268763 0)
(0.193265 -0.0681367 0)
(0.189609 -0.108817 0)
(0.177057 -0.145294 0)
(0.158522 -0.175792 0)
(0.136674 -0.199989 0)
(0.113533 -0.218409 0)
(0.0904718 -0.23193 0)
(0.0683 -0.241529 0)
(0.0474454 -0.248125 0)
(0.0280598 -0.252424 0)
(0.0101795 -0.254652 0)
(-0.00408796 0.000147689 0)
(-0.00455934 0.00177187 0)
(-0.00544669 0.00322112 0)
(-0.00662933 0.00500732 0)
(-0.00794329 0.00731607 0)
(-0.00913774 0.0103143 0)
(-0.00992009 0.0141661 0)
(-0.00987998 0.0190818 0)
(-0.00844354 0.0252609 0)
(-0.00475942 0.0327977 0)
(0.00235786 0.0413737 0)
(0.0141839 0.0498483 0)
(0.0313367 0.0560706 0)
(0.0530661 0.0575413 0)
(0.0773532 0.0524992 0)
(0.101859 0.0403082 0)
(0.12434 0.0209334 0)
(0.142301 -0.00503924 0)
(0.15336 -0.0357577 0)
(0.156299 -0.0682403 0)
(0.151549 -0.0994552 0)
(0.140703 -0.127237 0)
(0.125736 -0.150528 0)
(0.10845 -0.169157 0)
(0.0902411 -0.183481 0)
(0.0720848 -0.194085 0)
(0.0545694 -0.201616 0)
(0.038005 -0.206641 0)
(0.0225045 -0.209616 0)
(0.00812236 -0.210931 0)
(-0.00390079 0.000161976 0)
(-0.00432663 0.00188444 0)
(-0.00514501 0.00341249 0)
(-0.00621294 0.00526128 0)
(-0.00735097 0.00759269 0)
(-0.00829421 0.0105436 0)
(-0.00872566 0.014234 0)
(-0.00821821 0.0187955 0)
(-0.00619616 0.0243029 0)
(-0.00188692 0.0306527 0)
(0.00563909 0.03732 0)
(0.017149 0.0431139 0)
(0.0327183 0.0462474 0)
(0.0513694 0.0449213 0)
(0.0712985 0.0380011 0)
(0.0904663 0.0252241 0)
(0.106919 0.00701287 0)
(0.118888 -0.0155345 0)
(0.12513 -0.0406133 0)
(0.125338 -0.0660658 0)
(0.120149 -0.0899725 0)
(0.110788 -0.111046 0)
(0.0986318 -0.128687 0)
(0.0849084 -0.142834 0)
(0.07057 -0.153746 0)
(0.0562943 -0.161817 0)
(0.0425104 -0.167471 0)
(0.0294818 -0.171075 0)
(0.0173532 -0.17297 0)
(0.00620247 -0.173639 0)
(-0.00368233 0.000175501 0)
(-0.00405932 0.00199713 0)
(-0.00480291 0.00360054 0)
(-0.00574975 0.00550266 0)
(-0.00670841 0.00783887 0)
(-0.00740708 0.0107107 0)
(-0.00751305 0.0141883 0)
(-0.00659959 0.018319 0)
(-0.00412061 0.0230598 0)
(0.000572965 0.0281489 0)
(0.00814385 0.0329633 0)
(0.0189348 0.0363779 0)
(0.0326567 0.037 0)
(0.048248 0.0336131 0)
(0.0641293 0.025598 0)
(0.0786191 0.0130443 0)
(0.0902216 -0.00335094 0)
(0.0978229 -0.0223949 0)
(0.100874 -0.0425789 0)
(0.0994922 -0.0623895 0)
(0.0943329 -0.0806172 0)
(0.0863317 -0.0965071 0)
(0.0764601 -0.109742 0)
(0.0655658 -0.120331 0)
(0.0543108 -0.128477 0)
(0.0431778 -0.134464 0)
(0.0324825 -0.138596 0)
(0.0224282 -0.141151 0)
(0.0131337 -0.142414 0)
(0.00465115 -0.142803 0)
(-0.0034292 0.000188135 0)
(-0.00375345 0.00210855 0)
(-0.00441734 0.0037818 0)
(-0.00523889 0.00572705 0)
(-0.00601986 0.00804916 0)
(-0.00648868 0.0108097 0)
(-0.00630976 0.014025 0)
(-0.00507209 0.0176598 0)
(-0.00229029 0.0215687 0)
(0.00254416 0.0253926 0)
(0.0098237 0.0284727 0)
(0.0195839 0.0298586 0)
(0.0313159 0.0285342 0)
(0.0439821 0.0237615 0)
(0.0562569 0.0153225 0)
(0.0668418 0.00355859 0)
(0.0747031 -0.0107392 0)
(0.0792157 -0.0264903 0)
(0.0802331 -0.0425324 0)
(0.0780457 -0.0578349 0)
(0.0732387 -0.0716472 0)
(0.0665208 -0.0835417 0)
(0.0585831 -0.0933736 0)
(0.0500148 -0.1012 0)
(0.0412743 -0.107197 0)
(0.0327006 -0.111584 0)
(0.0245195 -0.114592 0)
(0.0168775 -0.116431 0)
(0.00985208 -0.117317 0)
(0.00346313 -0.11757 0)
(-0.00313764 0.000199842 0)
(-0.00340603 0.00221653 0)
(-0.00398524 0.00395303 0)
(-0.00468024 0.00593017 0)
(-0.00529125 0.00821903 0)
(-0.00555484 0.0108386 0)
(-0.00514538 0.0137491 0)
(-0.00368622 0.0168408 0)
(-0.00077416 0.0198889 0)
(0.00395558 0.0224885 0)
(0.0106653 0.0240246 0)
(0.0191792 0.0237558 0)
(0.0288941 0.0210133 0)
(0.0388732 0.0154345 0)
(0.0480623 0.0070869 0)
(0.055525 -0.00355487 0)
(0.0606108 -0.0157272 0)
(0.0630272 -0.028547 0)
(0.0628356 -0.0411669 0)
(0.0603696 -0.0529069 0)
(0.0561182 -0.0633156 0)
(0.0506117 -0.0721675 0)
(0.0443412 -0.0794198 0)
(0.0377139 -0.0851557 0)
(0.0310411 -0.0895291 0)
(0.0245484 -0.092719 0)
(0.0183822 -0.0949042 0)
(0.0126375 -0.0962412 0)
(0.00736463 -0.0968883 0)
(0.00257546 -0.0970737 0)
(-0.00280381 0.000210388 0)
(-0.0030128 0.00231849 0)
(-0.00350461 0.00411132 0)
(-0.00407413 0.00610802 0)
(-0.00452881 0.00834604 0)
(-0.00462123 0.0108005 0)
(-0.00405065 0.0133762 0)
(-0.00248807 0.0159014 0)
(0.00037616 0.0180988 0)
(0.00477318 0.0195702 0)
(0.0106925 0.01979 0)
(0.0178376 0.0182383 0)
(0.0256053 0.0145424 0)
(0.0332079 0.00861785 0)
(0.039854 0.000706713 0)
(0.0449183 -0.00867213 0)
(0.0480282 -0.0188615 0)
(0.0490973 -0.0291791 0)
(0.048277 -0.0390368 0)
(0.0458794 -0.048004 0)
(0.0422897 -0.0558244 0)
(0.0378955 -0.0623972 0)
(0.0330421 -0.0677375 0)
(0.0280074 -0.0719355 0)
(0.022999 -0.0751192 0)
(0.0181651 -0.0774262 0)
(0.0135988 -0.0789912 0)
(0.00935503 -0.0799331 0)
(0.0054552 -0.0803724 0)
(0.00190046 -0.0804834 0)
(-0.00242406 0.000220028 0)
(-0.00257067 0.0024118 0)
(-0.00297319 0.00425236 0)
(-0.00342112 0.00625731 0)
(-0.0037391 0.00843109 0)
(-0.00370445 0.0107051 0)
(-0.00305276 0.0129338 0)
(-0.00151655 0.0148992 0)
(0.00112886 0.0163042 0)
(0.00499058 0.0167792 0)
(0.0099605 0.0159313 0)
(0.015696 0.0134423 0)
(0.0216588 0.00917478 0)
(0.0272316 0.00323343 0)
(0.0318576 -0.00404886 0)
(0.0351458 -0.012183 0)
(0.036915 -0.0206309 0)
(0.0371857 -0.0288949 0)
(0.0361312 -0.0365831 0)
(0.0340126 -0.0434355 0)
(0.0311185 -0.0493207 0)
(0.0277231 -0.0542109 0)
(0.0240611 -0.0581506 0)
(0.0203178 -0.0612287 0)
(0.0166297 -0.0635529 0)
(0.0130929 -0.0652303 0)
(0.00976782 -0.066361 0)
(0.00669223 -0.0670295 0)
(0.00388398 -0.0673218 0)
(0.00134243 -0.067376 0)
(-0.00199515 0.000228535 0)
(-0.0020765 0.00249337 0)
(-0.00238854 0.00437263 0)
(-0.00272219 0.0063767 0)
(-0.00292748 0.00847873 0)
(-0.00281588 0.0105694 0)
(-0.00217287 0.0124624 0)
(-0.000794579 0.0139079 0)
(0.00146538 0.0146116 0)
(0.00463063 0.0142618 0)
(0.00854741 0.0125943 0)
(0.0128934 0.00946681 0)
(0.0172343 0.00491439 0)
(0.0211197 -0.000844289 0)
(0.0241885 -0.0074441 0)
(0.0262117 -0.014457 0)
(0.0271226 -0.021463 0)
(0.0269871 -0.0281111 0)
(0.0259612 -0.0341512 0)
(0.0242443 -0.0394365 0)
(0.0220421 -0.0439117 0)
(0.0195413 -0.047589 0)
(0.0168963 -0.0505246 0)
(0.0142262 -0.052802 0)
(0.0116174 -0.0545137 0)
(0.00913072 -0.0557472 0)
(0.00680306 -0.0565828 0)
(0.00465693 -0.0570911 0)
(0.00270129 -0.0573377 0)
(0.000932677 -0.0574053 0)
(-0.0015144 0.000235571 0)
(-0.00152752 0.00256004 0)
(-0.00174914 0.00446852 0)
(-0.00197671 0.00646569 0)
(-0.00209533 0.0084972 0)
(-0.00196191 0.0104198 0)
(-0.00141845 0.0120156 0)
(-0.000326225 0.0130182 0)
(0.00140157 0.0131496 0)
(0.0037412 0.0121646 0)
(0.0065445 0.0099127 0)
(0.00955545 0.006387 0)
(0.0124629 0.00173769 0)
(0.0149713 -0.00375269 0)
(0.0168604 -0.00972858 0)
(0.0180141 -0.0158242 0)
(0.0184214 -0.0217187 0)
(0.0181511 -0.0271692 0)
(0.0173218 -0.0320204 0)
(0.0160711 -0.0361981 0)
(0.0145351 -0.0396935 0)
(0.0128341 -0.0425419 0)
(0.0110666 -0.0448052 0)
(0.00930786 -0.0465567 0)
(0.00761045 -0.0478692 0)
(0.00600564 -0.0488085 0)
(0.00450492 -0.0494312 0)
(0.00311056 -0.0497826 0)
(0.0018205 -0.0499127 0)
(0.000633671 -0.0499132 0)
(-0.000979672 0.000240883 0)
(-0.000921896 0.00260799 0)
(-0.00105201 0.00453605 0)
(-0.00118163 0.0065245 0)
(-0.00123913 0.00849822 0)
(-0.00113578 0.010289 0)
(-0.000777012 0.0116582 0)
(-8.47873e-05 0.0123323 0)
(0.000984097 0.0120559 0)
(0.00239595 0.0106392 0)
(0.00404631 0.00801748 0)
(0.00577645 0.00427077 0)
(0.00740815 -0.000379362 0)
(0.00877762 -0.00561978 0)
(0.00976908 -0.0111187 0)
(0.0103344 -0.0165612 0)
(0.0104806 -0.0216958 0)
(0.0102559 -0.0263489 0)
(0.00973197 -0.030424 0)
(0.00898733 -0.0338899 0)
(0.00809676 -0.0367628 0)
(0.00712396 -0.0390892 0)
(0.00611853 -0.0409294 0)
(0.00511692 -0.0423481 0)
(0.00414658 -0.0434096 0)
(0.00322917 -0.0441722 0)
(0.00237919 -0.0446819 0)
(0.001607 -0.0449695 0)
(0.000918815 -0.0450721 0)
(0.000312017 -0.0450669 0)
(-0.000390127 0.000244077 0)
(-0.000108013 0.00263523 0)
(-0.000123552 0.00457394 0)
(-0.000139002 0.00655598 0)
(-0.000145464 0.00849433 0)
(-0.00013259 0.0102063 0)
(-8.8565e-05 0.0114424 0)
(-4.52612e-06 0.0119281 0)
(0.000123756 0.0114229 0)
(0.000290764 0.00977549 0)
(0.000479934 0.00697178 0)
(0.000664351 0.00313397 0)
(0.000728729 -0.00147133 0)
(0.000810301 -0.00657157 0)
(0.000891127 -0.0118029 0)
(0.000937636 -0.0168876 0)
(0.000947362 -0.0216156 0)
(0.000924755 -0.0258504 0)
(0.000876297 -0.0295244 0)
(0.000808798 -0.0326248 0)
(0.000728568 -0.0351772 0)
(0.000641149 -0.0372307 0)
(0.000550958 -0.0388457 0)
(0.000460825 -0.0400868 0)
(0.000372751 -0.0410169 0)
(0.000288885 -0.0416912 0)
(0.000210981 -0.0421564 0)
(0.00014033 -0.042452 0)
(7.84132e-05 -0.0426124 0)
(2.59032e-05 -0.0426697 0)
(0.0802704 -1.04173 0)
(0.282391 -1.01279 0)
(0.41012 -0.959115 0)
(0.446534 -0.922103 0)
(0.402017 -0.863432 0)
(0.267292 -0.732252 0)
(0.188758 -0.58802 0)
(0.435004 -0.447232 0)
(0.715132 0.303464 0)
(0.55773 0.543854 0)
(0.283407 0.508073 0)
(0.0718991 0.370171 0)
(0.0896338 0.258499 0)
(0.00212668 0.178284 0)
(-0.0187856 0.131022 0)
(0.00265774 0.0906105 0)
(0.00420209 0.0696426 0)
(0.00324864 0.0534219 0)
(0.00286432 0.0407568 0)
(0.00327416 0.0305292 0)
(0.00439402 0.0224318 0)
(0.00583674 0.016111 0)
(0.00570027 0.0111903 0)
(0.00467623 0.00739381 0)
(0.00384538 0.004679 0)
(0.00320072 0.00282876 0)
(0.00270058 0.00162825 0)
(0.00230728 0.000894338 0)
(0.00199251 0.000481419 0)
(0.00185812 0.000291568 0)
(0.0383095 -1.17404 0)
(0.149824 -1.07838 0)
(0.20739 -1.00224 0)
(0.211495 -0.906393 0)
(0.136203 -0.81523 0)
(0.0349052 -0.683979 0)
(0.0988631 -0.628972 0)
(0.290982 -0.527334 0)
(0.742496 0.211777 0)
(0.464204 0.589201 0)
(0.249452 0.58104 0)
(0.0339741 0.39251 0)
(0.171223 0.261136 0)
(0.413616 0.154366 0)
(1.01263 0.109983 0)
(1.04005 0.0462983 0)
(0.245391 0.0955913 0)
(0.0995186 0.0569544 0)
(0.0606283 0.042269 0)
(0.0424936 0.0310931 0)
(0.0323125 0.0225458 0)
(0.0250526 0.0160741 0)
(0.0191948 0.0111233 0)
(0.0148725 0.00738251 0)
(0.0116288 0.00469195 0)
(0.00912105 0.00285192 0)
(0.00720026 0.0016512 0)
(0.00576153 0.000917053 0)
(0.00471841 0.000500733 0)
(0.00422739 0.000286783 0)
(-0.004914 -1.21574 0)
(-0.0203535 -1.07057 0)
(-0.0271191 -1.01339 0)
(-0.0466449 -0.889055 0)
(-0.083159 -0.777085 0)
(-0.058041 -0.699331 0)
(0.0897613 -0.700318 0)
(0.381941 -0.575017 0)
(0.207352 -0.0767443 0)
(0.529113 0.630201 0)
(0.260949 0.676383 0)
(0.311211 0.348505 0)
(0.504139 0.215387 0)
(0.987576 0.0846975 0)
(2.40217 -0.154979 0)
(1.76753 0.184903 0)
(0.372042 0.168558 0)
(0.148999 0.0682361 0)
(0.0863391 0.04623 0)
(0.0582733 0.0329383 0)
(0.0428281 0.0236125 0)
(0.0324289 0.0168181 0)
(0.0245147 0.0116128 0)
(0.0187833 0.00768618 0)
(0.014521 0.00488268 0)
(0.011273 0.00297943 0)
(0.0088176 0.00173609 0)
(0.00700252 0.000980093 0)
(0.005704 0.000545625 0)
(0.00506272 0.000291391 0)
(-0.0382492 -1.15607 0)
(-0.122643 -1.0665 0)
(-0.168955 -0.991553 0)
(-0.181332 -0.88168 0)
(-0.161541 -0.786447 0)
(-0.0619365 -0.760488 0)
(0.0972041 -0.782965 0)
(0.394032 -0.658839 0)
(0.798415 -0.00430685 0)
(0.634881 0.714068 0)
(0.198585 0.758627 0)
(0.598708 0.203127 0)
(0.683623 0.121208 0)
(0.872258 -0.0461467 0)
(1.51196 -0.387902 0)
(1.31897 0.525199 0)
(0.364788 0.23536 0)
(0.159035 0.0831981 0)
(0.0921279 0.0515238 0)
(0.0618143 0.0353936 0)
(0.0451604 0.0249709 0)
(0.0341061 0.0177184 0)
(0.0257937 0.0121888 0)
(0.0197479 0.00804283 0)
(0.0152305 0.00511208 0)
(0.0117986 0.00313334 0)
(0.00920736 0.00183886 0)
(0.00728891 0.00105593 0)
(0.00592249 0.000597021 0)
(0.00523799 0.000298406 0)
(-0.0429693 -1.05245 0)
(-0.141091 -1.02028 0)
(-0.194707 -0.967648 0)
(-0.199729 -0.887726 0)
(-0.156703 -0.827519 0)
(-0.0601498 -0.828194 0)
(0.0909493 -0.877237 0)
(0.368138 -0.926492 0)
(0.835921 0.433663 0)
(0.633606 0.794511 0)
(0.308826 0.79644 0)
(0.516909 0.322261 0)
(0.545154 0.118262 0)
(0.543667 -0.0963535 0)
(0.484469 -0.48909 0)
(0.452277 0.771018 0)
(0.305567 0.280228 0)
(0.153603 0.0987811 0)
(0.090952 0.0573316 0)
(0.0613926 0.0381068 0)
(0.0448482 0.0264498 0)
(0.0339417 0.0186888 0)
(0.0258451 0.0128236 0)
(0.0198763 0.00844968 0)
(0.0153525 0.00538509 0)
(0.0118971 0.00331744 0)
(0.00927303 0.00196286 0)
(0.00731746 0.00114488 0)
(0.0059274 0.000652263 0)
(0.0052336 0.000306749 0)
(-0.0328711 -0.950885 0)
(-0.111963 -0.958953 0)
(-0.159183 -0.946339 0)
(-0.170181 -0.897991 0)
(-0.140976 -0.866809 0)
(-0.0738628 -0.887682 0)
(0.0516958 -0.978108 0)
(0.417653 -1.12342 0)
(1.61463 0.466545 0)
(0.637715 0.852221 0)
(0.651683 0.667069 0)
(0.320409 0.200607 0)
(0.448515 0.141038 0)
(0.353451 -0.0808005 0)
(-0.250406 -0.407635 0)
(-0.139726 0.769048 0)
(0.2349 0.300671 0)
(0.141965 0.11313 0)
(0.0874473 0.0632292 0)
(0.0597877 0.0409384 0)
(0.0438283 0.027995 0)
(0.0333189 0.0196928 0)
(0.0256031 0.0134869 0)
(0.0198141 0.00888952 0)
(0.0153538 0.00569127 0)
(0.0119147 0.00352632 0)
(0.00927838 0.00210609 0)
(0.00730216 0.00124546 0)
(0.00589807 0.000710038 0)
(0.00520024 0.000315639 0)
(-0.0177231 -0.877265 0)
(-0.0685731 -0.908046 0)
(-0.112078 -0.916855 0)
(-0.139674 -0.897131 0)
(-0.136592 -0.888961 0)
(-0.107048 -0.929302 0)
(-0.0371917 -1.06202 0)
(0.178874 -1.41013 0)
(0.93054 -0.197952 0)
(0.753833 0.947716 0)
(0.478331 0.601261 0)
(0.577014 0.030111 0)
(0.433172 0.175908 0)
(0.246035 -0.0169098 0)
(-0.384757 -0.197538 0)
(-0.224309 0.598287 0)
(0.169123 0.301228 0)
(0.126813 0.125083 0)
(0.0825838 0.0689537 0)
(0.0575625 0.0438216 0)
(0.0425068 0.0295922 0)
(0.0325215 0.0207211 0)
(0.0252389 0.0141749 0)
(0.0196695 0.00936277 0)
(0.0153082 0.00602913 0)
(0.0119062 0.00376092 0)
(0.00926841 0.00226985 0)
(0.00728076 0.00135841 0)
(0.00586919 0.000771964 0)
(0.00516585 0.00032632 0)
(-0.0067767 -0.836953 0)
(-0.038476 -0.86456 0)
(-0.0823923 -0.878154 0)
(-0.122841 -0.878341 0)
(-0.145792 -0.888526 0)
(-0.157512 -0.941006 0)
(-0.16843 -1.0874 0)
(-0.216434 -1.48663 0)
(-0.473959 -0.790043 0)
(1.29264 1.10076 0)
(0.837322 0.85315 0)
(0.458244 0.29787 0)
(0.44028 0.2449 0)
(0.171249 0.0662122 0)
(-0.280972 -0.0251621 0)
(-0.185494 0.450224 0)
(0.113851 0.288238 0)
(0.109351 0.133875 0)
(0.0765045 0.0742419 0)
(0.0547696 0.0466793 0)
(0.0409197 0.0312212 0)
(0.031577 0.0217615 0)
(0.0247648 0.0148803 0)
(0.0194486 0.00986456 0)
(0.0152169 0.00639312 0)
(0.0118716 0.00401911 0)
(0.00924645 0.00245285 0)
(0.0072547 0.00148297 0)
(0.00584312 0.000839223 0)
(0.00513235 0.000339834 0)
(-0.00486864 -0.81374 0)
(-0.0324488 -0.822764 0)
(-0.0759369 -0.83231 0)
(-0.121999 -0.843335 0)
(-0.165293 -0.863598 0)
(-0.214203 -0.914994 0)
(-0.298984 -1.03383 0)
(-0.538963 -1.29377 0)
(-1.21841 -0.931214 0)
(-0.532591 0.809152 0)
(1.52477 0.917885 0)
(1.00321 0.362427 0)
(0.441035 0.41574 0)
(0.10237 0.151057 0)
(-0.197595 0.0802843 0)
(-0.148937 0.353228 0)
(0.0700671 0.267604 0)
(0.0906307 0.139133 0)
(0.0692931 0.0788273 0)
(0.0514004 0.0494175 0)
(0.0390522 0.0328523 0)
(0.0304783 0.0228007 0)
(0.0241748 0.0155969 0)
(0.0191463 0.0103895 0)
(0.0150739 0.00677877 0)
(0.0118053 0.00429886 0)
(0.00921017 0.00265348 0)
(0.00722169 0.00161837 0)
(0.00581761 0.000912665 0)
(0.00509818 0.000356921 0)
(-0.0100777 -0.782238 0)
(-0.0438596 -0.778532 0)
(-0.0845055 -0.783882 0)
(-0.132029 -0.796675 0)
(-0.187963 -0.816504 0)
(-0.261889 -0.854183 0)
(-0.386056 -0.922045 0)
(-0.656301 -1.00785 0)
(-1.26803 -0.785711 0)
(-0.495465 0.0380624 0)
(0.284617 0.195707 0)
(1.42341 0.702242 0)
(0.171402 0.654206 0)
(0.0275147 0.22055 0)
(-0.151531 0.142998 0)
(-0.12143 0.290313 0)
(0.0366792 0.243839 0)
(0.0716716 0.140851 0)
(0.0611044 0.0824538 0)
(0.0474602 0.0519235 0)
(0.0368913 0.0344416 0)
(0.0292173 0.0238221 0)
(0.0234655 0.0163172 0)
(0.0187609 0.0109312 0)
(0.0148767 0.00718268 0)
(0.0117049 0.00459798 0)
(0.00915764 0.00286977 0)
(0.00718177 0.00176389 0)
(0.00579097 0.000992615 0)
(0.00506255 0.00037801 0)
(-0.0140124 -0.73034 0)
(-0.0529081 -0.730294 0)
(-0.0935317 -0.733354 0)
(-0.143029 -0.740868 0)
(-0.205434 -0.752832 0)
(-0.289659 -0.770852 0)
(-0.418252 -0.790652 0)
(-0.634142 -0.773783 0)
(-0.926495 -0.553782 0)
(-0.839469 -0.212885 0)
(-0.827434 -0.190983 0)
(-0.660965 0.987398 0)
(-0.118459 0.586479 0)
(-0.0501903 0.257823 0)
(-0.130915 0.177338 0)
(-0.103219 0.248155 0)
(0.0116624 0.219821 0)
(0.0533264 0.139327 0)
(0.0521561 0.0849096 0)
(0.0429733 0.0540772 0)
(0.0344287 0.035936 0)
(0.0277839 0.0248077 0)
(0.0226318 0.0170335 0)
(0.0182894 0.0114843 0)
(0.0146225 0.0076034 0)
(0.0115677 0.00491484 0)
(0.00908427 0.00310007 0)
(0.00713224 0.00191894 0)
(0.0057584 0.00107914 0)
(0.00502289 0.000403326 0)
(-0.0126223 -0.67227 0)
(-0.0512581 -0.674118 0)
(-0.0961286 -0.675242 0)
(-0.148346 -0.676992 0)
(-0.212266 -0.679287 0)
(-0.295109 -0.679307 0)
(-0.408659 -0.667197 0)
(-0.563536 -0.611982 0)
(-0.721788 -0.450582 0)
(-0.759594 -0.238751 0)
(-0.835478 -0.0792053 0)
(-0.746657 0.446276 0)
(-0.256401 0.447344 0)
(-0.117134 0.260228 0)
(-0.12621 0.190815 0)
(-0.0931759 0.217779 0)
(-0.00713349 0.197031 0)
(0.0362397 0.13505 0)
(0.0427267 0.0860392 0)
(0.0379948 0.055753 0)
(0.0316643 0.0372701 0)
(0.0261666 0.0257333 0)
(0.0216661 0.0177339 0)
(0.0177266 0.012041 0)
(0.0143059 0.00803759 0)
(0.0113888 0.00524648 0)
(0.00898356 0.0033421 0)
(0.00706808 0.00208224 0)
(0.00571459 0.00117176 0)
(0.00497593 0.000432772 0)
(-0.0134346 -0.611989 0)
(-0.0521742 -0.611565 0)
(-0.0958445 -0.610362 0)
(-0.146722 -0.607751 0)
(-0.207602 -0.60219 0)
(-0.282436 -0.589854 0)
(-0.37571 -0.561699 0)
(-0.486338 -0.49917 0)
(-0.590207 -0.379589 0)
(-0.647184 -0.220298 0)
(-0.680714 -0.0356528 0)
(-0.579171 0.242939 0)
(-0.306833 0.318865 0)
(-0.16444 0.236963 0)
(-0.129647 0.188379 0)
(-0.0893175 0.19335 0)
(-0.0215546 0.17597 0)
(0.0208056 0.128579 0)
(0.0331195 0.0857625 0)
(0.0326091 0.0568321 0)
(0.0286073 0.0383729 0)
(0.0243579 0.0265701 0)
(0.0205646 0.0184034 0)
(0.0170698 0.0125927 0)
(0.0139241 0.00848031 0)
(0.0111675 0.00558958 0)
(0.00885381 0.00359387 0)
(0.00698756 0.00225239 0)
(0.00565898 0.00126975 0)
(0.004922 0.000466047 0)
(-0.0128936 -0.547351 0)
(-0.0496531 -0.54621 0)
(-0.091168 -0.543093 0)
(-0.138613 -0.537098 0)
(-0.193632 -0.526446 0)
(-0.258006 -0.50758 0)
(-0.332623 -0.473895 0)
(-0.413951 -0.415084 0)
(-0.488626 -0.321276 0)
(-0.537519 -0.194942 0)
(-0.5488 -0.0392924 0)
(-0.472652 0.136506 0)
(-0.310885 0.219063 0)
(-0.19079 0.200169 0)
(-0.135293 0.174379 0)
(-0.0893553 0.171354 0)
(-0.0329041 0.156457 0)
(0.00720914 0.12044 0)
(0.0236337 0.0840747 0)
(0.0269264 0.0572127 0)
(0.0252785 0.0391731 0)
(0.0223565 0.0272856 0)
(0.0193277 0.0190247 0)
(0.0163185 0.0131294 0)
(0.0134761 0.00892467 0)
(0.0109033 0.00594049 0)
(0.00869403 0.0038536 0)
(0.00688875 0.00242836 0)
(0.00559074 0.0013725 0)
(0.00486091 0.000502758 0)
(-0.0120291 -0.482083 0)
(-0.0456391 -0.480392 0)
(-0.0833106 -0.476057 0)
(-0.125729 -0.468197 0)
(-0.173638 -0.455179 0)
(-0.227517 -0.434175 0)
(-0.286828 -0.400724 0)
(-0.348204 -0.348935 0)
(-0.403551 -0.273493 0)
(-0.440637 -0.173623 0)
(-0.444711 -0.0532014 0)
(-0.39357 0.0698767 0)
(-0.293006 0.145455 0)
(-0.19963 0.159475 0)
(-0.139285 0.153009 0)
(-0.091112 0.150021 0)
(-0.0419326 0.138132 0)
(-0.00448462 0.11108 0)
(0.0145638 0.0810444 0)
(0.0210947 0.0568196 0)
(0.0217259 0.0396008 0)
(0.0201773 0.0278407 0)
(0.0179619 0.0195751 0)
(0.0154734 0.0136364 0)
(0.0129609 0.00936044 0)
(0.0105927 0.00629394 0)
(0.00850048 0.00411911 0)
(0.00676667 0.00260947 0)
(0.0055052 0.00147948 0)
(0.00478809 0.000542576 0)
(-0.0108094 -0.418592 0)
(-0.0404383 -0.416579 0)
(-0.0734387 -0.411696 0)
(-0.110142 -0.403256 0)
(-0.150745 -0.389919 0)
(-0.195088 -0.369553 0)
(-0.242189 -0.339177 0)
(-0.289286 -0.295251 0)
(-0.330955 -0.234673 0)
(-0.358802 -0.156755 0)
(-0.361988 -0.0654358 0)
(-0.329671 0.0257107 0)
(-0.265591 0.091641 0)
(-0.195898 0.120626 0)
(-0.139713 0.127992 0)
(-0.0928121 0.128743 0)
(-0.048984 0.120622 0)
(-0.0143108 0.100883 0)
(0.00615495 0.0767957 0)
(0.0152729 0.0556111 0)
(0.0180121 0.0395924 0)
(0.0178414 0.0281907 0)
(0.0164744 0.020027 0)
(0.0145348 0.0140969 0)
(0.0123754 0.00977751 0)
(0.0102299 0.00664512 0)
(0.0082683 0.00438945 0)
(0.00661556 0.00279651 0)
(0.00539785 0.00159139 0)
(0.0046991 0.00058567 0)
(-0.00940479 -0.358877 0)
(-0.0347425 -0.356742 0)
(-0.0628242 -0.351825 0)
(-0.0937465 -0.343711 0)
(-0.127431 -0.331351 0)
(-0.16347 -0.313144 0)
(-0.20085 -0.287059 0)
(-0.237391 -0.250893 0)
(-0.269304 -0.202817 0)
(-0.290887 -0.142608 0)
(-0.295058 -0.073375 0)
(-0.275839 -0.00383875 0)
(-0.234753 0.0523396 0)
(-0.184063 0.0863955 0)
(-0.136121 0.102282 0)
(-0.0932338 0.107676 0)
(-0.0541239 0.10373 0)
(-0.0222818 0.0901113 0)
(-0.00137417 0.0714906 0)
(0.00963874 0.0535831 0)
(0.0142248 0.0390964 0)
(0.0153829 0.0282905 0)
(0.0148766 0.0203523 0)
(0.0135043 0.0144951 0)
(0.0117172 0.0101686 0)
(0.00981122 0.00699075 0)
(0.00799491 0.00466458 0)
(0.00643328 0.00299108 0)
(0.00526706 0.00170966 0)
(0.00459131 0.000632244 0)
(-0.00800243 -0.304203 0)
(-0.0291826 -0.302117 0)
(-0.0525169 -0.297546 0)
(-0.0779875 -0.290328 0)
(-0.105424 -0.279635 0)
(-0.134381 -0.264245 0)
(-0.163974 -0.242744 0)
(-0.192544 -0.213717 0)
(-0.217427 -0.176081 0)
(-0.2348 -0.129838 0)
(-0.240118 -0.0771324 0)
(-0.229676 -0.023285 0)
(-0.203606 0.02378 0)
(-0.167548 0.0577163 0)
(-0.12894 0.0779231 0)
(-0.0917254 0.087339 0)
(-0.0573127 0.087448 0)
(-0.0284279 0.0790297 0)
(-0.00787034 0.0653479 0)
(0.00436588 0.0507718 0)
(0.0104651 0.038082 0)
(0.0128455 0.0281012 0)
(0.0131843 0.0205249 0)
(0.0123864 0.0148164 0)
(0.0109856 0.0105275 0)
(0.00933384 0.00732773 0)
(0.00767788 0.00494354 0)
(0.00621833 0.00319361 0)
(0.00511155 0.00183467 0)
(0.00446337 0.000681812 0)
(-0.00673343 -0.254896 0)
(-0.024231 -0.253189 0)
(-0.0432701 -0.249417 0)
(-0.0638056 -0.24345 0)
(-0.0857339 -0.234676 0)
(-0.108708 -0.222197 0)
(-0.13203 -0.205021 0)
(-0.154466 -0.182219 0)
(-0.174154 -0.153115 0)
(-0.188525 -0.117758 0)
(-0.194605 -0.077505 0)
(-0.189886 -0.0355579 0)
(-0.173807 0.00331344 0)
(-0.14877 0.0345782 0)
(-0.119008 0.0561434 0)
(-0.0881219 0.0683343 0)
(-0.0585322 0.0719341 0)
(-0.0327787 0.0678904 0)
(-0.0131977 0.0585642 0)
(-0.000379298 0.0472499 0)
(0.00684641 0.036545 0)
(0.0102883 0.0275949 0)
(0.0114251 0.0205215 0)
(0.0111948 0.0150465 0)
(0.0101866 0.0108458 0)
(0.00879988 0.00765008 0)
(0.00731787 0.0052225 0)
(0.00597004 0.00340134 0)
(0.00492983 0.00196489 0)
(0.00431356 0.000733378 0)
(-0.00551694 -0.211055 0)
(-0.0196023 -0.210071 0)
(-0.0348417 -0.207534 0)
(-0.0511638 -0.203038 0)
(-0.0684891 -0.196154 0)
(-0.0865658 -0.186332 0)
(-0.104885 -0.172926 0)
(-0.12256 -0.155314 0)
(-0.138296 -0.133044 0)
(-0.150354 -0.106125 0)
(-0.156731 -0.0753645 0)
(-0.155631 -0.0426701 0)
(-0.146238 -0.0109819 0)
(-0.129361 0.0165163 0)
(-0.107256 0.0375321 0)
(-0.0826055 0.0511712 0)
(-0.0578563 0.0574326 0)
(-0.0353879 0.0569503 0)
(-0.017278 0.0513769 0)
(-0.00446502 0.0431523 0)
(0.00348733 0.0345089 0)
(0.00778176 0.026757 0)
(0.00963533 0.0203227 0)
(0.00994561 0.0151701 0)
(0.00932621 0.0111117 0)
(0.00821076 0.00794988 0)
(0.00691337 0.0054965 0)
(0.00568607 0.00361028 0)
(0.00471893 0.00209783 0)
(0.00413881 0.000785939 0)
(-0.00431353 -0.173685 0)
(-0.0152112 -0.173202 0)
(-0.0271089 -0.171642 0)
(-0.0399327 -0.168466 0)
(-0.0535594 -0.163316 0)
(-0.0677593 -0.155836 0)
(-0.0821537 -0.145605 0)
(-0.0961209 -0.13221 0)
(-0.108774 -0.115333 0)
(-0.118929 -0.0949386 0)
(-0.125209 -0.0714779 0)
(-0.126292 -0.0460743 0)
(-0.121333 -0.020553 0)
(-0.110391 0.00288559 0)
(-0.0945464 0.0222371 0)
(-0.0755625 0.0361925 0)
(-0.0554666 0.0442075 0)
(-0.0363501 0.0464733 0)
(-0.0200781 0.0440293 0)
(-0.0077663 0.0386091 0)
(0.000505808 0.0320244 0)
(0.00540546 0.0255903 0)
(0.0078592 0.0199161 0)
(0.00866104 0.0151738 0)
(0.00841407 0.0113138 0)
(0.00756887 0.00821962 0)
(0.00646194 0.00576007 0)
(0.00536311 0.00381742 0)
(0.00447504 0.00223154 0)
(0.00393552 0.000838735 0)
(-0.00331827 -0.142819 0)
(-0.0115954 -0.142538 0)
(-0.0206924 -0.141508 0)
(-0.0305681 -0.13927 0)
(-0.0411216 -0.135515 0)
(-0.0521712 -0.129971 0)
(-0.0634346 -0.122332 0)
(-0.0744661 -0.112302 0)
(-0.0846481 -0.0996468 0)
(-0.0931638 -0.0842993 0)
(-0.0990511 -0.066486 0)
(-0.101333 -0.0468554 0)
(-0.0992481 -0.0265363 0)
(-0.0925304 -0.00702058 0)
(-0.0815872 0.0101114 0)
(-0.0674606 0.0235468 0)
(-0.0516351 0.0324728 0)
(-0.0358119 0.0367031 0)
(-0.0216153 0.0367623 0)
(-0.0102066 0.033794 0)
(-0.00200406 0.0291862 0)
(0.00324113 0.0241187 0)
(0.00614725 0.0192996 0)
(0.00736794 0.0150493 0)
(0.00746197 0.0114437 0)
(0.00687788 0.00845322 0)
(0.00596318 0.00600754 0)
(0.00499812 0.00401987 0)
(0.0041947 0.00236436 0)
(0.00370022 0.000891165 0)
(-0.00253161 -0.117575 0)
(-0.00876192 -0.117388 0)
(-0.0156285 -0.116666 0)
(-0.0231195 -0.115053 0)
(-0.0311726 -0.112316 0)
(-0.0396593 -0.108249 0)
(-0.048377 -0.102624 0)
(-0.0570109 -0.0952134 0)
(-0.0651321 -0.085823 0)
(-0.0721743 -0.0743617 0)
(-0.0774607 -0.0609186 0)
(-0.0802692 -0.0458507 0)
(-0.0799626 -0.0298454 0)
(-0.0761641 -0.0138903 0)
(-0.0689175 0.000839919 0)
(-0.0587648 0.0132157 0)
(-0.0466867 0.0223612 0)
(-0.0339685 0.0278475 0)
(-0.0219541 0.0298032 0)
(-0.0117476 0.0288907 0)
(-0.0039557 0.0260945 0)
(0.00136767 0.0223889 0)
(0.00455374 0.0184854 0)
(0.00609773 0.0147942 0)
(0.00648587 0.0114959 0)
(0.00614315 0.00864517 0)
(0.00541663 0.00623422 0)
(0.00458837 0.00421391 0)
(0.00387506 0.00249442 0)
(0.00342893 0.00094295 0)
(-0.0019151 -0.0970755 0)
(-0.00658329 -0.0969341 0)
(-0.0117339 -0.0963998 0)
(-0.0173615 -0.09522 0)
(-0.0234254 -0.0932257 0)
(-0.0298408 -0.0902639 0)
(-0.0364762 -0.0861594 0)
(-0.0431227 -0.0807316 0)
(-0.0494914 -0.0738153 0)
(-0.0551938 -0.0653079 0)
(-0.0597536 -0.0552171 0)
(-0.0626405 -0.0437219 0)
(-0.0633428 -0.031226 0)
(-0.0614785 -0.0183666 0)
(-0.0569185 -0.0059736 0)
(-0.0498816 0.00505515 0)
(-0.0409582 0.0139139 0)
(-0.0310486 0.0200617 0)
(-0.0212021 0.0233562 0)
(-0.0123915 0.024088 0)
(-0.00528838 0.0228801 0)
(-0.000145427 0.020467 0)
(0.0031327 0.0175024 0)
(0.00488555 0.0144163 0)
(0.00550378 0.0114694 0)
(0.00537202 0.00879126 0)
(0.00482318 0.00643553 0)
(0.00413189 0.0043961 0)
(0.00351219 0.00261931 0)
(0.00311849 0.000993453 0)
(-0.00144001 -0.0804804 0)
(-0.00490789 -0.0803943 0)
(-0.00872017 -0.0800326 0)
(-0.0128759 -0.0792016 0)
(-0.0173593 -0.0777729 0)
(-0.0221243 -0.0756308 0)
(-0.0270889 -0.0726438 0)
(-0.0321166 -0.0686742 0)
(-0.0370155 -0.0635882 0)
(-0.041522 -0.0572857 0)
(-0.0453046 -0.0497307 0)
(-0.0479809 -0.040994 0)
(-0.0491577 -0.0312975 0)
(-0.0484985 -0.0210342 0)
(-0.0458097 -0.0107678 0)
(-0.0411232 -0.00117114 0)
(-0.0347568 0.00708198 0)
(-0.0272918 0.0134339 0)
(-0.0194991 0.0175866 0)
(-0.0121783 0.0195629 0)
(-0.00597534 0.0196856 0)
(-0.00125104 0.0184564 0)
(0.00193413 0.0163972 0)
(0.00376418 0.0139353 0)
(0.00453528 0.0113696 0)
(0.00457308 0.00889007 0)
(0.00418418 0.00660772 0)
(0.00362628 0.00456301 0)
(0.00310313 0.00273675 0)
(0.00276464 0.00104159 0)
(-0.00103706 -0.0673691 0)
(-0.00351268 -0.0673265 0)
(-0.00625181 -0.06709 0)
(-0.00925804 -0.0665034 0)
(-0.0125181 -0.0654724 0)
(-0.015999 -0.0639149 0)
(-0.0196468 -0.0617337 0)
(-0.0233725 -0.0588237 0)
(-0.0270511 -0.055076 0)
(-0.0305076 -0.050397 0)
(-0.0335184 -0.04473 0)
(-0.0358163 -0.0380831 0)
(-0.0371122 -0.0305644 0)
(-0.0371343 -0.0224039 0)
(-0.0356848 -0.0139688 0)
(-0.0327064 -0.00573806 0)
(-0.0283355 0.0017515 0)
(-0.022925 0.00799403 0)
(-0.0170021 0.0126205 0)
(-0.0111803 0.0154793 0)
(-0.00602091 0.0166617 0)
(-0.00191042 0.016454 0)
(0.000997467 0.0152359 0)
(0.00276542 0.0133842 0)
(0.00359764 0.0112092 0)
(0.00375499 0.00894387 0)
(0.00350204 0.0067487 0)
(0.00307007 0.00471016 0)
(0.00264475 0.00284382 0)
(0.00236401 0.00108572 0)
(-0.000723142 -0.057403 0)
(-0.00244614 -0.0573473 0)
(-0.00435379 -0.0571386 0)
(-0.00645111 -0.0566849 0)
(-0.00873174 -0.0559189 0)
(-0.0111761 -0.0547717 0)
(-0.0137517 -0.0531651 0)
(-0.0164029 -0.0510141 0)
(-0.0190505 -0.0482262 0)
(-0.0215823 -0.0447156 0)
(-0.023852 -0.0404187 0)
(-0.0256799 -0.0353117 0)
(-0.0268629 -0.0294344 0)
(-0.0271976 -0.0229113 0)
(-0.0265151 -0.0159707 0)
(-0.0247267 -0.00894277 0)
(-0.0218695 -0.00223504 0)
(-0.0181358 0.00371995 0)
(-0.0138637 0.00854193 0)
(-0.00948973 0.011979 0)
(-0.00545711 0.0139576 0)
(-0.00211584 0.014585 0)
(0.000347419 0.0141015 0)
(0.00191084 0.0128103 0)
(0.00270604 0.0110098 0)
(0.00292366 0.00895916 0)
(0.00277768 0.00685797 0)
(0.00246187 0.00483446 0)
(0.00213408 0.00293693 0)
(0.00191343 0.00112466 0)
(-0.000487088 -0.0499048 0)
(-0.00164682 -0.0499048 0)
(-0.00291034 -0.0498051 0)
(-0.00427706 -0.0495 0)
(-0.00574918 -0.0489332 0)
(-0.00732521 -0.0480612 0)
(-0.008997 -0.04683 0)
(-0.0107379 -0.0451759 0)
(-0.0125008 -0.0430273 0)
(-0.0142151 -0.0403115 0)
(-0.0157879 -0.0369632 0)
(-0.0171037 -0.0329399 0)
(-0.0180292 -0.0282398 0)
(-0.0184258 -0.0229207 0)
(-0.0181691 -0.0171201 0)
(-0.0171771 -0.0110605 0)
(-0.0154415 -0.0050464 0)
(-0.013054 0.000562881 0)
(-0.0102162 0.00540797 0)
(-0.00720766 0.0091879 0)
(-0.00434135 0.011722 0)
(-0.00188837 0.0129834 0)
(-1.97639e-05 0.0130907 0)
(0.00120811 0.0122748 0)
(0.00186642 0.0108031 0)
(0.00208262 0.00894747 0)
(0.00201132 0.00693638 0)
(0.00179952 0.00493268 0)
(0.00156862 0.00301266 0)
(0.00141003 0.00115673 0)
(-0.000248371 -0.0450591 0)
(-0.000836185 -0.0450636 0)
(-0.00150256 -0.0449864 0)
(-0.00225292 -0.0447372 0)
(-0.00308275 -0.0442723 0)
(-0.00398245 -0.043562 0)
(-0.00493878 -0.0425648 0)
(-0.0059312 -0.0412252 0)
(-0.00693373 -0.0394797 0)
(-0.00791213 -0.0372643 0)
(-0.00882031 -0.0345172 0)
(-0.00959787 -0.0311881 0)
(-0.0101721 -0.0272532 0)
(-0.0104648 -0.0227314 0)
(-0.0104018 -0.0177043 0)
(-0.00992864 -0.0123267 0)
(-0.00902809 -0.00683267 0)
(-0.00773628 -0.00152412 0)
(-0.00615147 0.00326848 0)
(-0.00443146 0.00722743 0)
(-0.00275318 0.0101059 0)
(-0.00128061 0.0117923 0)
(-0.00013144 0.0123198 0)
(0.000642358 0.0118507 0)
(0.00107174 0.0106284 0)
(0.00122687 0.0089245 0)
(0.00119992 0.00698633 0)
(0.00108116 0.00500117 0)
(0.000945868 0.00306702 0)
(0.00085178 0.00117996 0)
(-2.13241e-05 -0.0426706 0)
(-7.18446e-05 -0.0426227 0)
(-0.000131464 -0.0424814 0)
(-0.000200075 -0.042212 0)
(-0.000276159 -0.0417815 0)
(-0.000358387 -0.0411513 0)
(-0.00044513 -0.0402763 0)
(-0.000534298 -0.0391038 0)
(-0.000624008 -0.0375727 0)
(-0.000711811 -0.0356194 0)
(-0.000793646 -0.0331824 0)
(-0.000864061 -0.0302091 0)
(-0.000916839 -0.0266685 0)
(-0.000945288 -0.0225632 0)
(-0.000942826 -0.0179479 0)
(-0.000904347 -0.0129421 0)
(-0.000829641 -0.00773863 0)
(-0.00073843 -0.00259874 0)
(-0.00069048 0.002139 0)
(-0.000522238 0.0061544 0)
(-0.000332604 0.00919574 0)
(-0.000159459 0.0111064 0)
(-2.19703e-05 0.0118666 0)
(7.18015e-05 0.0115962 0)
(0.00012427 0.0105198 0)
(0.000143631 0.00890621 0)
(0.000140909 0.00701238 0)
(0.000126834 0.00503931 0)
(0.000110864 0.00309782 0)
(9.95776e-05 0.00119329 0)
(-0.000190659 1.30287e-05 0)
(-0.000495643 2.29609e-05 0)
(-0.00100209 4.27832e-05 0)
(-0.00184003 7.70148e-05 0)
(-0.00316364 0.000131631 0)
(-0.0051474 0.000213428 0)
(-0.00797186 0.000328986 0)
(-0.0117995 0.000482839 0)
(-0.0167411 0.000674705 0)
(-0.0228122 0.000895695 0)
(-0.029887 0.00112443 0)
(-0.0376594 0.00132492 0)
(-0.0456381 0.0014491 0)
(-0.0531879 0.00144578 0)
(-0.0596234 0.00127445 0)
(-0.064339 0.000918732 0)
(-0.0669232 0.000393062 0)
(-0.0672264 -0.000261107 0)
(-0.0653569 -0.000986216 0)
(-0.0616216 -0.00172289 0)
(-0.0564403 -0.00242064 0)
(-0.0502669 -0.00304368 0)
(-0.0435185 -0.00357256 0)
(-0.0365521 -0.00400073 0)
(-0.0296381 -0.00433198 0)
(-0.0229749 -0.00457567 0)
(-0.016688 -0.00474439 0)
(-0.0108515 -0.0048513 0)
(-0.00549596 -0.00490896 0)
(-0.000631008 -0.00492887 0)
(-0.000190032 2.93859e-05 0)
(-0.000494 5.17835e-05 0)
(-0.000998756 9.64921e-05 0)
(-0.00183391 0.0001737 0)
(-0.00315314 0.000296902 0)
(-0.00513045 0.000481465 0)
(-0.00794608 0.000742304 0)
(-0.0117626 0.00108982 0)
(-0.0166922 0.00152367 0)
(-0.0227532 0.00202425 0)
(-0.029825 0.0025439 0)
(-0.0376091 0.00300177 0)
(-0.0456222 0.00328921 0)
(-0.0532345 0.00328945 0)
(-0.0597599 0.00290894 0)
(-0.0645846 0.00210833 0)
(-0.0672824 0.000918612 0)
(-0.0676876 -0.000566574 0)
(-0.0658946 -0.00221615 0)
(-0.0622027 -0.00389396 0)
(-0.0570301 -0.00548433 0)
(-0.0508342 -0.00690479 0)
(-0.0440386 -0.00811081 0)
(-0.0370077 -0.00908715 0)
(-0.0300187 -0.00984239 0)
(-0.0232764 -0.010398 0)
(-0.0169101 -0.0107825 0)
(-0.0109971 -0.0110261 0)
(-0.00557011 -0.0111579 0)
(-0.00063953 -0.0112025 0)
(-0.000188854 4.56629e-05 0)
(-0.000490914 8.04628e-05 0)
(-0.000992494 0.00014993 0)
(-0.0018224 0.000269901 0)
(-0.00313341 0.000461354 0)
(-0.00509858 0.000748203 0)
(-0.00789751 0.00115371 0)
(-0.011693 0.00169425 0)
(-0.0165992 0.00236974 0)
(-0.0226394 0.00315047 0)
(-0.0297025 0.00396347 0)
(-0.0375034 0.00468411 0)
(-0.045573 0.00514384 0)
(-0.0532921 0.00515977 0)
(-0.0599744 0.00458306 0)
(-0.0649921 0.00334794 0)
(-0.0678933 0.0014984 0)
(-0.068483 -0.000821914 0)
(-0.0668305 -0.0034084 0)
(-0.0632202 -0.00604638 0)
(-0.0580672 -0.00855213 0)
(-0.0518348 -0.0107938 0)
(-0.0449579 -0.0126991 0)
(-0.0378142 -0.0142431 0)
(-0.0306935 -0.0154383 0)
(-0.0238109 -0.0163177 0)
(-0.0173041 -0.0169268 0)
(-0.0112556 -0.0173127 0)
(-0.00570155 -0.0175209 0)
(-0.000654679 -0.0175916 0)
(-0.000187168 6.18183e-05 0)
(-0.000486496 0.000108923 0)
(-0.000983526 0.000202959 0)
(-0.00180592 0.000365368 0)
(-0.00310515 0.000624563 0)
(-0.00505293 0.00101297 0)
(-0.00782791 0.00156222 0)
(-0.0115931 0.00229482 0)
(-0.0164655 0.00321143 0)
(-0.0224756 0.0042732 0)
(-0.0295254 0.0053833 0)
(-0.0373487 0.00637509 0)
(-0.0454978 0.0070212 0)
(-0.0533689 0.00707185 0)
(-0.0602764 0.00631953 0)
(-0.0655732 0.00466652 0)
(-0.068771 0.0021642 0)
(-0.0696315 -0.00099748 0)
(-0.0681872 -0.00454019 0)
(-0.0646998 -0.00816843 0)
(-0.0595788 -0.0116258 0)
(-0.0532958 -0.0147264 0)
(-0.046302 -0.0173669 0)
(-0.0389946 -0.0195096 0)
(-0.0316817 -0.0211699 0)
(-0.0245943 -0.0223926 0)
(-0.0178816 -0.0232398 0)
(-0.0116347 -0.0237766 0)
(-0.00589446 -0.0240665 0)
(-0.000676833 -0.0241648 0)
(-0.000184977 7.78043e-05 0)
(-0.000480757 0.000137083 0)
(-0.000971876 0.000255428 0)
(-0.00178452 0.000459838 0)
(-0.00306844 0.000786084 0)
(-0.00499361 0.00127506 0)
(-0.00773742 0.00196679 0)
(-0.0114632 0.00289014 0)
(-0.0162912 0.00404713 0)
(-0.0222613 0.00539104 0)
(-0.0292922 0.0068032 0)
(-0.0371423 0.00807734 0)
(-0.0453919 0.00892886 0)
(-0.0534586 0.0090403 0)
(-0.0606592 0.00814098 0)
(-0.0663231 0.00609373 0)
(-0.0699149 0.00294935 0)
(-0.071139 -0.00106082 0)
(-0.0699776 -0.00558626 0)
(-0.0666607 -0.0102461 0)
(-0.0615887 -0.0147054 0)
(-0.0552433 -0.0187177 0)
(-0.0480971 -0.0221433 0)
(-0.0405732 -0.0249285 0)
(-0.0330049 -0.0270896 0)
(-0.025644 -0.0286828 0)
(-0.018656 -0.0297874 0)
(-0.012143 -0.0304878 0)
(-0.00615333 -0.0308658 0)
(-0.000706735 -0.0309941 0)
(-0.000182289 9.35769e-05 0)
(-0.000473713 0.000164864 0)
(-0.000957578 0.000307198 0)
(-0.00175824 0.000553055 0)
(-0.00302337 0.000945483 0)
(-0.00492077 0.00153378 0)
(-0.00762623 0.00236638 0)
(-0.0113033 0.0034788 0)
(-0.0160763 0.00487517 0)
(-0.021996 0.00650246 0)
(-0.0290013 0.0082227 0)
(-0.0368808 0.00979303 0)
(-0.0452493 0.0108739 0)
(-0.0535527 0.0110793 0)
(-0.0611137 0.0100702 0)
(-0.0672349 0.00766031 0)
(-0.0713238 0.00388945 0)
(-0.073013 -0.000977184 0)
(-0.0722188 -0.00651773 0)
(-0.0691286 -0.012262 0)
(-0.0641292 -0.0177885 0)
(-0.0577129 -0.0227817 0)
(-0.0503791 -0.0270583 0)
(-0.0425839 -0.0305438 0)
(-0.0346923 -0.0332531 0)
(-0.0269839 -0.035253 0)
(-0.0196451 -0.0366406 0)
(-0.0127927 -0.0375211 0)
(-0.00648415 -0.0379965 0)
(-0.000744891 -0.0381578 0)
(-0.000179111 0.000109095 0)
(-0.000465383 0.000192195 0)
(-0.00094067 0.00035813 0)
(-0.00172717 0.000644767 0)
(-0.00297006 0.00110233 0)
(-0.00483458 0.00178843 0)
(-0.00749459 0.00275996 0)
(-0.0111137 0.00405938 0)
(-0.0158209 0.00569382 0)
(-0.0216792 0.00760579 0)
(-0.0286509 0.00964101 0)
(-0.0365597 0.0115238 0)
(-0.0450627 0.0128625 0)
(-0.0536409 0.0132026 0)
(-0.0616281 0.01213 0)
(-0.0682993 0.00939836 0)
(-0.0729956 0.00502293 0)
(-0.0752618 -0.000706992 0)
(-0.0749316 -0.00730102 0)
(-0.072136 -0.0141945 0)
(-0.0672411 -0.0208698 0)
(-0.0607501 -0.0269312 0)
(-0.0531942 -0.0321426 0)
(-0.0450698 -0.0364022 0)
(-0.0367822 -0.0397203 0)
(-0.0286454 -0.0421734 0)
(-0.0208724 -0.0438772 0)
(-0.0135993 -0.0449591 0)
(-0.00689491 -0.0455434 0)
(-0.000792138 -0.0457416 0)
(-0.000175452 0.000124321 0)
(-0.000455792 0.000219003 0)
(-0.000921198 0.000408083 0)
(-0.00169139 0.000734721 0)
(-0.00290865 0.00125619 0)
(-0.00473527 0.00203835 0)
(-0.00734278 0.00314653 0)
(-0.0108948 0.00463048 0)
(-0.0155251 0.00650134 0)
(-0.0213102 0.00869923 0)
(-0.0282386 0.011057 0)
(-0.0361742 0.0132707 0)
(-0.0448229 0.0149004 0)
(-0.0537103 0.015423 0)
(-0.062188 0.0143435 0)
(-0.0695044 0.0113417 0)
(-0.0749264 0.00639188 0)
(-0.0778948 -0.000206577 0)
(-0.078141 -0.00789653 0)
(-0.0757225 -0.0160164 0)
(-0.0709753 -0.0239399 0)
(-0.0644122 -0.0311772 0)
(-0.0566007 -0.0374277 0)
(-0.0480862 -0.042554 0)
(-0.0393229 -0.0465572 0)
(-0.0306682 -0.0495221 0)
(-0.0223682 -0.0515841 0)
(-0.0145826 -0.0528943 0)
(-0.00739609 -0.0536024 0)
(-0.000849974 -0.0538426 0)
(-0.000171323 0.000139209 0)
(-0.000444964 0.000245209 0)
(-0.000899216 0.000456915 0)
(-0.00165099 0.00082267 0)
(-0.00283931 0.00140666 0)
(-0.00462307 0.00228285 0)
(-0.00717112 0.00352506 0)
(-0.0106468 0.00519066 0)
(-0.0151889 0.00729587 0)
(-0.0208884 0.00978072 0)
(-0.0277621 0.0124691 0)
(-0.0357185 0.0150339 0)
(-0.04452 0.016992 0)
(-0.0537459 0.0177525 0)
(-0.0627754 0.0167334 0)
(-0.0708344 0.0135256 0)
(-0.0771095 0.00804243 0)
(-0.0809213 0.000577668 0)
(-0.0818753 -0.00825689 0)
(-0.0799354 -0.0176932 0)
(-0.0753938 -0.0269837 0)
(-0.0687695 -0.035528 0)
(-0.060671 -0.0429458 0)
(-0.0517016 -0.0490532 0)
(-0.0423751 -0.0538364 0)
(-0.033102 -0.0573863 0)
(-0.0241698 -0.0598587 0)
(-0.0157681 -0.0614313 0)
(-0.00800038 -0.0622813 0)
(-0.000919651 -0.0625698 0)
(-0.000166735 0.000153717 0)
(-0.000432929 0.000270745 0)
(-0.000874781 0.000504501 0)
(-0.00160608 0.000908382 0)
(-0.00276221 0.00155333 0)
(-0.00449826 0.00252128 0)
(-0.00698 0.00389455 0)
(-0.0103701 0.00573849 0)
(-0.0148125 0.00807553 0)
(-0.0204131 0.0108481 0)
(-0.0272188 0.0138753 0)
(-0.0351865 0.0168128 0)
(-0.0441423 0.0191403 0)
(-0.0537302 0.0202019 0)
(-0.0633688 0.0193225 0)
(-0.0722693 0.0159875 0)
(-0.0795351 0.0100257 0)
(-0.0843495 0.00170201 0)
(-0.0861667 -0.00832555 0)
(-0.0848303 -0.019181 0)
(-0.080571 -0.0299794 0)
(-0.0739078 -0.0399886 0)
(-0.0654941 -0.0487298 0)
(-0.056001 -0.055959 0)
(-0.0460143 -0.0616393 0)
(-0.0360093 -0.0658651 0)
(-0.0263244 -0.068813 0)
(-0.0171868 -0.0706899 0)
(-0.00872372 -0.0717053 0)
(-0.00100308 -0.0720501 0)
(-0.000161701 0.000167813 0)
(-0.00041972 0.000295544 0)
(-0.000847961 0.000550711 0)
(-0.00155678 0.000991615 0)
(-0.00267756 0.00169579 0)
(-0.00436117 0.00275299 0)
(-0.00676986 0.004254 0)
(-0.0100653 0.00627253 0)
(-0.0143962 0.00883833 0)
(-0.0198837 0.0118987 0)
(-0.026606 0.0152728 0)
(-0.0345716 0.0186057 0)
(-0.0436771 0.021347 0)
(-0.053643 0.0227802 0)
(-0.0639423 0.0221323 0)
(-0.0737839 0.0187662 0)
(-0.0821886 0.012398 0)
(-0.0881865 0.00323576 0)
(-0.0910502 -0.00803397 0)
(-0.0904716 -0.0204242 0)
(-0.0865955 -0.0328953 0)
(-0.0799307 -0.0445586 0)
(-0.0711783 -0.0548128 0)
(-0.0610887 -0.0633357 0)
(-0.0503335 -0.0700576 0)
(-0.039467 -0.0750714 0)
(-0.0288908 -0.0785756 0)
(-0.0188781 -0.0808096 0)
(-0.00958657 -0.0820189 0)
(-0.00110258 -0.0824295 0)
(-0.000156236 0.000181454 0)
(-0.000405374 0.000319531 0)
(-0.000818831 0.000595409 0)
(-0.00150322 0.00107214 0)
(-0.00258558 0.00183365 0)
(-0.00421215 0.00297735 0)
(-0.00654117 0.00460243 0)
(-0.00973296 0.0067913 0)
(-0.0139404 0.00958223 0)
(-0.0192997 0.0129301 0)
(-0.025921 0.0166586 0)
(-0.0338667 0.0204098 0)
(-0.0431105 0.023612 0)
(-0.0534615 0.0254942 0)
(-0.0644656 0.0251834 0)
(-0.0753466 0.0219021 0)
(-0.0850487 0.0152218 0)
(-0.0924349 0.00525763 0)
(-0.0965629 -0.00729911 0)
(-0.0969332 -0.0213522 0)
(-0.0935718 -0.0356881 0)
(-0.0869625 -0.0492308 0)
(-0.0778557 -0.061227 0)
(-0.0670925 -0.0712539 0)
(-0.0554477 -0.0791947 0)
(-0.0435709 -0.0851355 0)
(-0.0319417 -0.0892964 0)
(-0.0208908 -0.0919526 0)
(-0.0106138 -0.0933916 0)
(-0.00122093 -0.09388 0)
(-0.000150355 0.000194601 0)
(-0.000389929 0.000342642 0)
(-0.000787468 0.00063848 0)
(-0.00144556 0.00114973 0)
(-0.00248653 0.00196653 0)
(-0.00405156 0.00319374 0)
(-0.00629447 0.00493888 0)
(-0.00937357 0.00729338 0)
(-0.0134455 0.0103051 0)
(-0.0186608 0.0139391 0)
(-0.0251612 0.0180289 0)
(-0.0330648 0.0222211 0)
(-0.0424275 0.0259331 0)
(-0.0531606 0.0283486 0)
(-0.0649033 0.0284945 0)
(-0.0769183 0.0254366 0)
(-0.0880863 0.0185659 0)
(-0.0970926 0.00785963 0)
(-0.102744 -0.00601994 0)
(-0.104299 -0.0218756 0)
(-0.101624 -0.0382985 0)
(-0.0951534 -0.0539888 0)
(-0.0856869 -0.0680041 0)
(-0.0741697 -0.0797913 0)
(-0.0614987 -0.0891693 0)
(-0.0484398 -0.0962092 0)
(-0.0355679 -0.101152 0)
(-0.0232857 -0.104312 0)
(-0.0118369 -0.106025 0)
(-0.0013621 -0.106607 0)
(-0.000144075 0.000207227 0)
(-0.000373427 0.000364821 0)
(-0.000753958 0.000679808 0)
(-0.00138395 0.00122419 0)
(-0.00238065 0.00209409 0)
(-0.00387982 0.00340156 0)
(-0.00603033 0.00526241 0)
(-0.0089879 0.00777732 0)
(-0.0129121 0.0110048 0)
(-0.0179667 0.0149227 0)
(-0.0243243 0.0193792 0)
(-0.0321586 0.0240342 0)
(-0.0416127 0.0283059 0)
(-0.0527122 0.0313445 0)
(-0.0652142 0.0320815 0)
(-0.0784506 0.0294113 0)
(-0.0912612 0.0225054 0)
(-0.102149 0.0111483 0)
(-0.109631 -0.00407415 0)
(-0.112664 -0.0218813 0)
(-0.110896 -0.0406469 0)
(-0.104683 -0.0588033 0)
(-0.0948671 -0.075172 0)
(-0.0825127 -0.0890329 0)
(-0.0686617 -0.100117 0)
(-0.054221 -0.10847 0)
(-0.0398827 -0.11435 0)
(-0.0261394 -0.118116 0)
(-0.0132953 -0.12016 0)
(-0.00153015 -0.120854 0)
(-0.000137416 0.000219289 0)
(-0.000355914 0.000385996 0)
(-0.000718395 0.000719268 0)
(-0.00131854 0.0012953 0)
(-0.00226825 0.00221593 0)
(-0.00369739 0.00360022 0)
(-0.00574941 0.00557208 0)
(-0.00857676 0.00824165 0)
(-0.0123409 0.0116791 0)
(-0.0172175 0.0158775 0)
(-0.023408 0.0207047 0)
(-0.0311412 0.0258425 0)
(-0.0406498 0.0307231 0)
(-0.0520863 0.0344791 0)
(-0.0653515 0.0359559 0)
(-0.0798849 0.0338665 0)
(-0.0945193 0.0271217 0)
(-0.107581 0.0152468 0)
(-0.117259 -0.00131528 0)
(-0.122131 -0.0212261 0)
(-0.121557 -0.0426269 0)
(-0.115766 -0.0636275 0)
(-0.105633 -0.0827535 0)
(-0.092357 -0.0990708 0)
(-0.0771533 -0.112193 0)
(-0.0610983 -0.122124 0)
(-0.0450283 -0.129137 0)
(-0.0295478 -0.133639 0)
(-0.0150387 -0.136085 0)
(-0.00173091 -0.136916 0)
(-0.000130397 0.000230754 0)
(-0.000337439 0.000406113 0)
(-0.000680875 0.000756758 0)
(-0.00124953 0.00136287 0)
(-0.00214961 0.00233175 0)
(-0.00350474 0.00378918 0)
(-0.00545239 0.00586702 0)
(-0.00814101 0.00868498 0)
(-0.0117327 0.0123258 0)
(-0.0164134 0.0167998 0)
(-0.0224107 0.0219995 0)
(-0.030006 0.0276377 0)
(-0.0395228 0.033175 0)
(-0.0512505 0.0377454 0)
(-0.0652619 0.0401246 0)
(-0.08115 0.0388402 0)
(-0.0977894 0.0325019 0)
(-0.11335 0.0202973 0)
(-0.125655 0.00244021 0)
(-0.132817 -0.0197288 0)
(-0.133807 -0.0440981 0)
(-0.12866 -0.0683918 0)
(-0.118272 -0.0907638 0)
(-0.103993 -0.110006 0)
(-0.0872429 -0.125576 0)
(-0.0693027 -0.137418 0)
(-0.0511849 -0.145812 0)
(-0.0336337 -0.151215 0)
(-0.0171304 -0.154155 0)
(-0.00197152 -0.155154 0)
(-0.000123039 0.0002416 0)
(-0.000318051 0.000425123 0)
(-0.000641498 0.000792179 0)
(-0.0011771 0.00142672 0)
(-0.00202506 0.00244123 0)
(-0.00330236 0.00396791 0)
(-0.00514 0.00614634 0)
(-0.00768161 0.00910591 0)
(-0.0110887 0.0129425 0)
(-0.015555 0.0176859 0)
(-0.0213311 0.0232577 0)
(-0.0287471 0.0294103 0)
(-0.0382156 0.0356486 0)
(-0.0501709 0.041131 0)
(-0.064886 0.0445871 0)
(-0.0821612 0.0443653 0)
(-0.100979 0.0387372 0)
(-0.119393 0.0264625 0)
(-0.134835 0.00740859 0)
(-0.144846 -0.017161 0)
(-0.147878 -0.0448747 0)
(-0.143678 -0.0729961 0)
(-0.133136 -0.0992061 0)
(-0.117777 -0.121945 0)
(-0.0992656 -0.140471 0)
(-0.0791254 -0.154641 0)
(-0.0585827 -0.164731 0)
(-0.0385556 -0.171248 0)
(-0.0196536 -0.174802 0)
(-0.00226133 -0.17601 0)
(-0.000115364 0.000251792 0)
(-0.000297804 0.000442965 0)
(-0.000600376 0.000825428 0)
(-0.00110145 0.00148665 0)
(-0.00189494 0.00254404 0)
(-0.00309081 0.00413588 0)
(-0.00481306 0.00640922 0)
(-0.00719967 0.00950305 0)
(-0.0104101 0.0135269 0)
(-0.0146433 0.0185319 0)
(-0.0201686 0.0244724 0)
(-0.0273596 0.0311493 0)
(-0.0367133 0.0381274 0)
(-0.048813 0.0446168 0)
(-0.0641585 0.0493339 0)
(-0.0828182 0.0504662 0)
(-0.103967 0.0459194 0)
(-0.125616 0.0339264 0)
(-0.144791 0.0138565 0)
(-0.158347 -0.013226 0)
(-0.164039 -0.0447134 0)
(-0.16119 -0.0773 0)
(-0.150649 -0.108065 0)
(-0.134147 -0.135 0)
(-0.113637 -0.157108 0)
(-0.0909346 -0.174131 0)
(-0.0675183 -0.186324 0)
(-0.0445207 -0.194236 0)
(-0.0227174 -0.198563 0)
(-0.0026123 -0.200035 0)
(-0.000107396 0.000261299 0)
(-0.000276753 0.000459591 0)
(-0.000557618 0.000856415 0)
(-0.00102278 0.00154252 0)
(-0.00175959 0.0026399 0)
(-0.00287063 0.00429262 0)
(-0.0044724 0.00665486 0)
(-0.00669632 0.00987509 0)
(-0.00969821 0.0140769 0)
(-0.0136794 0.0193337 0)
(-0.0189233 0.0256366 0)
(-0.0258396 0.0328423 0)
(-0.0350021 0.0405922 0)
(-0.0471421 0.0481774 0)
(-0.063009 0.0543447 0)
(-0.0830044 0.0571557 0)
(-0.106604 0.0541381 0)
(-0.131881 0.0428953 0)
(-0.155487 0.0221062 0)
(-0.173456 -0.00755496 0)
(-0.182608 -0.0432925 0)
(-0.18165 -0.0811125 0)
(-0.17133 -0.117306 0)
(-0.153636 -0.149286 0)
(-0.130878 -0.175747 0)
(-0.105203 -0.196283 0)
(-0.0783839 -0.21111 0)
(-0.0518097 -0.220795 0)
(-0.0264717 -0.226118 0)
(-0.00304134 -0.227933 0)
(-9.916e-05 0.000270099 0)
(-0.000254953 0.000474966 0)
(-0.000513342 0.000885061 0)
(-0.000941312 0.00159417 0)
(-0.00161938 0.00272856 0)
(-0.00264242 0.00443767 0)
(-0.0041189 0.00688251 0)
(-0.00617283 0.0102208 0)
(-0.0089547 0.0145901 0)
(-0.0126651 0.0200873 0)
(-0.0175961 0.0267426 0)
(-0.0241846 0.0344757 0)
(-0.0330705 0.0430199 0)
(-0.0451249 0.0517798 0)
(-0.0613629 0.0595856 0)
(-0.0825859 0.0644289 0)
(-0.108698 0.0634725 0)
(-0.137996 0.0535947 0)
(-0.166832 0.0325467 0)
(-0.190302 0.000331816 0)
(-0.203963 -0.0401882 0)
(-0.205608 -0.0841779 0)
(-0.195806 -0.126866 0)
(-0.176892 -0.164917 0)
(-0.151626 -0.196664 0)
(-0.122537 -0.221547 0)
(-0.0917044 -0.239709 0)
(-0.0608153 -0.251695 0)
(-0.031135 -0.258339 0)
(-0.00357383 -0.260614 0)
(-9.06825e-05 0.000278161 0)
(-0.000232466 0.000489037 0)
(-0.00046767 0.000911282 0)
(-0.000857262 0.00164145 0)
(-0.0014747 0.00280975 0)
(-0.00240681 0.00457061 0)
(-0.00375353 0.00709144 0)
(-0.00563058 0.0105388 0)
(-0.00818144 0.0150643 0)
(-0.0116027 0.0207885 0)
(-0.0161888 0.0277827 0)
(-0.0223943 0.0360349 0)
(-0.0309099 0.0453844 0)
(-0.0427312 0.0553822 0)
(-0.0591442 0.0650062 0)
(-0.081413 0.0722572 0)
(-0.110015 0.0739818 0)
(-0.14369 0.0662624 0)
(-0.178661 0.0456444 0)
(-0.208994 0.011051 0)
(-0.22855 -0.0348367 0)
(-0.233738 -0.086163 0)
(-0.22483 -0.136657 0)
(-0.204681 -0.182001 0)
(-0.176658 -0.220141 0)
(-0.143715 -0.250405 0)
(-0.108201 -0.272844 0)
(-0.0721129 -0.287888 0)
(-0.0370526 -0.296369 0)
(-0.00425426 -0.299316 0)
(-8.19915e-05 0.000285461 0)
(-0.000209351 0.000501767 0)
(-0.000420728 0.000935009 0)
(-0.000770865 0.00168423 0)
(-0.00132594 0.00288324 0)
(-0.00216444 0.00469105 0)
(-0.00337727 0.007281 0)
(-0.00507101 0.0108281 0)
(-0.00738042 0.0154975 0)
(-0.0104947 0.0214333 0)
(-0.0147044 0.028749 0)
(-0.02047 0.0375045 0)
(-0.0285152 0.0476566 0)
(-0.0399354 0.058935 0)
(-0.0562776 0.0705382 0)
(-0.0793214 0.0805815 0)
(-0.110271 0.0856925 0)
(-0.1486 0.0811384 0)
(-0.190693 0.0619547 0)
(-0.229586 0.0254143 0)
(-0.256925 -0.0264764 0)
(-0.266903 -0.0866472 0)
(-0.259308 -0.14658 0)
(-0.237894 -0.200647 0)
(-0.206875 -0.246432 0)
(-0.169748 -0.28331 0)
(-0.128887 -0.311342 0)
(-0.0865817 -0.330525 0)
(-0.0448763 -0.341756 0)
(-0.00519559 -0.345868 0)
(-7.31157e-05 0.00029198 0)
(-0.000185671 0.00051313 0)
(-0.00037264 0.000956183 0)
(-0.000682355 0.0017224 0)
(-0.0011735 0.00294883 0)
(-0.00191594 0.00479864 0)
(-0.00299113 0.00745059 0)
(-0.00449566 0.0110875 0)
(-0.00655384 0.0158876 0)
(-0.00934413 0.0220179 0)
(-0.0131464 0.0296337 0)
(-0.0184154 0.0388687 0)
(-0.0258857 0.0498055 0)
(-0.0367188 0.0623802 0)
(-0.0526928 0.0760928 0)
(-0.0761381 0.0893043 0)
(-0.109132 0.0985796 0)
(-0.152237 0.0984416 0)
(-0.202478 0.0821244 0)
(-0.252049 0.0444844 0)
(-0.289763 -0.0140406 0)
(-0.306231 -0.0851274 0)
(-0.300288 -0.156577 0)
(-0.277523 -0.220994 0)
(-0.243196 -0.27573 0)
(-0.201929 -0.320465 0)
(-0.155257 -0.356278 0)
(-0.105377 -0.380686 0)
(-0.0562508 -0.39649 0)
(-0.00684701 -0.40349 0)
(-6.40855e-05 0.000297682 0)
(-0.00016149 0.00052309 0)
(-0.000323542 0.000974738 0)
(-0.000591977 0.00175585 0)
(-0.00101781 0.00300633 0)
(-0.00166204 0.00489305 0)
(-0.00259623 0.00759964 0)
(-0.00390619 0.0113161 0)
(-0.00570421 0.0162328 0)
(-0.00815464 0.0225385 0)
(-0.0115201 0.0304289 0)
(-0.0162365 0.0401114 0)
(-0.0230264 0.051798 0)
(-0.0330726 0.0656519 0)
(-0.0483293 0.0815585 0)
(-0.0716892 0.0982808 0)
(-0.106211 0.112541 0)
(-0.153966 0.118332 0)
(-0.213312 0.106876 0)
(-0.276143 0.0696747 0)
(-0.327967 0.00401547 0)
(-0.353317 -0.0810703 0)
(-0.348879 -0.166704 0)
(-0.324718 -0.243224 0)
(-0.285948 -0.308383 0)
(-0.240499 -0.36123 0)
(-0.189234 -0.410931 0)
(-0.124903 -0.438272 0)
(-0.0715874 -0.461449 0)
(-0.00945306 -0.478074 0)
(-5.49329e-05 0.000302549 0)
(-0.000136871 0.000531616 0)
(-0.000273567 0.000990629 0)
(-0.000499975 0.00178448 0)
(-0.000859287 0.00305557 0)
(-0.0014034 0.00497399 0)
(-0.00219364 0.00772766 0)
(-0.00330429 0.011513 0)
(-0.00483408 0.0165313 0)
(-0.00693013 0.0229915 0)
(-0.00983132 0.0311274 0)
(-0.0139419 0.041217 0)
(-0.0199473 0.053601 0)
(-0.0289999 0.0686781 0)
(-0.0431413 0.0868021 0)
(-0.0658118 0.107315 0)
(-0.101084 0.12737 0)
(-0.152977 0.140859 0)
(-0.222141 0.136971 0)
(-0.301232 0.102841 0)
(-0.372673 0.0301835 0)
(-0.41075 -0.0740912 0)
(-0.405655 -0.177515 0)
(-0.380714 -0.267444 0)
(-0.324863 -0.34987 0)
(-0.249067 -0.418142 0)
(-0.155036 -0.473995 0)
(-0.0621592 -0.509977 0)
(-0.0346941 -0.52923 0)
(-0.0016063 -0.563334 0)
(-4.56919e-05 0.000306551 0)
(-0.000111882 0.000538689 0)
(-0.000222852 0.00100381 0)
(-0.000406603 0.00180821 0)
(-0.000698369 0.0030964 0)
(-0.00114077 0.00504122 0)
(-0.00178452 0.00783423 0)
(-0.00269174 0.0116774 0)
(-0.00394624 0.0167817 0)
(-0.00567504 0.0233739 0)
(-0.00808703 0.0317224 0)
(-0.0115426 0.0421706 0)
(-0.0166651 0.0551816 0)
(-0.0245195 0.0713826 0)
(-0.0371038 0.0916667 0)
(-0.0583734 0.116154 0)
(-0.0933062 0.142721 0)
(-0.148281 0.16588 0)
(-0.227428 0.173099 0)
(-0.325921 0.146296 0)
(-0.424995 0.0687548 0)
(-0.483582 -0.0642577 0)
(-0.467377 -0.192446 0)
(-0.427744 -0.300862 0)
(-0.297628 -0.44676 0)
(-0.193942 -0.534644 0)
(-0.135669 -0.614722 0)
(-0.0889034 -0.526805 0)
(-0.0269488 -0.544376 0)
(-0.00360443 -0.583792 0)
(-3.64023e-05 0.000309654 0)
(-8.65915e-05 0.00054429 0)
(-0.00017154 0.00101425 0)
(-0.000312123 0.00182697 0)
(-0.00053551 0.00312872 0)
(-0.000874876 0.00509453 0)
(-0.00137006 0.00791897 0)
(-0.00207046 0.0118087 0)
(-0.00304369 0.0169826 0)
(-0.0043942 0.0236828 0)
(-0.00629534 0.0322077 0)
(-0.00905211 0.0429586 0)
(-0.0132023 0.0565095 0)
(-0.0196692 0.0736889 0)
(-0.0302176 0.0959722 0)
(-0.0492966 0.124501 0)
(-0.0824483 0.158068 0)
(-0.13872 0.192947 0)
(-0.227038 0.215718 0)
(-0.34771 0.202403 0)
(-0.484348 0.125159 0)
(-0.582918 -0.051685 0)
(-0.55527 -0.224295 0)
(-0.442211 -0.359757 0)
(-0.406174 -0.547256 0)
(-0.284687 -0.561902 0)
(-0.212583 -0.635436 0)
(-0.148086 -0.625068 0)
(-0.0722787 -0.629054 0)
(-0.00689332 -0.633749 0)
(-2.71064e-05 0.00031183 0)
(-6.10662e-05 0.000548404 0)
(-0.000119771 0.00102191 0)
(-0.00021679 0.00184073 0)
(-0.000371156 0.00315243 0)
(-0.000606469 0.00513374 0)
(-0.000951465 0.0079816 0)
(-0.00144233 0.0119062 0)
(-0.00212947 0.0171329 0)
(-0.00309275 0.0239159 0)
(-0.00446506 0.032578 0)
(-0.00648622 0.0435689 0)
(-0.00958681 0.0575573 0)
(-0.0145089 0.0755253 0)
(-0.0225135 0.0995068 0)
(-0.038593 0.132036 0)
(-0.0681354 0.172638 0)
(-0.123056 0.221085 0)
(-0.219234 0.264956 0)
(-0.3746 0.270105 0)
(-0.622308 0.190872 0)
(-0.753387 -0.014534 0)
(-0.822481 -0.263598 0)
(-0.619074 -0.439877 0)
(-0.466071 -0.627091 0)
(-0.358138 -0.681462 0)
(-0.242217 -0.705914 0)
(-0.150017 -0.715859 0)
(-0.0774756 -0.715888 0)
(-0.00834802 -0.715448 0)
(-1.78525e-05 0.000313013 0)
(-3.53743e-05 0.000550966 0)
(-6.76834e-05 0.00102667 0)
(-0.000120861 0.00184924 0)
(-0.000205756 0.00316707 0)
(-0.000336293 0.00515801 0)
(-0.000529928 0.00802051 0)
(-0.000809287 0.0119669 0)
(-0.00120669 0.0172263 0)
(-0.00177595 0.0240604 0)
(-0.00260549 0.0328081 0)
(-0.0038621 0.043952 0)
(-0.00584986 0.0582295 0)
(-0.00912215 0.0767047 0)
(-0.0140587 0.101777 0)
(-0.0264001 0.138122 0)
(-0.050395 0.184942 0)
(-0.102649 0.248261 0)
(-0.203765 0.317772 0)
(-0.375787 0.37485 0)
(-0.595974 0.338126 0)
(-0.873242 0.098971 0)
(-0.995733 -0.35473 0)
(-0.897522 -0.765234 0)
(-0.477383 -0.725798 0)
(-0.377991 -0.787925 0)
(-0.265895 -0.799226 0)
(-0.162801 -0.794933 0)
(-0.0806237 -0.804585 0)
(-0.00759182 -0.802808 0)
(-1.82593e-05 0.000256668 0)
(-2.24609e-05 0.000453271 0)
(-3.03476e-05 0.000848463 0)
(-4.24095e-05 0.00153906 0)
(-6.0428e-05 0.0026642 0)
(-8.81626e-05 0.00440418 0)
(-0.000131842 0.00698389 0)
(-0.000200267 0.0106767 0)
(-0.000302677 0.0157976 0)
(-0.000461135 0.0226894 0)
(-0.000712548 0.0317366 0)
(-0.00113777 0.0434096 0)
(-0.00189994 0.0582523 0)
(-0.00344034 0.0772904 0)
(-0.00454708 0.102852 0)
(-0.00909417 0.143926 0)
(-0.0321648 0.196577 0)
(-0.0976202 0.276515 0)
(-0.161171 0.379829 0)
(-0.364909 0.466531 0)
(-0.666953 0.486249 0)
(-0.743603 0.0920761 0)
(-0.359112 -0.285021 0)
(-0.367111 -0.640923 0)
(-0.544355 -0.826904 0)
(-0.506102 -0.882724 0)
(-0.438849 -0.912973 0)
(-0.349666 -0.902509 0)
(-0.195259 -0.89599 0)
(-0.0260761 -0.895809 0)
(0.00417299 -0.00491777 0)
(0.00940498 -0.00487078 0)
(0.0151238 -0.00477763 0)
(0.0213055 -0.00462621 0)
(0.0278876 -0.0044029 0)
(0.034758 -0.00409514 0)
(0.0417388 -0.00369226 0)
(0.048579 -0.00318871 0)
(0.0549414 -0.00258813 0)
(0.0604219 -0.00190636 0)
(0.0645705 -0.00117501 0)
(0.0669511 -0.000441192 0)
(0.0672191 0.000236993 0)
(0.0652089 0.000800238 0)
(0.0610018 0.00120168 0)
(0.0549475 0.00141936 0)
(0.0476127 0.00146211 0)
(0.0396757 0.00136547 0)
(0.0317958 0.00117938 0)
(0.0245073 0.000953804 0)
(0.0181637 0.000728258 0)
(0.0129339 0.000527774 0)
(0.00883311 0.000364037 0)
(0.00577024 0.00023912 0)
(0.00359202 0.000149393 0)
(0.00211963 8.85869e-05 0)
(0.0011753 4.98314e-05 0)
(0.000598847 2.68725e-05 0)
(0.00025444 1.47831e-05 0)
(2.5065e-05 7.15147e-06 0)
(0.0042292 -0.0111771 0)
(0.00953142 -0.0110704 0)
(0.0153258 -0.0108584 0)
(0.0215861 -0.0105129 0)
(0.0282482 -0.010004 0)
(0.0351951 -0.00930231 0)
(0.0422437 -0.00838365 0)
(0.0491363 -0.00723549 0)
(0.0555283 -0.00586619 0)
(0.0610086 -0.00431211 0)
(0.0651227 -0.00264605 0)
(0.0674346 -0.000976104 0)
(0.067606 0.000564592 0)
(0.0654834 0.00184055 0)
(0.0611646 0.00274569 0)
(0.0550144 0.00323159 0)
(0.0476098 0.00332053 0)
(0.0396316 0.00309497 0)
(0.0317351 0.0026691 0)
(0.0244465 0.0021561 0)
(0.0181119 0.00164488 0)
(0.0128941 0.00119138 0)
(0.00880474 0.000821451 0)
(0.00575131 0.000539441 0)
(0.00358011 0.000336975 0)
(0.00211258 0.000199802 0)
(0.00117138 0.000112385 0)
(0.00059686 6.0608e-05 0)
(0.000253602 3.33404e-05 0)
(2.50657e-05 2.02711e-05 0)
(0.0043292 -0.0175514 0)
(0.00975562 -0.0173826 0)
(0.0156836 -0.0170469 0)
(0.0220839 -0.0164998 0)
(0.028887 -0.0156941 0)
(0.0359689 -0.0145834 0)
(0.0431365 -0.0131305 0)
(0.0501199 -0.011316 0)
(0.0565611 -0.00915444 0)
(0.062037 -0.00670478 0)
(0.0660853 -0.0040837 0)
(0.0682708 -0.00146331 0)
(0.0682667 0.000946229 0)
(0.0659426 0.00293265 0)
(0.0614254 0.00433237 0)
(0.0551072 0.00507381 0)
(0.0475826 0.00519632 0)
(0.0395358 0.00483189 0)
(0.0316139 0.00415995 0)
(0.024329 0.00335645 0)
(0.0180131 0.00255864 0)
(0.0128186 0.00185231 0)
(0.00875126 0.00127679 0)
(0.0057157 0.000838322 0)
(0.00355774 0.000523631 0)
(0.00209933 0.00031046 0)
(0.00116404 0.000174627 0)
(0.000593128 9.41735e-05 0)
(0.000252027 5.18072e-05 0)
(2.49272e-05 3.33308e-05 0)
(0.00447545 -0.0241089 0)
(0.0100845 -0.023874 0)
(0.0162084 -0.0234068 0)
(0.0228136 -0.0226459 0)
(0.029823 -0.0215255 0)
(0.0371017 -0.0199823 0)
(0.0444422 -0.0179653 0)
(0.0515565 -0.0154498 0)
(0.0580672 -0.0124583 0)
(0.0635334 -0.00907598 0)
(0.0674821 -0.00546775 0)
(0.0694795 -0.00187431 0)
(0.0692172 0.00141364 0)
(0.0665989 0.00410661 0)
(0.061794 0.00598622 0)
(0.0552343 0.00696305 0)
(0.0475385 0.00709925 0)
(0.0393949 0.00658046 0)
(0.0314381 0.00565268 0)
(0.0241595 0.00455392 0)
(0.0178711 0.00346806 0)
(0.0127104 0.00250917 0)
(0.0086746 0.00172897 0)
(0.00566468 0.00113502 0)
(0.0035257 0.000708883 0)
(0.00208036 0.000420275 0)
(0.00115352 0.000236392 0)
(0.000587784 0.000127481 0)
(0.000249773 7.01348e-05 0)
(2.4722e-05 4.63006e-05 0)
(0.00467189 -0.030921 0)
(0.0105257 -0.0306147 0)
(0.0169122 -0.0300053 0)
(0.0237915 -0.029013 0)
(0.0310763 -0.0275529 0)
(0.0386174 -0.0255436 0)
(0.0461868 -0.0229208 0)
(0.0534726 -0.0196554 0)
(0.0600712 -0.0157815 0)
(0.0655184 -0.011415 0)
(0.0693276 -0.00677539 0)
(0.0710684 -0.00217831 0)
(0.0704586 0.00200036 0)
(0.0674483 0.00539343 0)
(0.0622641 0.00773185 0)
(0.0553892 0.00891592 0)
(0.0474724 0.00903854 0)
(0.0392058 0.00834435 0)
(0.0312062 0.00714764 0)
(0.0239376 0.00574729 0)
(0.0176858 0.00437153 0)
(0.0125695 0.00316051 0)
(0.00857491 0.00217687 0)
(0.00559837 0.00142874 0)
(0.00348407 0.000892227 0)
(0.00205571 0.000528945 0)
(0.00113985 0.000297507 0)
(0.000580842 0.000160437 0)
(0.000246846 8.8268e-05 0)
(2.445e-05 5.91453e-05 0)
(0.00492295 -0.0380658 0)
(0.0110897 -0.0376807 0)
(0.0178112 -0.0369146 0)
(0.02504 -0.0356677 0)
(0.0326754 -0.0338344 0)
(0.0405485 -0.0313145 0)
(0.0484058 -0.0280306 0)
(0.0559041 -0.0239514 0)
(0.0626065 -0.019126 0)
(0.0680198 -0.0137082 0)
(0.0716412 -0.00798026 0)
(0.0730474 -0.00234135 0)
(0.0719916 0.0027424 0)
(0.0684851 0.00682545 0)
(0.0628269 0.00959417 0)
(0.055563 0.0109487 0)
(0.0473776 0.0110228 0)
(0.0389644 0.0101267 0)
(0.0309161 0.00864485 0)
(0.0236625 0.00693521 0)
(0.0174572 0.00526736 0)
(0.0123961 0.00380483 0)
(0.00845239 0.00261937 0)
(0.00551693 0.00171871 0)
(0.00343295 0.00107317 0)
(0.00202546 0.000636176 0)
(0.00112307 0.000357808 0)
(0.00057232 0.000192952 0)
(0.000243252 0.000106157 0)
(2.41119e-05 7.18313e-05 0)
(0.00523504 -0.0456286 0)
(0.0117897 -0.0451552 0)
(0.018927 -0.0442138 0)
(0.0265883 -0.0426824 0)
(0.0346563 -0.0404331 0)
(0.0429371 -0.0373455 0)
(0.0511448 -0.0333298 0)
(0.0588971 -0.0283548 0)
(0.0657155 -0.0224909 0)
(0.0710723 -0.0159377 0)
(0.0744469 -0.00905129 0)
(0.075428 -0.00232473 0)
(0.0738164 0.00367908 0)
(0.0697013 0.00843678 0)
(0.0634707 0.0115985 0)
(0.0557448 0.0130773 0)
(0.0472459 0.01306 0)
(0.0386656 0.0119302 0)
(0.0305655 0.0101439 0)
(0.0233333 0.0081161 0)
(0.0171852 0.00615378 0)
(0.0121904 0.00444061 0)
(0.00830729 0.00305532 0)
(0.00542056 0.00200416 0)
(0.00337249 0.00125123 0)
(0.00198967 0.000741678 0)
(0.00110323 0.000417133 0)
(0.000562242 0.000224942 0)
(0.000239002 0.000123758 0)
(2.37089e-05 8.43222e-05 0)
(0.00561548 -0.0537056 0)
(0.0126434 -0.0531319 0)
(0.0202868 -0.0519916 0)
(0.0284738 -0.050138 0)
(0.0370655 -0.0474183 0)
(0.0458371 -0.0436913 0)
(0.0544619 -0.0388551 0)
(0.0625095 -0.0328824 0)
(0.0694515 -0.0258719 0)
(0.074719 -0.0180804 0)
(0.0777736 -0.00995142 0)
(0.0782232 -0.00208408 0)
(0.0759321 0.00485374 0)
(0.0710864 0.0102637 0)
(0.0641813 0.0137707 0)
(0.0559211 0.0153169 0)
(0.0470674 0.0151573 0)
(0.0383035 0.0137567 0)
(0.0301514 0.0116442 0)
(0.0229492 0.00928826 0)
(0.0168697 0.00702901 0)
(0.0119526 0.00506637 0)
(0.0081399 0.00348363 0)
(0.00530949 0.00228435 0)
(0.00330284 0.00142591 0)
(0.00194846 0.000845159 0)
(0.00108038 0.000475317 0)
(0.000550635 0.000256317 0)
(0.000234108 0.000141025 0)
(2.32414e-05 9.6586e-05 0)
(0.00607428 -0.0624054 0)
(0.0136725 -0.0617165 0)
(0.0219251 -0.0603477 0)
(0.0307432 -0.0581245 0)
(0.039961 -0.0548668 0)
(0.0493153 -0.0504111 0)
(0.0584288 -0.0446445 0)
(0.0668128 -0.0375485 0)
(0.073879 -0.0292598 0)
(0.0790113 -0.0201064 0)
(0.0816548 -0.0106357 0)
(0.0814471 -0.00156908 0)
(0.0783355 0.00631449 0)
(0.0726262 0.0123446 0)
(0.0649405 0.0161367 0)
(0.0560757 0.0176821 0)
(0.0468304 0.0173206 0)
(0.0378715 0.0156072 0)
(0.0296709 0.0131443 0)
(0.0225092 0.0104497 0)
(0.0165109 0.0078911 0)
(0.0116832 0.00568053 0)
(0.00795057 0.00390317 0)
(0.00518399 0.00255851 0)
(0.00322417 0.00159676 0)
(0.00190192 0.000946339 0)
(0.00105458 0.0005322 0)
(0.000537532 0.000286987 0)
(0.000228583 0.000157907 0)
(2.27109e-05 0.00010859 0)
(0.00662363 -0.0718534 0)
(0.0149045 -0.0710306 0)
(0.023885 -0.0693964 0)
(0.0334552 -0.0667448 0)
(0.0434153 -0.0628652 0)
(0.0534546 -0.05757 0)
(0.0631342 -0.050738 0)
(0.0718944 -0.0423654 0)
(0.0790762 -0.0326393 0)
(0.0840105 -0.0219765 0)
(0.0861289 -0.0110498 0)
(0.0851143 -0.00072025 0)
(0.0810207 0.00811519 0)
(0.0743027 0.0147207 0)
(0.0657266 0.0187226 0)
(0.0561897 0.0201861 0)
(0.0465221 0.0195547 0)
(0.037362 0.0174817 0)
(0.0291205 0.0146424 0)
(0.0220122 0.0115981 0)
(0.0161086 0.00873805 0)
(0.0113824 0.00628157 0)
(0.00773971 0.00431285 0)
(0.00504438 0.00282592 0)
(0.00313671 0.00176329 0)
(0.00185019 0.00104495 0)
(0.00102591 0.000587633 0)
(0.000522968 0.000316873 0)
(0.000222444 0.000174357 0)
(2.21183e-05 0.000120301 0)
(0.00727901 -0.0821951 0)
(0.0163733 -0.081215 0)
(0.0262201 -0.0792697 0)
(0.036682 -0.0761165 0)
(0.0475176 -0.0715108 0)
(0.0583569 -0.0652402 0)
(0.0686861 -0.057177 0)
(0.07786 -0.0473413 0)
(0.0851363 -0.0359863 0)
(0.0897878 -0.0236405 0)
(0.0912385 -0.0111272 0)
(0.0892375 0.000533423 0)
(0.0839775 0.010316 0)
(0.076092 0.0174354 0)
(0.0665132 0.0215543 0)
(0.0562413 0.0228406 0)
(0.0461277 0.0218625 0)
(0.0367673 0.0193792 0)
(0.0284969 0.016136 0)
(0.0214573 0.0127309 0)
(0.0156631 0.00956776 0)
(0.0110508 0.00686791 0)
(0.00750776 0.00471155 0)
(0.00489098 0.00308584 0)
(0.00304067 0.00192507 0)
(0.0017934 0.0011407 0)
(0.000994439 0.000641461 0)
(0.000506984 0.000345897 0)
(0.000215708 0.000190337 0)
(2.14651e-05 0.000131687 0)
(0.00805941 -0.0936012 0)
(0.0181216 -0.0924347 0)
(0.0289968 -0.0901211 0)
(0.0405136 -0.0863755 0)
(0.052378 -0.080915 0)
(0.0641475 -0.0735011 0)
(0.0752165 -0.0640041 0)
(0.0848372 -0.0524791 0)
(0.0921705 -0.0392661 0)
(0.0964257 -0.0250335 0)
(0.0970304 -0.0107863 0)
(0.0938286 0.00227107 0)
(0.0871896 0.0129845 0)
(0.0779639 0.0205348 0)
(0.0672687 0.0246566 0)
(0.0562055 0.0256555 0)
(0.0456313 0.0242452 0)
(0.0360788 0.0212972 0)
(0.0277965 0.0176218 0)
(0.0208436 0.0138453 0)
(0.0151746 0.010378 0)
(0.0106889 0.00743793 0)
(0.00725524 0.00509819 0)
(0.0047242 0.00333757 0)
(0.00293631 0.00208164 0)
(0.00173171 0.00123335 0)
(0.000960255 0.000693527 0)
(0.000489623 0.00037397 0)
(0.000208394 0.000205798 0)
(2.07527e-05 0.000142718 0)
(0.00898861 -0.106274 0)
(0.0202024 -0.104885 0)
(0.0322982 -0.102132 0)
(0.0450616 -0.0976808 0)
(0.0581332 -0.0912057 0)
(0.0709805 -0.0824417 0)
(0.0828864 -0.071263 0)
(0.0929802 -0.0577747 0)
(0.10031 -0.0424297 0)
(0.10402 -0.0260722 0)
(0.103555 -0.00992753 0)
(0.098894 0.00459045 0)
(0.0906329 0.0161961 0)
(0.0798803 0.0240669 0)
(0.0679559 0.0280534 0)
(0.0560542 0.0286378 0)
(0.0450156 0.0267018 0)
(0.0352876 0.0232318 0)
(0.0270157 0.0190959 0)
(0.0201702 0.0149381 0)
(0.0146433 0.0111665 0)
(0.0102972 0.00799007 0)
(0.00698271 0.00547171 0)
(0.00454445 0.00358041 0)
(0.0028239 0.00223258 0)
(0.00166528 0.00132263 0)
(0.000923451 0.000743698 0)
(0.000470933 0.000401018 0)
(0.000200522 0.000220698 0)
(1.99821e-05 0.000153362 0)
(0.0100968 -0.120457 0)
(0.0226825 -0.118799 0)
(0.0362283 -0.115517 0)
(0.0504652 -0.110218 0)
(0.0649518 -0.10253 0)
(0.0790448 -0.0921609 0)
(0.0918915 -0.078997 0)
(0.102474 -0.0632134 0)
(0.109712 -0.0454092 0)
(0.112678 -0.02665 0)
(0.110864 -0.00842836 0)
(0.104434 0.00760302 0)
(0.0942726 0.0200347 0)
(0.081793 0.0280816 0)
(0.0685308 0.0317659 0)
(0.0557562 0.0317917 0)
(0.0442621 0.0292286 0)
(0.034385 0.0251778 0)
(0.0261514 0.0205538 0)
(0.0194367 0.0160058 0)
(0.0140698 0.0119308 0)
(0.00987658 0.00852272 0)
(0.00669079 0.00583105 0)
(0.00435218 0.00381369 0)
(0.00270374 0.00237747 0)
(0.00159429 0.00140832 0)
(0.000884128 0.000791839 0)
(0.000450964 0.000426972 0)
(0.000192115 0.000235003 0)
(1.91544e-05 0.000163591 0)
(0.0114222 -0.136441 0)
(0.0256458 -0.134456 0)
(0.0409174 -0.13053 0)
(0.0568978 -0.124207 0)
(0.0730427 -0.115058 0)
(0.0885724 -0.102768 0)
(0.10247 -0.0872472 0)
(0.113543 -0.0687658 0)
(0.120558 -0.048112 0)
(0.122523 -0.0266302 0)
(0.11901 -0.00614014 0)
(0.110439 0.0114413 0)
(0.0980597 0.024593 0)
(0.0836424 0.0326286 0)
(0.0689426 0.0358117 0)
(0.0552769 0.0351167 0)
(0.0433518 0.031819 0)
(0.0333621 0.027128 0)
(0.0252004 0.0219897 0)
(0.0186427 0.0170448 0)
(0.0134547 0.0126685 0)
(0.00942774 0.00903424 0)
(0.00638019 0.00617517 0)
(0.00414788 0.00403675 0)
(0.00257616 0.00251591 0)
(0.00151894 0.00149015 0)
(0.000842393 0.000837806 0)
(0.000429773 0.00045175 0)
(0.000183198 0.000248664 0)
(1.82707e-05 0.000173375 0)
(0.0130137 -0.154581 0)
(0.0292001 -0.152195 0)
(0.0465314 -0.14748 0)
(0.0645779 -0.139906 0)
(0.0826662 -0.128986 0)
(0.0998496 -0.114385 0)
(0.114912 -0.0960517 0)
(0.126454 -0.0743841 0)
(0.133066 -0.0504138 0)
(0.133692 -0.0258384 0)
(0.128042 -0.00287457 0)
(0.116882 0.0162596 0)
(0.101928 0.0299722 0)
(0.085355 0.0377569 0)
(0.0691328 0.0402034 0)
(0.0545792 0.0386079 0)
(0.0422649 0.034463 0)
(0.0322105 0.0290737 0)
(0.0241602 0.0233977 0)
(0.0177881 0.0180508 0)
(0.0127987 0.013377 0)
(0.00895163 0.00952306 0)
(0.00605164 0.00650306 0)
(0.00393209 0.00424896 0)
(0.0024415 0.00264751 0)
(0.00143944 0.00156791 0)
(0.000798361 0.000881478 0)
(0.000407417 0.000475289 0)
(0.000173795 0.000261644 0)
(1.73314e-05 0.000182683 0)
(0.0149346 -0.175316 0)
(0.0334844 -0.172429 0)
(0.0532825 -0.166738 0)
(0.0737817 -0.157624 0)
(0.0941473 -0.144542 0)
(0.113229 -0.127145 0)
(0.129574 -0.105441 0)
(0.141532 -0.0799947 0)
(0.147491 -0.0521483 0)
(0.14634 -0.0240499 0)
(0.138001 0.00159467 0)
(0.123717 0.0222382 0)
(0.105787 0.0362816 0)
(0.0868413 0.043512 0)
(0.0690352 0.0449469 0)
(0.0536234 0.0422546 0)
(0.0409819 0.0371475 0)
(0.0309223 0.0310044 0)
(0.0230287 0.0247707 0)
(0.0168732 0.0190198 0)
(0.012103 0.0140538 0)
(0.00844923 0.0099876 0)
(0.00570592 0.00681376 0)
(0.00370536 0.00444973 0)
(0.0023001 0.00277192 0)
(0.00135598 0.00164139 0)
(0.00075215 0.000922742 0)
(0.000383955 0.000497534 0)
(0.000163932 0.000273916 0)
(1.63366e-05 0.000191493 0)
(0.0172698 -0.199187 0)
(0.0386819 -0.195668 0)
(0.0614459 -0.188751 0)
(0.0848606 -0.177723 0)
(0.10789 -0.161985 0)
(0.129143 -0.141192 0)
(0.146885 -0.115436 0)
(0.15917 -0.0854896 0)
(0.164137 -0.0530944 0)
(0.160636 -0.0209794 0)
(0.148914 0.00754528 0)
(0.130866 0.0295847 0)
(0.109518 0.0436348 0)
(0.0879936 0.0499319 0)
(0.0685753 0.0500382 0)
(0.052368 0.0460384 0)
(0.0394839 0.0398548 0)
(0.0294907 0.0329077 0)
(0.0218045 0.0261009 0)
(0.0158987 0.0199471 0)
(0.0113687 0.0146961 0)
(0.00792172 0.0104263 0)
(0.00534394 0.00710631 0)
(0.00346829 0.00463846 0)
(0.00215237 0.00288877 0)
(0.00126882 0.00171038 0)
(0.000703889 0.000961477 0)
(0.000359454 0.000518413 0)
(0.000153638 0.000285437 0)
(1.52857e-05 0.000199776 0)
(0.020136 -0.226884 0)
(0.0450422 -0.222548 0)
(0.0713881 -0.214064 0)
(0.0982683 -0.20063 0)
(0.124403 -0.181609 0)
(0.148122 -0.15668 0)
(0.167371 -0.126042 0)
(0.179842 -0.0907191 0)
(0.183363 -0.0529603 0)
(0.176762 -0.0162558 0)
(0.16078 0.0153227 0)
(0.138207 0.038538 0)
(0.112967 0.0521483 0)
(0.0886838 0.0570445 0)
(0.0676715 0.055462 0)
(0.0507709 0.0499337 0)
(0.037753 0.0425636 0)
(0.0279101 0.0347697 0)
(0.0204871 0.0273803 0)
(0.0148658 0.0208281 0)
(0.0105972 0.0153015 0)
(0.0073703 0.0108376 0)
(0.0049666 0.00737981 0)
(0.00322151 0.00481463 0)
(0.00199868 0.00299774 0)
(0.00117816 0.00177469 0)
(0.000653707 0.000997577 0)
(0.000333979 0.000537867 0)
(0.000142942 0.00029618 0)
(1.41768e-05 0.000207503 0)
(0.0237041 -0.259294 0)
(0.0529207 -0.253867 0)
(0.0836073 -0.243335 0)
(0.114592 -0.226833 0)
(0.144314 -0.203733 0)
(0.170807 -0.173767 0)
(0.191665 -0.137248 0)
(0.204128 -0.0954807 0)
(0.205602 -0.0513562 0)
(0.194912 -0.00939644 0)
(0.173555 0.0253517 0)
(0.145561 0.0493667 0)
(0.115934 0.061933 0)
(0.0887621 0.0648599 0)
(0.0662358 0.0611879 0)
(0.0487905 0.0539055 0)
(0.0357739 0.0452483 0)
(0.0261766 0.0365747 0)
(0.0190768 0.0286 0)
(0.013776 0.0216581 0)
(0.00979021 0.0158672 0)
(0.00679634 0.0112201 0)
(0.00457486 0.0076334 0)
(0.00296567 0.00497771 0)
(0.00183946 0.00309853 0)
(0.00108428 0.00183414 0)
(0.000601741 0.00103095 0)
(0.0003076 0.000555853 0)
(0.000131875 0.000306118 0)
(1.30065e-05 0.00021465 0)
(0.0282475 -0.297607 0)
(0.0628542 -0.290636 0)
(0.0988016 -0.277336 0)
(0.1346 -0.256862 0)
(0.168389 -0.22868 0)
(0.197959 -0.192611 0)
(0.220525 -0.149029 0)
(0.232739 -0.0995141 0)
(0.231384 -0.0477696 0)
(0.215289 0.000222616 0)
(0.187128 0.0381513 0)
(0.152668 0.0623661 0)
(0.118168 0.0730849 0)
(0.0880564 0.0733638 0)
(0.0641759 0.0671667 0)
(0.0463878 0.0579087 0)
(0.0335341 0.0478791 0)
(0.0242883 0.0383056 0)
(0.0175753 0.0297509 0)
(0.0126316 0.0224321 0)
(0.00894973 0.0163907 0)
(0.00620134 0.0115724 0)
(0.0041698 0.00786627 0)
(0.00270147 0.00512722 0)
(0.00167515 0.00319084 0)
(0.000987415 0.00188857 0)
(0.000548138 0.00106149 0)
(0.000280391 0.000572317 0)
(0.000120469 0.000315216 0)
(1.17698e-05 0.000221187 0)
(0.0342937 -0.343521 0)
(0.0757383 -0.33411 0)
(0.11797 -0.316941 0)
(0.159304 -0.291234 0)
(0.197532 -0.256738 0)
(0.230449 -0.213373 0)
(0.254847 -0.161364 0)
(0.266572 -0.1025 0)
(0.261371 -0.0414961 0)
(0.23808 0.0134447 0)
(0.201279 0.0543591 0)
(0.159163 0.0778505 0)
(0.119356 0.0856711 0)
(0.0863742 0.082509 0)
(0.0613981 0.0733283 0)
(0.0435282 0.0618881 0)
(0.0310254 0.0504224 0)
(0.0222458 0.0399443 0)
(0.0159852 0.0308235 0)
(0.0114353 0.0231456 0)
(0.00807788 0.0168696 0)
(0.00558687 0.011893 0)
(0.0037525 0.00807766 0)
(0.00242963 0.0052627 0)
(0.00150618 0.00327441 0)
(0.00088784 0.00193782 0)
(0.000493041 0.00108912 0)
(0.000252426 0.000587211 0)
(0.000108755 0.000323451 0)
(1.04587e-05 0.000227087 0)
(0.0432683 -0.39982 0)
(0.0931801 -0.385475 0)
(0.142391 -0.36317 0)
(0.190087 -0.330266 0)
(0.232659 -0.288064 0)
(0.269229 -0.236255 0)
(0.295654 -0.174271 0)
(0.306783 -0.104106 0)
(0.296436 -0.0315873 0)
(0.263401 0.0313997 0)
(0.215619 0.0747448 0)
(0.164538 0.096133 0)
(0.119118 0.0997086 0)
(0.083506 0.0922051 0)
(0.0578115 0.0795778 0)
(0.0401841 0.0657775 0)
(0.0282443 0.0528416 0)
(0.0200521 0.0414719 0)
(0.0143104 0.0318085 0)
(0.0101904 0.0237937 0)
(0.00717709 0.0173015 0)
(0.00495462 0.0121809 0)
(0.00332409 0.00826687 0)
(0.00215087 0.00538377 0)
(0.00133302 0.00334901 0)
(0.00078582 0.00198177 0)
(0.0004366 0.00111377 0)
(0.00022378 0.000600501 0)
(9.67679e-05 0.000330807 0)
(9.0621e-06 0.000232322 0)
(0.0572527 -0.471448 0)
(0.112841 -0.443895 0)
(0.170821 -0.420041 0)
(0.22754 -0.373472 0)
(0.273828 -0.322672 0)
(0.315388 -0.261661 0)
(0.343972 -0.187825 0)
(0.354957 -0.104102 0)
(0.337767 -0.0165856 0)
(0.291256 0.0556354 0)
(0.229494 0.100211 0)
(0.168107 0.117488 0)
(0.117002 0.115134 0)
(0.0792349 0.102306 0)
(0.0533343 0.0857926 0)
(0.0363389 0.0695 0)
(0.0251941 0.0550971 0)
(0.0177135 0.0428691 0)
(0.0125564 0.0326965 0)
(0.0089008 0.024372 0)
(0.0062501 0.0176841 0)
(0.00430645 0.0124347 0)
(0.00288581 0.00843325 0)
(0.001866 0.00549004 0)
(0.00115616 0.00341442 0)
(0.000681645 0.00202029 0)
(0.000378974 0.00113536 0)
(0.000194534 0.000612149 0)
(8.45405e-05 0.000337251 0)
(7.56403e-06 0.000236865 0)
(0.0309838 -0.540046 0)
(0.0615839 -0.511323 0)
(0.131408 -0.514243 0)
(0.223124 -0.434499 0)
(0.305062 -0.365658 0)
(0.36972 -0.291149 0)
(0.400058 -0.202182 0)
(0.413522 -0.102805 0)
(0.387126 0.00575983 0)
(0.32129 0.0882985 0)
(0.241862 0.131772 0)
(0.168969 0.142095 0)
(0.112492 0.131771 0)
(0.0733495 0.112602 0)
(0.0478984 0.0918222 0)
(0.0319894 0.0729699 0)
(0.0218846 0.0571487 0)
(0.0152389 0.0441171 0)
(0.0107295 0.0334788 0)
(0.00757085 0.0248763 0)
(0.00529974 0.0180155 0)
(0.00364421 0.0126535 0)
(0.00243884 0.00857625 0)
(0.00157577 0.00558119 0)
(0.000976061 0.00347044 0)
(0.000575588 0.00205326 0)
(0.000320317 0.00115384 0)
(0.000164767 0.000622122 0)
(7.21057e-05 0.000342765 0)
(5.94264e-06 0.00024068 0)
(0.00922142 -0.544981 0)
(0.0649066 -0.502546 0)
(0.145346 -0.555063 0)
(0.168703 -0.580847 0)
(0.25962 -0.459964 0)
(0.406109 -0.341253 0)
(0.457508 -0.219621 0)
(0.487183 -0.102347 0)
(0.446962 0.0398198 0)
(0.352359 0.132239 0)
(0.25112 0.17046 0)
(0.16597 0.169947 0)
(0.105023 0.149279 0)
(0.065667 0.122811 0)
(0.0414579 0.0974865 0)
(0.027151 0.0760943 0)
(0.0183334 0.0589562 0)
(0.0126406 0.0451974 0)
(0.00883782 0.0341469 0)
(0.00620555 0.0253028 0)
(0.00432915 0.0182938 0)
(0.0029699 0.0128364 0)
(0.0019845 0.00869537 0)
(0.00128101 0.00565693 0)
(0.000793232 0.0035169 0)
(0.00046794 0.0020806 0)
(0.000260789 0.00116916 0)
(0.000134561 0.000630394 0)
(5.94958e-05 0.000347334 0)
(4.17113e-06 0.000243735 0)
(0.0530662 -0.628593 0)
(0.129088 -0.624139 0)
(0.1993 -0.622082 0)
(0.258484 -0.585305 0)
(0.383805 -0.556892 0)
(0.431438 -0.402667 0)
(0.541054 -0.262276 0)
(0.588582 -0.107966 0)
(0.519418 0.0916438 0)
(0.38203 0.190447 0)
(0.254959 0.21719 0)
(0.157711 0.200713 0)
(0.0940152 0.167105 0)
(0.056069 0.132584 0)
(0.0339933 0.102575 0)
(0.0218619 0.0787766 0)
(0.0145663 0.0604819 0)
(0.00993425 0.0460934 0)
(0.00689045 0.0346935 0)
(0.00481042 0.025648 0)
(0.00334171 0.0185174 0)
(0.00228565 0.0129825 0)
(0.0015241 0.0087902 0)
(0.000982535 0.00571702 0)
(0.00060818 0.00355368 0)
(0.000358999 0.00210222 0)
(0.000200558 0.00118127 0)
(0.000103998 0.000636942 0)
(4.67415e-05 0.00035094 0)
(2.21584e-06 0.000245997 0)
(0.0596635 -0.714019 0)
(0.134775 -0.70962 0)
(0.216913 -0.690013 0)
(0.308671 -0.674216 0)
(0.426803 -0.634474 0)
(0.575495 -0.485299 0)
(0.770506 -0.374722 0)
(0.776528 -0.0575465 0)
(0.690051 0.132964 0)
(0.411367 0.25769 0)
(0.253206 0.273418 0)
(0.142629 0.233443 0)
(0.0789112 0.18439 0)
(0.0445561 0.141526 0)
(0.0255128 0.106834 0)
(0.0161882 0.0809228 0)
(0.0106156 0.0616918 0)
(0.00713782 0.0467898 0)
(0.00489759 0.0351119 0)
(0.00339133 0.0259091 0)
(0.00234087 0.018685 0)
(0.00159357 0.0130913 0)
(0.00105897 0.00886042 0)
(0.000681186 0.00576127 0)
(0.000421405 0.00358065 0)
(0.000249056 0.00211807 0)
(0.000139784 0.00119014 0)
(7.31624e-05 0.000641751 0)
(3.38711e-05 0.000353569 0)
(3.78233e-08 0.00024743 0)
(0.0652134 -0.802988 0)
(0.141768 -0.797135 0)
(0.2362 -0.803172 0)
(0.341035 -0.787106 0)
(0.448222 -0.741882 0)
(0.851379 -0.753693 0)
(0.993175 -0.392519 0)
(0.899342 0.0601165 0)
(0.593226 0.274472 0)
(0.426312 0.369175 0)
(0.248709 0.334403 0)
(0.122852 0.266093 0)
(0.0597601 0.199525 0)
(0.0313463 0.148878 0)
(0.0160489 0.109669 0)
(0.0102269 0.0823006 0)
(0.00651832 0.0624729 0)
(0.00427149 0.0472276 0)
(0.0028701 0.0353722 0)
(0.00195443 0.0260709 0)
(0.00133017 0.0187889 0)
(0.000895814 0.013159 0)
(0.000590463 0.00890415 0)
(0.00037778 0.00578872 0)
(0.000233397 0.00359732 0)
(0.000138402 0.00212785 0)
(7.86308e-05 0.00119563 0)
(4.21349e-05 0.000644735 0)
(2.09104e-05 0.000355168 0)
(-2.40511e-06 0.000248021 0)
(0.148713 -0.893312 0)
(0.312767 -0.900182 0)
(0.417722 -0.922232 0)
(0.489567 -0.903684 0)
(0.560443 -0.850297 0)
(0.402512 -0.699489 0)
(0.392936 -0.387644 0)
(0.2327 0.0462617 0)
(0.683502 0.442345 0)
(0.432106 0.477288 0)
(0.190046 0.410018 0)
(0.114561 0.299571 0)
(0.0418259 0.21413 0)
(0.0126107 0.156427 0)
(0.00474281 0.111081 0)
(0.00393824 0.0830444 0)
(0.00217952 0.0626387 0)
(0.00128654 0.0468294 0)
(0.000797964 0.034415 0)
(0.00051323 0.024752 0)
(0.000335428 0.0173535 0)
(0.000221358 0.0118196 0)
(0.000145625 0.00779798 0)
(9.62495e-05 0.00496507 0)
(6.49249e-05 0.00303618 0)
(4.52472e-05 0.00177517 0)
(3.20584e-05 0.000989445 0)
(2.28267e-05 0.000530963 0)
(1.72901e-05 0.000291607 0)
(8.09778e-05 0.000259257 0)
(-0.00252905 0.000314688 0)
(-0.00303551 0.000556599 0)
(-0.00364582 0.00103769 0)
(-0.00445254 0.00186859 0)
(-0.00546955 0.00320127 0)
(-0.00676869 0.00521605 0)
(-0.00846256 0.00811931 0)
(-0.010637 0.0121166 0)
(-0.0125452 0.0174055 0)
(-0.0138846 0.0244062 0)
(-0.0164998 0.0335933 0)
(-0.0201063 0.0451731 0)
(-0.011414 0.058803 0)
(-0.0204925 0.0743221 0)
(-0.0591415 0.0977719 0)
(-0.0319545 0.139999 0)
(0.075903 0.20184 0)
(-0.0930894 0.27864 0)
(-0.0859417 0.417331 0)
(-0.353577 0.537828 0)
(-0.554887 0.509457 0)
(-0.285989 0.120441 0)
(-0.329925 -0.416952 0)
(-0.141903 -0.615249 0)
(-0.243698 -0.75496 0)
(-0.36823 -0.878223 0)
(-0.410866 -0.935468 0)
(-0.360164 -0.981522 0)
(-0.2284 -1.05079 0)
(-0.030333 -1.08361 0)
(-0.00438749 0.0003244 0)
(-0.00539312 0.000582999 0)
(-0.00665634 0.00108753 0)
(-0.00840167 0.00194624 0)
(-0.0106681 0.00331467 0)
(-0.0136153 0.00536207 0)
(-0.0175053 0.00830299 0)
(-0.0228222 0.0123743 0)
(-0.029961 0.0176947 0)
(-0.0393714 0.024725 0)
(-0.0539919 0.0341947 0)
(-0.082024 0.0467674 0)
(-0.151729 0.0666443 0)
(-0.585734 0.209193 0)
(-1.52568 0.120328 0)
(-1.09145 0.0576394 0)
(-0.502783 0.164916 0)
(-0.25156 0.275684 0)
(-0.034988 0.448055 0)
(-0.332056 0.625664 0)
(-0.510117 0.557101 0)
(-0.519662 -0.0332403 0)
(-0.308621 -0.503034 0)
(-0.0511216 -0.649671 0)
(-0.00447157 -0.704611 0)
(-0.0960396 -0.833229 0)
(-0.149885 -0.92471 0)
(-0.142651 -1.02132 0)
(-0.109057 -1.11184 0)
(-0.0062656 -1.18905 0)
(-0.00501557 0.000340871 0)
(-0.00616774 0.000623792 0)
(-0.00763943 0.00116739 0)
(-0.00969283 0.00207585 0)
(-0.0123951 0.00351415 0)
(-0.0159531 0.00564 0)
(-0.020688 0.00868654 0)
(-0.0271927 0.0129699 0)
(-0.0360475 0.0185353 0)
(-0.0481028 0.0260122 0)
(-0.0674979 0.0367595 0)
(-0.105186 0.052872 0)
(-0.200023 0.0874867 0)
(-0.568701 0.384159 0)
(-2.4313 0.355075 0)
(-1.70955 -0.309938 0)
(-0.847111 0.107993 0)
(-0.454651 0.215561 0)
(-0.224373 0.400023 0)
(-0.327296 0.712817 0)
(-0.637148 0.642084 0)
(-0.537793 0.0271359 0)
(-0.263857 -0.636216 0)
(-0.0456675 -0.718136 0)
(0.0917003 -0.716118 0)
(0.113057 -0.801725 0)
(0.0893392 -0.913585 0)
(0.0696259 -1.03983 0)
(0.0597258 -1.10666 0)
(0.000738385 -1.20202 0)
(-0.0051733 0.000361057 0)
(-0.00630726 0.000673702 0)
(-0.00783157 0.0012635 0)
(-0.00995567 0.00222897 0)
(-0.0127676 0.00374803 0)
(-0.0164767 0.00597102 0)
(-0.0213916 0.00914767 0)
(-0.0280705 0.0136862 0)
(-0.0371844 0.0195626 0)
(-0.0496842 0.0276165 0)
(-0.0699182 0.0399337 0)
(-0.108959 0.0603656 0)
(-0.203544 0.111905 0)
(-0.453687 0.481524 0)
(-1.66121 0.533714 0)
(-1.07067 -0.523074 0)
(-0.683172 0.0495635 0)
(-0.622707 0.128987 0)
(-0.982888 0.235453 0)
(-0.302643 0.845371 0)
(-0.686639 0.66572 0)
(-0.810691 -0.0273128 0)
(-0.287326 -0.806887 0)
(-0.0487042 -0.797494 0)
(0.096289 -0.773645 0)
(0.182044 -0.810482 0)
(0.197105 -0.907464 0)
(0.174589 -1.00934 0)
(0.120411 -1.07741 0)
(0.0165636 -1.13482 0)
(-0.00521495 0.000383157 0)
(-0.00628695 0.000731904 0)
(-0.00783158 0.00137165 0)
(-0.009973 0.00239526 0)
(-0.0128148 0.00399544 0)
(-0.0165469 0.00632427 0)
(-0.0214359 0.00964184 0)
(-0.0279498 0.0144455 0)
(-0.0368161 0.0206817 0)
(-0.0490859 0.0294128 0)
(-0.0688821 0.0434214 0)
(-0.106078 0.0683265 0)
(-0.189106 0.134788 0)
(-0.316884 0.498682 0)
(-0.461533 0.612215 0)
(-0.431759 -0.572582 0)
(-0.461112 0.0372918 0)
(-0.518078 0.130729 0)
(-0.517189 0.284787 0)
(-0.380926 0.975316 0)
(-0.664086 0.666254 0)
(-1.04174 -0.551492 0)
(-0.290932 -0.94658 0)
(-0.034939 -0.882956 0)
(0.0926813 -0.836097 0)
(0.172299 -0.844202 0)
(0.201051 -0.909069 0)
(0.185509 -0.975084 0)
(0.122477 -1.01184 0)
(0.0179901 -1.0267 0)
(-0.00523317 0.00040699 0)
(-0.0062457 0.000798375 0)
(-0.00780408 0.00149065 0)
(-0.0099538 0.00257254 0)
(-0.0128045 0.00425119 0)
(-0.0165196 0.0066907 0)
(-0.0213207 0.0101565 0)
(-0.0275838 0.0152191 0)
(-0.0360423 0.0218432 0)
(-0.0478492 0.0313111 0)
(-0.0666815 0.0470195 0)
(-0.100596 0.0761642 0)
(-0.16706 0.153313 0)
(-0.19988 0.467451 0)
(0.407008 0.575041 0)
(-0.039276 -0.430633 0)
(-0.36323 0.0493422 0)
(-0.458378 0.144613 0)
(-0.283399 0.489402 0)
(-0.638704 0.841113 0)
(-0.749472 0.801003 0)
(-0.585172 -1.10583 0)
(-0.218795 -1.1568 0)
(0.00885073 -0.965793 0)
(0.103046 -0.886493 0)
(0.152195 -0.873964 0)
(0.16606 -0.910278 0)
(0.142372 -0.94355 0)
(0.0902572 -0.942905 0)
(0.013341 -0.926886 0)
(-0.00524235 0.00043313 0)
(-0.00620724 0.000872937 0)
(-0.00777388 0.00161987 0)
(-0.00992849 0.00276098 0)
(-0.012772 0.00451599 0)
(-0.0164414 0.00706935 0)
(-0.0211172 0.0106908 0)
(-0.0270956 0.0160029 0)
(-0.035066 0.0230338 0)
(-0.0462547 0.0332722 0)
(-0.0637242 0.0506191 0)
(-0.093338 0.0834443 0)
(-0.141364 0.166126 0)
(-0.112411 0.418448 0)
(0.487016 0.435222 0)
(0.0776759 -0.229977 0)
(-0.298669 0.0922311 0)
(-0.484851 0.175142 0)
(-2.20514 0.692611 0)
(-0.652427 0.883629 0)
(-0.799218 1.00558 0)
(-0.339772 -1.42832 0)
(-0.0167253 -1.32268 0)
(0.0905059 -1.02357 0)
(0.130066 -0.91616 0)
(0.143265 -0.886177 0)
(0.132871 -0.898019 0)
(0.0963902 -0.907392 0)
(0.0520234 -0.889371 0)
(0.00752525 -0.860604 0)
(-0.00524338 0.000462289 0)
(-0.00617222 0.000955424 0)
(-0.00774032 0.00175894 0)
(-0.00989538 0.00296093 0)
(-0.012713 0.00479211 0)
(-0.0163087 0.00746103 0)
(-0.020825 0.0112445 0)
(-0.0264887 0.0167961 0)
(-0.0339084 0.0242401 0)
(-0.0443187 0.0352514 0)
(-0.0600415 0.0540963 0)
(-0.0845299 0.0897543 0)
(-0.114382 0.172887 0)
(-0.0520342 0.365597 0)
(0.338627 0.329312 0)
(0.0926518 -0.0647947 0)
(-0.233758 0.160088 0)
(-0.536093 0.215636 0)
(-0.724392 0.351352 0)
(-1.0278 1.00811 0)
(-0.422567 0.327782 0)
(0.648536 -1.46169 0)
(0.27665 -1.3222 0)
(0.197704 -1.02813 0)
(0.170546 -0.916497 0)
(0.147637 -0.876567 0)
(0.115399 -0.869099 0)
(0.0707506 -0.864726 0)
(0.0289525 -0.848093 0)
(0.00401032 -0.827868 0)
(-0.00523559 0.000495153 0)
(-0.0061387 0.00104583 0)
(-0.00770128 0.00190776 0)
(-0.00984888 0.00317273 0)
(-0.0126204 0.00508187 0)
(-0.016116 0.00786687 0)
(-0.0204381 0.0118156 0)
(-0.0257532 0.017595 0)
(-0.0325661 0.0254455 0)
(-0.0420251 0.037198 0)
(-0.0556363 0.0573135 0)
(-0.0744213 0.0947341 0)
(-0.0879448 0.174012 0)
(-0.0125082 0.315735 0)
(0.235984 0.270553 0)
(0.0938855 0.0504702 0)
(-0.151717 0.239253 0)
(-0.669438 0.464736 0)
(-1.33592 0.6161 0)
(-0.834777 0.785124 0)
(0.36559 0.750617 0)
(1.16829 -1.24797 0)
(0.496246 -1.14877 0)
(0.297555 -0.970402 0)
(0.214843 -0.883496 0)
(0.162143 -0.844729 0)
(0.115275 -0.827939 0)
(0.0688739 -0.817177 0)
(0.02846 -0.810355 0)
(0.00393471 -0.807149 0)
(-0.00521855 0.000532183 0)
(-0.00610439 0.00114413 0)
(-0.007656 0.00206616 0)
(-0.00978415 0.00339642 0)
(-0.0124912 0.00538663 0)
(-0.0158618 0.00828729 0)
(-0.0199551 0.0124003 0)
(-0.0248828 0.0183912 0)
(-0.0310333 0.0266268 0)
(-0.0393632 0.0390491 0)
(-0.0505429 0.0601175 0)
(-0.0633631 0.0981031 0)
(-0.0633959 0.170413 0)
(0.0126452 0.272272 0)
(0.173543 0.23688 0)
(0.0986792 0.125728 0)
(-0.0445008 0.298069 0)
(0.0215948 0.864187 0)
(-1.13824 0.768407 0)
(0.449546 0.0183356 0)
(0.853193 -0.0266516 0)
(1.02977 -0.82274 0)
(0.575233 -0.926085 0)
(0.361414 -0.869054 0)
(0.25089 -0.821664 0)
(0.179771 -0.794275 0)
(0.124678 -0.77886 0)
(0.0789843 -0.768742 0)
(0.04041 -0.767411 0)
(0.00570183 -0.771785 0)
(-0.00518985 0.000573631 0)
(-0.00606336 0.00125038 0)
(-0.00759943 0.00223399 0)
(-0.0096937 0.00363203 0)
(-0.0123203 0.0057068 0)
(-0.0155422 0.00872128 0)
(-0.0193723 0.0129919 0)
(-0.0238709 0.0191718 0)
(-0.029299 0.0277543 0)
(-0.0363319 0.0407331 0)
(-0.0448306 0.0623573 0)
(-0.051763 0.0996961 0)
(-0.041519 0.163221 0)
(0.0287834 0.23585 0)
(0.137457 0.214972 0)
(0.109779 0.168737 0)
(0.0627619 0.310905 0)
(0.274953 0.650723 0)
(1.06679 0.375111 0)
(0.861425 -0.149805 0)
(0.84599 -0.273962 0)
(0.80367 -0.592434 0)
(0.558835 -0.737451 0)
(0.382622 -0.752922 0)
(0.270281 -0.741863 0)
(0.192492 -0.730447 0)
(0.133166 -0.722602 0)
(0.085542 -0.718209 0)
(0.0450921 -0.716552 0)
(0.00606431 -0.715704 0)
(-0.00514776 0.00061969 0)
(-0.00601122 0.00136474 0)
(-0.00752578 0.00241121 0)
(-0.00957123 0.00387978 0)
(-0.0121029 0.00604195 0)
(-0.0151517 0.00916616 0)
(-0.0186863 0.0135818 0)
(-0.0227117 0.0199204 0)
(-0.0273523 0.0287907 0)
(-0.0329444 0.0421656 0)
(-0.0386107 0.0638865 0)
(-0.0400509 0.0994658 0)
(-0.0226212 0.153547 0)
(0.0397518 0.205641 0)
(0.118603 0.197476 0)
(0.124697 0.185708 0)
(0.144467 0.285868 0)
(0.358485 0.436849 0)
(0.777272 0.251703 0)
(0.765249 -0.105428 0)
(0.722666 -0.282294 0)
(0.64951 -0.475243 0)
(0.503581 -0.597277 0)
(0.371206 -0.642499 0)
(0.271311 -0.655714 0)
(0.195698 -0.658615 0)
(0.135719 -0.658796 0)
(0.0856602 -0.658681 0)
(0.0422664 -0.65847 0)
(0.00523941 -0.658018 0)
(-0.00509347 0.000670521 0)
(-0.00594777 0.00148736 0)
(-0.00743279 0.00259808 0)
(-0.00941578 0.00414004 0)
(-0.0118384 0.00639082 0)
(-0.0146882 0.00961738 0)
(-0.0178963 0.014159 0)
(-0.0214025 0.0206191 0)
(-0.0251878 0.0296954 0)
(-0.0292286 0.04326 0)
(-0.0320267 0.0645828 0)
(-0.0286223 0.0974761 0)
(-0.00664867 0.142304 0)
(0.0479323 0.18017 0)
(0.110392 0.180435 0)
(0.139155 0.182911 0)
(0.194069 0.241032 0)
(0.365636 0.286156 0)
(0.588078 0.14734 0)
(0.63583 -0.084337 0)
(0.604706 -0.253005 0)
(0.537861 -0.39526 0)
(0.439115 -0.493304 0)
(0.340778 -0.545768 0)
(0.257408 -0.571408 0)
(0.189077 -0.583973 0)
(0.13237 -0.590425 0)
(0.0842517 -0.593903 0)
(0.0424261 -0.59562 0)
(0.00508153 -0.596167 0)
(-0.00502634 0.000726272 0)
(-0.00587057 0.00161795 0)
(-0.00731751 0.002795 0)
(-0.00922591 0.00441277 0)
(-0.0115249 0.0067508 0)
(-0.0141511 0.010068 0)
(-0.0170021 0.0147096 0)
(-0.0199442 0.0212458 0)
(-0.0228114 0.0304231 0)
(-0.0252323 0.0439323 0)
(-0.0252504 0.0643587 0)
(-0.017815 0.0938752 0)
(0.00664416 0.130144 0)
(0.0545397 0.15793 0)
(0.107938 0.162077 0)
(0.149621 0.166732 0)
(0.216153 0.190922 0)
(0.342705 0.183802 0)
(0.473564 0.0763748 0)
(0.518608 -0.0828798 0)
(0.499724 -0.221424 0)
(0.447278 -0.332864 0)
(0.375787 -0.412833 0)
(0.301555 -0.463279 0)
(0.233774 -0.493208 0)
(0.17468 -0.510741 0)
(0.123522 -0.521075 0)
(0.0789374 -0.52708 0)
(0.0396268 -0.530227 0)
(0.00453236 -0.531336 0)
(-0.00494275 0.00078693 0)
(-0.0057739 0.00175566 0)
(-0.00717431 0.00300193 0)
(-0.00899773 0.00469704 0)
(-0.0111578 0.00711753 0)
(-0.0135404 0.0105091 0)
(-0.016006 0.0152177 0)
(-0.0183447 0.0217739 0)
(-0.0202473 0.0309247 0)
(-0.0210333 0.0441072 0)
(-0.0184833 0.0631719 0)
(-0.00791007 0.088874 0)
(0.0175371 0.117524 0)
(0.0599678 0.137723 0)
(0.107697 0.14208 0)
(0.154314 0.143014 0)
(0.218705 0.143716 0)
(0.309225 0.113586 0)
(0.390019 0.0276612 0)
(0.421864 -0.0873437 0)
(0.409439 -0.194919 0)
(0.370049 -0.282796 0)
(0.316735 -0.348218 0)
(0.259753 -0.393213 0)
(0.205169 -0.422747 0)
(0.155411 -0.44169 0)
(0.110859 -0.453662 0)
(0.0711442 -0.460981 0)
(0.0356806 -0.464961 0)
(0.00390331 -0.46635 0)
(-0.00483996 0.000852077 0)
(-0.00565347 0.00189938 0)
(-0.00699787 0.00321822 0)
(-0.00872691 0.00499088 0)
(-0.0107315 0.0074855 0)
(-0.0128539 0.0109315 0)
(-0.0149096 0.015667 0)
(-0.0166157 0.0221751 0)
(-0.0175287 0.0311518 0)
(-0.0167257 0.0437264 0)
(-0.0119236 0.061027 0)
(0.000893748 0.0827003 0)
(0.0262631 0.104673 0)
(0.0641537 0.118752 0)
(0.107309 0.120961 0)
(0.153091 0.116363 0)
(0.208944 0.102779 0)
(0.272757 0.0644864 0)
(0.32349 -0.00543853 0)
(0.343281 -0.0912724 0)
(0.333412 -0.173381 0)
(0.30363 -0.24213 0)
(0.26315 -0.295085 0)
(0.218905 -0.333469 0)
(0.175144 -0.360197 0)
(0.133992 -0.378292 0)
(0.0962172 -0.390243 0)
(0.0619553 -0.397833 0)
(0.0310477 -0.402132 0)
(0.00324268 -0.403672 0)
(-0.00471779 0.000920492 0)
(-0.00550744 0.00204729 0)
(-0.00678633 0.00344148 0)
(-0.00841031 0.00528975 0)
(-0.0102425 0.00784659 0)
(-0.0120892 0.011324 0)
(-0.0137167 0.0160393 0)
(-0.0147749 0.0224186 0)
(-0.0147043 0.0310595 0)
(-0.0124265 0.0427545 0)
(-0.00577218 0.0579764 0)
(0.00846255 0.0756312 0)
(0.0329856 0.0917846 0)
(0.0668492 0.100661 0)
(0.105426 0.0996438 0)
(0.146803 0.0899858 0)
(0.192143 0.0689502 0)
(0.236583 0.0298456 0)
(0.268297 -0.0273183 0)
(0.279154 -0.0927041 0)
(0.270115 -0.155229 0)
(0.246947 -0.208546 0)
(0.2157 -0.250739 0)
(0.181083 -0.282395 0)
(0.146132 -0.305258 0)
(0.112573 -0.321267 0)
(0.0812252 -0.332172 0)
(0.0524285 -0.339337 0)
(0.0262485 -0.34357 0)
(0.00261176 -0.345123 0)
(-0.00457602 0.000991192 0)
(-0.00533434 0.00219846 0)
(-0.00653898 0.00366946 0)
(-0.00804586 0.0055887 0)
(-0.0096903 0.00819222 0)
(-0.0112472 0.0116737 0)
(-0.0124362 0.0163145 0)
(-0.0128469 0.0224738 0)
(-0.0118348 0.0306117 0)
(-0.00826121 0.0411824 0)
(-0.000212032 0.0541064 0)
(0.0146859 0.0678892 0)
(0.0378006 0.0790278 0)
(0.0678253 0.0834289 0)
(0.101499 0.0791044 0)
(0.136712 0.065826 0)
(0.171842 0.0419124 0)
(0.202289 0.00550363 0)
(0.221638 -0.0410998 0)
(0.226401 -0.0914825 0)
(0.217673 -0.139168 0)
(0.199103 -0.18022 0)
(0.174624 -0.21331 0)
(0.147418 -0.238701 0)
(0.11965 -0.25746 0)
(0.0926572 -0.270867 0)
(0.0671527 -0.280177 0)
(0.0434886 -0.28646 0)
(0.0217848 -0.290319 0)
(0.00206992 -0.291771 0)
(-0.00441213 0.00106368 0)
(-0.00513265 0.00235213 0)
(-0.00625575 0.00389928 0)
(-0.00763457 0.00588285 0)
(-0.00907892 0.00851459 0)
(-0.010336 0.0119679 0)
(-0.0110862 0.0164741 0)
(-0.0108702 0.0223144 0)
(-0.00899704 0.029787 0)
(-0.00436203 0.0390324 0)
(0.00461378 0.0495742 0)
(0.0195075 0.0597312 0)
(0.0407805 0.0665969 0)
(0.0669873 0.0672438 0)
(0.0955316 0.0601549 0)
(0.124117 0.0448725 0)
(0.150323 0.0209194 0)
(0.170699 -0.0112883 0)
(0.181922 -0.0490355 0)
(0.182749 -0.088053 0)
(0.174332 -0.12446 0)
(0.15913 -0.155879 0)
(0.139738 -0.181473 0)
(0.118318 -0.201388 0)
(0.0964028 -0.216311 0)
(0.0749944 -0.227102 0)
(0.0546441 -0.234635 0)
(0.0355948 -0.239668 0)
(0.0178924 -0.242654 0)
(0.00162203 -0.243732 0)
(-0.00422182 0.00113738 0)
(-0.00489882 0.00250734 0)
(-0.00593389 0.00412796 0)
(-0.00717485 0.00616742 0)
(-0.00841057 0.00880587 0)
(-0.00936495 0.0121932 0)
(-0.00968825 0.0165015 0)
(-0.00889087 0.0219213 0)
(-0.00627711 0.0285824 0)
(-0.000858276 0.0363559 0)
(0.00857481 0.0445183 0)
(0.0229122 0.0514052 0)
(0.0420167 0.0547085 0)
(0.0644051 0.0523681 0)
(0.0878558 0.0433463 0)
(0.110147 0.0274627 0)
(0.12902 0.00509705 0)
(0.142195 -0.0224571 0)
(0.148089 -0.0527758 0)
(0.14652 -0.0830002 0)
(0.138577 -0.110771 0)
(0.125989 -0.134678 0)
(0.110513 -0.154243 0)
(0.0936237 -0.169589 0)
(0.0763873 -0.181184 0)
(0.059517 -0.189594 0)
(0.0434141 -0.195371 0)
(0.028274 -0.198969 0)
(0.0141721 -0.20079 0)
(0.00121148 -0.201333 0)
(-0.00400137 0.00121138 0)
(-0.00462908 0.00266267 0)
(-0.00557041 0.00435228 0)
(-0.0066657 0.00643578 0)
(-0.00768945 0.00905858 0)
(-0.00834766 0.0123388 0)
(-0.00827152 0.0163846 0)
(-0.00696368 0.0212871 0)
(-0.00376694 0.027018 0)
(0.00214145 0.0332495 0)
(0.0115853 0.039128 0)
(0.0249248 0.0431608 0)
(0.0416427 0.0435963 0)
(0.0602921 0.0390572 0)
(0.0789562 0.0289761 0)
(0.0957162 0.0135418 0)
(0.108822 -0.00641394 0)
(0.116916 -0.02942 0)
(0.119376 -0.0535453 0)
(0.116479 -0.0768855 0)
(0.109178 -0.0980028 0)
(0.0987238 -0.116079 0)
(0.0863222 -0.130873 0)
(0.0729801 -0.142497 0)
(0.0594314 -0.151277 0)
(0.0461848 -0.157596 0)
(0.0335539 -0.161822 0)
(0.0217291 -0.164276 0)
(0.0108138 -0.165336 0)
(0.00086996 -0.165579 0)
(-0.00374724 0.00128513 0)
(-0.0043203 0.00281564 0)
(-0.00516264 0.00456864 0)
(-0.00610777 0.00668229 0)
(-0.00692151 0.009266 0)
(-0.00730061 0.0123971 0)
(-0.0068698 0.0161176 0)
(-0.00514832 0.0204183 0)
(-0.00155568 0.0251374 0)
(0.00454057 0.0298219 0)
(0.0136047 0.0335995 0)
(0.0256164 0.0352333 0)
(0.0398474 0.0334704 0)
(0.0549564 0.0274837 0)
(0.0693435 0.0171094 0)
(0.0815021 0.00281384 0)
(0.0902331 -0.014423 0)
(0.0948204 -0.033268 0)
(0.0951495 -0.0522786 0)
(0.0916591 -0.0702034 0)
(0.0851386 -0.086174 0)
(0.0764973 -0.0997338 0)
(0.0665752 -0.110785 0)
(0.0560714 -0.119444 0)
(0.0455022 -0.125956 0)
(0.0352353 -0.130598 0)
(0.0255027 -0.133644 0)
(0.016448 -0.13535 0)
(0.00814262 -0.136035 0)
(0.000611082 -0.136168 0)
(-0.00345567 0.00135768 0)
(-0.00396954 0.002964 0)
(-0.00470836 0.0047729 0)
(-0.00550235 0.00690192 0)
(-0.0061151 0.00942238 0)
(-0.00624417 0.0123644 0)
(-0.00552154 0.0157034 0)
(-0.00350653 0.0193391 0)
(0.000276835 0.0230062 0)
(0.00626842 0.0262076 0)
(0.0146337 0.0281334 0)
(0.0251001 0.0278362 0)
(0.0368634 0.0244983 0)
(0.0487465 0.0177218 0)
(0.0594825 0.00764138 0)
(0.0679832 -0.00513492 0)
(0.0735098 -0.0196636 0)
(0.0757596 -0.0348634 0)
(0.0748631 -0.0497043 0)
(0.071278 -0.0633808 0)
(0.065634 -0.0753809 0)
(0.0585939 -0.0854686 0)
(0.0507456 -0.0936362 0)
(0.0425725 -0.100005 0)
(0.0344315 -0.104775 0)
(0.0265808 -0.108164 0)
(0.0191833 -0.110377 0)
(0.0123376 -0.111604 0)
(0.00608496 -0.112081 0)
(0.000428088 -0.112163 0)
(-0.00312317 0.00142818 0)
(-0.00357345 0.00310512 0)
(-0.00420593 0.00496196 0)
(-0.00485196 0.00709052 0)
(-0.00528057 0.00952446 0)
(-0.00520067 0.0122427 0)
(-0.00426678 0.0151577 0)
(-0.00209693 0.018093 0)
(0.0016731 0.0207283 0)
(0.00728952 0.0225582 0)
(0.0147125 0.0229204 0)
(0.0235251 0.0211486 0)
(0.0329466 0.0167847 0)
(0.0420025 0.00974503 0)
(0.049746 0.000348165 0)
(0.0554571 -0.0107662 0)
(0.0587287 -0.0227911 0)
(0.0595023 -0.0349039 0)
(0.0580039 -0.0464006 0)
(0.0546467 -0.0567784 0)
(0.049919 -0.065751 0)
(0.0443011 -0.0732151 0)
(0.0382034 -0.0792128 0)
(0.0319566 -0.0838631 0)
(0.0257981 -0.087331 0)
(0.0198943 -0.0897862 0)
(0.0143476 -0.0913878 0)
(0.00922002 -0.0922778 0)
(0.00453817 -0.0926269 0)
(0.000302716 -0.0926872 0)
(-0.00274592 0.00149467 0)
(-0.00312908 0.00323594 0)
(-0.00365393 0.00513174 0)
(-0.00415968 0.007245 0)
(-0.00442907 0.00957301 0)
(-0.00419292 0.0120426 0)
(-0.00314301 0.0145095 0)
(-0.000969917 0.0167428 0)
(0.00258199 0.018401 0)
(0.00760163 0.01903 0)
(0.0139172 0.0181335 0)
(0.0210633 0.0153046 0)
(0.0283496 0.0103653 0)
(0.0350166 0.00344148 0)
(0.0404034 -0.00505961 0)
(0.0440668 -0.0145496 0)
(0.0458261 -0.0243801 0)
(0.0457451 -0.0339596 0)
(0.044067 -0.0428251 0)
(0.0411322 -0.0506787 0)
(0.0373048 -0.0573764 0)
(0.0329261 -0.0628942 0)
(0.0282778 -0.0672974 0)
(0.0235821 -0.0706928 0)
(0.0189963 -0.0732111 0)
(0.01463 -0.0749804 0)
(0.010547 -0.0761173 0)
(0.00677934 -0.0767244 0)
(0.00333408 -0.0769347 0)
(0.000209878 -0.0769552 0)
(-0.00232038 0.00155498 0)
(-0.00263365 0.00335322 0)
(-0.0030517 0.00527788 0)
(-0.00342896 0.00736484 0)
(-0.00357104 0.00957371 0)
(-0.0032415 0.0117834 0)
(-0.00218258 0.0138038 0)
(-0.000161626 0.0153681 0)
(0.00298566 0.0161519 0)
(0.00723306 0.0157782 0)
(0.0123484 0.0139219 0)
(0.0178902 0.0103935 0)
(0.0232961 0.00521728 0)
(0.02801 -0.00135797 0)
(0.0316046 -0.00890545 0)
(0.0338297 -0.0169247 0)
(0.0346367 -0.0249217 0)
(0.0341381 -0.0324884 0)
(0.0325507 -0.0393342 0)
(0.0301371 -0.0452942 0)
(0.0271593 -0.0503109 0)
(0.0238517 -0.0544031 0)
(0.0204019 -0.0576446 0)
(0.0169558 -0.060131 0)
(0.0136146 -0.0619676 0)
(0.0104495 -0.0632531 0)
(0.0075031 -0.0640754 0)
(0.00479997 -0.0645103 0)
(0.00234737 -0.0646546 0)
(0.000138341 -0.0646634 0)
(-0.00184338 0.00160736 0)
(-0.00208459 0.00345325 0)
(-0.0023982 0.0053979 0)
(-0.00266187 0.00745132 0)
(-0.00271388 0.0095376 0)
(-0.00236159 0.011496 0)
(-0.0014051 0.0131004 0)
(0.00031735 0.0140722 0)
(0.00289279 0.0141153 0)
(0.00623786 0.0129525 0)
(0.0101177 0.0104089 0)
(0.0141638 0.00646324 0)
(0.0179558 0.00127498 0)
(0.0211196 -0.00484781 0)
(0.0233912 -0.0115048 0)
(0.0246516 -0.0182856 0)
(0.024916 -0.0248271 0)
(0.0242995 -0.0308581 0)
(0.0229735 -0.036205 0)
(0.0211271 -0.0407878 0)
(0.0189397 -0.0445985 0)
(0.0165673 -0.0476765 0)
(0.0141317 -0.0500952 0)
(0.0117249 -0.0519396 0)
(0.00940789 -0.0532982 0)
(0.00722312 -0.0542508 0)
(0.00519453 -0.054869 0)
(0.00333194 -0.0552132 0)
(0.00163393 -0.0553475 0)
(9.62332e-05 -0.0553673 0)
(-0.00131223 0.00164954 0)
(-0.00147942 0.00353237 0)
(-0.00169172 0.00548899 0)
(-0.00185837 0.00750781 0)
(-0.00185985 0.0094826 0)
(-0.00155684 0.0112213 0)
(-0.000811664 0.0124742 0)
(0.000477246 0.0129643 0)
(0.00234112 0.0124337 0)
(0.00469062 0.0106979 0)
(0.0073339 0.00770051 0)
(0.0100062 0.00353924 0)
(0.0124288 -0.00154672 0)
(0.0143729 -0.00722812 0)
(0.0156924 -0.013146 0)
(0.0163402 -0.0189702 0)
(0.016351 -0.0244364 0)
(0.0158152 -0.0293665 0)
(0.0148508 -0.0336623 0)
(0.0135815 -0.0372958 0)
(0.0121209 -0.0402893 0)
(0.0105658 -0.0426947 0)
(0.00899048 -0.0445825 0)
(0.00745012 -0.0460223 0)
(0.00597931 -0.0470782 0)
(0.00459866 -0.0478036 0)
(0.00331678 -0.0482441 0)
(0.002135 -0.0484415 0)
(0.00105042 -0.0484643 0)
(6.28329e-05 -0.0484377 0)
(-0.000725171 0.00167842 0)
(-0.000816015 0.00358597 0)
(-0.00092956 0.00554898 0)
(-0.00101379 0.00753975 0)
(-0.00100104 0.00943048 0)
(-0.000813593 0.0110089 0)
(-0.000377153 0.0120115 0)
(0.000358667 0.0121688 0)
(0.00139851 0.0112579 0)
(0.0026809 0.00916243 0)
(0.00409036 0.00590429 0)
(0.00548697 0.00164946 0)
(0.00672731 -0.00331289 0)
(0.0076911 -0.00865823 0)
(0.00831672 -0.0140638 0)
(0.00859078 -0.0192547 0)
(0.00853928 -0.0240292 0)
(0.00821423 -0.0282653 0)
(0.00767923 -0.0319087 0)
(0.00699811 -0.0349599 0)
(0.0062267 -0.0374545 0)
(0.00541007 -0.0394466 0)
(0.0045829 -0.0410004 0)
(0.0037735 -0.0421799 0)
(0.00300155 -0.0430478 0)
(0.00227979 -0.0436559 0)
(0.00161669 -0.0440433 0)
(0.00101978 -0.0442418 0)
(0.000491643 -0.0442978 0)
(2.54958e-05 -0.0442936 0)
(-0.000241238 0.00119837 0)
(-0.000268269 0.0031116 0)
(-0.000306475 0.00506265 0)
(-0.000339526 0.00704686 0)
(-0.000345139 0.00895304 0)
(-0.000296935 0.0105795 0)
(-0.000168468 0.0116668 0)
(5.94577e-05 0.0119436 0)
(0.000392379 0.0111823 0)
(0.000810714 0.00926 0)
(0.00127333 0.00619344 0)
(0.00173058 0.00212906 0)
(0.00216704 -0.0026531 0)
(0.00249718 -0.0078167 0)
(0.00272398 -0.0130589 0)
(0.00283616 -0.0181033 0)
(0.00283905 -0.0227517 0)
(0.00274871 -0.026883 0)
(0.00258556 -0.0304431 0)
(0.00237006 -0.0334293 0)
(0.00212053 -0.0358739 0)
(0.00185306 -0.037829 0)
(0.00157998 -0.0393585 0)
(0.0013097 -0.0405275 0)
(0.00104857 -0.0413969 0)
(0.000802668 -0.0420186 0)
(0.000576286 -0.0424377 0)
(0.000372724 -0.0426912 0)
(0.000194978 -0.0428109 0)
(4.2343e-05 -0.0428395 0)
(0.176675 -1.05873 0)
(0.330682 -0.996591 0)
(0.40593 -0.951146 0)
(0.38395 -0.894042 0)
(0.282141 -0.794763 0)
(0.146461 -0.646002 0)
(0.25762 -0.467793 0)
(0.396336 -0.176415 0)
(0.563112 0.430465 0)
(0.409309 0.550195 0)
(0.156539 0.451204 0)
(0.111792 0.30657 0)
(-0.0582246 0.220257 0)
(0.0079089 0.155813 0)
(0.0587999 0.105035 0)
(0.0272058 0.0793302 0)
(0.00948712 0.0629396 0)
(0.0173747 0.0482569 0)
(0.0169512 0.036311 0)
(0.0140431 0.0264959 0)
(0.0127887 0.0189852 0)
(0.0111649 0.0133126 0)
(0.00897029 0.00901525 0)
(0.00712861 0.00585486 0)
(0.00570811 0.0036373 0)
(0.00461437 0.00215134 0)
(0.00374027 0.00121061 0)
(0.003034 0.000653349 0)
(0.00256133 0.000358076 0)
(0.00701354 -0.000151429 0)
(0.0888866 -1.16691 0)
(0.120112 -1.05088 0)
(0.154485 -0.953431 0)
(0.115042 -0.858091 0)
(0.0238569 -0.737791 0)
(0.0217619 -0.655211 0)
(0.183309 -0.584915 0)
(0.480392 -0.216031 0)
(0.598014 0.515978 0)
(0.40782 0.617012 0)
(0.12733 0.497935 0)
(0.111875 0.324867 0)
(0.501446 0.184242 0)
(0.69032 0.157248 0)
(1.61943 0.147079 0)
(0.825403 0.200672 0)
(0.170001 0.0730565 0)
(0.088673 0.0502184 0)
(0.0573859 0.0369414 0)
(0.0416632 0.0267941 0)
(0.0319441 0.0192311 0)
(0.0244464 0.0135535 0)
(0.0186986 0.00920072 0)
(0.0144375 0.00600751 0)
(0.0112086 0.00376536 0)
(0.00877066 0.0022455 0)
(0.00687164 0.00127903 0)
(0.00540249 0.000694173 0)
(0.0044571 0.000371657 0)
(0.00518613 -0.000322912 0)
(-0.0547034 -1.17608 0)
(-0.0661758 -1.06055 0)
(-0.0854481 -0.942049 0)
(-0.104295 -0.831399 0)
(-0.105759 -0.731224 0)
(0.00615932 -0.714653 0)
(0.19186 -0.70335 0)
(0.558701 -0.301357 0)
(0.670811 0.564038 0)
(0.413571 0.698666 0)
(0.116829 0.543821 0)
(0.441865 0.282077 0)
(0.767489 0.125476 0)
(1.57403 -0.197086 0)
(2.556 0.352071 0)
(0.745377 0.446397 0)
(0.226922 0.0995412 0)
(0.114472 0.0574379 0)
(0.0721454 0.0398649 0)
(0.0510075 0.0282007 0)
(0.0383431 0.0200812 0)
(0.028994 0.0141602 0)
(0.0219825 0.00960753 0)
(0.0168427 0.00630606 0)
(0.0129793 0.00399293 0)
(0.0101017 0.00240318 0)
(0.007887 0.00138757 0)
(0.00618861 0.000757507 0)
(0.00510065 0.000392517 0)
(0.0046261 -0.000347122 0)
(-0.0968657 -1.10431 0)
(-0.156547 -1.03447 0)
(-0.19287 -0.934554 0)
(-0.18727 -0.833041 0)
(-0.121571 -0.777057 0)
(0.0103601 -0.789286 0)
(0.207952 -0.804759 0)
(0.475314 -0.583902 0)
(0.644528 0.515637 0)
(0.446576 0.79815 0)
(-1.24222 -0.0729536 0)
(0.610234 0.166605 0)
(0.690609 0.0672369 0)
(1.00639 -0.38509 0)
(1.68199 0.401865 0)
(0.502809 0.610186 0)
(0.229184 0.130097 0)
(0.118544 0.0662916 0)
(0.0747114 0.0434943 0)
(0.0525665 0.0299744 0)
(0.0393706 0.0211458 0)
(0.0298074 0.0149042 0)
(0.0226615 0.0101015 0)
(0.0173794 0.00666049 0)
(0.0133822 0.00425616 0)
(0.010407 0.0025858 0)
(0.00813234 0.00151178 0)
(0.00639751 0.000832071 0)
(0.00528862 0.000418975 0)
(0.00450816 -0.000315349 0)
(-0.0945434 -1.01926 0)
(-0.169933 -0.987391 0)
(-0.197125 -0.930049 0)
(-0.180336 -0.857474 0)
(-0.112809 -0.83432 0)
(0.000288938 -0.866473 0)
(0.206075 -0.941518 0)
(0.652985 -0.733323 0)
(0.679253 0.511144 0)
(0.468616 0.977925 0)
(-0.0263485 -0.0324376 0)
(0.541721 0.156935 0)
(0.476732 0.0669764 0)
(0.460453 -0.427992 0)
(0.421887 0.385109 0)
(0.286284 0.629568 0)
(0.209269 0.157381 0)
(0.114987 0.0755681 0)
(0.0734975 0.0474663 0)
(0.0518436 0.0319782 0)
(0.0388415 0.0223378 0)
(0.0295796 0.0157101 0)
(0.0226704 0.0106338 0)
(0.0174666 0.00703565 0)
(0.013474 0.0045283 0)
(0.0104787 0.00277778 0)
(0.00819611 0.00164135 0)
(0.00646768 0.00091338 0)
(0.00536498 0.000451036 0)
(0.00455118 -0.00027006 0)
(-0.0678674 -0.939012 0)
(-0.126875 -0.946183 0)
(-0.159094 -0.923505 0)
(-0.154934 -0.880416 0)
(-0.114322 -0.880026 0)
(-0.0341281 -0.938188 0)
(0.144653 -1.09479 0)
(1.04646 -1.00749 0)
(0.952842 0.864434 0)
(0.530219 1.02763 0)
(0.0245038 0.392812 0)
(0.45865 0.13823 0)
(0.386654 0.0868003 0)
(0.142721 -0.317389 0)
(-0.453706 0.346818 0)
(0.150677 0.55634 0)
(0.18047 0.177799 0)
(0.108369 0.0845405 0)
(0.0709923 0.051532 0)
(0.0504719 0.0341 0)
(0.0379226 0.0235984 0)
(0.029095 0.0165447 0)
(0.0225114 0.0111898 0)
(0.0174451 0.00742322 0)
(0.0135018 0.00480383 0)
(0.0105058 0.00297564 0)
(0.00822081 0.00177397 0)
(0.00650481 0.001 0)
(0.00541084 0.000488383 0)
(0.00462338 -0.000224892 0)
(-0.0363578 -0.880453 0)
(-0.0812253 -0.906032 0)
(-0.12126 -0.903693 0)
(-0.138987 -0.88759 0)
(-0.130991 -0.905529 0)
(-0.0983616 -0.987189 0)
(-0.0154739 -1.21825 0)
(0.346215 -1.60085 0)
(1.08454 1.37388 0)
(0.703079 1.09182 0)
(0.803912 0.505116 0)
(0.512482 0.142441 0)
(0.336951 0.133408 0)
(0.0280429 -0.157059 0)
(-0.510947 0.285215 0)
(0.0660464 0.469816 0)
(0.148369 0.190177 0)
(0.0996816 0.0926724 0)
(0.0676195 0.0555522 0)
(0.0487208 0.036283 0)
(0.0368133 0.0249045 0)
(0.0284842 0.017399 0)
(0.0222523 0.0117679 0)
(0.0173559 0.00782488 0)
(0.0134927 0.00508553 0)
(0.010511 0.00318004 0)
(0.00822602 0.00191056 0)
(0.00652311 0.00109152 0)
(0.00543667 0.000530263 0)
(0.00468391 -0.000182222 0)
(-0.0173937 -0.841697 0)
(-0.0554931 -0.862759 0)
(-0.10098 -0.869624 0)
(-0.136914 -0.87442 0)
(-0.160804 -0.904209 0)
(-0.183693 -0.992506 0)
(-0.237496 -1.22299 0)
(-0.495714 -1.67703 0)
(-0.197209 0.865541 0)
(1.04459 1.15687 0)
(0.754446 0.552918 0)
(0.501823 0.147112 0)
(0.28537 0.209809 0)
(-0.0129594 -0.0193534 0)
(-0.344485 0.245644 0)
(0.0140115 0.393413 0)
(0.116159 0.194831 0)
(0.0892713 0.0994873 0)
(0.0634108 0.0593778 0)
(0.046589 0.0384673 0)
(0.0355213 0.0262337 0)
(0.0277572 0.0182664 0)
(0.0218956 0.012367 0)
(0.0172002 0.00824327 0)
(0.0134448 0.00537749 0)
(0.0104939 0.00339247 0)
(0.00821421 0.00205314 0)
(0.00652488 0.001188 0)
(0.00544428 0.000576055 0)
(0.00472757 -0.000142379 0)
(-0.0175796 -0.809502 0)
(-0.0544413 -0.81575 0)
(-0.100146 -0.826112 0)
(-0.146804 -0.841155 0)
(-0.196431 -0.87319 0)
(-0.266634 -0.946006 0)
(-0.417921 -1.09959 0)
(-0.913058 -1.33445 0)
(-0.370826 0.452613 0)
(0.151681 -0.0991036 0)
(1.58269 0.757062 0)
(0.671979 0.244641 0)
(0.202529 0.310651 0)
(-0.039117 0.0846761 0)
(-0.233769 0.227019 0)
(-0.0162068 0.330534 0)
(0.0859608 0.192955 0)
(0.0775093 0.104599 0)
(0.058383 0.0628504 0)
(0.0440501 0.0405896 0)
(0.0340326 0.0275607 0)
(0.0269071 0.0191384 0)
(0.0214392 0.012984 0)
(0.0169771 0.0086797 0)
(0.0133537 0.0056832 0)
(0.010451 0.00361444 0)
(0.00818552 0.00220402 0)
(0.00651055 0.00128981 0)
(0.00543429 0.000625568 0)
(0.00475569 -0.0001053 0)
(-0.0286988 -0.76896 0)
(-0.0660448 -0.768032 0)
(-0.109653 -0.777162 0)
(-0.162061 -0.791638 0)
(-0.227736 -0.816113 0)
(-0.324382 -0.859609 0)
(-0.502142 -0.922034 0)
(-0.886862 -0.910829 0)
(-1.18427 -0.196229 0)
(-0.537169 -0.11032 0)
(0.624712 0.0288988 0)
(0.0622339 0.655893 0)
(0.0634662 0.383993 0)
(-0.0653625 0.156286 0)
(-0.170014 0.217147 0)
(-0.0333765 0.2806 0)
(0.059043 0.186133 0)
(0.0648613 0.107741 0)
(0.0525945 0.0657971 0)
(0.0410875 0.0425769 0)
(0.0323304 0.0288537 0)
(0.0259205 0.0200028 0)
(0.020879 0.0136125 0)
(0.0166827 0.009133 0)
(0.0132132 0.00600466 0)
(0.010377 0.00384726 0)
(0.00813776 0.00236519 0)
(0.00647853 0.00139743 0)
(0.00540695 0.000678946 0)
(0.00476852 -7.08328e-05 0)
(-0.0331574 -0.716566 0)
(-0.0728398 -0.718386 0)
(-0.118166 -0.722465 0)
(-0.174204 -0.73013 0)
(-0.246442 -0.741639 0)
(-0.348208 -0.755238 0)
(-0.506384 -0.754068 0)
(-0.746901 -0.661424 0)
(-0.888761 -0.331922 0)
(-0.824489 -0.192097 0)
(-1.11833 0.0304817 0)
(-0.424342 0.74439 0)
(-0.076353 0.381537 0)
(-0.0944038 0.196505 0)
(-0.135766 0.208957 0)
(-0.0437076 0.241458 0)
(0.0358935 0.175951 0)
(0.0518261 0.108796 0)
(0.0461441 0.0680527 0)
(0.0376995 0.0443493 0)
(0.0303986 0.0300765 0)
(0.0247847 0.0208442 0)
(0.0202127 0.0142436 0)
(0.0163144 0.00959948 0)
(0.0130201 0.00634243 0)
(0.0102696 0.00409212 0)
(0.00807031 0.00253801 0)
(0.00643019 0.00151146 0)
(0.00536592 0.000736477 0)
(0.00476736 -3.87357e-05 0)
(-0.030879 -0.658648 0)
(-0.0727051 -0.659411 0)
(-0.12099 -0.659979 0)
(-0.178186 -0.660606 0)
(-0.249503 -0.659574 0)
(-0.34298 -0.651218 0)
(-0.468485 -0.618565 0)
(-0.620091 -0.520756 0)
(-0.720013 -0.329697 0)
(-0.75088 -0.157911 0)
(-0.836202 0.125564 0)
(-0.463414 0.457905 0)
(-0.173441 0.331722 0)
(-0.122964 0.209028 0)
(-0.119939 0.198747 0)
(-0.0509639 0.210357 0)
(0.0164609 0.16374 0)
(0.0388964 0.107792 0)
(0.0391772 0.0694647 0)
(0.0339089 0.0458155 0)
(0.0282306 0.0311857 0)
(0.0234941 0.0216436 0)
(0.0194413 0.0148656 0)
(0.0158718 0.0100736 0)
(0.0127737 0.00669578 0)
(0.0101289 0.00435004 0)
(0.00798212 0.00272323 0)
(0.00636677 0.00163266 0)
(0.00531348 0.000798538 0)
(0.00475376 -9.08259e-06 0)
(-0.031777 -0.596123 0)
(-0.0723771 -0.595132 0)
(-0.118829 -0.592574 0)
(-0.173337 -0.587549 0)
(-0.2388 -0.577536 0)
(-0.318806 -0.556766 0)
(-0.415097 -0.513267 0)
(-0.518266 -0.427771 0)
(-0.59638 -0.292576 0)
(-0.635693 -0.132587 0)
(-0.627977 0.0868739 0)
(-0.430424 0.281238 0)
(-0.225482 0.26546 0)
(-0.146251 0.200301 0)
(-0.114777 0.184831 0)
(-0.0570623 0.184612 0)
(0.000375027 0.150431 0)
(0.0264938 0.10488 0)
(0.0318724 0.069914 0)
(0.0297621 0.0468823 0)
(0.025828 0.0321342 0)
(0.0220468 0.0223787 0)
(0.0185637 0.0154646 0)
(0.015352 0.0105485 0)
(0.0124711 0.00706275 0)
(0.00995018 0.00462189 0)
(0.0078682 0.00292132 0)
(0.00628544 0.00176182 0)
(0.00524717 0.000865671 0)
(0.00472577 1.81439e-05 0)
(-0.0300803 -0.5309 0)
(-0.0682989 -0.528629 0)
(-0.111568 -0.523765 0)
(-0.16116 -0.515069 0)
(-0.218504 -0.500089 0)
(-0.284693 -0.474256 0)
(-0.358664 -0.430027 0)
(-0.433274 -0.357827 0)
(-0.492878 -0.253111 0)
(-0.522664 -0.12055 0)
(-0.499775 0.0391625 0)
(-0.383401 0.172146 0)
(-0.243786 0.200884 0)
(-0.161198 0.177941 0)
(-0.114703 0.166987 0)
(-0.0626437 0.162072 0)
(-0.0128465 0.136629 0)
(0.0149521 0.100284 0)
(0.0244338 0.0693259 0)
(0.0253296 0.0474596 0)
(0.0232034 0.0328697 0)
(0.0204429 0.0230228 0)
(0.0175749 0.0160255 0)
(0.0147498 0.0110168 0)
(0.0121075 0.0074397 0)
(0.00972814 0.00490788 0)
(0.00772468 0.00313245 0)
(0.00618387 0.00189957 0)
(0.00516588 0.000938531 0)
(0.00468141 4.34002e-05 0)
(-0.027441 -0.465687 0)
(-0.0619774 -0.462639 0)
(-0.100682 -0.456485 0)
(-0.144163 -0.446092 0)
(-0.192905 -0.4294 0)
(-0.24682 -0.403107 0)
(-0.304179 -0.362519 0)
(-0.359923 -0.302351 0)
(-0.404603 -0.219493 0)
(-0.42588 -0.115396 0)
(-0.407135 0.00177857 0)
(-0.335418 0.100913 0)
(-0.240782 0.145202 0)
(-0.16716 0.148861 0)
(-0.115873 0.146047 0)
(-0.0675905 0.141296 0)
(-0.0235857 0.122629 0)
(0.00453354 0.094276 0)
(0.0170901 0.0676775 0)
(0.0207091 0.0474688 0)
(0.0203829 0.0333359 0)
(0.0186866 0.0235454 0)
(0.0164725 0.0165322 0)
(0.0140628 0.0114694 0)
(0.0116811 0.00782104 0)
(0.00946219 0.00520666 0)
(0.00755206 0.00335597 0)
(0.00606338 0.00204593 0)
(0.00507179 0.00101729 0)
(0.00462178 6.69231e-05 0)
(-0.0241904 -0.402866 0)
(-0.0543272 -0.399445 0)
(-0.0878162 -0.3929 0)
(-0.124859 -0.382326 0)
(-0.165428 -0.366097 0)
(-0.20897 -0.341872 0)
(-0.253786 -0.306666 0)
(-0.296211 -0.257359 0)
(-0.329916 -0.192073 0)
(-0.346099 -0.112027 0)
(-0.334471 -0.0245411 0)
(-0.289864 0.0525879 0)
(-0.225694 0.0997999 0)
(-0.165243 0.118155 0)
(-0.115926 0.12337 0)
(-0.0714589 0.121483 0)
(-0.032117 0.108583 0)
(-0.00459617 0.0871269 0)
(0.0100597 0.0649943 0)
(0.0160115 0.0468521 0)
(0.0174041 0.0334806 0)
(0.0167894 0.0239156 0)
(0.0152588 0.0169686 0)
(0.0132913 0.0118969 0)
(0.011192 0.00820022 0)
(0.00915298 0.0055153 0)
(0.00735039 0.00359025 0)
(0.00592422 0.00220041 0)
(0.00496474 0.00110109 0)
(0.00454626 8.85311e-05 0)
(-0.0207181 -0.344256 0)
(-0.0462763 -0.340794 0)
(-0.0744797 -0.334495 0)
(-0.105308 -0.324718 0)
(-0.138516 -0.31019 0)
(-0.173439 -0.289229 0)
(-0.208621 -0.259882 0)
(-0.241377 -0.22025 0)
(-0.267368 -0.169302 0)
(-0.280723 -0.108133 0)
(-0.275155 -0.0418318 0)
(-0.247773 0.0193023 0)
(-0.204441 0.063926 0)
(-0.157293 0.0890455 0)
(-0.113704 0.100439 0)
(-0.0737714 0.102397 0)
(-0.0385903 0.0946176 0)
(-0.0123244 0.0791153 0)
(0.00355066 0.061353 0)
(0.011366 0.0455806 0)
(0.0143243 0.0332581 0)
(0.0147751 0.024101 0)
(0.013944 0.0173155 0)
(0.01244 0.0122867 0)
(0.0106417 0.00856859 0)
(0.00879976 0.00582813 0)
(0.00711742 0.00383183 0)
(0.00576291 0.00236152 0)
(0.00484099 0.00118787 0)
(0.00445178 0.000108034 0)
(-0.0174008 -0.290928 0)
(-0.03862 -0.287707 0)
(-0.0618384 -0.282097 0)
(-0.0869734 -0.273661 0)
(-0.113746 -0.261395 0)
(-0.141546 -0.244065 0)
(-0.169215 -0.22036 0)
(-0.194806 -0.189092 0)
(-0.215348 -0.149703 0)
(-0.226983 -0.103019 0)
(-0.225735 -0.0522794 0)
(-0.209527 -0.00353972 0)
(-0.180634 0.0362229 0)
(-0.145228 0.0632525 0)
(-0.108918 0.0785344 0)
(-0.0742047 0.0841584 0)
(-0.0430764 0.0808792 0)
(-0.0185624 0.0704925 0)
(-0.0022521 0.0568739 0)
(0.00691446 0.0436563 0)
(0.0112195 0.0326344 0)
(0.0126786 0.0240695 0)
(0.0125433 0.0175509 0)
(0.0115138 0.0126233 0)
(0.0100313 0.00891667 0)
(0.00840039 0.00613884 0)
(0.00684985 0.00407729 0)
(0.00557525 0.00252815 0)
(0.00469606 0.00127664 0)
(0.00433507 0.000125585 0)
(-0.0144715 -0.243093 0)
(-0.0318352 -0.240601 0)
(-0.0505746 -0.236106 0)
(-0.070654 -0.229257 0)
(-0.0918958 -0.219338 0)
(-0.11383 -0.205483 0)
(-0.135578 -0.186803 0)
(-0.155741 -0.162526 0)
(-0.172285 -0.132318 0)
(-0.182648 -0.0967142 0)
(-0.184194 -0.0576921 0)
(-0.175269 -0.0188669 0)
(-0.156446 0.0153186 0)
(-0.130714 0.041481 0)
(-0.101825 0.0585927 0)
(-0.0726655 0.0670769 0)
(-0.0456339 0.0675718 0)
(-0.0232731 0.0615266 0)
(-0.00720136 0.0517244 0)
(0.00280037 0.0411165 0)
(0.00817814 0.0315925 0)
(0.0105434 0.0237946 0)
(0.0110755 0.0176533 0)
(0.0105183 0.0128928 0)
(0.00936047 0.00923597 0)
(0.00795111 0.00644157 0)
(0.00654311 0.00432337 0)
(0.0053569 0.00269853 0)
(0.00452604 0.00136742 0)
(0.00419442 0.000141377 0)
(-0.0116055 -0.201008 0)
(-0.0254353 -0.199547 0)
(-0.0403318 -0.196412 0)
(-0.0562247 -0.191192 0)
(-0.0729602 -0.18345 0)
(-0.090192 -0.17265 0)
(-0.10729 -0.15821 0)
(-0.123274 -0.139608 0)
(-0.136749 -0.116609 0)
(-0.145989 -0.0895089 0)
(-0.149175 -0.0594782 0)
(-0.144961 -0.0286945 0)
(-0.133157 -3.13176e-05 0)
(-0.11506 0.02381 0)
(-0.0929522 0.0411691 0)
(-0.069276 0.0514896 0)
(-0.04636 0.0549348 0)
(-0.0264571 0.0524783 0)
(-0.0111744 0.046075 0)
(-0.000841231 0.0380281 0)
(0.00529528 0.0301368 0)
(0.00842224 0.0232584 0)
(0.00956616 0.0176047 0)
(0.00946441 0.0130822 0)
(0.00863245 0.00951752 0)
(0.00745057 0.00673036 0)
(0.00619487 0.00456726 0)
(0.00510459 0.00287065 0)
(0.00432805 0.0014603 0)
(0.00402777 0.000155619 0)
(-0.00895182 -0.165427 0)
(-0.0196285 -0.164608 0)
(-0.031239 -0.162516 0)
(-0.0436916 -0.158726 0)
(-0.0568199 -0.152916 0)
(-0.0703423 -0.144731 0)
(-0.0838046 -0.133779 0)
(-0.0965275 -0.119704 0)
(-0.107558 -0.102322 0)
(-0.115715 -0.0817686 0)
(-0.119715 -0.0587156 0)
(-0.118476 -0.034473 0)
(-0.111513 -0.0108995 0)
(-0.0992404 0.0099796 0)
(-0.0829184 0.0265043 0)
(-0.0643192 0.0376796 0)
(-0.0454127 0.0432214 0)
(-0.0281588 0.0436121 0)
(-0.0140988 0.0401347 0)
(-0.00390135 0.0345112 0)
(0.00267084 0.0282972 0)
(0.00637765 0.0224567 0)
(0.00804926 0.0173932 0)
(0.00836807 0.0131805 0)
(0.00785257 0.00975299 0)
(0.00689913 0.00699868 0)
(0.00580342 0.00480455 0)
(0.00481572 0.00304246 0)
(0.00409944 0.0015545 0)
(0.00383266 0.000168452 0)
(-0.00682341 -0.136075 0)
(-0.0149337 -0.135548 0)
(-0.023806 -0.1341 0)
(-0.0333805 -0.131375 0)
(-0.043533 -0.127113 0)
(-0.054053 -0.121044 0)
(-0.0646086 -0.112883 0)
(-0.0747199 -0.10237 0)
(-0.0837251 -0.0893486 0)
(-0.090806 -0.0738521 0)
(-0.0950457 -0.056244 0)
(-0.0955937 -0.0373041 0)
(-0.0918979 -0.0182237 0)
(-0.0839337 -0.000456966 0)
(-0.0723077 0.0145849 0)
(-0.0581671 0.0258099 0)
(-0.0430154 0.0326495 0)
(-0.0284731 0.0351727 0)
(-0.0159481 0.0341161 0)
(-0.00627954 0.0306825 0)
(0.000400653 0.0261266 0)
(0.00447606 0.0214014 0)
(0.00656396 0.0170146 0)
(0.00724979 0.0131802 0)
(0.00702893 0.00993484 0)
(0.00629859 0.007241 0)
(0.00536628 0.00503152 0)
(0.00448731 0.00321149 0)
(0.00383678 0.00164819 0)
(0.00360575 0.00018028 0)
(-0.00515404 -0.112099 0)
(-0.0112541 -0.11173 0)
(-0.0179519 -0.110687 0)
(-0.0252154 -0.108703 0)
(-0.0329609 -0.105585 0)
(-0.0410404 -0.101134 0)
(-0.0492215 -0.0951318 0)
(-0.0571714 -0.0873687 0)
(-0.0644326 -0.0776989 0)
(-0.0704353 -0.0660922 0)
(-0.0745226 -0.0527253 0)
(-0.0760391 -0.0380473 0)
(-0.0744676 -0.0228089 0)
(-0.0695906 -0.00801598 0)
(-0.0616173 0.00522815 0)
(-0.0512166 0.0159225 0)
(-0.0394376 0.0233799 0)
(-0.027541 0.0273787 0)
(-0.0167411 0.0282323 0)
(-0.00791807 0.0266976 0)
(-0.00144143 0.0237164 0)
(0.00278436 0.0201237 0)
(0.00515307 0.0164756 0)
(0.00613333 0.0130773 0)
(0.00617175 0.0100578 0)
(0.00565176 0.00745212 0)
(0.00488205 0.00524387 0)
(0.00411627 0.0033746 0)
(0.0035361 0.00174005 0)
(0.00334366 0.000191368 0)
(-0.00387651 -0.0926372 0)
(-0.008443 -0.0923617 0)
(-0.0134577 -0.0915969 0)
(-0.0189005 -0.0901545 0)
(-0.0247176 -0.0878912 0)
(-0.0308155 -0.0846538 0)
(-0.0370451 -0.0802724 0)
(-0.0431864 -0.0745776 0)
(-0.0489289 -0.0674369 0)
(-0.0538786 -0.058786 0)
(-0.0575654 -0.0486897 0)
(-0.0594933 -0.0373914 0)
(-0.0592197 -0.0253486 0)
(-0.0564664 -0.0132325 0)
(-0.0512242 -0.00185706 0)
(-0.0438349 0.00794903 0)
(-0.0349663 0.0154982 0)
(-0.0255389 0.0204051 0)
(-0.0165381 0.0226808 0)
(-0.00879111 0.0227205 0)
(-0.00278831 0.0211628 0)
(0.0013648 0.0186757 0)
(0.00386095 0.0157958 0)
(0.00504441 0.0128767 0)
(0.00529397 0.0101196 0)
(0.00496276 0.00762777 0)
(0.00434983 0.0054375 0)
(0.00369953 0.00352949 0)
(0.00319383 0.00182889 0)
(0.0030425 0.000201992 0)
(-0.00287389 -0.0769305 0)
(-0.00623655 -0.0767681 0)
(-0.00992156 -0.0762515 0)
(-0.0139237 -0.0752303 0)
(-0.0182171 -0.0735997 0)
(-0.0227453 -0.0712487 0)
(-0.0274116 -0.0680507 0)
(-0.0320708 -0.0638739 0)
(-0.0365149 -0.0586042 0)
(-0.0404749 -0.0521648 0)
(-0.0436208 -0.0445556 0)
(-0.0455887 -0.0358916 0)
(-0.0460259 -0.0264361 0)
(-0.0446606 -0.0166202 0)
(-0.0413847 -0.00701479 0)
(-0.0363246 0.00173347 0)
(-0.0298758 0.00901244 0)
(-0.0226624 0.0143736 0)
(-0.0154358 0.0176343 0)
(-0.00890942 0.0189158 0)
(-0.00359835 0.0185865 0)
(0.000270686 0.0171283 0)
(0.00272879 0.0150108 0)
(0.00400918 0.0125914 0)
(0.00440855 0.010123 0)
(0.00423626 0.00776562 0)
(0.00376912 0.00560867 0)
(0.00323445 0.00367248 0)
(0.00280608 0.00191245 0)
(0.00269888 0.000212163 0)
(-0.00204011 -0.0646475 0)
(-0.00442828 -0.0645364 0)
(-0.00706615 -0.0641664 0)
(-0.0099495 -0.0634268 0)
(-0.0130578 -0.0622414 0)
(-0.0163522 -0.0605265 0)
(-0.0197689 -0.0581849 0)
(-0.023214 -0.0551125 0)
(-0.0265521 -0.0512109 0)
(-0.0296056 -0.0464002 0)
(-0.0321497 -0.040647 0)
(-0.0339269 -0.0339898 0)
(-0.0346709 -0.026568 0)
(-0.03415 -0.0186455 0)
(-0.0322243 -0.0106072 0)
(-0.0289062 -0.00293311 0)
(-0.024401 0.00386982 0)
(-0.0191042 0.00935591 0)
(-0.0135529 0.0132369 0)
(-0.00831447 0.0154427 0)
(-0.00386107 0.0161219 0)
(-0.000469373 0.0155766 0)
(0.00179079 0.0141723 0)
(0.00305062 0.0122462 0)
(0.00352828 0.0100757 0)
(0.00347701 0.00786604 0)
(0.00313972 0.00575427 0)
(0.00271826 0.00379967 0)
(0.00236957 0.00198811 0)
(0.00230915 0.000221259 0)
(-0.00142144 -0.055346 0)
(-0.00307759 -0.0552362 0)
(-0.00489687 -0.0549356 0)
(-0.00688168 -0.0543749 0)
(-0.00902526 -0.0534942 0)
(-0.0113065 -0.0522247 0)
(-0.0136876 -0.050488 0)
(-0.0161125 -0.0481982 0)
(-0.0184967 -0.0452693 0)
(-0.0207252 -0.0416243 0)
(-0.0226495 -0.0372151 0)
(-0.0240946 -0.0320376 0)
(-0.0248721 -0.0261545 0)
(-0.0248039 -0.0197182 0)
(-0.0237596 -0.0129784 0)
(-0.0216994 -0.0062798 0)
(-0.0187116 -2.66367e-05 0)
(-0.0150325 0.0053782 0)
(-0.0110139 0.00960113 0)
(-0.00707287 0.0124505 0)
(-0.00359338 0.0139101 0)
(-0.000843492 0.0141244 0)
(0.00106674 0.0133485 0)
(0.00218553 0.0118774 0)
(0.00266188 0.00999278 0)
(0.00268835 0.00793187 0)
(0.0024615 0.00587134 0)
(0.00214851 0.00390769 0)
(0.00188119 0.00205359 0)
(0.00186989 0.00022922 0)
(-0.000912476 -0.0484471 0)
(-0.00197211 -0.0484383 0)
(-0.00312843 -0.0482801 0)
(-0.00438361 -0.0478901 0)
(-0.00573747 -0.0472244 0)
(-0.00718333 -0.0462397 0)
(-0.00870402 -0.0448842 0)
(-0.0102684 -0.0430964 0)
(-0.011826 -0.0408085 0)
(-0.0133067 -0.0379498 0)
(-0.0146192 -0.0344632 0)
(-0.0156532 -0.0303189 0)
(-0.0162869 -0.0255321 0)
(-0.0163994 -0.0201845 0)
(-0.0158925 -0.0144355 0)
(-0.0147173 -0.00853017 0)
(-0.012902 -0.00278563 0)
(-0.0105702 0.00244374 0)
(-0.00793471 0.00681943 0)
(-0.00526764 0.0100805 0)
(-0.00283984 0.0120972 0)
(-0.000861786 0.0128922 0)
(0.000556052 0.0126226 0)
(0.00141768 0.0115331 0)
(0.00181228 0.00989613 0)
(0.0018703 0.00796947 0)
(0.00173291 0.00595878 0)
(0.00152311 0.00399228 0)
(0.0013384 0.00210618 0)
(0.0013785 0.000235841 0)
(-0.000432947 -0.0442904 0)
(-0.000943943 -0.044249 0)
(-0.00152272 -0.0440807 0)
(-0.00216868 -0.0437311 0)
(-0.00287521 -0.0431676 0)
(-0.00363364 -0.0423544 0)
(-0.00443248 -0.0412433 0)
(-0.00525377 -0.0397738 0)
(-0.00607094 -0.0378821 0)
(-0.00685127 -0.0355037 0)
(-0.00755238 -0.0325819 0)
(-0.0081207 -0.0290763 0)
(-0.00849382 -0.0249774 0)
(-0.00860746 -0.0203261 0)
(-0.00840616 -0.0152279 0)
(-0.0078572 -0.00986594 0)
(-0.00696474 -0.00449868 0)
(-0.00577855 0.000559251 0)
(-0.00440687 0.00498475 0)
(-0.00299165 0.00847601 0)
(-0.00167337 0.0108365 0)
(-0.000574701 0.0120128 0)
(0.00023008 0.0120902 0)
(0.00073135 0.0112706 0)
(0.00097068 0.0098136 0)
(0.00101778 0.0079867 0)
(0.000950773 0.00601559 0)
(0.000839508 0.00404966 0)
(0.000739438 0.00214202 0)
(0.00083302 0.000240608 0)
(-0.00010157 -0.0428315 0)
(-0.000260096 -0.0427768 0)
(-0.000444401 -0.0426169 0)
(-0.000653703 -0.0423141 0)
(-0.000884658 -0.0418363 0)
(-0.00113361 -0.0411444 0)
(-0.00139582 -0.0401915 0)
(-0.00166555 -0.0389234 0)
(-0.00193633 -0.0372787 0)
(-0.00219867 -0.0351921 0)
(-0.00243892 -0.0326027 0)
(-0.0026404 -0.029463 0)
(-0.00278407 -0.0257491 0)
(-0.00284916 -0.0214763 0)
(-0.00281615 -0.016716 0)
(-0.00267126 -0.0116097 0)
(-0.00241301 -0.00637583 0)
(-0.0020554 -0.00131189 0)
(-0.00160614 0.00329784 0)
(-0.00114436 0.00709754 0)
(-0.000690158 0.00985388 0)
(-0.00029346 0.0114543 0)
(1.08827e-05 0.0119206 0)
(0.000210085 0.0114097 0)
(0.000314696 0.0101621 0)
(0.000346032 0.00844936 0)
(0.000331132 0.00651746 0)
(0.000295034 0.00454541 0)
(0.000258466 0.00261841 0)
(0.000236537 0.000711812 0)
(-2.51261e-05 1.04343e-05 0)
(-0.000231946 1.46178e-06 0)
(-0.000511315 2.70385e-06 0)
(-0.000979111 4.97437e-06 0)
(-0.00173682 8.73088e-06 0)
(-0.00290259 1.45271e-05 0)
(-0.00460449 2.2941e-05 0)
(-0.00696628 3.44538e-05 0)
(-0.0100865 4.92368e-05 0)
(-0.01401 6.68703e-05 0)
(-0.018695 8.59989e-05 0)
(-0.0239825 0.000104086 0)
(-0.0295806 0.00011747 0)
(-0.0350808 0.00012193 0)
(-0.0400092 0.000113707 0)
(-0.0439093 9.06838e-05 0)
(-0.0464297 5.30639e-05 0)
(-0.0473844 3.38185e-06 0)
(-0.0467705 -5.40592e-05 0)
(-0.0447425 -0.000114651 0)
(-0.041561 -0.000173879 0)
(-0.0375336 -0.000228282 0)
(-0.0329662 -0.000275638 0)
(-0.0281288 -0.000314874 0)
(-0.0232388 -0.00034595 0)
(-0.0184616 -0.000369312 0)
(-0.0139075 -0.000385963 0)
(-0.00964729 -0.000396799 0)
(-0.00571765 -0.000403065 0)
(-0.00212961 -0.000405705 0)
(-2.50441e-05 2.35357e-05 0)
(-0.00025425 1.9423e-05 0)
(-0.000598368 3.53049e-05 0)
(-0.00117431 6.54649e-05 0)
(-0.0021178 0.000116384 0)
(-0.00358892 0.000196272 0)
(-0.00576525 0.000314173 0)
(-0.00882547 0.000478333 0)
(-0.0129229 0.00069356 0)
(-0.0181493 0.000957229 0)
(-0.0244895 0.00125404 0)
(-0.0317766 0.00155126 0)
(-0.0396584 0.00179701 0)
(-0.0476028 0.00192553 0)
(-0.0549514 0.00187093 0)
(-0.061026 0.00158612 0)
(-0.0652579 0.00105902 0)
(-0.0672946 0.000318358 0)
(-0.0670513 -0.000574296 0)
(-0.064691 -0.00154064 0)
(-0.0605567 -0.00250413 0)
(-0.0550836 -0.00340251 0)
(-0.0487225 -0.00419401 0)
(-0.041879 -0.00485768 0)
(-0.0348897 -0.00538893 0)
(-0.0280088 -0.00579494 0)
(-0.0214146 -0.00608957 0)
(-0.0152203 -0.00628971 0)
(-0.00948938 -0.00641288 0)
(-0.00424375 -0.00647507 0)
(-2.48893e-05 3.65696e-05 0)
(-0.000253193 3.79529e-05 0)
(-0.000595861 6.89866e-05 0)
(-0.00116937 0.000127924 0)
(-0.0021089 0.000227432 0)
(-0.0035739 0.000383572 0)
(-0.00574134 0.000614055 0)
(-0.00878957 0.000935092 0)
(-0.0128723 0.00135628 0)
(-0.0180831 0.00187282 0)
(-0.0244109 0.00245537 0)
(-0.0316959 0.00304057 0)
(-0.0395953 0.0035274 0)
(-0.0475863 0.00378706 0)
(-0.055016 0.00368924 0)
(-0.0612034 0.00313937 0)
(-0.065568 0.00211123 0)
(-0.0677389 0.000659195 0)
(-0.0676122 -0.00109634 0)
(-0.0653355 -0.00300098 0)
(-0.0612443 -0.00490274 0)
(-0.0557736 -0.00667782 0)
(-0.0493792 -0.00824281 0)
(-0.0424751 -0.00955567 0)
(-0.0354063 -0.0106069 0)
(-0.0284356 -0.0114104 0)
(-0.0217473 -0.0119935 0)
(-0.0154598 -0.0123897 0)
(-0.00963979 -0.0126332 0)
(-0.00431136 -0.0127564 0)
(-2.46672e-05 4.95054e-05 0)
(-0.000251449 5.63796e-05 0)
(-0.000591726 0.00010248 0)
(-0.00116123 0.000190033 0)
(-0.00209422 0.00033786 0)
(-0.00354911 0.000569838 0)
(-0.00570188 0.000912323 0)
(-0.0087303 0.00138953 0)
(-0.0127887 0.00201601 0)
(-0.0179735 0.00278523 0)
(-0.0242805 0.0036546 0)
(-0.0315611 0.00453129 0)
(-0.0394883 0.00526639 0)
(-0.047555 0.00566852 0)
(-0.0551175 0.00554188 0)
(-0.0614911 0.00474147 0)
(-0.066076 0.00322272 0)
(-0.0684712 0.00106192 0)
(-0.0685401 -0.00156367 0)
(-0.066405 -0.00442299 0)
(-0.0623879 -0.00728624 0)
(-0.0569229 -0.0099648 0)
(-0.0504746 -0.0123303 0)
(-0.04347 -0.0143173 0)
(-0.0362692 -0.0159098 0)
(-0.0291485 -0.0171278 0)
(-0.0223033 -0.0180122 0)
(-0.0158601 -0.0186132 0)
(-0.0098914 -0.0189829 0)
(-0.0044243 -0.0191694 0)
(-2.43785e-05 6.23082e-05 0)
(-0.000249025 7.46535e-05 0)
(-0.000585984 0.000135695 0)
(-0.00114993 0.000251626 0)
(-0.00207383 0.000447371 0)
(-0.00351468 0.000754576 0)
(-0.00564705 0.00120821 0)
(-0.0086479 0.00184054 0)
(-0.0126723 0.00267133 0)
(-0.0178207 0.00369291 0)
(-0.024098 0.00485065 0)
(-0.0313715 0.00602401 0)
(-0.0393356 0.00701797 0)
(-0.0475056 0.00757944 0)
(-0.0552517 0.00744566 0)
(-0.061885 0.00641682 0)
(-0.06678 0.00442367 0)
(-0.0694933 0.00155861 0)
(-0.069842 -0.00194734 0)
(-0.0679116 -0.00578586 0)
(-0.0640038 -0.00964573 0)
(-0.058551 -0.0132683 0)
(-0.0520289 -0.0164755 0)
(-0.0448837 -0.0191747 0)
(-0.0374967 -0.0213411 0)
(-0.0301634 -0.0229998 0)
(-0.0230953 -0.0242051 0)
(-0.0164306 -0.0250247 0)
(-0.0102501 -0.0255286 0)
(-0.00458548 -0.0257832 0)
(-2.4024e-05 7.49426e-05 0)
(-0.00024593 9.27226e-05 0)
(-0.000578647 0.000168537 0)
(-0.00113548 0.000312529 0)
(-0.00204779 0.000555661 0)
(-0.00347068 0.000937282 0)
(-0.00557697 0.00150093 0)
(-0.00854253 0.00228699 0)
(-0.0125233 0.00332074 0)
(-0.0176247 0.00459422 0)
(-0.0238629 0.00604227 0)
(-0.0311253 0.00751895 0)
(-0.0391337 0.00878566 0)
(-0.0474327 0.00952885 0)
(-0.0554116 0.00941709 0)
(-0.0623781 0.00819002 0)
(-0.0676755 0.00574534 0)
(-0.070806 0.00218335 0)
(-0.071526 -0.00221584 0)
(-0.069871 -0.00706593 0)
(-0.0661145 -0.0119697 0)
(-0.0606845 -0.0165914 0)
(-0.0540708 -0.0206969 0)
(-0.0467446 -0.0241607 0)
(-0.0391148 -0.026946 0)
(-0.0315027 -0.0290816 0)
(-0.0241412 -0.0306349 0)
(-0.0171845 -0.0316918 0)
(-0.0107241 -0.0323421 0)
(-0.00479819 -0.0326704 0)
(-2.36043e-05 8.73749e-05 0)
(-0.000242172 0.00011054 0)
(-0.000569737 0.000200918 0)
(-0.00111794 0.000372576 0)
(-0.00201615 0.000662437 0)
(-0.00341724 0.00111747 0)
(-0.00549182 0.0017897 0)
(-0.0084144 0.00272774 0)
(-0.0123419 0.00396276 0)
(-0.0173854 0.00548745 0)
(-0.0235744 0.00722804 0)
(-0.0308203 0.00901606 0)
(-0.0388783 0.0105725 0)
(-0.0473291 0.0115252 0)
(-0.0555877 0.0114723 0)
(-0.0629611 0.0100861 0)
(-0.0687563 0.00722046 0)
(-0.0724101 0.00297285 0)
(-0.0736024 -0.00233384 0)
(-0.0723037 -0.00823571 0)
(-0.0687492 -0.0142433 0)
(-0.0633588 -0.0199354 0)
(-0.0566389 -0.0250124 0)
(-0.0490907 -0.0293091 0)
(-0.0411584 -0.0327724 0)
(-0.0331964 -0.0354324 0)
(-0.0254651 -0.0373694 0)
(-0.0181393 -0.0386885 0)
(-0.0113245 -0.0395005 0)
(-0.00506815 -0.0399106 0)
(-2.31209e-05 9.95725e-05 0)
(-0.000237762 0.000128057 0)
(-0.000559277 0.000232749 0)
(-0.00109736 0.000431606 0)
(-0.00197902 0.000767412 0)
(-0.0033545 0.00129465 0)
(-0.0053918 0.00207379 0)
(-0.00826377 0.00316169 0)
(-0.0121283 0.00459589 0)
(-0.0171026 0.00637086 0)
(-0.0232317 0.00840641 0)
(-0.0304541 0.0105149 0)
(-0.0385641 0.012381 0)
(-0.0471862 0.0135764 0)
(-0.0557685 0.0136272 0)
(-0.0636216 0.0121305 0)
(-0.0700138 0.00888367 0)
(-0.0743054 0.00396738 0)
(-0.0760832 -0.00226172 0)
(-0.0752349 -0.00926279 0)
(-0.0719449 -0.0164477 0)
(-0.0666192 -0.0232987 0)
(-0.0597818 -0.0294392 0)
(-0.0519705 -0.0346555 0)
(-0.0436725 -0.0388718 0)
(-0.0352834 -0.0421167 0)
(-0.0270983 -0.0444831 0)
(-0.0193179 -0.0460963 0)
(-0.0120663 -0.04709 0)
(-0.00540143 -0.0475919 0)
(-2.2575e-05 0.000111501 0)
(-0.000232712 0.000145225 0)
(-0.000547298 0.000263942 0)
(-0.00107377 0.000489456 0)
(-0.00193648 0.0008703 0)
(-0.0032826 0.00146835 0)
(-0.00527715 0.00235242 0)
(-0.00809094 0.00358772 0)
(-0.0118827 0.00521859 0)
(-0.0167764 0.00724259 0)
(-0.0228339 0.00957554 0)
(-0.0300237 0.0120146 0)
(-0.0381849 0.0142127 0)
(-0.0469936 0.0156891 0)
(-0.0559399 0.0158966 0)
(-0.0643444 0.0143491 0)
(-0.0714367 0.0107717 0)
(-0.0764907 0.00521138 0)
(-0.0789812 -0.00195404 0)
(-0.0786946 -0.0101082 0)
(-0.0757464 -0.0185581 0)
(-0.0705214 -0.0266756 0)
(-0.063561 -0.0339932 0)
(-0.0554454 -0.0402366 0)
(-0.0467138 -0.0452995 0)
(-0.0378129 -0.0492053 0)
(-0.0290802 -0.0520587 0)
(-0.0207495 -0.0540061 0)
(-0.0129676 -0.0552064 0)
(-0.00580674 -0.0558131 0)
(-2.19672e-05 0.000123128 0)
(-0.000227035 0.000161998 0)
(-0.000533833 0.000294415 0)
(-0.00104726 0.000545969 0)
(-0.00188866 0.000970818 0)
(-0.00320176 0.00163809 0)
(-0.00514816 0.00262483 0)
(-0.00789628 0.0040047 0)
(-0.0116055 0.00582933 0)
(-0.0164069 0.00810068 0)
(-0.0223798 0.0107334 0)
(-0.0295261 0.0135137 0)
(-0.0377341 0.0160685 0)
(-0.0467394 0.017869 0)
(-0.056085 0.0182948 0)
(-0.0651106 0.0167677 0)
(-0.07301 0.0129235 0)
(-0.0789619 0.00675426 0)
(-0.0823114 -0.00135668 0)
(-0.0827173 -0.0107249 0)
(-0.0802075 -0.0205422 0)
(-0.075133 -0.0300554 0)
(-0.0680513 -0.0386881 0)
(-0.0595909 -0.0460905 0)
(-0.0503532 -0.052116 0)
(-0.0408462 -0.0567771 0)
(-0.0314606 -0.0601891 0)
(-0.0224707 -0.0625208 0)
(-0.014052 -0.0639592 0)
(-0.00629423 -0.0646865 0)
(-2.12988e-05 0.000134424 0)
(-0.000220748 0.000178333 0)
(-0.000518917 0.000324082 0)
(-0.0010179 0.00060099 0)
(-0.00183567 0.00106869 0)
(-0.00311217 0.0018034 0)
(-0.00500513 0.00289032 0)
(-0.00768021 0.00441154 0)
(-0.0112971 0.00642655 0)
(-0.015994 0.00894313 0)
(-0.0218686 0.0118776 0)
(-0.0289578 0.0150102 0)
(-0.0372039 0.0179481 0)
(-0.0464103 0.0201204 0)
(-0.0561843 0.0208348 0)
(-0.0658974 0.0194126 0)
(-0.074714 0.0153809 0)
(-0.0817123 0.00865132 0)
(-0.086087 -0.000410461 0)
(-0.0873423 -0.0110555 0)
(-0.0853915 -0.0223583 0)
(-0.0805358 -0.0334206 0)
(-0.0733446 -0.043535 0)
(-0.0645003 -0.0522577 0)
(-0.054678 -0.0593879 0)
(-0.0444598 -0.0649211 0)
(-0.0343013 -0.0689805 0)
(-0.0245271 -0.0717589 0)
(-0.0153483 -0.0734745 0)
(-0.00687718 -0.0743424 0)
(-2.05717e-05 0.000145356 0)
(-0.000213869 0.000194181 0)
(-0.000502592 0.00035286 0)
(-0.000985753 0.000654366 0)
(-0.00177767 0.00116366 0)
(-0.00301407 0.00196385 0)
(-0.00484843 0.00314814 0)
(-0.00744318 0.00480714 0)
(-0.010958 0.00700868 0)
(-0.0155379 0.00976778 0)
(-0.0212993 0.0130055 0)
(-0.0283154 0.0165015 0)
(-0.0365863 0.01985 0)
(-0.0459914 0.022446 0)
(-0.0562151 0.0235278 0)
(-0.066677 0.0223092 0)
(-0.0765236 0.0181878 0)
(-0.0847303 0.0109644 0)
(-0.0903213 0.000960358 0)
(-0.0926133 -0.0110303 0)
(-0.0913724 -0.0239528 0)
(-0.0868272 -0.0367447 0)
(-0.0795515 -0.0485409 0)
(-0.0702875 -0.0587794 0)
(-0.0597957 -0.067189 0)
(-0.048748 -0.0737379 0)
(-0.0376789 -0.0785545 0)
(-0.0269753 -0.081857 0)
(-0.0168929 -0.0838984 0)
(-0.00757213 -0.084932 0)
(-1.97867e-05 0.000155893 0)
(-0.000206416 0.000209499 0)
(-0.000484901 0.000380671 0)
(-0.000950919 0.000705949 0)
(-0.0017148 0.00125545 0)
(-0.00290772 0.00211898 0)
(-0.00467844 0.0033976 0)
(-0.00718572 0.00519043 0)
(-0.0105888 0.00757412 0)
(-0.0150388 0.0105724 0)
(-0.0206709 0.0141142 0)
(-0.0275953 0.017984 0)
(-0.0358729 0.0217716 0)
(-0.0454662 0.0248462 0)
(-0.0561517 0.0263829 0)
(-0.0674166 0.0254823 0)
(-0.0784067 0.0213909 0)
(-0.0879976 0.0137629 0)
(-0.0950249 0.00283806 0)
(-0.0985777 -0.0105634 0)
(-0.0982356 -0.0252564 0)
(-0.0941228 -0.0399893 0)
(-0.0868061 -0.0537068 0)
(-0.0770909 -0.0656984 0)
(-0.0658384 -0.0756006 0)
(-0.0538275 -0.0833423 0)
(-0.0416888 -0.0890525 0)
(-0.0298862 -0.0929753 0)
(-0.0187312 -0.0954032 0)
(-0.00839957 -0.0966333 0)
(-1.89447e-05 0.000166009 0)
(-0.000198412 0.000224247 0)
(-0.000465895 0.000407441 0)
(-0.000913492 0.000755601 0)
(-0.00164725 0.00134381 0)
(-0.0027934 0.00226838 0)
(-0.0044956 0.00363799 0)
(-0.00690842 0.00556032 0)
(-0.01019 0.00812126 0)
(-0.0144972 0.0113547 0)
(-0.0199829 0.0152005 0)
(-0.0267942 0.0194537 0)
(-0.0350546 0.0237085 0)
(-0.0448172 0.0273195 0)
(-0.0559653 0.0294065 0)
(-0.0680774 0.028955 0)
(-0.0803228 0.0250386 0)
(-0.0914879 0.0171241 0)
(-0.100202 0.00532294 0)
(-0.105286 -0.00955035 0)
(-0.106079 -0.0261804 0)
(-0.10256 -0.0431009 0)
(-0.0952692 -0.0590255 0)
(-0.0850797 -0.0730577 0)
(-0.0729681 -0.0847135 0)
(-0.059842 -0.0938662 0)
(-0.046449 -0.100639 0)
(-0.0333478 -0.105302 0)
(-0.0209192 -0.108192 0)
(-0.00938506 -0.109658 0)
(-1.80468e-05 0.000175673 0)
(-0.000189877 0.000238384 0)
(-0.000445625 0.000433095 0)
(-0.000873572 0.000803184 0)
(-0.00157519 0.00142852 0)
(-0.00267142 0.00241163 0)
(-0.00430036 0.00386868 0)
(-0.00661191 0.00591578 0)
(-0.00976245 0.00864851 0)
(-0.0139135 0.0121122 0)
(-0.0192346 0.0162609 0)
(-0.0259088 0.0209057 0)
(-0.0341228 0.0256551 0)
(-0.0440257 0.0298614 0)
(-0.0556238 0.0326017 0)
(-0.0686138 0.0327477 0)
(-0.0822213 0.0291806 0)
(-0.0951629 0.021134 0)
(-0.105851 0.00853198 0)
(-0.112791 -0.00786161 0)
(-0.115014 -0.0266112 0)
(-0.1123 -0.0460055 0)
(-0.105135 -0.0644788 0)
(-0.0944597 -0.0808998 0)
(-0.0813845 -0.0946289 0)
(-0.0669702 -0.105462 0)
(-0.0521069 -0.113508 0)
(-0.0374702 -0.119062 0)
(-0.0235284 -0.12251 0)
(-0.0105608 -0.124259 0)
(-1.70933e-05 0.000184854 0)
(-0.000180837 0.000251868 0)
(-0.000424147 0.000457561 0)
(-0.00083127 0.00084857 0)
(-0.00149882 0.00150932 0)
(-0.00254209 0.00254833 0)
(-0.00409324 0.00408898 0)
(-0.0062969 0.00625577 0)
(-0.00930692 0.00915425 0)
(-0.0132884 0.0128425 0)
(-0.0184258 0.0172914 0)
(-0.024936 0.0223345 0)
(-0.0330686 0.0276038 0)
(-0.0430726 0.0324646 0)
(-0.0550921 0.035967 0)
(-0.0689732 0.036877 0)
(-0.0840391 0.0338667 0)
(-0.0989699 0.0258873 0)
(-0.111958 0.0126024 0)
(-0.121142 -0.00533933 0)
(-0.125167 -0.0264032 0)
(-0.123534 -0.0486032 0)
(-0.116637 -0.0700325 0)
(-0.105481 -0.0892646 0)
(-0.0913323 -0.105458 0)
(-0.0754333 -0.118306 0)
(-0.0588468 -0.127887 0)
(-0.0423925 -0.134521 0)
(-0.0266484 -0.138648 0)
(-0.0119675 -0.140744 0)
(-1.60839e-05 0.000193529 0)
(-0.000171316 0.000264666 0)
(-0.000401519 0.000480772 0)
(-0.000786701 0.000891634 0)
(-0.00141835 0.00158599 0)
(-0.00240578 0.00267811 0)
(-0.00387476 0.00429829 0)
(-0.00596414 0.0065793 0)
(-0.00882438 0.00963691 0)
(-0.0126227 0.0135429 0)
(-0.0175565 0.018288 0)
(-0.0238736 0.0237334 0)
(-0.0318837 0.0295455 0)
(-0.0419381 0.0351184 0)
(-0.0543323 0.0394962 0)
(-0.0690952 0.0413539 0)
(-0.0856992 0.039145 0)
(-0.102837 0.0314871 0)
(-0.118494 0.0176944 0)
(-0.130389 -0.00179011 0)
(-0.136678 -0.0253713 0)
(-0.136487 -0.0507593 0)
(-0.130056 -0.0756317 0)
(-0.11845 -0.0981874 0)
(-0.103114 -0.117326 0)
(-0.0855071 -0.132602 0)
(-0.0669007 -0.144048 0)
(-0.0482912 -0.152002 0)
(-0.0303938 -0.156963 0)
(-0.0136575 -0.159486 0)
(-1.50177e-05 0.000201671 0)
(-0.000161342 0.000276742 0)
(-0.000377803 0.000502666 0)
(-0.000739983 0.000932259 0)
(-0.00133398 0.00165834 0)
(-0.00226282 0.0028006 0)
(-0.00364549 0.00449602 0)
(-0.00561444 0.00688541 0)
(-0.00831583 0.0100949 0)
(-0.0119175 0.014211 0)
(-0.016627 0.0192465 0)
(-0.0227194 0.0250956 0)
(-0.0305605 0.0314692 0)
(-0.0406028 0.0378083 0)
(-0.0533042 0.0431766 0)
(-0.0689116 0.0461821 0)
(-0.0871079 0.0450597 0)
(-0.106668 0.0380437 0)
(-0.125403 0.0239944 0)
(-0.140568 0.00302718 0)
(-0.149704 -0.0232771 0)
(-0.151425 -0.0522948 0)
(-0.145733 -0.0811939 0)
(-0.13374 -0.107695 0)
(-0.117101 -0.130368 0)
(-0.0975361 -0.148584 0)
(-0.0765631 -0.162311 0)
(-0.055393 -0.171895 0)
(-0.0349139 -0.177892 0)
(-0.0156993 -0.180947 0)
(-1.3893e-05 0.00020925 0)
(-0.000150943 0.000288059 0)
(-0.000353067 0.000523183 0)
(-0.00069125 0.00097033 0)
(-0.00124596 0.00172615 0)
(-0.00211363 0.00291546 0)
(-0.00340604 0.00468158 0)
(-0.0052487 0.00717315 0)
(-0.00778247 0.0105267 0)
(-0.0111741 0.014844 0)
(-0.0156383 0.0201621 0)
(-0.0214725 0.0264131 0)
(-0.0290925 0.0333621 0)
(-0.0390479 0.040516 0)
(-0.0519662 0.0469884 0)
(-0.0683462 0.051355 0)
(-0.0881526 0.0516464 0)
(-0.110335 0.0456717 0)
(-0.132598 0.0317171 0)
(-0.1517 0.00940467 0)
(-0.164417 -0.0198165 0)
(-0.168662 -0.0529714 0)
(-0.164077 -0.0865992 0)
(-0.151804 -0.117803 0)
(-0.133752 -0.144728 0)
(-0.111951 -0.166522 0)
(-0.0882094 -0.183056 0)
(-0.0639935 -0.19467 0)
(-0.0404059 -0.201971 0)
(-0.0181841 -0.205702 0)
(-1.27059e-05 0.000216241 0)
(-0.000140148 0.000298587 0)
(-0.000327375 0.000542267 0)
(-0.000640632 0.00100574 0)
(-0.00115452 0.00178924 0)
(-0.00195859 0.00302237 0)
(-0.00315705 0.00485444 0)
(-0.00486785 0.00744162 0)
(-0.00722557 0.0109307 0)
(-0.010394 0.0154394 0)
(-0.0145915 0.0210303 0)
(-0.0201324 0.0276775 0)
(-0.0274745 0.0352097 0)
(-0.0372564 0.0432189 0)
(-0.0502762 0.0509033 0)
(-0.0673159 0.0568538 0)
(-0.0887002 0.0589287 0)
(-0.113675 0.0544862 0)
(-0.139944 0.0411075 0)
(-0.163773 0.0177036 0)
(-0.181001 -0.0145886 0)
(-0.188571 -0.052475 0)
(-0.185584 -0.091682 0)
(-0.173192 -0.128507 0)
(-0.153627 -0.160559 0)
(-0.12929 -0.186714 0)
(-0.102325 -0.206727 0)
(-0.0744869 -0.220901 0)
(-0.0471399 -0.229875 0)
(-0.0212387 -0.234482 0)
(-1.1449e-05 0.000222616 0)
(-0.000128988 0.000308296 0)
(-0.000300799 0.000559864 0)
(-0.000588267 0.0010384 0)
(-0.00105991 0.00184742 0)
(-0.00179813 0.00312103 0)
(-0.00289918 0.0050141 0)
(-0.00447288 0.00768999 0)
(-0.0066465 0.0113056 0)
(-0.00957886 0.0159945 0)
(-0.0134884 0.0218462 0)
(-0.0186999 0.02888 0)
(-0.0257032 0.0369962 0)
(-0.0352133 0.0458904 0)
(-0.048193 0.0548842 0)
(-0.0657313 0.0626438 0)
(-0.0885956 0.0669118 0)
(-0.116476 0.0645954 0)
(-0.147247 0.052441 0)
(-0.176731 0.0283692 0)
(-0.199647 -0.00709229 0)
(-0.211603 -0.0503882 0)
(-0.210862 -0.096221 0)
(-0.19857 -0.139787 0)
(-0.177401 -0.178017 0)
(-0.150222 -0.209487 0)
(-0.11954 -0.233831 0)
(-0.0874115 -0.251279 0)
(-0.0555035 -0.262449 0)
(-0.0250536 -0.268237 0)
(-1.01145e-05 0.000228345 0)
(-0.000117493 0.000317159 0)
(-0.000273412 0.000575925 0)
(-0.000534301 0.00106821 0)
(-0.000962396 0.00190055 0)
(-0.00163268 0.00321115 0)
(-0.00263313 0.00516008 0)
(-0.00406485 0.00791745 0)
(-0.00604678 0.0116499 0)
(-0.00873076 0.0165069 0)
(-0.0123314 0.0226051 0)
(-0.0171768 0.0300113 0)
(-0.0237772 0.0387042 0)
(-0.0329074 0.0484997 0)
(-0.0456784 0.0588835 0)
(-0.0634997 0.0686712 0)
(-0.0876617 0.075574 0)
(-0.118472 0.0760895 0)
(-0.154222 0.0660176 0)
(-0.190439 0.0419466 0)
(-0.220556 0.00335462 0)
(-0.23831 -0.0461567 0)
(-0.240656 -0.0999334 0)
(-0.228732 -0.151606 0)
(-0.205874 -0.197252 0)
(-0.175564 -0.235163 0)
(-0.140685 -0.264916 0)
(-0.103522 -0.28662 0)
(-0.0660852 -0.300762 0)
(-0.0299463 -0.308244 0)
(-8.69069e-06 0.000233402 0)
(-0.000105696 0.000325147 0)
(-0.000245291 0.000590406 0)
(-0.000478882 0.00109509 0)
(-0.000862234 0.00194847 0)
(-0.0014627 0.00329248 0)
(-0.00235962 0.00529194 0)
(-0.00364486 0.00812326 0)
(-0.00542802 0.0119624 0)
(-0.0078519 0.016974 0)
(-0.0111233 0.0233022 0)
(-0.0155661 0.0310621 0)
(-0.0216977 0.0403152 0)
(-0.0303315 0.0510124 0)
(-0.0426992 0.0628432 0)
(-0.0605278 0.0748601 0)
(-0.0857017 0.0848581 0)
(-0.119336 0.0890251 0)
(-0.160472 0.0821525 0)
(-0.204642 0.0591012 0)
(-0.243898 0.0176347 0)
(-0.269384 -0.0390191 0)
(-0.275907 -0.102478 0)
(-0.264611 -0.163927 0)
(-0.239957 -0.218416 0)
(-0.206265 -0.264006 0)
(-0.166875 -0.300496 0)
(-0.123882 -0.327878 0)
(-0.0798413 -0.346088 0)
(-0.0365941 -0.356305 0)
(-7.15915e-06 0.000237761 0)
(-9.36273e-05 0.000332241 0)
(-0.000216511 0.000603271 0)
(-0.000422159 0.00111897 0)
(-0.000759702 0.00199106 0)
(-0.00128865 0.0033648 0)
(-0.0020794 0.0054093 0)
(-0.00321407 0.00830673 0)
(-0.00479193 0.0122417 0)
(-0.00694476 0.0173936 0)
(-0.00986752 0.023933 0)
(-0.013872 0.032023 0)
(-0.0194686 0.0418105 0)
(-0.0274838 0.053391 0)
(-0.03923 0.0666943 0)
(-0.0567266 0.0811097 0)
(-0.0825035 0.094661 0)
(-0.118669 0.103403 0)
(-0.165453 0.101153 0)
(-0.218899 0.0806334 0)
(-0.269778 0.0369716 0)
(-0.305751 -0.027953 0)
(-0.317831 -0.103513 0)
(-0.307254 -0.176749 0)
(-0.280644 -0.241713 0)
(-0.243231 -0.296125 0)
(-0.199671 -0.340735 0)
(-0.149757 -0.376541 0)
(-0.0981077 -0.399263 0)
(-0.046982 -0.415185 0)
(-5.49718e-06 0.000241379 0)
(-8.13199e-05 0.000338417 0)
(-0.000187152 0.000614482 0)
(-0.000364292 0.00113977 0)
(-0.000655083 0.00202818 0)
(-0.00111101 0.00342788 0)
(-0.00179324 0.00551179 0)
(-0.0027737 0.00846725 0)
(-0.00414038 0.0124867 0)
(-0.00601212 0.0177635 0)
(-0.0085681 0.0244928 0)
(-0.0121002 0.0328848 0)
(-0.0170967 0.0431707 0)
(-0.0243692 0.0555956 0)
(-0.0352569 0.0703575 0)
(-0.0520173 0.0872914 0)
(-0.0778502 0.104821 0)
(-0.116005 0.119136 0)
(-0.168431 0.123275 0)
(-0.232475 0.107475 0)
(-0.298135 0.0630325 0)
(-0.348688 -0.0114028 0)
(-0.368096 -0.102851 0)
(-0.35766 -0.190099 0)
(-0.329111 -0.267622 0)
(-0.285725 -0.331698 0)
(-0.23642 -0.384558 0)
(-0.177006 -0.441541 0)
(-0.112025 -0.457573 0)
(-0.0575456 -0.486486 0)
(-3.67635e-06 0.000244225 0)
(-6.88049e-05 0.000343651 0)
(-0.000157297 0.000624005 0)
(-0.000305442 0.00115744 0)
(-0.000548665 0.00205973 0)
(-0.000930272 0.00348155 0)
(-0.00150195 0.0055991 0)
(-0.002325 0.00860425 0)
(-0.00347528 0.0126965 0)
(-0.00505694 0.0180816 0)
(-0.00722963 0.0249778 0)
(-0.0102577 0.0336388 0)
(-0.0145921 0.044377 0)
(-0.021 0.0575858 0)
(-0.0307807 0.073744 0)
(-0.0463372 0.0932491 0)
(-0.0715356 0.115108 0)
(-0.110814 0.136014 0)
(-0.168447 0.148661 0)
(-0.244211 0.140652 0)
(-0.328483 0.0981192 0)
(-0.400117 0.0132506 0)
(-0.429319 -0.101072 0)
(-0.415595 -0.204035 0)
(-0.384341 -0.299049 0)
(-0.303638 -0.380724 0)
(-0.191861 -0.465729 0)
(-0.0365936 -0.546915 0)
(-0.0223727 -0.507473 0)
(-0.0190444 -0.52698 0)
(-1.6611e-06 0.000246271 0)
(-5.61123e-05 0.000347929 0)
(-0.000127026 0.000631816 0)
(-0.000245768 0.00117193 0)
(-0.000440738 0.00208564 0)
(-0.000746929 0.00352566 0)
(-0.00120633 0.00567096 0)
(-0.00186924 0.00871727 0)
(-0.00279866 0.0128702 0)
(-0.00408236 0.0183462 0)
(-0.00585713 0.0253841 0)
(-0.00835252 0.0342769 0)
(-0.0119677 0.0454117 0)
(-0.0173959 0.0593221 0)
(-0.0258209 0.0767582 0)
(-0.0396462 0.0988002 0)
(-0.0633885 0.125218 0)
(-0.102525 0.153656 0)
(-0.164289 0.177237 0)
(-0.252345 0.181178 0)
(-0.359409 0.145272 0)
(-0.462728 0.0510672 0)
(-0.506653 -0.101305 0)
(-0.471332 -0.222874 0)
(-0.405261 -0.361287 0)
(-0.262284 -0.481925 0)
(-0.209053 -0.597663 0)
(-0.227091 -0.567477 0)
(-0.116637 -0.536959 0)
(-0.0395241 -0.56441 0)
(5.90129e-07 0.000247474 0)
(-4.32708e-05 0.00035124 0)
(-9.64228e-05 0.000637896 0)
(-0.000185436 0.0011832 0)
(-0.000331602 0.00210581 0)
(-0.000561496 0.00356007 0)
(-0.000907231 0.00572716 0)
(-0.00140777 0.00880589 0)
(-0.00211263 0.0130069 0)
(-0.0030918 0.0185558 0)
(-0.00445621 0.0257085 0)
(-0.00639414 0.0347918 0)
(-0.00923968 0.0462585 0)
(-0.013585 0.0607678 0)
(-0.0204221 0.0793004 0)
(-0.0319292 0.103736 0)
(-0.0533139 0.13477 0)
(-0.0905634 0.171467 0)
(-0.154506 0.208583 0)
(-0.254217 0.229732 0)
(-0.386639 0.2088 0)
(-0.5388 0.124113 0)
(-0.618799 -0.109728 0)
(-0.596037 -0.274809 0)
(-0.470144 -0.407176 0)
(-0.393052 -0.567987 0)
(-0.258515 -0.605852 0)
(-0.19956 -0.634601 0)
(-0.126458 -0.644182 0)
(-0.0540912 -0.646179 0)
(3.06933e-06 0.000247766 0)
(-3.03074e-05 0.000353569 0)
(-6.55725e-05 0.000642225 0)
(-0.000124615 0.00119123 0)
(-0.00022156 0.0021202 0)
(-0.00037449 0.00358469 0)
(-0.000605489 0.00576751 0)
(-0.000941928 0.0088698 0)
(-0.00141935 0.013106 0)
(-0.00208875 0.0187092 0)
(-0.00303281 0.0259484 0)
(-0.00439292 0.0351777 0)
(-0.00642664 0.0469036 0)
(-0.00960175 0.061893 0)
(-0.0146596 0.0812772 0)
(-0.0231896 0.107828 0)
(-0.041362 0.143364 0)
(-0.0743989 0.188697 0)
(-0.137319 0.241983 0)
(-0.23902 0.285206 0)
(-0.413605 0.29889 0)
(-0.450993 0.277823 0)
(-0.801177 -0.0711341 0)
(-0.811218 -0.395436 0)
(-0.584504 -0.518221 0)
(-0.460872 -0.673138 0)
(-0.322464 -0.709234 0)
(-0.218155 -0.713163 0)
(-0.132405 -0.730806 0)
(-0.0595748 -0.735069 0)
(-0.000677458 0.00022116 0)
(-1.72575e-05 0.000354791 0)
(-3.45728e-05 0.000644604 0)
(-6.3488e-05 0.00119573 0)
(-0.00011095 0.00212858 0)
(-0.000186478 0.00359978 0)
(-0.000302028 0.00579401 0)
(-0.000473208 0.00891518 0)
(-0.000721267 0.0131824 0)
(-0.00107722 0.0188371 0)
(-0.0015938 0.0261605 0)
(-0.00236124 0.0355316 0)
(-0.00355168 0.0475017 0)
(-0.00548807 0.0629342 0)
(-0.00865344 0.0829984 0)
(-0.0134326 0.111349 0)
(-0.0278647 0.151372 0)
(-0.0513857 0.204686 0)
(-0.105932 0.275706 0)
(-0.217096 0.354334 0)
(-0.405147 0.401603 0)
(-0.527257 0.322742 0)
(-0.793518 0.114296 0)
(-0.672988 -0.468929 0)
(-0.715365 -0.787396 0)
(-0.424039 -0.742516 0)
(-0.347357 -0.822208 0)
(-0.242957 -0.839394 0)
(-0.145513 -0.823387 0)
(-0.0668739 -0.832771 0)
(0.00124482 -0.000405949 0)
(0.00474686 -0.000404094 0)
(0.00859275 -0.000398895 0)
(0.0127739 -0.000389278 0)
(0.0172612 -0.000374307 0)
(0.0219932 -0.000352751 0)
(0.026872 -0.000323687 0)
(0.0317447 -0.000286564 0)
(0.0364085 -0.000241183 0)
(0.0406041 -0.000188387 0)
(0.0440325 -0.000130077 0)
(0.0463822 -6.94042e-05 0)
(0.0473748 -1.06388e-05 0)
(0.0468236 4.14837e-05 0)
(0.0446878 8.24997e-05 0)
(0.0411074 0.000109343 0)
(0.0363965 0.000121194 0)
(0.0309936 0.000119617 0)
(0.0253765 0.000108072 0)
(0.0199771 9.07782e-05 0)
(0.0151196 7.16163e-05 0)
(0.0109961 5.34309e-05 0)
(0.00767509 3.78566e-05 0)
(0.00513037 2.55216e-05 0)
(0.00327379 1.63657e-05 0)
(0.00198566 9.9666e-06 0)
(0.00113727 5.75425e-06 0)
(0.000607034 3.15906e-06 0)
(0.000289031 1.69601e-06 0)
(9.39209e-05 1.01266e-06 0)
(0.000572645 -0.00649023 0)
(0.00545023 -0.00646489 0)
(0.0108188 -0.00638948 0)
(0.016671 -0.00624937 0)
(0.022975 -0.00602785 0)
(0.0296562 -0.00570761 0)
(0.0365888 -0.00527195 0)
(0.0435732 -0.00470839 0)
(0.050338 -0.00401195 0)
(0.056525 -0.00319105 0)
(0.061714 -0.0022715 0)
(0.0654522 -0.00130019 0)
(0.067318 -0.000344022 0)
(0.0670047 0.000518593 0)
(0.0644063 0.00121146 0)
(0.0596748 0.00167987 0)
(0.0532235 0.00190497 0)
(0.0456613 0.00190859 0)
(0.0376729 0.00174438 0)
(0.0298943 0.00147993 0)
(0.0228159 0.00117855 0)
(0.0167428 0.000887575 0)
(0.0118002 0.000635074 0)
(0.00797213 0.000432667 0)
(0.00514748 0.000280671 0)
(0.00316365 0.000173088 0)
(0.00183999 0.000101269 0)
(0.00100207 5.6255e-05 0)
(0.000495612 3.01917e-05 0)
(0.000190626 1.7133e-05 0)
(0.000581755 -0.0127864 0)
(0.00553668 -0.0127366 0)
(0.0109901 -0.0125871 0)
(0.0169326 -0.0123097 0)
(0.0233305 -0.0118714 0)
(0.0301053 -0.0112375 0)
(0.037126 -0.0103753 0)
(0.0441862 -0.00926029 0)
(0.0510058 -0.0078828 0)
(0.057218 -0.0062599 0)
(0.062395 -0.00444334 0)
(0.0660798 -0.0025267 0)
(0.0678527 -0.000642968 0)
(0.0674169 0.0010523 0)
(0.0646827 0.00240924 0)
(0.0598218 0.00332127 0)
(0.0532648 0.00375365 0)
(0.0456302 0.00375174 0)
(0.0376031 0.00342271 0)
(0.0298127 0.00289987 0)
(0.0227397 0.00230705 0)
(0.0166804 0.00173629 0)
(0.0117534 0.00124179 0)
(0.00793949 0.000845771 0)
(0.00512606 0.000548556 0)
(0.00315038 0.000338259 0)
(0.00183225 0.000197894 0)
(0.000997859 0.000109926 0)
(0.000493536 5.89953e-05 0)
(0.000189834 3.34788e-05 0)
(0.000597114 -0.0192153 0)
(0.00568169 -0.0191392 0)
(0.0112764 -0.0189129 0)
(0.0173699 -0.0184921 0)
(0.0239244 -0.0178269 0)
(0.0308555 -0.0168657 0)
(0.0380232 -0.0155588 0)
(0.0452089 -0.01387 0)
(0.0521192 -0.0117858 0)
(0.058372 -0.00933372 0)
(0.063527 -0.00659394 0)
(0.0671205 -0.0037101 0)
(0.0687366 -0.000884609 0)
(0.0680954 0.00164814 0)
(0.0651347 0.00366435 0)
(0.0600592 0.00500814 0)
(0.053328 0.00563293 0)
(0.045575 0.00561163 0)
(0.0374853 0.00510744 0)
(0.0296767 0.00432005 0)
(0.0226135 0.00343301 0)
(0.0165772 0.0025818 0)
(0.0116762 0.00184566 0)
(0.00788563 0.00125674 0)
(0.00509072 0.000814986 0)
(0.00312851 0.000502513 0)
(0.00181949 0.000293978 0)
(0.000990917 0.000163296 0)
(0.000490116 8.7638e-05 0)
(0.000188528 4.97348e-05 0)
(0.000618657 -0.0258455 0)
(0.00588823 -0.0257421 0)
(0.0116845 -0.0254333 0)
(0.0179931 -0.0248594 0)
(0.0247705 -0.0239526 0)
(0.0319234 -0.0226428 0)
(0.039299 -0.0208635 0)
(0.046662 -0.0185668 0)
(0.0536985 -0.0157366 0)
(0.0600056 -0.0124139 0)
(0.0651253 -0.00871112 0)
(0.0685851 -0.00482716 0)
(0.0699754 -0.0010385 0)
(0.0690407 0.0023382 0)
(0.0657594 0.00500582 0)
(0.0603829 0.00676307 0)
(0.0534092 0.00755772 0)
(0.0454929 0.00749623 0)
(0.0373181 0.00680155 0)
(0.0294856 0.00574049 0)
(0.022437 0.00455515 0)
(0.0164333 0.00342254 0)
(0.0115687 0.00244533 0)
(0.00781076 0.00166455 0)
(0.00504162 0.00107927 0)
(0.00309811 0.000665416 0)
(0.00180177 0.000389263 0)
(0.000981272 0.000216222 0)
(0.000485365 0.000116042 0)
(0.000186714 6.58565e-05 0)
(0.000647309 -0.0327509 0)
(0.00616128 -0.0326174 0)
(0.0122238 -0.0322191 0)
(0.0188162 -0.0314787 0)
(0.0258875 -0.0303095 0)
(0.0333322 -0.0286218 0)
(0.0409803 -0.0263316 0)
(0.0485738 -0.0233799 0)
(0.0557722 -0.0197501 0)
(0.0621449 -0.0154998 0)
(0.067211 -0.0107801 0)
(0.0704877 -0.00585178 0)
(0.0715752 -0.00107219 0)
(0.0702525 0.00315627 0)
(0.0665518 0.00646354 0)
(0.0607854 0.00860873 0)
(0.0535014 0.00954253 0)
(0.0453788 0.009413 0)
(0.0370984 0.00850753 0)
(0.0292381 0.00716091 0)
(0.0222099 0.00567203 0)
(0.0162488 0.00425687 0)
(0.0114312 0.0030394 0)
(0.00771504 0.00206815 0)
(0.00497888 0.0013407 0)
(0.00305928 0.00082652 0)
(0.00177914 0.000483485 0)
(0.000968952 0.000268555 0)
(0.000479295 0.000144127 0)
(0.000184397 8.17975e-05 0)
(0.000683552 -0.0400112 0)
(0.00650726 -0.0398445 0)
(0.0129072 -0.039347 0)
(0.0198588 -0.0384225 0)
(0.0273012 -0.0369635 0)
(0.0351134 -0.0348593 0)
(0.0431029 -0.0320079 0)
(0.0509827 -0.0283396 0)
(0.0583782 -0.02384 0)
(0.0648242 -0.0185887 0)
(0.0698115 -0.0127828 0)
(0.0728463 -0.00675406 0)
(0.073544 -0.000949328 0)
(0.0717292 0.00413865 0)
(0.0675043 0.00806861 0)
(0.0612572 0.0105679 0)
(0.0535959 0.0116014 0)
(0.0452263 0.0113688 0)
(0.0368226 0.0102274 0)
(0.0289326 0.00858077 0)
(0.0219317 0.00678207 0)
(0.0160237 0.0050831 0)
(0.0112638 0.00362644 0)
(0.00759866 0.00246652 0)
(0.00490265 0.00159858 0)
(0.00301212 0.000985391 0)
(0.00175164 0.000576388 0)
(0.000953992 0.000320153 0)
(0.000471925 0.000171818 0)
(0.000181584 9.75184e-05 0)
(0.000728552 -0.0477149 0)
(0.00693469 -0.0475109 0)
(0.013751 -0.0469021 0)
(0.0211455 -0.0457709 0)
(0.0290447 -0.043987 0)
(0.0373073 -0.0414171 0)
(0.045713 -0.0379402 0)
(0.0539378 -0.0334771 0)
(0.0615651 -0.028019 0)
(0.0680868 -0.0216744 0)
(0.072961 -0.0146962 0)
(0.0756828 -0.00749912 0)
(0.0758904 -0.000629376 0)
(0.0734685 0.00532468 0)
(0.068607 0.0098536 0)
(0.0617859 0.0126637 0)
(0.0536814 0.0137481 0)
(0.0450277 0.0133699 0)
(0.036486 0.0119628 0)
(0.0285668 0.00999926 0)
(0.0216018 0.00788363 0)
(0.015758 0.00589953 0)
(0.0110668 0.00420506 0)
(0.00746188 0.00285864 0)
(0.00481311 0.00185223 0)
(0.00295675 0.0011416 0)
(0.00171937 0.000667721 0)
(0.000936431 0.000370875 0)
(0.000463275 0.000199038 0)
(0.000178284 0.000112975 0)
(0.000782952 -0.0559618 0)
(0.00745419 -0.0557153 0)
(0.0147764 -0.0549794 0)
(0.0227082 -0.0536132 0)
(0.0311601 -0.0514602 0)
(0.0399653 -0.0483627 0)
(0.0488687 -0.0441797 0)
(0.0575007 -0.0388242 0)
(0.065393 -0.0322976 0)
(0.0719864 -0.0247463 0)
(0.0767011 -0.0164917 0)
(0.0790231 -0.00804558 0)
(0.0786236 -6.6139e-05 0)
(0.0754657 0.0067574 0)
(0.0698471 0.0118527 0)
(0.0623561 0.014919 0)
(0.0537449 0.0159951 0)
(0.0447737 0.0154215 0)
(0.0360836 0.0137145 0)
(0.0281387 0.0114151 0)
(0.0212195 0.00897479 0)
(0.0154519 0.00670437 0)
(0.0108404 0.00477384 0)
(0.007305 0.00324347 0)
(0.0047105 0.00210098 0)
(0.00289331 0.00129473 0)
(0.00168241 0.000757234 0)
(0.000916317 0.000420583 0)
(0.000453367 0.000225713 0)
(0.000174505 0.000128125 0)
(0.000848642 -0.0648648 0)
(0.00807924 -0.0645694 0)
(0.0160098 -0.0636872 0)
(0.0245865 -0.06205 0)
(0.0336997 -0.059473 0)
(0.0431514 -0.0557707 0)
(0.0526424 -0.0507817 0)
(0.0617476 -0.0444133 0)
(0.069936 -0.0366835 0)
(0.0765878 -0.0277879 0)
(0.0810812 -0.0181325 0)
(0.0828967 -0.00834402 0)
(0.0817532 0.000793152 0)
(0.0777136 0.00848413 0)
(0.0712079 0.0141018 0)
(0.0629489 0.0173567 0)
(0.0537705 0.0183541 0)
(0.0444537 0.0175277 0)
(0.0356096 0.0154825 0)
(0.0276457 0.0128266 0)
(0.0207843 0.0100535 0)
(0.0151055 0.00749574 0)
(0.0105851 0.00533133 0)
(0.00712836 0.00362 0)
(0.00459507 0.00234414 0)
(0.00282197 0.00144436 0)
(0.00164085 0.000844683 0)
(0.000893705 0.000469141 0)
(0.000442229 0.000251771 0)
(0.000170258 0.000142929 0)
(0.000927254 -0.0745553 0)
(0.00882692 -0.0742025 0)
(0.0174842 -0.0731498 0)
(0.0268301 -0.0711977 0)
(0.0367294 -0.0681279 0)
(0.0469449 -0.0637252 0)
(0.0571235 -0.057807 0)
(0.066772 -0.0502778 0)
(0.0752841 -0.0411807 0)
(0.0819691 -0.0307755 0)
(0.0861592 -0.0195723 0)
(0.0873367 -0.00833493 0)
(0.0852875 0.00200954 0)
(0.0802015 0.0105573 0)
(0.0726681 0.0166386 0)
(0.0635418 0.0199992 0)
(0.0537399 0.0208357 0)
(0.0440559 0.0196914 0)
(0.0350576 0.0172659 0)
(0.0270851 0.0142315 0)
(0.0202953 0.0111174 0)
(0.014719 0.00827175 0)
(0.0103013 0.0058761 0)
(0.00693235 0.00398725 0)
(0.0044671 0.00258106 0)
(0.00274293 0.00159007 0)
(0.0015948 0.00092983 0)
(0.000868656 0.000516417 0)
(0.000429891 0.000277141 0)
(0.000165555 0.000157348 0)
(0.00102083 -0.0851855 0)
(0.00971808 -0.0847653 0)
(0.0192408 -0.083512 0)
(0.0295007 -0.0811896 0)
(0.0403304 -0.0775421 0)
(0.0514438 -0.0723209 0)
(0.0624217 -0.0653216 0)
(0.0726879 -0.0564509 0)
(0.0815458 -0.0457876 0)
(0.0882228 -0.0336748 0)
(0.0920021 -0.020752 0)
(0.0923787 -0.00794655 0)
(0.089232 0.00365398 0)
(0.0829131 0.013035 0)
(0.0742012 0.0195027 0)
(0.064108 0.0228681 0)
(0.0536326 0.0234482 0)
(0.0435671 0.0219138 0)
(0.0344209 0.0190628 0)
(0.0264544 0.0156272 0)
(0.0197521 0.012164 0)
(0.0142926 0.00903039 0)
(0.00998937 0.00640671 0)
(0.00671742 0.0043442 0)
(0.00432693 0.0028111 0)
(0.00265638 0.00173148 0)
(0.00154441 0.00101244 0)
(0.000841239 0.000562277 0)
(0.000416388 0.000301751 0)
(0.00016041 0.000171341 0)
(0.00113231 -0.0969349 0)
(0.010779 -0.0964348 0)
(0.0213309 -0.0949434 0)
(0.0326749 -0.0921819 0)
(0.0446031 -0.087851 0)
(0.056769 -0.0816651 0)
(0.0686716 -0.0733981 0)
(0.0796338 -0.0629651 0)
(0.0888519 -0.0504955 0)
(0.0954582 -0.0364392 0)
(0.0986865 -0.021597 0)
(0.098061 -0.00709177 0)
(0.0935892 0.00580844 0)
(0.0858256 0.0159811 0)
(0.0757736 0.0227345 0)
(0.0646156 0.0259834 0)
(0.0534249 0.0261982 0)
(0.0429733 0.0241943 0)
(0.0336925 0.0208701 0)
(0.0257507 0.0170102 0)
(0.0191543 0.0131906 0)
(0.0138268 0.0097696 0)
(0.00965 0.00692169 0)
(0.00648406 0.00468989 0)
(0.0041749 0.00303362 0)
(0.00256257 0.0018682 0)
(0.00148979 0.00109228 0)
(0.00081153 0.000606599 0)
(0.000401757 0.000325533 0)
(0.000154837 0.000184866 0)
(0.00126528 -0.110017 0)
(0.0120426 -0.109421 0)
(0.0238185 -0.107645 0)
(0.0364481 -0.104358 0)
(0.0496727 -0.0992121 0)
(0.0630698 -0.0918804 0)
(0.0760379 -0.0821162 0)
(0.0877783 -0.0698515 0)
(0.097359 -0.0552852 0)
(0.103804 -0.0390049 0)
(0.106299 -0.0220125 0)
(0.104422 -0.00566478 0)
(0.0983548 0.00856852 0)
(0.088907 0.019466 0)
(0.077344 0.0263758 0)
(0.065028 0.0293633 0)
(0.0530911 0.0290893 0)
(0.0422594 0.02653 0)
(0.0328651 0.0226834 0)
(0.0249717 0.0183766 0)
(0.0185013 0.0141941 0)
(0.0133219 0.0104872 0)
(0.00928381 0.0074196 0)
(0.00623283 0.00502335 0)
(0.00401141 0.00324801 0)
(0.00246174 0.00199984 0)
(0.0014311 0.00116915 0)
(0.000779608 0.000649261 0)
(0.000386038 0.000348426 0)
(0.000148853 0.000197893 0)
(0.00142408 -0.124688 0)
(0.0135504 -0.123977 0)
(0.0267842 -0.121855 0)
(0.0409401 -0.117936 0)
(0.0556945 -0.11181 0)
(0.0705304 -0.103108 0)
(0.0847231 -0.0915633 0)
(0.0973261 -0.077138 0)
(0.107255 -0.0601241 0)
(0.113412 -0.0412867 0)
(0.114938 -0.0218786 0)
(0.1115 -0.00353707 0)
(0.103516 0.0120449 0)
(0.0921144 0.0235668 0)
(0.0788618 0.0304681 0)
(0.0653027 0.0330228 0)
(0.0526025 0.0321218 0)
(0.0414095 0.0289161 0)
(0.0319317 0.0244971 0)
(0.0241148 0.019722 0)
(0.0177931 0.0151713 0)
(0.0127787 0.0111812 0)
(0.00889151 0.007899 0)
(0.00596431 0.00534365 0)
(0.00383688 0.0034537 0)
(0.00235415 0.00212605 0)
(0.00136849 0.00124282 0)
(0.000745562 0.000690146 0)
(0.000369271 0.000370364 0)
(0.000142473 0.000210384 0)
(0.00161442 -0.141258 0)
(0.0153547 -0.140405 0)
(0.0303297 -0.137863 0)
(0.0463011 -0.133173 0)
(0.0628625 -0.125862 0)
(0.0793791 -0.115508 0)
(0.094975 -0.101835 0)
(0.108526 -0.0848464 0)
(0.118767 -0.0649611 0)
(0.124458 -0.043171 0)
(0.124709 -0.0210436 0)
(0.119329 -0.000553978 0)
(0.109046 0.0163657 0)
(0.0953895 0.0283666 0)
(0.0802651 0.0350513 0)
(0.0653908 0.0369724 0)
(0.0519283 0.035292 0)
(0.0404075 0.0313446 0)
(0.0308853 0.026304 0)
(0.0231781 0.0210411 0)
(0.0170298 0.0161188 0)
(0.0121979 0.0118491 0)
(0.00847393 0.00835844 0)
(0.00567916 0.00564986 0)
(0.00365175 0.00365008 0)
(0.00224011 0.00224648 0)
(0.00130214 0.00131309 0)
(0.000709485 0.000729141 0)
(0.000351506 0.000391287 0)
(0.000135717 0.000222303 0)
(0.00184384 -0.160105 0)
(0.0175232 -0.159077 0)
(0.0345854 -0.156018 0)
(0.0527217 -0.150382 0)
(0.0714203 -0.141622 0)
(0.0898992 -0.129267 0)
(0.107098 -0.113033 0)
(0.121679 -0.0929904 0)
(0.132163 -0.0697207 0)
(0.137149 -0.0445074 0)
(0.135732 -0.0193152 0)
(0.127934 0.00347715 0)
(0.114901 0.0216781 0)
(0.0986562 0.0339538 0)
(0.0814795 0.0401626 0)
(0.0652378 0.0412173 0)
(0.0510359 0.0385916 0)
(0.0392371 0.033805 0)
(0.0297195 0.0280958 0)
(0.0221599 0.0223282 0)
(0.0162117 0.017033 0)
(0.0115804 0.0124888 0)
(0.00803197 0.0087965 0)
(0.00537809 0.00594111 0)
(0.00345653 0.00383662 0)
(0.00211991 0.00236079 0)
(0.00123223 0.00137977 0)
(0.000671474 0.000766139 0)
(0.000332794 0.000411137 0)
(0.000128606 0.000233621 0)
(0.00212191 -0.181697 0)
(0.0201441 -0.18045 0)
(0.03972 -0.176745 0)
(0.0604466 -0.169936 0)
(0.0816758 -0.159393 0)
(0.102444 -0.144597 0)
(0.121468 -0.125269 0)
(0.137156 -0.101571 0)
(0.147772 -0.0742952 0)
(0.151729 -0.0450976 0)
(0.148135 -0.0164482 0)
(0.137326 0.00878446 0)
(0.121012 0.028151 0)
(0.101815 0.0404205 0)
(0.0824165 0.0458332 0)
(0.0647826 0.0457551 0)
(0.0498909 0.0420066 0)
(0.0378827 0.0362835 0)
(0.0284285 0.0298624 0)
(0.0210591 0.023577 0)
(0.0153394 0.0179099 0)
(0.0109273 0.013098 0)
(0.0075666 0.00921181 0)
(0.00506183 0.00621654 0)
(0.0032517 0.00401278 0)
(0.00199387 0.00246868 0)
(0.00115894 0.00144268 0)
(0.000631634 0.000801037 0)
(0.000313181 0.000429861 0)
(0.000121161 0.000244307 0)
(0.00246193 -0.206619 0)
(0.0233357 -0.205093 0)
(0.0459565 -0.200568 0)
(0.0697926 -0.192284 0)
(0.0940193 -0.179525 0)
(0.11745 -0.161735 0)
(0.138542 -0.138656 0)
(0.155401 -0.110571 0)
(0.165984 -0.0785343 0)
(0.16848 -0.0446819 0)
(0.16205 -0.0121321 0)
(0.147493 0.0156478 0)
(0.127273 0.0359743 0)
(0.10474 0.0478586 0)
(0.0829714 0.052085 0)
(0.0639584 0.0505737 0)
(0.0484588 0.0455165 0)
(0.0363293 0.0387629 0)
(0.0270077 0.0315924 0)
(0.0198753 0.0247806 0)
(0.014414 0.0187457 0)
(0.0102399 0.0136743 0)
(0.00707895 0.00960299 0)
(0.00473122 0.00647531 0)
(0.00303783 0.00417806 0)
(0.00186234 0.00256983 0)
(0.00108248 0.00150164 0)
(0.000590077 0.000833743 0)
(0.00029272 0.000447406 0)
(0.000113403 0.00025433 0)
(0.00288254 -0.235616 0)
(0.0272619 -0.233726 0)
(0.0535994 -0.228137 0)
(0.08118 -0.217967 0)
(0.10895 -0.202426 0)
(0.135462 -0.180945 0)
(0.158878 -0.153313 0)
(0.176959 -0.119952 0)
(0.187276 -0.0822347 0)
(0.187736 -0.0429174 0)
(0.17761 -0.00597269 0)
(0.158385 0.0244064 0)
(0.133536 0.0453599 0)
(0.107267 0.0563557 0)
(0.0830233 0.0589267 0)
(0.0626936 0.0556495 0)
(0.0467051 0.0490938 0)
(0.0345637 0.0412229 0)
(0.0254534 0.0332732 0)
(0.0186088 0.0259316 0)
(0.0134369 0.0195363 0)
(0.00951957 0.0142155 0)
(0.0065702 0.00996872 0)
(0.00438709 0.00671663 0)
(0.00281549 0.00433199 0)
(0.00172568 0.00266396 0)
(0.00100306 0.00155649 0)
(0.000546913 0.000864165 0)
(0.000271472 0.000463724 0)
(0.000105356 0.000263662 0)
(0.00341092 -0.269671 0)
(0.0321668 -0.267282 0)
(0.0630833 -0.260263 0)
(0.0951771 -0.247626 0)
(0.12711 -0.228552 0)
(0.157145 -0.20251 0)
(0.183147 -0.169357 0)
(0.202485 -0.129651 0)
(0.212232 -0.0851272 0)
(0.209895 -0.0393431 0)
(0.194947 0.00255249 0)
(0.169897 0.0354692 0)
(0.13959 0.0565381 0)
(0.109198 0.0659877 0)
(0.0824338 0.0663485 0)
(0.060913 0.0609446 0)
(0.0445971 0.0527035 0)
(0.0325751 0.0436397 0)
(0.0237638 0.0348909 0)
(0.0172607 0.0270227 0)
(0.0124099 0.0202776 0)
(0.00876808 0.0147194 0)
(0.00604164 0.0103078 0)
(0.00403036 0.00693976 0)
(0.00258526 0.00447412 0)
(0.00158425 0.00275081 0)
(0.000920891 0.00160708 0)
(0.000502259 0.000892217 0)
(0.000249491 0.000478771 0)
(9.7045e-05 0.000272275 0)
(0.00408759 -0.310135 0)
(0.038449 -0.307009 0)
(0.0750633 -0.297951 0)
(0.112572 -0.281993 0)
(0.149319 -0.258375 0)
(0.183297 -0.226707 0)
(0.212142 -0.186903 0)
(0.23277 -0.139587 0)
(0.241572 -0.0868611 0)
(0.235432 -0.033359 0)
(0.214161 0.0140943 0)
(0.18184 0.0493264 0)
(0.145142 0.0697497 0)
(0.110285 0.0768071 0)
(0.081049 0.0743146 0)
(0.0585401 0.0664043 0)
(0.0421054 0.0563019 0)
(0.0303556 0.0459865 0)
(0.0219388 0.0364305 0)
(0.015833 0.0280458 0)
(0.0113352 0.0209654 0)
(0.00798728 0.0151838 0)
(0.00549465 0.0106189 0)
(0.003662 0.007144 0)
(0.00234778 0.00460404 0)
(0.00143844 0.00283014 0)
(0.000836198 0.00165326 0)
(0.000456241 0.000917822 0)
(0.000226839 0.000492503 0)
(8.84981e-05 0.000280144 0)
(0.00497363 -0.359094 0)
(0.0469152 -0.354658 0)
(0.0905929 -0.342372 0)
(0.134472 -0.321871 0)
(0.17663 -0.292306 0)
(0.214819 -0.253779 0)
(0.246765 -0.206081 0)
(0.268759 -0.149683 0)
(0.276227 -0.087005 0)
(0.264935 -0.0241252 0)
(0.235295 0.0295297 0)
(0.193894 0.0665586 0)
(0.149798 0.0852322 0)
(0.110231 0.0888294 0)
(0.0787017 0.0827571 0)
(0.0555008 0.0719551 0)
(0.0392062 0.0598374 0)
(0.027901 0.0482337 0)
(0.0199804 0.0378766 0)
(0.0143289 0.0289931 0)
(0.0102156 0.0215959 0)
(0.00717925 0.0156066 0)
(0.00493072 0.0109009 0)
(0.00328299 0.00732871 0)
(0.0021037 0.00472136 0)
(0.00128865 0.00290172 0)
(0.000749217 0.00169491 0)
(0.000408986 0.000940914 0)
(0.000203578 0.000504883 0)
(7.974e-05 0.000287245 0)
(0.00613089 -0.4208 0)
(0.0597678 -0.412733 0)
(0.111099 -0.394309 0)
(0.16242 -0.368332 0)
(0.210353 -0.330405 0)
(0.252537 -0.283926 0)
(0.288017 -0.227065 0)
(0.311536 -0.159934 0)
(0.317449 -0.0850425 0)
(0.299149 -0.0104954 0)
(0.258273 0.0500097 0)
(0.205552 0.0878371 0)
(0.153035 0.103195 0)
(0.108686 0.102012 0)
(0.0752168 0.0915675 0)
(0.0517265 0.0775021 0)
(0.035883 0.0632499 0)
(0.025212 0.0503496 0)
(0.0178925 0.0392132 0)
(0.0127524 0.0298567 0)
(0.00905435 0.0221652 0)
(0.00634623 0.0159858 0)
(0.00435139 0.0111528 0)
(0.00289436 0.0074933 0)
(0.00185366 0.00482575 0)
(0.00113528 0.00296536 0)
(0.000660181 0.00173191 0)
(0.00036062 0.000961427 0)
(0.000179769 0.000515878 0)
(7.07989e-05 0.000293554 0)
(0.00797403 -0.504373 0)
(0.073871 -0.48002 0)
(0.127817 -0.453356 0)
(0.195509 -0.425429 0)
(0.248978 -0.372034 0)
(0.296064 -0.317842 0)
(0.337116 -0.250059 0)
(0.362166 -0.17055 0)
(0.367074 -0.0804637 0)
(0.33904 0.00934887 0)
(0.282779 0.0770584 0)
(0.216029 0.113902 0)
(0.154172 0.123777 0)
(0.105255 0.11623 0)
(0.0704212 0.100589 0)
(0.0471603 0.0829276 0)
(0.0321298 0.0664723 0)
(0.0222944 0.052301 0)
(0.0156822 0.0404243 0)
(0.0111087 0.0306289 0)
(0.00785502 0.0226695 0)
(0.00549076 0.0163196 0)
(0.00375834 0.0113737 0)
(0.00249722 0.00763721 0)
(0.00159837 0.00491688 0)
(0.000978769 0.00302087 0)
(0.000569337 0.00176416 0)
(0.000311282 0.000979302 0)
(0.000155477 0.000525458 0)
(6.17064e-05 0.000299047 0)
(0.013646 -0.574001 0)
(0.0274632 -0.521856 0)
(0.0222818 -0.521632 0)
(0.0793768 -0.487683 0)
(0.234222 -0.43916 0)
(0.324864 -0.367298 0)
(0.394464 -0.27515 0)
(0.420759 -0.18262 0)
(0.428251 -0.0729202 0)
(0.385777 0.0382331 0)
(0.308014 0.112657 0)
(0.224158 0.145509 0)
(0.152352 0.146985 0)
(0.0995054 0.131242 0)
(0.0641563 0.109612 0)
(0.0417621 0.0880907 0)
(0.0279535 0.0694318 0)
(0.0191601 0.0540544 0)
(0.0133584 0.0414942 0)
(0.00940428 0.0313025 0)
(0.00662176 0.0231053 0)
(0.00461549 0.0166063 0)
(0.00315332 0.0115625 0)
(0.00209268 0.00775997 0)
(0.00133854 0.00499448 0)
(0.000819535 0.00306809 0)
(0.000476939 0.00179156 0)
(0.000261107 0.000994488 0)
(0.000130771 0.000533592 0)
(5.24928e-05 0.000303694 0)
(-0.00272793 -0.584075 0)
(0.0463919 -0.550292 0)
(0.152562 -0.547865 0)
(0.238654 -0.595005 0)
(0.211239 -0.525682 0)
(0.306981 -0.483535 0)
(0.427884 -0.314792 0)
(0.482212 -0.202745 0)
(0.507491 -0.062259 0)
(0.440219 0.0812641 0)
(0.332304 0.159214 0)
(0.228257 0.183309 0)
(0.146533 0.172614 0)
(0.0909959 0.146654 0)
(0.0562962 0.118376 0)
(0.0355151 0.0928266 0)
(0.0233769 0.0720529 0)
(0.0158267 0.0555776 0)
(0.0109328 0.0424085 0)
(0.0076462 0.031871 0)
(0.00535907 0.0234698 0)
(0.00372325 0.0168444 0)
(0.0025381 0.0117187 0)
(0.00168187 0.00786117 0)
(0.00107488 0.00505833 0)
(0.000658019 0.00310689 0)
(0.000383234 0.00181403 0)
(0.000210231 0.00100694 0)
(0.000105715 0.000540259 0)
(4.31921e-05 0.000307463 0)
(0.00665182 -0.650519 0)
(0.0699122 -0.643242 0)
(0.143759 -0.643067 0)
(0.212529 -0.650044 0)
(0.298672 -0.59644 0)
(0.417149 -0.556406 0)
(0.488296 -0.372768 0)
(0.624103 -0.239487 0)
(0.618751 -0.0477166 0)
(0.499496 0.15298 0)
(0.351989 0.219454 0)
(0.225958 0.227616 0)
(0.135519 0.200136 0)
(0.0793157 0.161877 0)
(0.0467706 0.126586 0)
(0.0284337 0.0969445 0)
(0.0184419 0.0742617 0)
(0.0123181 0.0568404 0)
(0.00841974 0.0431537 0)
(0.00584282 0.0323283 0)
(0.0040719 0.0237602 0)
(0.00281704 0.0170327 0)
(0.00191456 0.0118415 0)
(0.00126598 0.00794047 0)
(0.000808129 0.00510823 0)
(0.000494671 0.00313717 0)
(0.000288485 0.00183152 0)
(0.000158795 0.00101663 0)
(8.03769e-05 0.000545444 0)
(3.3844e-05 0.000310333 0)
(0.00746136 -0.735727 0)
(0.0768245 -0.735006 0)
(0.15423 -0.731321 0)
(0.242253 -0.724246 0)
(0.353738 -0.69847 0)
(0.493728 -0.654433 0)
(0.649225 -0.487481 0)
(0.85269 -0.303296 0)
(0.783398 0.00668618 0)
(0.485219 0.276684 0)
(0.340757 0.295033 0)
(0.211781 0.27798 0)
(0.117977 0.228774 0)
(0.0641346 0.176131 0)
(0.0355835 0.133992 0)
(0.0205752 0.100231 0)
(0.0132109 0.0759961 0)
(0.00866344 0.0578174 0)
(0.00583538 0.0437188 0)
(0.0040032 0.0326696 0)
(0.00276549 0.0239743 0)
(0.00189996 0.0171701 0)
(0.00128459 0.0119304 0)
(0.000846182 0.00799757 0)
(0.000539025 0.00514402 0)
(0.000329936 0.0031588 0)
(0.000192949 0.00184396 0)
(0.00010694 0.00102353 0)
(5.48237e-05 0.000549131 0)
(2.44904e-05 0.000312276 0)
(0.00705343 -0.829995 0)
(0.0815539 -0.832915 0)
(0.164529 -0.823533 0)
(0.277549 -0.83172 0)
(0.42412 -0.837361 0)
(0.506117 -0.752568 0)
(0.733893 -0.697446 0)
(0.801668 -0.432325 0)
(0.696589 0.141386 0)
(0.479425 0.36961 0)
(0.371108 0.381431 0)
(0.184123 0.33474 0)
(0.0864305 0.256917 0)
(0.0443263 0.18873 0)
(0.0228182 0.141218 0)
(0.0120775 0.102948 0)
(0.00777125 0.0775681 0)
(0.0048986 0.0587211 0)
(0.00319989 0.0442423 0)
(0.00213816 0.0329802 0)
(0.00144595 0.0241614 0)
(0.000975533 0.0172825 0)
(0.000650293 0.0119975 0)
(0.000423747 0.00803728 0)
(0.000268345 0.0051671 0)
(0.000164295 0.00317186 0)
(9.691e-05 0.00185112 0)
(5.48198e-05 0.00102737 0)
(2.91371e-05 0.000551143 0)
(1.51921e-05 0.000313158 0)
(-0.0064255 -0.000207248 0)
(-0.000107378 0.000345171 0)
(-0.000133617 0.000628714 0)
(-0.0001733 0.00116967 0)
(-0.000221079 0.00208571 0)
(-0.000274066 0.0035246 0)
(-0.000330445 0.00565203 0)
(-0.000393375 0.00863833 0)
(-0.000469091 0.0126606 0)
(-0.00055951 0.0179464 0)
(-0.00067698 0.024812 0)
(-0.000857834 0.033754 0)
(-0.00116576 0.0456091 0)
(-0.0017326 0.0615348 0)
(-0.00288101 0.0820882 0)
(-0.00718057 0.111025 0)
(-0.022949 0.154887 0)
(-0.0130876 0.215962 0)
(-0.0810263 0.301805 0)
(-0.191436 0.422589 0)
(-0.412418 0.501289 0)
(-0.637294 0.431967 0)
(-0.746478 0.123339 0)
(-0.351578 -0.404744 0)
(-0.318006 -0.674522 0)
(-0.476833 -0.835576 0)
(-0.489674 -0.907779 0)
(-0.457305 -0.937317 0)
(-0.362903 -0.943232 0)
(-0.182602 -0.963434 0)
(-0.00512346 -0.000344984 0)
(-0.00323715 0.000360116 0)
(-0.00383477 0.000651586 0)
(-0.00480735 0.00121066 0)
(-0.00608212 0.00215204 0)
(-0.00770643 0.00363701 0)
(-0.00970005 0.00585025 0)
(-0.0122367 0.00899459 0)
(-0.0156575 0.0132659 0)
(-0.0194141 0.018899 0)
(-0.0236532 0.0263133 0)
(-0.0309195 0.0359446 0)
(-0.0436053 0.0478742 0)
(-0.0660035 0.0647319 0)
(-0.291638 0.0813666 0)
(-0.092084 0.106541 0)
(-0.129169 0.146131 0)
(0.041762 0.22533 0)
(-0.0634726 0.308832 0)
(-0.119617 0.471045 0)
(-0.399966 0.567751 0)
(-0.548541 0.444482 0)
(-0.418538 -0.174772 0)
(-0.232841 -0.492579 0)
(-0.101488 -0.640129 0)
(-0.212526 -0.777272 0)
(-0.325261 -0.886771 0)
(-0.358273 -0.954177 0)
(-0.287465 -1.01251 0)
(-0.169996 -1.08808 0)
(-0.00473014 -0.000356209 0)
(-0.00473791 0.000377652 0)
(-0.00568589 0.000676979 0)
(-0.00726402 0.00126409 0)
(-0.00938537 0.00223879 0)
(-0.0121595 0.00377747 0)
(-0.0156254 0.006072 0)
(-0.0200909 0.00933373 0)
(-0.0263629 0.0137851 0)
(-0.0346756 0.019597 0)
(-0.0460581 0.0273192 0)
(-0.0651352 0.037878 0)
(-0.103634 0.0523799 0)
(-0.212382 0.0829737 0)
(-1.02678 0.247121 0)
(-2.39262 0.208188 0)
(-1.07532 0.0783464 0)
(-0.516298 0.188899 0)
(-0.308072 0.293157 0)
(-0.0623449 0.52573 0)
(-0.402352 0.6305 0)
(-0.624633 0.537719 0)
(-0.512952 -0.241545 0)
(-0.178643 -0.615315 0)
(-0.0104904 -0.66566 0)
(0.0252813 -0.727979 0)
(-0.0499605 -0.849988 0)
(-0.0842776 -0.949747 0)
(-0.0709877 -1.06292 0)
(-0.0594986 -1.18228 0)
(-0.00464656 -0.000326138 0)
(-0.00519767 0.000400769 0)
(-0.00625911 0.000711401 0)
(-0.00801248 0.00133549 0)
(-0.0103759 0.00235426 0)
(-0.0134967 0.00396186 0)
(-0.0174425 0.00636344 0)
(-0.0225539 0.00978241 0)
(-0.0297335 0.0145054 0)
(-0.0393663 0.0206605 0)
(-0.052857 0.0290277 0)
(-0.0759099 0.0413185 0)
(-0.122858 0.0609955 0)
(-0.252829 0.116815 0)
(-0.79153 0.517998 0)
(-2.52067 0.308943 0)
(-1.32033 -0.185472 0)
(-0.77947 0.110415 0)
(-0.352664 0.221219 0)
(-0.149368 0.509409 0)
(-0.41733 0.717276 0)
(-0.675468 0.556823 0)
(-0.580151 -0.379562 0)
(-0.199946 -0.726375 0)
(-0.00587466 -0.732191 0)
(0.119579 -0.737271 0)
(0.140249 -0.827676 0)
(0.125763 -0.938968 0)
(0.0989026 -1.05421 0)
(0.0727849 -1.15948 0)
(-0.00466827 -0.000286041 0)
(-0.00530649 0.000429313 0)
(-0.00640774 0.000758232 0)
(-0.00819044 0.00142421 0)
(-0.010586 0.0024951 0)
(-0.0137463 0.00417927 0)
(-0.0177705 0.00670093 0)
(-0.0229683 0.0102942 0)
(-0.0301597 0.0153108 0)
(-0.0398938 0.0218447 0)
(-0.0536703 0.0309881 0)
(-0.077096 0.0453162 0)
(-0.12412 0.070939 0)
(-0.24423 0.151354 0)
(-0.461427 0.693211 0)
(-1.39246 0.251056 0)
(-0.821532 -0.338667 0)
(-0.603684 0.0803578 0)
(-0.591552 0.138117 0)
(-0.165304 0.519442 0)
(-0.463309 0.867729 0)
(-0.628927 0.5039 0)
(-0.412618 -0.660501 0)
(-0.20778 -0.838797 0)
(-0.00678374 -0.808404 0)
(0.122816 -0.790092 0)
(0.194294 -0.836372 0)
(0.204328 -0.931633 0)
(0.168865 -1.02035 0)
(0.103235 -1.08228 0)
(-0.00470694 -0.000244611 0)
(-0.00533959 0.000463142 0)
(-0.00646041 0.00081948 0)
(-0.00823959 0.00152991 0)
(-0.0106252 0.00265895 0)
(-0.0137525 0.0044222 0)
(-0.0177499 0.0070677 0)
(-0.0228798 0.0108377 0)
(-0.0298106 0.0161459 0)
(-0.0392539 0.0230746 0)
(-0.0527546 0.0330707 0)
(-0.0753582 0.0495193 0)
(-0.119096 0.0810291 0)
(-0.216132 0.179629 0)
(-0.214718 0.694396 0)
(-0.14127 0.204127 0)
(-0.406694 -0.359971 0)
(-0.436164 0.0885257 0)
(-0.499105 0.132199 0)
(-0.538359 0.300143 0)
(-0.470328 1.01172 0)
(-0.687431 0.520434 0)
(-0.854034 -0.829536 0)
(-0.194421 -0.98095 0)
(0.00972818 -0.885325 0)
(0.115764 -0.845938 0)
(0.178047 -0.862519 0)
(0.193579 -0.927607 0)
(0.166462 -0.97595 0)
(0.0949331 -0.997378 0)
(-0.0047385 -0.000203823 0)
(-0.00535944 0.000502774 0)
(-0.00648809 0.000896054 0)
(-0.00825633 0.0016537 0)
(-0.0106275 0.00284682 0)
(-0.0137088 0.00469147 0)
(-0.0176477 0.00746226 0)
(-0.022666 0.0114079 0)
(-0.0292744 0.0169975 0)
(-0.0382856 0.0243401 0)
(-0.0512548 0.0352397 0)
(-0.0724525 0.0537762 0)
(-0.111145 0.0905282 0)
(-0.180778 0.19863 0)
(-0.0852741 0.591954 0)
(0.583488 0.188972 0)
(-0.168768 -0.256513 0)
(-0.374315 0.11141 0)
(-0.465131 0.113219 0)
(-1.20359 0.592299 0)
(-0.572813 1.02034 0)
(-0.579216 1.02642 0)
(-0.897107 -1.15979 0)
(-0.106345 -1.13361 0)
(0.0525185 -0.952791 0)
(0.121369 -0.887197 0)
(0.153898 -0.8824 0)
(0.152998 -0.918742 0)
(0.119012 -0.935632 0)
(0.0644779 -0.922385 0)
(-0.00475951 -0.000164345 0)
(-0.00537341 0.000548147 0)
(-0.00650013 0.000987121 0)
(-0.00825401 0.00179524 0)
(-0.0106081 0.00305748 0)
(-0.0136388 0.00498629 0)
(-0.0174964 0.00788227 0)
(-0.022371 0.0120005 0)
(-0.0286327 0.0178589 0)
(-0.0371172 0.0256381 0)
(-0.049343 0.0374597 0)
(-0.0686486 0.0579491 0)
(-0.101045 0.0988585 0)
(-0.143752 0.207994 0)
(-0.0137958 0.484348 0)
(0.529656 0.184459 0)
(-0.065014 -0.119409 0)
(-0.333081 0.160769 0)
(-0.5337 0.169867 0)
(-0.232104 0.373732 0)
(-0.828366 1.08096 0)
(-1.04325 1.3576 0)
(-0.0976772 -1.66424 0)
(0.0775501 -1.23189 0)
(0.124106 -0.991561 0)
(0.141907 -0.906187 0)
(0.141347 -0.884685 0)
(0.118515 -0.895249 0)
(0.076765 -0.895126 0)
(0.0340034 -0.869436 0)
(-0.00476998 -0.000126539 0)
(-0.00538052 0.000598811 0)
(-0.00649786 0.00109134 0)
(-0.00823489 0.00195373 0)
(-0.0105662 0.00328882 0)
(-0.0135407 0.00530532 0)
(-0.0172945 0.00832492 0)
(-0.0219883 0.0126112 0)
(-0.0278767 0.0187248 0)
(-0.0357512 0.0269579 0)
(-0.0470176 0.0396799 0)
(-0.0639679 0.0618754 0)
(-0.089214 0.105525 0)
(-0.108302 0.208852 0)
(0.0256619 0.396045 0)
(0.346769 0.186734 0)
(-0.0111795 0.00039598 0)
(-0.278749 0.241416 0)
(-0.484354 0.104503 0)
(-0.981531 0.602615 0)
(-1.20596 1.08003 0)
(0.832105 0.677587 0)
(0.667784 -1.60425 0)
(0.29876 -1.19745 0)
(0.211168 -0.982621 0)
(0.173854 -0.89699 0)
(0.142346 -0.866189 0)
(0.102936 -0.858277 0)
(0.0568251 -0.85064 0)
(0.0191823 -0.833532 0)
(-0.00477027 -9.07253e-05 0)
(-0.00537846 0.000654086 0)
(-0.00648146 0.00120722 0)
(-0.0081992 0.00212821 0)
(-0.0104994 0.00353858 0)
(-0.0134086 0.00564669 0)
(-0.0170365 0.00878678 0)
(-0.0215086 0.0132349 0)
(-0.0269878 0.0195888 0)
(-0.0341755 0.0282782 0)
(-0.044262 0.0418315 0)
(-0.0584429 0.0653701 0)
(-0.0761461 0.110154 0)
(-0.0764152 0.203074 0)
(0.0454944 0.327111 0)
(0.235619 0.191322 0)
(0.0278141 0.0934355 0)
(-0.178954 0.340529 0)
(-0.879613 0.24034 0)
(-1.66568 0.788024 0)
(-0.0051751 0.164435 0)
(0.864422 0.328413 0)
(0.948455 -1.19976 0)
(0.454671 -1.04988 0)
(0.288569 -0.923272 0)
(0.208771 -0.858385 0)
(0.153859 -0.828251 0)
(0.105312 -0.813088 0)
(0.0600702 -0.803042 0)
(0.0230612 -0.80019 0)
(-0.00475968 -5.70563e-05 0)
(-0.00536514 0.000713036 0)
(-0.00645077 0.00133297 0)
(-0.00814601 0.00231713 0)
(-0.0104053 0.00380416 0)
(-0.0132368 0.0060075 0)
(-0.0167159 0.00926305 0)
(-0.0209242 0.0138655 0)
(-0.025951 0.0204419 0)
(-0.0323743 0.0295672 0)
(-0.0410667 0.0438317 0)
(-0.0521509 0.0682446 0)
(-0.0624065 0.112541 0)
(-0.04903 0.192707 0)
(0.0548119 0.274562 0)
(0.173177 0.194126 0)
(0.0635284 0.157312 0)
(-0.0273849 0.390149 0)
(0.110493 0.753296 0)
(0.167475 0.0495546 0)
(0.769427 -0.189084 0)
(1.05227 -0.2526 0)
(0.852803 -0.81786 0)
(0.512071 -0.869773 0)
(0.336455 -0.829797 0)
(0.236612 -0.795768 0)
(0.168365 -0.775224 0)
(0.114841 -0.762796 0)
(0.0713294 -0.755296 0)
(0.0336818 -0.756455 0)
(-0.00473719 -2.51764e-05 0)
(-0.00533938 0.000775139 0)
(-0.00640616 0.00146731 0)
(-0.00807408 0.00251892 0)
(-0.0102819 0.00408326 0)
(-0.0130205 0.00638376 0)
(-0.0163255 0.00974734 0)
(-0.02023 0.0144944 0)
(-0.0247584 0.0212699 0)
(-0.0303346 0.0307818 0)
(-0.0374401 0.0455844 0)
(-0.0452187 0.0703202 0)
(-0.0485613 0.112657 0)
(-0.0262573 0.179579 0)
(0.0594934 0.234624 0)
(0.140195 0.192751 0)
(0.09802 0.191551 0)
(0.104081 0.367926 0)
(0.452848 0.642915 0)
(1.04752 0.0827677 0)
(0.828887 -0.177165 0)
(0.824809 -0.340952 0)
(0.707812 -0.61055 0)
(0.499562 -0.710613 0)
(0.350608 -0.724443 0)
(0.250419 -0.718593 0)
(0.177947 -0.711352 0)
(0.121346 -0.706267 0)
(0.0749432 -0.703851 0)
(0.0343809 -0.702025 0)
(-0.00470329 5.22873e-06 0)
(-0.00529986 0.000840652 0)
(-0.00634735 0.00160993 0)
(-0.0079817 0.0027329 0)
(-0.0101272 0.00437515 0)
(-0.012756 0.00677219 0)
(-0.0158592 0.0102346 0)
(-0.019423 0.0151126 0)
(-0.0234067 0.0220542 0)
(-0.0280513 0.0318717 0)
(-0.0334157 0.0469874 0)
(-0.0378218 0.0714491 0)
(-0.0351216 0.110626 0)
(-0.0076935 0.165072 0)
(0.0627885 0.203489 0)
(0.125012 0.186047 0)
(0.128364 0.199701 0)
(0.189049 0.309754 0)
(0.454919 0.394137 0)
(0.754005 0.117749 0)
(0.720901 -0.145535 0)
(0.680715 -0.32103 0)
(0.588374 -0.489842 0)
(0.454639 -0.585224 0)
(0.338469 -0.623066 0)
(0.248777 -0.636293 0)
(0.178888 -0.640681 0)
(0.122234 -0.642161 0)
(0.0743128 -0.642775 0)
(0.0327032 -0.643172 0)
(-0.00465754 3.39787e-05 0)
(-0.00524502 0.00090953 0)
(-0.00627237 0.00175993 0)
(-0.00786676 0.00295774 0)
(-0.00993808 0.00467851 0)
(-0.0124395 0.00716878 0)
(-0.0153125 0.0107199 0)
(-0.0185013 0.0157092 0)
(-0.0218932 0.0227712 0)
(-0.0255278 0.0327827 0)
(-0.029049 0.0479416 0)
(-0.0301665 0.0715295 0)
(-0.0224938 0.106684 0)
(0.00730536 0.150064 0)
(0.0660803 0.177943 0)
(0.119758 0.173863 0)
(0.150977 0.18841 0)
(0.231213 0.242684 0)
(0.41514 0.242268 0)
(0.582319 0.0718513 0)
(0.601189 -0.126899 0)
(0.564698 -0.28094 0)
(0.492435 -0.405874 0)
(0.399319 -0.48769 0)
(0.310343 -0.53244 0)
(0.23452 -0.555601 0)
(0.171327 -0.567737 0)
(0.118063 -0.574344 0)
(0.0722614 -0.577996 0)
(0.0320917 -0.579645 0)
(-0.00459955 6.071e-05 0)
(-0.00517337 0.000981242 0)
(-0.00617791 0.00191547 0)
(-0.00772601 0.00319077 0)
(-0.00971116 0.00499006 0)
(-0.0120669 0.00756774 0)
(-0.0146838 0.0111965 0)
(-0.017465 0.0162692 0)
(-0.0202192 0.023393 0)
(-0.0227811 0.0334591 0)
(-0.0244211 0.0483578 0)
(-0.0224802 0.0705102 0)
(-0.0109761 0.101127 0)
(0.0193781 0.135057 0)
(0.0695715 0.155632 0)
(0.118973 0.156937 0)
(0.16409 0.165187 0)
(0.243203 0.180708 0)
(0.367777 0.146754 0)
(0.468747 0.0264483 0)
(0.492267 -0.118699 0)
(0.465896 -0.243076 0)
(0.411247 -0.341126 0)
(0.343011 -0.409953 0)
(0.274433 -0.453683 0)
(0.212019 -0.480264 0)
(0.157166 -0.496271 0)
(0.109229 -0.505894 0)
(0.0671167 -0.511494 0)
(0.0297751 -0.514253 0)
(-0.00452774 8.4918e-05 0)
(-0.00508248 0.00105596 0)
(-0.00606051 0.0020753 0)
(-0.00755458 0.00342947 0)
(-0.00944222 0.0053061 0)
(-0.0116336 0.00796287 0)
(-0.0139735 0.0116552 0)
(-0.016317 0.0167747 0)
(-0.0183942 0.023888 0)
(-0.019845 0.033846 0)
(-0.0196392 0.0481657 0)
(-0.0149984 0.0683965 0)
(-0.000776697 0.0942623 0)
(0.0289899 0.12022 0)
(0.0728479 0.135058 0)
(0.119034 0.136654 0)
(0.16801 0.136513 0)
(0.236704 0.128525 0)
(0.321011 0.0834673 0)
(0.383698 -0.00778764 0)
(0.400869 -0.11499 0)
(0.381749 -0.211698 0)
(0.340806 -0.289305 0)
(0.289459 -0.346422 0)
(0.236099 -0.385781 0)
(0.185355 -0.411875 0)
(0.138996 -0.428813 0)
(0.0972995 -0.439588 0)
(0.0599693 -0.446131 0)
(0.0265311 -0.449506 0)
(-0.00443598 0.000105874 0)
(-0.00496997 0.00113463 0)
(-0.00591728 0.00223921 0)
(-0.00734717 0.00367212 0)
(-0.00912582 0.00562333 0)
(-0.0111341 0.00834759 0)
(-0.0131796 0.012083 0)
(-0.015061 0.0172034 0)
(-0.0164339 0.0242209 0)
(-0.0167674 0.0338914 0)
(-0.0148281 0.0473195 0)
(-0.00794306 0.0652476 0)
(0.0079977 0.086411 0)
(0.0364558 0.105625 0)
(0.0752947 0.115465 0)
(0.117824 0.114657 0)
(0.164331 0.106985 0)
(0.219909 0.0864995 0)
(0.276967 0.0402581 0)
(0.315883 -0.0313879 0)
(0.325816 -0.111899 0)
(0.310811 -0.186049 0)
(0.279715 -0.247036 0)
(0.240419 -0.293591 0)
(0.198607 -0.327296 0)
(0.157658 -0.35083 0)
(0.119218 -0.366824 0)
(0.0839051 -0.3774 0)
(0.0518402 -0.384063 0)
(0.0228869 -0.387645 0)
(-0.0043173 0.000123874 0)
(-0.00483635 0.0012181 0)
(-0.00574738 0.0024072 0)
(-0.00710211 0.00391726 0)
(-0.00875957 0.00593858 0)
(-0.0105667 0.00871494 0)
(-0.0123022 0.0124657 0)
(-0.0137048 0.0175315 0)
(-0.0143628 0.0243553 0)
(-0.0136113 0.0335492 0)
(-0.0101248 0.0458003 0)
(-0.00151734 0.0611642 0)
(0.0152652 0.0778349 0)
(0.041937 0.0913328 0)
(0.0763597 0.096659 0)
(0.11438 0.0925258 0)
(0.155069 0.0794083 0)
(0.197993 0.0535462 0)
(0.236367 0.0105019 0)
(0.260021 -0.046547 0)
(0.264251 -0.107826 0)
(0.251537 -0.164473 0)
(0.227324 -0.211937 0)
(0.196823 -0.249152 0)
(0.163926 -0.276969 0)
(0.131103 -0.297024 0)
(0.0997271 -0.311058 0)
(0.0704688 -0.320603 0)
(0.0436105 -0.326839 0)
(0.0192008 -0.330339 0)
(-0.0041716 0.000140001 0)
(-0.00468215 0.00130607 0)
(-0.00555053 0.00257873 0)
(-0.00682037 0.00416379 0)
(-0.00834419 0.00624919 0)
(-0.00993548 0.00905857 0)
(-0.0113481 0.0127903 0)
(-0.0122653 0.0177379 0)
(-0.0122187 0.0242598 0)
(-0.0104581 0.0327895 0)
(-0.00567476 0.0436242 0)
(0.00411911 0.0563053 0)
(0.020987 0.0687999 0)
(0.0455104 0.0774534 0)
(0.0757019 0.0787959 0)
(0.108538 0.0715394 0)
(0.142142 0.0552338 0)
(0.17412 0.0282719 0)
(0.199531 -0.00978304 0)
(0.213257 -0.0553669 0)
(0.213555 -0.102401 0)
(0.202304 -0.14565 0)
(0.182995 -0.182266 0)
(0.159052 -0.211486 0)
(0.133136 -0.233775 0)
(0.107033 -0.250165 0)
(0.0818219 -0.261832 0)
(0.0580826 -0.269902 0)
(0.0360811 -0.275303 0)
(0.0158869 -0.278424 0)
(-0.00399894 0.000154908 0)
(-0.00450394 0.00139767 0)
(-0.00532346 0.00275285 0)
(-0.00650012 0.00440997 0)
(-0.00787859 0.00655069 0)
(-0.00924399 0.00937063 0)
(-0.0103263 0.0130432 0)
(-0.0107652 0.0178028 0)
(-0.0100498 0.0239097 0)
(-0.00740008 0.0316027 0)
(-0.00162137 0.0408417 0)
(0.00882698 0.0508323 0)
(0.0251591 0.059562 0)
(0.0472435 0.0641578 0)
(0.0732334 0.0621819 0)
(0.100615 0.0525749 0)
(0.127141 0.0349987 0)
(0.150198 0.00934137 0)
(0.166569 -0.0232155 0)
(0.173834 -0.0595555 0)
(0.171658 -0.0957881 0)
(0.161568 -0.12878 0)
(0.145911 -0.156811 0)
(0.126967 -0.179406 0)
(0.106562 -0.196861 0)
(0.0859758 -0.209856 0)
(0.0660131 -0.219184 0)
(0.0471061 -0.22561 0)
(0.0294157 -0.229757 0)
(0.0129661 -0.231984 0)
(-0.00379666 0.000168813 0)
(-0.00429753 0.00149131 0)
(-0.00506213 0.00292761 0)
(-0.00613815 0.00465282 0)
(-0.00736158 0.00683699 0)
(-0.00849588 0.00964281 0)
(-0.00924926 0.0132115 0)
(-0.00923246 0.01771 0)
(-0.00791308 0.0232908 0)
(-0.0045365 0.0300022 0)
(0.00190953 0.037543 0)
(0.012508 0.044941 0)
(0.0278091 0.0503733 0)
(0.0472428 0.0516624 0)
(0.0690856 0.0471402 0)
(0.0911504 0.0361332 0)
(0.111292 0.0187097 0)
(0.12736 -0.00442029 0)
(0.137449 -0.0316197 0)
(0.140564 -0.0604316 0)
(0.136991 -0.088335 0)
(0.127981 -0.113443 0)
(0.115167 -0.134749 0)
(0.100098 -0.152 0)
(0.0840239 -0.165419 0)
(0.0678315 -0.175463 0)
(0.0520927 -0.18265 0)
(0.0371354 -0.18745 0)
(0.0231222 -0.190257 0)
(0.0101305 -0.191495 0)
(-0.00356142 0.00018177 0)
(-0.00405942 0.00158596 0)
(-0.00476317 0.00310089 0)
(-0.0057321 0.00488893 0)
(-0.0067939 0.00710172 0)
(-0.00769744 0.00986641 0)
(-0.00813445 0.0132845 0)
(-0.00770254 0.0174494 0)
(-0.0058739 0.0224034 0)
(-0.00196697 0.0280268 0)
(0.00481157 0.0338465 0)
(0.0151115 0.0388408 0)
(0.0290056 0.0414813 0)
(0.045676 0.040191 0)
(0.0635426 0.0339182 0)
(0.0807406 0.0224008 0)
(0.0954886 0.00607014 0)
(0.10626 -0.0140321 0)
(0.112038 -0.0363333 0)
(0.112566 -0.0590069 0)
(0.108356 -0.0804232 0)
(0.100414 -0.0994511 0)
(0.0899003 -0.115521 0)
(0.07788 -0.128527 0)
(0.0652077 -0.138645 0)
(0.0525034 -0.146192 0)
(0.0401834 -0.151528 0)
(0.028511 -0.154979 0)
(0.017646 -0.156849 0)
(0.00767039 -0.157548 0)
(-0.0032897 0.000194033 0)
(-0.00378596 0.00168023 0)
(-0.00442321 0.00327052 0)
(-0.00528007 0.00511394 0)
(-0.00617724 0.00733845 0)
(-0.0068572 0.0100341 0)
(-0.00700347 0.0132553 0)
(-0.00621655 0.0170198 0)
(-0.00400008 0.0212654 0)
(0.000215974 0.0257381 0)
(0.00699902 0.0298874 0)
(0.0166311 0.0327438 0)
(0.0288617 0.0331131 0)
(0.042772 0.0299333 0)
(0.0569675 0.0226456 0)
(0.0699359 0.0113297 0)
(0.0803413 -0.00337028 0)
(0.0872211 -0.0203771 0)
(0.0901174 -0.0383788 0)
(0.089132 -0.0560727 0)
(0.0848118 -0.0724176 0)
(0.0779462 -0.0867458 0)
(0.0693688 -0.0987565 0)
(0.0598197 -0.108436 0)
(0.0498941 -0.115939 0)
(0.0400303 -0.121508 0)
(0.0305296 -0.125405 0)
(0.0215852 -0.127879 0)
(0.0133111 -0.129174 0)
(0.00575262 -0.129623 0)
(-0.00297771 0.000205222 0)
(-0.00347344 0.00177224 0)
(-0.00403921 0.00343347 0)
(-0.00478051 0.00532343 0)
(-0.00551485 0.00754231 0)
(-0.00598654 0.0101413 0)
(-0.0058816 0.0131229 0)
(-0.00481878 0.0164314 0)
(-0.00235839 0.0199143 0)
(0.00194445 0.0232388 0)
(0.00842566 0.0258252 0)
(0.0171031 0.0268573 0)
(0.0275307 0.0254683 0)
(0.0387993 0.0210222 0)
(0.0497387 0.0133349 0)
(0.0591936 0.00271712 0)
(0.0662511 -0.0101197 0)
(0.0703673 -0.0242157 0)
(0.0714199 -0.0385593 0)
(0.0696574 -0.0522558 0)
(0.0655802 -0.0646528 0)
(0.0597957 -0.0753713 0)
(0.0529032 -0.084273 0)
(0.0454178 -0.0914004 0)
(0.0377491 -0.0968992 0)
(0.030198 -0.100967 0)
(0.0229722 -0.103808 0)
(0.0162032 -0.105608 0)
(0.00996682 -0.106544 0)
(0.00428849 -0.106859 0)
(-0.00262162 0.000215259 0)
(-0.00311807 0.00186009 0)
(-0.00360835 0.00358663 0)
(-0.0042326 0.00551299 0)
(-0.00481121 0.00770948 0)
(-0.00509875 0.0101869 0)
(-0.00479523 0.0128939 0)
(-0.00355343 0.0157082 0)
(-0.00100955 0.0184093 0)
(0.00315449 0.0206272 0)
(0.00907922 0.0218247 0)
(0.0166025 0.0213693 0)
(0.0251957 0.0186991 0)
(0.0340366 0.013515 0)
(0.0421973 0.00589199 0)
(0.0488509 -0.00373973 0)
(0.0534261 -0.0146986 0)
(0.0556657 -0.0262053 0)
(0.0556223 -0.0375217 0)
(0.0535818 -0.0480555 0)
(0.0499645 -0.0574144 0)
(0.0452281 -0.0653991 0)
(0.0398011 -0.0719677 0)
(0.03404 -0.0771908 0)
(0.0282225 -0.0811987 0)
(0.0225461 -0.0841485 0)
(0.0171414 -0.086198 0)
(0.0120887 -0.0874918 0)
(0.00743334 -0.0881653 0)
(0.0031902 -0.0883932 0)
(-0.00221798 0.000224327 0)
(-0.00271632 0.0019422 0)
(-0.00312788 0.00372645 0)
(-0.00363617 0.00567889 0)
(-0.00407134 0.0078382 0)
(-0.0042073 0.0101745 0)
(-0.00377013 0.0125843 0)
(-0.00246119 0.0148908 0)
(-1.16471e-06 0.0168263 0)
(0.00381633 0.0180321 0)
(0.00898201 0.0180495 0)
(0.015236 0.016442 0)
(0.022053 0.0129087 0)
(0.0287449 0.00739897 0)
(0.034618 0.000145321 0)
(0.039124 -0.00838371 0)
(0.0419338 -0.0176011 0)
(0.0429688 -0.0269063 0)
(0.0423566 -0.0357864 0)
(0.0403646 -0.0438653 0)
(0.0373227 -0.0509213 0)
(0.0335643 -0.0568669 0)
(0.0293883 -0.061715 0)
(0.025036 -0.0655452 0)
(0.020693 -0.0684693 0)
(0.0164903 -0.0706108 0)
(0.0125137 -0.0720871 0)
(0.008813 -0.0729996 0)
(0.00541283 -0.0734437 0)
(0.00231614 -0.0735619 0)
(-0.00176379 0.000232195 0)
(-0.00226473 0.0020164 0)
(-0.0025954 0.00384976 0)
(-0.00299091 0.00581832 0)
(-0.00329968 0.00792943 0)
(-0.00332409 0.0101143 0)
(-0.00282868 0.0122226 0)
(-0.0015729 0.0140359 0)
(0.00064401 0.0152695 0)
(0.0039276 0.0155893 0)
(0.00818496 0.0146545 0)
(0.0131259 0.012206 0)
(0.0182881 0.00814947 0)
(0.0231377 0.00260286 0)
(0.027191 -0.00411911 0)
(0.0301046 -0.0115718 0)
(0.0317176 -0.0192744 0)
(0.032042 -0.0267866 0)
(0.0312223 -0.033766 0)
(0.0294788 -0.0399856 0)
(0.0270576 -0.0453322 0)
(0.0241931 -0.0497832 0)
(0.0210869 -0.0533788 0)
(0.0178977 -0.0561994 0)
(0.0147453 -0.0583416 0)
(0.0117142 -0.0599045 0)
(0.00886001 -0.0609804 0)
(0.00621619 -0.0616484 0)
(0.00380141 -0.0619811 0)
(0.00161804 -0.0620768 0)
(-0.00125655 0.000238496 0)
(-0.0017603 0.00207931 0)
(-0.00200859 0.0039527 0)
(-0.00229633 0.00592856 0)
(-0.00249917 0.00798718 0)
(-0.00245734 0.0100232 0)
(-0.00198501 0.0118486 0)
(-0.000903931 0.0132167 0)
(0.00091847 0.0138432 0)
(0.00351377 0.0134426 0)
(0.00676126 0.0117853 0)
(0.0103968 0.00876471 0)
(0.014058 0.00443682 0)
(0.0173629 -0.000977465 0)
(0.0200036 -0.00713286 0)
(0.0217788 -0.0136366 0)
(0.0226255 -0.0201083 0)
(0.0225926 -0.0262336 0)
(0.0218068 -0.0317918 0)
(0.0204328 -0.0366546 0)
(0.0186416 -0.040776 0)
(0.0165908 -0.0441697 0)
(0.0144131 -0.0468877 0)
(0.0122108 -0.0490052 0)
(0.0100573 -0.0506048 0)
(0.00800084 -0.0517688 0)
(0.00607125 -0.0525723 0)
(0.00428243 -0.0530763 0)
(0.00263623 -0.0533329 0)
(0.00112855 -0.0534105 0)
(-0.000694649 0.000242796 0)
(-0.00120052 0.00212818 0)
(-0.00136513 0.00403139 0)
(-0.00155071 0.00600866 0)
(-0.00166884 0.00801837 0)
(-0.00160718 0.0099251 0)
(-0.00123859 0.0115138 0)
(-0.000446722 0.0125206 0)
(0.00084313 0.0126733 0)
(0.00262748 0.0117382 0)
(0.0047974 0.00958034 0)
(0.00715821 0.00620488 0)
(0.00946762 0.00176824 0)
(0.0114879 -0.0034508 0)
(0.0130371 -0.00911209 0)
(0.0140154 -0.0148715 0)
(0.0144067 -0.0204302 0)
(0.0142596 -0.0255636 0)
(0.0136637 -0.0301311 0)
(0.012726 -0.034066 0)
(0.0115529 -0.0373628 0)
(0.0102397 -0.0400569 0)
(0.00886445 -0.0422075 0)
(0.00748521 -0.0438837 0)
(0.00614312 -0.0451511 0)
(0.00486636 -0.0460677 0)
(0.00367427 -0.0466825 0)
(0.00257744 -0.0470344 0)
(0.001578 -0.0471629 0)
(0.000672175 -0.0471497 0)
(-9.78762e-05 0.000244695 0)
(-0.000583926 0.00215979 0)
(-0.000662854 0.00408128 0)
(-0.000750175 0.00605745 0)
(-0.000801625 0.00803167 0)
(-0.000761388 0.00984912 0)
(-0.000567243 0.0112779 0)
(-0.000164487 0.0120465 0)
(0.000478274 0.0118962 0)
(0.00135011 0.0106327 0)
(0.00238843 0.00818512 0)
(0.00349314 0.00462319 0)
(0.00455927 0.000155015 0)
(0.00547435 -0.00489808 0)
(0.00615314 -0.0102217 0)
(0.0065624 -0.0155059 0)
(0.00670133 -0.0205023 0)
(0.00659716 -0.0250392 0)
(0.00629411 -0.029021 0)
(0.00584255 -0.0324145 0)
(0.0052905 -0.0352335 0)
(0.00467847 -0.0375206 0)
(0.0040391 -0.0393337 0)
(0.00339853 -0.0407387 0)
(0.00277736 -0.0417991 0)
(0.00218883 -0.0425725 0)
(0.00164069 -0.043107 0)
(0.00113902 -0.0434413 0)
(0.000688679 -0.0436077 0)
(0.000289608 -0.0436518 0)
(0.0230953 -0.975016 0)
(0.228035 -0.959191 0)
(0.388594 -0.940347 0)
(0.465501 -0.926534 0)
(0.489982 -0.891541 0)
(0.441015 -0.806284 0)
(0.286343 -0.626723 0)
(0.371613 -0.32886 0)
(0.978391 -0.0682164 0)
(0.64724 0.499799 0)
(0.363207 0.486322 0)
(0.168784 0.387527 0)
(0.0554981 0.279704 0)
(0.0199636 0.194468 0)
(0.0158363 0.144397 0)
(0.00489587 0.102144 0)
(0.00255309 0.0767057 0)
(0.00153181 0.0571524 0)
(0.00105902 0.0423178 0)
(0.000796704 0.0312958 0)
(0.000640103 0.0229312 0)
(0.000530725 0.0164948 0)
(0.000441349 0.0115489 0)
(0.000370323 0.00780294 0)
(0.000308518 0.00504658 0)
(0.000253407 0.00310695 0)
(0.000204062 0.00181343 0)
(0.000160069 0.00100427 0)
(0.000124723 0.000537177 0)
(0.000103106 0.000304348 0)
(0.0206604 -1.11907 0)
(0.205907 -1.07583 0)
(0.308605 -0.994243 0)
(0.35603 -0.934137 0)
(0.30362 -0.867518 0)
(0.174932 -0.740567 0)
(0.10556 -0.619748 0)
(0.318778 -0.434814 0)
(0.663907 0.152158 0)
(0.529094 0.513561 0)
(0.337633 0.552228 0)
(0.100152 0.421048 0)
(-0.0080972 0.292977 0)
(0.0150717 0.192938 0)
(0.100085 0.137412 0)
(0.0768776 0.0996965 0)
(0.119404 0.0800374 0)
(0.0520243 0.0598558 0)
(0.038194 0.0446425 0)
(0.0276618 0.0332982 0)
(0.0220361 0.0242697 0)
(0.0183204 0.0173411 0)
(0.0146699 0.0120837 0)
(0.0115125 0.00810773 0)
(0.00906454 0.00521672 0)
(0.00714013 0.00320689 0)
(0.00565281 0.00187607 0)
(0.00450752 0.00104301 0)
(0.00366319 0.000558264 0)
(0.00315982 0.000310498 0)
(0.00791939 -1.19713 0)
(0.0651585 -1.11276 0)
(0.0851572 -1.02977 0)
(0.0779177 -0.921182 0)
(0.0325523 -0.822895 0)
(-0.0320229 -0.7031 0)
(0.0460331 -0.665518 0)
(0.306775 -0.52345 0)
(0.411945 -0.0795618 0)
(0.529054 0.578651 0)
(0.320181 0.639035 0)
(-0.00432967 0.462263 0)
(0.415445 0.255261 0)
(0.510966 0.170476 0)
(1.74314 -0.0781821 0)
(1.78404 0.11747 0)
(0.497123 0.211961 0)
(0.157214 0.0690013 0)
(0.086543 0.047817 0)
(0.0574094 0.0347969 0)
(0.0420938 0.0251115 0)
(0.032107 0.0179582 0)
(0.0243719 0.012541 0)
(0.0186883 0.00840459 0)
(0.014441 0.00541274 0)
(0.0111439 0.00333914 0)
(0.00863689 0.00196623 0)
(0.00675568 0.00109784 0)
(0.00539647 0.000583026 0)
(0.00461096 0.000306552 0)
(-0.0109169 -1.19308 0)
(-0.0867392 -1.10719 0)
(-0.105262 -1.03853 0)
(-0.127619 -0.912368 0)
(-0.140092 -0.801249 0)
(-0.0943707 -0.729881 0)
(0.0486982 -0.737357 0)
(0.254522 -0.683232 0)
(0.663266 0.0557719 0)
(0.659372 0.660507 0)
(0.328385 0.737645 0)
(0.176749 0.379448 0)
(0.513129 0.172291 0)
(0.911613 0.0730546 0)
(1.68217 -0.400691 0)
(2.12759 0.362908 0)
(0.502596 0.34315 0)
(0.188457 0.0882315 0)
(0.102425 0.0538809 0)
(0.0667277 0.0374606 0)
(0.0480555 0.0265111 0)
(0.0362189 0.0188753 0)
(0.0273028 0.0131642 0)
(0.0208357 0.00879897 0)
(0.0160438 0.00567136 0)
(0.0123348 0.00351238 0)
(0.00952341 0.00208488 0)
(0.00743204 0.00117053 0)
(0.00590918 0.00061623 0)
(0.00504334 0.000303729 0)
(-0.0123269 -1.10953 0)
(-0.12056 -1.06514 0)
(-0.180998 -1.00093 0)
(-0.202203 -0.908616 0)
(-0.179794 -0.819523 0)
(-0.0912704 -0.791189 0)
(0.0501059 -0.818143 0)
(0.301509 -0.830494 0)
(0.884928 -0.139542 0)
(0.666021 0.66906 0)
(0.317585 0.871528 0)
(0.434948 0.169312 0)
(0.631063 0.126838 0)
(0.643273 0.0180746 0)
(0.89723 -0.568951 0)
(1.24276 0.579021 0)
(0.404458 0.413082 0)
(0.187192 0.109671 0)
(0.103831 0.0609571 0)
(0.0677724 0.0405512 0)
(0.0486365 0.0281103 0)
(0.0366186 0.019904 0)
(0.0277143 0.0138661 0)
(0.0212287 0.00925202 0)
(0.0163945 0.00597208 0)
(0.0126302 0.00371337 0)
(0.00975269 0.0022229 0)
(0.00761062 0.00125775 0)
(0.00602676 0.000659806 0)
(0.0051373 0.000307544 0)
(-0.0113017 -0.999504 0)
(-0.111659 -0.993943 0)
(-0.173274 -0.968557 0)
(-0.189702 -0.911629 0)
(-0.162745 -0.854469 0)
(-0.0898848 -0.851337 0)
(0.0314788 -0.904239 0)
(0.281006 -0.993263 0)
(0.914576 -0.786142 0)
(0.638787 0.672122 0)
(0.456592 0.949485 0)
(0.216826 0.345685 0)
(0.502786 0.141826 0)
(0.439723 0.00748051 0)
(0.20519 -0.549992 0)
(0.133961 0.672665 0)
(0.288463 0.426109 0)
(0.17309 0.12955 0)
(0.100466 0.0682836 0)
(0.0663983 0.0438251 0)
(0.0477508 0.0298136 0)
(0.0360395 0.0209811 0)
(0.0274959 0.0145977 0)
(0.0212101 0.00973577 0)
(0.0164597 0.00629978 0)
(0.0127301 0.00393395 0)
(0.00984178 0.00237547 0)
(0.00768136 0.00135786 0)
(0.0060642 0.000714901 0)
(0.00516127 0.000320156 0)
(-0.00686262 -0.906543 0)
(-0.075311 -0.927955 0)
(-0.125023 -0.93571 0)
(-0.152407 -0.910298 0)
(-0.144487 -0.880512 0)
(-0.103834 -0.897565 0)
(-0.0202117 -0.98418 0)
(0.193095 -1.20455 0)
(0.62609 -1.26562 0)
(0.714672 0.756216 0)
(0.615695 0.774134 0)
(0.421492 0.480933 0)
(0.459204 0.154702 0)
(0.339315 0.0349456 0)
(-0.113187 -0.363925 0)
(-0.410179 0.590878 0)
(0.188927 0.406068 0)
(0.153145 0.14566 0)
(0.0950308 0.0754235 0)
(0.0641282 0.0471837 0)
(0.0464301 0.0315968 0)
(0.0351963 0.0220926 0)
(0.0271024 0.0153475 0)
(0.0210734 0.010247 0)
(0.0164362 0.00665387 0)
(0.0127694 0.00417564 0)
(0.0098903 0.00254404 0)
(0.00772094 0.00147143 0)
(0.00608864 0.000782235 0)
(0.00517544 0.000342095 0)
(-0.00245028 -0.849713 0)
(-0.0401431 -0.878116 0)
(-0.0835389 -0.898054 0)
(-0.122585 -0.893536 0)
(-0.138965 -0.887588 0)
(-0.134543 -0.921092 0)
(-0.109852 -1.03235 0)
(-0.0442137 -1.34412 0)
(0.135004 -1.47812 0)
(0.680898 1.15057 0)
(0.751614 0.902777 0)
(0.810804 0.207077 0)
(0.482458 0.191246 0)
(0.270515 0.0938721 0)
(-0.149099 -0.156314 0)
(-0.364325 0.440697 0)
(0.113103 0.370736 0)
(0.130125 0.156907 0)
(0.0880165 0.0820161 0)
(0.0611669 0.0505351 0)
(0.0448077 0.0334368 0)
(0.0341866 0.0232308 0)
(0.0265914 0.0161108 0)
(0.0208501 0.0107829 0)
(0.0163467 0.00703287 0)
(0.0127614 0.00443915 0)
(0.00990767 0.00272949 0)
(0.00773665 0.00159833 0)
(0.00610531 0.000861238 0)
(0.0051849 0.000372683 0)
(-0.00034052 -0.822696 0)
(-0.0232167 -0.838994 0)
(-0.0645141 -0.853888 0)
(-0.110045 -0.861022 0)
(-0.146557 -0.872467 0)
(-0.177271 -0.913783 0)
(-0.218839 -1.0225 0)
(-0.333187 -1.29581 0)
(-0.845561 -1.47923 0)
(-0.86775 0.529657 0)
(1.21887 1.04495 0)
(0.905015 0.421154 0)
(0.544631 0.239669 0)
(0.203039 0.172726 0)
(-0.126364 -0.00467241 0)
(-0.257457 0.340467 0)
(0.05905 0.330082 0)
(0.105885 0.162976 0)
(0.0795879 0.0877105 0)
(0.0575105 0.0537667 0)
(0.0428648 0.0352988 0)
(0.0330101 0.0243842 0)
(0.0259625 0.0168841 0)
(0.0205378 0.0113394 0)
(0.016195 0.00743458 0)
(0.0127065 0.00472455 0)
(0.00989394 0.00293213 0)
(0.00772963 0.00173837 0)
(0.00611146 0.000950914 0)
(0.00518711 0.000410865 0)
(-0.00122976 -0.800552 0)
(-0.0278822 -0.800769 0)
(-0.0677597 -0.805893 0)
(-0.113903 -0.817719 0)
(-0.163158 -0.835736 0)
(-0.221252 -0.87337 0)
(-0.312832 -0.952618 0)
(-0.520873 -1.10176 0)
(-1.16825 -1.1661 0)
(-0.506741 0.806445 0)
(0.44726 0.255493 0)
(1.43116 0.695527 0)
(0.678635 0.529305 0)
(0.117804 0.254822 0)
(-0.110448 0.09494 0)
(-0.186442 0.281773 0)
(0.021994 0.29027 0)
(0.081964 0.164161 0)
(0.0699707 0.0921834 0)
(0.0531621 0.0567431 0)
(0.0405759 0.0371328 0)
(0.0316584 0.0255359 0)
(0.0252086 0.017662 0)
(0.0201321 0.011911 0)
(0.015983 0.00785607 0)
(0.0126051 0.00503125 0)
(0.00984891 0.00315163 0)
(0.00770138 0.00189139 0)
(0.00610455 0.00105009 0)
(0.00517978 0.000455444 0)
(-0.00342831 -0.759194 0)
(-0.040349 -0.755898 0)
(-0.0788066 -0.757473 0)
(-0.124563 -0.766964 0)
(-0.180978 -0.781571 0)
(-0.254703 -0.806175 0)
(-0.367644 -0.845456 0)
(-0.575302 -0.883453 0)
(-0.971215 -0.765751 0)
(-0.930254 -0.0952951 0)
(-0.539261 -0.108648 0)
(0.306305 0.741843 0)
(-0.101672 0.838025 0)
(0.0112721 0.307329 0)
(-0.107563 0.156448 0)
(-0.142755 0.245792 0)
(-0.00306679 0.254395 0)
(0.0595166 0.161174 0)
(0.0594769 0.0951787 0)
(0.0481584 0.0593184 0)
(0.0379261 0.0388759 0)
(0.0301203 0.0266627 0)
(0.0243222 0.0184356 0)
(0.0196307 0.0124908 0)
(0.015711 0.00829328 0)
(0.0124585 0.00535747 0)
(0.00977304 0.00338686 0)
(0.00765327 0.00205678 0)
(0.00608306 0.00115733 0)
(0.00516173 0.000504963 0)
(-0.00383353 -0.700933 0)
(-0.04224 -0.703059 0)
(-0.0838397 -0.70519 0)
(-0.132447 -0.708786 0)
(-0.19241 -0.71521 0)
(-0.270545 -0.723681 0)
(-0.381192 -0.728913 0)
(-0.547801 -0.705131 0)
(-0.766403 -0.565847 0)
(-0.824386 -0.274992 0)
(-0.840217 -0.161916 0)
(-1.06687 0.370482 0)
(-0.301889 0.600315 0)
(-0.0888804 0.312248 0)
(-0.115248 0.18823 0)
(-0.118241 0.221105 0)
(-0.0203474 0.223397 0)
(0.0392507 0.154924 0)
(0.0484706 0.0965347 0)
(0.0425688 0.0613433 0)
(0.034913 0.040451 0)
(0.0283828 0.0277329 0)
(0.0232968 0.0191919 0)
(0.019032 0.0130706 0)
(0.0153752 0.00874099 0)
(0.0122663 0.00570022 0)
(0.00966531 0.00363645 0)
(0.00758482 0.00223389 0)
(0.00604534 0.00127166 0)
(0.00513164 0.000558352 0)
(-0.00382986 -0.643402 0)
(-0.0411645 -0.643527 0)
(-0.0843259 -0.643509 0)
(-0.134207 -0.643276 0)
(-0.193868 -0.641965 0)
(-0.268383 -0.636944 0)
(-0.365037 -0.620596 0)
(-0.489544 -0.573096 0)
(-0.62377 -0.457161 0)
(-0.696692 -0.276054 0)
(-0.738863 -0.104645 0)
(-0.732545 0.230531 0)
(-0.366419 0.402356 0)
(-0.161602 0.28195 0)
(-0.128242 0.196566 0)
(-0.106619 0.200977 0)
(-0.0329184 0.196837 0)
(0.0214806 0.146309 0)
(0.0373364 0.0961944 0)
(0.0365001 0.0626794 0)
(0.0315517 0.041773 0)
(0.0264368 0.0287089 0)
(0.0221283 0.0199149 0)
(0.0183347 0.0136431 0)
(0.01497 0.00919508 0)
(0.0120269 0.00605695 0)
(0.00952403 0.00389992 0)
(0.0074948 0.00242257 0)
(0.00599047 0.00139305 0)
(0.00508808 0.00061532 0)
(-0.00412055 -0.580057 0)
(-0.0409018 -0.579763 0)
(-0.0824101 -0.578022 0)
(-0.130014 -0.574175 0)
(-0.185743 -0.566986 0)
(-0.252277 -0.553302 0)
(-0.332296 -0.526517 0)
(-0.425012 -0.474334 0)
(-0.517278 -0.380773 0)
(-0.581309 -0.246062 0)
(-0.61083 -0.0844477 0)
(-0.56311 0.131377 0)
(-0.364608 0.263402 0)
(-0.203191 0.234691 0)
(-0.14111 0.187552 0)
(-0.102867 0.18167 0)
(-0.0426917 0.173675 0)
(0.00623027 0.136087 0)
(0.0264397 0.0942008 0)
(0.0300929 0.0632118 0)
(0.0278759 0.0427551 0)
(0.0242809 0.0295486 0)
(0.0208149 0.020586 0)
(0.0175359 0.0141998 0)
(0.01449 0.00965107 0)
(0.0117382 0.00642434 0)
(0.00934784 0.004176 0)
(0.00738219 0.00262187 0)
(0.00591819 0.00152099 0)
(0.00503015 0.000675157 0)
(-0.00408223 -0.514977 0)
(-0.0384465 -0.514078 0)
(-0.0769664 -0.510966 0)
(-0.120575 -0.504815 0)
(-0.170373 -0.49421 0)
(-0.227473 -0.476375 0)
(-0.292297 -0.446486 0)
(-0.362509 -0.397277 0)
(-0.429767 -0.320851 0)
(-0.479474 -0.2151 0)
(-0.497349 -0.0836671 0)
(-0.455687 0.065467 0)
(-0.337799 0.168769 0)
(-0.219325 0.184065 0)
(-0.150041 0.16726 0)
(-0.103033 0.161499 0)
(-0.0506386 0.152815 0)
(-0.00663689 0.124822 0)
(0.0161057 0.0906769 0)
(0.023517 0.0628564 0)
(0.0239394 0.0433146 0)
(0.0219227 0.0302068 0)
(0.0193558 0.0211825 0)
(0.0166312 0.0147291 0)
(0.0139315 0.0101023 0)
(0.0113968 0.00679733 0)
(0.00913506 0.00446159 0)
(0.00724582 0.00282954 0)
(0.00582777 0.00165416 0)
(0.00495758 0.000736578 0)
(-0.00386054 -0.450387 0)
(-0.0347001 -0.449125 0)
(-0.0691323 -0.445224 0)
(-0.107639 -0.437971 0)
(-0.150686 -0.426089 0)
(-0.198505 -0.407381 0)
(-0.250596 -0.37851 0)
(-0.304593 -0.335084 0)
(-0.354919 -0.27267 0)
(-0.392205 -0.18937 0)
(-0.404283 -0.0877576 0)
(-0.375648 0.0205461 0)
(-0.302554 0.103492 0)
(-0.217939 0.137308 0)
(-0.153332 0.141097 0)
(-0.104201 0.140169 0)
(-0.0570634 0.133377 0)
(-0.0172997 0.112922 0)
(0.00660624 0.0858013 0)
(0.0169634 0.0615703 0)
(0.0198173 0.043381 0)
(0.0193817 0.0306366 0)
(0.0177558 0.0216777 0)
(0.0156206 0.0152163 0)
(0.0132956 0.0105407 0)
(0.0110014 0.00717023 0)
(0.00888552 0.0047532 0)
(0.00708531 0.00304351 0)
(0.00571922 0.00179171 0)
(0.00487125 0.000799139 0)
(-0.00352041 -0.388588 0)
(-0.0303032 -0.387151 0)
(-0.0600681 -0.382965 0)
(-0.0930399 -0.375557 0)
(-0.129312 -0.363917 0)
(-0.168684 -0.346359 0)
(-0.210365 -0.320574 0)
(-0.252322 -0.283812 0)
(-0.290622 -0.233454 0)
(-0.318907 -0.168405 0)
(-0.328725 -0.0909398 0)
(-0.311311 -0.00980332 0)
(-0.265367 0.0576768 0)
(-0.205779 0.0972311 0)
(-0.15095 0.113226 0)
(-0.104455 0.11819 0)
(-0.0618976 0.11483 0)
(-0.0258908 0.100628 0)
(-0.00184888 0.0797775 0)
(0.0106258 0.0593578 0)
(0.015603 0.042901 0)
(0.0166916 0.0307911 0)
(0.0160269 0.0220408 0)
(0.0145087 0.0156428 0)
(0.0125851 0.0109558 0)
(0.0105517 0.00753715 0)
(0.00859873 0.00504804 0)
(0.00689928 0.00326252 0)
(0.00559165 0.00193348 0)
(0.00477054 0.000863496 0)
(-0.00311974 -0.331268 0)
(-0.0257482 -0.329783 0)
(-0.0508034 -0.32568 0)
(-0.0783394 -0.318771 0)
(-0.108264 -0.308293 0)
(-0.14023 -0.292941 0)
(-0.17344 -0.271087 0)
(-0.206261 -0.24096 0)
(-0.235876 -0.200979 0)
(-0.257964 -0.150621 0)
(-0.267001 -0.0916459 0)
(-0.257737 -0.0297216 0)
(-0.229068 0.0252997 0)
(-0.187655 0.0643792 0)
(-0.143805 0.0864463 0)
(-0.102771 0.0964369 0)
(-0.064944 0.0970032 0)
(-0.0325071 0.0881622 0)
(-0.00911847 0.072865 0)
(0.00469706 0.0562673 0)
(0.0114105 0.0418407 0)
(0.0139038 0.0306258 0)
(0.0141907 0.0222401 0)
(0.013305 0.0159887 0)
(0.0118032 0.0113359 0)
(0.0100464 0.00789182 0)
(0.00827185 0.00534359 0)
(0.00668368 0.00348536 0)
(0.0054414 0.0020792 0)
(0.00465142 0.000930719 0)
(-0.00269936 -0.279259 0)
(-0.0215199 -0.27789 0)
(-0.0421935 -0.274223 0)
(-0.0646892 -0.268243 0)
(-0.0889017 -0.259384 0)
(-0.114501 -0.246636 0)
(-0.14081 -0.228827 0)
(-0.166574 -0.204784 0)
(-0.189789 -0.173532 0)
(-0.207531 -0.134823 0)
(-0.216199 -0.0898567 0)
(-0.212428 -0.0421258 0)
(-0.195025 0.00257166 0)
(-0.166749 0.0383062 0)
(-0.133161 0.0623928 0)
(-0.098823 0.0758082 0)
(-0.0660512 0.0799976 0)
(-0.0372055 0.0757396 0)
(-0.0150743 0.0652804 0)
(-0.000641183 0.0523866 0)
(0.00736752 0.0401939 0)
(0.0110851 0.0301071 0)
(0.0122772 0.0222471 0)
(0.0120213 0.0162352 0)
(0.0109514 0.0116699 0)
(0.00948307 0.00822848 0)
(0.0078998 0.0056374 0)
(0.00643269 0.00371102 0)
(0.0052632 0.00222833 0)
(0.00450883 0.00100096 0)
(-0.00231427 -0.23254 0)
(-0.0177628 -0.231597 0)
(-0.0345405 -0.228903 0)
(-0.052565 -0.224223 0)
(-0.0717985 -0.217122 0)
(-0.0920226 -0.206919 0)
(-0.112725 -0.192819 0)
(-0.132976 -0.174033 0)
(-0.151358 -0.149926 0)
(-0.165884 -0.120349 0)
(-0.174161 -0.0860447 0)
(-0.173901 -0.0491126 0)
(-0.163914 -0.0130474 0)
(-0.14509 0.0181964 0)
(-0.120276 0.0418236 0)
(-0.0927639 0.0570205 0)
(-0.065208 0.0640618 0)
(-0.0400469 0.0635953 0)
(-0.019651 0.0572799 0)
(-0.00524722 0.0478641 0)
(0.00360378 0.0379854 0)
(0.00831222 0.0292164 0)
(0.0103238 0.022038 0)
(0.0106735 0.016364 0)
(0.0100341 0.0119454 0)
(0.00886143 0.00854037 0)
(0.00747987 0.00592555 0)
(0.00614339 0.00393799 0)
(0.005054 0.00238042 0)
(0.00434045 0.0010736 0)
(-0.0018931 -0.191747 0)
(-0.0140556 -0.191289 0)
(-0.0273172 -0.189688 0)
(-0.0415879 -0.186392 0)
(-0.0567786 -0.180999 0)
(-0.0726931 -0.1731 0)
(-0.0889537 -0.162194 0)
(-0.104902 -0.147766 0)
(-0.119557 -0.12938 0)
(-0.131564 -0.106911 0)
(-0.139302 -0.0807764 0)
(-0.141151 -0.0522152 0)
(-0.136024 -0.023358 0)
(-0.123945 0.00315104 0)
(-0.106235 0.0249293 0)
(-0.0850111 0.0405413 0)
(-0.0625553 0.0494862 0)
(-0.0411268 0.0519826 0)
(-0.0228249 0.0491189 0)
(-0.00899025 0.0428432 0)
(0.000247716 0.0352693 0)
(0.00567178 0.0279545 0)
(0.00837798 0.0215966 0)
(0.00928451 0.0163593 0)
(0.00906037 0.0121512 0)
(0.00818439 0.00882042 0)
(0.0070112 0.00620277 0)
(0.00581393 0.00416331 0)
(0.00481153 0.00253411 0)
(0.00414438 0.00114752 0)
(-0.00149638 -0.157657 0)
(-0.0107792 -0.157428 0)
(-0.020986 -0.156459 0)
(-0.03207 -0.154192 0)
(-0.0439305 -0.150258 0)
(-0.0563837 -0.144353 0)
(-0.0691359 -0.136133 0)
(-0.0817149 -0.125244 0)
(-0.0934427 -0.111379 0)
(-0.103391 -0.0944236 0)
(-0.110442 -0.0745851 0)
(-0.113428 -0.0525772 0)
(-0.11142 -0.0296996 0)
(-0.104081 -0.00770584 0)
(-0.0918934 0.011553 0)
(-0.0760895 0.0265885 0)
(-0.0583596 0.0365205 0)
(-0.0405937 0.0411523 0)
(-0.0246206 0.0410521 0)
(-0.0117894 0.0375137 0)
(-0.00259772 0.0321501 0)
(0.00325412 0.0263452 0)
(0.00649529 0.0209185 0)
(0.00788372 0.0162101 0)
(0.00804379 0.0122766 0)
(0.00745656 0.00906085 0)
(0.00649368 0.00646367 0)
(0.00544202 0.00438399 0)
(0.00453292 0.00268741 0)
(0.00391762 0.00122198 0)
(-0.00117418 -0.129681 0)
(-0.00819092 -0.129538 0)
(-0.0159306 -0.128887 0)
(-0.0243797 -0.127288 0)
(-0.0334755 -0.124441 0)
(-0.0430864 -0.120104 0)
(-0.0529964 -0.114021 0)
(-0.0628642 -0.10593 0)
(-0.0722135 -0.0955993 0)
(-0.0804006 -0.0829092 0)
(-0.0866462 -0.0679374 0)
(-0.0901028 -0.0510764 0)
(-0.0900125 -0.0331104 0)
(-0.0859228 -0.0151842 0)
(-0.077883 0.00134066 0)
(-0.0665223 0.0151694 0)
(-0.0529631 0.0253215 0)
(-0.0386528 0.0313225 0)
(-0.0251116 0.0333192 0)
(-0.0136058 0.0320731 0)
(-0.00483528 0.0287311 0)
(0.00114735 0.024436 0)
(0.00473551 0.0200136 0)
(0.00650588 0.0159126 0)
(0.00700159 0.0123145 0)
(0.00668426 0.00925479 0)
(0.00592769 0.0067022 0)
(0.00502536 0.00459615 0)
(0.00421498 0.00283836 0)
(0.00365665 0.00129617 0)
(-0.000905995 -0.106894 0)
(-0.00616876 -0.106793 0)
(-0.0119863 -0.106324 0)
(-0.0183591 -0.105159 0)
(-0.025248 -0.103079 0)
(-0.032564 -0.0999085 0)
(-0.0401592 -0.0954544 0)
(-0.0477989 -0.0895128 0)
(-0.0551566 -0.0818915 0)
(-0.0617883 -0.0724677 0)
(-0.0671492 -0.0612389 0)
(-0.0706245 -0.0484019 0)
(-0.0716161 -0.0344159 0)
(-0.0696739 -0.0200132 0)
(-0.064642 -0.00615275 0)
(-0.0567703 0.00613734 0)
(-0.0467322 0.0159427 0)
(-0.0355504 0.022659 0)
(-0.0244169 0.0261364 0)
(-0.0144441 0.0267225 0)
(-0.00640143 0.0251536 0)
(-0.000573495 0.0222975 0)
(0.00315946 0.0189089 0)
(0.00518927 0.0154729 0)
(0.00595486 0.0122627 0)
(0.00587623 0.00939731 0)
(0.00531481 0.00691338 0)
(0.00456194 0.00479584 0)
(0.00385457 0.00298435 0)
(0.00335764 0.00136871 0)
(-0.000695137 -0.0884177 0)
(-0.00463079 -0.0883418 0)
(-0.00897577 -0.0879977 0)
(-0.0137306 -0.0871535 0)
(-0.018872 -0.0856513 0)
(-0.0243463 -0.0833561 0)
(-0.030063 -0.080118 0)
(-0.0358717 -0.0757789 0)
(-0.0415564 -0.070183 0)
(-0.0468148 -0.0632142 0)
(-0.0512681 -0.0548266 0)
(-0.0544732 -0.0450999 0)
(-0.0559713 -0.0342874 0)
(-0.0553665 -0.0228411 0)
(-0.0524289 -0.0114089 0)
(-0.0471896 -0.000761297 0)
(-0.040009 0.00833566 0)
(-0.0315496 0.0152569 0)
(-0.022691 0.0196792 0)
(-0.0143491 0.021651 0)
(-0.00726513 0.0215687 0)
(-0.00185312 0.0200326 0)
(0.00182401 0.0176517 0)
(0.0039729 0.0149091 0)
(0.00492598 0.0121247 0)
(0.00504285 0.00948607 0)
(0.00465774 0.00709303 0)
(0.00405024 0.00497918 0)
(0.00344862 0.00312228 0)
(0.00301661 0.00143792 0)
(-0.00051972 -0.0735621 0)
(-0.00339208 -0.0735311 0)
(-0.00656324 -0.073328 0)
(-0.0100376 -0.0727534 0)
(-0.0138059 -0.071683 0)
(-0.017837 -0.0700226 0)
(-0.022074 -0.0676653 0)
(-0.0264183 -0.0644926 0)
(-0.0307268 -0.0603808 0)
(-0.0347969 -0.0552264 0)
(-0.0383704 -0.0489643 0)
(-0.0411359 -0.0416048 0)
(-0.042755 -0.0332719 0)
(-0.0429072 -0.0242296 0)
(-0.0413571 -0.0149003 0)
(-0.0380309 -0.00582959 0)
(-0.0330807 0.00237301 0)
(-0.0269042 0.00914326 0)
(-0.020109 0.0140779 0)
(-0.013401 0.0170301 0)
(-0.00742942 0.0181345 0)
(-0.00264362 0.0177445 0)
(0.000776914 0.0163085 0)
(0.00289377 0.0142532 0)
(0.00393712 0.0119126 0)
(0.00419481 0.00952276 0)
(0.00395982 0.00723839 0)
(0.00348921 0.00514231 0)
(0.00299407 0.00324911 0)
(0.00262998 0.00150239 0)
(-0.000371272 -0.0620794 0)
(-0.00238766 -0.0620508 0)
(-0.00462718 -0.0618911 0)
(-0.00709832 -0.0614632 0)
(-0.00979347 -0.060679 0)
(-0.0126901 -0.0594667 0)
(-0.0157505 -0.0577432 0)
(-0.0189099 -0.0554145 0)
(-0.0220762 -0.0523803 0)
(-0.0251178 -0.0485481 0)
(-0.027865 -0.0438468 0)
(-0.0301063 -0.0382505 0)
(-0.0316007 -0.0318058 0)
(-0.0321052 -0.0246557 0)
(-0.0314152 -0.017062 0)
(-0.0294191 -0.0093984 0)
(-0.0261514 -0.00212316 0)
(-0.0218307 0.00428537 0)
(-0.0168445 0.00941451 0)
(-0.0117026 0.0130051 0)
(-0.0069266 0.0150045 0)
(-0.00293365 0.0155617 0)
(4.86609e-05 0.0149614 0)
(0.00198106 0.0135531 0)
(0.00300773 0.0116484 0)
(0.00334161 0.00951465 0)
(0.00322397 0.0073494 0)
(0.00287775 0.0052816 0)
(0.0024881 0.00336184 0)
(0.00219428 0.0015608 0)
(-0.000258437 -0.0534136 0)
(-0.00166209 -0.0533885 0)
(-0.00320297 -0.0532605 0)
(-0.00488228 -0.052932 0)
(-0.00670359 -0.0523417 0)
(-0.00866271 -0.0514366 0)
(-0.0107419 -0.0501514 0)
(-0.0129053 -0.0484093 0)
(-0.0150993 -0.0461269 0)
(-0.0172425 -0.0432238 0)
(-0.0192242 -0.0396298 0)
(-0.0209046 -0.0353018 0)
(-0.0221206 -0.0302417 0)
(-0.0227009 -0.0245162 0)
(-0.0224883 -0.0182799 0)
(-0.0213748 -0.0117802 0)
(-0.0193409 -0.00535254 0)
(-0.0164877 0.000613355 0)
(-0.013051 0.0057344 0)
(-0.00936583 0.00969772 0)
(-0.00581494 0.0123288 0)
(-0.0027374 0.0136208 0)
(-0.000354078 0.0137185 0)
(0.00125084 0.0128717 0)
(0.0021504 0.0113652 0)
(0.00248998 0.00947392 0)
(0.00245217 0.00742808 0)
(0.00221486 0.00539415 0)
(0.00192817 0.00345641 0)
(0.00170655 0.00161055 0)
(-0.000155775 -0.047127 0)
(-0.000994515 -0.0471478 0)
(-0.00192288 -0.0471255 0)
(-0.00294569 -0.0469335 0)
(-0.0040649 -0.046505 0)
(-0.00527658 -0.0458035 0)
(-0.00656851 -0.0447877 0)
(-0.00791827 -0.0434068 0)
(-0.00929496 -0.0416003 0)
(-0.0106528 -0.0393019 0)
(-0.0119281 -0.0364443 0)
(-0.0130382 -0.0329736 0)
(-0.0138842 -0.0288646 0)
(-0.0143584 -0.0241378 0)
(-0.0143571 -0.0188801 0)
(-0.0138 -0.0132546 0)
(-0.0126547 -0.0075073 0)
(-0.0109602 -0.00195313 0)
(-0.00884079 0.00306316 0)
(-0.00649676 0.00721446 0)
(-0.0041722 0.0102533 0)
(-0.00209879 0.012066 0)
(-0.000448124 0.0126884 0)
(0.00069856 0.0122861 0)
(0.00136524 0.0111056 0)
(0.00163977 0.00941924 0)
(0.00164323 0.00747795 0)
(0.00149868 0.00547753 0)
(0.00131195 0.00352925 0)
(0.00116439 0.00164923 0)
(-6.95402e-05 -0.0436507 0)
(-0.000434344 -0.043639 0)
(-0.000845669 -0.0435606 0)
(-0.0013088 -0.0433442 0)
(-0.001822 -0.0429502 0)
(-0.00237961 -0.0423462 0)
(-0.00297519 -0.0414915 0)
(-0.00359983 -0.0403359 0)
(-0.00423899 -0.0388196 0)
(-0.0048701 -0.0368783 0)
(-0.0054654 -0.0344479 0)
(-0.00599031 -0.0314739 0)
(-0.00640206 -0.0279213 0)
(-0.00665151 -0.0237871 0)
(-0.00668915 -0.0191212 0)
(-0.00647457 -0.0140387 0)
(-0.00598751 -0.00873176 0)
(-0.00523858 -0.00346784 0)
(-0.00427124 0.00143802 0)
(-0.0031857 0.00567062 0)
(-0.00209182 0.00893075 0)
(-0.00109361 0.0110507 0)
(-0.000282896 0.0119996 0)
(0.000291774 0.0118842 0)
(0.000633265 0.0109202 0)
(0.00078045 0.00937304 0)
(0.000791096 0.00750473 0)
(0.000725817 0.00552898 0)
(0.000637428 0.0035757 0)
(0.000566453 0.00167433 0)
(-9.39067e-05 1.01292e-06 0)
(-0.000288932 1.6957e-06 0)
(-0.000606803 3.15765e-06 0)
(-0.0011368 5.7514e-06 0)
(-0.00198481 9.9626e-06 0)
(-0.00327237 1.63584e-05 0)
(-0.00512811 2.55107e-05 0)
(-0.00767169 3.78419e-05 0)
(-0.0109912 5.3408e-05 0)
(-0.0151129 7.15872e-05 0)
(-0.0199685 9.07461e-05 0)
(-0.025366 0.000108042 0)
(-0.0309816 0.000119596 0)
(-0.0363843 0.000121191 0)
(-0.0410957 0.00010938 0)
(-0.0446785 8.2575e-05 0)
(-0.0468179 4.16174e-05 0)
(-0.0473742 -1.04302e-05 0)
(-0.0463874 -6.91618e-05 0)
(-0.0440443 -0.000129791 0)
(-0.0406217 -0.000188106 0)
(-0.0364321 -0.000240895 0)
(-0.0317733 -0.000286274 0)
(-0.0269049 -0.000323461 0)
(-0.0220293 -0.000352519 0)
(-0.0172998 -0.000374084 0)
(-0.0128142 -0.00038914 0)
(-0.00863424 -0.000398785 0)
(-0.00478838 -0.000404036 0)
(-0.00128634 -0.000405924 0)
(-0.000190429 2.12163e-05 0)
(-0.00049504 3.73867e-05 0)
(-0.00100087 6.96655e-05 0)
(-0.00183778 0.000125406 0)
(-0.00315979 0.000214349 0)
(-0.00514118 0.000347577 0)
(-0.00796244 0.000535837 0)
(-0.0117861 0.000786588 0)
(-0.0167235 0.00109949 0)
(-0.0227914 0.00146024 0)
(-0.029866 0.00183423 0)
(-0.0376443 0.00216293 0)
(-0.0456381 0.00236794 0)
(-0.0532143 0.00236531 0)
(-0.0596869 0.00208822 0)
(-0.064447 0.00150913 0)
(-0.067077 0.00065104 0)
(-0.0674209 -0.000418279 0)
(-0.0655815 -0.00160458 0)
(-0.0618627 -0.00281015 0)
(-0.0566839 -0.00395221 0)
(-0.0505006 -0.0049719 0)
(-0.0437323 -0.00583737 0)
(-0.0367391 -0.00653795 0)
(-0.0297942 -0.00707979 0)
(-0.0230984 -0.00747834 0)
(-0.016779 -0.00775419 0)
(-0.0109111 -0.00792891 0)
(-0.00552617 -0.00802335 0)
(-0.000634256 -0.00805551 0)
(-0.000189507 3.7537e-05 0)
(-0.000492625 6.61459e-05 0)
(-0.000995964 0.000123253 0)
(-0.00182878 0.000221876 0)
(-0.00314434 0.000379256 0)
(-0.00511624 0.000615036 0)
(-0.00792443 0.000948306 0)
(-0.0117316 0.00139243 0)
(-0.0166508 0.00194715 0)
(-0.0227025 0.00258771 0)
(-0.0297705 0.00325365 0)
(-0.0375622 0.00384204 0)
(-0.0456006 0.00421418 0)
(-0.0532606 0.00422031 0)
(-0.0598559 0.00373961 0)
(-0.0647664 0.00272008 0)
(-0.0675545 0.00119976 0)
(-0.0680415 -0.000702319 0)
(-0.0663106 -0.00281835 0)
(-0.0626547 -0.00497317 0)
(-0.0574905 -0.00701755 0)
(-0.0512783 -0.00884476 0)
(-0.0444465 -0.0103969 0)
(-0.0373655 -0.0116539 0)
(-0.0303181 -0.0126265 0)
(-0.0235135 -0.0133421 0)
(-0.0170847 -0.0138374 0)
(-0.0111117 -0.0141514 0)
(-0.00562825 -0.0143209 0)
(-0.000646137 -0.0143784 0)
(-0.000188074 5.37593e-05 0)
(-0.000488872 9.47257e-05 0)
(-0.000988346 0.000176504 0)
(-0.00181478 0.000317742 0)
(-0.00312034 0.000543142 0)
(-0.00507747 0.000880876 0)
(-0.00786533 0.00135839 0)
(-0.0116468 0.00199511 0)
(-0.0165374 0.00279123 0)
(-0.0225638 0.00371236 0)
(-0.0296209 0.00467336 0)
(-0.0374323 0.00552836 0)
(-0.0455389 0.0060792 0)
(-0.0533285 0.00610968 0)
(-0.0601149 0.0054421 0)
(-0.0652612 0.00399554 0)
(-0.0682988 0.00181852 0)
(-0.0690128 -0.00092153 0)
(-0.0674555 -0.00398334 0)
(-0.0639012 -0.00711201 0)
(-0.0587624 -0.0100882 0)
(-0.0525063 -0.0127537 0)
(-0.0455754 -0.0150213 0)
(-0.0383563 -0.01686 0)
(-0.0311472 -0.0182839 0)
(-0.0241705 -0.0193321 0)
(-0.0175691 -0.0200581 0)
(-0.0114295 -0.0205182 0)
(-0.0057901 -0.0207666 0)
(-0.000664708 -0.0208509 0)
(-0.000186135 6.98342e-05 0)
(-0.000483791 0.000123045 0)
(-0.000978034 0.000229272 0)
(-0.00179583 0.000412744 0)
(-0.00308784 0.000705564 0)
(-0.00502497 0.00114439 0)
(-0.00778527 0.00176506 0)
(-0.0115319 0.00259323 0)
(-0.0163834 0.00363014 0)
(-0.0223748 0.00483283 0)
(-0.0294159 0.00609327 0)
(-0.0372522 0.00722467 0)
(-0.045449 0.0079708 0)
(-0.0534126 0.00804815 0)
(-0.0604582 0.00721823 0)
(-0.0659274 0.00536467 0)
(-0.0693097 0.00253971 0)
(-0.0703399 -0.00104522 0)
(-0.0690272 -0.00507566 0)
(-0.0656186 -0.00921381 0)
(-0.0605197 -0.013165 0)
(-0.0542068 -0.0167139 0)
(-0.0471411 -0.0197397 0)
(-0.0397322 -0.0221973 0)
(-0.0322999 -0.0241029 0)
(-0.0250846 -0.0255069 0)
(-0.0182431 -0.02648 0)
(-0.0118721 -0.0270968 0)
(-0.00601537 -0.0274298 0)
(-0.000690729 -0.0275427 0)
(-0.000183695 8.57187e-05 0)
(-0.000477397 0.000151026 0)
(-0.000965057 0.00028141 0)
(-0.00177199 0.000506619 0)
(-0.00304694 0.000866076 0)
(-0.00495887 0.00140488 0)
(-0.0076844 0.00216726 0)
(-0.0113869 0.00318538 0)
(-0.0161888 0.00446221 0)
(-0.022135 0.00594764 0)
(-0.0291541 0.00751303 0)
(-0.0370187 0.00893337 0)
(-0.0453256 0.00989627 0)
(-0.0535057 0.0100501 0)
(-0.0608781 0.00909067 0)
(-0.0667592 0.00685761 0)
(-0.0705863 0.0033977 0)
(-0.0720297 -0.00103983 0)
(-0.0710406 -0.00606829 0)
(-0.0678294 -0.011263 0)
(-0.0627903 -0.0162467 0)
(-0.0564102 -0.0207398 0)
(-0.0491746 -0.0245816 0)
(-0.0415221 -0.0277087 0)
(-0.033801 -0.0301372 0)
(-0.026276 -0.0319286 0)
(-0.0191224 -0.033171 0)
(-0.0124494 -0.0339592 0)
(-0.00630934 -0.0343845 0)
(-0.000724553 -0.0345288 0)
(-0.000180761 0.000101372 0)
(-0.000469707 0.000178594 0)
(-0.000949448 0.000332778 0)
(-0.00174331 0.000599114 0)
(-0.00299774 0.00102425 0)
(-0.00487933 0.00166165 0)
(-0.00756295 0.00256398 0)
(-0.0112122 0.00377019 0)
(-0.0159537 0.00528578 0)
(-0.0218441 0.00705525 0)
(-0.0288337 0.00893206 0)
(-0.036728 0.0106564 0)
(-0.045162 0.0118624 0)
(-0.0535983 0.0121296 0)
(-0.0613642 0.0110823 0)
(-0.0677487 0.00850583 0)
(-0.0721271 0.00442947 0)
(-0.07409 -0.000868012 0)
(-0.0735148 -0.00693021 0)
(-0.0705626 -0.0132402 0)
(-0.0656107 -0.0193299 0)
(-0.0591573 -0.024845 0)
(-0.0517166 -0.0295773 0)
(-0.0437643 -0.0334396 0)
(-0.0356842 -0.0364448 0)
(-0.0277723 -0.0386647 0)
(-0.0202272 -0.0402057 0)
(-0.0131751 -0.041184 0)
(-0.00667905 -0.0417121 0)
(-0.000767203 -0.0418914 0)
(-0.000177341 0.000116748 0)
(-0.000460743 0.00020567 0)
(-0.000931252 0.000383234 0)
(-0.00170987 0.000689978 0)
(-0.00294036 0.00117966 0)
(-0.00478655 0.00191403 0)
(-0.00742118 0.00295419 0)
(-0.0110079 0.00434621 0)
(-0.0156781 0.00609909 0)
(-0.0215012 0.00815388 0)
(-0.0284526 0.0103494 0)
(-0.0363754 0.0123952 0)
(-0.04495 0.0138751 0)
(-0.0536788 0.0142999 0)
(-0.0619034 0.0132161 0)
(-0.0688852 0.0103422 0)
(-0.073929 0.0056752 0)
(-0.0765297 -0.000488518 0)
(-0.0764726 -0.00762501 0)
(-0.0738541 -0.0151213 0)
(-0.0690268 -0.0224071 0)
(-0.0624991 -0.0290416 0)
(-0.0548194 -0.0347581 0)
(-0.0465078 -0.0394382 0)
(-0.0379927 -0.0430882 0)
(-0.0296089 -0.045789 0)
(-0.0215846 -0.0476661 0)
(-0.0140674 -0.0488584 0)
(-0.00713349 -0.0495025 0)
(-0.000819758 -0.0497211 0)
(-0.000173446 0.000131806 0)
(-0.00045053 0.000232183 0)
(-0.000910518 0.000432645 0)
(-0.00167176 0.000778963 0)
(-0.00287496 0.00133188 0)
(-0.00468076 0.00216132 0)
(-0.0072594 0.00333686 0)
(-0.0107744 0.00491203 0)
(-0.015362 0.00690034 0)
(-0.0211059 0.0092416 0)
(-0.0280086 0.0117637 0)
(-0.0359555 0.0141503 0)
(-0.0446801 0.0159393 0)
(-0.0537334 0.0165734 0)
(-0.0624795 0.015515 0)
(-0.0701549 0.0124013 0)
(-0.0759869 0.00717888 0)
(-0.0793583 0.000147404 0)
(-0.0799406 -0.00810942 0)
(-0.0777474 -0.0168755 0)
(-0.0730947 -0.0254663 0)
(-0.066499 -0.0333391 0)
(-0.0585478 -0.0401556 0)
(-0.0498141 -0.0457566 0)
(-0.0407807 -0.0501366 0)
(-0.0318301 -0.0533839 0)
(-0.0232279 -0.0556438 0)
(-0.0151483 -0.0570805 0)
(-0.00768439 -0.0578569 0)
(-0.000883166 -0.0581204 0)
(-0.000169085 0.000146512 0)
(-0.000439094 0.000258066 0)
(-0.0008873 0.000480876 0)
(-0.00162909 0.000865824 0)
(-0.00280172 0.00148049 0)
(-0.00456222 0.00240287 0)
(-0.00707797 0.003711 0)
(-0.010512 0.00546622 0)
(-0.0150057 0.00768769 0)
(-0.0206574 0.0103163 0)
(-0.027499 0.0131731 0)
(-0.0354625 0.0159215 0)
(-0.0443413 0.0180589 0)
(-0.0537457 0.0189616 0)
(-0.0630728 0.0180017 0)
(-0.0715402 0.0147194 0)
(-0.0782928 0.0089891 0)
(-0.0825846 0.00109325 0)
(-0.0839493 -0.00833167 0)
(-0.0822938 -0.0184639 0)
(-0.0778825 -0.0284893 0)
(-0.0712352 -0.0377445 0)
(-0.0629822 -0.0458025 0)
(-0.0537598 -0.0524515 0)
(-0.044116 -0.057667 0)
(-0.034492 -0.0615423 0)
(-0.0251996 -0.0642434 0)
(-0.0164461 -0.0659622 0)
(-0.008346 -0.0668918 0)
(-0.000959561 -0.0672073 0)
(-0.000164273 0.000160822 0)
(-0.000426468 0.000283242 0)
(-0.000861665 0.000527788 0)
(-0.00158197 0.000950321 0)
(-0.00272081 0.00162511 0)
(-0.00443123 0.00263802 0)
(-0.00687728 0.00407559 0)
(-0.0102212 0.00600733 0)
(-0.0146093 0.00845917 0)
(-0.0201551 0.0113756 0)
(-0.0269213 0.0145753 0)
(-0.0348898 0.0177077 0)
(-0.0439215 0.0202363 0)
(-0.0536969 0.0214744 0)
(-0.0636598 0.0206985 0)
(-0.0730185 0.0173348 0)
(-0.0808345 0.0111595 0)
(-0.0862168 0.00241305 0)
(-0.0885322 -0.00822948 0)
(-0.0875533 -0.0198372 0)
(-0.0834713 -0.0314497 0)
(-0.0768015 -0.0422602 0)
(-0.0682209 -0.0517319 0)
(-0.0584389 -0.0595843 0)
(-0.0480824 -0.0657655 0)
(-0.0376638 -0.0703697 0)
(-0.027552 -0.0735845 0)
(-0.0179956 -0.0756327 0)
(-0.00913632 -0.076741 0)
(-0.00105066 -0.0771173 0)
(-0.000159021 0.000174691 0)
(-0.000412686 0.000307641 0)
(-0.00083368 0.000573255 0)
(-0.00153052 0.00103223 0)
(-0.00263247 0.00176532 0)
(-0.00428813 0.00286613 0)
(-0.00665781 0.00442965 0)
(-0.00990256 0.00653391 0)
(-0.0141732 0.00921278 0)
(-0.0195986 0.012417 0)
(-0.0262727 0.0159674 0)
(-0.0342308 0.0195066 0)
(-0.0434074 0.0224723 0)
(-0.0535656 0.0241199 0)
(-0.0642123 0.0236264 0)
(-0.0745615 0.020287 0)
(-0.0835944 0.0137493 0)
(-0.0902592 0.00418024 0)
(-0.0937254 -0.00772744 0)
(-0.0935949 -0.0209327 0)
(-0.0899574 -0.0343104 0)
(-0.0833117 -0.0468827 0)
(-0.0743835 -0.0579765 0)
(-0.063967 -0.0672224 0)
(-0.0527831 -0.0745292 0)
(-0.0414314 -0.0799873 0)
(-0.0303505 -0.0838059 0)
(-0.0198408 -0.0862418 0)
(-0.0100778 -0.0875611 0)
(-0.00115921 -0.088009 0)
(-0.000153346 0.000188092 0)
(-0.000397785 0.000331202 0)
(-0.000803423 0.000617157 0)
(-0.0014749 0.00111132 0)
(-0.00253692 0.00190074 0)
(-0.00413327 0.00308658 0)
(-0.00642003 0.00477221 0)
(-0.00955659 0.00704453 0)
(-0.0136978 0.00994645 0)
(-0.0189872 0.0134376 0)
(-0.0255506 0.017346 0)
(-0.0334783 0.0213149 0)
(-0.0427845 0.0247658 0)
(-0.0533277 0.0269038 0)
(-0.0646976 0.0268055 0)
(-0.0761342 0.023617 0)
(-0.0865476 0.0168244 0)
(-0.0947131 0.0064799 0)
(-0.0995677 -0.00673385 0)
(-0.100498 -0.0216709 0)
(-0.0974549 -0.0370206 0)
(-0.0909028 -0.0516007 0)
(-0.081616 -0.0645685 0)
(-0.070486 -0.0754403 0)
(-0.0583461 -0.0840695 0)
(-0.0459014 -0.090536 0)
(-0.0336765 -0.0950703 0)
(-0.0220362 -0.097967 0)
(-0.0111987 -0.099537 0)
(-0.00128846 -0.10007 0)
(-0.000147264 0.000200983 0)
(-0.000381807 0.000353854 0)
(-0.000770976 0.000659369 0)
(-0.00141524 0.00118737 0)
(-0.00243443 0.002031 0)
(-0.00396706 0.00329875 0)
(-0.00616454 0.00510232 0)
(-0.00918398 0.00753771 0)
(-0.0131836 0.010658 0)
(-0.0183207 0.0144343 0)
(-0.0247525 0.0187068 0)
(-0.0326251 0.0231278 0)
(-0.0420376 0.0271134 0)
(-0.0529567 0.0298289 0)
(-0.0650774 0.0302527 0)
(-0.0776928 0.0273664 0)
(-0.0896596 0.0204563 0)
(-0.0995721 0.00941083 0)
(-0.106097 -0.00513877 0)
(-0.10835 -0.0219513 0)
(-0.106097 -0.0395114 0)
(-0.0997382 -0.0563915 0)
(-0.0900947 -0.0715376 0)
(-0.0781694 -0.0843185 0)
(-0.0649286 -0.0945124 0)
(-0.0512058 -0.102179 0)
(-0.0376311 -0.107568 0)
(-0.0246497 -0.111017 0)
(-0.0125338 -0.112888 0)
(-0.0014424 -0.113523 0)
(-0.000140792 0.000213327 0)
(-0.000364795 0.000375535 0)
(-0.000736428 0.000699775 0)
(-0.00135171 0.00126018 0)
(-0.00232525 0.00215574 0)
(-0.00378992 0.00350207 0)
(-0.00589193 0.00541903 0)
(-0.00878547 0.00801201 0)
(-0.0126312 0.0113453 0)
(-0.017599 0.0154039 0)
(-0.0238762 0.0200454 0)
(-0.0316642 0.0249394 0)
(-0.0411508 0.0295095 0)
(-0.0524235 0.0328948 0)
(-0.0653078 0.0339821 0)
(-0.0791841 0.0315763 0)
(-0.0928838 0.0247235 0)
(-0.10482 0.0130878 0)
(-0.11335 -0.00280914 0)
(-0.117253 -0.0216467 0)
(-0.116041 -0.0416908 0)
(-0.110015 -0.0612178 0)
(-0.100035 -0.0789097 0)
(-0.0872302 -0.093946 0)
(-0.0727258 -0.106003 0)
(-0.0575093 -0.115108 0)
(-0.0423413 -0.121527 0)
(-0.0277671 -0.125643 0)
(-0.0141277 -0.127878 0)
(-0.00162595 -0.128637 0)
(-0.00013395 0.000225098 0)
(-0.000346795 0.000396191 0)
(-0.000699873 0.000738267 0)
(-0.00128448 0.00132954 0)
(-0.00220969 0.00227462 0)
(-0.00360231 0.00369595 0)
(-0.00560287 0.00572145 0)
(-0.0083619 0.00846603 0)
(-0.0120414 0.0120061 0)
(-0.0168223 0.0163429 0)
(-0.0229196 0.0213563 0)
(-0.0305887 0.0267423 0)
(-0.0401079 0.0319455 0)
(-0.0516967 0.0360965 0)
(-0.0653386 0.0380033 0)
(-0.0805435 0.0362863 0)
(-0.0961581 0.0297106 0)
(-0.110427 0.0176434 0)
(-0.121359 0.000426105 0)
(-0.127314 -0.0205958 0)
(-0.12747 -0.0434365 0)
(-0.121968 -0.0660225 0)
(-0.111698 -0.0867045 0)
(-0.0979305 -0.10442 0)
(-0.0819791 -0.118709 0)
(-0.065018 -0.129549 0)
(-0.0479672 -0.137218 0)
(-0.0314971 -0.142147 0)
(-0.0160363 -0.144827 0)
(-0.00184566 -0.145738 0)
(-0.000126759 0.000236259 0)
(-0.000327856 0.00041576 0)
(-0.000661412 0.000774734 0)
(-0.00121373 0.00139527 0)
(-0.00208806 0.0023873 0)
(-0.00340473 0.00387985 0)
(-0.00529807 0.00600868 0)
(-0.0079142 0.00889833 0)
(-0.0114152 0.012638 0)
(-0.015991 0.0172476 0)
(-0.0218813 0.0226336 0)
(-0.0293924 0.0285275 0)
(-0.0388927 0.03441 0)
(-0.0507433 0.0394243 0)
(-0.0651136 0.0423194 0)
(-0.0816932 0.041532 0)
(-0.0994009 0.0355068 0)
(-0.116343 0.0232295 0)
(-0.130147 0.00475695 0)
(-0.138656 -0.0185954 0)
(-0.140599 -0.0445869 0)
(-0.135882 -0.0707215 0)
(-0.125401 -0.0949312 0)
(-0.110591 -0.115843 0)
(-0.0929885 -0.132821 0)
(-0.0739906 -0.145768 0)
(-0.0547118 -0.154966 0)
(-0.0359784 -0.160895 0)
(-0.0183321 -0.164125 0)
(-0.00210954 -0.165223 0)
(-0.00011924 0.000246779 0)
(-0.000308032 0.00043419 0)
(-0.000621149 0.000809079 0)
(-0.00113967 0.00145718 0)
(-0.00196067 0.00249348 0)
(-0.0031977 0.00405327 0)
(-0.00497831 0.00627989 0)
(-0.00744339 0.00930753 0)
(-0.0107537 0.0132389 0)
(-0.0151057 0.0181142 0)
(-0.0207603 0.0238709 0)
(-0.0280697 0.0302847 0)
(-0.0374898 0.0368885 0)
(-0.0495289 0.0428627 0)
(-0.0645705 0.0469259 0)
(-0.0825408 0.0473426 0)
(-0.102507 0.0422041 0)
(-0.12249 0.0300197 0)
(-0.139717 0.0104288 0)
(-0.151404 -0.0153852 0)
(-0.155678 -0.0449289 0)
(-0.152096 -0.0751961 0)
(-0.141531 -0.103585 0)
(-0.125608 -0.128326 0)
(-0.106128 -0.148556 0)
(-0.0847546 -0.164079 0)
(-0.0628362 -0.175163 0)
(-0.0413921 -0.182337 0)
(-0.0211097 -0.186254 0)
(-0.00242809 -0.187586 0)
(-0.000111415 0.000256633 0)
(-0.000287375 0.000451436 0)
(-0.000579193 0.00084121 0)
(-0.00106248 0.00151511 0)
(-0.00182789 0.00259286 0)
(-0.00298176 0.00421568 0)
(-0.00464438 0.00653425 0)
(-0.00695058 0.0096923 0)
(-0.0100582 0.0138064 0)
(-0.0141677 0.0189386 0)
(-0.0195563 0.0250613 0)
(-0.0266163 0.0320024 0)
(-0.0358846 0.039363 0)
(-0.0480187 0.0463897 0)
(-0.063641 0.0518082 0)
(-0.0829781 0.0537374 0)
(-0.105341 0.0498941 0)
(-0.128754 0.0382093 0)
(-0.150051 0.0177337 0)
(-0.165693 -0.0106354 0)
(-0.173 -0.0441843 0)
(-0.171021 -0.079282 0)
(-0.160558 -0.112642 0)
(-0.143464 -0.141982 0)
(-0.121862 -0.166161 0)
(-0.0977274 -0.184848 0)
(-0.0726808 -0.198282 0)
(-0.0479784 -0.207026 0)
(-0.0244965 -0.211818 0)
(-0.00281562 -0.21345 0)
(-0.00010331 0.000265789 0)
(-0.000265942 0.00046744 0)
(-0.000535662 0.000871037 0)
(-0.000982382 0.00156889 0)
(-0.00169007 0.00268515 0)
(-0.00275749 0.00436663 0)
(-0.00429719 0.00677098 0)
(-0.00643701 0.0100513 0)
(-0.0093303 0.0143382 0)
(-0.0131784 0.0197168 0)
(-0.0182699 0.0261973 0)
(-0.025029 0.0336674 0)
(-0.0340645 0.0418123 0)
(-0.0461787 0.0499758 0)
(-0.0622527 0.0569391 0)
(-0.0828797 0.0607205 0)
(-0.107732 0.0586615 0)
(-0.134972 0.048014 0)
(-0.161087 0.0270254 0)
(-0.181654 -0.00393043 0)
(-0.192911 -0.0419832 0)
(-0.193153 -0.0827574 0)
(-0.18305 -0.122051 0)
(-0.164748 -0.156927 0)
(-0.140768 -0.185903 0)
(-0.113443 -0.208497 0)
(-0.0846975 -0.22489 0)
(-0.0560671 -0.235648 0)
(-0.0286718 -0.241582 0)
(-0.00329223 -0.243608 0)
(-9.49499e-05 0.000274223 0)
(-0.000243792 0.000482162 0)
(-0.000490674 0.000898479 0)
(-0.000899595 0.00161837 0)
(-0.00154758 0.0027701 0)
(-0.00252551 0.00450568 0)
(-0.00393764 0.00698935 0)
(-0.00590397 0.0103833 0)
(-0.00857168 0.0148322 0)
(-0.0121398 0.0204447 0)
(-0.0169023 0.0272714 0)
(-0.0233064 0.0352655 0)
(-0.0320193 0.0442118 0)
(-0.0439769 0.0535838 0)
(-0.0603299 0.0622771 0)
(-0.0821038 0.0682764 0)
(-0.10947 0.0685774 0)
(-0.140916 0.0596671 0)
(-0.1727 0.0387306 0)
(-0.19941 0.00529206 0)
(-0.21582 -0.0378376 0)
(-0.219102 -0.0853297 0)
(-0.209696 -0.131738 0)
(-0.190167 -0.17327 0)
(-0.163552 -0.208065 0)
(-0.132588 -0.235496 0)
(-0.0995002 -0.255659 0)
(-0.066131 -0.269061 0)
(-0.0339068 -0.276542 0)
(-0.00389063 -0.279117 0)
(-8.63619e-05 0.000281909 0)
(-0.000220983 0.000495571 0)
(-0.00044435 0.000923462 0)
(-0.000814343 0.00166341 0)
(-0.0014008 0.00284746 0)
(-0.00228643 0.00463241 0)
(-0.0035667 0.00718868 0)
(-0.00535287 0.0106871 0)
(-0.00778426 0.0152862 0)
(-0.0110542 0.0211182 0)
(-0.015456 0.0282756 0)
(-0.0214488 0.0367819 0)
(-0.0297419 0.0465339 0)
(-0.0413849 0.0571682 0)
(-0.0577965 0.0677633 0)
(-0.0804927 0.0763624 0)
(-0.110295 0.0796871 0)
(-0.14627 0.0734099 0)
(-0.184675 0.0533597 0)
(-0.21905 0.0177185 0)
(-0.242226 -0.0310961 0)
(-0.249628 -0.0866222 0)
(-0.241325 -0.141608 0)
(-0.22055 -0.191121 0)
(-0.191059 -0.232922 0)
(-0.156051 -0.266328 0)
(-0.117942 -0.291366 0)
(-0.0788802 -0.308325 0)
(-0.0406617 -0.318028 0)
(-0.00467837 -0.32146 0)
(-7.75749e-05 0.000288818 0)
(-0.000197578 0.000507624 0)
(-0.000396819 0.000945918 0)
(-0.000726859 0.0017039 0)
(-0.00125016 0.00291703 0)
(-0.00204091 0.00474647 0)
(-0.00318537 0.00736833 0)
(-0.00478522 0.0109616 0)
(-0.00697019 0.015698 0)
(-0.00992453 0.0217334 0)
(-0.0139343 0.029202 0)
(-0.0194587 0.0382008 0)
(-0.0272297 0.0487485 0)
(-0.0383805 0.060675 0)
(-0.0545791 0.073319 0)
(-0.0778773 0.0849008 0)
(-0.109899 0.0919931 0)
(-0.150613 0.0894744 0)
(-0.196653 0.0715132 0)
(-0.240591 0.0342815 0)
(-0.272729 -0.0208603 0)
(-0.285709 -0.0861674 0)
(-0.278914 -0.151569 0)
(-0.25684 -0.210597 0)
(-0.224223 -0.260695 0)
(-0.184979 -0.301368 0)
(-0.141237 -0.332907 0)
(-0.0953809 -0.354624 0)
(-0.0499339 -0.367824 0)
(-0.00587116 -0.372991 0)
(-6.86184e-05 0.000294933 0)
(-0.000173639 0.000518287 0)
(-0.000348209 0.000965791 0)
(-0.000637384 0.00173972 0)
(-0.00109604 0.0029786 0)
(-0.00178962 0.00484751 0)
(-0.00279471 0.00752771 0)
(-0.00420259 0.0112057 0)
(-0.00613176 0.0160659 0)
(-0.00875403 0.0222864 0)
(-0.0123415 0.0300429 0)
(-0.017341 0.0395062 0)
(-0.0244843 0.0508234 0)
(-0.0349496 0.0640421 0)
(-0.0506117 0.0788445 0)
(-0.0740825 0.0937718 0)
(-0.10792 0.105436 0)
(-0.153386 0.108057 0)
(-0.20807 0.0938798 0)
(-0.263919 0.0562095 0)
(-0.308129 -0.00586638 0)
(-0.328676 -0.0834419 0)
(-0.323565 -0.161605 0)
(-0.300089 -0.231863 0)
(-0.263828 -0.291578 0)
(-0.220691 -0.340458 0)
(-0.171305 -0.381926 0)
(-0.11616 -0.408603 0)
(-0.064215 -0.427849 0)
(-0.00826839 -0.438288 0)
(-5.95227e-05 0.000300223 0)
(-0.00014923 0.000527533 0)
(-0.000298655 0.000983021 0)
(-0.000546161 0.00177077 0)
(-0.000938872 0.00303199 0)
(-0.00153326 0.00493522 0)
(-0.00239581 0.00766631 0)
(-0.00360667 0.0114186 0)
(-0.00527152 0.016388 0)
(-0.00754647 0.0227736 0)
(-0.0106831 0.0307907 0)
(-0.015103 0.0406823 0)
(-0.0215134 0.0527253 0)
(-0.0310887 0.0672005 0)
(-0.0458404 0.0842175 0)
(-0.0689382 0.102805 0)
(-0.103951 0.119865 0)
(-0.153869 0.12927 0)
(-0.218061 0.12121 0)
(-0.288628 0.085127 0)
(-0.349434 0.0158772 0)
(-0.380512 -0.0779477 0)
(-0.376279 -0.171939 0)
(-0.351622 -0.255079 0)
(-0.308303 -0.32681 0)
(-0.255802 -0.384191 0)
(-0.201295 -0.444148 0)
(-0.120088 -0.471135 0)
(-0.0655927 -0.497035 0)
(-0.00758853 -0.522195 0)
(-5.03213e-05 0.000304659 0)
(-0.000124419 0.000535336 0)
(-0.000248293 0.000997561 0)
(-0.000453445 0.00179696 0)
(-0.000779099 0.00307704 0)
(-0.00127254 0.00500934 0)
(-0.00198982 0.00778366 0)
(-0.00299923 0.0115993 0)
(-0.00439219 0.0166626 0)
(-0.00630611 0.0231917 0)
(-0.00896562 0.0314382 0)
(-0.0127545 0.0417137 0)
(-0.0183303 0.054421 0)
(-0.0268088 0.0700754 0)
(-0.0402293 0.0892925 0)
(-0.0622942 0.111776 0)
(-0.0975541 0.135009 0)
(-0.151161 0.153077 0)
(-0.225346 0.154244 0)
(-0.313757 0.123125 0)
(-0.397832 0.0475369 0)
(-0.444765 -0.0694883 0)
(-0.436513 -0.183913 0)
(-0.409412 -0.281275 0)
(-0.320282 -0.386588 0)
(-0.211125 -0.477949 0)
(-0.00590959 -0.55639 0)
(0.000291137 -0.520658 0)
(-0.0105842 -0.5248 0)
(0.00685025 -0.584059 0)
(-4.10511e-05 0.000308214 0)
(-9.9271e-05 0.000541675 0)
(-0.000197263 0.00100937 0)
(-0.000359488 0.00181821 0)
(-0.000617157 0.00311363 0)
(-0.00100819 0.00506963 0)
(-0.00157789 0.00787935 0)
(-0.00238209 0.0117472 0)
(-0.00349663 0.0168884 0)
(-0.00503755 0.0235377 0)
(-0.00719661 0.0319791 0)
(-0.0103078 0.0425861 0)
(-0.0149547 0.0558789 0)
(-0.0221375 0.0725901 0)
(-0.0337657 0.0939016 0)
(-0.0540417 0.120408 0)
(-0.0882876 0.150436 0)
(-0.144186 0.179201 0)
(-0.228101 0.193583 0)
(-0.337352 0.172661 0)
(-0.454026 0.0947728 0)
(-0.528875 -0.0585 0)
(-0.498365 -0.206369 0)
(-0.427229 -0.330869 0)
(-0.328354 -0.511458 0)
(-0.247562 -0.541484 0)
(-0.261385 -0.595728 0)
(-0.163659 -0.574689 0)
(-0.0642776 -0.577761 0)
(-0.00794528 -0.598024 0)
(-3.17525e-05 0.000310861 0)
(-7.38536e-05 0.000546535 0)
(-0.000145704 0.00101843 0)
(-0.000264546 0.00183448 0)
(-0.000453491 0.00314166 0)
(-0.00074094 0.00511591 0)
(-0.0011612 0.00795307 0)
(-0.00175712 0.0118617 0)
(-0.00258784 0.0170641 0)
(-0.00374572 0.023809 0)
(-0.00538444 0.0324075 0)
(-0.00777753 0.0432867 0)
(-0.0114117 0.05707 0)
(-0.0171231 0.07467 0)
(-0.0264646 0.0978513 0)
(-0.0441428 0.12839 0)
(-0.0757442 0.165514 0)
(-0.131724 0.206982 0)
(-0.223967 0.239517 0)
(-0.358282 0.235165 0)
(-0.522669 0.155083 0)
(-0.654645 -0.0414384 0)
(-0.699615 -0.235906 0)
(-0.540445 -0.386275 0)
(-0.424135 -0.583981 0)
(-0.313121 -0.630044 0)
(-0.224714 -0.664506 0)
(-0.143537 -0.662896 0)
(-0.0733972 -0.667469 0)
(-0.00869634 -0.672216 0)
(-2.2471e-05 0.000312563 0)
(-4.82359e-05 0.000549905 0)
(-9.37578e-05 0.00102471 0)
(-0.000168884 0.00184573 0)
(-0.000288559 0.00316105 0)
(-0.000471556 0.00514805 0)
(-0.000740989 0.00800459 0)
(-0.0011263 0.0119423 0)
(-0.00166896 0.0171887 0)
(-0.00243595 0.0240031 0)
(-0.00353838 0.0327179 0)
(-0.0051804 0.0438025 0)
(-0.00773166 0.0579647 0)
(-0.0118379 0.0762388 0)
(-0.0183739 0.100882 0)
(-0.0326683 0.13536 0)
(-0.0595983 0.179211 0)
(-0.112812 0.234914 0)
(-0.214328 0.291341 0)
(-0.389568 0.317442 0)
(-0.559627 0.21866 0)
(-0.805063 0.00115797 0)
(-0.914497 -0.314832 0)
(-0.704071 -0.548875 0)
(-0.492832 -0.674947 0)
(-0.346933 -0.717962 0)
(-0.246894 -0.746541 0)
(-0.159328 -0.749005 0)
(-0.0781824 -0.758822 0)
(-0.00793868 -0.758826 0)
(-1.33834e-05 0.000308639 0)
(-2.26933e-05 0.000543539 0)
(-4.17681e-05 0.00101297 0)
(-7.29815e-05 0.0018247 0)
(-0.000123037 0.00312572 0)
(-0.000200963 0.00509208 0)
(-0.000318508 0.00792092 0)
(-0.000491399 0.0118238 0)
(-0.000742532 0.0170297 0)
(-0.00111247 0.023803 0)
(-0.00166636 0.0324898 0)
(-0.00253256 0.0435904 0)
(-0.00394484 0.0578773 0)
(-0.00637397 0.0764503 0)
(-0.00957314 0.101754 0)
(-0.0197189 0.140207 0)
(-0.0428605 0.190276 0)
(-0.0956789 0.262318 0)
(-0.182683 0.348251 0)
(-0.34632 0.399878 0)
(-0.527093 0.392345 0)
(-0.659597 0.138951 0)
(-0.458336 -0.456212 0)
(-0.559899 -0.690106 0)
(-0.605665 -0.825365 0)
(-0.436458 -0.844192 0)
(-0.295673 -0.87528 0)
(-0.168734 -0.853856 0)
(-0.0836022 -0.860376 0)
(-0.00712394 -0.858836 0)
(0.00208743 -0.000405675 0)
(0.00567496 -0.000403131 0)
(0.00960609 -0.000396901 0)
(0.0138675 -0.000386064 0)
(0.0184236 -0.000369485 0)
(0.0232034 -0.000346167 0)
(0.0280964 -0.000315133 0)
(0.0329387 -0.000275903 0)
(0.0375114 -0.000228567 0)
(0.0415447 -0.000174161 0)
(0.0447325 -0.000114917 0)
(0.0467668 -5.42961e-05 0)
(0.0473864 3.20665e-06 0)
(0.0464365 5.2951e-05 0)
(0.0439194 9.06128e-05 0)
(0.0400212 0.000113683 0)
(0.0350932 0.000121933 0)
(0.0295922 0.000117495 0)
(0.0239925 0.000104118 0)
(0.0187031 8.60304e-05 0)
(0.0140162 6.68976e-05 0)
(0.0100911 4.92581e-05 0)
(0.00696937 3.44687e-05 0)
(0.00460648 2.29512e-05 0)
(0.00290383 1.4532e-05 0)
(0.00173755 8.73489e-06 0)
(0.00097952 4.97603e-06 0)
(0.000511506 2.70413e-06 0)
(0.000232007 1.46388e-06 0)
(5.48813e-05 9.39824e-07 0)
(0.00419579 -0.00803728 0)
(0.00945676 -0.00796072 0)
(0.0152067 -0.00780857 0)
(0.0214205 -0.00756087 0)
(0.0280354 -0.00719574 0)
(0.0349373 -0.0066923 0)
(0.0419462 -0.00603317 0)
(0.0488084 -0.00520924 0)
(0.0551837 -0.00422637 0)
(0.0606651 -0.00311048 0)
(0.0648007 -0.00191354 0)
(0.0671544 -0.000712923 0)
(0.067384 0.000396005 0)
(0.0653286 0.00131581 0)
(0.0610761 0.00196994 0)
(0.0549823 0.00232287 0)
(0.0476183 0.00238985 0)
(0.0396634 0.00222963 0)
(0.0317756 0.00192421 0)
(0.024486 0.00155518 0)
(0.0181451 0.00118687 0)
(0.0129194 0.000859851 0)
(0.00882275 0.000592953 0)
(0.0057633 0.000389425 0)
(0.00358765 0.000243277 0)
(0.00211704 0.00014425 0)
(0.00117386 8.11401e-05 0)
(0.000598117 4.37582e-05 0)
(0.000254132 2.4071e-05 0)
(2.51091e-05 1.37183e-05 0)
(0.00427311 -0.0143457 0)
(0.00963061 -0.0142084 0)
(0.0154844 -0.0139352 0)
(0.021807 -0.0134902 0)
(0.0285316 -0.0128346 0)
(0.0355383 -0.0119309 0)
(0.0426398 -0.0107481 0)
(0.0495728 -0.00927028 0)
(0.0559868 -0.00750864 0)
(0.0614653 -0.00551055 0)
(0.0655505 -0.00337026 0)
(0.0678065 -0.00122739 0)
(0.0679002 0.000746695 0)
(0.0656882 0.00237825 0)
(0.0612812 0.00353216 0)
(0.0550562 0.00414787 0)
(0.047598 0.00425562 0)
(0.0395892 0.00396222 0)
(0.0316812 0.00341432 0)
(0.0243942 0.00275656 0)
(0.0180679 0.0021022 0)
(0.0128604 0.00152226 0)
(0.00878091 0.00104944 0)
(0.00573543 0.000689108 0)
(0.00357014 0.000430447 0)
(0.00210668 0.000255218 0)
(0.00116811 0.000143556 0)
(0.000595196 7.74167e-05 0)
(0.0002529 4.25887e-05 0)
(2.50048e-05 2.6809e-05 0)
(0.00439599 -0.0208028 0)
(0.00990668 -0.0206016 0)
(0.0159245 -0.0202013 0)
(0.0224189 -0.0195492 0)
(0.0293168 -0.0185888 0)
(0.0364891 -0.0172654 0)
(0.0437363 -0.0155349 0)
(0.0507801 -0.0133751 0)
(0.0572536 -0.0108041 0)
(0.0627256 -0.00789369 0)
(0.0667286 -0.00478379 0)
(0.0688281 -0.00168015 0)
(0.0687057 0.00116717 0)
(0.0662463 0.00350749 0)
(0.0615966 0.00514937 0)
(0.0551668 0.00601152 0)
(0.0475629 0.00614381 0)
(0.0394712 0.00570449 0)
(0.0315329 0.00490606 0)
(0.0242508 0.00395562 0)
(0.0179475 0.00301399 0)
(0.0127686 0.00218134 0)
(0.00871582 0.00150335 0)
(0.00569211 0.000986993 0)
(0.00354292 0.000616463 0)
(0.00209056 0.000365492 0)
(0.00115917 0.000205579 0)
(0.000590657 0.000110865 0)
(0.000250985 6.09923e-05 0)
(2.48329e-05 3.98301e-05 0)
(0.00456713 -0.0274785 0)
(0.0102906 -0.0272086 0)
(0.0165371 -0.026672 0)
(0.0232702 -0.0257978 0)
(0.0304084 -0.0245112 0)
(0.0378099 -0.0227397 0)
(0.0452576 -0.0204259 0)
(0.0524527 -0.0175425 0)
(0.0590051 -0.0141173 0)
(0.0644633 -0.0102503 0)
(0.0683476 -0.00613268 0)
(0.0702259 -0.00204176 0)
(0.0698015 0.0016899 0)
(0.0669998 0.00473393 0)
(0.0620169 0.00684603 0)
(0.0553088 0.00793052 0)
(0.0475085 0.00806381 0)
(0.0393066 0.00746029 0)
(0.0313293 0.00639989 0)
(0.0240551 0.00515121 0)
(0.0177838 0.00392065 0)
(0.012644 0.00283563 0)
(0.00862762 0.00195353 0)
(0.00563342 0.0012823 0)
(0.00350607 0.000800826 0)
(0.00206874 0.000474773 0)
(0.00114707 0.000267041 0)
(0.000584512 0.000144008 0)
(0.000248393 7.92281e-05 0)
(2.45941e-05 5.27421e-05 0)
(0.00479032 -0.0344466 0)
(0.0107916 -0.034102 0)
(0.0173361 -0.0334163 0)
(0.0243802 -0.0323 0)
(0.0318306 -0.030658 0)
(0.0395286 -0.0283997 0)
(0.0472344 -0.0254542 0)
(0.0546213 -0.021791 0)
(0.06127 -0.017451 0)
(0.0667026 -0.0125683 0)
(0.0704244 -0.00739249 0)
(0.0720084 -0.00227974 0)
(0.0711886 0.00234958 0)
(0.0679437 0.00608918 0)
(0.0625346 0.00864683 0)
(0.0554743 0.00992131 0)
(0.0474291 0.0100245 0)
(0.039092 0.00923304 0)
(0.0310686 0.00789597 0)
(0.0238067 0.00634202 0)
(0.0175769 0.0048205 0)
(0.0124868 0.00348364 0)
(0.00851649 0.00239886 0)
(0.00555953 0.00157424 0)
(0.00345969 0.00098303 0)
(0.00204128 0.000582759 0)
(0.00113185 0.00032777 0)
(0.000576777 0.000176756 0)
(0.000245131 9.72465e-05 0)
(2.4289e-05 6.55094e-05 0)
(0.00507116 -0.0417892 0)
(0.0114217 -0.0413613 0)
(0.0183404 -0.0405102 0)
(0.0257745 -0.0391252 0)
(0.0336154 -0.03709 0)
(0.0416825 -0.0342942 0)
(0.0497069 -0.0306543 0)
(0.0573271 -0.0261386 0)
(0.0640862 -0.0208061 0)
(0.0694746 -0.0148322 0)
(0.0729808 -0.00853466 0)
(0.0741866 -0.00235792 0)
(0.0728676 0.00318381 0)
(0.0690713 0.00760649 0)
(0.0631395 0.010577 0)
(0.0556537 0.012 0)
(0.047317 0.0120343 0)
(0.0388225 0.0110257 0)
(0.0307486 0.0093942 0)
(0.0235047 0.00752663 0)
(0.0173266 0.00571186 0)
(0.0122972 0.00412388 0)
(0.00838265 0.00283823 0)
(0.0054706 0.00186205 0)
(0.00340388 0.00116259 0)
(0.00200825 0.000689159 0)
(0.00111353 0.000387603 0)
(0.000567474 0.000209019 0)
(0.000241208 0.000114999 0)
(2.39184e-05 7.81019e-05 0)
(0.00541611 -0.0495964 0)
(0.0121962 -0.0490746 0)
(0.0195744 -0.048037 0)
(0.0274862 -0.0463498 0)
(0.035804 -0.0438728 0)
(0.0443194 -0.0404756 0)
(0.052727 -0.0360619 0)
(0.0606218 -0.0306022 0)
(0.0675015 -0.0241798 0)
(0.0728183 -0.0170216 0)
(0.0760432 -0.00952532 0)
(0.0767729 -0.00223529 0)
(0.0748381 0.00423378 0)
(0.0703735 0.00932096 0)
(0.0638187 0.0126621 0)
(0.0558346 0.0141823 0)
(0.0471632 0.0141008 0)
(0.0384929 0.0128405 0)
(0.0303666 0.010894 0)
(0.0231482 0.0087034 0)
(0.0170329 0.00659292 0)
(0.0120755 0.00475484 0)
(0.00822636 0.00327051 0)
(0.00536685 0.00214496 0)
(0.0033388 0.00133902 0)
(0.00196974 0.000793689 0)
(0.00109218 0.000446376 0)
(0.000556628 0.000240709 0)
(0.000236634 0.000132438 0)
(2.3483e-05 9.04857e-05 0)
(0.00583434 -0.0579703 0)
(0.0131345 -0.057341 0)
(0.0210687 -0.0560906 0)
(0.0295572 -0.0540587 0)
(0.0384483 -0.0510795 0)
(0.0474991 -0.0470005 0)
(0.056359 -0.0417144 0)
(0.0645698 -0.0351973 0)
(0.0715743 -0.0275658 0)
(0.0767809 -0.0191102 0)
(0.0796426 -0.0103237 0)
(0.0797806 -0.00186442 0)
(0.0770981 0.00554513 0)
(0.071838 0.0112699 0)
(0.0645561 0.0149279 0)
(0.0560022 0.016483 0)
(0.046957 0.0162304 0)
(0.0380967 0.0146789 0)
(0.0299197 0.0123944 0)
(0.0227363 0.00987044 0)
(0.0166957 0.00746182 0)
(0.0118219 0.00537499 0)
(0.00804796 0.00369457 0)
(0.00524853 0.00242223 0)
(0.00326462 0.00151184 0)
(0.00192585 0.000896057 0)
(0.00106785 0.000503931 0)
(0.000544268 0.000271743 0)
(0.000231423 0.000149514 0)
(2.29838e-05 0.000102623 0)
(0.00633692 -0.0670274 0)
(0.0142613 -0.0662742 0)
(0.0228619 -0.0647777 0)
(0.0320398 -0.0623485 0)
(0.0416132 -0.0587915 0)
(0.0512964 -0.0539314 0)
(0.060683 -0.0476508 0)
(0.0692503 -0.0399375 0)
(0.076376 -0.0309519 0)
(0.0814184 -0.0210638 0)
(0.0838153 -0.0108804 0)
(0.0832245 -0.00119003 0)
(0.0796435 0.00716876 0)
(0.0734488 0.0134931 0)
(0.0653318 0.0174006 0)
(0.0561391 0.018916 0)
(0.046686 0.0184286 0)
(0.0376269 0.0165415 0)
(0.0294046 0.0138938 0)
(0.0222679 0.0110256 0)
(0.0163151 0.0083166 0)
(0.0115367 0.0059828 0)
(0.00784781 0.00410932 0)
(0.00511593 0.0026931 0)
(0.00318153 0.00168059 0)
(0.00187669 0.000995983 0)
(0.0010406 0.00056011 0)
(0.00053043 0.000302037 0)
(0.000225589 0.000166189 0)
(2.24221e-05 0.000114483 0)
(0.00693707 -0.0769026 0)
(0.0156069 -0.0760044 0)
(0.0250018 -0.074221 0)
(0.034999 -0.0713288 0)
(0.0453791 -0.0671005 0)
(0.0558032 -0.0613365 0)
(0.0657968 -0.0539117 0)
(0.0747593 -0.0448332 0)
(0.0819919 -0.0343187 0)
(0.086797 -0.022838 0)
(0.0886015 -0.0111353 0)
(0.0871181 -0.000148507 0)
(0.0824661 0.00916159 0)
(0.075185 0.0160329 0)
(0.0661217 0.0201062 0)
(0.0562248 0.0214939 0)
(0.0463366 0.0206993 0)
(0.0370758 0.0184278 0)
(0.0288181 0.0153899 0)
(0.021742 0.0121666 0)
(0.0158912 0.00915521 0)
(0.0112205 0.00657668 0)
(0.00762634 0.00451364 0)
(0.00496938 0.00295686 0)
(0.00308974 0.00184481 0)
(0.00182241 0.0010932 0)
(0.00101052 0.000614756 0)
(0.000515151 0.000331501 0)
(0.000219149 0.000182411 0)
(2.17991e-05 0.000126038 0)
(0.00765214 -0.0877533 0)
(0.0172095 -0.086684 0)
(0.0275484 -0.0845626 0)
(0.0385158 -0.0811258 0)
(0.0498452 -0.0761105 0)
(0.0611323 -0.0692915 0)
(0.0718197 -0.0605393 0)
(0.0812132 -0.04989 0)
(0.0885239 -0.0376373 0)
(0.0929935 -0.0243756 0)
(0.0940461 -0.0110148 0)
(0.0914738 0.00133595 0)
(0.0855529 0.0115873 0)
(0.0770198 0.018934 0)
(0.0668971 0.0230701 0)
(0.056236 0.0242275 0)
(0.0458933 0.0230445 0)
(0.0364353 0.0203358 0)
(0.0281565 0.01688 0)
(0.0211578 0.0132906 0)
(0.0154242 0.00997546 0)
(0.0108736 0.00715506 0)
(0.00738404 0.00490645 0)
(0.00480924 0.00321278 0)
(0.00298951 0.00200404 0)
(0.00176315 0.00118743 0)
(0.00097768 0.000667721 0)
(0.000498472 0.000360056 0)
(0.000212122 0.000198133 0)
(2.11161e-05 0.000137249 0)
(0.00850363 -0.0997657 0)
(0.0191167 -0.0984929 0)
(0.030576 -0.0959694 0)
(0.0426901 -0.0918867 0)
(0.0551342 -0.0859411 0)
(0.067423 -0.0778808 0)
(0.0788979 -0.0675771 0)
(0.0887524 -0.055108 0)
(0.0960933 -0.0408663 0)
(0.100097 -0.0256032 0)
(0.100198 -0.0104291 0)
(0.0963022 0.00335168 0)
(0.0888843 0.0145174 0)
(0.0789193 0.0222438 0)
(0.0676235 0.0263169 0)
(0.0561462 0.0271255 0)
(0.0453395 0.0254645 0)
(0.0356966 0.0222628 0)
(0.0274163 0.0183606 0)
(0.0205144 0.0143946 0)
(0.0149142 0.0107751 0)
(0.0104967 0.00771635 0)
(0.00712143 0.00528667 0)
(0.00463592 0.00346015 0)
(0.00288109 0.00215784 0)
(0.00169907 0.00127843 0)
(0.000942174 0.000718862 0)
(0.00048044 0.000387628 0)
(0.000204526 0.000213322 0)
(2.03744e-05 0.00014809 0)
(0.00951821 -0.11316 0)
(0.0213877 -0.111643 0)
(0.0341772 -0.108638 0)
(0.0476466 -0.103783 0)
(0.0613976 -0.0967288 0)
(0.0748454 -0.0871974 0)
(0.0872083 -0.075068 0)
(0.0975455 -0.0604776 0)
(0.104843 -0.0439476 0)
(0.108208 -0.0264265 0)
(0.107108 -0.00926669 0)
(0.101605 0.00600224 0)
(0.0924309 0.0180314 0)
(0.0808405 0.0260108 0)
(0.0682604 0.029869 0)
(0.0559256 0.0301932 0)
(0.0446573 0.0279568 0)
(0.0348508 0.0242038 0)
(0.0265942 0.0198272 0)
(0.019811 0.0154753 0)
(0.0143618 0.0115518 0)
(0.0100905 0.00825893 0)
(0.00683913 0.00565322 0)
(0.00444985 0.00369829 0)
(0.00276477 0.00230581 0)
(0.00163034 0.00136594 0)
(0.000904098 0.000768031 0)
(0.000461105 0.000414136 0)
(0.000196384 0.000227929 0)
(1.95753e-05 0.000158531 0)
(0.0107297 -0.128203 0)
(0.0240976 -0.12639 0)
(0.0384685 -0.122802 0)
(0.0535403 -0.117016 0)
(0.0688231 -0.108632 0)
(0.0836091 -0.097346 0)
(0.096967 -0.083055 0)
(0.107796 -0.0659778 0)
(0.114941 -0.0468021 0)
(0.117444 -0.0267248 0)
(0.114829 -0.00739435 0)
(0.107379 0.00940979 0)
(0.0961514 0.0222176 0)
(0.0827298 0.0302854 0)
(0.0687605 0.0337462 0)
(0.0555415 0.0334329 0)
(0.0438278 0.0305163 0)
(0.0338892 0.0261528 0)
(0.0256869 0.0212748 0)
(0.0190473 0.0165291 0)
(0.0137674 0.0123031 0)
(0.00965564 0.00878121 0)
(0.00653779 0.00600507 0)
(0.0042515 0.00392654 0)
(0.00264086 0.00244752 0)
(0.00155715 0.00144973 0)
(0.000863555 0.000815098 0)
(0.000440518 0.000439509 0)
(0.000187719 0.000241913 0)
(1.87195e-05 0.00016854 0)
(0.0121812 -0.145216 0)
(0.0273413 -0.143041 0)
(0.0435969 -0.138742 0)
(0.0605662 -0.131825 0)
(0.0776443 -0.121834 0)
(0.0939721 -0.108442 0)
(0.108438 -0.0915781 0)
(0.119749 -0.0715707 0)
(0.126589 -0.0493224 0)
(0.127933 -0.0263436 0)
(0.123412 -0.00464122 0)
(0.113608 0.0137173 0)
(0.0999886 0.0271733 0)
(0.084521 0.0351171 0)
(0.0690694 0.0379638 0)
(0.0549578 0.0368421 0)
(0.0428317 0.033135 0)
(0.0328029 0.028102 0)
(0.0246916 0.0226976 0)
(0.018223 0.0175522 0)
(0.0131317 0.0130266 0)
(0.00919303 0.00928159 0)
(0.00621811 0.0063412 0)
(0.00404139 0.00414425 0)
(0.0025097 0.00258259 0)
(0.0014797 0.00152955 0)
(0.000820657 0.000859937 0)
(0.000418737 0.00046368 0)
(0.000178556 0.000255241 0)
(1.78079e-05 0.000178089 0)
(0.0139282 -0.164593 0)
(0.0312408 -0.16197 0)
(0.0497493 -0.156795 0)
(0.0689694 -0.148491 0)
(0.0881513 -0.136545 0)
(0.106251 -0.120613 0)
(0.121941 -0.100672 0)
(0.133699 -0.0771962 0)
(0.140021 -0.0513644 0)
(0.139821 -0.0250858 0)
(0.132904 -0.000807595 0)
(0.120255 0.0190915 0)
(0.103865 0.0330035 0)
(0.0861327 0.0405534 0)
(0.0691245 0.0425311 0)
(0.0541361 0.0404127 0)
(0.0416492 0.0358012 0)
(0.031584 0.0300416 0)
(0.023606 0.024089 0)
(0.0173382 0.0185402 0)
(0.0124558 0.0137195 0)
(0.00870365 0.00975846 0)
(0.00588087 0.00666062 0)
(0.00382006 0.00435081 0)
(0.00237162 0.00271064 0)
(0.00139819 0.0016052 0)
(0.00077552 0.00090242 0)
(0.00039582 0.000486578 0)
(0.000168919 0.000267872 0)
(1.68409e-05 0.000187153 0)
(0.0160443 -0.18682 0)
(0.0359554 -0.183637 0)
(0.0571673 -0.177369 0)
(0.0790612 -0.167351 0)
(0.100707 -0.15301 0)
(0.120838 -0.133998 0)
(0.137868 -0.110362 0)
(0.150003 -0.0827649 0)
(0.155516 -0.0527364 0)
(0.153271 -0.0226985 0)
(0.143338 0.00436477 0)
(0.127259 0.0257262 0)
(0.107677 0.0398204 0)
(0.0874667 0.0466367 0)
(0.0688554 0.0474496 0)
(0.0530358 0.0441307 0)
(0.0402609 0.0384995 0)
(0.0302248 0.0319603 0)
(0.0224283 0.0254416 0)
(0.0163934 0.0194889 0)
(0.0117406 0.0143794 0)
(0.00818854 0.0102103 0)
(0.00552692 0.00696236 0)
(0.00358808 0.00454563 0)
(0.002227 0.00283131 0)
(0.00131285 0.00167645 0)
(0.000728267 0.00094243 0)
(0.00037183 0.000508144 0)
(0.000158837 0.000279772 0)
(1.58182e-05 0.000195702 0)
(0.0186277 -0.212508 0)
(0.041698 -0.208608 0)
(0.0661677 -0.200958 0)
(0.0912408 -0.188797 0)
(0.115765 -0.171506 0)
(0.138212 -0.148746 0)
(0.156695 -0.120663 0)
(0.169093 -0.0881491 0)
(0.173403 -0.0531839 0)
(0.16846 -0.0188517 0)
(0.15473 0.0111813 0)
(0.134522 0.0338446 0)
(0.111289 0.0477396 0)
(0.0884053 0.0534007 0)
(0.0681842 0.0527102 0)
(0.0516148 0.0479742 0)
(0.0386485 0.0412106 0)
(0.0287193 0.0338449 0)
(0.0211574 0.0267475 0)
(0.0153895 0.0203937 0)
(0.0109875 0.0150036 0)
(0.0076489 0.0106355 0)
(0.00515712 0.0072455 0)
(0.00334607 0.00472816 0)
(0.00207624 0.00294426 0)
(0.00122391 0.00174313 0)
(0.000679027 0.000979863 0)
(0.000346833 0.000528323 0)
(0.000148338 0.00029091 0)
(1.47385e-05 0.00020371 0)
(0.0218188 -0.242434 0)
(0.0487641 -0.237595 0)
(0.0771755 -0.228159 0)
(0.106023 -0.213287 0)
(0.133889 -0.192338 0)
(0.158957 -0.165014 0)
(0.178998 -0.131571 0)
(0.191492 -0.0931734 0)
(0.194075 -0.0523709 0)
(0.185572 -0.0131297 0)
(0.167059 0.0200258 0)
(0.141896 0.0437 0)
(0.114525 0.0568752 0)
(0.0888097 0.0608646 0)
(0.0670258 0.0582898 0)
(0.0498312 0.0519126 0)
(0.0367953 0.0439107 0)
(0.0270626 0.0356804 0)
(0.0197935 0.0279982 0)
(0.0143279 0.0212498 0)
(0.010198 0.0155894 0)
(0.00708605 0.0110326 0)
(0.00477246 0.00750915 0)
(0.00309468 0.00489784 0)
(0.00191974 0.00304917 0)
(0.00113161 0.00180503 0)
(0.000627938 0.00101461 0)
(0.000320898 0.000547051 0)
(0.000137453 0.000301251 0)
(1.35995e-05 0.000211151 0)
(0.0258308 -0.277622 0)
(0.0575865 -0.271497 0)
(0.0907784 -0.259691 0)
(0.124079 -0.241335 0)
(0.155777 -0.215834 0)
(0.183772 -0.182959 0)
(0.205471 -0.143068 0)
(0.217841 -0.0976067 0)
(0.218012 -0.0498487 0)
(0.204811 -0.004981 0)
(0.180252 0.031368 0)
(0.149165 0.0555754 0)
(0.117161 0.0673328 0)
(0.0885188 0.0690277 0)
(0.0652898 0.0641494 0)
(0.0476443 0.0559063 0)
(0.0346872 0.0465724 0)
(0.0252518 0.0374505 0)
(0.0183374 0.0291846 0)
(0.0132105 0.0220524 0)
(0.00937405 0.0161344 0)
(0.00650138 0.0114001 0)
(0.00437394 0.00775248 0)
(0.00283457 0.00505419 0)
(0.00175792 0.00314576 0)
(0.0010362 0.00186199 0)
(0.000575137 0.00104657 0)
(0.000294096 0.000564277 0)
(0.000126212 0.00031077 0)
(1.23968e-05 0.000217995 0)
(0.03103 -0.319478 0)
(0.0688491 -0.311449 0)
(0.107812 -0.296381 0)
(0.146289 -0.273477 0)
(0.182267 -0.242306 0)
(0.213479 -0.202742 0)
(0.236942 -0.155128 0)
(0.248938 -0.10116 0)
(0.245804 -0.0450217 0)
(0.226373 0.00632107 0)
(0.194151 0.0457844 0)
(0.15602 0.0697778 0)
(0.118915 0.0791962 0)
(0.0873501 0.0778607 0)
(0.0628825 0.07023 0)
(0.0450171 0.0599053 0)
(0.0323137 0.0491639 0)
(0.0232862 0.0391377 0)
(0.0167911 0.0302975 0)
(0.0120398 0.0227967 0)
(0.00851758 0.0166359 0)
(0.00589643 0.0117367 0)
(0.00396261 0.00797469 0)
(0.00256646 0.00519674 0)
(0.00159122 0.00323373 0)
(0.000937948 0.00191385 0)
(0.000520768 0.00107567 0)
(0.000266499 0.000579962 0)
(0.000114648 0.000319444 0)
(1.11241e-05 0.000224219 0)
(0.0382457 -0.37012 0)
(0.0837553 -0.358771 0)
(0.129449 -0.339142 0)
(0.173828 -0.310167 0)
(0.214299 -0.271991 0)
(0.248991 -0.224532 0)
(0.274372 -0.16774 0)
(0.285794 -0.103496 0)
(0.278205 -0.0370681 0)
(0.250417 0.0217464 0)
(0.208459 0.0639759 0)
(0.162028 0.0866231 0)
(0.119442 0.0925099 0)
(0.0851019 0.0872958 0)
(0.0597113 0.0764489 0)
(0.0419181 0.0638485 0)
(0.0296689 0.0516499 0)
(0.0211675 0.0407232 0)
(0.0151581 0.0313275 0)
(0.0108187 0.0234781 0)
(0.00763096 0.0170916 0)
(0.00527287 0.0120411 0)
(0.00353962 0.00817507 0)
(0.00229107 0.00532506 0)
(0.0014201 0.00331285 0)
(0.000837119 0.00196047 0)
(0.00046498 0.00110182 0)
(0.000238184 0.000594059 0)
(0.000102793 0.000327241 0)
(9.77202e-06 0.00022979 0)
(0.0498904 -0.433415 0)
(0.103915 -0.413982 0)
(0.156671 -0.389523 0)
(0.208259 -0.351419 0)
(0.252616 -0.304942 0)
(0.291303 -0.248599 0)
(0.318818 -0.180955 0)
(0.329752 -0.104302 0)
(0.316222 -0.0248551 0)
(0.277022 0.0426137 0)
(0.222669 0.0867812 0)
(0.166599 0.106412 0)
(0.118325 0.107255 0)
(0.0815594 0.0972163 0)
(0.0556889 0.0826982 0)
(0.0383247 0.0676647 0)
(0.0267524 0.0539922 0)
(0.0189004 0.042188 0)
(0.013443 0.0322652 0)
(0.00955094 0.0240918 0)
(0.0067167 0.0174991 0)
(0.00463242 0.0123121 0)
(0.00310611 0.00835295 0)
(0.00200916 0.00543877 0)
(0.00124502 0.00338288 0)
(0.000733985 0.00200171 0)
(0.000407926 0.00112495 0)
(0.000209228 0.000606534 0)
(9.06815e-05 0.000334142 0)
(8.32688e-06 0.000234681 0)
(0.0563004 -0.510919 0)
(0.106733 -0.476474 0)
(0.17677 -0.460054 0)
(0.240649 -0.397651 0)
(0.294218 -0.341844 0)
(0.341672 -0.275628 0)
(0.371126 -0.194874 0)
(0.382729 -0.103537 0)
(0.361302 -0.00659236 0)
(0.306047 0.0707527 0)
(0.235952 0.115165 0)
(0.168942 0.12938 0)
(0.11508 0.123318 0)
(0.0765063 0.107446 0)
(0.0507395 0.0888413 0)
(0.0342266 0.0712723 0)
(0.0235708 0.0561509 0)
(0.0164924 0.043513 0)
(0.0116515 0.0331014 0)
(0.00824053 0.0246336 0)
(0.00577762 0.0178564 0)
(0.00397695 0.0125486 0)
(0.00266332 0.00850771 0)
(0.0017215 0.00553752 0)
(0.00106648 0.00344361 0)
(0.00062883 0.00203747 0)
(0.000349763 0.00114499 0)
(0.00017971 0.000617347 0)
(7.83466e-05 0.000340126 0)
(6.77031e-06 0.000238865 0)
(0.00815258 -0.539757 0)
(-0.000453253 -0.498356 0)
(-0.0488273 -0.546029 0)
(0.170088 -0.507659 0)
(0.288749 -0.402966 0)
(0.395225 -0.310913 0)
(0.429786 -0.209964 0)
(0.447982 -0.102205 0)
(0.415555 0.0209047 0)
(0.336816 0.108655 0)
(0.247006 0.150164 0)
(0.168034 0.155626 0)
(0.109163 0.140445 0)
(0.0697423 0.117738 0)
(0.0448056 0.0947125 0)
(0.0296295 0.0745813 0)
(0.0201378 0.0580854 0)
(0.0139543 0.0446793 0)
(0.00979124 0.0338276 0)
(0.00689228 0.0250995 0)
(0.00481677 0.0181614 0)
(0.00330843 0.0127495 0)
(0.00221251 0.00863882 0)
(0.00142891 0.005621 0)
(0.000884957 0.00349487 0)
(0.000521944 0.00206764 0)
(0.000290651 0.0011619 0)
(0.000149714 0.000626471 0)
(6.58204e-05 0.00034517 0)
(5.07757e-06 0.000242305 0)
(0.0440723 -0.587033 0)
(0.134704 -0.567993 0)
(0.24415 -0.586385 0)
(0.243507 -0.580574 0)
(0.302202 -0.520015 0)
(0.40295 -0.380504 0)
(0.483056 -0.235508 0)
(0.532713 -0.104262 0)
(0.481605 0.063658 0)
(0.367534 0.159452 0)
(0.253887 0.192763 0)
(0.162595 0.185003 0)
(0.0999973 0.158197 0)
(0.0611112 0.127776 0)
(0.0378539 0.100117 0)
(0.0245594 0.0774966 0)
(0.016475 0.0597565 0)
(0.0112999 0.0456694 0)
(0.00787051 0.0344358 0)
(0.00551138 0.0254857 0)
(0.00383735 0.0184125 0)
(0.0026289 0.0129141 0)
(0.00175498 0.00874585 0)
(0.00113219 0.00568894 0)
(0.000700956 0.00353651 0)
(0.000413615 0.00209213 0)
(0.000230752 0.00117561 0)
(0.000119319 0.000633884 0)
(5.31349e-05 0.000349258 0)
(3.21872e-06 0.000244967 0)
(0.0539176 -0.668703 0)
(0.12921 -0.660211 0)
(0.209806 -0.647209 0)
(0.269724 -0.618625 0)
(0.387895 -0.589424 0)
(0.522563 -0.423573 0)
(0.676451 -0.303909 0)
(0.667633 -0.101824 0)
(0.563167 0.111088 0)
(0.397503 0.224145 0)
(0.254205 0.243964 0)
(0.151114 0.216938 0)
(0.0870085 0.175889 0)
(0.0505449 0.137186 0)
(0.0298784 0.104826 0)
(0.0190677 0.0799224 0)
(0.0126116 0.0611283 0)
(0.00854604 0.0464674 0)
(0.00589902 0.0349191 0)
(0.00410349 0.0257893 0)
(0.00284274 0.0186083 0)
(0.00194045 0.0130416 0)
(0.00129204 0.00882841 0)
(0.000832164 0.00574113 0)
(0.000514976 0.00356839 0)
(0.000304134 0.00211087 0)
(0.000170229 0.00118611 0)
(8.86092e-05 0.000639566 0)
(4.03186e-05 0.000352379 0)
(1.15743e-06 0.000246819 0)
(0.0609843 -0.757874 0)
(0.13404 -0.752783 0)
(0.225072 -0.73895 0)
(0.334584 -0.73522 0)
(0.474644 -0.703814 0)
(0.59819 -0.56289 0)
(0.876698 -0.427642 0)
(0.877652 0.0244946 0)
(0.741059 0.201833 0)
(0.395561 0.30742 0)
(0.255656 0.304287 0)
(0.13249 0.249865 0)
(0.0696867 0.192354 0)
(0.0381367 0.145507 0)
(0.020901 0.108525 0)
(0.0132364 0.0817563 0)
(0.00858308 0.0621641 0)
(0.00571217 0.0470569 0)
(0.00388752 0.0352704 0)
(0.00267474 0.026007 0)
(0.00183653 0.0187473 0)
(0.00124527 0.0131315 0)
(0.000825061 0.00888626 0)
(0.000529687 0.00577746 0)
(0.000327526 0.00359047 0)
(0.0001938 0.00212383 0)
(0.000109246 0.00119337 0)
(5.76676e-05 0.000643502 0)
(2.74001e-05 0.000354516 0)
(-1.14898e-06 0.000247826 0)
(0.0694126 -0.861407 0)
(0.149285 -0.850968 0)
(0.257471 -0.879977 0)
(0.400017 -0.852573 0)
(0.541461 -0.776132 0)
(0.610602 -0.788419 0)
(0.447535 -0.447721 0)
(0.857956 0.292794 0)
(0.676154 0.386455 0)
(0.401092 0.401416 0)
(0.221977 0.371587 0)
(0.116794 0.283603 0)
(0.0518713 0.206481 0)
(0.0241028 0.151679 0)
(0.0109411 0.109846 0)
(0.00717438 0.0820924 0)
(0.00442554 0.0621384 0)
(0.00281754 0.0468599 0)
(0.00184553 0.0350401 0)
(0.00123018 0.0257974 0)
(0.00082161 0.0185773 0)
(0.000545272 0.0130031 0)
(0.000355393 0.00879463 0)
(0.000225718 0.00571519 0)
(0.000139272 0.0035505 0)
(8.31129e-05 0.00209974 0)
(4.81466e-05 0.00117962 0)
(2.67241e-05 0.000636124 0)
(1.45111e-05 0.000350351 0)
(-3.00135e-06 0.00024777 0)
(-0.000884204 0.000326246 0)
(-0.000960121 0.000569225 0)
(-0.000979288 0.00104862 0)
(-0.000963899 0.00187122 0)
(-0.000930438 0.00318222 0)
(-0.000906756 0.00515558 0)
(-0.000911655 0.00798554 0)
(-0.000951266 0.0118678 0)
(-0.00104895 0.0170282 0)
(-0.00116545 0.0236937 0)
(-0.0013354 0.0320885 0)
(-0.00157918 0.0425197 0)
(-0.0019486 0.0559035 0)
(-0.00244575 0.0746341 0)
(0.00309943 0.101252 0)
(-0.00834159 0.144535 0)
(-0.0513331 0.195952 0)
(-0.024653 0.284179 0)
(-0.169238 0.388135 0)
(-0.358921 0.500242 0)
(-0.616871 0.504991 0)
(-1.06858 -0.0736773 0)
(-0.362407 -0.357245 0)
(-0.234258 -0.618914 0)
(-0.378219 -0.788411 0)
(-0.462703 -0.891344 0)
(-0.467114 -0.931935 0)
(-0.400387 -0.953967 0)
(-0.238213 -0.989759 0)
(-0.0319425 -1.00931 0)
(-0.00368044 0.000318302 0)
(-0.00449529 0.000566977 0)
(-0.00551351 0.00105657 0)
(-0.00690161 0.00189623 0)
(-0.00868337 0.00323811 0)
(-0.0109778 0.00525586 0)
(-0.0139827 0.00815566 0)
(-0.0180457 0.0121481 0)
(-0.0232438 0.0173929 0)
(-0.0295316 0.0242912 0)
(-0.0390578 0.0333452 0)
(-0.0573032 0.0448146 0)
(-0.0964976 0.06061 0)
(-0.468507 0.11237 0)
(-0.435749 0.0996976 0)
(-0.169084 0.137621 0)
(-0.27496 0.179605 0)
(0.0562434 0.308999 0)
(-0.132454 0.416237 0)
(-0.351244 0.574917 0)
(-0.505965 0.525334 0)
(-0.53035 0.0665703 0)
(-0.307249 -0.462666 0)
(-0.0794579 -0.626184 0)
(-0.109186 -0.723887 0)
(-0.232702 -0.856016 0)
(-0.293285 -0.932141 0)
(-0.253358 -1.00594 0)
(-0.182997 -1.0936 0)
(-0.0222288 -1.15039 0)
(-0.00480285 0.000332064 0)
(-0.00591416 0.000602277 0)
(-0.00731684 0.00112528 0)
(-0.00926848 0.00200754 0)
(-0.0118236 0.00340885 0)
(-0.0151723 0.00549259 0)
(-0.0196177 0.00848243 0)
(-0.0257211 0.012653 0)
(-0.0340002 0.0180882 0)
(-0.0451927 0.0253258 0)
(-0.0629958 0.0353864 0)
(-0.097403 0.0495928 0)
(-0.184411 0.0762771 0)
(-0.596384 0.306 0)
(-2.27813 0.230438 0)
(-1.76993 -0.161125 0)
(-0.636257 0.166742 0)
(-0.482944 0.247553 0)
(-0.0664515 0.456899 0)
(-0.332073 0.666305 0)
(-0.566397 0.596796 0)
(-0.419842 -0.0594143 0)
(-0.297751 -0.558179 0)
(-0.0439465 -0.682109 0)
(0.062371 -0.701936 0)
(0.0263281 -0.813122 0)
(-0.0132117 -0.918053 0)
(-0.0256414 -1.03702 0)
(-0.0251843 -1.1071 0)
(0.000646559 -1.20161 0)
(-0.00512294 0.000350746 0)
(-0.00627684 0.000647918 0)
(-0.00778332 0.00121421 0)
(-0.00988565 0.00215105 0)
(-0.0126623 0.00362958 0)
(-0.0163256 0.00580286 0)
(-0.0211964 0.00891303 0)
(-0.0278624 0.0133229 0)
(-0.0369527 0.0190403 0)
(-0.0493745 0.0267977 0)
(-0.0694571 0.0383143 0)
(-0.108455 0.0565507 0)
(-0.205228 0.0997507 0)
(-0.517607 0.444099 0)
(-2.15404 0.459419 0)
(-1.40689 -0.431587 0)
(-0.823746 0.0678085 0)
(-0.570285 0.160967 0)
(0.38195 0.299944 0)
(-0.313046 0.782711 0)
(-0.683046 0.663593 0)
(-0.729807 0.0568252 0)
(-0.257617 -0.731003 0)
(-0.0483859 -0.757278 0)
(0.0986526 -0.742443 0)
(0.163551 -0.801091 0)
(0.16025 -0.909626 0)
(0.134915 -1.03023 0)
(0.103184 -1.09912 0)
(0.00862896 -1.17738 0)
(-0.0051998 0.000372018 0)
(-0.00630364 0.000702042 0)
(-0.00783956 0.00131669 0)
(-0.00997466 0.0023115 0)
(-0.0128057 0.00387178 0)
(-0.016534 0.00614743 0)
(-0.0214478 0.0093942 0)
(-0.0280624 0.0140674 0)
(-0.0370825 0.0201234 0)
(-0.049509 0.0285137 0)
(-0.0696113 0.0416801 0)
(-0.107958 0.0643735 0)
(-0.197624 0.123875 0)
(-0.383668 0.498754 0)
(-1.06204 0.584644 0)
(-0.730967 -0.574344 0)
(-0.549153 0.0409832 0)
(-0.581711 0.123914 0)
(-0.507601 0.249326 0)
(-0.295708 0.912016 0)
(-0.671241 0.660021 0)
(-0.999446 -0.227225 0)
(-0.302752 -0.864899 0)
(-0.0446954 -0.840185 0)
(0.0931789 -0.806107 0)
(0.181466 -0.826477 0)
(0.207958 -0.907457 0)
(0.189645 -0.990554 0)
(0.126082 -1.04715 0)
(0.0185946 -1.08166 0)
(-0.00522565 0.000394958 0)
(-0.00626622 0.000764456 0)
(-0.00781843 0.00143046 0)
(-0.00996456 0.00248344 0)
(-0.0128129 0.0041236 0)
(-0.0165405 0.00650785 0)
(-0.0213902 0.00989938 0)
(-0.0277826 0.0148352 0)
(-0.0364548 0.0212656 0)
(-0.0485118 0.0303649 0)
(-0.0678752 0.0452352 0)
(-0.103557 0.07233 0)
(-0.17862 0.144808 0)
(-0.254198 0.486545 0)
(0.0714542 0.612895 0)
(-0.192302 -0.518938 0)
(-0.403326 0.0395296 0)
(-0.47356 0.138206 0)
(-0.424431 0.358317 0)
(-0.475484 0.890761 0)
(-0.686931 0.704774 0)
(-0.71815 -0.905019 0)
(-0.261307 -1.05368 0)
(-0.0173347 -0.92619 0)
(0.0958914 -0.863608 0)
(0.161312 -0.860951 0)
(0.184875 -0.910696 0)
(0.166874 -0.959591 0)
(0.10884 -0.97538 0)
(0.0160418 -0.973087 0)
(-0.00523885 0.000419875 0)
(-0.00622573 0.000835052 0)
(-0.0077891 0.0015547 0)
(-0.00994177 0.00266634 0)
(-0.0127912 0.00438373 0)
(-0.0164869 0.00688048 0)
(-0.0212291 0.0104241 0)
(-0.0273518 0.015614 0)
(-0.035572 0.0224426 0)
(-0.0470864 0.0322984 0)
(-0.0652806 0.0488461 0)
(-0.0971396 0.0799379 0)
(-0.154383 0.160547 0)
(-0.151972 0.443793 0)
(0.521108 0.506757 0)
(0.0438549 -0.328523 0)
(-0.329456 0.0673563 0)
(-0.465789 0.154212 0)
(-0.175899 0.537465 0)
(-0.599536 0.78609 0)
(-0.76817 0.740409 0)
(-0.621826 -1.34753 0)
(-0.13773 -1.25276 0)
(0.0454532 -1.00003 0)
(0.114655 -0.904656 0)
(0.145976 -0.882707 0)
(0.147801 -0.906262 0)
(0.117308 -0.925947 0)
(0.0700194 -0.913959 0)
(0.0102911 -0.888585 0)
(-0.00524402 0.000447452 0)
(-0.00618928 0.000913633 0)
(-0.00775759 0.00168892 0)
(-0.00991321 0.00286056 0)
(-0.0127463 0.00465395 0)
(-0.0163821 0.00726561 0)
(-0.0209815 0.0109683 0)
(-0.0268047 0.0164026 0)
(-0.034504 0.0236423 0)
(-0.045321 0.0342728 0)
(-0.0619573 0.0523977 0)
(-0.089073 0.0867752 0)
(-0.127779 0.170291 0)
(-0.0788688 0.391703 0)
(0.40928 0.374275 0)
(0.0895008 -0.139947 0)
(-0.266996 0.123984 0)
(-0.494969 0.202956 0)
(-0.295447 0.325649 0)
(-0.867079 0.973401 0)
(-0.976129 1.3738 0)
(0.159031 -1.46528 0)
(0.13087 -1.34908 0)
(0.14328 -1.03381 0)
(0.14931 -0.92043 0)
(0.143921 -0.884176 0)
(0.121767 -0.885301 0)
(0.0803898 -0.886686 0)
(0.0376481 -0.867452 0)
(0.00532988 -0.840841 0)
(-0.00524061 0.000478413 0)
(-0.00615519 0.00100013 0)
(-0.00772134 0.00183295 0)
(-0.00987396 0.0030665 0)
(-0.0126709 0.00493676 0)
(-0.0162194 0.0076644 0)
(-0.0206418 0.0115312 0)
(-0.0261338 0.0171995 0)
(-0.0332537 0.0248507 0)
(-0.0432061 0.0362423 0)
(-0.0579073 0.0557614 0)
(-0.0795688 0.0924542 0)
(-0.100865 0.174115 0)
(-0.0298712 0.339765 0)
(0.280581 0.295261 0)
(0.0932705 -0.000910003 0)
(-0.19557 0.200191 0)
(-0.701651 0.273345 0)
(-1.05955 0.429316 0)
(-1.35398 1.00017 0)
(0.323786 0.462705 0)
(1.00663 -1.40414 0)
(0.404291 -1.24908 0)
(0.251295 -1.00612 0)
(0.193229 -0.903926 0)
(0.154057 -0.863116 0)
(0.113453 -0.849485 0)
(0.0672677 -0.841047 0)
(0.0261066 -0.829247 0)
(0.00359316 -0.81774 0)
(-0.0052283 0.000513334 0)
(-0.00612178 0.00109452 0)
(-0.00767942 0.00198661 0)
(-0.00981894 0.00328426 0)
(-0.0125601 0.00523393 0)
(-0.0159957 0.00807751 0)
(-0.0202065 0.0121097 0)
(-0.0253308 0.0179983 0)
(-0.0318163 0.0260472 0)
(-0.0407275 0.0381491 0)
(-0.0531485 0.0587893 0)
(-0.0689332 0.0966485 0)
(-0.0752512 0.172719 0)
(0.00163203 0.292905 0)
(0.200422 0.251407 0)
(0.0955088 0.0929346 0)
(-0.0998733 0.273977 0)
(-0.451539 0.673745 0)
(-1.59241 0.778332 0)
(-0.132859 0.21595 0)
(0.679868 0.411888 0)
(1.14495 -1.0187 0)
(0.552316 -1.03519 0)
(0.335295 -0.922809 0)
(0.234763 -0.855275 0)
(0.171207 -0.821254 0)
(0.119572 -0.804025 0)
(0.0735865 -0.792677 0)
(0.0341628 -0.789615 0)
(0.00479003 -0.792318 0)
(-0.00520576 0.000552572 0)
(-0.00608494 0.00119682 0)
(-0.00762935 0.00214979 0)
(-0.00974232 0.00351397 0)
(-0.0124107 0.00554649 0)
(-0.0157093 0.008505 0)
(-0.0196737 0.0126987 0)
(-0.0243899 0.0187884 0)
(-0.0301834 0.0272057 0)
(-0.0378785 0.0399263 0)
(-0.0477313 0.0613287 0)
(-0.0575482 0.0991357 0)
(-0.0519868 0.167162 0)
(0.0216486 0.253029 0)
(0.15266 0.224897 0)
(0.103565 0.151077 0)
(0.0118165 0.310329 0)
(0.182321 0.771397 0)
(0.500087 0.50075 0)
(0.792962 -0.137139 0)
(0.893181 -0.213403 0)
(0.906337 -0.683703 0)
(0.574819 -0.824506 0)
(0.377068 -0.810636 0)
(0.263039 -0.782823 0)
(0.187217 -0.763365 0)
(0.129572 -0.751382 0)
(0.0834196 -0.743945 0)
(0.0446697 -0.742723 0)
(0.00622384 -0.744973 0)
(-0.00517028 0.000596332 0)
(-0.00603849 0.00130715 0)
(-0.00756462 0.00232237 0)
(-0.0096361 0.00375571 0)
(-0.0122166 0.00587441 0)
(-0.0153543 0.00894507 0)
(-0.019039 0.0132909 0)
(-0.0233041 0.0195551 0)
(-0.0283429 0.028292 0)
(-0.0346646 0.0414939 0)
(-0.0417461 0.0632269 0)
(-0.0458381 0.0998062 0)
(-0.0316017 0.158587 0)
(0.0347898 0.2199 0)
(0.126232 0.205886 0)
(0.117098 0.180168 0)
(0.108017 0.301861 0)
(0.330827 0.534428 0)
(0.937589 0.318723 0)
(0.823656 -0.126654 0)
(0.784247 -0.287719 0)
(0.718338 -0.525982 0)
(0.533311 -0.661168 0)
(0.380055 -0.695671 0)
(0.272971 -0.69852 0)
(0.195409 -0.694826 0)
(0.13522 -0.691231 0)
(0.0857909 -0.689352 0)
(0.0431455 -0.687953 0)
(0.00552215 -0.686134 0)
(-0.00512183 0.000644787 0)
(-0.00598064 0.0014257 0)
(-0.00748141 0.00250443 0)
(-0.00949698 0.00400979 0)
(-0.0119754 0.00621678 0)
(-0.014927 0.00939396 0)
(-0.0183004 0.013876 0)
(-0.0220693 0.0202811 0)
(-0.0262864 0.0292672 0)
(-0.0311068 0.0427662 0)
(-0.0353222 0.0643484 0)
(-0.0342226 0.0986725 0)
(-0.0142018 0.14802 0)
(0.0441322 0.19228 0)
(0.113462 0.188954 0)
(0.132317 0.186353 0)
(0.173418 0.264641 0)
(0.367948 0.353582 0)
(0.666779 0.193799 0)
(0.699781 -0.0913028 0)
(0.661661 -0.268882 0)
(0.58956 -0.432053 0)
(0.471238 -0.54114 0)
(0.357474 -0.591781 0)
(0.265843 -0.612541 0)
(0.193493 -0.620952 0)
(0.134792 -0.624546 0)
(0.0855401 -0.626204 0)
(0.0429189 -0.62718 0)
(0.00525099 -0.627783 0)
(-0.00506143 0.000698076 0)
(-0.00591088 0.00155241 0)
(-0.00737773 0.00269633 0)
(-0.00932453 0.00427639 0)
(-0.0116866 0.00657171 0)
(-0.0144264 0.0098459 0)
(-0.0174578 0.0144416 0)
(-0.0206842 0.0209465 0)
(-0.0240129 0.0300886 0)
(-0.0272414 0.043658 0)
(-0.0286173 0.0645891 0)
(-0.0230686 0.0958468 0)
(0.000379526 0.136238 0)
(0.0514255 0.168618 0)
(0.108682 0.171367 0)
(0.145099 0.176022 0)
(0.208188 0.215736 0)
(0.356169 0.229554 0)
(0.524834 0.108125 0)
(0.574134 -0.0821898 0)
(0.549888 -0.236602 0)
(0.49014 -0.361989 0)
(0.406707 -0.450304 0)
(0.3216 -0.502411 0)
(0.246369 -0.530992 0)
(0.182604 -0.546594 0)
(0.128485 -0.555315 0)
(0.0818422 -0.560234 0)
(0.040944 -0.562745 0)
(0.00477326 -0.563576 0)
(-0.00498647 0.000756332 0)
(-0.00582459 0.00168671 0)
(-0.00724924 0.00289832 0)
(-0.00911597 0.00455513 0)
(-0.0113469 0.00693571 0)
(-0.0138523 0.0102929 0)
(-0.016512 0.0149729 0)
(-0.0191536 0.021527 0)
(-0.0215383 0.0307084 0)
(-0.0231321 0.0440879 0)
(-0.0218205 0.0638818 0)
(-0.0126879 0.0915117 0)
(0.0124282 0.123814 0)
(0.0574237 0.147533 0)
(0.107713 0.152163 0)
(0.152756 0.155375 0)
(0.219396 0.166433 0)
(0.326491 0.145153 0)
(0.428677 0.0494652 0)
(0.46724 -0.0849717 0)
(0.452271 -0.207349 0)
(0.406816 -0.306245 0)
(0.345332 -0.378547 0)
(0.280499 -0.426478 0)
(0.2197 -0.456623 0)
(0.165378 -0.475228 0)
(0.117485 -0.486637 0)
(0.0752198 -0.493461 0)
(0.0376986 -0.497098 0)
(0.00421443 -0.498345 0)
(-0.00489335 0.000819383 0)
(-0.00571622 0.00182764 0)
(-0.00708963 0.00311015 0)
(-0.00886664 0.00484467 0)
(-0.0109505 0.00730392 0)
(-0.0132036 0.0107258 0)
(-0.0154649 0.0154536 0)
(-0.0174867 0.0219948 0)
(-0.0188907 0.0310771 0)
(-0.0188643 0.0439878 0)
(-0.0151319 0.0622073 0)
(-0.00331695 0.0858895 0)
(0.022202 0.111051 0)
(0.0622503 0.12802 0)
(0.107625 0.1315 0)
(0.154401 0.129688 0)
(0.214943 0.122168 0)
(0.290918 0.0866431 0)
(0.354742 0.00929291 0)
(0.380134 -0.0895964 0)
(0.369326 -0.183526 0)
(0.335219 -0.261241 0)
(0.288927 -0.320139 0)
(0.238842 -0.361857 0)
(0.190004 -0.390173 0)
(0.144712 -0.408899 0)
(0.103603 -0.421026 0)
(0.0666082 -0.428589 0)
(0.0333891 -0.432789 0)
(0.00356692 -0.434276 0)
(-0.00478068 0.000886337 0)
(-0.0055831 0.00197369 0)
(-0.00689568 0.00333037 0)
(-0.00857332 0.00514165 0)
(-0.0104931 0.00766946 0)
(-0.0124781 0.0111346 0)
(-0.0143193 0.0158664 0)
(-0.0156989 0.0223202 0)
(-0.016112 0.0311481 0)
(-0.0145456 0.0433112 0)
(-0.00875408 0.0595951 0)
(0.00487839 0.0792311 0)
(0.0299016 0.0981596 0)
(0.0657175 0.109514 0)
(0.106595 0.110156 0)
(0.150476 0.102859 0)
(0.201084 0.0848099 0)
(0.254325 0.0454863 0)
(0.294404 -0.0176799 0)
(0.309289 -0.0923493 0)
(0.299957 -0.163891 0)
(0.273828 -0.224412 0)
(0.238384 -0.271719 0)
(0.19933 -0.306674 0)
(0.160246 -0.331521 0)
(0.123061 -0.348665 0)
(0.0885977 -0.360182 0)
(0.0571253 -0.367626 0)
(0.0286179 -0.371931 0)
(0.00292043 -0.37349 0)
(-0.00464879 0.000955953 0)
(-0.00542354 0.00212322 0)
(-0.00666598 0.00355624 0)
(-0.00823243 0.00544105 0)
(-0.00997174 0.00802369 0)
(-0.0116736 0.011507 0)
(-0.0130802 0.0161919 0)
(-0.0138099 0.0224722 0)
(-0.0132561 0.03088 0)
(-0.0102976 0.0420354 0)
(-0.00287972 0.0561202 0)
(0.0117788 0.0717896 0)
(0.0356517 0.0853145 0)
(0.0675669 0.0918422 0)
(0.103709 0.0891161 0)
(0.1421 0.077425 0)
(0.182161 0.0544865 0)
(0.218961 0.0164577 0)
(0.243776 -0.0351388 0)
(0.251239 -0.0924038 0)
(0.242376 -0.146918 0)
(0.221726 -0.193675 0)
(0.19415 -0.231061 0)
(0.163512 -0.259468 0)
(0.132373 -0.28025 0)
(0.102257 -0.294973 0)
(0.0739405 -0.305115 0)
(0.0477885 -0.311883 0)
(0.0239186 -0.315972 0)
(0.00231986 -0.317496 0)
(-0.00449638 0.00102763 0)
(-0.00523637 0.00227577 0)
(-0.00640075 0.00378543 0)
(-0.00784453 0.00573826 0)
(-0.00938949 0.00835861 0)
(-0.0107958 0.0118302 0)
(-0.0117623 0.0164108 0)
(-0.011852 0.0224219 0)
(-0.0103922 0.0302434 0)
(-0.00625013 0.0401666 0)
(0.00232603 0.0518934 0)
(0.0172989 0.0638058 0)
(0.0395307 0.0726959 0)
(0.0676284 0.0751076 0)
(0.0987249 0.0692933 0)
(0.130588 0.0548086 0)
(0.161019 0.0306066 0)
(0.185961 -0.0037902 0)
(0.20078 -0.0457267 0)
(0.203325 -0.0899934 0)
(0.194737 -0.1316 0)
(0.177987 -0.167488 0)
(0.156251 -0.196597 0)
(0.132144 -0.219109 0)
(0.107486 -0.235874 0)
(0.0834393 -0.247937 0)
(0.0606379 -0.256356 0)
(0.0393847 -0.262053 0)
(0.0197648 -0.265544 0)
(0.00183812 -0.26685 0)
(-0.00431971 0.00110073 0)
(-0.00501904 0.00243055 0)
(-0.0060985 0.00401522 0)
(-0.0074092 0.00602827 0)
(-0.0087491 0.00866636 0)
(-0.009853 0.0120914 0)
(-0.0103849 0.0165058 0)
(-0.00986769 0.0221463 0)
(-0.00760266 0.0292258 0)
(-0.00253442 0.0377429 0)
(0.00672978 0.0470748 0)
(0.0214046 0.0555312 0)
(0.0416166 0.0605096 0)
(0.0658909 0.0595488 0)
(0.0918398 0.051372 0)
(0.117169 0.0356311 0)
(0.139468 0.0123345 0)
(0.155899 -0.0175363 0)
(0.164144 -0.051366 0)
(0.1636 -0.0856684 0)
(0.155399 -0.117429 0)
(0.141591 -0.144816 0)
(0.1243 -0.167192 0)
(0.105309 -0.184685 0)
(0.085897 -0.197861 0)
(0.0669153 -0.207417 0)
(0.0488314 -0.214052 0)
(0.0318483 -0.218352 0)
(0.0160074 -0.220729 0)
(0.00140924 -0.221522 0)
(-0.00411464 0.00117464 0)
(-0.00476753 0.00258603 0)
(-0.00575604 0.00424206 0)
(-0.00692451 0.0063055 0)
(-0.0080536 0.00893908 0)
(-0.00885683 0.0122776 0)
(-0.00897363 0.0164615 0)
(-0.00790753 0.0216317 0)
(-0.00497735 0.0278355 0)
(0.000725851 0.0348328 0)
(0.0102182 0.041826 0)
(0.0241001 0.0472162 0)
(0.0420192 0.0489854 0)
(0.0625018 0.0454366 0)
(0.0834816 0.0357746 0)
(0.102868 0.0200097 0)
(0.11864 -0.00120549 0)
(0.12902 -0.0264262 0)
(0.132985 -0.0534731 0)
(0.130635 -0.0800132 0)
(0.122996 -0.104208 0)
(0.111534 -0.124984 0)
(0.0977009 -0.141996 0)
(0.0827107 -0.155363 0)
(0.0674436 -0.165472 0)
(0.0524977 -0.17278 0)
(0.0382275 -0.177732 0)
(0.02483 -0.180696 0)
(0.0124023 -0.182069 0)
(0.00102934 -0.182426 0)
(-0.00387771 0.00124862 0)
(-0.00447843 0.00274046 0)
(-0.00537057 0.00446263 0)
(-0.00639076 0.00656345 0)
(-0.00730795 0.00916977 0)
(-0.00782211 0.0123799 0)
(-0.00755989 0.0162691 0)
(-0.00602919 0.0208772 0)
(-0.00260726 0.0261045 0)
(0.00343413 0.0315515 0)
(0.0127306 0.0363412 0)
(0.025434 0.0391039 0)
(0.0409005 0.0383475 0)
(0.057729 0.0329878 0)
(0.0741594 0.0226729 0)
(0.0884754 0.00774787 0)
(0.0992098 -0.0108496 0)
(0.105363 -0.0316952 0)
(0.106611 -0.0531114 0)
(0.103339 -0.073554 0)
(0.0964169 -0.0919068 0)
(0.0869099 -0.107557 0)
(0.0758204 -0.120342 0)
(0.0639851 -0.130377 0)
(0.0520178 -0.13794 0)
(0.0403506 -0.143355 0)
(0.029255 -0.146937 0)
(0.0189004 -0.148972 0)
(0.00937807 -0.149813 0)
(0.000728986 -0.149988 0)
(-0.00360505 0.00132203 0)
(-0.00414897 0.00289128 0)
(-0.00493953 0.00467368 0)
(-0.00580857 0.00679704 0)
(-0.00651929 0.00935198 0)
(-0.00676759 0.0123923 0)
(-0.00618012 0.0159267 0)
(-0.00429389 0.0198978 0)
(-0.000579187 0.0240871 0)
(0.00550044 0.028011 0)
(0.0142471 0.0308192 0)
(0.0254987 0.0314192 0)
(0.0384735 0.0287869 0)
(0.0519072 0.0223264 0)
(0.0643677 0.0120392 0)
(0.0745633 -0.00152159 0)
(0.0815432 -0.017374 0)
(0.0848242 -0.0343092 0)
(0.0844406 -0.051103 0)
(0.0808519 -0.066751 0)
(0.074765 -0.080585 0)
(0.0669554 -0.0922733 0)
(0.0581247 -0.10177 0)
(0.0488538 -0.109194 0)
(0.0395724 -0.114765 0)
(0.0305896 -0.118726 0)
(0.0221032 -0.121314 0)
(0.0142337 -0.12275 0)
(0.00703262 -0.123315 0)
(0.000509367 -0.123417 0)
(-0.00329328 0.0013938 0)
(-0.00377563 0.00303649 0)
(-0.00446114 0.00487082 0)
(-0.00517995 0.00700141 0)
(-0.00569718 0.00948115 0)
(-0.00571476 0.0123141 0)
(-0.00487417 0.0154432 0)
(-0.00276233 0.0187278 0)
(0.00104004 0.0218703 0)
(0.00687379 0.0243597 0)
(0.0147887 0.0254581 0)
(0.0244271 0.0243609 0)
(0.0349859 0.0204418 0)
(0.0453872 0.0134755 0)
(0.0545304 0.00370316 0)
(0.0615194 -0.00823959 0)
(0.0658012 -0.0214699 0)
(0.0672136 -0.03504 0)
(0.0659486 -0.0480961 0)
(0.0624471 -0.0599993 0)
(0.057265 -0.0703646 0)
(0.0509662 -0.0790314 0)
(0.0440413 -0.0860213 0)
(0.0368898 -0.0914565 0)
(0.0298033 -0.0955203 0)
(0.0229904 -0.0984043 0)
(0.0165821 -0.100288 0)
(0.0106577 -0.101334 0)
(0.00525003 -0.101743 0)
(0.000360144 -0.101813 0)
(-0.0029386 0.00146233 0)
(-0.00335548 0.0031728 0)
(-0.00393375 0.00505048 0)
(-0.00450777 0.0071732 0)
(-0.0048526 0.00955577 0)
(-0.00468649 0.0121508 0)
(-0.00368078 0.0148412 0)
(-0.00148973 0.0174199 0)
(0.00219498 0.0195518 0)
(0.00753486 0.0207516 0)
(0.0144145 0.0204399 0)
(0.0223817 0.0180852 0)
(0.0306948 0.013381 0)
(0.0384881 0.0063616 0)
(0.0449646 -0.00259917 0)
(0.0495568 -0.0128802 0)
(0.0519835 -0.0237536 0)
(0.0522601 -0.034519 0)
(0.0506288 -0.044604 0)
(0.0474676 -0.0536196 0)
(0.0431997 -0.0613596 0)
(0.0382307 -0.0677661 0)
(0.0329016 -0.0728957 0)
(0.0274835 -0.0768619 0)
(0.0221687 -0.0798111 0)
(0.0170909 -0.0818892 0)
(0.0123295 -0.0832352 0)
(0.00792829 -0.0839759 0)
(0.00390214 -0.0842604 0)
(0.000252323 -0.0843055 0)
(-0.00253742 0.00152594 0)
(-0.00288567 0.00329724 0)
(-0.0033565 0.00520868 0)
(-0.00379569 0.00731017 0)
(-0.00399664 0.009579 0)
(-0.00370467 0.011918 0)
(-0.00263619 0.0141573 0)
(-0.00052112 0.0160469 0)
(0.00284921 0.0172477 0)
(0.00749801 0.0173444 0)
(0.013215 0.0159269 0)
(0.0195393 0.0127045 0)
(0.0258423 0.00761028 0)
(0.0314695 0.000841365 0)
(0.035886 -0.00717739 0)
(0.0387551 -0.0158997 0)
(0.0399733 -0.0247572 0)
(0.0396361 -0.0332577 0)
(0.0379772 -0.0410328 0)
(0.0352975 -0.047859 0)
(0.0319067 -0.0536416 0)
(0.0280878 -0.0583818 0)
(0.0240711 -0.0621504 0)
(0.0200379 -0.0650492 0)
(0.0161148 -0.0671955 0)
(0.0123896 -0.0686996 0)
(0.00891328 -0.0696601 0)
(0.00571478 -0.0701633 0)
(0.00280212 -0.0703248 0)
(0.000170149 -0.0703318 0)
(-0.00208622 0.00158264 0)
(-0.00236338 0.00340624 0)
(-0.00272842 0.005342 0)
(-0.00304627 0.00741282 0)
(-0.00313809 0.00955945 0)
(-0.00278788 0.0116398 0)
(-0.00176659 0.0134444 0)
(0.0001215 0.014697 0)
(0.00299926 0.0150885 0)
(0.00680457 0.0142892 0)
(0.0112975 0.0120538 0)
(0.0160684 0.00828436 0)
(0.0206264 0.00308069 0)
(0.0245111 -0.00327116 0)
(0.0273837 -0.0103555 0)
(0.02907 -0.0177161 0)
(0.0295597 -0.0249303 0)
(0.0289711 -0.0316643 0)
(0.0274992 -0.0376929 0)
(0.0253689 -0.0428986 0)
(0.0227982 -0.0472527 0)
(0.0199778 -0.0507862 0)
(0.0170584 -0.0535732 0)
(0.0141566 -0.0557044 0)
(0.0113539 -0.0572766 0)
(0.00870621 -0.0583779 0)
(0.00624607 -0.0590874 0)
(0.00399276 -0.0594749 0)
(0.00195147 -0.0596191 0)
(0.000114548 -0.0596372 0)
(-0.00158213 0.00163016 0)
(-0.00178624 0.00349602 0)
(-0.00204829 0.00544792 0)
(-0.00226096 0.00748353 0)
(-0.00228261 0.00951114 0)
(-0.00194628 0.0113532 0)
(-0.0010833 0.0127698 0)
(0.000436312 0.0134825 0)
(0.00266806 0.0132129 0)
(0.00552016 0.0117338 0)
(0.0087745 0.00893448 0)
(0.0121119 0.00485967 0)
(0.0151838 -0.000287214 0)
(0.0176956 -0.00617771 0)
(0.0194467 -0.0124371 0)
(0.0203609 -0.0186968 0)
(0.0204676 -0.0246478 0)
(0.0198719 -0.0300707 0)
(0.0187189 -0.0348346 0)
(0.0171634 -0.0388888 0)
(0.0153506 -0.042243 0)
(0.0134055 -0.0449436 0)
(0.0114253 -0.0470619 0)
(0.00948303 -0.048674 0)
(0.00762445 -0.0498583 0)
(0.00587662 -0.0506851 0)
(0.00424882 -0.0512123 0)
(0.00274173 -0.0514861 0)
(0.00135188 -0.0515693 0)
(8.18062e-05 -0.0515685 0)
(-0.00102284 0.00166602 0)
(-0.0011518 0.00356309 0)
(-0.00131414 0.00552353 0)
(-0.00143759 0.00752681 0)
(-0.00142775 0.00945471 0)
(-0.00117564 0.0111033 0)
(-0.000575138 0.0122147 0)
(0.000448077 0.0125157 0)
(0.00190827 0.0117674 0)
(0.00372716 0.00982313 0)
(0.00574785 0.00667206 0)
(0.00776663 0.00245271 0)
(0.00957372 -0.00256851 0)
(0.0109993 -0.00806156 0)
(0.0119432 -0.0136881 0)
(0.0123789 -0.0191495 0)
(0.0123396 -0.0242174 0)
(0.0118974 -0.0287464 0)
(0.0111427 -0.032664 0)
(0.0101681 -0.0359594 0)
(0.00905737 -0.0386639 0)
(0.00788015 -0.040832 0)
(0.00668779 -0.0425298 0)
(0.00551808 -0.0438215 0)
(0.00439802 -0.0447683 0)
(0.00334946 -0.0454225 0)
(0.00238608 -0.0458226 0)
(0.00151495 -0.0459997 0)
(0.000735515 -0.0460146 0)
(4.03685e-05 -0.0459865 0)
(-0.000407422 0.00168703 0)
(-0.000458555 0.00360187 0)
(-0.000522088 0.00556636 0)
(-0.000568537 0.0075482 0)
(-0.00055943 0.00941315 0)
(-0.00045067 0.0109427 0)
(-0.000200561 0.01187 0)
(0.000218171 0.0119289 0)
(0.000805624 0.0109086 0)
(0.0015237 0.0087136 0)
(0.00230212 0.00538853 0)
(0.00307005 0.00110646 0)
(0.00375801 -0.0038075 0)
(0.00427936 -0.00904863 0)
(0.00461386 -0.0143031 0)
(0.00475504 -0.0193112 0)
(0.00471822 -0.0238889 0)
(0.00453286 -0.0279298 0)
(0.00423417 -0.0313911 0)
(0.0038565 -0.0342794 0)
(0.00342964 -0.0366326 0)
(0.00297828 -0.0385057 0)
(0.00252166 -0.0399649 0)
(0.00207504 -0.0410745 0)
(0.00164885 -0.0418926 0)
(0.00125054 -0.0424686 0)
(0.000885136 -0.0428451 0)
(0.000556775 -0.0430553 0)
(0.000267308 -0.043134 0)
(1.28771e-05 -0.0431425 0)
(0.182619 -0.99382 0)
(0.368402 -0.959666 0)
(0.455422 -0.942391 0)
(0.466556 -0.90484 0)
(0.414604 -0.824441 0)
(0.255074 -0.663809 0)
(0.319017 -0.420466 0)
(0.847783 -0.0228102 0)
(0.60914 0.424997 0)
(0.416566 0.512511 0)
(0.199268 0.428678 0)
(0.0394374 0.308371 0)
(0.0476198 0.214512 0)
(0.0219566 0.157308 0)
(-0.00510266 0.109737 0)
(0.00240198 0.0806331 0)
(0.00200366 0.0600269 0)
(0.00162435 0.0455487 0)
(0.0013538 0.0345164 0)
(0.00118723 0.0256389 0)
(0.00106767 0.018558 0)
(0.000958566 0.0130376 0)
(0.000907993 0.00885813 0)
(0.000892443 0.00577995 0)
(0.000904935 0.00360929 0)
(0.000933416 0.00214881 0)
(0.000949627 0.00121824 0)
(0.000923802 0.000664245 0)
(0.000875144 0.000369789 0)
(0.00878468 0.000230489 0)
(0.146755 -1.11927 0)
(0.230538 -1.02686 0)
(0.294063 -0.955865 0)
(0.254034 -0.876604 0)
(0.142482 -0.762795 0)
(0.065111 -0.642413 0)
(0.210842 -0.523781 0)
(0.413704 -0.186508 0)
(0.556486 0.46604 0)
(0.404663 0.582931 0)
(0.130156 0.477165 0)
(-0.0291653 0.331742 0)
(0.173301 0.210692 0)
(0.196757 0.147313 0)
(0.293743 0.107071 0)
(0.602532 0.101949 0)
(0.104372 0.0655541 0)
(0.0608726 0.0480013 0)
(0.041116 0.0359823 0)
(0.0309478 0.0263278 0)
(0.024618 0.0189344 0)
(0.0193071 0.0133262 0)
(0.0149497 0.00904523 0)
(0.0116527 0.00589346 0)
(0.00913122 0.00367798 0)
(0.00720702 0.00218465 0)
(0.00569326 0.00123665 0)
(0.00450855 0.000669476 0)
(0.00373953 0.000363459 0)
(0.00584446 -0.000256316 0)
(0.0215124 -1.19057 0)
(0.0154138 -1.06726 0)
(0.0163606 -0.946875 0)
(-0.0105206 -0.842223 0)
(-0.0611497 -0.726105 0)
(0.00656464 -0.681494 0)
(0.178617 -0.649701 0)
(0.531497 -0.241957 0)
(0.645856 0.556084 0)
(0.405508 0.657284 0)
(0.0248725 0.552904 0)
(0.4314 0.276619 0)
(0.542874 0.175149 0)
(1.50839 -0.0549878 0)
(2.42697 0.262207 0)
(0.825428 0.328053 0)
(0.208813 0.0852857 0)
(0.105799 0.0535544 0)
(0.0672416 0.0382935 0)
(0.0479385 0.0274472 0)
(0.0362393 0.0196274 0)
(0.0274884 0.0138362 0)
(0.0208919 0.00939034 0)
(0.0160451 0.00614766 0)
(0.0123947 0.00387302 0)
(0.00966198 0.00232032 0)
(0.00754822 0.00133078 0)
(0.00592202 0.00072426 0)
(0.00487885 0.000381444 0)
(0.00482487 -0.000346837 0)
(-0.0865488 -1.14253 0)
(-0.121902 -1.05076 0)
(-0.155979 -0.937913 0)
(-0.162728 -0.828115 0)
(-0.121625 -0.750348 0)
(0.00916176 -0.751688 0)
(0.204369 -0.749718 0)
(0.588777 -0.442892 0)
(0.674221 0.545717 0)
(0.436786 0.744893 0)
(0.0463653 0.530546 0)
(0.458133 0.202655 0)
(0.798608 0.084405 0)
(1.30923 -0.305933 0)
(2.22198 0.393771 0)
(0.628732 0.545679 0)
(0.232274 0.115019 0)
(0.118075 0.0617935 0)
(0.0742507 0.0416387 0)
(0.0522987 0.0290653 0)
(0.0392116 0.0206014 0)
(0.029642 0.014525 0)
(0.0224816 0.00984978 0)
(0.0172211 0.00648084 0)
(0.0132592 0.0041236 0)
(0.0103134 0.00249358 0)
(0.00805476 0.0014492 0)
(0.00632722 0.000794124 0)
(0.00522176 0.000405163 0)
(0.00453468 -0.000334708 0)
(-0.0991507 -1.06251 0)
(-0.172771 -1.00949 0)
(-0.204035 -0.931816 0)
(-0.189637 -0.844097 0)
(-0.116755 -0.806612 0)
(0.00774881 -0.828291 0)
(0.208612 -0.871881 0)
(0.389551 -0.666706 0)
(0.641132 0.484969 0)
(0.442818 0.887925 0)
(1.78172 0.31376 0)
(0.607637 0.155587 0)
(0.564466 0.0642832 0)
(0.710966 -0.428821 0)
(1.04805 0.395423 0)
(0.383041 0.637338 0)
(0.220801 0.144585 0)
(0.117278 0.0709771 0)
(0.0743359 0.0454824 0)
(0.0523311 0.0309728 0)
(0.0391865 0.0217403 0)
(0.0297466 0.0153072 0)
(0.0226997 0.0103668 0)
(0.0174453 0.00684821 0)
(0.0134426 0.00439313 0)
(0.0104536 0.00268195 0)
(0.0081732 0.00157681 0)
(0.00643985 0.000872417 0)
(0.00533308 0.000434458 0)
(0.00452042 -0.000293134 0)
(-0.0830158 -0.97645 0)
(-0.151254 -0.966319 0)
(-0.179887 -0.927859 0)
(-0.16717 -0.870486 0)
(-0.111765 -0.859495 0)
(-0.0135243 -0.904254 0)
(0.186743 -1.01698 0)
(1.02476 -0.836649 0)
(0.758403 0.512392 0)
(0.48179 1.01968 0)
(0.588366 0.314871 0)
(0.483263 0.151569 0)
(0.42134 0.0741238 0)
(0.266467 -0.386564 0)
(-0.122438 0.371611 0)
(0.209355 0.597866 0)
(0.195405 0.16868 0)
(0.111937 0.0801751 0)
(0.0723516 0.0495186 0)
(0.0512034 0.0330418 0)
(0.0384048 0.0229695 0)
(0.0293531 0.0161292 0)
(0.0226035 0.0109118 0)
(0.0174649 0.00722986 0)
(0.0134931 0.00466698 0)
(0.0104956 0.00287701 0)
(0.00821158 0.00170797 0)
(0.0064892 0.000956526 0)
(0.00539094 0.000469283 0)
(0.00458742 -0.000247348 0)
(-0.0511869 -0.90651 0)
(-0.102058 -0.926004 0)
(-0.138389 -0.915498 0)
(-0.145183 -0.88644 0)
(-0.120848 -0.895898 0)
(-0.0629461 -0.967205 0)
(0.0761707 -1.16712 0)
(0.768799 -1.32283 0)
(0.647888 1.35012 0)
(0.617821 1.05671 0)
(-0.122985 0.219406 0)
(0.471063 0.123134 0)
(0.36017 0.106671 0)
(0.0683645 -0.235574 0)
(-0.556143 0.314911 0)
(0.103049 0.511869 0)
(0.164446 0.185073 0)
(0.104221 0.0887863 0)
(0.0693966 0.0535776 0)
(0.0496344 0.0352001 0)
(0.0373846 0.0242549 0)
(0.0288009 0.0169745 0)
(0.0223926 0.0114791 0)
(0.0174086 0.00762424 0)
(0.0135021 0.00494514 0)
(0.0105114 0.00307802 0)
(0.00822587 0.0018424 0)
(0.00651639 0.00104565 0)
(0.00542637 0.000509025 0)
(0.00465563 -0.00020339 0)
(-0.0244734 -0.85904 0)
(-0.0650634 -0.884714 0)
(-0.108437 -0.88802 0)
(-0.136233 -0.883576 0)
(-0.144759 -0.908536 0)
(-0.140096 -0.99634 0)
(-0.126155 -1.2392 0)
(-0.109739 -1.70724 0)
(0.872317 1.31213 0)
(0.862112 1.12602 0)
(0.466692 0.439444 0)
(0.477755 0.152253 0)
(0.312605 0.16825 0)
(0.00357348 -0.0833944 0)
(-0.423002 0.26165 0)
(0.0363951 0.429612 0)
(0.131966 0.19344 0)
(0.0946231 0.096307 0)
(0.065601 0.0575168 0)
(0.0476944 0.0373894 0)
(0.0361844 0.0255747 0)
(0.0281317 0.0178362 0)
(0.0220844 0.0120682 0)
(0.0172858 0.00803412 0)
(0.0134739 0.00523154 0)
(0.0105055 0.0032863 0)
(0.00822229 0.00198173 0)
(0.00652609 0.00113964 0)
(0.00544279 0.000552938 0)
(0.00470769 -0.000162173 0)
(-0.0152465 -0.8257 0)
(-0.0522599 -0.83931 0)
(-0.0984717 -0.848482 0)
(-0.140707 -0.85994 0)
(-0.178698 -0.892188 0)
(-0.227562 -0.975173 0)
(-0.339236 -1.17279 0)
(-0.775484 -1.54607 0)
(-0.497519 0.816302 0)
(1.08814 1.04793 0)
(1.12126 0.585477 0)
(0.833667 0.205512 0)
(0.250268 0.259378 0)
(-0.0266131 0.0372491 0)
(-0.2812 0.234438 0)
(-0.00338912 0.359957 0)
(0.100556 0.19461 0)
(0.0834751 0.102304 0)
(0.0609733 0.0611847 0)
(0.0453595 0.0395504 0)
(0.0347948 0.0269062 0)
(0.0273438 0.0187073 0)
(0.0216777 0.012677 0)
(0.0170964 0.00846168 0)
(0.0134048 0.00553013 0)
(0.010476 0.0035034 0)
(0.00820212 0.00212824 0)
(0.00651989 0.00123877 0)
(0.00544155 0.000600618 0)
(0.00474353 -0.000123709 0)
(-0.0228678 -0.790641 0)
(-0.0599208 -0.791588 0)
(-0.104469 -0.801993 0)
(-0.154406 -0.817894 0)
(-0.213404 -0.847152 0)
(-0.299906 -0.906028 0)
(-0.472727 -1.01172 0)
(-0.932263 -1.10092 0)
(-1.17071 0.051323 0)
(-0.202883 0.050824 0)
(1.66314 0.72277 0)
(1.04721 0.393095 0)
(0.137892 0.356358 0)
(-0.0519992 0.124915 0)
(-0.196976 0.221455 0)
(-0.0260618 0.303812 0)
(0.071912 0.190028 0)
(0.0712051 0.106444 0)
(0.0555519 0.0644133 0)
(0.0426082 0.0416142 0)
(0.0332008 0.0282203 0)
(0.0264268 0.0195769 0)
(0.0211696 0.0133006 0)
(0.0168378 0.00890681 0)
(0.0132895 0.00584357 0)
(0.010418 0.00373063 0)
(0.00816405 0.00228407 0)
(0.0064967 0.00134343 0)
(0.00542255 0.000652046 0)
(0.00476404 -8.79224e-05 0)
(-0.032714 -0.743644 0)
(-0.0708581 -0.743692 0)
(-0.114589 -0.750407 0)
(-0.169023 -0.761821 0)
(-0.239095 -0.780033 0)
(-0.340591 -0.807784 0)
(-0.51188 -0.833671 0)
(-0.817802 -0.765718 0)
(-1.01777 -0.29525 0)
(-0.778889 -0.191719 0)
(-0.572451 0.0101578 0)
(-0.255851 0.835237 0)
(-0.0113713 0.390949 0)
(-0.0797866 0.180372 0)
(-0.149814 0.213073 0)
(-0.0391648 0.259659 0)
(0.046876 0.181325 0)
(0.0582986 0.108537 0)
(0.049414 0.0670329 0)
(0.0394296 0.0435046 0)
(0.0313842 0.0294831 0)
(0.025366 0.0204319 0)
(0.0205558 0.0139316 0)
(0.0165062 0.00936734 0)
(0.0131225 0.0061733 0)
(0.0103271 0.0039694 0)
(0.00810627 0.002451 0)
(0.00645607 0.0014542 0)
(0.00538771 0.000707488 0)
(0.00476964 -5.46376e-05 0)
(-0.031464 -0.687702 0)
(-0.0727626 -0.689853 0)
(-0.120246 -0.691847 0)
(-0.177364 -0.695747 0)
(-0.249925 -0.70058 0)
(-0.348604 -0.701855 0)
(-0.490462 -0.681391 0)
(-0.679379 -0.581696 0)
(-0.794206 -0.33911 0)
(-0.797473 -0.174921 0)
(-0.999379 0.110155 0)
(-0.462507 0.584488 0)
(-0.131433 0.360113 0)
(-0.109209 0.205945 0)
(-0.126009 0.204188 0)
(-0.0476 0.224925 0)
(0.0256354 0.169975 0)
(0.0452575 0.108541 0)
(0.0426817 0.06888 0)
(0.0358337 0.045134 0)
(0.0293335 0.0306541 0)
(0.0241524 0.0212547 0)
(0.0198363 0.0145599 0)
(0.0161005 0.00983857 0)
(0.0129027 0.0065192 0)
(0.0102031 0.00422079 0)
(0.00802875 0.00263003 0)
(0.00640025 0.00157176 0)
(0.00534099 0.000767259 0)
(0.00476232 -2.37724e-05 0)
(-0.0318399 -0.627687 0)
(-0.073137 -0.627181 0)
(-0.120605 -0.626241 0)
(-0.176792 -0.623848 0)
(-0.245587 -0.617768 0)
(-0.33252 -0.602045 0)
(-0.442423 -0.56211 0)
(-0.566023 -0.469973 0)
(-0.654334 -0.312373 0)
(-0.694247 -0.143237 0)
(-0.715754 0.110313 0)
(-0.450152 0.357518 0)
(-0.204792 0.298865 0)
(-0.135642 0.206801 0)
(-0.116389 0.192219 0)
(-0.0541239 0.196833 0)
(0.00795005 0.157117 0)
(0.032546 0.106548 0)
(0.0355194 0.0698174 0)
(0.0318556 0.0464098 0)
(0.0270459 0.0316883 0)
(0.0227826 0.0220247 0)
(0.0190116 0.0151723 0)
(0.0156194 0.0103141 0)
(0.0126284 0.00687985 0)
(0.0100439 0.0044857 0)
(0.00792824 0.00282173 0)
(0.00632822 0.0016969 0)
(0.00528194 0.000831809 0)
(0.00474199 4.6406e-06 0)
(-0.0308308 -0.563341 0)
(-0.0705093 -0.561656 0)
(-0.115697 -0.557793 0)
(-0.167961 -0.550649 0)
(-0.229473 -0.537656 0)
(-0.302371 -0.513592 0)
(-0.386557 -0.468923 0)
(-0.47365 -0.390287 0)
(-0.542042 -0.272141 0)
(-0.576968 -0.12524 0)
(-0.557119 0.0617941 0)
(-0.407225 0.220036 0)
(-0.238122 0.231999 0)
(-0.154942 0.190244 0)
(-0.11438 0.176272 0)
(-0.0599392 0.172933 0)
(-0.00663037 0.143496 0)
(0.0205411 0.102754 0)
(0.0281196 0.0697496 0)
(0.0275541 0.0472407 0)
(0.024529 0.0325362 0)
(0.0212563 0.0227175 0)
(0.0180786 0.0157539 0)
(0.0150586 0.0107867 0)
(0.0122956 0.00725246 0)
(0.00984382 0.00476476 0)
(0.0077996 0.00302641 0)
(0.00623674 0.00183033 0)
(0.0052079 0.000901757 0)
(0.00470588 3.08406e-05 0)
(-0.028796 -0.497801 0)
(-0.065297 -0.495092 0)
(-0.106416 -0.48944 0)
(-0.153017 -0.479663 0)
(-0.206004 -0.46348 0)
(-0.265757 -0.436989 0)
(-0.330732 -0.394266 0)
(-0.394939 -0.328304 0)
(-0.446504 -0.235305 0)
(-0.471551 -0.117504 0)
(-0.449857 0.018795 0)
(-0.35898 0.132614 0)
(-0.244275 0.171493 0)
(-0.165295 0.163731 0)
(-0.115317 0.15672 0)
(-0.0652434 0.151425 0)
(-0.0185583 0.129574 0)
(0.00953939 0.0974113 0)
(0.0207007 0.0686265 0)
(0.0230136 0.0475403 0)
(0.0218016 0.0331429 0)
(0.0195746 0.0233043 0)
(0.0170326 0.0162895 0)
(0.0144138 0.0112483 0)
(0.0119003 0.00763239 0)
(0.00959937 0.00505748 0)
(0.00764114 0.00324394 0)
(0.00612529 0.00197244 0)
(0.00511987 0.000977645 0)
(0.00465383 5.52376e-05 0)
(-0.0258503 -0.433525 0)
(-0.0582191 -0.430239 0)
(-0.0943314 -0.423793 0)
(-0.13456 -0.413155 0)
(-0.179087 -0.396489 0)
(-0.227527 -0.371023 0)
(-0.278121 -0.333036 0)
(-0.326587 -0.2785 0)
(-0.365256 -0.204965 0)
(-0.38359 -0.113681 0)
(-0.368453 -0.012801 0)
(-0.312016 0.0742393 0)
(-0.234239 0.121011 0)
(-0.167072 0.133314 0)
(-0.116136 0.134716 0)
(-0.0697102 0.131195 0)
(-0.0281573 0.115535 0)
(-0.000243908 0.0907827 0)
(0.0134875 0.0664491 0)
(0.0183388 0.047239 0)
(0.0188951 0.0334528 0)
(0.0177448 0.0237539 0)
(0.0158732 0.016763 0)
(0.0136838 0.0116896 0)
(0.0114422 0.00801359 0)
(0.00931176 0.0053618 0)
(0.00745415 0.00347324 0)
(0.00599572 0.00212303 0)
(0.00501957 0.00105914 0)
(0.00458661 7.78569e-05 0)
(-0.0224402 -0.372646 0)
(-0.0502584 -0.36917 0)
(-0.0810572 -0.362683 0)
(-0.114908 -0.352419 0)
(-0.151645 -0.336944 0)
(-0.190628 -0.31428 0)
(-0.230268 -0.282029 0)
(-0.267432 -0.237767 0)
(-0.296896 -0.1801 0)
(-0.311452 -0.110202 0)
(-0.303099 -0.0342663 0)
(-0.268138 0.0342341 0)
(-0.215463 0.0805722 0)
(-0.16186 0.103117 0)
(-0.115123 0.111732 0)
(-0.0728464 0.111752 0)
(-0.0356376 0.101513 0)
(-0.00868181 0.0831753 0)
(0.00669468 0.0632692 0)
(0.01365 0.046293 0)
(0.0158567 0.0334171 0)
(0.0157848 0.0240349 0)
(0.0146067 0.0171568 0)
(0.0128714 0.0120998 0)
(0.010922 0.00838846 0)
(0.0089804 0.00567328 0)
(0.00723691 0.00371168 0)
(0.00584588 0.00228113 0)
(0.00490467 0.00114464 0)
(0.0045022 9.84526e-05 0)
(-0.0190017 -0.316625 0)
(-0.0423138 -0.31324 0)
(-0.0679449 -0.307241 0)
(-0.0958229 -0.298096 0)
(-0.125665 -0.284673 0)
(-0.156818 -0.265539 0)
(-0.187978 -0.2391 0)
(-0.216857 -0.203866 0)
(-0.23987 -0.159083 0)
(-0.25227 -0.105716 0)
(-0.249098 -0.0478464 0)
(-0.227958 0.00666845 0)
(-0.192574 0.0490003 0)
(-0.151602 0.0755405 0)
(-0.111601 0.0891791 0)
(-0.0742367 0.0930624 0)
(-0.0411012 0.0876396 0)
(-0.0156645 0.0748204 0)
(0.000522248 0.059184 0)
(0.00908427 0.0446893 0)
(0.0127539 0.0329953 0)
(0.0137241 0.0241145 0)
(0.0132466 0.0174501 0)
(0.011982 0.0124645 0)
(0.0103417 0.0087477 0)
(0.00860462 0.00598575 0)
(0.00698721 0.00395552 0)
(0.00567188 0.00244512 0)
(0.00477079 0.00123239 0)
(0.00439697 0.000116963 0)
(-0.0158803 -0.266082 0)
(-0.035095 -0.263156 0)
(-0.0559784 -0.258052 0)
(-0.0784672 -0.2504 0)
(-0.102328 -0.239333 0)
(-0.127016 -0.223803 0)
(-0.151518 -0.20273 0)
(-0.174185 -0.175166 0)
(-0.192564 -0.140689 0)
(-0.203526 -0.0999713 0)
(-0.203859 -0.0555487 0)
(-0.191722 -0.0120796 0)
(-0.168367 0.0248954 0)
(-0.138113 0.0517374 0)
(-0.105595 0.0681735 0)
(-0.073671 0.0753648 0)
(-0.0446048 0.0740902 0)
(-0.0211341 0.0659912 0)
(-0.00486841 0.0543487 0)
(0.00478524 0.0424472 0)
(0.00966961 0.0321612 0)
(0.0116021 0.0239629 0)
(0.0118094 0.0176208 0)
(0.0110198 0.0127687 0)
(0.0097005 0.00908221 0)
(0.00818045 0.00629324 0)
(0.00670029 0.00420167 0)
(0.00546927 0.0026138 0)
(0.00461365 0.00132223 0)
(0.00426865 0.000133613 0)
(-0.0130339 -0.22105 0)
(-0.0285811 -0.219098 0)
(-0.045296 -0.2153 0)
(-0.0631429 -0.20928 0)
(-0.0819744 -0.200485 0)
(-0.101391 -0.18823 0)
(-0.120647 -0.171791 0)
(-0.138566 -0.150538 0)
(-0.153467 -0.124194 0)
(-0.163254 -0.0931664 0)
(-0.165752 -0.0589754 0)
(-0.159468 -0.0244194 0)
(-0.144511 0.00694077 0)
(-0.122881 0.0320522 0)
(-0.0975273 0.0494546 0)
(-0.0711703 0.0589966 0)
(-0.046222 0.0610891 0)
(-0.0250714 0.0569502 0)
(-0.00933634 0.0489208 0)
(0.000895077 0.0396183 0)
(0.00669571 0.0309081 0)
(0.00946663 0.0235575 0)
(0.0103168 0.0176489 0)
(0.00999321 0.0129996 0)
(0.00900044 0.00938371 0)
(0.00770551 0.00658977 0)
(0.00637281 0.00444718 0)
(0.00523411 0.00278541 0)
(0.0044298 0.00141423 0)
(0.00411544 0.000148614 0)
(-0.010211 -0.182209 0)
(-0.0223838 -0.181132 0)
(-0.0355541 -0.178583 0)
(-0.0496328 -0.174129 0)
(-0.0644549 -0.167404 0)
(-0.0797074 -0.157982 0)
(-0.0948591 -0.145394 0)
(-0.109097 -0.12921 0)
(-0.121273 -0.109224 0)
(-0.129964 -0.0856442 0)
(-0.133647 -0.0593559 0)
(-0.131115 -0.032045 0)
(-0.121987 -0.00601966 0)
(-0.107041 0.0163694 0)
(-0.0879915 0.0334133 0)
(-0.0669467 0.0442793 0)
(-0.0460788 0.0488888 0)
(-0.0274979 0.047962 0)
(-0.0127859 0.0430984 0)
(-0.00246727 0.0363008 0)
(0.00393129 0.0292534 0)
(0.00737611 0.0228869 0)
(0.00879911 0.0175193 0)
(0.00891555 0.0131443 0)
(0.00824541 0.00964288 0)
(0.0071792 0.00686901 0)
(0.00600324 0.00468837 0)
(0.00496372 0.00295758 0)
(0.00421675 0.00150789 0)
(0.00393509 0.000162142 0)
(-0.00781051 -0.149873 0)
(-0.0171151 -0.149226 0)
(-0.0272707 -0.147497 0)
(-0.038199 -0.144291 0)
(-0.0497504 -0.139318 0)
(-0.0616788 -0.132268 0)
(-0.0735965 -0.122811 0)
(-0.0849345 -0.110647 0)
(-0.0949007 -0.095607 0)
(-0.102515 -0.0777716 0)
(-0.106695 -0.0576369 0)
(-0.106482 -0.0362136 0)
(-0.101337 -0.014989 0)
(-0.0914116 0.00431544 0)
(-0.0775976 0.0201492 0)
(-0.0613367 0.0314369 0)
(-0.0443677 0.037728 0)
(-0.028484 0.0392823 0)
(-0.0151677 0.0370918 0)
(-0.00519239 0.0326075 0)
(0.00147432 0.0272389 0)
(0.00539538 0.0219545 0)
(0.00729306 0.0172234 0)
(0.00780533 0.0131935 0)
(0.00744239 0.00985221 0)
(0.00660267 0.00712489 0)
(0.00558894 0.00492076 0)
(0.00465527 0.00312824 0)
(0.00397152 0.00160196 0)
(0.00372466 0.00017439 0)
(-0.00592912 -0.123341 0)
(-0.0129577 -0.122907 0)
(-0.0206615 -0.121687 0)
(-0.0289999 -0.119371 0)
(-0.0378709 -0.115732 0)
(-0.0470952 -0.110537 0)
(-0.0563932 -0.103541 0)
(-0.0653643 -0.0945103 0)
(-0.0734583 -0.0832954 0)
(-0.079994 -0.0698935 0)
(-0.0841963 -0.0545622 0)
(-0.0853175 -0.0378947 0)
(-0.0828162 -0.020837 0)
(-0.0765475 -0.00460152 0)
(-0.066891 0.0095549 0)
(-0.0547322 0.0205703 0)
(-0.0413384 0.027798 0)
(-0.0281485 0.0311438 0)
(-0.0164785 0.0311153 0)
(-0.00720241 0.0286798 0)
(-0.000587199 0.0249331 0)
(0.00359157 0.0207818 0)
(0.00583969 0.0167621 0)
(0.00668486 0.0131414 0)
(0.00660026 0.0100049 0)
(0.00597819 0.00735206 0)
(0.00512822 0.00514088 0)
(0.00430576 0.00329488 0)
(0.00369005 0.0016948 0)
(0.00348079 0.000185896 0)
(-0.0044645 -0.101756 0)
(-0.00973862 -0.101437 0)
(-0.0155332 -0.100543 0)
(-0.0218234 -0.0988507 0)
(-0.028541 -0.0961943 0)
(-0.0355663 -0.0924006 0)
(-0.0427112 -0.0872782 0)
(-0.0497048 -0.0806376 0)
(-0.0561706 -0.0723383 0)
(-0.0616358 -0.0623293 0)
(-0.0655444 -0.0507235 0)
(-0.0673259 -0.0378538 0)
(-0.0664973 -0.0243083 0)
(-0.0627989 -0.0109108 0)
(-0.0563109 0.00138618 0)
(-0.0475213 0.0116645 0)
(-0.0372735 0.0192238 0)
(-0.0266521 0.0237458 0)
(-0.0167581 0.025376 0)
(-0.00845512 0.0246781 0)
(-0.00218749 0.0224382 0)
(0.00202996 0.0194102 0)
(0.00448335 0.0161486 0)
(0.00557887 0.012988 0)
(0.00573104 0.0100971 0)
(0.00530942 0.00754568 0)
(0.00461985 0.00534445 0)
(0.00391195 0.00345418 0)
(0.00336894 0.00178565 0)
(0.00319976 0.00019666 0)
(-0.00335018 -0.0842654 0)
(-0.00727945 -0.0840406 0)
(-0.0115847 -0.0834035 0)
(-0.0162542 -0.0821908 0)
(-0.0212522 -0.0802754 0)
(-0.0265074 -0.0775226 0)
(-0.0319004 -0.0737866 0)
(-0.0372536 -0.0689186 0)
(-0.042313 -0.0627954 0)
(-0.0467527 -0.0553438 0)
(-0.050178 -0.0465915 0)
(-0.0521625 -0.0367093 0)
(-0.052309 -0.0260463 0)
(-0.0503359 -0.0151421 0)
(-0.046174 -0.00468031 0)
(-0.0400414 0.00460188 0)
(-0.0324566 0.0120501 0)
(-0.0241832 0.0172357 0)
(-0.016087 0.0200596 0)
(-0.00894358 0.0207677 0)
(-0.00326594 0.0198568 0)
(0.000769286 0.0179024 0)
(0.00326698 0.01541 0)
(0.00451391 0.0127425 0)
(0.00484753 0.0101285 0)
(0.00460072 0.00770234 0)
(0.00406315 0.00552738 0)
(0.00347113 0.00360344 0)
(0.00300408 0.00187196 0)
(0.00287806 0.000207138 0)
(-0.00242663 -0.070316 0)
(-0.00526611 -0.0701933 0)
(-0.00839068 -0.0697673 0)
(-0.0117952 -0.0689063 0)
(-0.0154559 -0.0675212 0)
(-0.0193263 -0.0655172 0)
(-0.0233287 -0.0627864 0)
(-0.0273465 -0.0592126 0)
(-0.0312109 -0.0546895 0)
(-0.0347026 -0.0491374 0)
(-0.0375488 -0.0425365 0)
(-0.0394427 -0.0349577 0)
(-0.0400763 -0.0265948 0)
(-0.0391956 -0.0177864 0)
(-0.0366691 -0.00900286 0)
(-0.0325557 -0.000804959 0)
(-0.0271464 0.00625297 0)
(-0.0209394 0.0117108 0)
(-0.0145748 0.0153253 0)
(-0.00869463 0.0171113 0)
(-0.00379924 0.0173198 0)
(-0.000148438 0.016338 0)
(0.00222937 0.0145906 0)
(0.00351458 0.012423 0)
(0.00396336 0.0101051 0)
(0.00385703 0.00782121 0)
(0.00345774 0.00568559 0)
(0.00298057 0.00373899 0)
(0.00259209 0.0019518 0)
(0.00251201 0.000216811 0)
(-0.00169677 -0.0596164 0)
(-0.00368455 -0.0595009 0)
(-0.00588346 -0.0591655 0)
(-0.00829072 -0.0585241 0)
(-0.0108897 -0.0575068 0)
(-0.0136508 -0.056038 0)
(-0.0165246 -0.0540314 0)
(-0.0194362 -0.0513918 0)
(-0.0222765 -0.0480264 0)
(-0.0249032 -0.0438566 0)
(-0.0271345 -0.0388399 0)
(-0.0287571 -0.0329905 0)
(-0.0295455 -0.0264044 0)
(-0.0292942 -0.019283 0)
(-0.0278645 -0.0119373 0)
(-0.0252359 -0.00477418 0)
(-0.0215465 0.00175288 0)
(-0.0171028 0.00721677 0)
(-0.0123449 0.0112998 0)
(-0.00776342 0.0138629 0)
(-0.00379018 0.0149646 0)
(-0.000704117 0.014824 0)
(0.00139796 0.0137501 0)
(0.00260165 0.0120606 0)
(0.00308894 0.0100372 0)
(0.00308264 0.0079038 0)
(0.00280366 0.0058171 0)
(0.00243753 0.00385693 0)
(0.00212969 0.00202274 0)
(0.00209809 0.000225348 0)
(-0.00117292 -0.0515612 0)
(-0.00253198 -0.051498 0)
(-0.00400771 -0.0512653 0)
(-0.00560283 -0.0507903 0)
(-0.00731829 -0.0500261 0)
(-0.00914639 -0.0489195 0)
(-0.011065 -0.0474023 0)
(-0.013033 -0.0453976 0)
(-0.0149836 -0.0428287 0)
(-0.0168255 -0.0396233 0)
(-0.0184396 -0.035728 0)
(-0.0196849 -0.0311243 0)
(-0.0204075 -0.0258475 0)
(-0.0204584 -0.0200101 0)
(-0.0197213 -0.0138112 0)
(-0.0181478 -0.0075408 0)
(-0.0157899 -0.00155546 0)
(-0.0128218 0.00376602 0)
(-0.00951973 0.00808441 0)
(-0.00622593 0.0111675 0)
(-0.00326975 0.0129359 0)
(-0.00089483 0.013467 0)
(0.000783278 0.0129644 0)
(0.00178619 0.0116975 0)
(0.00223109 0.00994438 0)
(0.00227927 0.00795402 0)
(0.00210014 0.00591954 0)
(0.00183995 0.00395373 0)
(0.00161406 0.00208192 0)
(0.00163334 0.000232697 0)
(-0.000644124 -0.045997 0)
(-0.00140075 -0.0459949 0)
(-0.0022478 -0.0458549 0)
(-0.00318709 -0.0455009 0)
(-0.00421339 -0.044899 0)
(-0.00531429 -0.0440143 0)
(-0.00647007 -0.0427981 0)
(-0.00765491 -0.0411912 0)
(-0.00883357 -0.0391302 0)
(-0.00995801 -0.0365492 0)
(-0.0109629 -0.0333906 0)
(-0.0117677 -0.0296168 0)
(-0.0122813 -0.025228 0)
(-0.0124118 -0.0202818 0)
(-0.0120818 -0.0149062 0)
(-0.0112482 -0.00931034 0)
(-0.00992313 -0.00377812 0)
(-0.00818996 0.00135877 0)
(-0.00620419 0.00576802 0)
(-0.00417073 0.00916539 0)
(-0.00229647 0.0113819 0)
(-0.00075037 0.0123957 0)
(0.000371317 0.0123237 0)
(0.00106294 0.0113868 0)
(0.00138738 0.00985121 0)
(0.00144481 0.00798027 0)
(0.00134495 0.00599164 0)
(0.00118529 0.00402507 0)
(0.00104304 0.00212666 0)
(0.00111528 0.000238475 0)
(-0.000237373 -0.0431316 0)
(-0.000517425 -0.0430683 0)
(-0.000835855 -0.0428843 0)
(-0.00119188 -0.0425407 0)
(-0.00158147 -0.0420056 0)
(-0.00199949 -0.041239 0)
(-0.00243939 -0.0401932 0)
(-0.00289195 -0.0388124 0)
(-0.00334324 -0.037034 0)
(-0.00377493 -0.0347921 0)
(-0.00416347 -0.0320286 0)
(-0.0044801 -0.0287014 0)
(-0.00469144 -0.0247955 0)
(-0.00476207 -0.0203417 0)
(-0.00466084 -0.0154307 0)
(-0.00436854 -0.010228 0)
(-0.00388642 -0.0049757 0)
(-0.00323533 1.89092e-05 0)
(-0.00247555 0.00445824 0)
(-0.00169639 0.00800879 0)
(-0.000960136 0.0104634 0)
(-0.000340579 0.0117486 0)
(0.00011668 0.011928 0)
(0.000403403 0.0111892 0)
(0.000541676 0.00978695 0)
(0.000570404 0.00799072 0)
(0.000533836 0.00603189 0)
(0.000471692 0.0040665 0)
(0.000415405 0.00215272 0)
(0.000542624 0.000242146 0)
(-1.80391e-05 1.00374e-06 0)
(-0.000253802 1.01372e-05 0)
(-0.000597317 1.84267e-05 0)
(-0.00117225 3.41669e-05 0)
(-0.00211408 6.074e-05 0)
(-0.00358257 0.000102423 0)
(-0.00575493 0.000163923 0)
(-0.00880933 0.000249516 0)
(-0.0128985 0.000361657 0)
(-0.0181131 0.0004989 0)
(-0.024437 0.00065315 0)
(-0.0317016 0.000807233 0)
(-0.0395534 0.000934069 0)
(-0.0474596 0.000999545 0)
(-0.0547632 0.000969682 0)
(-0.0607894 0.000820443 0)
(-0.0649749 0.000545953 0)
(-0.0669733 0.000161304 0)
(-0.0667046 -0.000301669 0)
(-0.0643342 -0.000802632 0)
(-0.060205 -0.00130209 0)
(-0.0547508 -0.00176788 0)
(-0.0484191 -0.00217847 0)
(-0.0416122 -0.00252285 0)
(-0.0346636 -0.00279862 0)
(-0.0278251 -0.00300932 0)
(-0.0212729 -0.00316223 0)
(-0.015119 -0.00326609 0)
(-0.00942594 -0.00332992 0)
(-0.00421531 -0.00336205 0)
(-7.64228e-05 1.76935e-05 0)
(-0.000253808 2.86985e-05 0)
(-0.000597321 5.21636e-05 0)
(-0.00117224 9.67284e-05 0)
(-0.00211408 0.000171968 0)
(-0.00358265 0.000290023 0)
(-0.00575527 0.000464271 0)
(-0.00881048 0.000706938 0)
(-0.0129018 0.00102521 0)
(-0.0181217 0.00141533 0)
(-0.0244568 0.00185492 0)
(-0.0317431 0.0022958 0)
(-0.0396324 0.00266141 0)
(-0.0475965 0.00285443 0)
(-0.0549792 0.00277687 0)
(-0.061101 0.00235817 0)
(-0.0653884 0.00157957 0)
(-0.0674811 0.000482988 0)
(-0.0672865 -0.000840419 0)
(-0.064961 -0.00227437 0)
(-0.0608444 -0.00370483 0)
(-0.0553722 -0.00503906 0)
(-0.0489972 -0.00621481 0)
(-0.0421282 -0.00720073 0)
(-0.0351057 -0.00798999 0)
(-0.0281872 -0.00859319 0)
(-0.0215537 -0.00903087 0)
(-0.0153203 -0.00932821 0)
(-0.00955236 -0.00951088 0)
(-0.00427214 -0.00960347 0)
(-7.60534e-05 3.13097e-05 0)
(-0.000252404 4.71816e-05 0)
(-0.000593995 8.57614e-05 0)
(-0.0011657 0.000159033 0)
(-0.00210228 0.000282741 0)
(-0.00356271 0.000476865 0)
(-0.00572354 0.000763439 0)
(-0.00876283 0.00116267 0)
(-0.0128346 0.0016866 0)
(-0.0180337 0.00232952 0)
(-0.0243522 0.00305531 0)
(-0.0316353 0.00378571 0)
(-0.0395473 0.00439556 0)
(-0.0475726 0.00472469 0)
(-0.0550623 0.00461021 0)
(-0.0613336 0.0039328 0)
(-0.0657973 0.0026577 0)
(-0.0680689 0.000850858 0)
(-0.0680298 -0.0013386 0)
(-0.0658165 -0.00371802 0)
(-0.0617582 -0.00609688 0)
(-0.0562898 -0.00831952 0)
(-0.049871 -0.0102805 0)
(-0.0429215 -0.0119265 0)
(-0.0357936 -0.013245 0)
(-0.0287554 -0.0142531 0)
(-0.0219967 -0.0149849 0)
(-0.0156393 -0.015482 0)
(-0.00975264 -0.0157878 0)
(-0.00436201 -0.0159422 0)
(-7.54799e-05 4.48412e-05 0)
(-0.00025032 6.55399e-05 0)
(-0.000589052 0.000119129 0)
(-0.00115597 0.000220906 0)
(-0.00208474 0.00039275 0)
(-0.0035331 0.000662431 0)
(-0.00567638 0.00106061 0)
(-0.00869199 0.00161554 0)
(-0.0127346 0.00234432 0)
(-0.0179025 0.00323977 0)
(-0.0241958 0.00425311 0)
(-0.0314733 0.00527739 0)
(-0.0394179 0.00614039 0)
(-0.0475329 0.00661974 0)
(-0.0551809 0.00648635 0)
(-0.0616751 0.00556847 0)
(-0.0664037 0.0038101 0)
(-0.068946 0.00129645 0)
(-0.0691439 -0.00176787 0)
(-0.0671028 -0.00511323 0)
(-0.0631356 -0.00846968 0)
(-0.0576757 -0.0116142 0)
(-0.0511927 -0.0143945 0)
(-0.0441229 -0.016732 0)
(-0.036836 -0.0186066 0)
(-0.0296169 -0.0200411 0)
(-0.0226688 -0.0210831 0)
(-0.0161234 -0.0217914 0)
(-0.0100566 -0.0222268 0)
(-0.00449858 -0.0224469 0)
(-7.47028e-05 5.82503e-05 0)
(-0.00024756 8.37173e-05 0)
(-0.000582509 0.000152169 0)
(-0.00114309 0.000282173 0)
(-0.00206151 0.000501686 0)
(-0.00349387 0.000846212 0)
(-0.00561391 0.00135501 0)
(-0.00859808 0.0020644 0)
(-0.0126019 0.00299686 0)
(-0.0177281 0.00414446 0)
(-0.0239871 0.00544709 0)
(-0.0312556 0.00677118 0)
(-0.0392411 0.00789958 0)
(-0.0474725 0.00854877 0)
(-0.055329 0.00842189 0)
(-0.0621197 0.00728961 0)
(-0.0672041 0.0050674 0)
(-0.0701132 0.00185274 0)
(-0.0706356 -0.00209812 0)
(-0.0688335 -0.00643786 0)
(-0.0649956 -0.010813 0)
(-0.0595525 -0.0149272 0)
(-0.0529867 -0.0185755 0)
(-0.0457561 -0.0216495 0)
(-0.038255 -0.0241189 0)
(-0.0307908 -0.0260108 0)
(-0.0235851 -0.0273863 0)
(-0.0167837 -0.0283217 0)
(-0.0104719 -0.0288972 0)
(-0.00468512 -0.0291879 0)
(-7.37249e-05 7.15048e-05 0)
(-0.000244133 0.000101666 0)
(-0.000574383 0.00018479 0)
(-0.0011271 0.000342668 0)
(-0.00203266 0.000609256 0)
(-0.00344514 0.00102772 0)
(-0.00553627 0.00164586 0)
(-0.0084813 0.00250815 0)
(-0.0124367 0.00364277 0)
(-0.0175105 0.00504195 0)
(-0.0237254 0.00663598 0)
(-0.0309803 0.00826725 0)
(-0.039013 0.00967651 0)
(-0.0473853 0.0105207 0)
(-0.0554983 0.0104332 0)
(-0.0626591 0.00912112 0)
(-0.0681932 0.0064616 0)
(-0.0715716 0.00255508 0)
(-0.0725144 -0.00229596 0)
(-0.0710267 -0.00766649 0)
(-0.0673642 -0.0131138 0)
(-0.0619514 -0.0182609 0)
(-0.0552863 -0.0228418 0)
(-0.0478543 -0.0267124 0)
(-0.0400809 -0.0298284 0)
(-0.0323031 -0.0322195 0)
(-0.0247666 -0.0339596 0)
(-0.0176355 -0.0351441 0)
(-0.0110076 -0.035873 0)
(-0.00492565 -0.0362412 0)
(-7.25486e-05 8.45646e-05 0)
(-0.000240048 0.000119338 0)
(-0.000564697 0.000216907 0)
(-0.00110803 0.000402228 0)
(-0.00199827 0.00071517 0)
(-0.00338702 0.00120647 0)
(-0.00544365 0.00193238 0)
(-0.00834188 0.00294564 0)
(-0.0122391 0.00428053 0)
(-0.0172494 0.0059305 0)
(-0.0234099 0.00781827 0)
(-0.030645 0.00976534 0)
(-0.0387289 0.0114739 0)
(-0.0472632 0.0125435 0)
(-0.0556783 0.0125364 0)
(-0.0632825 0.0110882 0)
(-0.0693636 0.00802632 0)
(-0.0733214 0.00344183 0)
(-0.0747914 -0.00232424 0)
(-0.0737053 -0.00876936 0)
(-0.0702743 -0.0153556 0)
(-0.0649126 -0.0216149 0)
(-0.058135 -0.0272109 0)
(-0.0504604 -0.0319554 0)
(-0.0423534 -0.0357847 0)
(-0.034188 -0.0387286 0)
(-0.0262407 -0.040874 0)
(-0.0186988 -0.0423356 0)
(-0.0116766 -0.0432358 0)
(-0.0052263 -0.0436904 0)
(-7.11768e-05 9.73951e-05 0)
(-0.000235316 0.000136687 0)
(-0.000553477 0.000248431 0)
(-0.00108594 0.00046069 0)
(-0.00195842 0.000819136 0)
(-0.00331968 0.00138196 0)
(-0.00533629 0.00221383 0)
(-0.00818011 0.00337577 0)
(-0.0120095 0.00490863 0)
(-0.016945 0.0068083 0)
(-0.0230398 0.00899224 0)
(-0.0302471 0.0112648 0)
(-0.038383 0.0132938 0)
(-0.0470968 0.0146246 0)
(-0.0558564 0.0147466 0)
(-0.0639763 0.0132164 0)
(-0.0707054 0.00979717 0)
(-0.075362 0.00455522 0)
(-0.0774792 -0.0021405 0)
(-0.0768966 -0.00971095 0)
(-0.0737667 -0.0175165 0)
(-0.0684861 -0.024986 0)
(-0.0615875 -0.0316994 0)
(-0.0536291 -0.0374143 0)
(-0.0451231 -0.0420409 0)
(-0.0364893 -0.0456056 0)
(-0.0280427 -0.0482076 0)
(-0.02 -0.0499823 0)
(-0.0124955 -0.0510758 0)
(-0.00559434 -0.0516282 0)
(-6.96134e-05 0.000109967 0)
(-0.00022995 0.000153664 0)
(-0.00054075 0.000279274 0)
(-0.00106088 0.00051789 0)
(-0.00191322 0.00092087 0)
(-0.00324329 0.00155374 0)
(-0.00521443 0.00248944 0)
(-0.00799632 0.0037974 0)
(-0.011748 0.00552554 0)
(-0.0165971 0.00767345 0)
(-0.0226139 0.010156 0)
(-0.0297835 0.0127644 0)
(-0.0379689 0.0151375 0)
(-0.046875 0.0167703 0)
(-0.0560169 0.0170788 0)
(-0.0647234 0.0155317 0)
(-0.0722056 0.011812 0)
(-0.0776908 0.00594213 0)
(-0.0805915 -0.00169542 0)
(-0.0806331 -0.0104484 0)
(-0.0778907 -0.0195682 0)
(-0.0727337 -0.028366 0)
(-0.0657119 -0.0363222 0)
(-0.0574288 -0.0431269 0)
(-0.0484537 -0.048655 0)
(-0.0392621 -0.0529254 0)
(-0.030217 -0.0560481 0)
(-0.0215712 -0.0581807 0)
(-0.0134852 -0.0594957 0)
(-0.00603926 -0.0601604 0)
(-6.78619e-05 0.000122245 0)
(-0.000223967 0.000170224 0)
(-0.000526554 0.000309354 0)
(-0.00103293 0.000573675 0)
(-0.0018628 0.0010201 0)
(-0.00315804 0.00172133 0)
(-0.00507837 0.00275849 0)
(-0.00779089 0.00420946 0)
(-0.0114552 0.00612973 0)
(-0.0162058 0.008524 0)
(-0.0221314 0.0113073 0)
(-0.029251 0.0142625 0)
(-0.0374794 0.0170054 0)
(-0.0465852 0.0189856 0)
(-0.0561417 0.0195464 0)
(-0.065503 0.0180603 0)
(-0.073847 0.0141113 0)
(-0.0803029 0.00765484 0)
(-0.0841427 -0.000931333 0)
(-0.0849519 -0.01093 0)
(-0.0827048 -0.0214743 0)
(-0.0777298 -0.0317413 0)
(-0.0705912 -0.0410921 0)
(-0.0619435 -0.0491324 0)
(-0.0524237 -0.0556906 0)
(-0.0425751 -0.0607717 0)
(-0.032819 -0.064495 0)
(-0.0234537 -0.0670415 0)
(-0.0146715 -0.068613 0)
(-0.0065728 -0.0694079 0)
(-6.59274e-05 0.000134197 0)
(-0.000217381 0.00018632 0)
(-0.000510928 0.000338586 0)
(-0.00100217 0.000627892 0)
(-0.00180729 0.00111655 0)
(-0.00306417 0.00188426 0)
(-0.00492847 0.00302023 0)
(-0.00756428 0.00461081 0)
(-0.0111314 0.0067196 0)
(-0.0157713 0.00935781 0)
(-0.0215913 0.0124437 0)
(-0.0286461 0.0157567 0)
(-0.0369066 0.0188964 0)
(-0.0462131 0.0212738 0)
(-0.0562097 0.0221615 0)
(-0.06629 0.0208278 0)
(-0.0756074 0.0167378 0)
(-0.0831888 0.0097517 0)
(-0.0881462 0.00021782 0)
(-0.0898942 -0.0110923 0)
(-0.0882772 -0.0231872 0)
(-0.0835636 -0.0350898 0)
(-0.076326 -0.0460179 0)
(-0.0672761 -0.0554715 0)
(-0.0571301 -0.0632173 0)
(-0.046513 -0.0692385 0)
(-0.0359175 -0.0736613 0)
(-0.0256981 -0.0766909 0)
(-0.0160869 -0.0785627 0)
(-0.00720955 -0.07951 0)
(-6.38148e-05 0.000145789 0)
(-0.000210213 0.000201908 0)
(-0.000493915 0.000366891 0)
(-0.000968667 0.00068039 0)
(-0.00174683 0.00120996 0)
(-0.00296191 0.0020421 0)
(-0.00476507 0.00327395 0)
(-0.00731697 0.00500039 0)
(-0.0107772 0.00729357 0)
(-0.0152937 0.0101727 0)
(-0.0209925 0.0135624 0)
(-0.0279653 0.017244 0)
(-0.0362422 0.0208086 0)
(-0.0457431 0.0236367 0)
(-0.0561969 0.0249345 0)
(-0.0670541 0.0238596 0)
(-0.0774582 0.0197368 0)
(-0.0863341 0.0122983 0)
(-0.092614 0.0018299 0)
(-0.0955057 -0.0108583 0)
(-0.0946878 -0.024646 0)
(-0.0903412 -0.0383798 0)
(-0.0830383 -0.051104 0)
(-0.0735522 -0.0621864 0)
(-0.0626919 -0.0713128 0)
(-0.0511805 -0.0784336 0)
(-0.039598 -0.0836781 0)
(-0.0283678 -0.0872774 0)
(-0.017772 -0.0895035 0)
(-0.00796787 -0.090631 0)
(-6.15292e-05 0.000156993 0)
(-0.000202482 0.000216946 0)
(-0.000475561 0.000394191 0)
(-0.000932523 0.000731025 0)
(-0.0016816 0.00130007 0)
(-0.00285154 0.00219442 0)
(-0.0045886 0.00351897 0)
(-0.00704951 0.00537711 0)
(-0.010393 0.00785007 0)
(-0.0147733 0.0109665 0)
(-0.0203344 0.0146604 0)
(-0.0272051 0.0187207 0)
(-0.0354774 0.0227385 0)
(-0.0451583 0.0260739 0)
(-0.0560758 0.0278734 0)
(-0.0677595 0.0271798 0)
(-0.0793636 0.0231561 0)
(-0.089717 0.015368 0)
(-0.097554 0.00399777 0)
(-0.101836 -0.0101324 0)
(-0.102028 -0.0257723 0)
(-0.0981891 -0.0415658 0)
(-0.0908752 -0.0563479 0)
(-0.0809252 -0.0693203 0)
(-0.0692559 -0.0800633 0)
(-0.0567077 -0.0884803 0)
(-0.0439667 -0.0946982 0)
(-0.0315418 -0.0989746 0)
(-0.0197774 -0.101623 0)
(-0.00887085 -0.102965 0)
(-5.90763e-05 0.000167781 0)
(-0.000194209 0.000231394 0)
(-0.000455916 0.000420413 0)
(-0.000893836 0.00077966 0)
(-0.00161178 0.00138664 0)
(-0.00273335 0.0023408 0)
(-0.0043995 0.00375459 0)
(-0.00676252 0.00573992 0)
(-0.00997978 0.00838748 0)
(-0.0142106 0.0117367 0)
(-0.0196163 0.0157342 0)
(-0.0263622 0.0201823 0)
(-0.0346035 0.0246811 0)
(-0.0444404 0.0285823 0)
(-0.0558161 0.0309827 0)
(-0.0683643 0.0308102 0)
(-0.0812779 0.0270447 0)
(-0.0933052 0.0190423 0)
(-0.102968 0.00682887 0)
(-0.108936 -0.00879943 0)
(-0.110403 -0.0264657 0)
(-0.107256 -0.0445846 0)
(-0.100013 -0.0617371 0)
(-0.0895814 -0.0769159 0)
(-0.0770015 -0.0895642 0)
(-0.0632542 -0.0995199 0)
(-0.0491552 -0.1069 0)
(-0.0353185 -0.111987 0)
(-0.0221662 -0.115143 0)
(-0.00994682 -0.116743 0)
(-5.64615e-05 0.000178119 0)
(-0.000185418 0.000245211 0)
(-0.000435035 0.000445481 0)
(-0.000852712 0.000826161 0)
(-0.00153754 0.00146942 0)
(-0.00260765 0.00248082 0)
(-0.00419825 0.00398016 0)
(-0.00645667 0.00608777 0)
(-0.00953812 0.00890417 0)
(-0.0136061 0.0124809 0)
(-0.0188378 0.0167801 0)
(-0.0254335 0.0216234 0)
(-0.0336115 0.0266297 0)
(-0.0435706 0.0311559 0)
(-0.0553841 0.0342633 0)
(-0.0688192 0.0347694 0)
(-0.0831447 0.0314525 0)
(-0.0970539 0.0234115 0)
(-0.108849 0.0104501 0)
(-0.116857 -0.00671609 0)
(-0.11993 -0.0265975 0)
(-0.117717 -0.0473502 0)
(-0.110665 -0.0672459 0)
(-0.0997476 -0.0850145 0)
(-0.0861496 -0.0999219 0)
(-0.0710191 -0.111716 0)
(-0.0553284 -0.120493 0)
(-0.0398214 -0.12656 0)
(-0.0250181 -0.13033 0)
(-0.0112323 -0.132244 0)
(-5.36911e-05 0.00018799 0)
(-0.000176135 0.000258356 0)
(-0.000412975 0.000469327 0)
(-0.000809261 0.0008704 0)
(-0.00145908 0.00154818 0)
(-0.00247478 0.00261411 0)
(-0.00398538 0.00419505 0)
(-0.00613268 0.00641966 0)
(-0.00906896 0.00939857 0)
(-0.0129605 0.0131966 0)
(-0.0179987 0.0177942 0)
(-0.0244161 0.0230381 0)
(-0.0324929 0.0285762 0)
(-0.0425293 0.033786 0)
(-0.0547432 0.0377118 0)
(-0.069068 0.0390716 0)
(-0.0848943 0.036429 0)
(-0.100901 0.0285748 0)
(-0.115175 0.0150098 0)
(-0.125651 -0.00370705 0)
(-0.130743 -0.0260041 0)
(-0.12978 -0.0497465 0)
(-0.123088 -0.0728309 0)
(-0.111701 -0.0936545 0)
(-0.0969726 -0.111255 0)
(-0.0802493 -0.125259 0)
(-0.0626929 -0.135726 0)
(-0.0452071 -0.142986 0)
(-0.0284345 -0.147508 0)
(-0.0127732 -0.149806 0)
(-5.07703e-05 0.000197372 0)
(-0.000166384 0.000270796 0)
(-0.000389796 0.000491887 0)
(-0.000763602 0.000912259 0)
(-0.00137663 0.00162272 0)
(-0.0023351 0.00274029 0)
(-0.00376143 0.00439865 0)
(-0.00579135 0.0067346 0)
(-0.00857328 0.00986909 0)
(-0.012275 0.0138812 0)
(-0.0170992 0.0187723 0)
(-0.023308 0.0244196 0)
(-0.0312398 0.0305103 0)
(-0.0412967 0.0364599 0)
(-0.0538544 0.0413186 0)
(-0.0690462 0.0437243 0)
(-0.0864416 0.0420204 0)
(-0.104764 0.0346388 0)
(-0.121906 0.0206808 0)
(-0.13536 0.00044338 0)
(-0.142992 -0.0244742 0)
(-0.143689 -0.051618 0)
(-0.137589 -0.078424 0)
(-0.125779 -0.102867 0)
(-0.109806 -0.123692 0)
(-0.0912528 -0.140366 0)
(-0.0715098 -0.152895 0)
(-0.0516752 -0.16162 0)
(-0.0325461 -0.16707 0)
(-0.0146295 -0.169844 0)
(-4.77057e-05 0.000206235 0)
(-0.000156194 0.000282496 0)
(-0.00036556 0.0005131 0)
(-0.000715861 0.00095162 0)
(-0.00129042 0.00169282 0)
(-0.00218898 0.00285901 0)
(-0.00352701 0.00459035 0)
(-0.00543353 0.00703163 0)
(-0.00805219 0.0103142 0)
(-0.0115505 0.014532 0)
(-0.01614 0.0197099 0)
(-0.0221076 0.0257604 0)
(-0.029845 0.0324203 0)
(-0.0398539 0.0391612 0)
(-0.0526766 0.0450675 0)
(-0.0686817 0.0487262 0)
(-0.0876835 0.048267 0)
(-0.108531 0.0417164 0)
(-0.128971 0.0276631 0)
(-0.146015 0.00599992 0)
(-0.156838 -0.0217385 0)
(-0.159734 -0.0527579 0)
(-0.154542 -0.0839251 0)
(-0.142393 -0.112674 0)
(-0.125061 -0.137373 0)
(-0.104414 -0.15729 0)
(-0.0821106 -0.172347 0)
(-0.0594839 -0.182888 0)
(-0.0375235 -0.189498 0)
(-0.0168795 -0.192871 0)
(-4.45024e-05 0.000214564 0)
(-0.000145593 0.000293424 0)
(-0.000340335 0.000532907 0)
(-0.000666168 0.000988374 0)
(-0.00120065 0.00175829 0)
(-0.00203681 0.00296993 0)
(-0.00328271 0.00476963 0)
(-0.0050601 0.00730985 0)
(-0.00750689 0.0107323 0)
(-0.0107885 0.0151466 0)
(-0.015122 0.0206024 0)
(-0.0208141 0.0270525 0)
(-0.0283025 0.0342925 0)
(-0.0381827 0.0418696 0)
(-0.0511678 0.048935 0)
(-0.0678946 0.0540654 0)
(-0.0884977 0.0551998 0)
(-0.112058 0.0499236 0)
(-0.136263 0.0361873 0)
(-0.157621 0.0132883 0)
(-0.172463 -0.0174511 0)
(-0.178256 -0.052893 0)
(-0.1744 -0.0891933 0)
(-0.162044 -0.123081 0)
(-0.143247 -0.15245 0)
(-0.120216 -0.176316 0)
(-0.094923 -0.194496 0)
(-0.0689742 -0.207313 0)
(-0.0435969 -0.215397 0)
(-0.0196303 -0.219535 0)
(-4.11628e-05 0.000222351 0)
(-0.000134611 0.000303547 0)
(-0.000314193 0.000551253 0)
(-0.000614658 0.00102242 0)
(-0.0011076 0.00181895 0)
(-0.00187901 0.00307275 0)
(-0.00302919 0.00493595 0)
(-0.00467206 0.00756838 0)
(-0.00693871 0.0111219 0)
(-0.00999067 0.0157222 0)
(-0.0140468 0.0214451 0)
(-0.0194276 0.028287 0)
(-0.0266081 0.0361117 0)
(-0.0362671 0.0445604 0)
(-0.0492862 0.0528883 0)
(-0.0665986 0.0597153 0)
(-0.08874 0.0628334 0)
(-0.115158 0.0593728 0)
(-0.143617 0.0465132 0)
(-0.170148 0.0227091 0)
(-0.190052 -0.0111677 0)
(-0.199665 -0.0516605 0)
(-0.197709 -0.0940359 0)
(-0.185336 -0.134077 0)
(-0.164979 -0.169075 0)
(-0.13926 -0.197758 0)
(-0.110499 -0.219816 0)
(-0.0806044 -0.235523 0)
(-0.0510875 -0.245517 0)
(-0.0230357 -0.250667 0)
(-3.76939e-05 0.000229578 0)
(-0.00012328 0.000312836 0)
(-0.000287203 0.00056809 0)
(-0.000561475 0.00105367 0)
(-0.0010115 0.00187463 0)
(-0.001716 0.00316717 0)
(-0.00276714 0.00508883 0)
(-0.00427043 0.00780638 0)
(-0.00634913 0.0114817 0)
(-0.0091588 0.0162562 0)
(-0.0129165 0.0222331 0)
(-0.0179495 0.0294551 0)
(-0.0247595 0.0378611 0)
(-0.0340938 0.0472049 0)
(-0.0469918 0.0568849 0)
(-0.0647022 0.065632 0)
(-0.0882442 0.0711606 0)
(-0.117593 0.0701648 0)
(-0.150797 0.0589294 0)
(-0.183504 0.0347552 0)
(-0.209807 -0.00229675 0)
(-0.224457 -0.048578 0)
(-0.225141 -0.0982007 0)
(-0.212998 -0.145632 0)
(-0.190995 -0.187403 0)
(-0.162285 -0.221943 0)
(-0.12956 -0.248841 0)
(-0.0950102 -0.268273 0)
(-0.0604687 -0.280812 0)
(-0.0273366 -0.287361 0)
(-3.40978e-05 0.000236242 0)
(-0.00011163 0.000321263 0)
(-0.000259439 0.000583366 0)
(-0.000506762 0.00108202 0)
(-0.000912628 0.00192517 0)
(-0.00154823 0.00325293 0)
(-0.00249726 0.0052278 0)
(-0.00385627 0.00802311 0)
(-0.00573967 0.0118102 0)
(-0.00829501 0.0167463 0)
(-0.0117335 0.0229617 0)
(-0.0163822 0.0305473 0)
(-0.0227564 0.039523 0)
(-0.0316534 0.0497705 0)
(-0.0442486 0.0608724 0)
(-0.0621119 0.0717513 0)
(-0.0868229 0.0801437 0)
(-0.119069 0.0823756 0)
(-0.157468 0.0737458 0)
(-0.197501 0.0500303 0)
(-0.231914 0.00994643 0)
(-0.25325 -0.0430062 0)
(-0.257532 -0.101376 0)
(-0.245894 -0.157706 0)
(-0.222155 -0.207583 0)
(-0.190183 -0.249177 0)
(-0.153065 -0.282118 0)
(-0.11309 -0.306443 0)
(-0.0724861 -0.322467 0)
(-0.0329783 -0.331126 0)
(-3.03741e-05 0.000242343 0)
(-9.96935e-05 0.000328807 0)
(-0.000230978 0.000597043 0)
(-0.000450672 0.00110741 0)
(-0.000811247 0.00197044 0)
(-0.00137615 0.00332978 0)
(-0.0022203 0.00535246 0)
(-0.00343074 0.00821783 0)
(-0.00511202 0.0121062 0)
(-0.00740168 0.0171899 0)
(-0.0105011 0.0236262 0)
(-0.0147291 0.0315544 0)
(-0.0206015 0.0410786 0)
(-0.0289414 0.052221 0)
(-0.0410269 0.0647871 0)
(-0.0587361 0.0779848 0)
(-0.0842709 0.0897035 0)
(-0.119221 0.0960369 0)
(-0.163162 0.0912769 0)
(-0.211802 0.0692651 0)
(-0.25652 0.02658 0)
(-0.28683 -0.0340652 0)
(-0.295944 -0.103203 0)
(-0.285021 -0.170275 0)
(-0.25941 -0.229779 0)
(-0.223925 -0.279659 0)
(-0.182332 -0.320063 0)
(-0.136071 -0.351113 0)
(-0.0883532 -0.371725 0)
(-0.0410933 -0.384161 0)
(-2.65222e-05 0.000247887 0)
(-8.75016e-05 0.000335445 0)
(-0.000201899 0.000609086 0)
(-0.00039336 0.00112976 0)
(-0.000707638 0.00201031 0)
(-0.00120025 0.0033975 0)
(-0.00193702 0.00546242 0)
(-0.00299502 0.00838989 0)
(-0.00446799 0.0123686 0)
(-0.00648147 0.0175849 0)
(-0.00922302 0.024222 0)
(-0.0129955 0.0324668 0)
(-0.0183 0.0425086 0)
(-0.0259594 0.0545175 0)
(-0.0373069 0.0685546 0)
(-0.0544899 0.084218 0)
(-0.0803723 0.0997087 0)
(-0.117619 0.11111 0)
(-0.167247 0.11181 0)
(-0.225832 0.093327 0)
(-0.283662 0.0490338 0)
(-0.326285 -0.0204854 0)
(-0.341789 -0.103382 0)
(-0.331442 -0.183359 0)
(-0.303815 -0.254284 0)
(-0.264102 -0.313406 0)
(-0.218782 -0.362251 0)
(-0.164532 -0.40538 0)
(-0.108084 -0.42812 0)
(-0.0542568 -0.449833 0)
(-2.25393e-05 0.000252892 0)
(-7.50859e-05 0.000341153 0)
(-0.00017228 0.000619456 0)
(-0.00033498 0.001149 0)
(-0.00060208 0.00204466 0)
(-0.001021 0.0034559 0)
(-0.00164818 0.00555736 0)
(-0.00255031 0.00853872 0)
(-0.0038094 0.0125961 0)
(-0.00553715 0.0179291 0)
(-0.00790344 0.0247449 0)
(-0.0111873 0.0332758 0)
(-0.0158603 0.0437942 0)
(-0.0227154 0.0566201 0)
(-0.033081 0.0720911 0)
(-0.0493017 0.090309 0)
(-0.0749125 0.109966 0)
(-0.11376 0.127451 0)
(-0.168879 0.135558 0)
(-0.238667 0.123206 0)
(-0.313118 0.0792749 0)
(-0.373192 -0.000319818 0)
(-0.397104 -0.102003 0)
(-0.385858 -0.19698 0)
(-0.356548 -0.282066 0)
(-0.303725 -0.352379 0)
(-0.236066 -0.412009 0)
(-0.1662 -0.493477 0)
(-0.0899356 -0.490046 0)
(-0.0410866 -0.513557 0)
(-1.84186e-05 0.000257365 0)
(-6.24781e-05 0.000345911 0)
(-0.000142206 0.000628127 0)
(-0.000275697 0.00116509 0)
(-0.000494869 0.0020734 0)
(-0.000838891 0.00350481 0)
(-0.00135462 0.00563697 0)
(-0.00209792 0.00866378 0)
(-0.00313828 0.0127879 0)
(-0.00457186 0.0182207 0)
(-0.00654729 0.025191 0)
(-0.00931236 0.0339728 0)
(-0.0132939 0.0449169 0)
(-0.0192257 0.0584881 0)
(-0.028359 0.0753039 0)
(-0.0431195 0.096088 0)
(-0.0676993 0.120208 0)
(-0.107093 0.144772 0)
(-0.166975 0.162567 0)
(-0.248867 0.159939 0)
(-0.344021 0.11997 0)
(-0.429869 0.0299971 0)
(-0.46545 -0.100525 0)
(-0.445214 -0.211787 0)
(-0.40413 -0.323566 0)
(-0.271994 -0.425079 0)
(-0.153193 -0.554834 0)
(-0.0216271 -0.557197 0)
(-0.0286908 -0.500049 0)
(0.00141743 -0.54814 0)
(-1.41464e-05 0.000261316 0)
(-4.97078e-05 0.000349706 0)
(-0.000111758 0.000635075 0)
(-0.000215675 0.00117797 0)
(-0.000386301 0.00209644 0)
(-0.000654441 0.00354408 0)
(-0.00105716 0.00570103 0)
(-0.00163913 0.00876465 0)
(-0.00245669 0.0129432 0)
(-0.00358887 0.018458 0)
(-0.00515987 0.0255567 0)
(-0.00737935 0.0345501 0)
(-0.0106156 0.0458596 0)
(-0.0155143 0.0600833 0)
(-0.0231725 0.0780945 0)
(-0.035916 0.101359 0)
(-0.0585936 0.13009 0)
(-0.0970377 0.162587 0)
(-0.1602 0.192607 0)
(-0.254297 0.204451 0)
(-0.374144 0.174555 0)
(-0.499019 0.0787996 0)
(-0.554836 -0.104375 0)
(-0.502436 -0.242331 0)
(-0.409119 -0.395313 0)
(-0.343984 -0.532201 0)
(-0.267865 -0.58413 0)
(-0.217838 -0.608944 0)
(-0.133824 -0.60242 0)
(-0.0506619 -0.611232 0)
(-9.70458e-06 0.000264767 0)
(-3.68023e-05 0.000352527 0)
(-8.10207e-05 0.00064028 0)
(-0.000155077 0.00118763 0)
(-0.000276677 0.00211373 0)
(-0.000468159 0.00357361 0)
(-0.000756627 0.00574933 0)
(-0.0011753 0.00884095 0)
(-0.00176675 0.0130611 0)
(-0.0025916 0.0186396 0)
(-0.00374693 0.0258391 0)
(-0.00539817 0.0350012 0)
(-0.00784248 0.0466069 0)
(-0.0116125 0.0613717 0)
(-0.01758 0.080364 0)
(-0.0276866 0.105901 0)
(-0.0475603 0.139205 0)
(-0.0830379 0.180194 0)
(-0.146991 0.225066 0)
(-0.250675 0.256674 0)
(-0.392935 0.250768 0)
(-0.552714 0.207809 0)
(-0.71845 -0.0988617 0)
(-0.73024 -0.33098 0)
(-0.552552 -0.447508 0)
(-0.399266 -0.607839 0)
(-0.29007 -0.638569 0)
(-0.21508 -0.666559 0)
(-0.135082 -0.685641 0)
(-0.0589202 -0.694015 0)
(-5.06557e-06 0.000267724 0)
(-2.37867e-05 0.000354399 0)
(-5.008e-05 0.000643794 0)
(-9.40739e-05 0.00119413 0)
(-0.0001663 0.00212542 0)
(-0.000280572 0.00359363 0)
(-0.000453889 0.00578222 0)
(-0.000707803 0.00889318 0)
(-0.00107069 0.0131425 0)
(-0.0015837 0.0187663 0)
(-0.00231465 0.0260389 0)
(-0.00337981 0.0353262 0)
(-0.00499495 0.0471573 0)
(-0.00755799 0.0623489 0)
(-0.011677 0.0820693 0)
(-0.0184384 0.109554 0)
(-0.0347713 0.147337 0)
(-0.0644423 0.196976 0)
(-0.124326 0.259227 0)
(-0.219501 0.31831 0)
(-0.44032 0.325485 0)
(-0.742399 0.330988 0)
(-0.955478 -0.0103163 0)
(-1.00265 -0.462512 0)
(-0.648331 -0.634206 0)
(-0.466768 -0.72345 0)
(-0.34092 -0.758591 0)
(-0.232067 -0.770589 0)
(-0.138192 -0.776157 0)
(-0.0639604 -0.780308 0)
(-3.07491e-07 0.000268283 0)
(-1.21595e-05 0.000381094 0)
(-2.07645e-05 0.00069196 0)
(-3.52302e-05 0.00128187 0)
(-5.87611e-05 0.00227705 0)
(-9.64121e-05 0.00383889 0)
(-0.000154865 0.00615295 0)
(-0.000243835 0.00941673 0)
(-0.000377171 0.0138351 0)
(-0.000574867 0.0196323 0)
(-0.00087453 0.0270772 0)
(-0.00134057 0.0365501 0)
(-0.00210274 0.0486077 0)
(-0.0034111 0.0641258 0)
(-0.00565664 0.0842149 0)
(-0.00835182 0.112868 0)
(-0.0215573 0.154571 0)
(-0.0318619 0.210154 0)
(-0.079702 0.288542 0)
(-0.202343 0.385885 0)
(-0.425295 0.433533 0)
(-0.730478 0.430357 0)
(-0.805753 -0.493089 0)
(-0.401676 -0.411472 0)
(-0.500179 -0.728227 0)
(-0.611907 -0.841038 0)
(-0.459899 -0.878016 0)
(-0.312638 -0.882801 0)
(-0.185953 -0.871057 0)
(-0.0922236 -0.890114 0)
(0.000568902 -0.00336969 0)
(0.00541344 -0.00335685 0)
(0.0107466 -0.00331785 0)
(0.0165601 -0.00324516 0)
(0.0228233 -0.00313025 0)
(0.0294621 -0.00296405 0)
(0.0363525 -0.00273788 0)
(0.043297 -0.0024454 0)
(0.0500265 -0.00208407 0)
(0.0561864 -0.00165829 0)
(0.0613598 -0.00118153 0)
(0.0650964 -0.000678034 0)
(0.0669761 -0.000182295 0)
(0.0666919 0.000265213 0)
(0.0641343 0.000625234 0)
(0.0594501 0.000869421 0)
(0.0530469 0.000987737 0)
(0.0455283 0.000991102 0)
(0.0375761 0.000906991 0)
(0.0298256 0.000770301 0)
(0.022768 0.000613947 0)
(0.01671 0.000462662 0)
(0.0117781 0.000331193 0)
(0.00795767 0.000225709 0)
(0.0051383 0.000146449 0)
(0.00315807 9.03263e-05 0)
(0.00183676 5.28515e-05 0)
(0.00100031 2.93606e-05 0)
(0.00049474 1.57578e-05 0)
(0.000190289 8.94164e-06 0)
(0.000576482 -0.00962593 0)
(0.0054863 -0.00958843 0)
(0.0108905 -0.00947637 0)
(0.0167804 -0.00926823 0)
(0.0231236 -0.0089391 0)
(0.0298439 -0.00846339 0)
(0.0368135 -0.00781614 0)
(0.0438296 -0.00697895 0)
(0.0506173 -0.00594438 0)
(0.0568149 -0.004725 0)
(0.0619991 -0.00335939 0)
(0.0657151 -0.00191746 0)
(0.0675423 -0.000498845 0)
(0.067178 0.000779628 0)
(0.0645228 0.00180498 0)
(0.0597371 0.00249631 0)
(0.0532415 0.00282644 0)
(0.0456488 0.0028286 0)
(0.0376441 0.00258295 0)
(0.0298604 0.00218989 0)
(0.0227842 0.00174305 0)
(0.0167168 0.00131225 0)
(0.0117807 0.000938707 0)
(0.00795852 0.000639426 0)
(0.00513853 0.000414755 0)
(0.00315811 0.000255763 0)
(0.00183675 0.000149633 0)
(0.00100031 8.31198e-05 0)
(0.000494745 4.46091e-05 0)
(0.000190295 2.53152e-05 0)
(0.000588606 -0.01598 0)
(0.0056019 -0.0159173 0)
(0.0111184 -0.01573 0)
(0.0171288 -0.0153817 0)
(0.0235969 -0.0148316 0)
(0.0304419 -0.0140362 0)
(0.0375286 -0.0129545 0)
(0.0446452 -0.0115561 0)
(0.0515057 -0.00982929 0)
(0.0577363 -0.00779607 0)
(0.0629037 -0.00552201 0)
(0.0665479 -0.00312519 0)
(0.0682507 -0.00077284 0)
(0.0677228 0.00134048 0)
(0.0648868 0.00302783 0)
(0.0599294 0.00415761 0)
(0.0532938 0.00468853 0)
(0.0456057 0.00467908 0)
(0.0375502 0.00426408 0)
(0.0297515 0.00360992 0)
(0.0226829 0.00287043 0)
(0.0166339 0.00215954 0)
(0.0117186 0.00154416 0)
(0.00791521 0.00105159 0)
(0.00511011 0.000681996 0)
(0.00314051 0.000420528 0)
(0.00182649 0.000246018 0)
(0.000994725 0.000136657 0)
(0.000491993 7.33406e-05 0)
(0.000189244 4.16202e-05 0)
(0.000606867 -0.0225007 0)
(0.00577698 -0.0224114 0)
(0.0114648 -0.0221445 0)
(0.0176573 -0.0216486 0)
(0.0243149 -0.0208649 0)
(0.0313485 -0.0197324 0)
(0.0386123 -0.0181935 0)
(0.0458801 -0.0162058 0)
(0.052849 -0.0137543 0)
(0.0591274 -0.010873 0)
(0.0642666 -0.00765757 0)
(0.067799 -0.00427849 0)
(0.0693114 -0.000974414 0)
(0.0685347 0.00197934 0)
(0.0654257 0.00432245 0)
(0.0602106 0.0058757 0)
(0.0533667 0.00658874 0)
(0.0455376 0.00655038 0)
(0.0374081 0.00595317 0)
(0.0295881 0.00503026 0)
(0.0225315 0.00399466 0)
(0.0165103 0.00300287 0)
(0.0116262 0.00214612 0)
(0.00785083 0.00146111 0)
(0.00506788 0.000947442 0)
(0.00311437 0.000584163 0)
(0.00181125 0.000341739 0)
(0.000986428 0.000189826 0)
(0.000487904 0.000101875 0)
(0.000187684 5.78156e-05 0)
(0.00063213 -0.0292589 0)
(0.00601598 -0.0291409 0)
(0.011937 -0.0287884 0)
(0.0183785 -0.0281332 0)
(0.0252936 -0.0270981 0)
(0.0325834 -0.0256035 0)
(0.040087 -0.0235743 0)
(0.0475584 -0.0209569 0)
(0.0546714 -0.0177346 0)
(0.0610101 -0.0139562 0)
(0.0661057 -0.0097527 0)
(0.0694806 -0.00535277 0)
(0.0707297 -0.00107246 0)
(0.0696134 0.00272902 0)
(0.0661351 0.00571822 0)
(0.0605748 0.00767312 0)
(0.0534544 0.00854172 0)
(0.0454402 0.00845013 0)
(0.0372151 0.0076529 0)
(0.029369 0.00645072 0)
(0.0223298 0.00511433 0)
(0.0163461 0.0038406 0)
(0.0115037 0.00274315 0)
(0.0077655 0.00186694 0)
(0.00501194 0.00121038 0)
(0.00307975 0.000746218 0)
(0.00179106 0.000436523 0)
(0.000975444 0.000242472 0)
(0.000482492 0.00013013 0)
(0.000185618 7.38528e-05 0)
(0.000664539 -0.0363313 0)
(0.00632478 -0.0361817 0)
(0.0125466 -0.0357352 0)
(0.0193087 -0.0349052 0)
(0.0265554 -0.033595 0)
(0.0341739 -0.0317045 0)
(0.0419839 -0.0291408 0)
(0.0497133 -0.0258395 0)
(0.0570059 -0.0217846 0)
(0.0634146 -0.0170442 0)
(0.0684449 -0.011791 0)
(0.0716087 -0.00632025 0)
(0.072513 -0.00103258 0)
(0.0709579 0.00362455 0)
(0.0670086 0.00724566 0)
(0.0610134 0.00957271 0)
(0.053549 0.0105619 0)
(0.0453078 0.0103856 0)
(0.0369678 0.00936563 0)
(0.0290927 0.00787095 0)
(0.0220773 0.006228 0)
(0.0161413 0.0046711 0)
(0.0113512 0.00333388 0)
(0.00765942 0.00226806 0)
(0.00494243 0.00147012 0)
(0.00303674 0.00090626 0)
(0.00176599 0.000530116 0)
(0.000961799 0.000294453 0)
(0.000475771 0.000158027 0)
(0.000183052 8.96888e-05 0)
(0.000704896 -0.0438017 0)
(0.00671028 -0.043617 0)
(0.0133078 -0.0430655 0)
(0.0204698 -0.0420409 0)
(0.0281294 -0.0404243 0)
(0.0361558 -0.0380942 0)
(0.0443437 -0.034939 0)
(0.0523885 -0.0308842 0)
(0.0598956 -0.0259177 0)
(0.0663794 -0.0201325 0)
(0.0713152 -0.0137523 0)
(0.0742033 -0.00714867 0)
(0.0746694 -0.000816466 0)
(0.0725663 0.00470363 0)
(0.0680376 0.00893653 0)
(0.0615154 0.0115973 0)
(0.0536406 0.012663 0)
(0.0451333 0.0123634 0)
(0.0366622 0.0110931 0)
(0.0287574 0.00929027 0)
(0.0217733 0.00733404 0)
(0.0158959 0.00549266 0)
(0.011169 0.0039169 0)
(0.0075328 0.00266343 0)
(0.00485952 0.00172598 0)
(0.00298545 0.00106386 0)
(0.0017361 0.000622267 0)
(0.000945532 0.000345631 0)
(0.000467758 0.000185491 0)
(0.000179994 0.000105281 0)
(0.000754434 -0.0517637 0)
(0.00718212 -0.0515391 0)
(0.0142394 -0.050869 0)
(0.0218901 -0.0496243 0)
(0.0300529 -0.047662 0)
(0.0385746 -0.0448369 0)
(0.0472185 -0.0410181 0)
(0.0556388 -0.0361224 0)
(0.0633946 -0.0301453 0)
(0.0699532 -0.0232129 0)
(0.0747543 -0.0156108 0)
(0.0772882 -0.00780005 0)
(0.077208 -0.000381305 0)
(0.0744352 0.00600734 0)
(0.0692108 0.0108242 0)
(0.0620669 0.01377 0)
(0.0537169 0.0148582 0)
(0.0449082 0.0143891 0)
(0.0362934 0.0128366 0)
(0.0283607 0.0107076 0)
(0.0214173 0.00843063 0)
(0.01561 0.00630351 0)
(0.0109572 0.00449077 0)
(0.00738593 0.00305203 0)
(0.00476342 0.00197726 0)
(0.00292603 0.00121858 0)
(0.00170147 0.000712721 0)
(0.000926689 0.000395865 0)
(0.000458475 0.000212448 0)
(0.000176454 0.00012059 0)
(0.00081435 -0.0603234 0)
(0.00775254 -0.0600533 0)
(0.0153652 -0.059247 0)
(0.023605 -0.0577503 0)
(0.032373 -0.0553929 0)
(0.0414877 -0.0520037 0)
(0.0506732 -0.0474316 0)
(0.0595332 -0.0415864 0)
(0.0675698 -0.0344767 0)
(0.0741948 -0.0262721 0)
(0.0788077 -0.017334 0)
(0.0808912 -0.00822926 0)
(0.0801383 0.000323037 0)
(0.0765589 0.00758083 0)
(0.0705136 0.0129436 0)
(0.062651 0.0161136 0)
(0.0537635 0.0171599 0)
(0.0446226 0.0164675 0)
(0.035856 0.0145965 0)
(0.0279005 0.0121215 0)
(0.0210086 0.00951581 0)
(0.0152838 0.00710184 0)
(0.0107163 0.00505408 0)
(0.00721913 0.00343283 0)
(0.00465437 0.00222329 0)
(0.00285862 0.00137 0)
(0.00166219 0.00080123 0)
(0.000905318 0.000445015 0)
(0.000447949 0.000238824 0)
(0.000172439 0.000135573 0)
(0.000886268 -0.0696028 0)
(0.00843661 -0.0692797 0)
(0.0167146 -0.0683157 0)
(0.0256591 -0.0665272 0)
(0.0351487 -0.0637133 0)
(0.0449666 -0.0596741 0)
(0.0547883 -0.0542375 0)
(0.064156 -0.0473091 0)
(0.0725032 -0.0389181 0)
(0.0791757 -0.0292904 0)
(0.083529 -0.0188809 0)
(0.0850437 -0.00838217 0)
(0.0834692 0.00135244 0)
(0.0789285 0.00947398 0)
(0.0719271 0.0153318 0)
(0.0632469 0.018651 0)
(0.0537634 0.019579 0)
(0.0442653 0.0186023 0)
(0.0353437 0.0163724 0)
(0.027374 0.01353 0)
(0.0205465 0.0105874 0)
(0.0149172 0.00788579 0)
(0.0104467 0.0056054 0)
(0.00703274 0.00380485 0)
(0.00453263 0.00246342 0)
(0.0027834 0.00151773 0)
(0.00161838 0.000887558 0)
(0.00088148 0.000492947 0)
(0.000436207 0.000264546 0)
(0.000167963 0.00015019 0)
(0.000971955 -0.0797423 0)
(0.00925314 -0.0793572 0)
(0.0183243 -0.0782085 0)
(0.0281077 -0.0760788 0)
(0.0384527 -0.072732 0)
(0.0490992 -0.0679365 0)
(0.0596627 -0.0614987 0)
(0.0696104 -0.0533237 0)
(0.0782931 -0.0434708 0)
(0.0849805 -0.0322387 0)
(0.0889805 -0.0201989 0)
(0.0897801 -0.00819349 0)
(0.0872082 0.00277344 0)
(0.0815306 0.0117417 0)
(0.0734274 0.0180272 0)
(0.0638301 0.021404 0)
(0.0536973 0.0221251 0)
(0.0438237 0.0207952 0)
(0.0347503 0.0181628 0)
(0.0267787 0.0149307 0)
(0.0200306 0.011643 0)
(0.0145108 0.00865336 0)
(0.0101488 0.00614326 0)
(0.00682722 0.00416707 0)
(0.00439852 0.00269698 0)
(0.00270058 0.00166134 0)
(0.00157014 0.000971465 0)
(0.000855239 0.000539531 0)
(0.000423282 0.000289544 0)
(0.000163037 0.000164399 0)
(0.00107423 -0.0909075 0)
(0.0102255 -0.0904491 0)
(0.0202404 -0.0890821 0)
(0.0310193 -0.0865497 0)
(0.0423756 -0.0825752 0)
(0.0539944 -0.0768919 0)
(0.065418 -0.0692846 0)
(0.0760222 -0.0596632 0)
(0.085059 -0.0481298 0)
(0.0917101 -0.0350773 0)
(0.0952338 -0.0212218 0)
(0.0951373 -0.00758367 0)
(0.091359 0.00466174 0)
(0.0843459 0.0144452 0)
(0.0749848 0.02107 0)
(0.0643713 0.0243937 0)
(0.0535429 0.0248057 0)
(0.0432843 0.0230468 0)
(0.0340686 0.0199654 0)
(0.0261118 0.0163204 0)
(0.0194601 0.01268 0)
(0.0140646 0.00940254 0)
(0.00982308 0.00666623 0)
(0.00660301 0.00451851 0)
(0.00425237 0.00292333 0)
(0.00261037 0.00180045 0)
(0.00151762 0.00105272 0)
(0.000826666 0.000584637 0)
(0.000409209 0.00031375 0)
(0.000157676 0.000178164 0)
(0.00119591 -0.103295 0)
(0.0113831 -0.102749 0)
(0.0225204 -0.101121 0)
(0.0344798 -0.0981092 0)
(0.0470295 -0.0933892 0)
(0.0597869 -0.0866555 0)
(0.0722035 -0.0776717 0)
(0.0835444 -0.06636 0)
(0.0929444 -0.0528818 0)
(0.0994834 -0.0377516 0)
(0.102371 -0.0218653 0)
(0.101154 -0.00645716 0)
(0.0959215 0.00710626 0)
(0.0873476 0.0176515 0)
(0.076562 0.0245014 0)
(0.0648363 0.0276393 0)
(0.0532755 0.027626 0)
(0.0426324 0.0253555 0)
(0.0332916 0.0217763 0)
(0.0253708 0.0176957 0)
(0.0188347 0.0136954 0)
(0.0135792 0.0101312 0)
(0.00947021 0.00717287 0)
(0.00636064 0.00485821 0)
(0.00409456 0.00314187 0)
(0.00251301 0.00193467 0)
(0.00146094 0.0011311 0)
(0.00079584 0.000628145 0)
(0.000394028 0.000337094 0)
(0.000151895 0.000191445 0)
(0.0013412 -0.117136 0)
(0.012763 -0.116485 0)
(0.0252358 -0.114545 0)
(0.0385957 -0.110957 0)
(0.0525535 -0.105344 0)
(0.066642 -0.0973581 0)
(0.0802014 -0.0867429 0)
(0.0923625 -0.0734433 0)
(0.102121 -0.0577012 0)
(0.10844 -0.0401877 0)
(0.110484 -0.0220229 0)
(0.107869 -0.00469853 0)
(0.100887 0.0102096 0)
(0.0904983 0.0214344 0)
(0.0781131 0.028363 0)
(0.0651855 0.0311573 0)
(0.052868 0.030588 0)
(0.0418524 0.0277172 0)
(0.0324121 0.0235906 0)
(0.0245531 0.0190523 0)
(0.0181541 0.0146862 0)
(0.0130551 0.0108373 0)
(0.00909087 0.00766171 0)
(0.00610069 0.00518521 0)
(0.00392549 0.00335198 0)
(0.00240877 0.00206365 0)
(0.00140027 0.00120639 0)
(0.000762845 0.000669934 0)
(0.00037778 0.000359518 0)
(0.000145711 0.000204208 0)
(0.00151499 -0.132714 0)
(0.0144116 -0.131935 0)
(0.0284771 -0.129614 0)
(0.0435011 -0.125329 0)
(0.0591213 -0.118639 0)
(0.074765 -0.10915 0)
(0.0896356 -0.0965896 0)
(0.102702 -0.0809384 0)
(0.112793 -0.0625469 0)
(0.118743 -0.042287 0)
(0.119675 -0.0215601 0)
(0.115319 -0.00216392 0)
(0.106237 0.014091 0)
(0.0937478 0.025874 0)
(0.0795821 0.0326959 0)
(0.0653733 0.0349608 0)
(0.0522906 0.0336901 0)
(0.0409285 0.0301256 0)
(0.031423 0.0254019 0)
(0.0236565 0.0203852 0)
(0.0174184 0.015649 0)
(0.012493 0.0115185 0)
(0.00868583 0.0081313 0)
(0.00582377 0.00549857 0)
(0.0037456 0.00355308 0)
(0.00229792 0.00218701 0)
(0.00133577 0.00127839 0)
(0.00072777 0.000709887 0)
(0.000360511 0.000380957 0)
(0.000139142 0.000216417 0)
(0.00172369 -0.15037 0)
(0.0163885 -0.149434 0)
(0.0323594 -0.146648 0)
(0.0493652 -0.14151 0)
(0.0669502 -0.133511 0)
(0.0844102 -0.122206 0)
(0.100781 -0.107311 0)
(0.114837 -0.0888637 0)
(0.12521 -0.0673565 0)
(0.130584 -0.0439188 0)
(0.130057 -0.020305 0)
(0.123533 0.00131856 0)
(0.111937 0.018888 0)
(0.0970296 0.0310562 0)
(0.0809011 0.0375389 0)
(0.0653481 0.039058 0)
(0.0515115 0.0369265 0)
(0.0398443 0.0325716 0)
(0.0303177 0.0272024 0)
(0.0226793 0.0216891 0)
(0.0166276 0.0165803 0)
(0.0118937 0.0121726 0)
(0.00825593 0.00858024 0)
(0.00553057 0.00579742 0)
(0.00355536 0.00374461 0)
(0.00218075 0.00230442 0)
(0.00126762 0.00134689 0)
(0.000690714 0.000747895 0)
(0.000342265 0.00040135 0)
(0.000132207 0.000228039 0)
(0.00197591 -0.170525 0)
(0.0187706 -0.169394 0)
(0.0370304 -0.16603 0)
(0.0564034 -0.15984 0)
(0.0763138 -0.150236 0)
(0.0958935 -0.136722 0)
(0.113976 -0.119014 0)
(0.129102 -0.0972269 0)
(0.139668 -0.0720394 0)
(0.144187 -0.0449105 0)
(0.141754 -0.0180415 0)
(0.132532 0.00595513 0)
(0.11793 0.0247582 0)
(0.100257 0.0370715 0)
(0.0819889 0.0429264 0)
(0.065052 0.0434502 0)
(0.0504971 0.0402859 0)
(0.0385839 0.035043 0)
(0.02909 0.0289829 0)
(0.0216199 0.0229578 0)
(0.0157823 0.0174763 0)
(0.0112582 0.0127973 0)
(0.00780213 0.00900709 0)
(0.00522181 0.00608086 0)
(0.00335528 0.00392603 0)
(0.00205759 0.00241556 0)
(0.00119599 0.00141171 0)
(0.000651777 0.000783857 0)
(0.000323093 0.000420643 0)
(0.000124925 0.000239045 0)
(0.00228312 -0.193699 0)
(0.0216597 -0.192321 0)
(0.0426836 -0.188231 0)
(0.0648934 -0.180729 0)
(0.0875579 -0.169139 0)
(0.109608 -0.152923 0)
(0.129634 -0.131811 0)
(0.145901 -0.10602 0)
(0.156524 -0.0764678 0)
(0.159814 -0.0450346 0)
(0.154895 -0.0144945 0)
(0.142314 0.0120017 0)
(0.124132 0.0318809 0)
(0.103316 0.0440123 0)
(0.0827488 0.0488854 0)
(0.064421 0.0481304 0)
(0.049213 0.0437511 0)
(0.0371317 0.0375242 0)
(0.0277346 0.0307327 0)
(0.0204776 0.0241848 0)
(0.0148833 0.0183332 0)
(0.0105878 0.0133904 0)
(0.0073255 0.00941049 0)
(0.00489828 0.00634805 0)
(0.00314587 0.00409681 0)
(0.00192877 0.00252011 0)
(0.0011211 0.00147266 0)
(0.000611064 0.000817671 0)
(0.00030305 0.000438783 0)
(0.00011732 0.000249402 0)
(0.00266067 -0.220553 0)
(0.0251942 -0.218858 0)
(0.0495788 -0.213838 0)
(0.0751998 -0.204671 0)
(0.101125 -0.190602 0)
(0.126042 -0.171063 0)
(0.148263 -0.145818 0)
(0.165728 -0.115217 0)
(0.176212 -0.0804669 0)
(0.177772 -0.0439919 0)
(0.169616 -0.00931331 0)
(0.152853 0.0197663 0)
(0.130416 0.0404578 0)
(0.106065 0.0519697 0)
(0.0830685 0.0554322 0)
(0.0633857 0.0530815 0)
(0.0476243 0.0472988 0)
(0.0354738 0.0399967 0)
(0.0262474 0.0324398 0)
(0.0192524 0.0253631 0)
(0.0139318 0.0191469 0)
(0.00988373 0.0139494 0)
(0.00682714 0.00978912 0)
(0.00456079 0.0065982 0)
(0.00292769 0.00425647 0)
(0.00179462 0.00261779 0)
(0.00104313 0.00152959 0)
(0.000568684 0.000849244 0)
(0.000282189 0.000455721 0)
(0.000109415 0.000259084 0)
(0.00313109 -0.251938 0)
(0.0295723 -0.249819 0)
(0.0580771 -0.243572 0)
(0.0878094 -0.232256 0)
(0.11758 -0.215056 0)
(0.145798 -0.191415 0)
(0.170474 -0.161154 0)
(0.18918 -0.124767 0)
(0.199255 -0.0838011 0)
(0.198425 -0.0413874 0)
(0.186051 -0.0020423 0)
(0.164073 0.0296213 0)
(0.136606 0.0507101 0)
(0.108322 0.0610259 0)
(0.082818 0.0625667 0)
(0.0618725 0.0582726 0)
(0.0456973 0.0508972 0)
(0.0335979 0.0424383 0)
(0.0246256 0.0340908 0)
(0.0179448 0.0264852 0)
(0.0129295 0.0199133 0)
(0.00914761 0.0144723 0)
(0.00630831 0.0101417 0)
(0.00421025 0.00683051 0)
(0.00270133 0.00440456 0)
(0.00165553 0.00270831 0)
(0.000962306 0.00158232 0)
(0.00052476 0.00087849 0)
(0.000260567 0.000471409 0)
(0.000101234 0.00026806 0)
(0.00372744 -0.288996 0)
(0.0351007 -0.286279 0)
(0.0687077 -0.278341 0)
(0.103389 -0.264172 0)
(0.137649 -0.242972 0)
(0.169608 -0.214262 0)
(0.197 -0.177934 0)
(0.216977 -0.134594 0)
(0.226301 -0.0861643 0)
(0.222208 -0.0366994 0)
(0.204315 0.00789622 0)
(0.175831 0.0420144 0)
(0.142451 0.0628746 0)
(0.109864 0.0712469 0)
(0.0818511 0.0702668 0)
(0.0598053 0.063658 0)
(0.0434008 0.0545072 0)
(0.0314946 0.0448237 0)
(0.0228682 0.0356714 0)
(0.0165566 0.0275432 0)
(0.0118783 0.0206284 0)
(0.00838122 0.0149567 0)
(0.00577036 0.0104669 0)
(0.00384758 0.00704429 0)
(0.0024674 0.00454063 0)
(0.00151186 0.00279143 0)
(0.000878848 0.00163073 0)
(0.000479412 0.000905332 0)
(0.000238244 0.000485804 0)
(9.28005e-05 0.000276305 0)
(0.00449991 -0.333372 0)
(0.0423257 -0.329707 0)
(0.0822968 -0.319248 0)
(0.122874 -0.301191 0)
(0.162261 -0.27481 0)
(0.19833 -0.239871 0)
(0.22869 -0.196279 0)
(0.249988 -0.144618 0)
(0.258167 -0.0871617 0)
(0.249646 -0.0292142 0)
(0.224489 0.0212611 0)
(0.18788 0.057481 0)
(0.147612 0.0771932 0)
(0.110421 0.0826691 0)
(0.0800065 0.0784821 0)
(0.0571082 0.0691738 0)
(0.040708 0.0580811 0)
(0.0291577 0.0471246 0)
(0.020976 0.0371663 0)
(0.0150902 0.0285294 0)
(0.0107808 0.0212881 0)
(0.00758652 0.0154005 0)
(0.0052147 0.0107636 0)
(0.00347375 0.00723884 0)
(0.00222652 0.0046643 0)
(0.00136401 0.00286691 0)
(0.000792981 0.00167466 0)
(0.000432759 0.000929687 0)
(0.00021528 0.000498863 0)
(8.41427e-05 0.000283791 0)
(0.00551674 -0.387894 0)
(0.0525499 -0.382212 0)
(0.100167 -0.367418 0)
(0.147574 -0.344168 0)
(0.192604 -0.310864 0)
(0.232868 -0.268455 0)
(0.266495 -0.216334 0)
(0.289228 -0.154784 0)
(0.295923 -0.0863175 0)
(0.281394 -0.0179556 0)
(0.246566 0.0390543 0)
(0.199814 0.0766474 0)
(0.151633 0.093893 0)
(0.109668 0.0952816 0)
(0.0771124 0.0871251 0)
(0.0537094 0.074736 0)
(0.0375982 0.0615631 0)
(0.0265855 0.0493102 0)
(0.0189522 0.0385596 0)
(0.0135493 0.0294358 0)
(0.00963997 0.0218885 0)
(0.00676569 0.0158018 0)
(0.00464287 0.0110307 0)
(0.0030898 0.00741356 0)
(0.00197937 0.0047752 0)
(0.00121238 0.00293454 0)
(0.000704942 0.001714 0)
(0.000384934 0.000951496 0)
(0.000191737 0.000510555 0)
(7.52902e-05 0.0002905 0)
(0.00685008 -0.459477 0)
(0.0685719 -0.446172 0)
(0.122348 -0.422775 0)
(0.179126 -0.395012 0)
(0.229816 -0.350755 0)
(0.273778 -0.300274 0)
(0.311491 -0.238305 0)
(0.335811 -0.165157 0)
(0.341058 -0.0831025 0)
(0.318324 -0.00149438 0)
(0.27037 0.0625996 0)
(0.211 0.100223 0)
(0.153915 0.113154 0)
(0.107233 0.109003 0)
(0.0729934 0.0960635 0)
(0.0495455 0.0802382 0)
(0.0340601 0.0648893 0)
(0.0237812 0.0513479 0)
(0.0168022 0.0398354 0)
(0.0119386 0.0302546 0)
(0.0084592 0.0224256 0)
(0.00592116 0.0161585 0)
(0.00405649 0.0112672 0)
(0.0026968 0.00756786 0)
(0.00172663 0.00487299 0)
(0.00105739 0.00299414 0)
(0.000614975 0.00174864 0)
(0.000336069 0.000970697 0)
(0.000167681 0.000520847 0)
(6.62704e-05 0.000296405 0)
(0.00956256 -0.546996 0)
(0.0592141 -0.507549 0)
(0.107727 -0.491096 0)
(0.191008 -0.457727 0)
(0.257367 -0.397478 0)
(0.316518 -0.338211 0)
(0.365053 -0.262281 0)
(0.390565 -0.176232 0)
(0.395931 -0.0770647 0)
(0.361494 0.0224066 0)
(0.295384 0.093647 0)
(0.220479 0.128968 0)
(0.153692 0.135059 0)
(0.102698 0.123657 0)
(0.0674813 0.105115 0)
(0.0445669 0.0855517 0)
(0.0300935 0.0679896 0)
(0.0207534 0.0532045 0)
(0.0145338 0.0409778 0)
(0.0102637 0.0309785 0)
(0.00724235 0.0228961 0)
(0.00505543 0.016469 0)
(0.00345722 0.0114721 0)
(0.0022958 0.00770126 0)
(0.00146898 0.00495738 0)
(0.000899461 0.00304552 0)
(0.000523319 0.00177847 0)
(0.000286293 0.000987235 0)
(0.000143175 0.000529707 0)
(5.71124e-05 0.000301478 0)
(-0.00259963 -0.588784 0)
(0.00553001 -0.528388 0)
(0.02063 -0.514921 0)
(0.0252341 -0.605474 0)
(0.19349 -0.497289 0)
(0.309405 -0.416771 0)
(0.419574 -0.290771 0)
(0.451798 -0.190651 0)
(0.464973 -0.0679611 0)
(0.41203 0.0575206 0)
(0.320429 0.134404 0)
(0.22684 0.163604 0)
(0.150014 0.159521 0)
(0.0956225 0.13893 0)
(0.0604316 0.114044 0)
(0.0387446 0.0905234 0)
(0.025713 0.0707894 0)
(0.0175169 0.0548468 0)
(0.0121575 0.0419717 0)
(0.00853143 0.0316003 0)
(0.00599378 0.0232967 0)
(0.00417131 0.0167315 0)
(0.00284686 0.0116448 0)
(0.00188797 0.00781329 0)
(0.00120713 0.00502813 0)
(0.000739033 0.00308855 0)
(0.000430233 0.00180342 0)
(0.000235748 0.00100106 0)
(0.000118285 0.00053711 0)
(4.78506e-05 0.00030569 0)
(0.00683545 -0.616501 0)
(0.0695643 -0.606716 0)
(0.154404 -0.601963 0)
(0.232942 -0.611124 0)
(0.278382 -0.534362 0)
(0.372472 -0.530501 0)
(0.427488 -0.345979 0)
(0.521533 -0.221619 0)
(0.557768 -0.0557697 0)
(0.470063 0.111263 0)
(0.343192 0.187419 0)
(0.228095 0.204655 0)
(0.141755 0.186185 0)
(0.0855752 0.154335 0)
(0.0517433 0.122569 0)
(0.0320763 0.0949758 0)
(0.0209508 0.0732132 0)
(0.0140926 0.0562433 0)
(0.00968628 0.042803 0)
(0.00674962 0.0321138 0)
(0.00471823 0.0236244 0)
(0.0032717 0.0169449 0)
(0.00222725 0.0117843 0)
(0.00147449 0.00790358 0)
(0.000941834 0.00508503 0)
(0.000576546 0.0031231 0)
(0.000335974 0.0018234 0)
(0.000184575 0.00101214 0)
(9.30793e-05 0.000543039 0)
(3.85212e-05 0.000309012 0)
(0.00784172 -0.695783 0)
(0.0759734 -0.694605 0)
(0.147337 -0.689293 0)
(0.237705 -0.685036 0)
(0.341671 -0.65604 0)
(0.435477 -0.60278 0)
(0.593705 -0.40815 0)
(0.781343 -0.251986 0)
(0.688163 -0.0316771 0)
(0.496799 0.211994 0)
(0.353638 0.2562 0)
(0.221133 0.252063 0)
(0.127666 0.214358 0)
(0.0721792 0.169173 0)
(0.0413811 0.130395 0)
(0.0245956 0.0987044 0)
(0.0158585 0.0751907 0)
(0.010507 0.0573657 0)
(0.00713533 0.0434592 0)
(0.00492692 0.0325136 0)
(0.00342074 0.0238769 0)
(0.00235965 0.0171078 0)
(0.00160026 0.0118902 0)
(0.0010565 0.00797181 0)
(0.00067381 0.0051279 0)
(0.000412445 0.00314907 0)
(0.000240799 0.00183837 0)
(0.000132911 0.00102043 0)
(6.76248e-05 0.000547476 0)
(2.91647e-05 0.000311422 0)
(0.0076519 -0.780167 0)
(0.079492 -0.780713 0)
(0.162358 -0.77018 0)
(0.257193 -0.771829 0)
(0.353921 -0.747531 0)
(0.477334 -0.697536 0)
(0.780056 -0.636552 0)
(0.948184 -0.407942 0)
(0.822656 0.0842562 0)
(0.696976 0.353244 0)
(0.331419 0.322792 0)
(0.196974 0.306164 0)
(0.105513 0.243261 0)
(0.0551016 0.182733 0)
(0.0293889 0.137488 0)
(0.0163921 0.101554 0)
(0.0105104 0.0767062 0)
(0.00679189 0.0582097 0)
(0.0045223 0.0439397 0)
(0.00307289 0.0328001 0)
(0.00210681 0.0240549 0)
(0.00143835 0.017221 0)
(0.000967807 0.011963 0)
(0.000635189 0.00801843 0)
(0.000403805 0.00515706 0)
(0.000247185 0.00316665 0)
(0.000144967 0.00184847 0)
(8.09005e-05 0.00102603 0)
(4.19896e-05 0.000550466 0)
(1.98268e-05 0.000312923 0)
(0.0140296 -0.887694 0)
(0.0984582 -0.885686 0)
(0.217953 -0.868364 0)
(0.337033 -0.860986 0)
(0.474488 -0.849033 0)
(0.619479 -0.849499 0)
(0.438453 -0.663403 0)
(0.309377 -0.279035 0)
(0.68937 0.18386 0)
(0.645033 0.451323 0)
(0.354511 0.441719 0)
(0.158592 0.361061 0)
(0.058085 0.267687 0)
(0.0305013 0.192576 0)
(0.0165617 0.14446 0)
(0.00777316 0.104204 0)
(0.00503876 0.0788341 0)
(0.00299686 0.0598889 0)
(0.00187259 0.0453286 0)
(0.00120241 0.0339746 0)
(0.000787498 0.0250503 0)
(0.000517268 0.0180438 0)
(0.000338024 0.0126128 0)
(0.000217341 0.00850183 0)
(0.000137241 0.00549362 0)
(8.49245e-05 0.0033855 0)
(5.15991e-05 0.00198151 0)
(3.07996e-05 0.00110183 0)
(1.79401e-05 0.000591782 0)
(1.19653e-05 0.000336232 0)
(-0.000903833 8.76268e-05 0)
(-0.00181943 0.00036187 0)
(-0.00208237 0.000656017 0)
(-0.00248335 0.00121694 0)
(-0.00297679 0.0021673 0)
(-0.00358733 0.00367271 0)
(-0.00433305 0.00593219 0)
(-0.00528672 0.00917146 0)
(-0.00611675 0.0135291 0)
(-0.00529508 0.0191073 0)
(-0.00378055 0.0262778 0)
(-0.00310516 0.0354294 0)
(-0.00306724 0.0467302 0)
(-0.0037879 0.0611392 0)
(-0.00599471 0.0788393 0)
(0.000407265 0.10736 0)
(0.02486 0.15648 0)
(-0.0495245 0.216017 0)
(-0.0587442 0.312504 0)
(-0.192128 0.433768 0)
(-0.40359 0.530837 0)
(-0.577641 0.422508 0)
(-0.531318 -0.165313 0)
(-0.287232 -0.442116 0)
(-0.198562 -0.651175 0)
(-0.351152 -0.808899 0)
(-0.434052 -0.901511 0)
(-0.443364 -0.947931 0)
(-0.365125 -0.979255 0)
(-0.186341 -1.02551 0)
(-0.00366547 -0.000183158 0)
(-0.00418198 0.000368113 0)
(-0.0050006 0.000663175 0)
(-0.00635577 0.00123479 0)
(-0.00816344 0.00219113 0)
(-0.0105026 0.00370034 0)
(-0.0134008 0.00594949 0)
(-0.0171127 0.00914452 0)
(-0.0222868 0.0134846 0)
(-0.0289483 0.0191674 0)
(-0.0376595 0.0266589 0)
(-0.0519945 0.036578 0)
(-0.0805967 0.0491841 0)
(-0.156725 0.0702291 0)
(-0.998019 0.131422 0)
(-1.24182 0.109354 0)
(-0.291769 0.152641 0)
(-0.39862 0.194219 0)
(0.0214914 0.339769 0)
(-0.154032 0.481208 0)
(-0.403062 0.595337 0)
(-0.570498 0.489535 0)
(-0.459716 -0.207879 0)
(-0.195148 -0.551212 0)
(-0.0384688 -0.645357 0)
(-0.0781634 -0.747189 0)
(-0.183294 -0.867264 0)
(-0.227326 -0.955471 0)
(-0.176685 -1.03931 0)
(-0.123111 -1.14314 0)
(-0.00473205 -0.00024332 0)
(-0.00504578 0.000388709 0)
(-0.00606737 0.00069326 0)
(-0.00776551 0.00129854 0)
(-0.0100546 0.00229488 0)
(-0.0130679 0.00386786 0)
(-0.0168582 0.00621504 0)
(-0.0217615 0.00955351 0)
(-0.0286616 0.0141351 0)
(-0.0378782 0.0201113 0)
(-0.0507009 0.0281371 0)
(-0.0724976 0.0395128 0)
(-0.116797 0.0564631 0)
(-0.241818 0.0993342 0)
(-0.932731 0.386381 0)
(-2.7643 0.293309 0)
(-1.45164 -0.0751997 0)
(-0.658408 0.146755 0)
(-0.462133 0.276721 0)
(-0.068242 0.557064 0)
(-0.398468 0.671674 0)
(-0.660462 0.563645 0)
(-0.537862 -0.283835 0)
(-0.185184 -0.67769 0)
(-0.00412677 -0.696813 0)
(0.0906459 -0.724701 0)
(0.0635799 -0.835461 0)
(0.039024 -0.94372 0)
(0.0239766 -1.06627 0)
(0.0190518 -1.18805 0)
(-0.00502186 -0.000228652 0)
(-0.00527127 0.000414148 0)
(-0.00635683 0.000732759 0)
(-0.00813282 0.00137729 0)
(-0.0105234 0.00242114 0)
(-0.0136815 0.00406647 0)
(-0.0176905 0.00652727 0)
(-0.0228804 0.0100325 0)
(-0.0301265 0.0149038 0)
(-0.0398924 0.0212496 0)
(-0.0536406 0.0299983 0)
(-0.0771154 0.043298 0)
(-0.124721 0.0659427 0)
(-0.252179 0.13471 0)
(-0.624454 0.626463 0)
(-1.99894 0.28433 0)
(-1.06538 -0.275108 0)
(-0.724567 0.0855715 0)
(-0.523067 0.174556 0)
(0.257228 0.688161 0)
(-0.438855 0.786389 0)
(-0.658322 0.53483 0)
(-0.565525 -0.539099 0)
(-0.207739 -0.776498 0)
(-0.00785908 -0.770245 0)
(0.125973 -0.761459 0)
(0.181705 -0.828316 0)
(0.180489 -0.934928 0)
(0.144352 -1.0429 0)
(0.094857 -1.12125 0)
(-0.00508514 -0.000192228 0)
(-0.00532624 0.000445459 0)
(-0.00643904 0.000786921 0)
(-0.00822148 0.0014749 0)
(-0.0106133 0.00257425 0)
(-0.0137601 0.00429798 0)
(-0.0177762 0.00688181 0)
(-0.0229481 0.010564 0)
(-0.030022 0.0157288 0)
(-0.0396344 0.0224606 0)
(-0.0533117 0.032027 0)
(-0.0764103 0.0474234 0)
(-0.122045 0.0760687 0)
(-0.231459 0.166674 0)
(-0.319641 0.714255 0)
(-0.744023 0.223188 0)
(-0.594196 -0.368481 0)
(-0.499862 0.0830918 0)
(-0.555716 0.133411 0)
(-0.797765 0.298752 0)
(-0.471595 0.957868 0)
(-0.665744 0.505749 0)
(-0.49386 -0.739128 0)
(-0.205993 -0.908906 0)
(-0.00122191 -0.847531 0)
(0.118148 -0.819478 0)
(0.189718 -0.849105 0)
(0.205924 -0.929347 0)
(0.17776 -0.996805 0)
(0.102888 -1.03998 0)
(-0.0050995 -0.000150606 0)
(-0.00535034 0.00048226 0)
(-0.0064765 0.000856048 0)
(-0.00825067 0.00158988 0)
(-0.0106291 0.00275054 0)
(-0.0137339 0.00455456 0)
(-0.0177045 0.00726325 0)
(-0.0227822 0.0111219 0)
(-0.0295538 0.0165733 0)
(-0.0387921 0.0237084 0)
(-0.0520512 0.034156 0)
(-0.0740067 0.0516683 0)
(-0.115376 0.0859322 0)
(-0.198765 0.190438 0)
(-0.138988 0.647572 0)
(0.336849 0.194562 0)
(-0.263848 -0.317898 0)
(-0.398513 0.0974341 0)
(-0.465025 0.125204 0)
(-0.912359 0.421704 0)
(-0.520316 1.03449 0)
(-0.83986 0.639902 0)
(-1.04294 -0.94168 0)
(-0.161864 -1.05874 0)
(0.0275923 -0.921545 0)
(0.116706 -0.869079 0)
(0.164891 -0.874314 0)
(0.173871 -0.924591 0)
(0.14399 -0.955422 0)
(0.0808744 -0.956986 0)
(-0.00509719 -0.000107367 0)
(-0.00536718 0.000524927 0)
(-0.00649598 0.000940259 0)
(-0.0082573 0.00172299 0)
(-0.0106203 0.00295057 0)
(-0.0136766 0.00483751 0)
(-0.0175771 0.00767183 0)
(-0.0225274 0.011705 0)
(-0.0289635 0.0174314 0)
(-0.0377198 0.0249914 0)
(-0.0503399 0.0363565 0)
(-0.0706405 0.0559021 0)
(-0.106286 0.094909 0)
(-0.16206 0.204508 0)
(-0.0442565 0.535557 0)
(0.61199 0.185573 0)
(-0.106064 -0.186807 0)
(-0.353742 0.132541 0)
(-0.507159 0.116515 0)
(-1.42959 0.88641 0)
(-0.679257 1.05608 0)
(-1.35584 1.42558 0)
(-0.534846 -1.49007 0)
(-0.0242444 -1.19596 0)
(0.0854539 -0.977324 0)
(0.129946 -0.899974 0)
(0.145818 -0.886045 0)
(0.133595 -0.908825 0)
(0.0954609 -0.915511 0)
(0.0478699 -0.892952 0)
(-0.00508302 -6.3058e-05 0)
(-0.00537794 0.000573063 0)
(-0.00650074 0.00103818 0)
(-0.00824639 0.00187326 0)
(-0.0105899 0.00317205 0)
(-0.013593 0.00514492 0)
(-0.0174009 0.00810386 0)
(-0.0221893 0.0123076 0)
(-0.0282664 0.018296 0)
(-0.0364528 0.0263025 0)
(-0.0482213 0.0385843 0)
(-0.0663923 0.0599729 0)
(-0.0952575 0.102454 0)
(-0.125512 0.209374 0)
(0.00926112 0.437279 0)
(0.428851 0.18505 0)
(-0.0346532 -0.0558424 0)
(-0.308692 0.197506 0)
(-0.447677 0.143458 0)
(-0.662491 0.556377 0)
(-0.920969 1.06171 0)
(-0.269624 1.11318 0)
(0.323391 -1.6887 0)
(0.191749 -1.2326 0)
(0.167584 -0.993677 0)
(0.157033 -0.905278 0)
(0.140233 -0.877952 0)
(0.108064 -0.877951 0)
(0.0633786 -0.873216 0)
(0.0240102 -0.849952 0)
(-0.00505969 -1.78302e-05 0)
(-0.00538072 0.000626129 0)
(-0.00649134 0.00114845 0)
(-0.00821895 0.00203989 0)
(-0.0105357 0.00341284 0)
(-0.0134785 0.00547529 0)
(-0.0171714 0.00855639 0)
(-0.0217588 0.0129252 0)
(-0.0274455 0.0191618 0)
(-0.0349827 0.0276261 0)
(-0.0456804 0.0407796 0)
(-0.0612784 0.0637056 0)
(-0.0827342 0.108129 0)
(-0.0916799 0.206626 0)
(0.0374683 0.358995 0)
(0.282925 0.189077 0)
(0.00935455 0.0508427 0)
(-0.236576 0.292252 0)
(-0.884938 0.189132 0)
(-1.46267 0.720901 0)
(-0.768112 0.569239 0)
(0.0408481 0.676368 0)
(0.881011 -1.42875 0)
(0.389843 -1.13219 0)
(0.252983 -0.958261 0)
(0.191743 -0.880965 0)
(0.147219 -0.849199 0)
(0.10243 -0.836172 0)
(0.0562682 -0.826762 0)
(0.0192582 -0.817416 0)
(-0.00502793 2.81287e-05 0)
(-0.0053732 0.000683333 0)
(-0.00646774 0.00126945 0)
(-0.0081746 0.00222173 0)
(-0.0104554 0.00367067 0)
(-0.0133271 0.00582648 0)
(-0.0168828 0.00902557 0)
(-0.0212272 0.0135524 0)
(-0.0264837 0.020021 0)
(-0.0332955 0.0289348 0)
(-0.0427038 0.0428654 0)
(-0.055355 0.0669096 0)
(-0.0692583 0.111642 0)
(-0.0620119 0.198288 0)
(0.0510696 0.298771 0)
(0.199497 0.193157 0)
(0.0459495 0.129407 0)
(-0.104251 0.37614 0)
(-0.330747 0.544957 0)
(-1.36464 0.319357 0)
(0.444826 -0.0974648 0)
(1.16391 -0.0661612 0)
(0.917956 -0.980825 0)
(0.494846 -0.958596 0)
(0.317019 -0.878919 0)
(0.224244 -0.829229 0)
(0.161364 -0.803083 0)
(0.110004 -0.788329 0)
(0.0659575 -0.778922 0)
(0.0287732 -0.779741 0)
(-0.00498862 7.46527e-05 0)
(-0.0053537 0.000743923 0)
(-0.00642994 0.00139969 0)
(-0.00811208 0.00241739 0)
(-0.0103467 0.0039434 0)
(-0.0131332 0.00619569 0)
(-0.0165278 0.00950673 0)
(-0.0205877 0.0141832 0)
(-0.0253687 0.0208634 0)
(-0.0313749 0.0301922 0)
(-0.0392879 0.0447532 0)
(-0.0487203 0.0694016 0)
(-0.0553959 0.112877 0)
(-0.0369776 0.186326 0)
(0.0574982 0.253078 0)
(0.153705 0.194055 0)
(0.0812084 0.17815 0)
(0.0441694 0.385485 0)
(0.380532 0.798804 0)
(0.992845 -0.0224307 0)
(0.857347 -0.195457 0)
(0.920045 -0.321452 0)
(0.777836 -0.697268 0)
(0.511798 -0.785291 0)
(0.347476 -0.776883 0)
(0.245538 -0.757987 0)
(0.174164 -0.744084 0)
(0.118881 -0.735214 0)
(0.0745101 -0.730403 0)
(0.0356494 -0.729847 0)
(-0.00494422 0.000121562 0)
(-0.00532122 0.000807741 0)
(-0.00637832 0.0015383 0)
(-0.00803008 0.00262553 0)
(-0.0102078 0.00422919 0)
(-0.0128931 0.00657873 0)
(-0.0160998 0.00999337 0)
(-0.0198369 0.0148084 0)
(-0.0240962 0.0216723 0)
(-0.0292123 0.0313506 0)
(-0.0354548 0.0463423 0)
(-0.0415293 0.0710154 0)
(-0.0416974 0.111885 0)
(-0.016399 0.17236 0)
(0.0612093 0.218032 0)
(0.130873 0.190067 0)
(0.114102 0.198547 0)
(0.152918 0.341055 0)
(0.463628 0.502902 0)
(0.882965 0.12262 0)
(0.777773 -0.159747 0)
(0.747031 -0.336346 0)
(0.643955 -0.54298 0)
(0.479154 -0.643299 0)
(0.347081 -0.672165 0)
(0.251397 -0.677192 0)
(0.179543 -0.676248 0)
(0.122364 -0.674684 0)
(0.0742958 -0.673948 0)
(0.0325784 -0.67281 0)
(-0.00489342 0.000168605 0)
(-0.00527412 0.000874989 0)
(-0.00631165 0.00168479 0)
(-0.00792657 0.00284518 0)
(-0.0100361 0.00452705 0)
(-0.0126029 0.00697174 0)
(-0.0155933 0.0104802 0)
(-0.0189722 0.0154171 0)
(-0.0226631 0.0224257 0)
(-0.0268069 0.0323571 0)
(-0.0312496 0.0475308 0)
(-0.0339756 0.0716251 0)
(-0.0286251 0.108855 0)
(0.000277948 0.157513 0)
(0.0644184 0.19007 0)
(0.121514 0.180556 0)
(0.140902 0.195949 0)
(0.214913 0.275855 0)
(0.436848 0.308227 0)
(0.656828 0.096497 0)
(0.660127 -0.134471 0)
(0.6197 -0.301197 0)
(0.537696 -0.444394 0)
(0.427227 -0.533068 0)
(0.325678 -0.575834 0)
(0.242883 -0.595072 0)
(0.176041 -0.603888 0)
(0.120829 -0.608188 0)
(0.0740154 -0.6104 0)
(0.0331193 -0.611559 0)
(-0.00483257 0.000215258 0)
(-0.00521101 0.000945351 0)
(-0.00622728 0.00183784 0)
(-0.00779908 0.00307454 0)
(-0.0098283 0.00483503 0)
(-0.0122584 0.0073703 0)
(-0.015005 0.0109621 0)
(-0.0179922 0.0159972 0)
(-0.0210677 0.0230985 0)
(-0.0241671 0.0331565 0)
(-0.0267385 0.0482232 0)
(-0.0262741 0.0711526 0)
(-0.0165246 0.104059 0)
(0.013734 0.142472 0)
(0.067836 0.166388 0)
(0.119072 0.165835 0)
(0.158802 0.177727 0)
(0.240219 0.210309 0)
(0.391414 0.188916 0)
(0.520254 0.0477143 0)
(0.544125 -0.121828 0)
(0.512889 -0.261068 0)
(0.449953 -0.371281 0)
(0.370711 -0.446379 0)
(0.292788 -0.491236 0)
(0.223911 -0.51676 0)
(0.164838 -0.531285 0)
(0.114091 -0.53966 0)
(0.0699529 -0.544391 0)
(0.0310136 -0.546741 0)
(-0.0047605 0.000260768 0)
(-0.00513001 0.00101847 0)
(-0.00612164 0.00199559 0)
(-0.00764352 0.00331065 0)
(-0.00958075 0.00514924 0)
(-0.0118558 0.00776813 0)
(-0.0143352 0.011431 0)
(-0.0168991 0.0165324 0)
(-0.019316 0.0236606 0)
(-0.02132 0.0336934 0)
(-0.0220189 0.0483393 0)
(-0.0186635 0.0695761 0)
(-0.00565379 0.0978067 0)
(0.0245132 0.127539 0)
(0.0712901 0.145093 0)
(0.119062 0.147018 0)
(0.167132 0.151058 0)
(0.24163 0.153066 0)
(0.343907 0.111731 0)
(0.423182 0.00772744 0)
(0.443942 -0.116561 0)
(0.421687 -0.226414 0)
(0.374476 -0.313592 0)
(0.315507 -0.376365 0)
(0.255146 -0.418146 0)
(0.19886 -0.444837 0)
(0.148332 -0.461611 0)
(0.103487 -0.472016 0)
(0.063687 -0.478205 0)
(0.0282039 -0.481349 0)
(-0.00467566 0.000304239 0)
(-0.00502838 0.00109504 0)
(-0.00599145 0.00215746 0)
(-0.00745444 0.00355149 0)
(-0.00928839 0.00546623 0)
(-0.0113896 0.00815877 0)
(-0.0135828 0.0118759 0)
(-0.0156959 0.0170022 0)
(-0.0174201 0.0240785 0)
(-0.0183053 0.0339144 0)
(-0.0172055 0.0478214 0)
(-0.01137 0.0669292 0)
(0.0038356 0.0904018 0)
(0.0330137 0.112817 0)
(0.0742253 0.125067 0)
(0.118665 0.125659 0)
(0.166975 0.121499 0)
(0.229125 0.106093 0)
(0.298377 0.0596459 0)
(0.347727 -0.0208952 0)
(0.361117 -0.113483 0)
(0.344384 -0.19813 0)
(0.308848 -0.266933 0)
(0.26407 -0.318578 0)
(0.216922 -0.355164 0)
(0.171346 -0.380142 0)
(0.12908 -0.396778 0)
(0.0906237 -0.407586 0)
(0.0559296 -0.414274 0)
(0.0247187 -0.417795 0)
(-0.00457389 0.000344862 0)
(-0.00490497 0.00117609 0)
(-0.0058347 0.00232341 0)
(-0.00722795 0.00379542 0)
(-0.00894676 0.00578259 0)
(-0.0108556 0.0085352 0)
(-0.0127464 0.0122823 0)
(-0.0143878 0.0173826 0)
(-0.0154002 0.0243153 0)
(-0.0151794 0.033769 0)
(-0.0124316 0.0466362 0)
(-0.00460873 0.0632958 0)
(0.0118574 0.0821553 0)
(0.0394642 0.0983668 0)
(0.076032 0.10587 0)
(0.116389 0.103414 0)
(0.160226 0.0927041 0)
(0.20925 0.0688194 0)
(0.256018 0.0238514 0)
(0.286412 -0.0399478 0)
(0.293238 -0.11 0)
(0.279542 -0.174739 0)
(0.252225 -0.228543 0)
(0.217702 -0.270224 0)
(0.180668 -0.300944 0)
(0.144011 -0.322785 0)
(0.109247 -0.337874 0)
(0.0770489 -0.348007 0)
(0.0476448 -0.35451 0)
(0.0210069 -0.358079 0)
(-0.00445176 0.000382843 0)
(-0.00476108 0.00126197 0)
(-0.00565129 0.00249336 0)
(-0.00696426 0.00404149 0)
(-0.00855551 0.00609604 0)
(-0.0102552 0.00889151 0)
(-0.0118291 0.0126373 0)
(-0.012987 0.0176517 0)
(-0.0132868 0.0243371 0)
(-0.0120138 0.0332186 0)
(-0.00783813 0.0447811 0)
(0.00143378 0.0587951 0)
(0.0183466 0.0733151 0)
(0.0439746 0.084266 0)
(0.0762538 0.0875074 0)
(0.111718 0.0817262 0)
(0.148893 0.066732 0)
(0.186046 0.0399181 0)
(0.217296 -0.000730569 0)
(0.235413 -0.0516696 0)
(0.237454 -0.105249 0)
(0.225539 -0.154685 0)
(0.203995 -0.196368 0)
(0.177033 -0.229377 0)
(0.147866 -0.254335 0)
(0.118594 -0.272531 0)
(0.0904397 -0.28539 0)
(0.0640389 -0.294225 0)
(0.0396868 -0.300089 0)
(0.0174635 -0.30345 0)
(-0.00430823 0.000419542 0)
(-0.00459535 0.00135191 0)
(-0.0054397 0.00266639 0)
(-0.00666343 0.00428821 0)
(-0.00811496 0.00640284 0)
(-0.00959313 0.00922032 0)
(-0.0108396 0.0129274 0)
(-0.0115137 0.017789 0)
(-0.0111235 0.0241156 0)
(-0.00889654 0.0322431 0)
(-0.00357047 0.0422905 0)
(0.00661855 0.0536073 0)
(0.023285 0.064146 0)
(0.046609 0.0706562 0)
(0.0746779 0.0702327 0)
(0.104767 0.0616752 0)
(0.134743 0.044519 0)
(0.161967 0.018003 0)
(0.182411 -0.0172878 0)
(0.192527 -0.0579656 0)
(0.19142 -0.099188 0)
(0.180774 -0.136922 0)
(0.163432 -0.168949 0)
(0.142175 -0.194658 0)
(0.119203 -0.21441 0)
(0.0960286 -0.229035 0)
(0.0735896 -0.2395 0)
(0.0523925 -0.24675 0)
(0.0326453 -0.251567 0)
(0.0143884 -0.2543 0)
(-0.00414068 0.000455316 0)
(-0.0044033 0.00144483 0)
(-0.00519573 0.00284108 0)
(-0.0063224 0.00453317 0)
(-0.00762332 0.00669741 0)
(-0.00887227 0.00951333 0)
(-0.00978798 0.0131391 0)
(-0.00999304 0.017776 0)
(-0.00896291 0.0236307 0)
(-0.00592385 0.0308441 0)
(0.000232515 0.03923 0)
(0.0108172 0.0478969 0)
(0.0266831 0.0549007 0)
(0.0474501 0.0577349 0)
(0.0713337 0.0543737 0)
(0.0959913 0.0439413 0)
(0.119183 0.0262962 0)
(0.138482 0.00181592 0)
(0.151395 -0.0279919 0)
(0.156331 -0.0603397 0)
(0.153338 -0.0921043 0)
(0.143797 -0.12086 0)
(0.129656 -0.145289 0)
(0.112788 -0.165037 0)
(0.0947009 -0.180359 0)
(0.0764641 -0.191809 0)
(0.0587558 -0.200032 0)
(0.0419442 -0.205621 0)
(0.0261806 -0.209059 0)
(0.0115135 -0.210738 0)
(-0.00394651 0.00049021 0)
(-0.00418133 0.00153917 0)
(-0.00491579 0.00301526 0)
(-0.00593834 0.00477317 0)
(-0.0070806 0.00697353 0)
(-0.00809782 0.00976194 0)
(-0.00868939 0.0132603 0)
(-0.00845691 0.0175991 0)
(-0.00686701 0.0228751 0)
(-0.00319656 0.0290478 0)
(0.00345962 0.0357187 0)
(0.0139578 0.0418735 0)
(0.0285879 0.0458319 0)
(0.0466337 0.0457299 0)
(0.0664393 0.0402268 0)
(0.0859767 0.0288607 0)
(0.103264 0.0118994 0)
(0.116466 -0.00973204 0)
(0.124171 -0.0343892 0)
(0.12582 -0.0599444 0)
(0.121848 -0.0843731 0)
(0.113376 -0.106217 0)
(0.101779 -0.124716 0)
(0.0883367 -0.1397 0)
(0.0740775 -0.151365 0)
(0.0597384 -0.160089 0)
(0.0458059 -0.166295 0)
(0.0325768 -0.170367 0)
(0.0202203 -0.172643 0)
(0.00882305 -0.173554 0)
(-0.00372221 0.000524049 0)
(-0.00392581 0.00163372 0)
(-0.00459655 0.00318713 0)
(-0.00550926 0.00500419 0)
(-0.00648796 0.00722497 0)
(-0.00727711 0.0099581 0)
(-0.00756348 0.0132822 0)
(-0.0069438 0.0172528 0)
(-0.00490293 0.0218577 0)
(-0.000812519 0.0269047 0)
(0.00600826 0.0318704 0)
(0.016012 0.0357487 0)
(0.0290909 0.0371777 0)
(0.0443603 0.034851 0)
(0.0603281 0.0279807 0)
(0.0753046 0.0164896 0)
(0.0877306 0.000936128 0)
(0.0963807 -0.017592 0)
(0.100553 -0.0376436 0)
(0.100207 -0.0576709 0)
(0.0958881 -0.0763714 0)
(0.0884877 -0.0928756 0)
(0.0789877 -0.106766 0)
(0.0682728 -0.117988 0)
(0.057056 -0.126703 0)
(0.0458584 -0.133188 0)
(0.0350347 -0.137744 0)
(0.0248109 -0.140659 0)
(0.0153243 -0.142205 0)
(0.00664013 -0.142759 0)
(-0.00346401 0.000556586 0)
(-0.00363311 0.0017269 0)
(-0.00423472 0.00335386 0)
(-0.00503343 0.00522169 0)
(-0.00584778 0.00744562 0)
(-0.00642 0.0100955 0)
(-0.00643376 0.0132006 0)
(-0.00549685 0.0167409 0)
(-0.00313828 0.0206061 0)
(0.00114932 0.0244975 0)
(0.00781548 0.0278388 0)
(0.0169959 0.0297331 0)
(0.0283265 0.0291524 0)
(0.0408821 0.0252611 0)
(0.0533773 0.017704 0)
(0.0644818 0.00669224 0)
(0.0730808 -0.00708018 0)
(0.0784406 -0.022584 0)
(0.0802971 -0.0386586 0)
(0.0788447 -0.0542215 0)
(0.0746125 -0.068448 0)
(0.0682938 -0.0808329 0)
(0.0605947 -0.0911677 0)
(0.0521316 -0.0994711 0)
(0.0433985 -0.105893 0)
(0.0347594 -0.11065 0)
(0.0264669 -0.113974 0)
(0.0186843 -0.116079 0)
(0.0115051 -0.117174 0)
(0.00496 -0.117544 0)
(-0.00316773 0.00058778 0)
(-0.00329947 0.00181707 0)
(-0.00382749 0.00351209 0)
(-0.00450956 0.00542165 0)
(-0.00516404 0.00763109 0)
(-0.00553908 0.0101716 0)
(-0.00532671 0.0130181 0)
(-0.00416064 0.0160804 0)
(-0.00163729 0.0191687 0)
(0.00262242 0.0219262 0)
(0.0088511 0.0237871 0)
(0.0169654 0.0240261 0)
(0.0264648 0.021934 0)
(0.0364766 0.0170565 0)
(0.0459521 0.00935391 0)
(0.0539064 -0.000791954 0)
(0.0596133 -0.0126697 0)
(0.0626861 -0.025413 0)
(0.0631074 -0.0381521 0)
(0.0611541 -0.0501564 0)
(0.0572889 -0.0609181 0)
(0.0520403 -0.0701595 0)
(0.0459151 -0.0777973 0)
(0.0393417 -0.083891 0)
(0.0326568 -0.0885797 0)
(0.026104 -0.092041 0)
(0.0198481 -0.0944555 0)
(0.0139948 -0.0959854 0)
(0.00860462 -0.0967833 0)
(0.00369711 -0.0970548 0)
(-0.00282957 0.000617419 0)
(-0.00292106 0.0019024 0)
(-0.00337188 0.00365893 0)
(-0.00393716 0.00559991 0)
(-0.00444153 0.00777886 0)
(-0.00464787 0.0101871 0)
(-0.00426816 0.0127456 0)
(-0.00297803 0.0153035 0)
(-0.000456417 0.0176137 0)
(0.00355763 0.0193061 0)
(0.00912104 0.0198802 0)
(0.016013 0.0188023 0)
(0.0236976 0.0156488 0)
(0.0314163 0.0102568 0)
(0.0383627 0.00279181 0)
(0.0438557 -0.00628742 0)
(0.0474599 -0.0163437 0)
(0.0490198 -0.0266884 0)
(0.0486353 -0.0367045 0)
(0.0465879 -0.0459182 0)
(0.0432521 -0.0540325 0)
(0.0390199 -0.0609117 0)
(0.0342502 -0.066546 0)
(0.0292373 -0.0710119 0)
(0.0242074 -0.0744296 0)
(0.0193205 -0.0769374 0)
(0.0146829 -0.0786715 0)
(0.0103576 -0.0797548 0)
(0.00637343 -0.0803034 0)
(0.00273411 -0.0804741 0)
(-0.00244574 0.0006448 0)
(-0.0024946 0.00198089 0)
(-0.0028655 0.00379096 0)
(-0.00331626 0.00575268 0)
(-0.0036852 0.00788849 0)
(-0.0037594 0.0101489 0)
(-0.00328307 0.0124055 0)
(-0.00198575 0.0144592 0)
(0.000370687 0.0160304 0)
(0.00394014 0.0167705 0)
(0.00866267 0.0162782 0)
(0.0142556 0.0142097 0)
(0.0202193 0.0103753 0)
(0.0259429 0.00481874 0)
(0.0308421 -0.0021777 0)
(0.0344818 -0.0101532 0)
(0.0366259 -0.0185734 0)
(0.0372502 -0.0269225 0)
(0.0364966 -0.0347799 0)
(0.0346108 -0.0418523 0)
(0.0318793 -0.0479789 0)
(0.0285826 -0.0531098 0)
(0.0249667 -0.057274 0)
(0.0212284 -0.0605528 0)
(0.017517 -0.0630503 0)
(0.0139366 -0.0648756 0)
(0.0105559 -0.066131 0)
(0.00741727 -0.0669048 0)
(0.00454332 -0.0672789 0)
(0.00193713 -0.0673744 0)
(-0.0020126 0.000669261 0)
(-0.00201673 0.00204961 0)
(-0.00230595 0.00390437 0)
(-0.0026463 0.00587742 0)
(-0.00289883 0.00796225 0)
(-0.00288409 0.0100704 0)
(-0.00238997 0.0120318 0)
(-0.00120763 0.0136122 0)
(0.000828605 0.0145248 0)
(0.00378145 0.014459 0)
(0.00753919 0.0131311 0)
(0.011818 0.0103633 0)
(0.0162028 0.00614421 0)
(0.0202371 0.000650692 0)
(0.0235318 -0.00578242 0)
(0.0258213 -0.0127349 0)
(0.0270014 -0.0197783 0)
(0.0271089 -0.0265402 0)
(0.0262824 -0.0327457 0)
(0.0247147 -0.0382228 0)
(0.0226125 -0.0428963 0)
(0.0201689 -0.0467642 0)
(0.0175468 -0.0498734 0)
(0.0148733 -0.0523031 0)
(0.0122434 -0.0541439 0)
(0.00972278 -0.0554862 0)
(0.00735394 -0.0564119 0)
(0.00516237 -0.0569938 0)
(0.00316023 -0.0572977 0)
(0.00134649 -0.0573991 0)
(-0.00152743 0.000689892 0)
(-0.00148467 0.00210591 0)
(-0.00169081 0.00399565 0)
(-0.0019264 0.00597266 0)
(-0.00208382 0.00800554 0)
(-0.00202639 0.00997236 0)
(-0.00159675 0.0116706 0)
(-0.000648278 0.0128434 0)
(0.000921148 0.0132116 0)
(0.00312089 0.0125168 0)
(0.00583153 0.0105799 0)
(0.00881963 0.00735644 0)
(0.0117815 0.00295903 0)
(0.0144107 -0.00235756 0)
(0.0164655 -0.00824923 0)
(0.017803 -0.0143475 0)
(0.0183882 -0.0203167 0)
(0.0182733 -0.0258925 0)
(0.0175677 -0.0308993 0)
(0.0164069 -0.0352438 0)
(0.0149286 -0.0389034 0)
(0.0132578 -0.0419046 0)
(0.0114988 -0.0443038 0)
(0.00973198 -0.0461733 0)
(0.00801617 -0.0475862 0)
(0.0063871 -0.0486108 0)
(0.00486067 -0.049306 0)
(0.00344054 -0.0497196 0)
(0.00212536 -0.0498974 0)
(0.000912858 -0.0499179 0)
(-0.000988015 0.000705387 0)
(-0.000896343 0.0021466 0)
(-0.00101806 0.00406045 0)
(-0.00115374 0.00603717 0)
(-0.00123629 0.00802647 0)
(-0.00118106 0.00988166 0)
(-0.000892723 0.0113778 0)
(-0.000286204 0.0122464 0)
(0.000689738 0.0122223 0)
(0.002025 0.0110942 0)
(0.00363039 0.0087642 0)
(0.00535734 0.00527606 0)
(0.00702915 0.000819596 0)
(0.00847599 -0.00430763 0)
(0.00956612 -0.00977401 0)
(0.0102364 -0.0152561 0)
(0.0104815 -0.0204848 0)
(0.0103411 -0.0252664 0)
(0.0098828 -0.0294875 0)
(0.00918475 -0.0331015 0)
(0.00832339 -0.0361153 0)
(0.0073655 -0.0385696 0)
(0.00636428 -0.0405222 0)
(0.00535881 -0.0420379 0)
(0.00437875 -0.0431805 0)
(0.00344683 -0.0440112 0)
(0.00257941 -0.0445791 0)
(0.00178754 -0.0449183 0)
(0.00107869 -0.0450608 0)
(0.000452838 -0.0450719 0)
(-0.000393465 0.000714513 0)
(-0.000105062 0.00216967 0)
(-0.0001195 0.00409678 0)
(-0.000135744 0.00607237 0)
(-0.00014524 0.00803463 0)
(-0.000138204 0.00982282 0)
(-0.000102617 0.0111998 0)
(-2.89539e-05 0.0118923 0)
(8.85091e-05 0.011647 0)
(0.000247281 0.0102842 0)
(0.000433051 0.00775516 0)
(0.000620659 0.00414584 0)
(0.000712246 -0.000301278 0)
(0.00078809 -0.00530651 0)
(0.000874176 -0.0105333 0)
(0.00092979 -0.0156757 0)
(0.000948253 -0.020506 0)
(0.000933009 -0.0248692 0)
(0.000890231 -0.0286828 0)
(0.000826768 -0.0319215 0)
(0.000749095 -0.0346035 0)
(0.000662943 -0.0367733 0)
(0.000573108 -0.0384891 0)
(0.000482747 -0.0398155 0)
(0.000393967 -0.0408158 0)
(0.000308884 -0.0415478 0)
(0.00022938 -0.0420601 0)
(0.000156836 -0.0423936 0)
(9.26519e-05 -0.0425841 0)
(3.79305e-05 -0.0426628 0)
(0.0245459 -1.04707 0)
(0.232444 -1.02139 0)
(0.38937 -0.967972 0)
(0.44545 -0.934505 0)
(0.417815 -0.88601 0)
(0.310849 -0.773122 0)
(0.183298 -0.616417 0)
(0.35437 -0.385059 0)
(0.608017 0.0482291 0)
(0.591861 0.507575 0)
(0.35163 0.524127 0)
(0.133791 0.39909 0)
(0.0787486 0.285484 0)
(0.0228675 0.195478 0)
(-0.0233188 0.145158 0)
(-4.9461e-05 0.0978804 0)
(0.00468491 0.0743708 0)
(0.0033998 0.057229 0)
(0.00286963 0.0436901 0)
(0.00314311 0.0329398 0)
(0.00403643 0.0243228 0)
(0.00559119 0.017581 0)
(0.0059425 0.0123399 0)
(0.00497026 0.00825718 0)
(0.004055 0.00528484 0)
(0.00333837 0.00323429 0)
(0.00278474 0.00188516 0)
(0.0023448 0.00104614 0)
(0.00199832 0.00056134 0)
(0.00177607 0.000317726 0)
(0.0109835 -1.17323 0)
(0.144905 -1.10729 0)
(0.191455 -1.01391 0)
(0.220574 -0.928316 0)
(0.16189 -0.84419 0)
(0.0528801 -0.714436 0)
(0.0614362 -0.637497 0)
(0.308547 -0.475897 0)
(0.530484 -0.0203253 0)
(0.500691 0.541241 0)
(0.329212 0.591119 0)
(0.110214 0.425298 0)
(0.0502031 0.304333 0)
(0.445488 0.164393 0)
(0.388504 0.137885 0)
(0.919232 0.078491 0)
(0.401876 0.133911 0)
(0.11749 0.0621971 0)
(0.0676786 0.0455659 0)
(0.0459751 0.0337834 0)
(0.0345818 0.0245637 0)
(0.0269487 0.0175848 0)
(0.0207284 0.0122803 0)
(0.016017 0.00823907 0)
(0.0124545 0.00530429 0)
(0.00967374 0.00326626 0)
(0.00754476 0.00191653 0)
(0.00593124 0.00106767 0)
(0.00476066 0.000569539 0)
(0.00407662 0.000308729 0)
(-0.00387216 -1.20502 0)
(-0.0245971 -1.10716 0)
(-0.0258054 -1.04082 0)
(-0.0424304 -0.916541 0)
(-0.073091 -0.80698 0)
(-0.0784598 -0.709333 0)
(0.0453453 -0.70027 0)
(0.2802 -0.593638 0)
(0.413211 -0.0192703 0)
(0.597011 0.624144 0)
(0.336484 0.682975 0)
(0.170299 0.42911 0)
(0.485536 0.252321 0)
(0.799404 0.135469 0)
(1.94668 -0.267763 0)
(2.19026 0.230797 0)
(0.520582 0.284887 0)
(0.179047 0.0781054 0)
(0.097388 0.0506822 0)
(0.0637885 0.0360657 0)
(0.0462009 0.0257839 0)
(0.0349405 0.0184024 0)
(0.0263767 0.0128453 0)
(0.0201473 0.00859774 0)
(0.0155221 0.00553939 0)
(0.0119423 0.003424 0)
(0.0092298 0.00202412 0)
(0.00720661 0.00113299 0)
(0.00574178 0.000598785 0)
(0.0049026 0.000304627 0)
(-0.01177 -1.15813 0)
(-0.111817 -1.09181 0)
(-0.156123 -1.02025 0)
(-0.18031 -0.909481 0)
(-0.172699 -0.806337 0)
(-0.0948829 -0.759459 0)
(0.0510869 -0.777222 0)
(0.27399 -0.771422 0)
(0.752556 0.00757148 0)
(0.681066 0.669132 0)
(0.31885 0.808411 0)
(1.2992 0.497949 0)
(0.634123 0.142089 0)
(0.799568 0.036667 0)
(1.29848 -0.504091 0)
(1.75803 0.48449 0)
(0.459294 0.386572 0)
(0.190202 0.0990567 0)
(0.104092 0.0573873 0)
(0.0677661 0.0389891 0)
(0.048674 0.0273022 0)
(0.0366429 0.0193856 0)
(0.027656 0.0135107 0)
(0.0211306 0.00901983 0)
(0.0162872 0.00581688 0)
(0.0125296 0.00360937 0)
(0.00967229 0.00215133 0)
(0.00754761 0.00121206 0)
(0.00598872 0.000636313 0)
(0.00510849 0.00030431 0)
(-0.0124329 -1.05397 0)
(-0.120923 -1.03072 0)
(-0.186105 -0.983819 0)
(-0.202307 -0.909734 0)
(-0.173414 -0.837079 0)
(-0.0889402 -0.82276 0)
(0.0440398 -0.861315 0)
(0.303628 -0.894962 0)
(1.05254 -0.4116 0)
(0.645376 0.664385 0)
(0.321286 0.964153 0)
(0.32171 0.36745 0)
(0.564963 0.132978 0)
(0.5211 0.00843679 0)
(0.513283 -0.586708 0)
(0.661304 0.644942 0)
(0.345043 0.425361 0)
(0.181061 0.120076 0)
(0.102462 0.0646573 0)
(0.0672262 0.0421884 0)
(0.0482684 0.0289588 0)
(0.0363768 0.0204426 0)
(0.0276369 0.0142321 0)
(0.0212405 0.00949164 0)
(0.0164422 0.00613323 0)
(0.0126903 0.00382139 0)
(0.00980427 0.00229737 0)
(0.00765143 0.00130616 0)
(0.00604853 0.000685789 0)
(0.00515186 0.000312546 0)
(-0.00927082 -0.948704 0)
(-0.0946966 -0.958533 0)
(-0.150211 -0.952493 0)
(-0.171185 -0.912411 0)
(-0.152239 -0.869595 0)
(-0.0948051 -0.876898 0)
(0.0101807 -0.946579 0)
(0.248413 -1.10324 0)
(0.657899 -1.02096 0)
(0.681847 0.718831 0)
(0.574345 0.869482 0)
(0.234583 0.372851 0)
(0.46744 0.148419 0)
(0.382026 0.0166972 0)
(-0.00595194 -0.466155 0)
(-0.246382 0.652946 0)
(0.235396 0.418748 0)
(0.163537 0.138235 0)
(0.0979293 0.0719326 0)
(0.0653381 0.0455144 0)
(0.0471215 0.0307041 0)
(0.0356355 0.0215377 0)
(0.0273128 0.0149738 0)
(0.0211521 0.00999003 0)
(0.0164561 0.0064748 0)
(0.0127555 0.00405282 0)
(0.0098698 0.0024581 0)
(0.00770407 0.00141322 0)
(0.00607723 0.000747177 0)
(0.00516884 0.000329963 0)
(-0.00447253 -0.873188 0)
(-0.0561236 -0.900955 0)
(-0.101662 -0.91742 0)
(-0.135483 -0.903991 0)
(-0.139951 -0.886712 0)
(-0.117366 -0.912832 0)
(-0.0612245 -1.01441 0)
(0.0910686 -1.2923 0)
(0.558399 -1.4125 0)
(0.944143 0.792265 0)
(0.63824 0.810772 0)
(-0.0817403 0.518465 0)
(0.470331 0.167841 0)
(0.303079 0.0615305 0)
(-0.148904 -0.254326 0)
(-0.4168 0.511402 0)
(0.147717 0.389416 0)
(0.141782 0.151973 0)
(0.0916739 0.0788413 0)
(0.062717 0.0488827 0)
(0.0456483 0.03252 0)
(0.0347067 0.0226642 0)
(0.026859 0.0157318 0)
(0.0209714 0.0105152 0)
(0.0163986 0.00684256 0)
(0.0127708 0.00430609 0)
(0.00990254 0.00263553 0)
(0.0077315 0.0015338 0)
(0.00609802 0.000820659 0)
(0.00518086 0.000356468 0)
(-0.00100632 -0.833659 0)
(-0.0287169 -0.857585 0)
(-0.0706769 -0.876469 0)
(-0.113922 -0.878798 0)
(-0.141316 -0.882774 0)
(-0.155181 -0.92157 0)
(-0.164535 -1.03545 0)
(-0.195499 -1.34517 0)
(-0.378389 -1.51505 0)
(1.61927 1.03407 0)
(0.919456 0.953855 0)
(0.530492 0.336024 0)
(0.504782 0.210782 0)
(0.237515 0.131901 0)
(-0.138081 -0.0722331 0)
(-0.305952 0.383446 0)
(0.0833793 0.350414 0)
(0.117937 0.160601 0)
(0.0839239 0.0850229 0)
(0.0594065 0.0521896 0)
(0.043868 0.0343767 0)
(0.0336138 0.023812 0)
(0.0262892 0.0165009 0)
(0.0207038 0.0110624 0)
(0.0162774 0.0072336 0)
(0.0127391 0.00458084 0)
(0.00990428 0.00282976 0)
(0.00773559 0.00166741 0)
(0.00610977 0.000905217 0)
(0.00518701 0.000391041 0)
(-0.000470392 -0.812735 0)
(-0.023416 -0.820221 0)
(-0.0640911 -0.829841 0)
(-0.110413 -0.840187 0)
(-0.154235 -0.856396 0)
(-0.200095 -0.897288 0)
(-0.270155 -0.99368 0)
(-0.445971 -1.20802 0)
(-1.1164 -1.3702 0)
(-0.0244862 0.680495 0)
(1.26815 0.924924 0)
(1.16635 0.500113 0)
(0.664695 0.357444 0)
(0.163226 0.215526 0)
(-0.116755 0.0510366 0)
(-0.217599 0.307045 0)
(0.0385492 0.309621 0)
(0.093686 0.164136 0)
(0.0748609 0.090138 0)
(0.0553984 0.0553106 0)
(0.0417531 0.0362318 0)
(0.0323501 0.024967 0)
(0.0255981 0.0172771 0)
(0.0203448 0.011627 0)
(0.0160951 0.00764546 0)
(0.0126606 0.00487694 0)
(0.00987475 0.00304088 0)
(0.00771767 0.00181396 0)
(0.00610958 0.000999812 0)
(0.00518463 0.000432588 0)
(-0.00238175 -0.782789 0)
(-0.0345352 -0.779104 0)
(-0.0734368 -0.781476 0)
(-0.119149 -0.792972 0)
(-0.172537 -0.81024 0)
(-0.240033 -0.842127 0)
(-0.345948 -0.901311 0)
(-0.562509 -0.988833 0)
(-1.08733 -0.936707 0)
(-0.808194 0.240095 0)
(-0.118442 0.159328 0)
(1.614 0.753471 0)
(0.235133 0.799852 0)
(0.0653768 0.287079 0)
(-0.10743 0.130123 0)
(-0.161562 0.261639 0)
(0.00814052 0.271571 0)
(0.0703975 0.163112 0)
(0.0647605 0.0938912 0)
(0.0507136 0.0581023 0)
(0.0392836 0.0380281 0)
(0.0309062 0.026109 0)
(0.0247783 0.0180534 0)
(0.019891 0.0122028 0)
(0.015853 0.0080749 0)
(0.0125363 0.00519345 0)
(0.00981417 0.00326829 0)
(0.00767934 0.00197321 0)
(0.0060955 0.00110317 0)
(0.00517201 0.000479804 0)
(-0.00394418 -0.730377 0)
(-0.0430538 -0.730197 0)
(-0.082487 -0.732129 0)
(-0.129275 -0.738576 0)
(-0.187878 -0.749254 0)
(-0.265049 -0.765677 0)
(-0.379024 -0.786386 0)
(-0.567733 -0.787175 0)
(-0.859294 -0.646509 0)
(-0.889884 -0.230897 0)
(-0.812483 -0.185784 0)
(-0.866891 0.453116 0)
(-0.224108 0.716627 0)
(-0.0418565 0.315284 0)
(-0.11042 0.17579 0)
(-0.128422 0.232432 0)
(-0.0125402 0.238145 0)
(0.0489867 0.158364 0)
(0.0539594 0.096073 0)
(0.0454028 0.0604179 0)
(0.0364495 0.0396967 0)
(0.0292688 0.0272116 0)
(0.0238224 0.01882 0)
(0.0193406 0.0127837 0)
(0.0155495 0.00851814 0)
(0.012367 0.00552853 0)
(0.00972251 0.00351102 0)
(0.00762117 0.00214466 0)
(0.00606605 0.0012141 0)
(0.00514811 0.000531385 0)
(-0.0036344 -0.672023 0)
(-0.0407398 -0.673679 0)
(-0.0840331 -0.67498 0)
(-0.134058 -0.676453 0)
(-0.194427 -0.678759 0)
(-0.271495 -0.679868 0)
(-0.37584 -0.672616 0)
(-0.52015 -0.633424 0)
(-0.688254 -0.504834 0)
(-0.758437 -0.283341 0)
(-0.797858 -0.128292 0)
(-0.872452 0.298634 0)
(-0.346669 0.492571 0)
(-0.12955 0.300163 0)
(-0.121507 0.194986 0)
(-0.111111 0.21067 0)
(-0.0271358 0.209496 0)
(0.0299621 0.150814 0)
(0.042841 0.0965735 0)
(0.039556 0.0621114 0)
(0.0332576 0.0411551 0)
(0.0274267 0.0282395 0)
(0.022725 0.019562 0)
(0.0186922 0.0133611 0)
(0.0151793 0.00896985 0)
(0.0121511 0.00587888 0)
(0.00959801 0.00376783 0)
(0.00754196 0.00232773 0)
(0.0060197 0.00133205 0)
(0.00511135 0.000586641 0)
(-0.0041162 -0.611995 0)
(-0.0418412 -0.611742 0)
(-0.084058 -0.610772 0)
(-0.132852 -0.608624 0)
(-0.19084 -0.604058 0)
(-0.261655 -0.594046 0)
(-0.349889 -0.57127 0)
(-0.45702 -0.519936 0)
(-0.566948 -0.416019 0)
(-0.636858 -0.261978 0)
(-0.673649 -0.0906903 0)
(-0.635086 0.175203 0)
(-0.370377 0.325627 0)
(-0.186229 0.259203 0)
(-0.135038 0.193795 0)
(-0.104018 0.191277 0)
(-0.0381202 0.184795 0)
(0.0134742 0.141307 0)
(0.0317848 0.0953879 0)
(0.0332978 0.0630548 0)
(0.0297326 0.0423163 0)
(0.0253747 0.0291521 0)
(0.0214836 0.0202612 0)
(0.0179443 0.0139266 0)
(0.014737 0.00942538 0)
(0.0118873 0.00624136 0)
(0.00943937 0.00403784 0)
(0.00744074 0.00252193 0)
(0.00595615 0.00145684 0)
(0.00506066 0.000645187 0)
(-0.00411654 -0.547404 0)
(-0.0398073 -0.546667 0)
(-0.0800169 -0.544123 0)
(-0.1258 -0.53899 0)
(-0.178701 -0.529783 0)
(-0.240525 -0.513509 0)
(-0.312587 -0.484469 0)
(-0.392986 -0.433235 0)
(-0.471285 -0.348834 0)
(-0.528106 -0.229879 0)
(-0.550968 -0.0827717 0)
(-0.50422 0.0949507 0)
(-0.352792 0.211143 0)
(-0.214005 0.208964 0)
(-0.146262 0.178351 0)
(-0.10267 0.171637 0)
(-0.0469009 0.162918 0)
(-0.000551496 0.130491 0)
(0.0211326 0.0926014 0)
(0.0267814 0.0631466 0)
(0.0259163 0.0430945 0)
(0.0231145 0.029906 0)
(0.0200962 0.0208978 0)
(0.0170923 0.0144711 0)
(0.0142176 0.00987986 0)
(0.0115723 0.00661227 0)
(0.00924481 0.00431918 0)
(0.0073162 0.00272578 0)
(0.00587475 0.00158762 0)
(0.00499526 0.000705965 0)
(-0.00398269 -0.48218 0)
(-0.0366565 -0.481052 0)
(-0.0732317 -0.477462 0)
(-0.114361 -0.470624 0)
(-0.160795 -0.459145 0)
(-0.213135 -0.440544 0)
(-0.271224 -0.410805 0)
(-0.332627 -0.364319 0)
(-0.39059 -0.295245 0)
(-0.433611 -0.201414 0)
(-0.447951 -0.0856177 0)
(-0.41285 0.040659 0)
(-0.320525 0.132891 0)
(-0.22034 0.15973 0)
(-0.152437 0.154493 0)
(-0.103641 0.150858 0)
(-0.0540702 0.142867 0)
(-0.0122857 0.118879 0)
(0.0111918 0.088371 0)
(0.0201937 0.0623232 0)
(0.0218762 0.0434126 0)
(0.0206611 0.0304548 0)
(0.0185652 0.0214468 0)
(0.0161339 0.0149814 0)
(0.0136197 0.0103258 0)
(0.0112037 0.00698592 0)
(0.00901347 0.00460817 0)
(0.00716774 0.0029368 0)
(0.00577517 0.00172301 0)
(0.00491566 0.000767915 0)
(-0.00370251 -0.418718 0)
(-0.0325329 -0.417349 0)
(-0.0646396 -0.413252 0)
(-0.100367 -0.405821 0)
(-0.139964 -0.393913 0)
(-0.183397 -0.3756 0)
(-0.229967 -0.348117 0)
(-0.27746 -0.308012 0)
(-0.321217 -0.251896 0)
(-0.353549 -0.178282 0)
(-0.3642 -0.0896221 0)
(-0.341604 0.0037072 0)
(-0.283796 0.0783797 0)
(-0.212798 0.116172 0)
(-0.152793 0.127033 0)
(-0.104526 0.129103 0)
(-0.0597142 0.12392 0)
(-0.0218881 0.106749 0)
(0.00219867 0.0828864 0)
(0.0137245 0.0605659 0)
(0.0176944 0.043209 0)
(0.0180394 0.0307517 0)
(0.0168978 0.0218794 0)
(0.0150711 0.0154404 0)
(0.0129455 0.0107538 0)
(0.0107808 0.00735651 0)
(0.00874516 0.00490167 0)
(0.00699457 0.00315341 0)
(0.00565722 0.0018627 0)
(0.00482229 0.000831254 0)
(-0.00332023 -0.35902 0)
(-0.0279899 -0.357547 0)
(-0.0553578 -0.353365 0)
(-0.0855507 -0.346144 0)
(-0.118547 -0.335008 0)
(-0.154048 -0.318478 0)
(-0.191238 -0.294624 0)
(-0.228281 -0.261252 0)
(-0.261854 -0.216335 0)
(-0.286723 -0.159113 0)
(-0.296049 -0.0916184 0)
(-0.283118 -0.0209492 0)
(-0.246827 0.0399331 0)
(-0.197143 0.0797605 0)
(-0.147861 0.0994453 0)
(-0.103881 0.107123 0)
(-0.0636706 0.10574 0)
(-0.0294729 0.0943432 0)
(-0.00567577 0.0763875 0)
(0.00757035 0.057902 0)
(0.0134761 0.042439 0)
(0.0152926 0.0307497 0)
(0.0151115 0.0221633 0)
(0.0139115 0.0158282 0)
(0.0121987 0.0111523 0)
(0.0103032 0.0077177 0)
(0.00843865 0.005197 0)
(0.00679429 0.00337439 0)
(0.00551882 0.00200649 0)
(0.00471297 0.00089699 0)
(-0.00290657 -0.30435 0)
(-0.0235474 -0.302892 0)
(-0.0463306 -0.298954 0)
(-0.0712617 -0.292467 0)
(-0.0982221 -0.282773 0)
(-0.126852 -0.268716 0)
(-0.156405 -0.248922 0)
(-0.185445 -0.221954 0)
(-0.211598 -0.18658 0)
(-0.231314 -0.142447 0)
(-0.240151 -0.0910248 0)
(-0.233947 -0.0367702 0)
(-0.211551 0.012806 0)
(-0.177302 0.0504203 0)
(-0.138787 0.0739013 0)
(-0.101059 0.0858343 0)
(-0.0657491 0.0883034 0)
(-0.0351143 0.0818718 0)
(-0.0122933 0.0691039 0)
(0.00191967 0.0543994 0)
(0.00934311 0.0410815 0)
(0.0124804 0.0304092 0)
(0.0132323 0.0222687 0)
(0.0126658 0.0161262 0)
(0.0113813 0.0115106 0)
(0.00976894 0.00806408 0)
(0.0080895 0.00549217 0)
(0.00656149 0.00359893 0)
(0.00535504 0.002154 0)
(0.00458253 0.000965796 0)
(-0.00250372 -0.255017 0)
(-0.0195938 -0.253824 0)
(-0.0382474 -0.250581 0)
(-0.0584027 -0.245216 0)
(-0.0799939 -0.237242 0)
(-0.10275 -0.225805 0)
(-0.126078 -0.209928 0)
(-0.14889 -0.18865 0)
(-0.169504 -0.161192 0)
(-0.185513 -0.127373 0)
(-0.193999 -0.0881463 0)
(-0.192207 -0.0462193 0)
(-0.178932 -0.00607186 0)
(-0.155818 0.0274678 0)
(-0.126864 0.0515533 0)
(-0.0960059 0.06606 0)
(-0.0658634 0.0718018 0)
(-0.0388662 0.069559 0)
(-0.0175586 0.0612776 0)
(-0.00306615 0.0501767 0)
(0.005425 0.039146 0)
(0.00967444 0.0297039 0)
(0.0112933 0.0221693 0)
(0.0113473 0.0163156 0)
(0.0104955 0.0118167 0)
(0.00917581 0.00838924 0)
(0.00769327 0.00578378 0)
(0.00629125 0.00382558 0)
(0.00516141 0.00230476 0)
(0.00442704 0.00103737 0)
(-0.00210588 -0.211122 0)
(-0.0158753 -0.210453 0)
(-0.0308318 -0.208357 0)
(-0.04688 -0.2044 0)
(-0.0639624 -0.198176 0)
(-0.0818835 -0.189166 0)
(-0.100209 -0.176741 0)
(-0.118154 -0.160263 0)
(-0.134539 -0.139207 0)
(-0.147725 -0.113442 0)
(-0.15575 -0.0835298 0)
(-0.156698 -0.051083 0)
(-0.149425 -0.0188219 0)
(-0.134294 0.0100251 0)
(-0.113273 0.0328396 0)
(-0.0890292 0.0483936 0)
(-0.06408 0.0565158 0)
(-0.0408035 0.0576497 0)
(-0.0214276 0.0531633 0)
(-0.00725028 0.0453794 0)
(0.00185138 0.0366732 0)
(0.00695701 0.0286243 0)
(0.00933699 0.0218443 0)
(0.00997527 0.0163787 0)
(0.00954815 0.0120584 0)
(0.00852559 0.00868604 0)
(0.0072487 0.00606709 0)
(0.00598186 0.00405206 0)
(0.0049357 0.00245795 0)
(0.00424495 0.00111087 0)
(-0.00168401 -0.173715 0)
(-0.0123191 -0.173402 0)
(-0.0239682 -0.172179 0)
(-0.0365633 -0.169456 0)
(-0.0500002 -0.164844 0)
(-0.0640826 -0.157999 0)
(-0.0784759 -0.148514 0)
(-0.0926249 -0.135968 0)
(-0.105719 -0.119999 0)
(-0.11664 -0.100488 0)
(-0.124048 -0.0777339 0)
(-0.126571 -0.0526787 0)
(-0.123197 -0.0269835 0)
(-0.113723 -0.00280027 0)
(-0.0989874 0.0177563 0)
(-0.0806192 0.0331769 0)
(-0.060609 0.0427269 0)
(-0.0410468 0.046402 0)
(-0.0238993 0.0450185 0)
(-0.0105242 0.0401783 0)
(-0.00125828 0.0337382 0)
(0.00441779 0.0271826 0)
(0.00741567 0.0212831 0)
(0.00857629 0.0163018 0)
(0.00855092 0.0122246 0)
(0.00782224 0.00894696 0)
(0.00675532 0.00633671 0)
(0.0056312 0.00427549 0)
(0.00467535 0.00261168 0)
(0.00403376 0.00118502 0)
(-0.00132575 -0.142837 0)
(-0.00939437 -0.142659 0)
(-0.0182843 -0.141873 0)
(-0.0279673 -0.139978 0)
(-0.0383601 -0.136638 0)
(-0.049305 -0.13158 0)
(-0.0605492 -0.124507 0)
(-0.0716908 -0.115118 0)
(-0.0821625 -0.103149 0)
(-0.0911923 -0.0884842 0)
(-0.0978494 -0.071259 0)
(-0.101141 -0.0520047 0)
(-0.100225 -0.0317307 0)
(-0.0946852 -0.0118543 0)
(-0.0847486 0.00602981 0)
(-0.0713097 0.0205138 0)
(-0.0557621 0.0306405 0)
(-0.0397745 0.0360529 0)
(-0.0250243 0.037092 0)
(-0.0128293 0.034768 0)
(-0.00380763 0.0304528 0)
(0.00214637 0.0254144 0)
(0.00558754 0.0204882 0)
(0.00718255 0.0160777 0)
(0.00751909 0.0123064 0)
(0.00707106 0.00916468 0)
(0.0062133 0.00658717 0)
(0.00523698 0.0044923 0)
(0.00437735 0.00276412 0)
(0.00379017 0.00125949 0)
(-0.00103289 -0.117587 0)
(-0.00710411 -0.11747 0)
(-0.0138081 -0.116924 0)
(-0.0211425 -0.115566 0)
(-0.0290605 -0.113137 0)
(-0.0374522 -0.109431 0)
(-0.046136 -0.104228 0)
(-0.0548267 -0.0972964 0)
(-0.0631292 -0.0884264 0)
(-0.0705085 -0.0774966 0)
(-0.0763139 -0.0645389 0)
(-0.0798247 -0.0498351 0)
(-0.0803659 -0.0339867 0)
(-0.0774775 -0.0179097 0)
(-0.0710827 -0.00275185 0)
(-0.0615977 0.0103258 0)
(-0.0498993 0.0203603 0)
(-0.0372148 0.0267953 0)
(-0.0248994 0.029612 0)
(-0.0141488 0.029348 0)
(-0.00571212 0.026935 0)
(0.000227002 0.0233762 0)
(0.00391308 0.0194777 0)
(0.00583082 0.0157071 0)
(0.00647177 0.0122989 0)
(0.00627953 0.00933295 0)
(0.00562346 0.00681249 0)
(0.00479693 0.00469857 0)
(0.00403831 0.00291279 0)
(0.00351052 0.0013331 0)
(-0.000792502 -0.0970851 0)
(-0.00534078 -0.0969956 0)
(-0.0103677 -0.0965902 0)
(-0.0158753 -0.0955944 0)
(-0.0218332 -0.0938231 0)
(-0.0281691 -0.091125 0)
(-0.0347646 -0.0873311 0)
(-0.0414318 -0.0822599 0)
(-0.0479059 -0.0757373 0)
(-0.053821 -0.0676428 0)
(-0.0587231 -0.0579482 0)
(-0.0620901 -0.0467837 0)
(-0.0633962 -0.0344928 0)
(-0.0622142 -0.0216529 0)
(-0.0583399 -0.00905489 0)
(-0.0518951 0.00240812 0)
(-0.0433805 0.0118879 0)
(-0.0336263 0.0187616 0)
(-0.0236634 0.0227766 0)
(-0.014508 0.0241159 0)
(-0.00692547 0.0233346 0)
(-0.00127824 0.0211647 0)
(0.00245196 0.0182891 0)
(0.00456009 0.0152016 0)
(0.00543141 0.0122028 0)
(0.00545739 0.00944846 0)
(0.00498801 0.0070079 0)
(0.00430931 0.00489054 0)
(0.00365534 0.00305504 0)
(0.00319076 0.00140399 0)
(-0.00060486 -0.0804864 0)
(-0.00398597 -0.0804332 0)
(-0.00771031 -0.0801639 0)
(-0.0117786 -0.0794672 0)
(-0.0161807 -0.0782025 0)
(-0.0208798 -0.0762552 0)
(-0.025804 -0.0734979 0)
(-0.0308309 -0.0697938 0)
(-0.0357858 -0.0650047 0)
(-0.0404217 -0.059021 0)
(-0.0444249 -0.051785 0)
(-0.0474229 -0.0433364 0)
(-0.0490198 -0.0338558 0)
(-0.0488572 -0.0236897 0)
(-0.0466958 -0.0133631 0)
(-0.0425036 -0.00352705 0)
(-0.0365218 0.00513068 0)
(-0.02927 0.0120101 0)
(-0.021483 0.0167378 0)
(-0.0139706 0.0192516 0)
(-0.00743373 0.0198058 0)
(-0.00231443 0.0188718 0)
(0.00125659 0.0169788 0)
(0.00340881 0.0145862 0)
(0.00441998 0.0120252 0)
(0.00461539 0.00951051 0)
(0.00430997 0.00717047 0)
(0.00377281 0.0050641 0)
(0.00322522 0.00318793 0)
(0.00282718 0.00147106 0)
(-0.000442236 -0.0673721 0)
(-0.0028533 -0.067348 0)
(-0.00552429 -0.0671792 0)
(-0.00846254 -0.066693 0)
(-0.0116596 -0.0657836 0)
(-0.0150882 -0.0643697 0)
(-0.0187002 -0.0623582 0)
(-0.022416 -0.0596457 0)
(-0.0261218 -0.0561222 0)
(-0.0296544 -0.0516894 0)
(-0.0328036 -0.0462778 0)
(-0.0353114 -0.0398762 0)
(-0.0368917 -0.0325644 0)
(-0.0372633 -0.0245385 0)
(-0.0362034 -0.0161319 0)
(-0.0336122 -0.0077982 0)
(-0.0295722 -6.79262e-05 0)
(-0.024385 0.00653752 0)
(-0.0185358 0.0116026 0)
(-0.0126302 0.0149151 0)
(-0.00725562 0.0165062 0)
(-0.00285214 0.0166204 0)
(0.000368972 0.0156224 0)
(0.00241072 0.0139011 0)
(0.0034593 0.0117835 0)
(0.00376374 0.00952324 0)
(0.00359265 0.00729853 0)
(0.00318663 0.00521567 0)
(0.00274504 0.00330795 0)
(0.00241622 0.00153288 0)
(-0.000309209 -0.0574074 0)
(-0.00198717 -0.0573715 0)
(-0.00384688 -0.0572125 0)
(-0.00589565 -0.0568284 0)
(-0.00813048 -0.0561488 0)
(-0.0105354 -0.0551064 0)
(-0.0130816 -0.0536255 0)
(-0.0157197 -0.0516228 0)
(-0.018378 -0.0490066 0)
(-0.0209519 -0.0456886 0)
(-0.0233048 -0.0415973 0)
(-0.0252647 -0.0366971 0)
(-0.0266328 -0.0310093 0)
(-0.0272033 -0.024634 0)
(-0.026794 -0.0177729 0)
(-0.0252914 -0.0107305 0)
(-0.0226964 -0.00389875 0)
(-0.0191601 0.00228871 0)
(-0.0149873 0.00743165 0)
(-0.0105956 0.0112384 0)
(-0.00643681 0.0135873 0)
(-0.00289312 0.0145423 0)
(-0.000194891 0.0143132 0)
(0.00158928 0.0132017 0)
(0.00256532 0.011505 0)
(0.0029111 0.00949672 0)
(0.00283854 0.00739267 0)
(0.00254939 0.00534188 0)
(0.00221218 0.00341185 0)
(0.00195461 0.00158706 0)
(-0.000206868 -0.0499047 0)
(-0.00133939 -0.0499088 0)
(-0.00257682 -0.049847 0)
(-0.00391682 -0.0496015 0)
(-0.00536176 -0.0491058 0)
(-0.00691156 -0.0483167 0)
(-0.00856046 -0.0471833 0)
(-0.0102871 -0.0456443 0)
(-0.0120504 -0.0436293 0)
(-0.0137851 -0.0410657 0)
(-0.0154043 -0.0378847 0)
(-0.0167982 -0.0340365 0)
(-0.0178369 -0.0295072 0)
(-0.0183821 -0.024337 0)
(-0.0183029 -0.0186422 0)
(-0.0175037 -0.0126226 0)
(-0.0159542 -0.00656392 0)
(-0.0137188 -0.000815857 0)
(-0.0109726 0.00425793 0)
(-0.00797787 0.00833397 0)
(-0.00504634 0.0111963 0)
(-0.00246631 0.0127776 0)
(-0.000437982 0.0131636 0)
(0.000951112 0.0125582 0)
(0.00174556 0.0112277 0)
(0.00206082 0.00944644 0)
(0.0020486 0.00745622 0)
(0.00186 0.00543987 0)
(0.00162413 0.00349618 0)
(0.00143973 0.00163158 0)
(-0.000108352 -0.0450587 0)
(-0.000678489 -0.0450655 0)
(-0.00132378 -0.0450199 0)
(-0.00205274 -0.0448205 0)
(-0.00286291 -0.0444137 0)
(-0.00374579 -0.0437696 0)
(-0.00468926 -0.0428507 0)
(-0.00567461 -0.0416048 0)
(-0.00667758 -0.0399693 0)
(-0.00766595 -0.0378806 0)
(-0.00859733 -0.0352752 0)
(-0.00941491 -0.0320989 0)
(-0.0100486 -0.0283197 0)
(-0.010421 -0.0239431 0)
(-0.0104554 -0.019034 0)
(-0.0100909 -0.0137268 0)
(-0.00929893 -0.00823598 0)
(-0.00810059 -0.00284849 0)
(-0.00657765 0.00210787 0)
(-0.00487552 0.00630851 0)
(-0.00316997 0.00948057 0)
(-0.00163092 0.0114752 0)
(-0.000392245 0.012289 0)
(0.000478494 0.0120539 0)
(0.000991177 0.0109989 0)
(0.00120824 0.00939295 0)
(0.00121901 0.00749387 0)
(0.00111581 0.00550746 0)
(0.000978791 0.00355635 0)
(0.000869477 0.00166387 0)
(-9.51436e-06 -0.0426745 0)
(-5.81413e-05 -0.042642 0)
(-0.000115323 -0.0425287 0)
(-0.000181752 -0.042295 0)
(-0.000256062 -0.0419093 0)
(-0.000336875 -0.0413342 0)
(-0.000422674 -0.0405267 0)
(-0.000511407 -0.0394362 0)
(-0.000601177 -0.0380029 0)
(-0.000689804 -0.036164 0)
(-0.000773655 -0.0338564 0)
(-0.000847574 -0.0310246 0)
(-0.000905487 -0.027631 0)
(-0.000940801 -0.0236675 0)
(-0.000946799 -0.0191745 0)
(-0.000917836 -0.014253 0)
(-0.000851802 -0.00907763 0)
(-0.000759589 -0.0038944 0)
(-0.000730146 0.000975202 0)
(-0.000568668 0.00520871 0)
(-0.000380684 0.00852035 0)
(-0.000201059 0.0107289 0)
(-5.33191e-05 0.0117778 0)
(5.19271e-05 0.0117529 0)
(0.000114323 0.0108584 0)
(0.000141276 0.00935639 0)
(0.000142999 0.00751216 0)
(0.000130966 0.00554489 0)
(0.000114661 0.00359017 0)
(0.000101678 0.00168217 0)
(-0.000130653 8.03559e-06 0)
(-0.000401991 1.34538e-05 0)
(-0.000844261 2.50605e-05 0)
(-0.0015818 4.56513e-05 0)
(-0.00276219 7.90912e-05 0)
(-0.00455527 0.000129954 0)
(-0.00714152 0.000202866 0)
(-0.0106903 0.000301426 0)
(-0.015329 0.000426473 0)
(-0.0211012 0.000573633 0)
(-0.0279213 0.000730602 0)
(-0.0355314 0.000875219 0)
(-0.0434857 0.000976299 0)
(-0.0511806 0.000998665 0)
(-0.0579339 0.000911972 0)
(-0.0631105 0.000700382 0)
(-0.0662438 0.000368433 0)
(-0.0671173 -5.96081e-05 0)
(-0.0657782 -0.000546556 0)
(-0.0624899 -0.00105139 0)
(-0.0576502 -0.0015377 0)
(-0.0517097 -0.00197827 0)
(-0.0450971 -0.00235699 0)
(-0.0381847 -0.00266738 0)
(-0.0312626 -0.0029104 0)
(-0.0245487 -0.00309158 0)
(-0.0181824 -0.00321908 0)
(-0.0122506 -0.00330193 0)
(-0.00679351 -0.00334916 0)
(-0.00182507 -0.00336852 0)
(-0.000130657 2.27505e-05 0)
(-0.000401997 3.80925e-05 0)
(-0.00084426 7.0959e-05 0)
(-0.0015818 0.000129265 0)
(-0.00276221 0.00022397 0)
(-0.00455543 0.000368056 0)
(-0.00714214 0.000574713 0)
(-0.0106922 0.000854284 0)
(-0.0153344 0.00120944 0)
(-0.0211143 0.00162823 0)
(-0.0279502 0.00207634 0)
(-0.0355891 0.00249134 0)
(-0.0435905 0.00278472 0)
(-0.051354 0.00285559 0)
(-0.0581956 0.00261583 0)
(-0.0634725 0.00201816 0)
(-0.0667057 0.00107392 0)
(-0.0676649 -0.000148288 0)
(-0.0663863 -0.00154124 0)
(-0.0631269 -0.00298679 0)
(-0.0582844 -0.00437974 0)
(-0.0523126 -0.0056415 0)
(-0.0456464 -0.00672596 0)
(-0.0386653 -0.00761433 0)
(-0.0316656 -0.0083098 0)
(-0.0248707 -0.00882822 0)
(-0.0184235 -0.00919336 0)
(-0.0124143 -0.00943095 0)
(-0.00688493 -0.00956647 0)
(-0.00184964 -0.0096221 0)
(-0.000129937 3.74065e-05 0)
(-0.000399765 6.26298e-05 0)
(-0.000839549 0.000116669 0)
(-0.00157296 0.000212534 0)
(-0.0027468 0.000368258 0)
(-0.00453017 0.000605205 0)
(-0.00710307 0.000945131 0)
(-0.0106353 0.0014052 0)
(-0.0152568 0.00199012 0)
(-0.0210171 0.00268083 0)
(-0.0278416 0.00342173 0)
(-0.0354884 0.00411112 0)
(-0.0435302 0.00460381 0)
(-0.0513771 0.00473305 0)
(-0.0583479 0.00435137 0)
(-0.0637901 0.00337723 0)
(-0.0672042 0.00182563 0)
(-0.0683338 -0.000192573 0)
(-0.0671912 -0.0025007 0)
(-0.0640181 -0.00490223 0)
(-0.0592065 -0.00722083 0)
(-0.0532138 -0.00932405 0)
(-0.0464843 -0.0111336 0)
(-0.0394091 -0.0126174 0)
(-0.0322956 -0.0137795 0)
(-0.0253773 -0.0146461 0)
(-0.018805 -0.0152567 0)
(-0.0126738 -0.0156542 0)
(-0.00702939 -0.0158805 0)
(-0.00188868 -0.0159736 0)
(-0.000128867 5.19615e-05 0)
(-0.000396449 8.69959e-05 0)
(-0.00083255 0.000162061 0)
(-0.00155983 0.000295224 0)
(-0.00272391 0.000511551 0)
(-0.00449264 0.000840746 0)
(-0.00704499 0.00131313 0)
(-0.0105506 0.00195281 0)
(-0.0151413 0.00276687 0)
(-0.020872 0.00372987 0)
(-0.0276789 0.00476619 0)
(-0.0353365 0.0057364 0)
(-0.0434369 0.00643989 0)
(-0.0514068 0.00664387 0)
(-0.0585694 0.00613899 0)
(-0.0642592 0.00480483 0)
(-0.0679459 0.00265478 0)
(-0.0693341 -0.000162016 0)
(-0.0683997 -0.00340004 0)
(-0.0653599 -0.0067828 0)
(-0.0605979 -0.0100588 0)
(-0.0545762 -0.0130378 0)
(-0.0477526 -0.0156057 0)
(-0.0405357 -0.017714 0)
(-0.0332506 -0.0193671 0)
(-0.0261457 -0.0206008 0)
(-0.0193837 -0.0214704 0)
(-0.0130677 -0.0220368 0)
(-0.00724919 -0.0223591 0)
(-0.00194783 -0.0224915 0)
(-0.000127451 6.63759e-05 0)
(-0.00039206 0.000111125 0)
(-0.000823284 0.00020701 0)
(-0.00154245 0.000377109 0)
(-0.0026936 0.000653459 0)
(-0.00444293 0.00107405 0)
(-0.00696804 0.00167777 0)
(-0.0104383 0.0024958 0)
(-0.0149879 0.00353809 0)
(-0.0206789 0.00477382 0)
(-0.0274612 0.00610909 0)
(-0.0351311 0.00736892 0)
(-0.0433068 0.0082991 0)
(-0.0514375 0.00860071 0)
(-0.058854 0.0079992 0)
(-0.0648745 0.0063288 0)
(-0.0689293 0.00359373 0)
(-0.0706698 -2.39443e-05 0)
(-0.070022 -0.00421244 0)
(-0.0671686 -0.00861174 0)
(-0.0624797 -0.0128905 0)
(-0.0564233 -0.0167941 0)
(-0.0494754 -0.0201675 0)
(-0.0420684 -0.0229426 0)
(-0.0345512 -0.0251216 0)
(-0.0271932 -0.0267494 0)
(-0.0201728 -0.0278979 0)
(-0.0136054 -0.0286458 0)
(-0.00754917 -0.0290718 0)
(-0.0020287 -0.0292467 0)
(-0.000125692 8.06124e-05 0)
(-0.000386608 0.000134952 0)
(-0.000811775 0.000251394 0)
(-0.00152086 0.000457967 0)
(-0.00265595 0.0007936 0)
(-0.00438117 0.0013045 0)
(-0.00687238 0.00203811 0)
(-0.0102986 0.00303288 0)
(-0.0147967 0.00430219 0)
(-0.0204373 0.00581114 0)
(-0.0271873 0.00744969 0)
(-0.0348694 0.00901018 0)
(-0.0431348 0.0101872 0)
(-0.0514618 0.010616 0)
(-0.0591931 0.00995262 0)
(-0.0656291 0.00797787 0)
(-0.0701517 0.00467674 0)
(-0.0723457 0.000256259 0)
(-0.0720718 -0.00490785 0)
(-0.0694666 -0.0103695 0)
(-0.0648807 -0.0157101 0)
(-0.0587878 -0.0206031 0)
(-0.0516864 -0.0248452 0)
(-0.0440392 -0.0283435 0)
(-0.0362259 -0.0310952 0)
(-0.0285432 -0.0331537 0)
(-0.0211906 -0.0346073 0)
(-0.0142989 -0.0355546 0)
(-0.00793633 -0.0360943 0)
(-0.00213317 -0.0363157 0)
(-0.000123595 9.46328e-05 0)
(-0.000380109 0.000158411 0)
(-0.000798055 0.00029509 0)
(-0.00149511 0.000537575 0)
(-0.00261105 0.000931591 0)
(-0.0043075 0.00153147 0)
(-0.00675823 0.00239322 0)
(-0.0101317 0.00356273 0)
(-0.0145679 0.00505752 0)
(-0.020147 0.00684011 0)
(-0.0268557 0.00878692 0)
(-0.034548 0.0106611 0)
(-0.0429145 0.0121094 0)
(-0.0514705 0.0127013 0)
(-0.0595758 0.0120197 0)
(-0.0665133 0.00978165 0)
(-0.0716091 0.00594042 0)
(-0.0743671 0.000717313 0)
(-0.074566 -0.00545186 0)
(-0.0722819 -0.012032 0)
(-0.0678379 -0.018509 0)
(-0.0617119 -0.0244734 0)
(-0.0544292 -0.0296649 0)
(-0.0464896 -0.0339587 0)
(-0.0383118 -0.0373438 0)
(-0.0302267 -0.0398802 0)
(-0.0224609 -0.0416731 0)
(-0.015165 -0.0428426 0)
(-0.00841985 -0.0435089 0)
(-0.00226331 -0.0437824 0)
(-0.000121167 0.000108399 0)
(-0.000372581 0.000181438 0)
(-0.000782161 0.000337977 0)
(-0.00146529 0.000615714 0)
(-0.00255904 0.00106706 0)
(-0.00422213 0.00175436 0)
(-0.00662584 0.00274215 0)
(-0.00993789 0.00408402 0)
(-0.0143014 0.00580237 0)
(-0.0198075 0.00785887 0)
(-0.0264648 0.0101194 0)
(-0.0341629 0.0123222 0)
(-0.0426385 0.0140698 0)
(-0.0514521 0.0148677 0)
(-0.0599882 0.0142207 0)
(-0.0675146 0.0117709 0)
(-0.0732955 0.00742425 0)
(-0.0767396 0.00140251 0)
(-0.0775247 -0.00580453 0)
(-0.0756489 -0.0135698 0)
(-0.0713972 -0.0212738 0)
(-0.0652488 -0.0284113 0)
(-0.0577591 -0.0346527 0)
(-0.049473 -0.0398332 0)
(-0.0408565 -0.043928 0)
(-0.0322835 -0.0470018 0)
(-0.0240146 -0.0491776 0)
(-0.0162249 -0.0505979 0)
(-0.00901181 -0.051408 0)
(-0.00242294 -0.0517403 0)
(-0.000118414 0.000121873 0)
(-0.000364045 0.000203966 0)
(-0.000764138 0.000379939 0)
(-0.00143147 0.000692172 0)
(-0.00250004 0.00119963 0)
(-0.00412526 0.00197256 0)
(-0.00647554 0.00308399 0)
(-0.00971752 0.00459544 0)
(-0.0139977 0.00653504 0)
(-0.0194185 0.00886547 0)
(-0.0260127 0.0114455 0)
(-0.0337095 0.0139931 0)
(-0.0422982 0.0160718 0)
(-0.0513934 0.0171252 0)
(-0.0604137 0.0165757 0)
(-0.0686171 0.0139776 0)
(-0.0752022 0.00917117 0)
(-0.0794683 0.00236119 0)
(-0.0809705 -0.00591858 0)
(-0.0796088 -0.0149465 0)
(-0.0756147 -0.0239858 0)
(-0.0694639 -0.03242 0)
(-0.0617448 -0.0398352 0)
(-0.0530556 -0.046015 0)
(-0.0439195 -0.0509144 0)
(-0.0347636 -0.0546004 0)
(-0.0258901 -0.0572135 0)
(-0.0175054 -0.058921 0)
(-0.00972725 -0.0598954 0)
(-0.00261595 -0.0602953 0)
(-0.000115344 0.00013502 0)
(-0.000354523 0.000225937 0)
(-0.000744032 0.000420861 0)
(-0.00139374 0.000766741 0)
(-0.00243421 0.00132895 0)
(-0.00401714 0.00218549 0)
(-0.00630764 0.00341784 0)
(-0.00947098 0.00509568 0)
(-0.0136569 0.00725376 0)
(-0.0189796 0.00985779 0)
(-0.0254976 0.0127631 0)
(-0.0331828 0.0156729 0)
(-0.0418836 0.0181176 0)
(-0.0512787 0.0194826 0)
(-0.0608322 0.0191039 0)
(-0.0698008 0.016435 0)
(-0.077317 0.0112281 0)
(-0.0825568 0.00364882 0)
(-0.0849291 -0.00573841 0)
(-0.0842097 -0.0161166 0)
(-0.0805578 -0.0266191 0)
(-0.074437 -0.0364987 0)
(-0.066471 -0.0452384 0)
(-0.0573198 -0.0525559 0)
(-0.0475755 -0.0583775 0)
(-0.0377295 -0.0627681 0)
(-0.0281359 -0.0658861 0)
(-0.01904 -0.067926 0)
(-0.0105851 -0.0690908 0)
(-0.00284722 -0.0695692 0)
(-0.000111966 0.000147804 0)
(-0.000344043 0.000247288 0)
(-0.000721901 0.000460629 0)
(-0.0013522 0.000839211 0)
(-0.00236173 0.00145465 0)
(-0.00389806 0.00239256 0)
(-0.00612256 0.00374278 0)
(-0.00919876 0.0055834 0)
(-0.0132793 0.00795667 0)
(-0.0184906 0.0108335 0)
(-0.0249174 0.0140697 0)
(-0.0325775 0.0173596 0)
(-0.0413842 0.0202081 0)
(-0.0510904 0.0219467 0)
(-0.06122 0.0218236 0)
(-0.0710409 0.0191768 0)
(-0.0796228 0.0136459 0)
(-0.086006 0.00532924 0)
(-0.0894271 -0.00519703 0)
(-0.0895066 -0.0170231 0)
(-0.0863059 -0.0291379 0)
(-0.080264 -0.0406402 0)
(-0.0720404 -0.0508868 0)
(-0.0623661 -0.0595112 0)
(-0.0519155 -0.0663992 0)
(-0.0412582 -0.0716089 0)
(-0.0308121 -0.0753159 0)
(-0.0208704 -0.0777445 0)
(-0.0116089 -0.0791321 0)
(-0.00312351 -0.0797023 0)
(-0.00010829 0.000160191 0)
(-0.000332633 0.000267961 0)
(-0.000697804 0.000499136 0)
(-0.00130697 0.000909389 0)
(-0.00228279 0.00157641 0)
(-0.0037683 0.00259321 0)
(-0.00592073 0.00405793 0)
(-0.00890136 0.00605729 0)
(-0.0128655 0.00864192 0)
(-0.0179512 0.01179 0)
(-0.0242702 0.0153622 0)
(-0.031888 0.0190506 0)
(-0.0407881 0.0223424 0)
(-0.0508086 0.0245229 0)
(-0.0615493 0.0247517 0)
(-0.0723068 0.0222381 0)
(-0.0820962 0.0164805 0)
(-0.0898131 0.0074757 0)
(-0.0944927 -0.00421514 0)
(-0.0955627 -0.0175949 0)
(-0.092953 -0.031494 0)
(-0.0870604 -0.0448299 0)
(-0.0785783 -0.0568037 0)
(-0.0683183 -0.0669412 0)
(-0.0570527 -0.075073 0)
(-0.0454457 -0.0812429 0)
(-0.0339934 -0.0856432 0)
(-0.0230488 -0.0885303 0)
(-0.0128279 -0.0901813 0)
(-0.00345222 -0.0908598 0)
(-0.000104326 0.00017215 0)
(-0.000320324 0.000287899 0)
(-0.000671806 0.000536276 0)
(-0.00125816 0.000977085 0)
(-0.0021976 0.00169388 0)
(-0.00362822 0.0027869 0)
(-0.00570262 0.00436245 0)
(-0.00857939 0.00651606 0)
(-0.0124158 0.00930763 0)
(-0.0173613 0.0127248 0)
(-0.0235541 0.0166373 0)
(-0.0311085 0.0207421 0)
(-0.040083 0.0245183 0)
(-0.0504114 0.027214 0)
(-0.0617881 0.027903 0)
(-0.073561 0.0256536 0)
(-0.0847061 0.0197925 0)
(-0.0939692 0.0101722 0)
(-0.100154 -0.00269638 0)
(-0.102449 -0.0177428 0)
(-0.100609 -0.033624 0)
(-0.0949646 -0.0490428 0)
(-0.0862365 -0.0630091 0)
(-0.0753279 -0.074911 0)
(-0.0631265 -0.0845043 0)
(-0.0504108 -0.0918093 0)
(-0.0377729 -0.0970323 0)
(-0.02564 -0.100465 0)
(-0.014279 -0.10243 0)
(-0.00384396 -0.103238 0)
(-0.000100086 0.000183648 0)
(-0.00030715 0.000307048 0)
(-0.00064398 0.000571947 0)
(-0.00120593 0.00104211 0)
(-0.00210639 0.00180674 0)
(-0.00347817 0.00297308 0)
(-0.00546878 0.00465546 0)
(-0.00823352 0.00695839 0)
(-0.0119309 0.0099518 0)
(-0.0167209 0.013635 0)
(-0.0227674 0.017891 0)
(-0.0302335 0.0224291 0)
(-0.0392559 0.0267311 0)
(-0.0498747 0.0300197 0)
(-0.0618996 0.0312894 0)
(-0.0747583 0.0294577 0)
(-0.0874113 0.0236468 0)
(-0.0984565 0.013515 0)
(-0.106435 -0.00052701 0)
(-0.110242 -0.0173558 0)
(-0.109403 -0.0354432 0)
(-0.104141 -0.0532397 0)
(-0.0951986 -0.0695177 0)
(-0.0835795 -0.0834897 0)
(-0.0703079 -0.0948123 0)
(-0.0563001 -0.103468 0)
(-0.0422662 -0.109675 0)
(-0.0287252 -0.113763 0)
(-0.0160082 -0.116105 0)
(-0.0043106 -0.117068 0)
(-9.55825e-05 0.000194655 0)
(-0.000293149 0.000325356 0)
(-0.0006144 0.000606053 0)
(-0.00115039 0.00110428 0)
(-0.00200941 0.00191469 0)
(-0.00331856 0.00315124 0)
(-0.00521978 0.00493615 0)
(-0.00786449 0.00738297 0)
(-0.0114117 0.0105725 0)
(-0.0160303 0.0145176 0)
(-0.0219087 0.0191188 0)
(-0.0292575 0.0241055 0)
(-0.0382936 0.028974 0)
(-0.0491728 0.0329366 0)
(-0.0618424 0.0349189 0)
(-0.0758441 0.0336827 0)
(-0.090158 0.0281128 0)
(-0.103245 0.0176136 0)
(-0.113358 0.00243299 0)
(-0.119027 -0.0162937 0)
(-0.119482 -0.0368413 0)
(-0.114787 -0.0573628 0)
(-0.105687 -0.0763366 0)
(-0.0932995 -0.0927515 0)
(-0.0788088 -0.106133 0)
(-0.063297 -0.116408 0)
(-0.0476183 -0.123801 0)
(-0.0324065 -0.128681 0)
(-0.0180735 -0.131481 0)
(-0.00486804 -0.132633 0)
(-9.08296e-05 0.000205143 0)
(-0.000278357 0.000342772 0)
(-0.000583148 0.0006385 0)
(-0.00109171 0.00116344 0)
(-0.00190692 0.00201742 0)
(-0.00314978 0.00332088 0)
(-0.00495624 0.00520372 0)
(-0.00747313 0.00778856 0)
(-0.0108588 0.0111676 0)
(-0.0152899 0.0153694 0)
(-0.0209767 0.0203159 0)
(-0.0281754 0.0257643 0)
(-0.0371829 0.0312383 0)
(-0.0482785 0.0359571 0)
(-0.06157 0.0387946 0)
(-0.076754 0.0383578 0)
(-0.0928767 0.0332633 0)
(-0.10829 0.0225932 0)
(-0.120931 0.00634787 0)
(-0.128897 -0.0143817 0)
(-0.13102 -0.0376735 0)
(-0.127137 -0.0613297 0)
(-0.117972 -0.0834623 0)
(-0.104766 -0.102775 0)
(-0.0888912 -0.11862 0)
(-0.0716302 -0.13085 0)
(-0.0540124 -0.139683 0)
(-0.0368134 -0.145529 0)
(-0.0205486 -0.14889 0)
(-0.0055362 -0.150273 0)
(-8.58418e-05 0.000215086 0)
(-0.000262817 0.000359248 0)
(-0.00055031 0.000669198 0)
(-0.00103005 0.00121942 0)
(-0.00179919 0.00211464 0)
(-0.00297231 0.00348152 0)
(-0.00467882 0.00545739 0)
(-0.00706033 0.0081739 0)
(-0.0102735 0.0117352 0)
(-0.0145006 0.0161871 0)
(-0.0199709 0.0214768 0)
(-0.0269827 0.027397 0)
(-0.0359109 0.0335121 0)
(-0.0471635 0.039069 0)
(-0.0610311 0.0429131 0)
(-0.0774117 0.0435067 0)
(-0.0954791 0.0391721 0)
(-0.113521 0.0285938 0)
(-0.129151 0.0114162 0)
(-0.139944 -0.0114009 0)
(-0.144216 -0.037751 0)
(-0.141473 -0.0650254 0)
(-0.132381 -0.0908753 0)
(-0.118318 -0.11364 0)
(-0.10088 -0.13245 0)
(-0.0815868 -0.147052 0)
(-0.0616804 -0.157647 0)
(-0.0421122 -0.164683 0)
(-0.0235294 -0.168738 0)
(-0.006341 -0.170408 0)
(-8.06347e-05 0.000224459 0)
(-0.00024657 0.000374737 0)
(-0.000515976 0.000698063 0)
(-0.000965571 0.00127205 0)
(-0.00168652 0.0022061 0)
(-0.0027866 0.00363271 0)
(-0.00438825 0.00569641 0)
(-0.00662709 0.00853778 0)
(-0.00965682 0.0122733 0)
(-0.0136631 0.0169673 0)
(-0.018891 0.0225958 0)
(-0.0256757 0.028994 0)
(-0.0344656 0.0357811 0)
(-0.0457992 0.042255 0)
(-0.0601702 0.0472629 0)
(-0.0777287 0.0491446 0)
(-0.0978538 0.0459119 0)
(-0.118842 0.0357715 0)
(-0.137991 0.0178759 0)
(-0.152264 -0.00707372 0)
(-0.159296 -0.0368284 0)
(-0.15813 -0.0682922 0)
(-0.149311 -0.0985347 0)
(-0.134371 -0.125427 0)
(-0.115177 -0.147818 0)
(-0.0935281 -0.165314 0)
(-0.07092 -0.178082 0)
(-0.0485191 -0.186602 0)
(-0.0271408 -0.191526 0)
(-0.0073162 -0.193557 0)
(-7.52256e-05 0.000233238 0)
(-0.000229661 0.000389198 0)
(-0.000480238 0.000725016 0)
(-0.000898451 0.00132121 0)
(-0.0015692 0.00229153 0)
(-0.00259315 0.00377404 0)
(-0.00408527 0.00592008 0)
(-0.00617443 0.00887905 0)
(-0.00901008 0.01278 0)
(-0.012779 0.0177066 0)
(-0.0177374 0.0236669 0)
(-0.0242517 0.0305451 0)
(-0.0328362 0.0380286 0)
(-0.0441574 0.0454921 0)
(-0.058928 0.0518235 0)
(-0.0776036 0.0552759 0)
(-0.0998625 0.0535503 0)
(-0.124115 0.0442974 0)
(-0.147389 0.0260108 0)
(-0.165945 -0.00105399 0)
(-0.176528 -0.0345845 0)
(-0.177513 -0.0709175 0)
(-0.169244 -0.106373 0)
(-0.153436 -0.138216 0)
(-0.132282 -0.164943 0)
(-0.107914 -0.185987 0)
(-0.0821197 -0.201459 0)
(-0.0563227 -0.21185 0)
(-0.031553 -0.217885 0)
(-0.00850809 -0.220379 0)
(-6.96337e-05 0.000241404 0)
(-0.000212138 0.000402588 0)
(-0.000443194 0.000749982 0)
(-0.000828875 0.00136675 0)
(-0.00144756 0.0023707 0)
(-0.00239248 0.00390508 0)
(-0.00377068 0.00612773 0)
(-0.00570354 0.00919654 0)
(-0.00833482 0.0132531 0)
(-0.0118498 0.0184014 0)
(-0.0165113 0.0246836 0)
(-0.0227092 0.0320384 0)
(-0.031014 0.0402349 0)
(-0.0422117 0.048751 0)
(-0.0572432 0.0565621 0)
(-0.076922 0.0618884 0)
(-0.101335 0.0621424 0)
(-0.129155 0.0543525 0)
(-0.157235 0.0361565 0)
(-0.181061 0.00710047 0)
(-0.196214 -0.0305977 0)
(-0.200111 -0.0726173 0)
(-0.192766 -0.114287 0)
(-0.176126 -0.152077 0)
(-0.152806 -0.184056 0)
(-0.125326 -0.209464 0)
(-0.0957913 -0.228331 0)
(-0.0659187 -0.241123 0)
(-0.037007 -0.248612 0)
(-0.00998388 -0.251721 0)
(-6.38797e-05 0.000248937 0)
(-0.000194047 0.000414869 0)
(-0.000404948 0.00077289 0)
(-0.000757034 0.00140855 0)
(-0.00132194 0.00244338 0)
(-0.00218514 0.00402547 0)
(-0.00344532 0.00631871 0)
(-0.00521564 0.0094892 0)
(-0.00763271 0.0136909 0)
(-0.0108775 0.0190484 0)
(-0.0152146 0.0256393 0)
(-0.0210482 0.0334618 0)
(-0.0289926 0.0423778 0)
(-0.0399381 0.0519958 0)
(-0.0550536 0.0614326 0)
(-0.0755579 0.0689493 0)
(-0.102067 0.0717235 0)
(-0.13371 0.0661222 0)
(-0.16734 0.048707 0)
(-0.197643 0.0179513 0)
(-0.218708 -0.0243087 0)
(-0.226526 -0.0730181 0)
(-0.220585 -0.122139 0)
(-0.203178 -0.167073 0)
(-0.177491 -0.205395 0)
(-0.146502 -0.236168 0)
(-0.112625 -0.259339 0)
(-0.0778717 -0.275278 0)
(-0.0438694 -0.284739 0)
(-0.0118516 -0.288715 0)
(-5.79869e-05 0.000255821 0)
(-0.000175438 0.000426004 0)
(-0.0003656 0.000793677 0)
(-0.000683122 0.00144648 0)
(-0.00119267 0.00250937 0)
(-0.00197169 0.00413486 0)
(-0.00311008 0.00649246 0)
(-0.00471202 0.009756 0)
(-0.00690556 0.0140915 0)
(-0.00986452 0.019644 0)
(-0.0138497 0.0265274 0)
(-0.0192704 0.0348024 0)
(-0.0267684 0.0444332 0)
(-0.0373173 0.0551842 0)
(-0.0522995 0.0663743 0)
(-0.0733755 0.0764001 0)
(-0.101815 0.0822978 0)
(-0.137448 0.0797839 0)
(-0.177415 0.0641187 0)
(-0.21567 0.0322122 0)
(-0.24442 -0.0149686 0)
(-0.257517 -0.071629 0)
(-0.253567 -0.129764 0)
(-0.235455 -0.183266 0)
(-0.207203 -0.229186 0)
(-0.172373 -0.266505 0)
(-0.133571 -0.295197 0)
(-0.0930119 -0.315341 0)
(-0.0527665 -0.327619 0)
(-0.0143272 -0.332974 0)
(-5.19822e-05 0.000262042 0)
(-0.000156363 0.000435964 0)
(-0.000325261 0.000812285 0)
(-0.000607342 0.00148045 0)
(-0.00106011 0.00256849 0)
(-0.00175271 0.00423292 0)
(-0.00276586 0.00664841 0)
(-0.00419406 0.00999601 0)
(-0.00615537 0.0144532 0)
(-0.00881364 0.020185 0)
(-0.0124202 0.0273413 0)
(-0.0173792 0.0360469 0)
(-0.0243419 0.0463749 0)
(-0.0343357 0.0582676 0)
(-0.048926 0.0713094 0)
(-0.0702345 0.0841498 0)
(-0.100299 0.0938223 0)
(-0.13994 0.0954853 0)
(-0.187015 0.0829043 0)
(-0.234997 0.0508045 0)
(-0.273834 -0.00154928 0)
(-0.294088 -0.0678222 0)
(-0.292746 -0.137009 0)
(-0.27394 -0.200733 0)
(-0.242872 -0.255639 0)
(-0.204058 -0.300713 0)
(-0.160035 -0.336669 0)
(-0.112452 -0.362438 0)
(-0.0650069 -0.378875 0)
(-0.0180291 -0.387107 0)
(-4.58955e-05 0.000267586 0)
(-0.000136873 0.00044472 0)
(-0.000284039 0.000828662 0)
(-0.000529906 0.00151036 0)
(-0.00092463 0.00262056 0)
(-0.00152881 0.00431937 0)
(-0.00241364 0.00678609 0)
(-0.00366324 0.0102084 0)
(-0.00538433 0.0147743 0)
(-0.00772801 0.0206681 0)
(-0.0109305 0.0280745 0)
(-0.01538 0.037182 0)
(-0.0217175 0.0481758 0)
(-0.0309881 0.0611916 0)
(-0.0448879 0.0761426 0)
(-0.065996 0.0920698 0)
(-0.0972031 0.106189 0)
(-0.140638 0.113314 0)
(-0.195483 0.105614 0)
(-0.255275 0.0749054 0)
(-0.307508 0.0174426 0)
(-0.337631 -0.0607994 0)
(-0.339346 -0.143843 0)
(-0.319721 -0.21956 0)
(-0.285262 -0.285122 0)
(-0.242394 -0.338468 0)
(-0.194473 -0.384473 0)
(-0.135341 -0.417571 0)
(-0.0822444 -0.439026 0)
(-0.0241379 -0.456343 0)
(-3.97623e-05 0.000272444 0)
(-0.00011702 0.000452246 0)
(-0.000242045 0.000842765 0)
(-0.00045102 0.00153613 0)
(-0.000786586 0.00266545 0)
(-0.00130058 0.00439397 0)
(-0.00205436 0.00690506 0)
(-0.00312102 0.0103923 0)
(-0.00459468 0.0150535 0)
(-0.00661103 0.0210905 0)
(-0.00938576 0.028721 0)
(-0.01328 0.0381948 0)
(-0.0189039 0.0498084 0)
(-0.0272788 0.063898 0)
(-0.0401534 0.0807613 0)
(-0.0605321 0.0999911 0)
(-0.0921895 0.119203 0)
(-0.138868 0.133252 0)
(-0.201874 0.132792 0)
(-0.275789 0.105998 0)
(-0.345988 0.0442219 0)
(-0.390368 -0.0495 0)
(-0.394592 -0.150805 0)
(-0.373945 -0.239483 0)
(-0.332591 -0.320251 0)
(-0.274911 -0.382577 0)
(-0.206337 -0.433314 0)
(-0.123467 -0.481783 0)
(-0.0648479 -0.504178 0)
(-0.0214446 -0.545527 0)
(-3.36231e-05 0.000276623 0)
(-9.68587e-05 0.000458522 0)
(-0.000199395 0.000854553 0)
(-0.000370905 0.00155769 0)
(-0.000646369 0.00270303 0)
(-0.00106868 0.00445649 0)
(-0.00168905 0.00700494 0)
(-0.00256903 0.010547 0)
(-0.00378893 0.0152893 0)
(-0.00546662 0.0214494 0)
(-0.00779198 0.0292749 0)
(-0.0110888 0.0390728 0)
(-0.0159151 0.0512458 0)
(-0.0232246 0.0663258 0)
(-0.0347104 0.0850344 0)
(-0.0537388 0.107702 0)
(-0.0849174 0.132557 0)
(-0.133824 0.155113 0)
(-0.204865 0.164882 0)
(-0.295199 0.14585 0)
(-0.389538 0.082298 0)
(-0.456318 -0.0322995 0)
(-0.458871 -0.160738 0)
(-0.431504 -0.260179 0)
(-0.347214 -0.389888 0)
(-0.223439 -0.466098 0)
(-0.0733647 -0.556334 0)
(-0.0392625 -0.517455 0)
(-0.0158816 -0.52291 0)
(-0.000639863 -0.575788 0)
(-2.75231e-05 0.000280143 0)
(-7.64431e-05 0.000463532 0)
(-0.000156204 0.000863995 0)
(-0.000289783 0.00157497 0)
(-0.000504366 0.0027332 0)
(-0.000833745 0.00450676 0)
(-0.00131874 0.00708541 0)
(-0.00200889 0.0106721 0)
(-0.00296966 0.0154807 0)
(-0.00429893 0.0217425 0)
(-0.00615605 0.0297311 0)
(-0.00881769 0.0398046 0)
(-0.0127696 0.0524624 0)
(-0.0188561 0.0684154 0)
(-0.0285716 0.0888135 0)
(-0.0455493 0.114958 0)
(-0.075076 0.145804 0)
(-0.124593 0.178464 0)
(-0.202676 0.202078 0)
(-0.311233 0.19633 0)
(-0.43694 0.137445 0)
(-0.543709 -0.00545057 0)
(-0.534636 -0.185423 0)
(-0.452447 -0.304171 0)
(-0.386115 -0.49272 0)
(-0.300291 -0.517012 0)
(-0.255699 -0.577103 0)
(-0.174973 -0.604526 0)
(-0.0915101 -0.604915 0)
(-0.0220241 -0.613043 0)
(-2.1514e-05 0.000283025 0)
(-5.58267e-05 0.000467263 0)
(-0.000112589 0.000871065 0)
(-0.000207874 0.00158793 0)
(-0.000360964 0.00275587 0)
(-0.000596417 0.00454464 0)
(-0.000944477 0.00714622 0)
(-0.00144226 0.0107669 0)
(-0.00213951 0.0156266 0)
(-0.00311239 0.0219677 0)
(-0.00448546 0.0300853 0)
(-0.00647974 0.0403803 0)
(-0.00949025 0.0534357 0)
(-0.0142188 0.0701128 0)
(-0.0217826 0.0919331 0)
(-0.0359442 0.121506 0)
(-0.0624322 0.158326 0)
(-0.110216 0.202577 0)
(-0.192892 0.244128 0)
(-0.31578 0.258321 0)
(-0.460838 0.223771 0)
(-0.664787 0.0759451 0)
(-0.779693 -0.181797 0)
(-0.627096 -0.395409 0)
(-0.468495 -0.554752 0)
(-0.34504 -0.647629 0)
(-0.25658 -0.663772 0)
(-0.179998 -0.676398 0)
(-0.0944542 -0.693313 0)
(-0.0251248 -0.696604 0)
(-1.56527e-05 0.000285332 0)
(-3.50637e-05 0.000469757 0)
(-6.86669e-05 0.000875835 0)
(-0.000125401 0.00159669 0)
(-0.000216557 0.00277127 0)
(-0.000357358 0.00457047 0)
(-0.00056732 0.0071878 0)
(-0.000870839 0.0108321 0)
(-0.00130128 0.0157277 0)
(-0.00191173 0.0221259 0)
(-0.00278847 0.0303379 0)
(-0.00408986 0.0407998 0)
(-0.00610405 0.0541625 0)
(-0.009374 0.0714117 0)
(-0.0144388 0.0942811 0)
(-0.0249468 0.127289 0)
(-0.0468644 0.169529 0)
(-0.0892572 0.226751 0)
(-0.169974 0.290716 0)
(-0.271718 0.326256 0)
(-0.615193 0.35723 0)
(-0.659948 0.209279 0)
(-1.06269 -0.203919 0)
(-0.897774 -0.649404 0)
(-0.518846 -0.668494 0)
(-0.413663 -0.740706 0)
(-0.287412 -0.770476 0)
(-0.178582 -0.779429 0)
(-0.101905 -0.780069 0)
(-0.0276977 -0.780073 0)
(-1.13468e-05 0.000308046 0)
(-1.58519e-05 0.000505138 0)
(-2.6782e-05 0.000940848 0)
(-4.53201e-05 0.00171252 0)
(-7.50165e-05 0.00296525 0)
(-0.000121734 0.00487399 0)
(-0.000193745 0.00763124 0)
(-0.000302456 0.0114381 0)
(-0.000464044 0.0165057 0)
(-0.000707423 0.0230762 0)
(-0.0010786 0.0314639 0)
(-0.00166947 0.0421292 0)
(-0.00265252 0.0557554 0)
(-0.00442636 0.0734159 0)
(-0.00679941 0.0966807 0)
(-0.0130667 0.132978 0)
(-0.0255861 0.177486 0)
(-0.048055 0.246691 0)
(-0.127966 0.334867 0)
(-0.300774 0.432356 0)
(-0.545873 0.425185 0)
(-0.622845 0.223535 0)
(-0.00926805 -0.30808 0)
(-0.402195 -0.584048 0)
(-0.602961 -0.82303 0)
(-0.508382 -0.801569 0)
(-0.380037 -0.843558 0)
(-0.25641 -0.875711 0)
(-0.133011 -0.878216 0)
(-0.0435961 -0.888341 0)
(0.00296065 -0.00336584 0)
(0.00805138 -0.00334077 0)
(0.0136295 -0.00328583 0)
(0.019677 -0.00319288 0)
(0.0261436 -0.00305307 0)
(0.032929 -0.00285753 0)
(0.039876 -0.00259835 0)
(0.0467508 -0.00227095 0)
(0.0532401 -0.00187596 0)
(0.0589565 -0.00142199 0)
(0.0634588 -0.000927997 0)
(0.0663031 -0.000423615 0)
(0.0671154 5.28556e-05 0)
(0.0656789 0.000460502 0)
(0.0620093 0.000764396 0)
(0.0563895 0.000944745 0)
(0.0493378 0.0010023 0)
(0.0415142 0.000957245 0)
(0.0335921 0.000842102 0)
(0.0261421 0.00069179 0)
(0.019564 0.000535561 0)
(0.0140704 0.000393074 0)
(0.00971 0.00027443 0)
(0.00641434 0.000182454 0)
(0.00404193 0.00011542 0)
(0.00241795 6.93319e-05 0)
(0.00136289 3.9493e-05 0)
(0.00071166 2.14616e-05 0)
(0.000322798 1.16093e-05 0)
(7.63712e-05 7.45669e-06 0)
(0.00300078 -0.00961487 0)
(0.00815945 -0.00954235 0)
(0.0138113 -0.00938441 0)
(0.0199375 -0.0091185 0)
(0.0264852 -0.00871815 0)
(0.0333513 -0.00815853 0)
(0.0403744 -0.00741682 0)
(0.0473149 -0.00647957 0)
(0.0538529 -0.00534858 0)
(0.0595942 -0.00404843 0)
(0.0640918 -0.00263351 0)
(0.066899 -0.00118951 0)
(0.0676438 0.000173046 0)
(0.0661169 0.00133611 0)
(0.062346 0.0021995 0)
(0.0566278 0.00270751 0)
(0.0494922 0.00286408 0)
(0.0416055 0.0027289 0)
(0.0336412 0.00239605 0)
(0.026166 0.00196538 0)
(0.0195746 0.00151979 0)
(0.0140746 0.00111453 0)
(0.00971151 0.000777685 0)
(0.0064148 0.000516848 0)
(0.00404204 0.000326877 0)
(0.00241797 0.000196324 0)
(0.00136288 0.000111826 0)
(0.000711662 6.07695e-05 0)
(0.000322806 3.28677e-05 0)
(7.63745e-05 2.11131e-05 0)
(0.00306399 -0.0159615 0)
(0.00833064 -0.0158402 0)
(0.0140994 -0.0155764 0)
(0.0203487 -0.0151312 0)
(0.0270219 -0.0144621 0)
(0.03401 -0.0135266 0)
(0.0411432 -0.0122874 0)
(0.0481716 -0.0107224 0)
(0.0547636 -0.00883556 0)
(0.0605138 -0.00666899 0)
(0.0649669 -0.00431482 0)
(0.0676748 -0.00191728 0)
(0.0682732 0.000338798 0)
(0.0665708 0.0022573 0)
(0.0626203 0.00367384 0)
(0.0567442 0.00449921 0)
(0.0494904 0.00474375 0)
(0.0415315 0.00450919 0)
(0.033536 0.00395239 0)
(0.0260589 0.00323804 0)
(0.0194819 0.00250185 0)
(0.0140023 0.00183375 0)
(0.00965936 0.00127912 0)
(0.00637956 0.00084994 0)
(0.00401959 0.000537482 0)
(0.00240447 0.000322798 0)
(0.00135527 0.00018386 0)
(0.000707694 9.9916e-05 0)
(0.000321017 5.4039e-05 0)
(7.59537e-05 3.4715e-05 0)
(0.00315978 -0.0224748 0)
(0.00859076 -0.0223016 0)
(0.0145368 -0.0219257 0)
(0.0209727 -0.0212916 0)
(0.0278361 -0.0203387 0)
(0.0350085 -0.0190072 0)
(0.0423076 -0.0172449 0)
(0.0494679 -0.0150218 0)
(0.0561398 -0.0123454 0)
(0.0619008 -0.00927832 0)
(0.0662838 -0.00595426 0)
(0.0688385 -0.00258018 0)
(0.0692134 0.000581276 0)
(0.0672451 0.00325474 0)
(0.0630245 0.00521318 0)
(0.0569123 0.00633838 0)
(0.0494831 0.00665236 0)
(0.0414182 0.00630313 0)
(0.0333777 0.0055122 0)
(0.0258987 0.00450882 0)
(0.0193435 0.00348011 0)
(0.0138946 0.00254914 0)
(0.0095818 0.00177746 0)
(0.00632717 0.00118083 0)
(0.00398622 0.000746649 0)
(0.00238442 0.000448397 0)
(0.00134396 0.000255393 0)
(0.000701801 0.00013879 0)
(0.00031836 7.50628e-05 0)
(7.53284e-05 4.82236e-05 0)
(0.0032908 -0.0292247 0)
(0.00894565 -0.0289958 0)
(0.0151334 -0.0284991 0)
(0.0218237 -0.0276616 0)
(0.0289455 -0.0264036 0)
(0.0363679 -0.024647 0)
(0.0438913 -0.0223248 0)
(0.051228 -0.0193998 0)
(0.0580046 -0.0158857 0)
(0.0637753 -0.0118696 0)
(0.0680573 -0.00753234 0)
(0.0703988 -0.00314959 0)
(0.0704669 0.000933264 0)
(0.0681371 0.00436001 0)
(0.0635529 0.0068437 0)
(0.0571258 0.00824355 0)
(0.0494652 0.0086008 0)
(0.0412621 0.00811557 0)
(0.0331644 0.00707646 0)
(0.0256846 0.00577676 0)
(0.0191595 0.00445296 0)
(0.0137517 0.00325915 0)
(0.00947898 0.00227149 0)
(0.00625777 0.00150866 0)
(0.00394203 0.000953818 0)
(0.00235787 0.000572779 0)
(0.00132898 0.00032623 0)
(0.000693997 0.000177286 0)
(0.000314843 9.5883e-05 0)
(7.45004e-05 6.16018e-05 0)
(0.00345972 -0.0362878 0)
(0.00940371 -0.0359978 0)
(0.0159031 -0.0353688 0)
(0.022921 -0.0343082 0)
(0.0303752 -0.0327163 0)
(0.0381178 -0.0304956 0)
(0.0459266 -0.027564 0)
(0.0534857 -0.0238788 0)
(0.06039 -0.019463 0)
(0.0661647 -0.0144337 0)
(0.0703077 -0.00902638 0)
(0.0723671 -0.00359372 0)
(0.0720362 0.0014302 0)
(0.0692428 0.00560636 0)
(0.0641977 0.00859226 0)
(0.0573765 0.0102332 0)
(0.0494299 0.0105996 0)
(0.0410588 0.00995101 0)
(0.0328938 0.00864595 0)
(0.0254157 0.00704082 0)
(0.0189295 0.0054188 0)
(0.0135736 0.00396224 0)
(0.00935109 0.00276001 0)
(0.00617151 0.00183258 0)
(0.00388713 0.00115844 0)
(0.00232489 0.000695608 0)
(0.00131038 0.000396176 0)
(0.000684304 0.000215297 0)
(0.000310474 0.000116443 0)
(7.34718e-05 7.48151e-05 0)
(0.00367086 -0.043748 0)
(0.00997592 -0.0433899 0)
(0.0168643 -0.0426131 0)
(0.0242903 -0.0413041 0)
(0.0321576 -0.0393409 0)
(0.0402966 -0.0366057 0)
(0.0484561 -0.0330011 0)
(0.0562845 -0.0284807 0)
(0.0633373 -0.0230814 0)
(0.0691042 -0.0169576 0)
(0.0730606 -0.0104094 0)
(0.0747577 -0.00387653 0)
(0.0739245 0.0021107 0)
(0.0705564 0.00702906 0)
(0.0649486 0.0104863 0)
(0.0576534 0.0123256 0)
(0.0493685 0.0126587 0)
(0.0408028 0.0118133 0)
(0.032563 0.0102209 0)
(0.0250909 0.00829967 0)
(0.0186535 0.00637588 0)
(0.0133606 0.00465684 0)
(0.00919836 0.00324178 0)
(0.0060686 0.00215174 0)
(0.00382165 0.00135996 0)
(0.00228556 0.000816548 0)
(0.0012882 0.000465041 0)
(0.000672748 0.000252719 0)
(0.000305266 0.000136686 0)
(7.22455e-05 8.78279e-05 0)
(0.00392912 -0.0516983 0)
(0.0106762 -0.0512632 0)
(0.0180403 -0.0503193 0)
(0.0259647 -0.0487296 0)
(0.0343346 -0.0463479 0)
(0.0429535 -0.0430343 0)
(0.0515338 -0.0386767 0)
(0.0596795 -0.033227 0)
(0.0668984 -0.0267422 0)
(0.0726372 -0.0194239 0)
(0.0763471 -0.0116487 0)
(0.0775865 -0.00395625 0)
(0.0761339 0.00301783 0)
(0.0720698 0.00866579 0)
(0.0657923 0.0125541 0)
(0.0579432 0.0145384 0)
(0.0492706 0.014787 0)
(0.0404875 0.0137054 0)
(0.0321686 0.0118012 0)
(0.0247091 0.00955174 0)
(0.0183313 0.00732234 0)
(0.0131129 0.00534132 0)
(0.00902108 0.00371559 0)
(0.00594927 0.00246528 0)
(0.00374577 0.00155783 0)
(0.00224 0.000935268 0)
(0.00126251 0.000532634 0)
(0.000659362 0.000289449 0)
(0.000299233 0.000156556 0)
(7.08247e-05 0.000100605 0)
(0.00424154 -0.0602448 0)
(0.0115225 -0.0597213 0)
(0.0194608 -0.0585859 0)
(0.0279853 -0.0566752 0)
(0.0369585 -0.0538157 0)
(0.0461499 -0.0498442 0)
(0.0552271 -0.0446337 0)
(0.0637395 -0.0381386 0)
(0.0711369 -0.0304433 0)
(0.0768167 -0.0218089 0)
(0.0802039 -0.0127045 0)
(0.0808722 -0.00378478 0)
(0.0786655 0.00419976 0)
(0.0737719 0.0105571 0)
(0.0667123 0.0148246 0)
(0.0582297 0.0168888 0)
(0.0491239 0.0169925 0)
(0.0401053 0.0156297 0)
(0.0317071 0.0133861 0)
(0.0242687 0.0107952 0)
(0.0179625 0.00825625 0)
(0.0128306 0.00601407 0)
(0.0088196 0.00418022 0)
(0.00581382 0.00277239 0)
(0.00365969 0.00175151 0)
(0.00218832 0.00105145 0)
(0.00123337 0.00059877 0)
(0.000644182 0.000325385 0)
(0.000292392 0.000175998 0)
(6.92133e-05 0.000113112 0)
(0.00461619 -0.0695088 0)
(0.0125373 -0.0688827 0)
(0.021163 -0.0675255 0)
(0.0304044 -0.0652435 0)
(0.0400952 -0.0618326 0)
(0.0499627 -0.0571044 0)
(0.0596194 -0.0509179 0)
(0.0685483 -0.0432348 0)
(0.0761305 -0.0341773 0)
(0.0817058 -0.0240812 0)
(0.0846739 -0.0135277 0)
(0.0846345 -0.00330551 0)
(0.0815185 0.00571078 0)
(0.0756477 0.0127468 0)
(0.0676879 0.0173273 0)
(0.0584936 0.0193934 0)
(0.0489144 0.0192822 0)
(0.0396479 0.0175873 0)
(0.0311741 0.0149741 0)
(0.0237684 0.0120279 0)
(0.0175472 0.00917558 0)
(0.0125142 0.00667343 0)
(0.0085943 0.00463448 0)
(0.00566254 0.00307224 0)
(0.00356361 0.0019405 0)
(0.00213067 0.00116477 0)
(0.00120086 0.00066327 0)
(0.000627248 0.000360431 0)
(0.000284762 0.000194959 0)
(6.74154e-05 0.000125316 0)
(0.00506339 -0.0796301 0)
(0.0137482 -0.0788841 0)
(0.0231929 -0.0772673 0)
(0.033286 -0.0745513 0)
(0.0438253 -0.0704979 0)
(0.0544859 -0.0648911 0)
(0.0648125 -0.0575776 0)
(0.074208 -0.0485327 0)
(0.0819718 -0.0379295 0)
(0.0873787 -0.0261989 0)
(0.0898053 -0.0140579 0)
(0.088893 -0.00245052 0)
(0.0846885 0.00761228 0)
(0.0776772 0.0152817 0)
(0.0686937 0.0200921 0)
(0.0587124 0.0220669 0)
(0.0486261 0.0216609 0)
(0.0391059 0.019578 0)
(0.0305656 0.0165631 0)
(0.0232067 0.0132472 0)
(0.0170853 0.0100781 0)
(0.012164 0.00731769 0)
(0.00834566 0.00507713 0)
(0.00549584 0.003364 0)
(0.0034578 0.00212426 0)
(0.00206719 0.00127492 0)
(0.00116508 0.000725954 0)
(0.000608609 0.000394487 0)
(0.000276364 0.000213386 0)
(6.54358e-05 0.000137185 0)
(0.00559605 -0.0907739 0)
(0.01519 -0.0898858 0)
(0.0256082 -0.0879626 0)
(0.0367104 -0.0847348 0)
(0.0482493 -0.0799258 0)
(0.0598357 -0.0732901 0)
(0.0709315 -0.0646643 0)
(0.0808426 -0.0540461 0)
(0.0887722 -0.0416769 0)
(0.0939227 -0.0281073 0)
(0.0956528 -0.0142202 0)
(0.0936685 -0.00114187 0)
(0.0881663 0.00997396 0)
(0.0798341 0.0182127 0)
(0.0696991 0.0231488 0)
(0.0588601 0.0249229 0)
(0.0482413 0.0241319 0)
(0.0384694 0.0216003 0)
(0.029877 0.0181502 0)
(0.0225824 0.0144504 0)
(0.0165767 0.0109614 0)
(0.0117806 0.00794512 0)
(0.00807419 0.00550699 0)
(0.00531409 0.00364689 0)
(0.00334254 0.0023023 0)
(0.00199806 0.0013816 0)
(0.00112612 0.000786653 0)
(0.000588315 0.000427463 0)
(0.000267221 0.000231228 0)
(6.32794e-05 0.000148687 0)
(0.00623032 -0.103135 0)
(0.0169062 -0.102078 0)
(0.0284805 -0.0997892 0)
(0.0407768 -0.0959528 0)
(0.0534914 -0.0902478 0)
(0.0661553 -0.0823978 0)
(0.0781289 -0.0722324 0)
(0.088602 -0.0597842 0)
(0.0966645 -0.0453841 0)
(0.101439 -0.029735 0)
(0.102276 -0.0139224 0)
(0.0989781 0.000718474 0)
(0.0919361 0.0128749 0)
(0.0820843 0.0215936 0)
(0.0706673 0.0265267 0)
(0.058907 0.0279725 0)
(0.0477405 0.0266964 0)
(0.037728 0.0236513 0)
(0.0291037 0.0197315 0)
(0.021894 0.0156341 0)
(0.0160216 0.0118231 0)
(0.0113645 0.00855401 0)
(0.00778045 0.00592288 0)
(0.00511775 0.00392015 0)
(0.00321811 0.00247413 0)
(0.00192346 0.00148452 0)
(0.00108408 0.000845205 0)
(0.00056642 0.00045927 0)
(0.00025736 0.000248437 0)
(6.09517e-05 0.000159794 0)
(0.00698645 -0.116946 0)
(0.0189511 -0.115685 0)
(0.0318994 -0.112957 0)
(0.0456089 -0.108391 0)
(0.059705 -0.101615 0)
(0.07362 -0.0923216 0)
(0.0865905 -0.0803384 0)
(0.0976668 -0.0657481 0)
(0.105806 -0.0489998 0)
(0.110045 -0.030989 0)
(0.109741 -0.0130495 0)
(0.104836 0.00323784 0)
(0.0959723 0.0164042 0)
(0.0843839 0.0254817 0)
(0.0715541 0.0302536 0)
(0.0588193 0.0312235 0)
(0.0471029 0.0293523 0)
(0.0368709 0.025726 0)
(0.0282414 0.0213024 0)
(0.0211405 0.0167947 0)
(0.0154203 0.0126606 0)
(0.0109163 0.00914255 0)
(0.0074651 0.00632362 0)
(0.00490731 0.00418301 0)
(0.00308484 0.00263928 0)
(0.0018436 0.00158339 0)
(0.00103908 0.000901444 0)
(0.000542985 0.000489818 0)
(0.000246807 0.000264966 0)
(5.84582e-05 0.000170475 0)
(0.00789026 -0.132487 0)
(0.0213932 -0.130978 0)
(0.0359776 -0.127717 0)
(0.0513613 -0.122269 0)
(0.0670809 -0.114205 0)
(0.0824462 -0.103184 0)
(0.0965434 -0.0890406 0)
(0.108255 -0.0719289 0)
(0.116384 -0.052452 0)
(0.119874 -0.0317491 0)
(0.118115 -0.0114607 0)
(0.111245 0.00655285 0)
(0.100237 0.0206623 0)
(0.0866769 0.0299362 0)
(0.0723075 0.0343544 0)
(0.0585595 0.03468 0)
(0.0463061 0.0320949 0)
(0.0358873 0.0278177 0)
(0.0272859 0.022857 0)
(0.020321 0.017928 0)
(0.0147732 0.0134711 0)
(0.0104369 0.00970897 0)
(0.00712886 0.00670804 0)
(0.0046833 0.00443472 0)
(0.00294311 0.00279728 0)
(0.00175869 0.00167795 0)
(0.000991249 0.000955218 0)
(0.000518075 0.000519025 0)
(0.000235592 0.00028077 0)
(5.58047e-05 0.000180705 0)
(0.00897439 -0.150097 0)
(0.0243202 -0.148284 0)
(0.040858 -0.144372 0)
(0.0582289 -0.137848 0)
(0.0758569 -0.128222 0)
(0.0929013 -0.11512 0)
(0.108265 -0.0983979 0)
(0.120632 -0.0783038 0)
(0.128621 -0.0556412 0)
(0.131081 -0.0318595 0)
(0.127469 -0.00897583 0)
(0.118202 0.0108203 0)
(0.104674 0.0257613 0)
(0.088893 0.0350177 0)
(0.0728666 0.0388503 0)
(0.0580861 0.0383413 0)
(0.045327 0.0349156 0)
(0.0347663 0.0299177 0)
(0.0262334 0.024389 0)
(0.0194349 0.0190298 0)
(0.014081 0.0142519 0)
(0.00992707 0.0102515 0)
(0.00677248 0.00707502 0)
(0.00444628 0.00467458 0)
(0.00279326 0.0029477 0)
(0.00166895 0.00176792 0)
(0.000940707 0.00100638 0)
(0.000491757 0.000546812 0)
(0.000223746 0.000295805 0)
(5.29971e-05 0.000190459 0)
(0.0102814 -0.170194 0)
(0.0278449 -0.168005 0)
(0.0467234 -0.163286 0)
(0.0664579 -0.155438 0)
(0.0863303 -0.143905 0)
(0.105315 -0.128285 0)
(0.122095 -0.108468 0)
(0.135115 -0.0848297 0)
(0.142782 -0.0584319 0)
(0.14384 -0.0311198 0)
(0.137871 -0.00537896 0)
(0.125682 0.0162274 0)
(0.109208 0.031825 0)
(0.0909445 0.0407859 0)
(0.073161 0.043756 0)
(0.0573543 0.0422006 0)
(0.044142 0.0378019 0)
(0.0334979 0.032015 0)
(0.0250807 0.0258906 0)
(0.0184821 0.0200951 0)
(0.0133444 0.015 0)
(0.00938791 0.0107683 0)
(0.00639682 0.00742345 0)
(0.00419687 0.00490191 0)
(0.00263571 0.00309012 0)
(0.00157464 0.00185308 0)
(0.000887596 0.00105478 0)
(0.000464102 0.0005731 0)
(0.000211302 0.000310029 0)
(5.00414e-05 0.000199714 0)
(0.0118679 -0.193295 0)
(0.0321156 -0.190631 0)
(0.0538112 -0.184902 0)
(0.0763629 -0.17541 0)
(0.0988732 -0.161531 0)
(0.120093 -0.142847 0)
(0.138447 -0.119302 0)
(0.152092 -0.0914375 0)
(0.15918 -0.0606419 0)
(0.158348 -0.0292703 0)
(0.149385 -0.000397429 0)
(0.133635 0.0229945 0)
(0.113731 0.0389874 0)
(0.0927232 0.047296 0)
(0.0731102 0.0490776 0)
(0.0563159 0.0462433 0)
(0.0427275 0.0407367 0)
(0.0320726 0.0340967 0)
(0.0238253 0.0273535 0)
(0.0174628 0.0211191 0)
(0.0125647 0.0157124 0)
(0.00882055 0.0112577 0)
(0.00600281 0.00775225 0)
(0.00393571 0.00511603 0)
(0.00247088 0.00322413 0)
(0.00147601 0.00193317 0)
(0.000832062 0.0011003 0)
(0.000435188 0.000597818 0)
(0.000198295 0.000323404 0)
(4.69431e-05 0.00020845 0)
(0.0138109 -0.220056 0)
(0.0373334 -0.216781 0)
(0.0624372 -0.209764 0)
(0.0883516 -0.198203 0)
(0.113956 -0.181417 0)
(0.137739 -0.158992 0)
(0.157825 -0.130947 0)
(0.172032 -0.0980251 0)
(0.178194 -0.0620271 0)
(0.174832 -0.0259722 0)
(0.162058 0.00631184 0)
(0.141973 0.03138 0)
(0.118101 0.0473916 0)
(0.0940978 0.0545959 0)
(0.0726236 0.05481 0)
(0.0549209 0.0504468 0)
(0.0410609 0.0436983 0)
(0.0304824 0.0361475 0)
(0.0224655 0.0287684 0)
(0.0163778 0.0220963 0)
(0.0117431 0.0163862 0)
(0.00822623 0.0117179 0)
(0.00559141 0.00806041 0)
(0.00366347 0.00531632 0)
(0.0022992 0.00334938 0)
(0.00137333 0.00200798 0)
(0.000774253 0.00114281 0)
(0.000405092 0.000620898 0)
(0.000184761 0.000335891 0)
(4.37073e-05 0.000216649 0)
(0.0162218 -0.251315 0)
(0.0437827 -0.247231 0)
(0.0730318 -0.238532 0)
(0.102956 -0.224327 0)
(0.132165 -0.203914 0)
(0.158861 -0.176914 0)
(0.180837 -0.143435 0)
(0.195504 -0.104448 0)
(0.200276 -0.0622641 0)
(0.193539 -0.0207867 0)
(0.175906 0.0151757 0)
(0.150555 0.0416831 0)
(0.122128 0.0571828 0)
(0.0949104 0.0627185 0)
(0.0716011 0.0609326 0)
(0.0531183 0.0547777 0)
(0.0391213 0.0466596 0)
(0.028721 0.0381501 0)
(0.0210009 0.0301254 0)
(0.0152284 0.0230213 0)
(0.0108813 0.0170183 0)
(0.00760641 0.0121471 0)
(0.00516369 0.00834692 0)
(0.0033809 0.0055022 0)
(0.00212115 0.00346549 0)
(0.00126687 0.0020773 0)
(0.00071433 0.00118218 0)
(0.000373898 0.000642277 0)
(0.000170736 0.000347454 0)
(4.03388e-05 0.000224297 0)
(0.019274 -0.288195 0)
(0.0518923 -0.282978 0)
(0.0862041 -0.272004 0)
(0.120882 -0.25436 0)
(0.154234 -0.229392 0)
(0.18419 -0.196811 0)
(0.208213 -0.156793 0)
(0.223205 -0.11052 0)
(0.225989 -0.0609273 0)
(0.214745 -0.0131373 0)
(0.190897 0.0267226 0)
(0.159164 0.0542459 0)
(0.125564 0.0685016 0)
(0.0949748 0.0716753 0)
(0.0699347 0.0674054 0)
(0.0508581 0.0591913 0)
(0.0368909 0.0495883 0)
(0.0267842 0.0400852 0)
(0.0194321 0.0314138 0)
(0.0140166 0.0238884 0)
(0.0099814 0.0176058 0)
(0.00696263 0.0125439 0)
(0.00472077 0.00861084 0)
(0.00308876 0.0056731 0)
(0.0019372 0.00357214 0)
(0.00115692 0.00214093 0)
(0.000652457 0.00121832 0)
(0.000341691 0.000661894 0)
(0.000156262 0.000358059 0)
(3.68411e-05 0.000231386 0)
(0.0232834 -0.332292 0)
(0.0623831 -0.325315 0)
(0.102845 -0.311113 0)
(0.143081 -0.288904 0)
(0.181053 -0.258195 0)
(0.214575 -0.218878 0)
(0.240813 -0.171045 0)
(0.255993 -0.116016 0)
(0.256035 -0.0574379 0)
(0.23876 -0.00224986 0)
(0.206918 0.0416228 0)
(0.167478 0.0694511 0)
(0.128093 0.0814706 0)
(0.0940761 0.0814459 0)
(0.067511 0.0741654 0)
(0.0480936 0.0636305 0)
(0.0343558 0.0524473 0)
(0.0246705 0.0419321 0)
(0.0177613 0.0326226 0)
(0.0127451 0.024692 0)
(0.00904548 0.0181457 0)
(0.00629657 0.0129065 0)
(0.00426384 0.00885129 0)
(0.00278781 0.00582851 0)
(0.00174785 0.00366902 0)
(0.0010438 0.0021987 0)
(0.000588802 0.00125112 0)
(0.000308558 0.000679694 0)
(0.000141377 0.000367674 0)
(3.32165e-05 0.000237909 0)
(0.0290312 -0.386212 0)
(0.0766956 -0.375758 0)
(0.124175 -0.356837 0)
(0.170883 -0.328494 0)
(0.213626 -0.290525 0)
(0.250931 -0.243325 0)
(0.279619 -0.186239 0)
(0.294939 -0.120708 0)
(0.291344 -0.0510404 0)
(0.265898 0.0129631 0)
(0.223716 0.0607107 0)
(0.175032 0.0877089 0)
(0.129315 0.0961731 0)
(0.0919725 0.0919655 0)
(0.0642154 0.0811214 0)
(0.0447841 0.0680243 0)
(0.0315077 0.0551947 0)
(0.0223815 0.0436685 0)
(0.015992 0.0337408 0)
(0.0114172 0.0254266 0)
(0.00807615 0.0186351 0)
(0.00561007 0.0132336 0)
(0.00379414 0.00906744 0)
(0.00247889 0.00596796 0)
(0.00155363 0.00375585 0)
(0.000927798 0.00225044 0)
(0.000523539 0.00128049 0)
(0.00027459 0.000695627 0)
(0.000126122 0.000376272 0)
(2.94659e-05 0.00024387 0)
(0.0386055 -0.455304 0)
(0.0961294 -0.434694 0)
(0.149717 -0.410327 0)
(0.206008 -0.373193 0)
(0.252575 -0.32616 0)
(0.294162 -0.270565 0)
(0.325678 -0.202448 0)
(0.341405 -0.124501 0)
(0.333205 -0.0406568 0)
(0.296436 0.0339624 0)
(0.240805 0.0850153 0)
(0.181166 0.109431 0)
(0.128737 0.112624 0)
(0.0884018 0.10311 0)
(0.0599384 0.0881506 0)
(0.0408992 0.072288 0)
(0.0283455 0.0577847 0)
(0.0199222 0.0452717 0)
(0.0141295 0.0347572 0)
(0.0100369 0.0260867 0)
(0.00707631 0.0190716 0)
(0.00490512 0.0135237 0)
(0.00331302 0.00925855 0)
(0.00216286 0.00609101 0)
(0.00135506 0.00383238 0)
(0.00080925 0.00229601 0)
(0.000456849 0.00130634 0)
(0.000239882 0.000709652 0)
(0.00011054 0.000383828 0)
(2.55884e-05 0.00024928 0)
(0.0366189 -0.539989 0)
(0.0783236 -0.496428 0)
(0.144501 -0.480844 0)
(0.217996 -0.424044 0)
(0.28814 -0.366327 0)
(0.344489 -0.302633 0)
(0.379765 -0.219472 0)
(0.397143 -0.127906 0)
(0.383623 -0.0246797 0)
(0.330494 0.0629186 0)
(0.257329 0.11577 0)
(0.184974 0.134979 0)
(0.125773 0.130729 0)
(0.0830938 0.114681 0)
(0.0545818 0.0950964 0)
(0.0364218 0.0763239 0)
(0.0248757 0.060169 0)
(0.0173012 0.0467188 0)
(0.0121805 0.0356609 0)
(0.00860892 0.0266673 0)
(0.00604904 0.0194525 0)
(0.00418375 0.0137755 0)
(0.00282179 0.00942396 0)
(0.00184058 0.00619729 0)
(0.00115268 0.0038984 0)
(0.00068847 0.00233529 0)
(0.00038891 0.00132862 0)
(0.000204525 0.000721728 0)
(9.46738e-05 0.000390319 0)
(2.15803e-05 0.00025415 0)
(0.00112751 -0.556405 0)
(0.0158991 -0.503604 0)
(0.011026 -0.492434 0)
(0.111556 -0.578711 0)
(0.241315 -0.437475 0)
(0.379421 -0.358576 0)
(0.43742 -0.236782 0)
(0.46471 -0.133671 0)
(0.445986 -7.39097e-05 0)
(0.367628 0.102956 0)
(0.271859 0.154356 0)
(0.18524 0.164575 0)
(0.119744 0.150235 0)
(0.0757935 0.126388 0)
(0.048068 0.101767 0)
(0.0313547 0.0800211 0)
(0.0211148 0.0622984 0)
(0.0145312 0.0479875 0)
(0.0101534 0.0364418 0)
(0.00713869 0.0271636 0)
(0.00499783 0.0197756 0)
(0.0034482 0.0139881 0)
(0.0023219 0.00956306 0)
(0.00151297 0.00628647 0)
(0.000947068 0.00395371 0)
(0.0005658 0.00236816 0)
(0.00031991 0.00134725 0)
(0.000168619 0.000731824 0)
(7.85656e-05 0.000395725 0)
(1.74345e-05 0.000258492 0)
(0.0371045 -0.612935 0)
(0.109825 -0.6013 0)
(0.203673 -0.604848 0)
(0.270184 -0.599104 0)
(0.328425 -0.518335 0)
(0.394919 -0.439792 0)
(0.480018 -0.27369 0)
(0.551121 -0.151567 0)
(0.525776 0.0404879 0)
(0.405867 0.158495 0)
(0.282166 0.202134 0)
(0.180405 0.198166 0)
(0.109912 0.170662 0)
(0.0662981 0.137838 0)
(0.0403454 0.10794 0)
(0.0257252 0.0832596 0)
(0.0170894 0.0641256 0)
(0.0116286 0.0490568 0)
(0.00805844 0.0370905 0)
(0.00563225 0.0275713 0)
(0.00392637 0.020039 0)
(0.00270078 0.0141603 0)
(0.00181483 0.00967534 0)
(0.00118095 0.00635828 0)
(0.000738782 0.00399817 0)
(0.000441581 0.00239455 0)
(0.00025004 0.00136218 0)
(0.000132261 0.000739913 0)
(6.22599e-05 0.00040003 0)
(1.31371e-05 0.000262319 0)
(0.0411306 -0.695033 0)
(0.113447 -0.690588 0)
(0.186201 -0.691636 0)
(0.287904 -0.669122 0)
(0.381611 -0.584014 0)
(0.507102 -0.504038 0)
(0.676013 -0.39249 0)
(0.756903 -0.141167 0)
(0.623103 0.171936 0)
(0.431411 0.240032 0)
(0.282266 0.259032 0)
(0.168535 0.235305 0)
(0.0955181 0.191276 0)
(0.054523 0.148532 0)
(0.031385 0.113361 0)
(0.0195938 0.0859144 0)
(0.0128359 0.0656081 0)
(0.00861322 0.0499078 0)
(0.00590678 0.0375989 0)
(0.00409616 0.0278869 0)
(0.00283851 0.0202409 0)
(0.00194387 0.0142914 0)
(0.00130206 0.00976038 0)
(0.000845449 0.00641249 0)
(0.000528403 0.00403166 0)
(0.000316156 0.00241437 0)
(0.000179488 0.00137338 0)
(9.55522e-05 0.000745975 0)
(4.57996e-05 0.000403222 0)
(8.66768e-06 0.000265644 0)
(0.0429971 -0.779405 0)
(0.119078 -0.77846 0)
(0.209318 -0.775586 0)
(0.313632 -0.752831 0)
(0.452815 -0.742256 0)
(0.549062 -0.637622 0)
(0.966349 -0.564527 0)
(0.950971 -0.0704161 0)
(0.686857 0.286974 0)
(0.517663 0.335991 0)
(0.240729 0.32708 0)
(0.145246 0.275327 0)
(0.0755331 0.21139 0)
(0.0406427 0.15812 0)
(0.021157 0.117866 0)
(0.0130657 0.0879238 0)
(0.00839972 0.0667397 0)
(0.0055086 0.050538 0)
(0.00371117 0.0379669 0)
(0.00253751 0.0281108 0)
(0.00173836 0.0203822 0)
(0.00117995 0.014382 0)
(0.000785154 0.00981873 0)
(0.00050745 0.0064495 0)
(0.000316529 0.00405447 0)
(0.000189876 0.00242782 0)
(0.000108452 0.00138095 0)
(5.85928e-05 0.000750074 0)
(2.92286e-05 0.000405335 0)
(3.99881e-06 0.00026849 0)
(0.0643712 -0.890379 0)
(0.154506 -0.869677 0)
(0.27837 -0.890266 0)
(0.419948 -0.854689 0)
(0.558129 -0.813124 0)
(0.555314 -0.785489 0)
(0.411866 -0.487168 0)
(0.320862 0.0234984 0)
(0.701147 0.337265 0)
(0.488443 0.421336 0)
(0.251147 0.408593 0)
(0.0950424 0.310619 0)
(0.038153 0.227683 0)
(0.0264111 0.165973 0)
(0.00986153 0.121908 0)
(0.00635743 0.0902292 0)
(0.00385455 0.0686256 0)
(0.00234926 0.0520543 0)
(0.00148978 0.0392406 0)
(0.000968532 0.0291916 0)
(0.000635835 0.0212898 0)
(0.000417842 0.0151171 0)
(0.000271632 0.0103829 0)
(0.000173116 0.00685561 0)
(0.000108205 0.00432786 0)
(6.64384e-05 0.00259955 0)
(3.98518e-05 0.00148185 0)
(2.35092e-05 0.000806019 0)
(1.3965e-05 0.000435879 0)
(4.14562e-07 0.000281588 0)
(-0.00179473 0.000291012 0)
(-0.00196224 0.00048137 0)
(-0.00229246 0.000894681 0)
(-0.00271081 0.00162953 0)
(-0.00323397 0.00283216 0)
(-0.00390885 0.00468452 0)
(-0.00477891 0.00739894 0)
(-0.00582087 0.0111921 0)
(-0.00596057 0.0161037 0)
(-0.00451121 0.0224201 0)
(-0.00337091 0.0305135 0)
(-0.0029696 0.0407344 0)
(-0.00339224 0.0533874 0)
(-0.00461395 0.06954 0)
(-0.00373798 0.0904064 0)
(0.0164875 0.131441 0)
(0.0104008 0.179376 0)
(-0.0918251 0.256875 0)
(-0.0674006 0.371609 0)
(-0.279873 0.503416 0)
(-0.550125 0.54259 0)
(-0.716644 0.306788 0)
(-0.455145 -0.430386 0)
(-0.18954 -0.588803 0)
(-0.26837 -0.730327 0)
(-0.404184 -0.863479 0)
(-0.449508 -0.922994 0)
(-0.414081 -0.96008 0)
(-0.286778 -1.01301 0)
(-0.0872852 -1.04109 0)
(-0.00404077 0.000284123 0)
(-0.00460759 0.000511941 0)
(-0.00567939 0.00093305 0)
(-0.00718072 0.00167133 0)
(-0.00916473 0.00287108 0)
(-0.0117661 0.00470282 0)
(-0.015127 0.00736926 0)
(-0.0195007 0.0110939 0)
(-0.0254324 0.0160213 0)
(-0.0329202 0.0225313 0)
(-0.0435299 0.0311808 0)
(-0.0631374 0.0424453 0)
(-0.107415 0.0574791 0)
(-0.302411 0.117551 0)
(-1.03817 0.038381 0)
(-0.885461 0.104544 0)
(-0.434624 0.153433 0)
(-0.173794 0.259424 0)
(-0.0344325 0.392992 0)
(-0.229712 0.568815 0)
(-0.461162 0.587851 0)
(-0.740821 0.20983 0)
(-0.290964 -0.519593 0)
(-0.0988083 -0.629673 0)
(-0.0337963 -0.681617 0)
(-0.136183 -0.814743 0)
(-0.212898 -0.906404 0)
(-0.209566 -1.00361 0)
(-0.152665 -1.07699 0)
(-0.0419646 -1.16961 0)
(-0.00483987 0.000285837 0)
(-0.00556589 0.000577629 0)
(-0.00688875 0.00102477 0)
(-0.00877304 0.00179498 0)
(-0.0112962 0.00303883 0)
(-0.0146365 0.00492815 0)
(-0.0190069 0.00767921 0)
(-0.0247743 0.0115603 0)
(-0.032843 0.0166842 0)
(-0.0436355 0.0235574 0)
(-0.059814 0.0331686 0)
(-0.0899223 0.0468546 0)
(-0.159835 0.0704589 0)
(-0.421416 0.211594 0)
(-1.96726 0.185852 0)
(-2.17485 -0.275226 0)
(-0.926097 0.101292 0)
(-0.502013 0.214237 0)
(-0.310602 0.349567 0)
(-0.245007 0.659262 0)
(-0.531034 0.626065 0)
(-0.257728 -0.0297785 0)
(-0.376414 -0.566938 0)
(-0.0890033 -0.700562 0)
(0.0601971 -0.697447 0)
(0.0852936 -0.775759 0)
(0.0469326 -0.888471 0)
(0.0272397 -1.01238 0)
(0.0179697 -1.069 0)
(-0.00263313 -1.21946 0)
(-0.00504745 0.0002907 0)
(-0.00580557 0.000653272 0)
(-0.00718709 0.00113151 0)
(-0.00917652 0.00194216 0)
(-0.0118424 0.00324281 0)
(-0.0153501 0.0052105 0)
(-0.019951 0.00807339 0)
(-0.0260181 0.0121524 0)
(-0.034504 0.0175368 0)
(-0.045965 0.0248857 0)
(-0.0634665 0.0357349 0)
(-0.0959548 0.0526094 0)
(-0.169988 0.0874683 0)
(-0.399881 0.283346 0)
(-1.5195 0.525416 0)
(-1.42271 -0.531366 0)
(-0.811957 -0.00395161 0)
(-0.663785 0.124755 0)
(-0.224483 0.156648 0)
(-0.187653 0.786178 0)
(-0.63473 0.712237 0)
(-0.790596 0.0370788 0)
(-0.402595 -0.65347 0)
(-0.0954556 -0.783515 0)
(0.0646889 -0.759281 0)
(0.164971 -0.784708 0)
(0.183894 -0.880473 0)
(0.171215 -0.990003 0)
(0.124456 -1.06452 0)
(0.0399841 -1.15462 0)
(-0.00510269 0.000297483 0)
(-0.0058527 0.00072859 0)
(-0.00724825 0.00124096 0)
(-0.00927559 0.00209719 0)
(-0.0119824 0.00346186 0)
(-0.0154956 0.00552218 0)
(-0.0200791 0.00851123 0)
(-0.026071 0.0128038 0)
(-0.0343505 0.0184935 0)
(-0.0456209 0.0263871 0)
(-0.0630022 0.0385786 0)
(-0.0946199 0.0588696 0)
(-0.163312 0.104873 0)
(-0.325031 0.326167 0)
(-0.559318 0.770015 0)
(-0.509171 -0.633656 0)
(-0.520452 -0.0464937 0)
(-0.531469 0.121545 0)
(-0.523986 0.185472 0)
(-0.344237 0.829743 0)
(-0.627108 0.800815 0)
(-0.83901 0.476667 0)
(-0.369124 -0.924382 0)
(-0.0875687 -0.878287 0)
(0.0636406 -0.82732 0)
(0.160583 -0.825871 0)
(0.203552 -0.886106 0)
(0.19835 -0.966336 0)
(0.145422 -1.01922 0)
(0.0488377 -1.05215 0)
(-0.00512738 0.000306025 0)
(-0.00586494 0.000800102 0)
(-0.00726785 0.00134993 0)
(-0.00931482 0.00225613 0)
(-0.0120363 0.00369029 0)
(-0.0155206 0.00585365 0)
(-0.0200225 0.00897713 0)
(-0.0258433 0.0134852 0)
(-0.0337451 0.0195121 0)
(-0.0445858 0.0280015 0)
(-0.0613268 0.041562 0)
(-0.0908104 0.0651958 0)
(-0.149786 0.120552 0)
(-0.241114 0.340642 0)
(0.185466 0.786714 0)
(0.157577 -0.529318 0)
(-0.364708 -0.0436118 0)
(-0.443291 0.143484 0)
(-0.315742 0.133621 0)
(-0.63477 0.670057 0)
(-0.626986 0.860107 0)
(-1.61113 0.503172 0)
(-0.402828 -1.13036 0)
(-0.0464542 -0.978767 0)
(0.0781268 -0.886724 0)
(0.145095 -0.865283 0)
(0.17439 -0.896355 0)
(0.163695 -0.945273 0)
(0.116901 -0.958692 0)
(0.0382975 -0.95112 0)
(-0.00513997 0.000316939 0)
(-0.00586808 0.000868051 0)
(-0.00727622 0.00145953 0)
(-0.009331 0.00242039 0)
(-0.0120485 0.00392943 0)
(-0.0154895 0.00620386 0)
(-0.0198801 0.00946807 0)
(-0.0254895 0.0141903 0)
(-0.0329514 0.0205746 0)
(-0.0432509 0.0296937 0)
(-0.059013 0.044601 0)
(-0.0855531 0.0712954 0)
(-0.132506 0.13322 0)
(-0.166265 0.333515 0)
(0.315911 0.609091 0)
(0.31696 -0.290542 0)
(-0.267443 0.00374857 0)
(-0.436602 0.178644 0)
(-0.713731 -0.0472502 0)
(-0.486476 0.591689 0)
(-0.755096 0.956751 0)
(-0.897361 -0.203022 0)
(-0.165988 -1.41093 0)
(0.0437316 -1.06117 0)
(0.111848 -0.927864 0)
(0.140854 -0.887361 0)
(0.143925 -0.895646 0)
(0.116531 -0.916011 0)
(0.0730438 -0.907961 0)
(0.0221031 -0.877538 0)
(-0.00514193 0.000331071 0)
(-0.00586296 0.000933892 0)
(-0.00727363 0.00157182 0)
(-0.00932642 0.00259238 0)
(-0.0120205 0.00418151 0)
(-0.0154039 0.00657229 0)
(-0.0196576 0.00998196 0)
(-0.0250192 0.0149156 0)
(-0.0319964 0.0216645 0)
(-0.0416412 0.0314269 0)
(-0.056107 0.0476045 0)
(-0.0790015 0.0768772 0)
(-0.112929 0.142112 0)
(-0.105858 0.312691 0)
(0.248447 0.447291 0)
(0.249679 -0.0873913 0)
(-0.191154 0.0750034 0)
(-0.447747 0.249649 0)
(-0.50877 0.319298 0)
(-0.854474 0.842882 0)
(-1.26751 1.09647 0)
(0.505942 -0.761866 0)
(0.228582 -1.48284 0)
(0.175293 -1.08478 0)
(0.162397 -0.938823 0)
(0.149984 -0.886705 0)
(0.126886 -0.876936 0)
(0.0864145 -0.877306 0)
(0.042344 -0.864303 0)
(0.010348 -0.837009 0)
(-0.00513339 0.000349102 0)
(-0.00584843 0.00099956 0)
(-0.00725843 0.00168885 0)
(-0.00929983 0.00277447 0)
(-0.0119518 0.0044481 0)
(-0.0152607 0.0069573 0)
(-0.0193519 0.0105153 0)
(-0.0244281 0.0156563 0)
(-0.0308781 0.0227646 0)
(-0.0397373 0.0331588 0)
(-0.0525969 0.0504674 0)
(-0.0712579 0.0816507 0)
(-0.092302 0.146942 0)
(-0.0598951 0.285076 0)
(0.189841 0.3456 0)
(0.185134 0.0398837 0)
(-0.117451 0.152671 0)
(-0.449757 0.422554 0)
(-0.99228 0.35661 0)
(-1.52291 0.886877 0)
(0.630279 0.738447 0)
(1.18714 -0.873346 0)
(0.549861 -1.28496 0)
(0.305034 -1.02929 0)
(0.218625 -0.912021 0)
(0.169099 -0.861468 0)
(0.125592 -0.84185 0)
(0.0794267 -0.831379 0)
(0.0358219 -0.822275 0)
(0.00809553 -0.813615 0)
(-0.00511438 0.000371575 0)
(-0.00582371 0.00106734 0)
(-0.00722965 0.00181286 0)
(-0.00924936 0.00296854 0)
(-0.0118433 0.00472966 0)
(-0.0150588 0.00735619 0)
(-0.0189599 0.0110625 0)
(-0.0237128 0.0164034 0)
(-0.0295923 0.0238537 0)
(-0.0375253 0.0348377 0)
(-0.0484887 0.0530676 0)
(-0.062509 0.0853417 0)
(-0.071782 0.147843 0)
(-0.0262827 0.255671 0)
(0.148397 0.282278 0)
(0.147897 0.116382 0)
(-0.0371274 0.217946 0)
(-0.163541 0.665494 0)
(-1.48487 0.766 0)
(-0.230178 0.320825 0)
(0.549529 -0.108128 0)
(1.26817 -0.752335 0)
(0.660859 -0.995947 0)
(0.390136 -0.916308 0)
(0.265336 -0.850661 0)
(0.191098 -0.814128 0)
(0.135019 -0.79507 0)
(0.0874166 -0.782869 0)
(0.046729 -0.777971 0)
(0.0129642 -0.782079 0)
(-0.00508459 0.000398891 0)
(-0.00578769 0.00113969 0)
(-0.00718564 0.00194655 0)
(-0.00917265 0.00317642 0)
(-0.0116957 0.00502662 0)
(-0.0147965 0.00776668 0)
(-0.0184784 0.011618 0)
(-0.0228686 0.017147 0)
(-0.0281304 0.0249098 0)
(-0.0349967 0.0364064 0)
(-0.0438104 0.055279 0)
(-0.05301 0.0877339 0)
(-0.0522834 0.145271 0)
(-0.00211382 0.227398 0)
(0.121325 0.24112 0)
(0.131283 0.159346 0)
(0.0448338 0.252476 0)
(0.122876 0.581966 0)
(0.755443 0.892382 0)
(0.843828 -0.130339 0)
(0.844505 -0.240403 0)
(0.912866 -0.540141 0)
(0.633649 -0.764413 0)
(0.420036 -0.785034 0)
(0.291851 -0.767233 0)
(0.207711 -0.750382 0)
(0.145329 -0.739219 0)
(0.0958369 -0.732312 0)
(0.055203 -0.729746 0)
(0.0162991 -0.730206 0)
(-0.00504316 0.000430678 0)
(-0.00573891 0.00121801 0)
(-0.007123 0.00209156 0)
(-0.00906658 0.00339834 0)
(-0.0115078 0.00533753 0)
(-0.0144704 0.00818494 0)
(-0.0179046 0.012174 0)
(-0.0218906 0.0178733 0)
(-0.0264821 0.0259049 0)
(-0.032153 0.0377992 0)
(-0.0386248 0.056974 0)
(-0.0430772 0.0886851 0)
(-0.0344474 0.139865 0)
(0.0153637 0.201619 0)
(0.105607 0.212025 0)
(0.128218 0.178244 0)
(0.114385 0.253646 0)
(0.256905 0.440057 0)
(0.734284 0.424514 0)
(0.822743 -0.0630403 0)
(0.758269 -0.241734 0)
(0.71402 -0.446017 0)
(0.561208 -0.605906 0)
(0.408756 -0.662617 0)
(0.296119 -0.676058 0)
(0.213654 -0.676999 0)
(0.149909 -0.675425 0)
(0.0977748 -0.674237 0)
(0.0529335 -0.673567 0)
(0.0143125 -0.672121 0)
(-0.00498888 0.000466225 0)
(-0.00567733 0.00130334 0)
(-0.00703903 0.00224892 0)
(-0.00892917 0.0036337 0)
(-0.0112777 0.00565999 0)
(-0.0140775 0.00860626 0)
(-0.0172373 0.0127209 0)
(-0.0207767 0.0185644 0)
(-0.0246408 0.0268047 0)
(-0.0290073 0.0389455 0)
(-0.0330284 0.0580361 0)
(-0.0330437 0.0881413 0)
(-0.018617 0.132303 0)
(0.0283652 0.178536 0)
(0.0980463 0.188753 0)
(0.132117 0.179295 0)
(0.163046 0.230295 0)
(0.305061 0.311912 0)
(0.571031 0.234769 0)
(0.671752 -0.0325564 0)
(0.643274 -0.219131 0)
(0.585565 -0.377004 0)
(0.483809 -0.495412 0)
(0.374892 -0.558351 0)
(0.282546 -0.587233 0)
(0.208203 -0.600245 0)
(0.147582 -0.606375 0)
(0.0968444 -0.609461 0)
(0.053237 -0.611074 0)
(0.0145218 -0.61186 0)
(-0.00492058 0.000505338 0)
(-0.00560226 0.00139717 0)
(-0.00693175 0.00241989 0)
(-0.00875827 0.00388256 0)
(-0.0110015 0.00599272 0)
(-0.0136146 0.00902655 0)
(-0.016474 0.0132486 0)
(-0.0195253 0.0191996 0)
(-0.0226053 0.0275681 0)
(-0.0255865 0.0397705 0)
(-0.0271458 0.0583658 0)
(-0.0232268 0.0861306 0)
(-0.00490183 0.123184 0)
(0.0383836 0.157711 0)
(0.0956007 0.167692 0)
(0.137657 0.16763 0)
(0.190051 0.194146 0)
(0.30852 0.213312 0)
(0.467035 0.131873 0)
(0.542654 -0.0394736 0)
(0.533326 -0.193959 0)
(0.485145 -0.319541 0)
(0.411628 -0.412741 0)
(0.331398 -0.471603 0)
(0.257531 -0.505642 0)
(0.193619 -0.524931 0)
(0.138875 -0.53599 0)
(0.0915889 -0.542353 0)
(0.050152 -0.545802 0)
(0.0134289 -0.547243 0)
(-0.00483758 0.000547648 0)
(-0.00551259 0.00150024 0)
(-0.0068008 0.00260471 0)
(-0.008553 0.00414433 0)
(-0.0106763 0.00633447 0)
(-0.0130804 0.0094423 0)
(-0.0156134 0.0137461 0)
(-0.0181395 0.0197555 0)
(-0.0203874 0.0281503 0)
(-0.0219412 0.0401999 0)
(-0.0211361 0.0578896 0)
(-0.0139262 0.0827545 0)
(0.00672143 0.113016 0)
(0.0462593 0.138569 0)
(0.0956406 0.147085 0)
(0.141306 0.147897 0)
(0.199218 0.154407 0)
(0.290851 0.140882 0)
(0.389616 0.0665931 0)
(0.440334 -0.0542054 0)
(0.437031 -0.173322 0)
(0.400678 -0.272479 0)
(0.346112 -0.347519 0)
(0.285459 -0.399245 0)
(0.226697 -0.432848 0)
(0.173198 -0.454095 0)
(0.125535 -0.46738 0)
(0.0832677 -0.475506 0)
(0.0456767 -0.480092 0)
(0.0121034 -0.482005 0)
(-0.00473943 0.000592178 0)
(-0.00540683 0.00161163 0)
(-0.00664587 0.00280125 0)
(-0.00831326 0.00441681 0)
(-0.0103008 0.00668248 0)
(-0.0124759 0.00984957 0)
(-0.0146564 0.0142025 0)
(-0.0166257 0.0202093 0)
(-0.0180074 0.0285098 0)
(-0.0181374 0.0401708 0)
(-0.0151663 0.0565697 0)
(-0.00538261 0.0781631 0)
(0.0163551 0.102167 0)
(0.0523539 0.120575 0)
(0.0961193 0.126371 0)
(0.141333 0.124077 0)
(0.195664 0.116537 0)
(0.263881 0.0880316 0)
(0.326833 0.0231418 0)
(0.358801 -0.0666365 0)
(0.35592 -0.156946 0)
(0.328566 -0.234242 0)
(0.287421 -0.294487 0)
(0.240805 -0.338304 0)
(0.194091 -0.368725 0)
(0.150034 -0.389217 0)
(0.10963 -0.402715 0)
(0.0730517 -0.411326 0)
(0.0401111 -0.416375 0)
(0.0105072 -0.418538 0)
(-0.00462545 0.000638109 0)
(-0.0052817 0.00172954 0)
(-0.00646477 0.00300531 0)
(-0.00803767 0.00469601 0)
(-0.00987426 0.00703068 0)
(-0.0118032 0.0102401 0)
(-0.0136083 0.0146029 0)
(-0.0149987 0.0205365 0)
(-0.0155015 0.0286073 0)
(-0.0142659 0.0396362 0)
(-0.00941654 0.0544103 0)
(0.00220391 0.0725376 0)
(0.0240719 0.0909044 0)
(0.0567211 0.103413 0)
(0.0956543 0.105749 0)
(0.13737 0.0992664 0)
(0.183936 0.0831726 0)
(0.233483 0.0494945 0)
(0.27379 -0.00592986 0)
(0.292717 -0.0745779 0)
(0.288646 -0.14309 0)
(0.267344 -0.202801 0)
(0.235762 -0.25059 0)
(0.199535 -0.286628 0)
(0.162415 -0.312696 0)
(0.126571 -0.330953 0)
(0.0930225 -0.343399 0)
(0.0621907 -0.35161 0)
(0.0341597 -0.356624 0)
(0.00884604 -0.358846 0)
(-0.00449397 0.000685482 0)
(-0.00513155 0.00185247 0)
(-0.00625251 0.00321293 0)
(-0.00772139 0.0049772 0)
(-0.00939374 0.0073708 0)
(-0.0110624 0.0106018 0)
(-0.0124762 0.0149291 0)
(-0.013279 0.0207104 0)
(-0.0129184 0.0284076 0)
(-0.0104339 0.0385709 0)
(-0.00406348 0.0514591 0)
(0.0086945 0.0661127 0)
(0.0299445 0.0794673 0)
(0.0592968 0.0869992 0)
(0.0934949 0.0857702 0)
(0.129877 0.0755952 0)
(0.167486 0.0552104 0)
(0.202694 0.0215384 0)
(0.2282 -0.0250074 0)
(0.238393 -0.0782604 0)
(0.233074 -0.130462 0)
(0.21584 -0.176327 0)
(0.191148 -0.213726 0)
(0.16277 -0.242624 0)
(0.133344 -0.264071 0)
(0.104518 -0.279457 0)
(0.0771735 -0.290178 0)
(0.0517603 -0.297443 0)
(0.0284524 -0.302064 0)
(0.00728455 -0.30419 0)
(-0.00434142 0.000734722 0)
(-0.00495222 0.00197968 0)
(-0.00600464 0.00342194 0)
(-0.00736022 0.0052561 0)
(-0.00885649 0.00769462 0)
(-0.0102546 0.0109215 0)
(-0.01127 0.0151623 0)
(-0.0114939 0.020705 0)
(-0.0103189 0.0278828 0)
(-0.00675785 0.0369733 0)
(0.000726616 0.0477991 0)
(0.0139694 0.0590925 0)
(0.0340298 0.0680807 0)
(0.0600353 0.0714377 0)
(0.0894114 0.0670591 0)
(0.119697 0.0543448 0)
(0.148745 0.0326417 0)
(0.173165 0.00154789 0)
(0.188824 -0.036975 0)
(0.19333 -0.0785234 0)
(0.187198 -0.118425 0)
(0.172877 -0.153505 0)
(0.153284 -0.182419 0)
(0.130952 -0.205101 0)
(0.107725 -0.222209 0)
(0.0848289 -0.234658 0)
(0.0629598 -0.243425 0)
(0.0424653 -0.249397 0)
(0.0234458 -0.253178 0)
(0.00595699 -0.254893 0)
(-0.00416399 0.000786103 0)
(-0.00474184 0.00211048 0)
(-0.00571918 0.00363143 0)
(-0.00695316 0.00552942 0)
(-0.00826311 0.00799579 0)
(-0.00938557 0.0111881 0)
(-0.0100059 0.0152861 0)
(-0.00967967 0.0204999 0)
(-0.00777548 0.0270194 0)
(-0.00335686 0.0348712 0)
(0.00482771 0.0435718 0)
(0.0179697 0.0517162 0)
(0.036397 0.0569771 0)
(0.0589854 0.0569392 0)
(0.0835404 0.0501377 0)
(0.107757 0.0361407 0)
(0.129353 0.0150224 0)
(0.145787 -0.0123681 0)
(0.154866 -0.0438302 0)
(0.155786 -0.0762577 0)
(0.149336 -0.106777 0)
(0.137276 -0.133494 0)
(0.121573 -0.155613 0)
(0.103944 -0.173118 0)
(0.0856714 -0.186454 0)
(0.0676343 -0.196231 0)
(0.0503375 -0.203086 0)
(0.034033 -0.207562 0)
(0.0187999 -0.210086 0)
(0.00471817 -0.211059 0)
(-0.00395843 0.000839202 0)
(-0.00449763 0.00224333 0)
(-0.00539404 0.00383942 0)
(-0.00649915 0.00579265 0)
(-0.00761592 0.00826764 0)
(-0.00846462 0.0113909 0)
(-0.00870673 0.0152877 0)
(-0.00788163 0.0200825 0)
(-0.00536928 0.0258223 0)
(-0.000349202 0.0323189 0)
(0.0081205 0.0389138 0)
(0.020676 0.0442247 0)
(0.0371481 0.0463982 0)
(0.0563071 0.0437459 0)
(0.0762359 0.0353578 0)
(0.0949047 0.0211585 0)
(0.11039 0.00173159 0)
(0.121014 -0.0216412 0)
(0.125737 -0.0470168 0)
(0.124507 -0.0722431 0)
(0.118148 -0.0955371 0)
(0.107963 -0.115783 0)
(0.0953084 -0.132543 0)
(0.0813543 -0.145849 0)
(0.0669773 -0.156012 0)
(0.0527931 -0.163441 0)
(0.0391793 -0.168551 0)
(0.0263649 -0.171694 0)
(0.014471 -0.17323 0)
(0.00357572 -0.173692 0)
(-0.00372109 0.000893153 0)
(-0.00421653 0.00237645 0)
(-0.00502673 0.00404271 0)
(-0.00599727 0.00604091 0)
(-0.006919 0.00850315 0)
(-0.00750398 0.0115204 0)
(-0.00740013 0.0151583 0)
(-0.006151 0.0194517 0)
(-0.00318299 0.0243173 0)
(0.00217279 0.0294171 0)
(0.0105346 0.034002 0)
(0.0221163 0.0368529 0)
(0.0364316 0.0365703 0)
(0.0522546 0.0320573 0)
(0.0679419 0.0228744 0)
(0.0818401 0.00927375 0)
(0.0925286 -0.00791192 0)
(0.099018 -0.0273892 0)
(0.100926 -0.0476147 0)
(0.0985243 -0.0671269 0)
(0.0925619 -0.0848249 0)
(0.0840064 -0.100065 0)
(0.0738054 -0.11263 0)
(0.062767 -0.122585 0)
(0.0515032 -0.130164 0)
(0.0404561 -0.135659 0)
(0.029906 -0.139372 0)
(0.0200328 -0.141575 0)
(0.0109358 -0.142574 0)
(0.00265946 -0.142829 0)
(-0.00344801 0.000946561 0)
(-0.00389548 0.00250744 0)
(-0.00461434 0.00423781 0)
(-0.0054473 0.00626878 0)
(-0.00617822 0.00869622 0)
(-0.00651934 0.0115708 0)
(-0.0061181 0.0148966 0)
(-0.00454232 0.0186208 0)
(-0.001296 0.0225531 0)
(0.00412342 0.0262668 0)
(0.0120383 0.029021 0)
(0.0223623 0.029821 0)
(0.0344413 0.0276873 0)
(0.0471381 0.0219968 0)
(0.0591053 0.0126753 0)
(0.0690922 0.00018834 0)
(0.0761582 -0.0145805 0)
(0.0797927 -0.0305124 0)
(0.0799682 -0.0464573 0)
(0.0770641 -0.0614456 0)
(0.0717117 -0.0748083 0)
(0.0646281 -0.0861909 0)
(0.0564816 -0.0955119 0)
(0.0478328 -0.102862 0)
(0.0391061 -0.108435 0)
(0.0306136 -0.112456 0)
(0.0225567 -0.115154 0)
(0.0150637 -0.116732 0)
(0.00819507 -0.117425 0)
(0.00196468 -0.117585 0)
(-0.00313542 0.000998078 0)
(-0.00353117 0.00263342 0)
(-0.00415476 0.00442097 0)
(-0.00485018 0.00647118 0)
(-0.00540131 0.00884271 0)
(-0.00552938 0.0115416 0)
(-0.00489549 0.0145111 0)
(-0.00311052 0.0176194 0)
(0.000222933 0.020598 0)
(0.0054453 0.0230016 0)
(0.0126392 0.0241582 0)
(0.0215257 0.0233262 0)
(0.0314028 0.0198937 0)
(0.0412826 0.0136 0)
(0.050119 0.0046211 0)
(0.057036 -0.00648259 0)
(0.0614677 -0.0189014 0)
(0.0632146 -0.0317465 0)
(0.0624155 -0.0442023 0)
(0.0594546 -0.0556431 0)
(0.0548402 -0.0656773 0)
(0.0491001 -0.0741271 0)
(0.0427053 -0.0809901 0)
(0.0360414 -0.0863693 0)
(0.0293951 -0.0904302 0)
(0.0229732 -0.0933529 0)
(0.0169056 -0.0953123 0)
(0.0112754 -0.0964609 0)
(0.00612201 -0.0969675 0)
(0.00145285 -0.0970843 0)
(-0.00277952 0.00104665 0)
(-0.00312018 0.0027517 0)
(-0.00364611 0.00458818 0)
(-0.0042073 0.00664435 0)
(-0.00459683 0.00894129 0)
(-0.00455348 0.011438 0)
(-0.00376639 0.0140208 0)
(-0.00190557 0.0164958 0)
(0.0013277 0.0185565 0)
(0.00611438 0.019765 0)
(0.0123813 0.019589 0)
(0.0197485 0.0175275 0)
(0.0275519 0.0132702 0)
(0.0349862 0.00681466 0)
(0.0412854 -0.00151972 0)
(0.0458863 -0.0111665 0)
(0.0484842 -0.0214498 0)
(0.0490593 -0.0317029 0)
(0.0478116 -0.0413718 0)
(0.0450792 -0.0500703 0)
(0.041253 -0.0575843 0)
(0.0367146 -0.0638439 0)
(0.031792 -0.068889 0)
(0.0267473 -0.0728207 0)
(0.0217705 -0.0757727 0)
(0.0169968 -0.077882 0)
(0.0125076 -0.0792808 0)
(0.00834863 -0.0800849 0)
(0.00453413 -0.0804229 0)
(0.00106562 -0.080488 0)
(-0.00237671 0.00109122 0)
(-0.00265939 0.00285922 0)
(-0.00308675 0.00473607 0)
(-0.00352084 0.00678602 0)
(-0.00377331 0.00899423 0)
(-0.00360999 0.0112733 0)
(-0.00276212 0.0134602 0)
(-0.000967096 0.0153167 0)
(0.00198006 0.0165273 0)
(0.00613734 0.0167078 0)
(0.0113398 0.0154745 0)
(0.017188 0.0125456 0)
(0.023111 0.00784065 0)
(0.0284939 0.00152543 0)
(0.0328152 -0.00601953 0)
(0.0357323 -0.0142829 0)
(0.0371183 -0.0227282 0)
(0.0370373 -0.0308806 0)
(0.0356907 -0.0383793 0)
(0.0333514 -0.0449981 0)
(0.0303073 -0.0506347 0)
(0.0268255 -0.0552809 0)
(0.0231274 -0.0589965 0)
(0.0193871 -0.0618758 0)
(0.015729 -0.0640287 0)
(0.0122408 -0.0655607 0)
(0.00897544 -0.0665685 0)
(0.00596559 -0.067134 0)
(0.00322385 -0.067351 0)
(0.000747462 -0.0673756 0)
(-0.00192365 0.00113055 0)
(-0.00214587 0.00295289 0)
(-0.00247504 0.00486097 0)
(-0.00279227 0.00689545 0)
(-0.00293727 0.00900835 0)
(-0.00271348 0.0110698 0)
(-0.00190472 0.012877 0)
(-0.000319054 0.0141662 0)
(0.00217425 0.0146362 0)
(0.00554835 0.0139785 0)
(0.00960852 0.0119538 0)
(0.0139963 0.00845974 0)
(0.0182639 0.00357934 0)
(0.0219749 -0.00242756 0)
(0.0247968 -0.00917233 0)
(0.0265428 -0.0162214 0)
(0.0271819 -0.0231674 0)
(0.0268069 -0.0296832 0)
(0.025589 -0.0355448 0)
(0.0237321 -0.0406301 0)
(0.0214388 -0.0449034 0)
(0.0188891 -0.0483886 0)
(0.0162277 -0.0511518 0)
(0.0135661 -0.0532791 0)
(0.0109829 -0.0548636 0)
(0.00853334 -0.0559905 0)
(0.00624959 -0.0567381 0)
(0.00415063 -0.0571748 0)
(0.00224187 -0.0573676 0)
(0.000518662 -0.0574085 0)
(-0.00141756 0.00116283 0)
(-0.00157724 0.00302902 0)
(-0.00180924 0.00495947 0)
(-0.00202172 0.006974 0)
(-0.00209174 0.00899548 0)
(-0.00187048 0.0108591 0)
(-0.0012016 0.0123334 0)
(4.27082e-05 0.0131429 0)
(0.00193216 0.0130176 0)
(0.0044063 0.0117254 0)
(0.00728894 0.00915008 0)
(0.0103038 0.00532369 0)
(0.013136 0.000433714 0)
(0.0155076 -0.00521249 0)
(0.0172195 -0.0112517 0)
(0.0181842 -0.0173249 0)
(0.0184133 -0.0231279 0)
(0.0179911 -0.0284402 0)
(0.0170434 -0.0331275 0)
(0.0157092 -0.0371338 0)
(0.0141214 -0.0404635 0)
(0.0123956 -0.0431591 0)
(0.0106239 -0.0452879 0)
(0.00887657 -0.046923 0)
(0.00720009 -0.0481366 0)
(0.00562087 -0.0489919 0)
(0.00414682 -0.0495429 0)
(0.00277873 -0.0498335 0)
(0.00151396 -0.0499204 0)
(0.000353752 -0.049909 0)
(-0.000856376 0.00118627 0)
(-0.000951183 0.00308366 0)
(-0.00108689 0.00502833 0)
(-0.00120603 0.00702396 0)
(-0.00123206 0.00897137 0)
(-0.00107358 0.0106813 0)
(-0.000637639 0.0119033 0)
(0.000146103 0.0123629 0)
(0.00130727 0.0118149 0)
(0.00279137 0.0100982 0)
(0.0044779 0.00718242 0)
(0.00620034 0.00318462 0)
(0.00778088 -0.0016435 0)
(0.00906354 -0.00698035 0)
(0.00995069 -0.0124926 0)
(0.0104088 -0.0178792 0)
(0.0104566 -0.0229067 0)
(0.01015 -0.027422 0)
(0.0095636 -0.0313458 0)
(0.00877589 -0.0346608 0)
(0.00785927 -0.0373925 0)
(0.00687434 -0.0395915 0)
(0.00586674 -0.0413208 0)
(0.00487068 -0.0426443 0)
(0.00391172 -0.0436261 0)
(0.00301009 -0.0443219 0)
(0.00217875 -0.0447735 0)
(0.00142716 -0.0450106 0)
(0.000759822 -0.0450769 0)
(0.000171627 -0.0450627 0)
(-0.000102398 0.00169132 0)
(-0.000115532 0.00360969 0)
(-0.000131911 0.00557488 0)
(-0.000144018 0.00755214 0)
(-0.000142128 0.0094043 0)
(-0.000114717 0.0109096 0)
(-5.14499e-05 0.0117998 0)
(5.49367e-05 0.0118109 0)
(0.000204279 0.0107383 0)
(0.000385063 0.00849826 0)
(0.000574288 0.00515092 0)
(0.000738457 0.00088397 0)
(0.000765301 -0.00401384 0)
(0.000854748 -0.00921968 0)
(0.000919399 -0.0144078 0)
(0.000947013 -0.0193342 0)
(0.000939682 -0.0238251 0)
(0.00090317 -0.027781 0)
(0.000844256 -0.0311637 0)
(0.000769555 -0.033982 0)
(0.000685012 -0.0362752 0)
(0.000595744 -0.0380987 0)
(0.000505286 -0.0395168 0)
(0.000415933 -0.0405928 0)
(0.000329711 -0.0413872 0)
(0.000248671 -0.0419503 0)
(0.000174278 -0.042325 0)
(0.000107835 -0.0425484 0)
(5.07386e-05 -0.042652 0)
(2.23273e-06 -0.0426756 0)
(0.132264 -1.03174 0)
(0.326061 -0.995377 0)
(0.428557 -0.955212 0)
(0.442175 -0.912971 0)
(0.380734 -0.84049 0)
(0.228356 -0.690582 0)
(0.20948 -0.548184 0)
(0.546413 -0.356022 0)
(0.607896 0.35031 0)
(0.481373 0.542341 0)
(0.233403 0.473476 0)
(0.0486808 0.342117 0)
(0.0789608 0.23587 0)
(-0.0114844 0.167644 0)
(-0.0102579 0.11777 0)
(0.00450158 0.0843951 0)
(0.00385876 0.0652667 0)
(0.00309665 0.0499409 0)
(0.00294819 0.0380236 0)
(0.00344597 0.0283192 0)
(0.00477891 0.0207011 0)
(0.00596554 0.0147683 0)
(0.00545595 0.0101444 0)
(0.00448662 0.00663102 0)
(0.00372622 0.0041521 0)
(0.00309692 0.00247937 0)
(0.0026015 0.00140866 0)
(0.00217547 0.000766436 0)
(0.00184053 0.000415403 0)
(0.00178128 -1.76383e-05 0)
(0.0772302 -1.16145 0)
(0.157233 -1.05767 0)
(0.22294 -0.986288 0)
(0.198827 -0.886814 0)
(0.107585 -0.783062 0)
(0.0299439 -0.661175 0)
(0.137844 -0.620982 0)
(0.424783 -0.415634 0)
(0.670328 0.41566 0)
(0.444458 0.601353 0)
(0.168878 0.53782 0)
(-0.0271268 0.369739 0)
(0.299743 0.223443 0)
(0.338873 0.154679 0)
(1.23877 0.113804 0)
(1.10505 0.0851476 0)
(0.176016 0.0770787 0)
(0.086777 0.0526862 0)
(0.0551111 0.0393233 0)
(0.0394767 0.0287653 0)
(0.0302786 0.0207283 0)
(0.0233831 0.0146702 0)
(0.0179972 0.0100548 0)
(0.0141214 0.006617 0)
(0.0111323 0.00417483 0)
(0.00868683 0.00251104 0)
(0.00681409 0.00144166 0)
(0.00532964 0.000799733 0)
(0.00428037 0.000440687 0)
(0.00401209 -0.000193189 0)
(-0.0105434 -1.22061 0)
(-0.0199143 -1.07484 0)
(-0.0339454 -0.977216 0)
(-0.0532654 -0.86286 0)
(-0.0890097 -0.7496 0)
(-0.0291355 -0.696315 0)
(0.139364 -0.693985 0)
(0.349324 -0.565821 0)
(0.662182 0.400943 0)
(0.471388 0.645831 0)
(0.0672861 0.629787 0)
(0.411006 0.305309 0)
(0.573391 0.162798 0)
(1.26147 -0.00651898 0)
(2.73031 0.162461 0)
(1.27057 0.311983 0)
(0.277882 0.115993 0)
(0.12758 0.0611675 0)
(0.0775559 0.0426282 0)
(0.0535825 0.0303361 0)
(0.0398309 0.0216188 0)
(0.0301574 0.0152824 0)
(0.0229282 0.0104654 0)
(0.0177884 0.00690189 0)
(0.0138614 0.0043785 0)
(0.0107071 0.00265108 0)
(0.00832409 0.00154219 0)
(0.00646493 0.000878776 0)
(0.00516902 0.000495045 0)
(0.00479093 -0.000199231 0)
(-0.0666378 -1.14601 0)
(-0.131505 -1.0544 0)
(-0.175257 -0.962521 0)
(-0.181041 -0.85478 0)
(-0.144779 -0.772025 0)
(-0.0267452 -0.764687 0)
(0.148954 -0.784817 0)
(0.452026 -0.639956 0)
(0.613122 0.327416 0)
(0.544185 0.744891 0)
(0.0869045 0.632898 0)
(0.460588 0.199825 0)
(0.723822 0.0981021 0)
(0.985803 -0.178978 0)
(1.83601 0.0456845 0)
(0.840594 0.625919 0)
(0.286765 0.161102 0)
(0.136233 0.0723459 0)
(0.0825754 0.0469287 0)
(0.0567578 0.0323763 0)
(0.041992 0.0227679 0)
(0.0317308 0.016063 0)
(0.0241076 0.0109867 0)
(0.0186566 0.00726156 0)
(0.014485 0.00463308 0)
(0.0111869 0.00282396 0)
(0.00868289 0.00166341 0)
(0.0067509 0.000971256 0)
(0.00541722 0.000556775 0)
(0.00498731 -0.000146828 0)
(-0.0718714 -1.04824 0)
(-0.158713 -1.01 0)
(-0.199837 -0.949978 0)
(-0.194298 -0.86762 0)
(-0.136803 -0.822343 0)
(-0.0291272 -0.836633 0)
(0.145968 -0.892573 0)
(0.63506 -0.700397 0)
(0.876346 0.284452 0)
(0.581685 0.876651 0)
(0.191942 0.42674 0)
(0.572494 0.205222 0)
(0.527845 0.0981419 0)
(0.567557 -0.249647 0)
(0.616466 -0.0603723 0)
(0.309666 0.789299 0)
(0.256734 0.198847 0)
(0.132694 0.0841783 0)
(0.081696 0.0516271 0)
(0.0564152 0.0346517 0)
(0.0417468 0.0240532 0)
(0.0316335 0.0169233 0)
(0.0241669 0.0115616 0)
(0.0187323 0.00765972 0)
(0.0145372 0.0049149 0)
(0.0112593 0.00301516 0)
(0.00873426 0.00179473 0)
(0.00681048 0.00106714 0)
(0.00549603 0.000617025 0)
(0.00503412 -8.35062e-05 0)
(-0.0552423 -0.95416 0)
(-0.126731 -0.958138 0)
(-0.165606 -0.937432 0)
(-0.166632 -0.885415 0)
(-0.127678 -0.867205 0)
(-0.0501215 -0.902692 0)
(0.102855 -1.01528 0)
(0.420288 -1.13447 0)
(1.60528 0.950081 0)
(0.581404 0.999362 0)
(0.649931 0.547202 0)
(0.421594 0.14418 0)
(0.425038 0.119288 0)
(0.298548 -0.20968 0)
(-0.353294 -0.0648267 0)
(0.0335095 0.725431 0)
(0.213259 0.22376 0)
(0.12448 0.0955034 0)
(0.078897 0.0564353 0)
(0.0550314 0.0370613 0)
(0.0408519 0.0254234 0)
(0.0311243 0.0178248 0)
(0.0239735 0.012166 0)
(0.0186436 0.00808239 0)
(0.0144874 0.00521572 0)
(0.011255 0.00322063 0)
(0.008728 0.00193359 0)
(0.00682568 0.00116378 0)
(0.00553594 0.000673109 0)
(0.00504845 -2.37237e-05 0)
(-0.0307726 -0.884355 0)
(-0.0801481 -0.912917 0)
(-0.121418 -0.914339 0)
(-0.141598 -0.891267 0)
(-0.131764 -0.893939 0)
(-0.0947111 -0.951051 0)
(-0.00697722 -1.12148 0)
(0.284287 -1.53058 0)
(1.79286 1.36486 0)
(0.66478 1.10766 0)
(0.596845 0.65496 0)
(0.468073 0.0271497 0)
(0.391066 0.157823 0)
(0.165552 -0.107745 0)
(-0.540687 0.021051 0)
(-0.0413527 0.574945 0)
(0.16736 0.235411 0)
(0.113494 0.105524 0)
(0.0749969 0.0611758 0)
(0.0531208 0.0395435 0)
(0.0396818 0.0268551 0)
(0.0304597 0.0187553 0)
(0.0236813 0.0127941 0)
(0.0184979 0.00852672 0)
(0.0144147 0.00553421 0)
(0.0112275 0.00344046 0)
(0.00870882 0.00208073 0)
(0.00682809 0.00126194 0)
(0.00555798 0.000725738 0)
(0.00504912 3.02386e-05 0)
(-0.0131291 -0.842779 0)
(-0.0487856 -0.869928 0)
(-0.0936049 -0.878902 0)
(-0.13019 -0.878359 0)
(-0.149532 -0.896665 0)
(-0.159701 -0.965617 0)
(-0.174255 -1.15284 0)
(-0.25156 -1.63328 0)
(0.139779 0.719885 0)
(0.903126 1.11483 0)
(0.716716 0.69897 0)
(0.974409 0.0609143 0)
(0.365475 0.229698 0)
(0.0934607 0.00170986 0)
(-0.374244 0.0988737 0)
(-0.0666921 0.451747 0)
(0.12425 0.235856 0)
(0.100413 0.113607 0)
(0.0700989 0.0656629 0)
(0.0507398 0.0420298 0)
(0.0382791 0.0283242 0)
(0.0296634 0.0197053 0)
(0.0232945 0.0134426 0)
(0.0182994 0.00899118 0)
(0.0143196 0.00586967 0)
(0.0111797 0.00367509 0)
(0.00868189 0.00223748 0)
(0.00682085 0.00136311 0)
(0.00556573 0.00077665 0)
(0.00503949 7.87953e-05 0)
(-0.00993809 -0.815498 0)
(-0.0423621 -0.825156 0)
(-0.0875736 -0.834795 0)
(-0.133025 -0.846837 0)
(-0.176387 -0.872555 0)
(-0.229943 -0.936369 0)
(-0.335396 -1.08167 0)
(-0.673706 -1.38475 0)
(-0.805636 0.0109432 0)
(-0.243721 0.0836384 0)
(1.56019 0.87175 0)
(0.867341 0.337758 0)
(0.310284 0.356887 0)
(0.0386641 0.0984366 0)
(-0.248569 0.147401 0)
(-0.0744731 0.362761 0)
(0.0864488 0.228079 0)
(0.0858472 0.119305 0)
(0.0642394 0.069694 0)
(0.04788 0.0444411 0)
(0.0366378 0.0298008 0)
(0.0287261 0.0206631 0)
(0.0228019 0.0141071 0)
(0.0180405 0.00947324 0)
(0.0141925 0.0062208 0)
(0.0111089 0.0039244 0)
(0.00864613 0.00240517 0)
(0.00680316 0.00146875 0)
(0.00556114 0.000827839 0)
(0.00502098 0.000122653 0)
(-0.0178983 -0.781245 0)
(-0.0533771 -0.778702 0)
(-0.0957146 -0.786627 0)
(-0.145073 -0.800651 0)
(-0.20404 -0.823755 0)
(-0.286112 -0.867903 0)
(-0.433528 -0.944056 0)
(-0.772631 -1.01531 0)
(-1.36412 -0.505159 0)
(-0.433529 -0.190774 0)
(-0.00502467 0.0952754 0)
(0.870716 0.387202 0)
(0.136827 0.487108 0)
(-0.0137654 0.17222 0)
(-0.178428 0.176294 0)
(-0.0744368 0.299462 0)
(0.0548566 0.215059 0)
(0.070488 0.122382 0)
(0.0575034 0.0730553 0)
(0.044535 0.0466849 0)
(0.0347476 0.0312458 0)
(0.0276367 0.0216135 0)
(0.0221956 0.0147811 0)
(0.017713 0.00996867 0)
(0.0140235 0.00658538 0)
(0.0110122 0.00418774 0)
(0.0085981 0.00258488 0)
(0.00677392 0.00158047 0)
(0.00554516 0.000881512 0)
(0.0049941 0.000162535 0)
(-0.0238452 -0.730262 0)
(-0.0625687 -0.730604 0)
(-0.104889 -0.734832 0)
(-0.157218 -0.743366 0)
(-0.223853 -0.756731 0)
(-0.31633 -0.776138 0)
(-0.461952 -0.793053 0)
(-0.706291 -0.749065 0)
(-0.960843 -0.437642 0)
(-0.823877 -0.209347 0)
(-0.908417 -0.194214 0)
(-0.591471 0.953049 0)
(-0.0668193 0.476169 0)
(-0.0664268 0.216309 0)
(-0.142408 0.19099 0)
(-0.0725316 0.254017 0)
(0.0292438 0.199235 0)
(0.0550073 0.122827 0)
(0.050026 0.0755487 0)
(0.0407087 0.0486631 0)
(0.0325976 0.0326153 0)
(0.0263843 0.0225408 0)
(0.0214698 0.0154576 0)
(0.0173086 0.0104735 0)
(0.0138051 0.0069618 0)
(0.0108868 0.00446507 0)
(0.00853311 0.00277789 0)
(0.00673229 0.00170048 0)
(0.00551764 0.000939917 0)
(0.00495879 0.000199263 0)
(-0.021692 -0.672674 0)
(-0.0618877 -0.674451 0)
(-0.108351 -0.675561 0)
(-0.16299 -0.677566 0)
(-0.230815 -0.679695 0)
(-0.320048 -0.6781 0)
(-0.443396 -0.659425 0)
(-0.606931 -0.584139 0)
(-0.744162 -0.392368 0)
(-0.764181 -0.200903 0)
(-0.883177 -0.00196382 0)
(-0.596005 0.499499 0)
(-0.194144 0.395924 0)
(-0.113948 0.229594 0)
(-0.127146 0.19402 0)
(-0.0716873 0.220203 0)
(0.00880943 0.182329 0)
(0.0400102 0.120818 0)
(0.0420031 0.0770066 0)
(0.0364328 0.0502721 0)
(0.0301846 0.0338583 0)
(0.0249624 0.0234243 0)
(0.0206223 0.0161256 0)
(0.0168215 0.0109817 0)
(0.0135328 0.00734704 0)
(0.0107306 0.00475501 0)
(0.00844711 0.00298417 0)
(0.00667759 0.00183018 0)
(0.00547848 0.00100419 0)
(0.00491469 0.000233155 0)
(-0.0227375 -0.611942 0)
(-0.0625347 -0.611345 0)
(-0.107777 -0.609877 0)
(-0.160855 -0.606728 0)
(-0.224805 -0.599971 0)
(-0.303869 -0.584827 0)
(-0.402061 -0.550268 0)
(-0.514678 -0.475142 0)
(-0.609309 -0.34136 0)
(-0.656168 -0.179184 0)
(-0.681309 0.0277274 0)
(-0.511322 0.28982 0)
(-0.255655 0.302675 0)
(-0.150269 0.218275 0)
(-0.123506 0.187153 0)
(-0.0727634 0.193309 0)
(-0.0074635 0.165322 0)
(0.0259628 0.116661 0)
(0.0336672 0.077314 0)
(0.0317647 0.0514103 0)
(0.0275109 0.0349177 0)
(0.0233662 0.024237 0)
(0.0196519 0.0167693 0)
(0.0162483 0.0114855 0)
(0.0132031 0.00773726 0)
(0.0105402 0.00505556 0)
(0.00833644 0.00320319 0)
(0.00660756 0.00197047 0)
(0.00542702 0.00107501 0)
(0.00486118 0.000264516 0)
(-0.0216778 -0.547213 0)
(-0.0595356 -0.54564 0)
(-0.102402 -0.541912 0)
(-0.151571 -0.534971 0)
(-0.208771 -0.522695 0)
(-0.275707 -0.500891 0)
(-0.352612 -0.462023 0)
(-0.434005 -0.395121 0)
(-0.503788 -0.292351 0)
(-0.544518 -0.159248 0)
(-0.5412 0.00536677 0)
(-0.435365 0.170053 0)
(-0.2736 0.219946 0)
(-0.172657 0.191615 0)
(-0.124979 0.172359 0)
(-0.0754005 0.170081 0)
(-0.0205003 0.148672 0)
(0.0131785 0.110715 0)
(0.0252651 0.0764138 0)
(0.0267872 0.0519821 0)
(0.0245883 0.0357311 0)
(0.021595 0.0249451 0)
(0.0185592 0.01737 0)
(0.015588 0.011977 0)
(0.0128128 0.00812946 0)
(0.0103113 0.00536606 0)
(0.00819794 0.00343518 0)
(0.00651902 0.00212266 0)
(0.00536197 0.00115365 0)
(0.00479683 0.000294419 0)
(-0.0200762 -0.481867 0)
(-0.0546391 -0.479583 0)
(-0.0934279 -0.47447 0)
(-0.137151 -0.465514 0)
(-0.186531 -0.450821 0)
(-0.241889 -0.427193 0)
(-0.302181 -0.38975 0)
(-0.363023 -0.332434 0)
(-0.415024 -0.250744 0)
(-0.44546 -0.14523 0)
(-0.437987 -0.0211801 0)
(-0.371265 0.0951026 0)
(-0.266906 0.153491 0)
(-0.181831 0.15809 0)
(-0.127181 0.152022 0)
(-0.0786633 0.148572 0)
(-0.0309245 0.132449 0)
(0.00186807 0.103345 0)
(0.0170586 0.0743117 0)
(0.0216168 0.0519049 0)
(0.0214502 0.036233 0)
(0.0196592 0.025511 0)
(0.0173484 0.0179074 0)
(0.0148413 0.0124476 0)
(0.0123595 0.00852099 0)
(0.0100389 0.00568596 0)
(0.00802772 0.0036797 0)
(0.00640789 0.0022871 0)
(0.00528035 0.00124065 0)
(0.0047197 0.000323739 0)
(-0.0179136 -0.418325 0)
(-0.048347 -0.415647 0)
(-0.0822452 -0.409959 0)
(-0.119912 -0.400453 0)
(-0.161489 -0.38559 0)
(-0.206664 -0.363033 0)
(-0.254106 -0.329616 0)
(-0.30048 -0.281759 0)
(-0.339582 -0.216781 0)
(-0.362373 -0.134894 0)
(-0.357523 -0.041792 0)
(-0.315886 0.0454887 0)
(-0.247554 0.102065 0)
(-0.180443 0.12363 0)
(-0.127565 0.128629 0)
(-0.081507 0.127825 0)
(-0.0391306 0.116609 0)
(-0.00788226 0.0949022 0)
(0.00928631 0.0710683 0)
(0.0163866 0.0511206 0)
(0.0181455 0.0363647 0)
(0.0175754 0.0258996 0)
(0.0160238 0.0183629 0)
(0.0140073 0.0128884 0)
(0.0118391 0.00890882 0)
(0.00971729 0.00601322 0)
(0.00782093 0.00393466 0)
(0.00626995 0.00246201 0)
(0.00517787 0.001335 0)
(0.00462773 0.000352557 0)
(-0.0154858 -0.358586 0)
(-0.0414901 -0.355782 0)
(-0.0702782 -0.350127 0)
(-0.101907 -0.341077 0)
(-0.136237 -0.327422 0)
(-0.172742 -0.30745 0)
(-0.210167 -0.279055 0)
(-0.245984 -0.240043 0)
(-0.275919 -0.188867 0)
(-0.293843 -0.125932 0)
(-0.29258 -0.0555446 0)
(-0.267301 0.0119712 0)
(-0.222385 0.0629566 0)
(-0.171563 0.0916982 0)
(-0.125028 0.104432 0)
(-0.0830653 0.107633 0)
(-0.0452872 0.101126 0)
(-0.0160027 0.0856702 0)
(0.00217323 0.0667915 0)
(0.0112492 0.0496029 0)
(0.014743 0.0360771 0)
(0.0153692 0.0260755 0)
(0.014592 0.0187152 0)
(0.0130849 0.0132865 0)
(0.011248 0.00928589 0)
(0.00934164 0.00634283 0)
(0.00757399 0.00419622 0)
(0.00610236 0.00264383 0)
(0.00505213 0.00143496 0)
(0.00451914 0.000380741 0)
(-0.013093 -0.303911 0)
(-0.0348053 -0.301204 0)
(-0.0586796 -0.296012 0)
(-0.0846651 -0.288026 0)
(-0.112539 -0.276283 0)
(-0.141762 -0.259503 0)
(-0.171285 -0.236252 0)
(-0.199233 -0.205146 0)
(-0.222638 -0.165299 0)
(-0.237433 -0.11713 0)
(-0.239072 -0.0635051 0)
(-0.224495 -0.0105806 0)
(-0.195224 0.0336098 0)
(-0.15791 0.0639393 0)
(-0.119454 0.0811728 0)
(-0.082799 0.0882227 0)
(-0.0494449 0.0860594 0)
(-0.022461 0.0759223 0)
(-0.0041014 0.0616408 0)
(0.00636029 0.0473641 0)
(0.0113258 0.0353363 0)
(0.0130751 0.0260056 0)
(0.0130657 0.0189408 0)
(0.0120784 0.0136258 0)
(0.0105877 0.00964154 0)
(0.0089118 0.00666785 0)
(0.00728705 0.00446016 0)
(0.00590507 0.00282938 0)
(0.00490383 0.0015392 0)
(0.00439198 0.000408674 0)
(-0.0109537 -0.254657 0)
(-0.0288427 -0.252438 0)
(-0.0482587 -0.248147 0)
(-0.0691586 -0.241554 0)
(-0.091394 -0.231943 0)
(-0.114538 -0.218384 0)
(-0.137774 -0.199887 0)
(-0.159728 -0.175553 0)
(-0.178352 -0.144845 0)
(-0.190934 -0.10807 0)
(-0.194504 -0.0670183 0)
(-0.186891 -0.0253637 0)
(-0.16824 0.0119642 0)
(-0.141613 0.04088 0)
(-0.111293 0.0600227 0)
(-0.0805218 0.0700077 0)
(-0.0516349 0.0715714 0)
(-0.0272508 0.065925 0)
(-0.00938909 0.0558001 0)
(0.00187647 0.0444532 0)
(0.00799273 0.0341273 0)
(0.0107426 0.0256607 0)
(0.0114682 0.0190161 0)
(0.0109988 0.0138892 0)
(0.00986355 0.00996446 0)
(0.00842942 0.00698134 0)
(0.00696043 0.00472278 0)
(0.00567747 0.00301704 0)
(0.00473207 0.00164712 0)
(0.0042437 0.000437225 0)
(-0.0089189 -0.210925 0)
(-0.0233032 -0.209599 0)
(-0.0388173 -0.206609 0)
(-0.0554019 -0.201561 0)
(-0.0729486 -0.193999 0)
(-0.0911463 -0.183345 0)
(-0.109401 -0.168945 0)
(-0.126733 -0.150197 0)
(-0.141726 -0.126743 0)
(-0.152556 -0.0987479 0)
(-0.157211 -0.067279 0)
(-0.15406 -0.0345349 0)
(-0.142653 -0.00361315 0)
(-0.124224 0.0224233 0)
(-0.101238 0.0416333 0)
(-0.0763418 0.0534085 0)
(-0.0519399 0.0578937 0)
(-0.0303952 0.0559423 0)
(-0.0135797 0.0494702 0)
(-0.00206331 0.0409601 0)
(0.00484993 0.0324598 0)
(0.00843201 0.0250227 0)
(0.00982941 0.0189216 0)
(0.00985927 0.0140616 0)
(0.00907997 0.0102449 0)
(0.00789395 0.00727785 0)
(0.00659127 0.00498143 0)
(0.00541565 0.00320618 0)
(0.00453279 0.00175827 0)
(0.00407142 0.000467048 0)
(-0.00693847 -0.173626 0)
(-0.0180904 -0.172937 0)
(-0.0302278 -0.171015 0)
(-0.0432668 -0.167377 0)
(-0.0570643 -0.161681 0)
(-0.0713564 -0.153554 0)
(-0.0857103 -0.142572 0)
(-0.0994456 -0.128328 0)
(-0.111595 -0.110562 0)
(-0.120915 -0.0893353 0)
(-0.12601 -0.0652547 0)
(-0.125634 -0.0396296 0)
(-0.119135 -0.0144204 0)
(-0.106833 0.00816122 0)
(-0.0900217 0.0262567 0)
(-0.070566 0.0387513 0)
(-0.0505205 0.0452816 0)
(-0.0319591 0.0462406 0)
(-0.0166124 0.0428767 0)
(-0.0053407 0.037009 0)
(0.00200655 0.0303711 0)
(0.00621296 0.0240885 0)
(0.0081873 0.0186438 0)
(0.00867781 0.0141308 0)
(0.00824366 0.0104736 0)
(0.00730639 0.00755141 0)
(0.00617736 0.00523257 0)
(0.0051162 0.00339513 0)
(0.00430227 0.00187145 0)
(0.00387171 0.000498126 0)
(-0.00530848 -0.142787 0)
(-0.0137905 -0.142371 0)
(-0.0230882 -0.141076 0)
(-0.0331454 -0.138484 0)
(-0.0438441 -0.134309 0)
(-0.0549792 -0.128271 0)
(-0.0662314 -0.120062 0)
(-0.0771176 -0.109393 0)
(-0.0869659 -0.0960638 0)
(-0.0949193 -0.0800643 0)
(-0.099994 -0.0617173 0)
(-0.101241 -0.041793 0)
(-0.0980005 -0.021526 0)
(-0.0901615 -0.0024647 0)
(-0.0783049 0.0138507 0)
(-0.0636026 0.0262129 0)
(-0.0476154 0.0339567 0)
(-0.032057 0.0370688 0)
(-0.0184749 0.0362477 0)
(-0.00785911 0.032742 0)
(-0.000436945 0.0279223 0)
(0.00415919 0.0228728 0)
(0.00658591 0.0181784 0)
(0.00747734 0.0140876 0)
(0.00736406 0.0106413 0)
(0.00666911 0.0077953 0)
(0.00571709 0.00547211 0)
(0.00477628 0.00358117 0)
(0.00403683 0.00198511 0)
(0.00364087 0.000529935 0)
(-0.00402883 -0.117554 0)
(-0.0104164 -0.117273 0)
(-0.0174419 -0.116356 0)
(-0.0250815 -0.114482 0)
(-0.0332584 -0.111433 0)
(-0.0418256 -0.106999 0)
(-0.0505551 -0.100949 0)
(-0.0591073 -0.0930586 0)
(-0.0670162 -0.0831552 0)
(-0.0736871 -0.0711813 0)
(-0.0784218 -0.0572866 0)
(-0.0805047 -0.0419084 0)
(-0.0793475 -0.0258132 0)
(-0.0746649 -0.010053 0)
(-0.0666235 0.00418918 0)
(-0.0558819 0.0158239 0)
(-0.0435166 0.0240752 0)
(-0.0308516 0.0286456 0)
(-0.019202 0.0298059 0)
(-0.00956489 0.0283261 0)
(-0.00240358 0.0252185 0)
(0.0023436 0.0214108 0)
(0.00507315 0.0175327 0)
(0.00628496 0.0139291 0)
(0.00645344 0.0107416 0)
(0.00598597 0.00800357 0)
(0.00520947 0.00569528 0)
(0.00439294 0.00376116 0)
(0.003733 0.00209707 0)
(0.00337508 0.000561592 0)
(-0.00303663 -0.0970591 0)
(-0.00782371 -0.0968484 0)
(-0.0130953 -0.0961727 0)
(-0.0188373 -0.0948036 0)
(-0.0249992 -0.0925825 0)
(-0.0314845 -0.0893524 0)
(-0.0381444 -0.0849347 0)
(-0.044753 -0.0791485 0)
(-0.0509948 -0.0718419 0)
(-0.0564597 -0.0629325 0)
(-0.0606523 -0.0524661 0)
(-0.0630385 -0.0406749 0)
(-0.0631278 -0.0280202 0)
(-0.0605902 -0.0151954 0)
(-0.0553751 -0.00305977 0)
(-0.047799 0.00749457 0)
(-0.0385356 0.0157131 0)
(-0.0285418 0.0211448 0)
(-0.0188715 0.0237564 0)
(-0.0104401 0.0239371 0)
(-0.00382021 0.0223613 0)
(0.000835094 0.01976 0)
(0.00369833 0.0167288 0)
(0.00513036 0.01366 0)
(0.00552703 0.0107724 0)
(0.00526254 0.00817208 0)
(0.00465428 0.00589735 0)
(0.00396346 0.0039316 0)
(0.00338743 0.00220492 0)
(0.00307053 0.000592184 0)
(-0.00227406 -0.0804708 0)
(-0.00582733 -0.0803382 0)
(-0.00972593 -0.0798744 0)
(-0.0139659 -0.0789048 0)
(-0.0185258 -0.0773091 0)
(-0.0233502 -0.0749689 0)
(-0.0283448 -0.0717498 0)
(-0.0333614 -0.0675128 0)
(-0.0381893 -0.0621311 0)
(-0.0425487 -0.0555157 0)
(-0.0460923 -0.0476538 0)
(-0.0484299 -0.0386508 0)
(-0.0491758 -0.0287692 0)
(-0.0480203 -0.0184478 0)
(-0.0448194 -0.00828308 0)
(-0.0396718 0.00103899 0)
(-0.0329672 0.00886046 0)
(-0.0253438 0.0146793 0)
(-0.0175971 0.0182736 0)
(-0.0105046 0.0197474 0)
(-0.00465043 0.0194829 0)
(-0.00031363 0.0179972 0)
(0.0025074 0.0158053 0)
(0.00404326 0.0132947 0)
(0.00460062 0.0107367 0)
(0.00450512 0.00829869 0)
(0.00405179 0.00607436 0)
(0.00348547 0.00408865 0)
(0.00299639 0.00230638 0)
(0.00272322 0.000621017 0)
(-0.00163144 -0.0673651 0)
(-0.00417146 -0.0672926 0)
(-0.00697768 -0.0669804 0)
(-0.0100493 -0.0662903 0)
(-0.0133686 -0.065136 0)
(-0.0168975 -0.0634323 0)
(-0.0205739 -0.0610794 0)
(-0.0243018 -0.0579699 0)
(-0.0279429 -0.0539979 0)
(-0.0313111 -0.0490753 0)
(-0.0341702 -0.0431596 0)
(-0.0362451 -0.036281 0)
(-0.0372466 -0.0285755 0)
(-0.0369154 -0.0203076 0)
(-0.0350824 -0.0118753 0)
(-0.031735 -0.00377918 0)
(-0.0270638 0.00344265 0)
(-0.0214699 0.00930871 0)
(-0.0155145 0.0134984 0)
(-0.00981066 0.0159212 0)
(-0.00488588 0.0167243 0)
(-0.00107011 0.0162275 0)
(0.00153906 0.0148185 0)
(0.00305114 0.0128604 0)
(0.00368979 0.010644 0)
(0.00372037 0.00838399 0)
(0.00340274 0.00622322 0)
(0.00295698 0.00422892 0)
(0.00255669 0.002399 0)
(0.00232953 0.000647753 0)
(-0.00113679 -0.0573963 0)
(-0.00290475 -0.0573135 0)
(-0.00485977 -0.0570508 0)
(-0.00700397 -0.0565252 0)
(-0.00932803 -0.0556708 0)
(-0.011809 -0.0544165 0)
(-0.0144092 -0.0526824 0)
(-0.0170684 -0.0503808 0)
(-0.0196987 -0.0474203 0)
(-0.0221802 -0.043718 0)
(-0.0243576 -0.0392191 0)
(-0.0260439 -0.0339135 0)
(-0.0270335 -0.0278596 0)
(-0.0271277 -0.0212073 0)
(-0.0261732 -0.0142103 0)
(-0.0241087 -0.00722231 0)
(-0.0210072 -0.000664066 0)
(-0.0171032 0.00504092 0)
(-0.0127627 0.00953424 0)
(-0.00843447 0.0126067 0)
(-0.00454733 0.0142317 0)
(-0.0014151 0.0145556 0)
(0.000816713 0.0138414 0)
(0.00217476 0.0123968 0)
(0.00280636 0.0105119 0)
(0.00291326 0.00843228 0)
(0.00270777 0.00634209 0)
(0.00237574 0.00434869 0)
(0.00206516 0.00248006 0)
(0.00188612 0.000671367 0)
(-0.000766711 -0.0499062 0)
(-0.00195268 -0.0498941 0)
(-0.00324184 -0.0497507 0)
(-0.00463476 -0.0493844 0)
(-0.00613328 -0.0487457 0)
(-0.00773455 -0.0477895 0)
(-0.00942667 -0.0464592 0)
(-0.0111785 -0.0446883 0)
(-0.0129366 -0.0424051 0)
(-0.0146253 -0.0395369 0)
(-0.0161456 -0.0360228 0)
(-0.0173769 -0.0318291 0)
(-0.0181831 -0.0269664 0)
(-0.0184272 -0.0215115 0)
(-0.0179921 -0.0156219 0)
(-0.0168116 -0.00954257 0)
(-0.0149004 -0.003595 0)
(-0.0123782 0.00185616 0)
(-0.00946833 0.00645948 0)
(-0.00646657 0.00993959 0)
(-0.00368115 0.0121524 0)
(-0.00136334 0.0131098 0)
(0.000344494 0.0129633 0)
(0.00142175 0.011957 0)
(0.00195615 0.0103653 0)
(0.00208555 0.00845173 0)
(0.00196635 0.00643077 0)
(0.00173968 0.00444418 0)
(0.00151917 0.00254625 0)
(0.00139028 0.000690654 0)
(-0.000388584 -0.045061 0)
(-0.000994765 -0.0450561 0)
(-0.00168212 -0.0449425 0)
(-0.002453 -0.0446424 0)
(-0.00330139 -0.0441191 0)
(-0.00421673 -0.0433417 0)
(-0.00518412 -0.0422647 0)
(-0.00618186 -0.0408298 0)
(-0.00718186 -0.0389733 0)
(-0.00814764 -0.0366307 0)
(-0.00902946 -0.0337424 0)
(-0.0097634 -0.0302632 0)
(-0.0102747 -0.0261781 0)
(-0.010485 -0.0215201 0)
(-0.0103235 -0.0163878 0)
(-0.00974344 -0.0109564 0)
(-0.00873938 -0.00547843 0)
(-0.00736187 -0.000268355 0)
(-0.0057276 0.00434514 0)
(-0.00400149 0.00805277 0)
(-0.00236038 0.0106385 0)
(-0.00096058 0.0120271 0)
(9.67464e-05 0.0122862 0)
(0.000779789 0.0116048 0)
(0.00113283 0.0102371 0)
(0.00123347 0.00845342 0)
(0.00117555 0.00648948 0)
(0.00104635 0.00451158 0)
(0.00091676 0.00259396 0)
(0.000840029 0.000704615 0)
(-4.52716e-05 -0.0426551 0)
(-0.000100084 -0.042567 0)
(-0.000164318 -0.0423662 0)
(-0.000236816 -0.0420219 0)
(-0.000316119 -0.041498 0)
(-0.000400832 -0.0407532 0)
(-0.00048902 -0.0397388 0)
(-0.000578717 -0.0383972 0)
(-0.000667894 -0.036666 0)
(-0.000753378 -0.0344814 0)
(-0.000830314 -0.0317856 0)
(-0.00089281 -0.0285352 0)
(-0.000934413 -0.0247132 0)
(-0.000948357 -0.0203464 0)
(-0.000928569 -0.015519 0)
(-0.000871614 -0.0103874 0)
(-0.000783476 -0.0051806 0)
(-0.000699767 -0.000201814 0)
(-0.00061464 0.0042124 0)
(-0.00042838 0.00778604 0)
(-0.000243716 0.0102821 0)
(-8.65175e-05 0.011619 0)
(2.97249e-05 0.0118478 0)
(0.000102412 0.0111487 0)
(0.000137392 0.00977348 0)
(0.000144231 0.00799241 0)
(0.000134745 0.00603984 0)
(0.000118672 0.00407477 0)
(0.000104235 0.00215804 0)
(9.71813e-05 0.000243377 0)
)
;
boundaryField
{
leftWall
{
type fixedValue;
value uniform (0 0 0);
}
rightWall
{
type fixedValue;
value uniform (0 0 0);
}
lowerWall
{
type fixedValue;
value uniform (0 0 0);
}
atmosphere
{
type pressureInletOutletVelocity;
value nonuniform List<vector>
480
(
(-0.00793733 -9.05625e-05 0)
(-0.00557761 -0.000300063 0)
(-0.00486541 -0.000359396 0)
(-0.00466547 -0.000343437 0)
(-0.00465201 -0.000306321 0)
(-0.00468809 -0.000265094 0)
(-0.00472418 -0.000223869 0)
(-0.00475047 -0.000183686 0)
(-0.00476612 -0.000145008 0)
(-0.0047714 -0.000108174 0)
(-0.00476642 -7.34561e-05 0)
(-0.00474977 -4.07561e-05 0)
(-0.00472153 -9.62433e-06 0)
(-0.0046817 1.99825e-05 0)
(-0.00462984 4.77606e-05 0)
(-0.00456523 7.33099e-05 0)
(-0.00448456 9.59294e-05 0)
(-0.00437958 0.000115269 0)
(-0.00424696 0.000132202 0)
(-0.00408796 0.000147689 0)
(-0.00390079 0.000161976 0)
(-0.00368233 0.000175501 0)
(-0.0034292 0.000188135 0)
(-0.00313764 0.000199842 0)
(-0.00280381 0.000210388 0)
(-0.00242406 0.000220028 0)
(-0.00199515 0.000228535 0)
(-0.0015144 0.000235571 0)
(-0.000979672 0.000240883 0)
(-0.000390127 0.000244077 0)
(-0.000102398 0.00169132 0)
(-0.000115532 0.00360969 0)
(-0.000131911 0.00557488 0)
(-0.000144018 0.00755214 0)
(-0.000142128 0.0094043 0)
(-0.000114717 0.0109096 0)
(-5.14499e-05 0.0117998 0)
(5.49367e-05 0.0118109 0)
(0.000204279 0.0107383 0)
(0.000385063 0.00849826 0)
(0.000574288 0.00515092 0)
(0.000738457 0.00088397 0)
(0 -0.00401384 0)
(0 -0.00921968 0)
(0 -0.0144078 0)
(0 -0.0193342 0)
(0 -0.0238251 0)
(0 -0.027781 0)
(0 -0.0311637 0)
(0 -0.033982 0)
(0 -0.0362752 0)
(0 -0.0380987 0)
(0 -0.0395168 0)
(0 -0.0405928 0)
(0 -0.0413872 0)
(0 -0.0419503 0)
(0 -0.042325 0)
(0 -0.0425484 0)
(0 -0.042652 0)
(0 -0.0426756 0)
(0 -0.0426551 0)
(0 -0.042567 0)
(0 -0.0423662 0)
(0 -0.0420219 0)
(0 -0.041498 0)
(0 -0.0407532 0)
(0 -0.0397388 0)
(0 -0.0383972 0)
(0 -0.036666 0)
(0 -0.0344814 0)
(0 -0.0317856 0)
(0 -0.0285352 0)
(0 -0.0247132 0)
(0 -0.0203464 0)
(0 -0.015519 0)
(0 -0.0103874 0)
(0 -0.0051806 0)
(0 -0.000201814 0)
(-0.00061464 0.0042124 0)
(-0.00042838 0.00778604 0)
(-0.000243716 0.0102821 0)
(-8.65175e-05 0.011619 0)
(2.97249e-05 0.0118478 0)
(0.000102412 0.0111487 0)
(0.000137392 0.00977348 0)
(0.000144231 0.00799241 0)
(0.000134745 0.00603984 0)
(0.000118672 0.00407477 0)
(0.000104235 0.00215804 0)
(9.71813e-05 0.000243377 0)
(0.00701354 -0.000151429 0)
(0.00518613 -0.000322912 0)
(0.0046261 -0.000347122 0)
(0.00450816 -0.000315349 0)
(0.00455118 -0.00027006 0)
(0.00462338 -0.000224892 0)
(0.00468391 -0.000182222 0)
(0.00472757 -0.000142379 0)
(0.00475569 -0.0001053 0)
(0.00476852 -7.08328e-05 0)
(0.00476736 -3.87357e-05 0)
(0.00475376 -9.08259e-06 0)
(0.00472577 1.81439e-05 0)
(0.00468141 4.34002e-05 0)
(0.00462178 6.69231e-05 0)
(0.00454626 8.85311e-05 0)
(0.00445178 0.000108034 0)
(0.00433507 0.000125585 0)
(0.00419442 0.000141377 0)
(0.00402777 0.000155619 0)
(0.00383266 0.000168452 0)
(0.00360575 0.00018028 0)
(0.00334366 0.000191368 0)
(0.0030425 0.000201992 0)
(0.00269888 0.000212163 0)
(0.00230915 0.000221259 0)
(0.00186989 0.00022922 0)
(0.0013785 0.000235841 0)
(0.00083302 0.000240608 0)
(9.71813e-05 0.000243377 0)
(-9.78762e-05 0.000244695 0)
(-0.000105062 0.00216967 0)
(-0.0001195 0.00409678 0)
(-0.000135744 0.00607237 0)
(-0.00014524 0.00803463 0)
(-0.000138204 0.00982282 0)
(-0.000102617 0.0111998 0)
(-2.89539e-05 0.0118923 0)
(8.85091e-05 0.011647 0)
(0.000247281 0.0102842 0)
(0.000433051 0.00775516 0)
(0.000620659 0.00414584 0)
(0 -0.000301278 0)
(0 -0.00530651 0)
(0 -0.0105333 0)
(0 -0.0156757 0)
(0 -0.020506 0)
(0 -0.0248692 0)
(0 -0.0286828 0)
(0 -0.0319215 0)
(0 -0.0346035 0)
(0 -0.0367733 0)
(0 -0.0384891 0)
(0 -0.0398155 0)
(0 -0.0408158 0)
(0 -0.0415478 0)
(0 -0.0420601 0)
(0 -0.0423936 0)
(0 -0.0425841 0)
(0 -0.0426628 0)
(0 -0.0426745 0)
(0 -0.042642 0)
(0 -0.0425287 0)
(0 -0.042295 0)
(0 -0.0419093 0)
(0 -0.0413342 0)
(0 -0.0405267 0)
(0 -0.0394362 0)
(0 -0.0380029 0)
(0 -0.036164 0)
(0 -0.0338564 0)
(0 -0.0310246 0)
(0 -0.027631 0)
(0 -0.0236675 0)
(0 -0.0191745 0)
(0 -0.014253 0)
(0 -0.00907763 0)
(0 -0.0038944 0)
(-0.000730146 0.000975202 0)
(-0.000568668 0.00520871 0)
(-0.000380684 0.00852035 0)
(-0.000201059 0.0107289 0)
(-5.33191e-05 0.0117778 0)
(5.19271e-05 0.0117529 0)
(0.000114323 0.0108584 0)
(0.000141276 0.00935639 0)
(0.000142999 0.00751216 0)
(0.000130966 0.00554489 0)
(0.000114661 0.00359017 0)
(0.000101678 0.00168217 0)
(-0.0064255 -0.000207248 0)
(-0.00512346 -0.000344984 0)
(-0.00473014 -0.000356209 0)
(-0.00464656 -0.000326138 0)
(-0.00466827 -0.000286041 0)
(-0.00470694 -0.000244611 0)
(-0.0047385 -0.000203823 0)
(-0.00475951 -0.000164345 0)
(-0.00476998 -0.000126539 0)
(-0.00477027 -9.07253e-05 0)
(-0.00475968 -5.70563e-05 0)
(-0.00473719 -2.51764e-05 0)
(-0.00470329 5.22873e-06 0)
(-0.00465754 3.39787e-05 0)
(-0.00459955 6.071e-05 0)
(-0.00452774 8.4918e-05 0)
(-0.00443598 0.000105874 0)
(-0.0043173 0.000123874 0)
(-0.0041716 0.000140001 0)
(-0.00399894 0.000154908 0)
(-0.00379666 0.000168813 0)
(-0.00356142 0.00018177 0)
(-0.0032897 0.000194033 0)
(-0.00297771 0.000205222 0)
(-0.00262162 0.000215259 0)
(-0.00221798 0.000224327 0)
(-0.00176379 0.000232195 0)
(-0.00125655 0.000238496 0)
(-0.000694649 0.000242796 0)
(-9.78762e-05 0.000244695 0)
(0.00878468 0.000230489 0)
(0.00584446 -0.000256316 0)
(0.00482487 -0.000346837 0)
(0.00453468 -0.000334708 0)
(0.00452042 -0.000293134 0)
(0.00458742 -0.000247348 0)
(0.00465563 -0.00020339 0)
(0.00470769 -0.000162173 0)
(0.00474353 -0.000123709 0)
(0.00476404 -8.79224e-05 0)
(0.00476964 -5.46376e-05 0)
(0.00476232 -2.37724e-05 0)
(0.00474199 4.6406e-06 0)
(0.00470588 3.08406e-05 0)
(0.00465383 5.52376e-05 0)
(0.00458661 7.78569e-05 0)
(0.0045022 9.84526e-05 0)
(0.00439697 0.000116963 0)
(0.00426865 0.000133613 0)
(0.00411544 0.000148614 0)
(0.00393509 0.000162142 0)
(0.00372466 0.00017439 0)
(0.00348079 0.000185896 0)
(0.00319976 0.00019666 0)
(0.00287806 0.000207138 0)
(0.00251201 0.000216811 0)
(0.00209809 0.000225348 0)
(0.00163334 0.000232697 0)
(0.00111528 0.000238475 0)
(0.000542624 0.000242146 0)
(-0.000100164 0.00119973 0)
(-0.000111576 0.00311466 0)
(-0.000127691 0.00506663 0)
(-0.000141833 0.00704994 0)
(-0.000144551 0.00895239 0)
(-0.000124837 0.0105708 0)
(-7.16488e-05 0.0116451 0)
(2.33212e-05 0.0119043 0)
(0.000162318 0.0111228 0)
(0.000336702 0.00918234 0)
(0.000527574 0.00610576 0)
(0.000698221 0.00205476 0)
(0 -0.00271175 0)
(0 -0.00787581 0)
(0 -0.0130944 0)
(0 -0.0181071 0)
(0 -0.022722 0)
(0 -0.0268209 0)
(0 -0.0303513 0)
(0 -0.0333115 0)
(0 -0.0357345 0)
(0 -0.0376725 0)
(0 -0.0391883 0)
(0 -0.040346 0)
(0 -0.0412074 0)
(0 -0.0418255 0)
(0 -0.0422448 0)
(0 -0.0425037 0)
(0 -0.0426352 0)
(0 -0.0426739 0)
(0 -0.0426642 0)
(0 -0.0425977 0)
(0 -0.0424272 0)
(0 -0.0421209 0)
(0 -0.0416443 0)
(0 -0.0409575 0)
(0 -0.0400137 0)
(0 -0.0387575 0)
(0 -0.0371271 0)
(0 -0.0350586 0)
(0 -0.0324921 0)
(0 -0.0293794 0)
(0 -0.0256961 0)
(0 -0.0214564 0)
(0 -0.0167295 0)
(0 -0.0116535 0)
(0 -0.00643992 0)
(0 -0.00136407 0)
(-0.000657874 0.00320934 0)
(-0.000474985 0.00701139 0)
(-0.000286896 0.00978079 0)
(-0.000121303 0.0114004 0)
(5.60838e-06 0.0118865 0)
(8.84839e-05 0.0113921 0)
(0.000131881 0.010156 0)
(0.000144511 0.00845007 0)
(0.000138085 0.00652099 0)
(0.000122699 0.00454925 0)
(0.00010734 0.0026211 0)
(9.80665e-05 0.000712635 0)
(-9.87105e-05 0.000716383 0)
(-0.000108013 0.00263523 0)
(-0.000123552 0.00457394 0)
(-0.000139002 0.00655598 0)
(-0.000145464 0.00849433 0)
(-0.00013259 0.0102063 0)
(-8.8565e-05 0.0114424 0)
(-4.52612e-06 0.0119281 0)
(0.000123756 0.0114229 0)
(0.000290764 0.00977549 0)
(0.000479934 0.00697178 0)
(0.000664351 0.00313397 0)
(0 -0.00147133 0)
(0 -0.00657157 0)
(0 -0.0118029 0)
(0 -0.0168876 0)
(0 -0.0216156 0)
(0 -0.0258504 0)
(0 -0.0295244 0)
(0 -0.0326248 0)
(0 -0.0351772 0)
(0 -0.0372307 0)
(0 -0.0388457 0)
(0 -0.0400868 0)
(0 -0.0410169 0)
(0 -0.0416912 0)
(0 -0.0421564 0)
(0 -0.042452 0)
(0 -0.0426124 0)
(0 -0.0426697 0)
(0 -0.0426706 0)
(0 -0.0426227 0)
(0 -0.0424814 0)
(0 -0.042212 0)
(0 -0.0417815 0)
(0 -0.0411513 0)
(0 -0.0402763 0)
(0 -0.0391038 0)
(0 -0.0375727 0)
(0 -0.0356194 0)
(0 -0.0331824 0)
(0 -0.0302091 0)
(0 -0.0266685 0)
(0 -0.0225632 0)
(0 -0.0179479 0)
(0 -0.0129421 0)
(0 -0.00773863 0)
(0 -0.00259874 0)
(-0.00069048 0.002139 0)
(-0.000522238 0.0061544 0)
(-0.000332604 0.00919574 0)
(-0.000159459 0.0111064 0)
(-2.19703e-05 0.0118666 0)
(7.18015e-05 0.0115962 0)
(0.00012427 0.0105198 0)
(0.000143631 0.00890621 0)
(0.000140909 0.00701238 0)
(0.000126834 0.00503931 0)
(0.000110864 0.00309782 0)
(9.95776e-05 0.00119329 0)
(-0.00878101 0.000230263 0)
(-0.00593977 -0.00025856 0)
(-0.00497606 -0.000355117 0)
(-0.00469071 -0.000350772 0)
(-0.00464711 -0.00031651 0)
(-0.00467799 -0.000275688 0)
(-0.0047158 -0.000234315 0)
(-0.00474478 -0.000193811 0)
(-0.00476313 -0.000154717 0)
(-0.00477101 -0.000117378 0)
(-0.00476873 -8.21039e-05 0)
(-0.00475516 -4.89345e-05 0)
(-0.0047298 -1.74293e-05 0)
(-0.00469299 1.25908e-05 0)
(-0.00464422 4.08714e-05 0)
(-0.00458302 6.7036e-05 0)
(-0.0045071 9.04844e-05 0)
(-0.00440894 0.00011061 0)
(-0.00428332 0.000128059 0)
(-0.00413109 0.000143852 0)
(-0.00395136 0.000158434 0)
(-0.00374122 0.000172157 0)
(-0.00349726 0.00018496 0)
(-0.00321584 0.000196957 0)
(-0.00289314 0.000207836 0)
(-0.00252542 0.000217671 0)
(-0.00210932 0.000226476 0)
(-0.00164205 0.00023393 0)
(-0.0011212 0.000239746 0)
(-0.000545536 0.000243507 0)
(0.00635027 -0.000206573 0)
(0.00498162 -0.000338846 0)
(0.00457072 -0.00034223 0)
(0.00451086 -0.000304479 0)
(0.00456879 -0.000258856 0)
(0.00463972 -0.000214236 0)
(0.00469608 -0.000172275 0)
(0.00473584 -0.000133113 0)
(0.00476021 -9.6668e-05 0)
(0.00476941 -6.27717e-05 0)
(0.00476517 -3.12704e-05 0)
(0.00474834 -2.23475e-06 0)
(0.00471638 2.44673e-05 0)
(0.00466816 4.93018e-05 0)
(0.00460483 7.23828e-05 0)
(0.00452501 9.34943e-05 0)
(0.0044253 0.000112503 0)
(0.00430288 0.00012961 0)
(0.00415608 0.000145003 0)
(0.00398271 0.000158888 0)
(0.00378011 0.000171418 0)
(0.00354492 0.000183079 0)
(0.00327356 0.000193997 0)
(0.00296237 0.000204554 0)
(0.00260776 0.000214486 0)
(0.00220617 0.000223317 0)
(0.00175439 0.000230982 0)
(0.00124989 0.000237201 0)
(0.000690964 0.00024144 0)
(0.000234449 0.000243076 0)
(-0.00706565 -0.0001522 0)
(-0.00531545 -0.000327754 0)
(-0.00478596 -0.000359324 0)
(-0.00465183 -0.000335079 0)
(-0.00465947 -0.000296126 0)
(-0.00469779 -0.000254735 0)
(-0.00473173 -0.000213705 0)
(-0.00475535 -0.000173866 0)
(-0.00476838 -0.000135618 0)
(-0.00477114 -9.92945e-05 0)
(-0.00476338 -6.51133e-05 0)
(-0.00474376 -3.2842e-05 0)
(-0.00471268 -2.07468e-06 0)
(-0.00466986 2.71121e-05 0)
(-0.00461494 5.43724e-05 0)
(-0.0045468 7.92707e-05 0)
(-0.00446084 0.00010105 0)
(-0.00434898 0.000119671 0)
(-0.00420968 0.000136178 0)
(-0.00404385 0.000151364 0)
(-0.00384913 0.000165452 0)
(-0.00362228 0.000178685 0)
(-0.00335986 0.000191128 0)
(-0.00305812 0.000202581 0)
(-0.00271319 0.000212893 0)
(-0.0023215 0.000222236 0)
(-0.00187991 0.000230418 0)
(-0.00138588 0.00023709 0)
(-0.000837439 0.00024192 0)
(-0.00023577 0.000244435 0)
(0.0079145 -9.05626e-05 0)
(0.00546405 -0.000297298 0)
(0.00470814 -0.000349284 0)
(0.00451485 -0.000324779 0)
(0.00453463 -0.000281441 0)
(0.00460594 -0.00023587 0)
(0.0046705 -0.000192559 0)
(0.00471826 -0.000152039 0)
(0.00475019 -0.000114279 0)
(0.0047668 -7.91766e-05 0)
(0.0047689 -4.65128e-05 0)
(0.00475845 -1.62629e-05 0)
(0.00473435 1.15358e-05 0)
(0.00469404 3.72415e-05 0)
(0.00463815 6.12019e-05 0)
(0.00456683 8.33203e-05 0)
(0.00447747 0.000103361 0)
(0.0043665 0.000121374 0)
(0.00423203 0.000137587 0)
(0.00407212 0.000152196 0)
(0.00388443 0.000165365 0)
(0.00366579 0.000177386 0)
(0.00341283 0.000188681 0)
(0.00312175 0.000199364 0)
(0.00278908 0.000209694 0)
(0.00241117 0.000219086 0)
(0.00198453 0.00022734 0)
(0.00150639 0.000234337 0)
(0.00097449 0.000239624 0)
(0.000388034 0.000242712 0)
)
;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //
| |
6c12d1ee51783cdc9fa39dec899b215c190cd727 | 202a04b92b7eed81377401f428a154ab08421ff3 | /src/codegen/kaleidoscopejit.cpp | f55ce162e9ff6791cb27f869bc0d839f61dffa78 | [] | no_license | mkmkme/tupac | d910aa3850901f8cccc039112027cacdccf58abe | 59e6839b391bb7cf45a78e048b8fb042f3d9ff4d | refs/heads/master | 2022-06-07T12:48:41.843977 | 2016-07-09T13:08:04 | 2016-07-09T13:08:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,753 | cpp | kaleidoscopejit.cpp | #include "kaleidoscopejit.hpp"
#include <llvm/ExecutionEngine/ExecutionEngine.h>
#include <llvm/ExecutionEngine/JITSymbolFlags.h>
#include <llvm/ExecutionEngine/Orc/CompileUtils.h>
#include <llvm/ExecutionEngine/Orc/LambdaResolver.h>
#include <llvm/ExecutionEngine/RTDyldMemoryManager.h>
#include <llvm/IR/Mangler.h>
#include <llvm/Support/DynamicLibrary.h>
CKaleidoscopeJIT::CKaleidoscopeJIT() :
m_TM(nullptr),
m_DL(nullptr),
m_OL(nullptr),
m_CL(nullptr)
{
llvm::sys::DynamicLibrary::LoadLibraryPermanently(nullptr);
}
void CKaleidoscopeJIT::Init()
{
m_TM = llvm::EngineBuilder().selectTarget();
assert(m_TM != nullptr);
m_DL = std::make_unique<llvm::DataLayout>(m_TM->createDataLayout());
m_OL = std::make_unique<ObjLayer_t>();
m_CL = std::make_unique<CompileLayer_t>(*m_OL, llvm::orc::SimpleCompiler(*m_TM));
}
CKaleidoscopeJIT::ModuleHandle_t CKaleidoscopeJIT::AddModule(std::unique_ptr<llvm::Module> m)
{
// Use a memory manager to allocate memory and resolve symbols for new module.
// Create one to resolve symbols by looking back into JIT
auto resolver = llvm::orc::createLambdaResolver(
[&](const std::string& n)
{
auto s = FindMangledSymbol(n);
if (s)
return llvm::RuntimeDyld::SymbolInfo(s.getAddress(), s.getFlags());
return llvm::RuntimeDyld::SymbolInfo(nullptr);
},
[](const std::string& dummy) { return nullptr; }
);
auto h = m_CL->addModuleSet(SingletonSet(std::move(m)),
std::make_unique<llvm::SectionMemoryManager>(),
std::move(resolver));
m_ModuleHandles.push_back(h);
return h;
}
void CKaleidoscopeJIT::RemoveModule(CKaleidoscopeJIT::ModuleHandle_t h)
{
m_ModuleHandles.erase(std::find(m_ModuleHandles.begin(), m_ModuleHandles.end(), h));
m_CL->removeModuleSet(h);
}
llvm::orc::JITSymbol CKaleidoscopeJIT::FindSymbol(const std::string &s)
{
return FindMangledSymbol(Mangle(s));
}
std::string CKaleidoscopeJIT::Mangle(std::string name)
{
std::string mangled;
llvm::raw_string_ostream mns(mangled);
llvm::Mangler::getNameWithPrefix(mns, name, *m_DL);
return mangled;
}
llvm::orc::JITSymbol CKaleidoscopeJIT::FindMangledSymbol(const std::string &name)
{
// Searching modules in reverse order
// It makes more sense in REPL
for (auto h : llvm::make_range(m_ModuleHandles.rbegin(), m_ModuleHandles.rend())) {
auto s = m_CL->findSymbolIn(h, name, true);
if (s)
return s;
}
// If we can't find symbol in JIT, try looking in the host process
auto symAddr = llvm::RTDyldMemoryManager::getSymbolAddressInProcess(name);
if (symAddr)
return llvm::orc::JITSymbol(symAddr, llvm::JITSymbolFlags::Exported);
return nullptr;
}
template <typename T>
std::vector<T> CKaleidoscopeJIT::SingletonSet(T t)
{
std::vector<T> v;
v.push_back(std::move(t));
return v;
}
|
200f6f492b0eee9c2d75535da7ea0f74b0f7ecb5 | f769e4df3e80746adadf5ef3c843dda5212809cf | /chuck-norris-joke-part2/HoundCpp/HoundJSON/FlightStatusLookupParameterJSON.cpp | c8794a4499fd989ac12d264f4db3ec6e0afdad5c | [] | no_license | jiintonic/weekend-task | 0758296644780e172a07b2308ed91d7e5a51b77d | 07ec0ba5a0f809d424d134d33e0635376d290c69 | refs/heads/master | 2020-03-30T09:07:29.518881 | 2018-10-03T15:13:58 | 2018-10-03T15:13:58 | 151,061,148 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,635 | cpp | FlightStatusLookupParameterJSON.cpp | /* file "FlightStatusLookupParameterJSON.cpp" */
/* Generated automatically by Classy JSON. */
#pragma implementation "FlightStatusLookupParameterJSON.h"
#include "FlightStatusLookupParameterJSON.h"
FlightStatusLookupParameterJSON::TypeValue FlightStatusLookupParameterJSON::stringToValue(const char *chars)
{
switch ((unsigned char)(chars[0]))
{
case 'A':
switch ((unsigned char)(chars[1]))
{
case 'i':
if (strcmp(&(chars[2]), "rline") == 0)
return Value_Airline;
break;
case 'r':
if (strcmp(&(chars[2]), "rivalLocation") == 0)
return Value_ArrivalLocation;
break;
default:
break;
}
break;
case 'D':
if (strncmp(&(chars[1]), "eparture", 8) == 0)
{
switch ((unsigned char)(chars[9]))
{
case 'L':
if (strcmp(&(chars[10]), "ocation") == 0)
return Value_DepartureLocation;
break;
case 'O':
if (strcmp(&(chars[10]), "rArrivalDate") == 0)
return Value_DepartureOrArrivalDate;
break;
default:
break;
}
}
break;
case 'F':
if (strcmp(&(chars[1]), "lightNumber") == 0)
return Value_FlightNumber;
break;
case 'N':
if (strcmp(&(chars[1]), "othing") == 0)
return Value_Nothing;
break;
default:
break;
}
throw("The value for field `Value' is not one of the legal values.");
}
const char *FlightStatusLookupParameterJSON::stringFromValue(TypeValue the_enum)
{
switch (the_enum)
{
case Value_FlightNumber:
return "FlightNumber";
case Value_Airline:
return "Airline";
case Value_DepartureLocation:
return "DepartureLocation";
case Value_ArrivalLocation:
return "ArrivalLocation";
case Value_DepartureOrArrivalDate:
return "DepartureOrArrivalDate";
case Value_Nothing:
return "Nothing";
default:
assert(false);
return NULL;
}
}
FlightStatusLookupParameterJSON::FlightStatusLookupParameterJSON(const FlightStatusLookupParameterJSON &)
{
assert(false);
}
FlightStatusLookupParameterJSON &FlightStatusLookupParameterJSON::operator=(const FlightStatusLookupParameterJSON &other)
{
assert(false);
throw "Illegal operator=() call.";
}
void FlightStatusLookupParameterJSON::fromJSONValue(JSONValue *json_value, bool ignore_extras)
{
assert(json_value != NULL);
const JSONStringValue *json_string = json_value->string_value();
if (json_string == NULL)
throw("The value for field Value of FlightStatusLookupParameterJSON is not a string.");
TypeValue the_enum;
switch ((unsigned char)(json_string->getData()[0]))
{
case 'A':
switch ((unsigned char)(json_string->getData()[1]))
{
case 'i':
if (strcmp(&(json_string->getData()[2]), "rline") == 0)
{
the_enum = Value_Airline;
goto enum_is_done;
}
break;
case 'r':
if (strcmp(&(json_string->getData()[2]), "rivalLocation") == 0)
{
the_enum = Value_ArrivalLocation;
goto enum_is_done;
}
break;
default:
break;
}
break;
case 'D':
if (strncmp(&(json_string->getData()[1]), "eparture", 8) == 0)
{
switch ((unsigned char)(json_string->getData()[9]))
{
case 'L':
if (strcmp(&(json_string->getData()[10]), "ocation") == 0)
{
the_enum = Value_DepartureLocation;
goto enum_is_done;
}
break;
case 'O':
if (strcmp(&(json_string->getData()[10]), "rArrivalDate") == 0)
{
the_enum = Value_DepartureOrArrivalDate;
goto enum_is_done;
}
break;
default:
break;
}
}
break;
case 'F':
if (strcmp(&(json_string->getData()[1]), "lightNumber") == 0)
{
the_enum = Value_FlightNumber;
goto enum_is_done;
}
break;
case 'N':
if (strcmp(&(json_string->getData()[1]), "othing") == 0)
{
the_enum = Value_Nothing;
goto enum_is_done;
}
break;
default:
break;
}
throw("The value for field Value of FlightStatusLookupParameterJSON is not one of the legal strings.");
enum_is_done:;
setValue(the_enum);
}
FlightStatusLookupParameterJSON::FlightStatusLookupParameterJSON(void) :
flagHasValue(false)
{
}
FlightStatusLookupParameterJSON::FlightStatusLookupParameterJSON(TypeValue init_value) :
flagHasValue(true),
storeValue(init_value)
{
}
FlightStatusLookupParameterJSON::FlightStatusLookupParameterJSON(const char *init_value) :
flagHasValue(true),
storeValue(stringToValue(init_value))
{
}
FlightStatusLookupParameterJSON::FlightStatusLookupParameterJSON(std::string init_value) :
flagHasValue(true),
storeValue(stringToValue(init_value.c_str()))
{
}
FlightStatusLookupParameterJSON::~FlightStatusLookupParameterJSON(void)
{
}
bool FlightStatusLookupParameterJSON::hasValue(void) const
{
return flagHasValue;
}
FlightStatusLookupParameterJSON::TypeValue FlightStatusLookupParameterJSON::getValue(void)
{
assert(flagHasValue);
return storeValue;
}
const FlightStatusLookupParameterJSON::TypeValue FlightStatusLookupParameterJSON::getValue(void) const
{
assert(flagHasValue);
return storeValue;
}
const char *FlightStatusLookupParameterJSON::getValueAsChars(void) const
{
return stringFromValue(getValue());
}
std::string FlightStatusLookupParameterJSON::getValueAsString(void) const
{
return stringFromValue(getValue());
}
FlightStatusLookupParameterJSON *FlightStatusLookupParameterJSON::from_json(JSONValue *json_value, bool ignore_extras)
{
FlightStatusLookupParameterJSON *result;
{
JSONHoldingGenerator<Generator, RCHandle<FlightStatusLookupParameterJSON>, FlightStatusLookupParameterJSON *, bool> generator("Type FlightStatusLookupParameter", ignore_extras);
json_value->write(&generator);
assert(generator.have_value);
result = generator.value.referenced();
result->add_reference();
};
result->remove_reference_no_delete();
return result;
}
|
888121cd555584e4bb5273edc8c8ff8da56236b2 | fb6484a6641c3731dcb298016218d7e8ea06a0d1 | /Application/congratulation.h | b246ef461912be35c6d7156ccaa48d838c8f49c4 | [] | no_license | shiyinw/red7_gui | 42225bea2f9bbd7b4dbd491f120829ad3c7f514c | 6c53107a3357cc05d438000d65b465085575f027 | refs/heads/master | 2021-06-19T09:51:36.201864 | 2017-07-16T08:55:01 | 2017-07-16T08:55:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 314 | h | congratulation.h | #ifndef CONGRATULATION_H
#define CONGRATULATION_H
#include <QDialog>
namespace Ui {
class congratulation;
}
class congratulation : public QDialog
{
Q_OBJECT
public:
explicit congratulation(QWidget *parent = 0);
~congratulation();
public:
Ui::congratulation *ui;
};
#endif // CONGRATULATION_H
|
90e1cae381409286d2e905b52435d82951b31b08 | 251aaf143dab1a24322cd47416e2a14de76bf773 | /STM32F469_Controller/Source/TouchGFX/TouchGFX/gui/include/gui/common/BMPFileLoader.h | b8472a482b8c7a86bd408125253af49e810040a4 | [
"Zlib"
] | permissive | ftkalcevic/DCC | fddc7de6cc6c2c4b758451c444f7cc0131897224 | b68aebab35423f21e0a6a337c11d967f6f8912a2 | refs/heads/master | 2022-12-10T12:24:52.928864 | 2020-07-30T08:16:46 | 2020-07-30T08:16:46 | 121,176,875 | 0 | 0 | null | 2022-12-08T10:16:01 | 2018-02-11T23:12:08 | C | UTF-8 | C++ | false | false | 466 | h | BMPFileLoader.h | #include <touchgfx/hal/Types.hpp>
#include <touchgfx/Bitmap.hpp>
#ifndef SIMULATOR
#include "fatfs.h"
#endif
using namespace touchgfx;
class BMPFileLoader
{
public:
static void getBMP24Dimensions(FIL *fileHandle, uint16_t& width, uint16_t& height, uint16_t &depth);
static void readBMP24File(Bitmap bitmap, FIL *fileHandle);
private:
static int readFile(FIL *hdl, uint8_t* buffer, uint32_t length);
static void seekFile(FIL *hdl, uint32_t offset);
};
|
d37ff67c7bbd2acdb2d698ee442d019705ce967c | 01fe78b4252c20f43e3838813d830d8ddff2ba4f | /ListaSimples/SNode.h | 5f845d786700c2a63170c854b5963c53ae0803fc | [] | no_license | GabrielCzar/Listas | 1d4171f5cf28b13d660144ed143297a105d4665b | 017ca5184254925b39b6fc8220725ac6e6182574 | refs/heads/master | 2021-01-16T20:37:19.247112 | 2016-08-07T21:18:33 | 2016-08-07T21:18:33 | 65,151,405 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 269 | h | SNode.h | #ifndef SNODE_H
#define SNODE_H
template<class T> //tipo generico
struct SNode{
T value;
SNode * next; //Ponteiro pro prox nó
SNode(T value = 0, SNode * next = nullptr){
this->value = value;
this->next = next;
}
};
#endif // SNODE_H
|
3baaaf48ebfa9806ed075ed44a668807eb1a577e | 5829edf0fadec5b79878f87db05b6222806106d6 | /src/peripherals/sensor/Sensor.cpp | a50cc024735c208cd22d9cfb03cfbb5eee843b41 | [] | no_license | Hadjubuntu/breeze-bb | 3636aa334b630bfa63be81f88e08036366ce6cca | b4a271baad0ccf76c527662cb572dab741bf7965 | refs/heads/master | 2021-04-18T23:14:01.022777 | 2017-04-14T07:06:50 | 2017-04-14T07:06:50 | 56,091,357 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 100 | cpp | Sensor.cpp | /*
* Sensor.cpp
*
* Created on: Nov 10, 2015
* Author: adrien-i3
*/
#include "Sensor.h"
|
37c97b7926772956afa309fd9fc8b894414ef539 | 3b37295cd108961c512db0d54cbeaf32e30c81c1 | /physics3d.cpp | 969fb6ef668a78247370eb5d01ecd494baef1748 | [] | no_license | Nuos/renderer | b85ac6ebf0eec7fe6206af226644f784cd398c31 | a8e0ba889c53cd4c11496230e2f8cc22e7f69093 | refs/heads/master | 2021-01-21T16:38:32.118725 | 2014-01-17T00:31:55 | 2014-01-17T00:31:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,234 | cpp | physics3d.cpp | /*
* Adam Bysice - 0753709
* File: mathlib2d.cpp
* --------------------
* This file contains the implementation
* for the mathlib2D classes.
*/
#include <math.h>
#include "mathlib3d.h"
//using references from Thomas Smid's implementation of collision in c++
void collision3D(point3D p1, point3D p2, vec3D& v1, vec3D& v2) {
float pi,r12,m21,d,v,theta2,phi2,st,ct,sp,cp,vx1r,vy1r,vz1r,fvz1r,
thetav,phiv,dr,alpha,beta,sbeta,cbeta,dc,sqs,t,a,dvz2,
vx2r,vy2r,vz2r,x21,y21,z21,vx21,vy21,vz21,vx_cm,vy_cm,vz_cm;
float R = 1;
float m1 =1;
float m2 =1;
float r1 =0.05f;
float r2 =0.05f;
int error = 0;
// initialize some variables
pi=acos(-1.0E0);
r12=r1+r2;
m21=m2/m1;
// positions
x21=p2.x-p1.x;
y21=p2.x-p1.y;
z21=p2.x-p1.z;
// vectors
vx21=v2.x-v1.x;
vy21=v2.y-v1.y;
vz21=v2.z-v1.z;
vx_cm = (m1*v1.x+m2*v2.x)/(m1+m2) ;
vy_cm = (m1*v1.y+m2*v2.y)/(m1+m2) ;
vz_cm = (m1*v1.z+m2*v2.z)/(m1+m2) ;
// calculate relative distance and relative speed
d=sqrt(x21*x21 +y21*y21 +z21*z21);
v=sqrt(vx21*vx21 +vy21*vy21 +vz21*vz21);
//shift coordinate system so that ball 1 is at the origin
p2.x=x21;
p2.y=y21;
p2.z=z21;
// boost coordinate system so that ball 2 is resting
v1.x=-vx21;
v1.y=-vy21;
v1.z=-vz21;
//find the polar coordinates of the location of ball 2
theta2=acos(p2.z/d);
if (p2.x==0 && p2.y==0) {phi2=0;} else {phi2=atan2(p2.y,p1.x);}
st=sin(theta2);
ct=cos(theta2);
sp=sin(phi2);
cp=cos(phi2);
//express the velocity vector of ball 1 in a rotated coordinate
//system where ball 2 lies on the z-axis
vx1r=ct*cp*v1.x+ct*sp*v1.y-st*v1.z;
vy1r=cp*v1.y-sp*v1.x;
vz1r=st*cp*v1.x+st*sp*v1.y+ct*v1.z;
fvz1r = vz1r/v ;
if (fvz1r>1) {fvz1r=1;} // fix for possible rounding errors
else if (fvz1r<-1) {fvz1r=-1;}
thetav=acos(fvz1r);
if (vx1r==0 && vy1r==0) {phiv=0;} else {phiv=atan2(vy1r,vx1r);}
// calculate the normalized impact parameter
dr=d*sin(thetav)/r12;
//return old positions and velocities if balls do not collide
if (thetav>pi/2 || fabs(dr)>1) {
p2.x=p2.x+p1.x;
p2.y=p2.y+p1.y;
p2.z=p2.z+p1.z;
v1.x=v1.x+v2.x;
v1.y=v1.y+v2.y;
v1.z=v1.z+v2.z;
error=1;
return;
}
//calculate impact angles if balls do collide
alpha=asin(-dr);
beta=phiv;
sbeta=sin(beta);
cbeta=cos(beta);
// calculate time to collision
t=(d*cos(thetav) -r12*sqrt(1-dr*dr))/v;
// update positions and reverse the coordinate shift
p2.x=p2.x+v2.x*t +p1.x;
p2.y=p2.y+v2.y*t +p1.y;
p2.z=p2.z+v2.z*t +p1.z;
p1.x=(v1.x+v2.x)*t +p1.x;
p1.y=(v1.y+v2.y)*t +p1.y;
p1.z=(v1.z+v2.z)*t +p1.z;
// update velocities
a=tan(thetav+alpha);
dvz2=2*(vz1r+a*(cbeta*vx1r+sbeta*vy1r))/((1+a*a)*(1+m21));
vz2r=dvz2;
vx2r=a*cbeta*dvz2;
vy2r=a*sbeta*dvz2;
vz1r=vz1r-m21*vz2r;
vx1r=vx1r-m21*vx2r;
vy1r=vy1r-m21*vy2r;
// rotate the velocity vectors back and add the initial velocity
// vector of ball 2 to retrieve the original coordinate system
v1.x=ct*cp*vx1r-sp*vy1r+st*cp*vz1r +v2.x;
v1.y=ct*sp*vx1r+cp*vy1r+st*sp*vz1r +v2.y;
v1.z=ct*vz1r-st*vx1r +v2.z;
v2.x=ct*cp*vx2r-sp*vy2r+st*cp*vz2r +v2.x;
v2.y=ct*sp*vx2r+cp*vy2r+st*sp*vz2r +v2.y;
v2.z=ct*vz2r-st*vx2r +v2.z;
// velocity correction for inelastic collisions
v1.x=(v1.x-vx_cm)*R + vx_cm;
v1.y=(v1.y-vy_cm)*R + vy_cm;
v1.z=(v1.z-vz_cm)*R + vz_cm;
v2.x=(v2.x-vx_cm)*R + vx_cm;
v2.y=(v2.y-vy_cm)*R + vy_cm;
v2.z=(v2.z-vz_cm)*R + vz_cm;
return;
}
/*
void collision2D (point2D p1, point2D p2, vec2D *v1, vec2D *v2) {
double m21, dvx2, a, x21, y21, vx21, vy21, fy21, sign, vx_cm, vy_cm, R;
//elasticity constant testing use only
R = 1;
m21=(1);
x21=p2.getX()-p1.getY();
y21=p2.getY()-p1.getY();
vx21=v2->getX()-v1->getX();
vy21=v2->getY()-v1->getY();
vx_cm = (1*v1->getX()+1*v2->getX())/(1+1);
vy_cm = (1*v1->getY()+1*v2->getY())/(1+1);
//return old velocities if not approaching
if ( (vx21*x21 + vy21*y21) >= 0) return;
//the following statements to avoid a zero divide;
fy21 = 1.0E-12*fabs(y21);
if ( fabs(x21) < fy21 ) {
if (x21 < 0) {
sign = -1;
}
else {
sign = 1;
}
x21 = fy21*sign;
}
//update velocities
a = y21/x21;
dvx2 = -2*(vx21 +a*vy21)/((1+a*a)*(1+m21)) ;
v2->setX(v2->getX()+dvx2);
v2->setY(v2->getY()+a*dvx2);
v1->setX(v1->getX()-m21*dvx2);
v1->setY(v1->getY()-a*m21*dvx2);
//velocity correction for inelastic collisions
//Still being tested
v1->setX((v1->getX()-vx_cm)*R + vx_cm);
v1->setY((v1->getY()-vy_cm)*R + vy_cm);
v2->setX((v2->getX()-vx_cm)*R + vx_cm);
v2->setY((v2->getY()-vy_cm)*R + vy_cm);
}
*/
//returns greater psize
float greater (float s1, float s2) {
if (s1 > s2)
return s1;
else
return s2;
}
|
449f763194e3568cd1a0d72c3bc8092416376b8d | ad8271700e52ec93bc62a6fa3ee52ef080e320f2 | /CatalystRichPresence/CatalystSDK/PersistenceData.h | 0f03677f5dc77cd0e675ee26548299bc8e09620b | [] | no_license | RubberDuckShobe/CatalystRPC | 6b0cd4482d514a8be3b992b55ec143273b3ada7b | 92d0e2723e600d03c33f9f027c3980d0f087c6bf | refs/heads/master | 2022-07-29T20:50:50.640653 | 2021-03-25T06:21:35 | 2021-03-25T06:21:35 | 351,097,185 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,025 | h | PersistenceData.h | //
// Generated with FrostbiteGen by Chod
// File: SDK\PersistenceData.h
// Created: Wed Mar 10 19:03:13 2021
//
#ifndef FBGEN_PersistenceData_H
#define FBGEN_PersistenceData_H
#include "PersistenceStatGroup.h"
#include "PersistenceRetentionPolicy.h"
#include "Array.h"
#include "AbstractPersistenceData.h"
class PersistenceData :
public AbstractPersistenceData // size = 0x18
{
public:
static void* GetTypeInfo()
{
return (void*)0x0000000142809D10;
}
const char* m_PersistenceName; // 0x18
Array<PersistentValueTemplateData> m_Values; // 0x20
PersistenceStatGroup* m_ServerDefaultGroup; // 0x28
PersistenceStatGroup* m_ClientDefaultGroup; // 0x30
PersistenceRetentionPolicy* m_RetentionPolicy; // 0x38
Array<PersistenceConsumableMapping> m_ConsumableMappings; // 0x40
bool m_DeltaGameReports; // 0x48
bool m_HistoryDaily; // 0x49
bool m_HistoryWeekly; // 0x4a
bool m_HistoryMonthly; // 0x4b
bool m_OutputProperties; // 0x4c
unsigned char _0x4d[0x3];
}; // size = 0x50
#endif // FBGEN_PersistenceData_H
|
b098d5b406b910d210ffcc795cc85b86d6663854 | 5d34d3cb173fa5e6c7d825b7066660fe6a95d133 | /bessel/hankel.h | 50398e2a353b6568d75010960ef2377d578136fd | [] | no_license | stefano-camarda/DYTurbo | 58ebaaff75ea07fb87c60d46066abad7e05b12ee | 594373ab9705c55988fb8b305c8bd67ea3dbf843 | refs/heads/master | 2021-06-26T02:43:24.590922 | 2021-03-09T00:42:37 | 2021-03-09T00:42:37 | 208,061,119 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 778 | h | hankel.h | #ifndef hankel_h
#define hankel_h
namespace hankel
{
extern int nu;
extern int n;
extern double h;
extern double *zeros;
extern double *w;
extern double *x;
extern double *j;
extern double *dp;
extern double *series;
extern int x_power;
extern int k_power;
extern void init(int Nu, int N, double H=0.1);
extern void roots();
extern double psi(double t);
extern double dpsi(double t);
extern void fillx();
extern double jn(double x);
extern void fillj();
extern void filldpsi();
extern double jn1(double x);
extern double yn(double x);
extern void weight();
extern void get_series(double (*f)(double), double k);
extern void transform(double (*f)(double), double k, double &res, double &err);
extern void free();
}
#endif
|
74ea6289a29def39a31a88b0958b95e3bd56dfdd | 49c7cfb236e0623579fcbd736e2b04fa7aa13b5c | /classify.cc | 52e6236228fd28f79cb924452b998d46652af9aa | [] | no_license | dmtrkzkv/vision | 7d14aab2f04c0192fed24f7a880c5489e37014e3 | 0d4d6ac7850acb5b80dbe4393e78893f13f9bebd | refs/heads/master | 2021-01-10T13:00:53.268604 | 2015-09-24T16:28:38 | 2015-09-24T16:28:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,586 | cc | classify.cc | /*
* classify.cc
*
* Created on: Nov 10, 2014
* Author: ppsadm01
*/
using namespace std;
#include <card.h>
#include <vector>
#include <imageio.h>
#include <classify.h>
#include <dataCard.h>
#include <iterator>
#include <iostream>
#include <dirent.h>
#include <string.h>
classify::classify(vector <dataCard> data) {
database = data;
cout << "Classifier created." << endl;
}
int classify::numBlackTotal (bitmap bmp) {
int numBlackTotal = 0;
for (int i = 0; i < bmp.getHeigth(); i++) {
for (int j = 0; j < bmp.getWidth(); j++) {
if (bmp.map[i][j].r == 0)
numBlackTotal++;
}
}
return numBlackTotal;
}
/*
* TODO
* Consider situations with draws between classes of the nearest neighbors: either initialize kNN
* with a proper value or implement oneMoreNeighbor method
*
*/
int classify::numMatchingBlack (card query, dataCard dataImage) {
int numMatchingBlack = 0;
int startQueryX = query.topLeft.X();
//cout << "startQueryX: " << startQueryX;
int startQueryY = query.topLeft.Y();
//cout << " startQueryY: " << startQueryY << endl;
int endQueryX = query.bottomRight.X();
//cout << "endQueryX: " << endQueryX;
int endQueryY = query.bottomRight.Y();
//cout << " endQueryY: " << endQueryY << endl;
int startDataImageX = dataImage.topLeft.X();
//cout << "startDataImageX: " << startDataImageX;
int startDataImageY = dataImage.topLeft.Y();
//cout << " startDataImageY: " << startDataImageY << endl;
int endDataImageX = dataImage.bottomRight.X();
//cout << "endDataImageX: " << endDataImageX;
int endDataImageY = dataImage.bottomRight.Y();
//cout << " endDataImageY: " << endDataImageY << endl;
int qx = startQueryX;
int qy = startQueryY;
int checkedPixels = 0;
for (int x = startDataImageX; x <= endDataImageX; x++) {
for (int y = startDataImageY; y <= endDataImageY; y++) {
if (qy > endQueryY) break;
checkedPixels++;
if (dataImage.image.map[x][y].r == query.processed.map[qx][qy].r) {
numMatchingBlack++;
dataImage.image.map[x][y].g = 255; // mark matching pixels with green for later visual analysis
dataImage.image.map[x][y].r = 0;
dataImage.image.map[x][y].b = 0;
}
//cout << "x: " << x << " y: " << y << endl << "qx: " << qx << " qy: " << qy << endl;
qy++;
}
qy = startQueryY;
qx++;
if (qx > endQueryX) break;
}
loadImage("/scratch_net/biwidl104/pps_inderst_kazakov/data/compared/", dataImage); // save compared image (green pixels show, which match)
query.processed.write("/scratch_net/biwidl104/pps_inderst_kazakov/data/compared/query");
//cout << dataImage.getClass() << ": " << numMatchingBlack << endl;
return checkedPixels - numMatchingBlack;
}
/*
* Saves bitmap into directory
*/
void classify::loadImage(string dirName, dataCard dataImage) {
string filename = dataImage.name.substr(57, 8);
dirName += filename;
dataImage.image.write(dirName.c_str());
}
double classify::computeDistance (card query, dataCard neighbor) {
//int distance = totalPixels - numMatchingBlack(query, neighbor);
//int distance = (query.numBlackTotal + neighbor.numOfBlackPixels) / numMatchingBlack (query, neighbor);
int distance = numMatchingBlack(query, neighbor);
neighbor.setDistance(distance);
return distance;
}
/*
* Inserting new neighbor in the neighbors container in increasing order
*/
void classify::insertNeighbor (dataCard neighbor) {
if (neighbors.empty()) {
neighbors.push_front(neighbor);
return;
}
list<dataCard>::iterator it;
for (it = neighbors.begin(); it != neighbors.end(); it++) {
if (neighbor.getDistance() >= (*it).getDistance()) continue;
neighbors.insert(it, neighbor);
break;
}
}
/*
* Determine the most common class among kNN nearest neighbors from the neighbors container
*/
char classify::getClassQuery(card query) {
// loading all neighbors to the list
for (int i = 0; i < database.size(); i++) {
dataCard neighbor = database[i];
neighbor.setDistance(computeDistance(query, neighbor));
insertNeighbor(neighbor);
}
int total[13]; // array for counting number of cards of each class
for (int i = 0; i < 13; i++) {
total[i] = 0;
}
list<dataCard>::iterator it = neighbors.begin();
/*for (int i=0; i<5; i++) {
cout << (*it).name << endl;
it++;
}*/
/*for (it = neighbors.begin(); it != neighbors.end(); it++) {
cout << (*it).name << endl;
}*/
bool draw = true;
int kIndex = kNN;
int index;
it = neighbors.begin();
while(draw) {
for (int i = 0; i < kIndex; i++) {
char c = (*it).getClass();
//cout << "Neighbor " << i << " is " << (*it).name << endl;
switch (c)
{
case '2': total[0]++; break;
case '3': total[1]++; break;
case '4': total[2]++; break;
case '5': total[3]++; break;
case '6': total[4]++; break;
case '7': total[5]++; break;
case '8': total[6]++; break;
case '9': total[7]++; break;
case '1': total[8]++; break;
case 'j': total[9]++; break;
case 'q': total[10]++; break;
case 'k': total[11]++; break;
case 'a': total[12]++; break;
}
it++;
}
// print out the kNN neighbors counts
for (int i = 0; i < 13; i++) {
cout << total[i] << " ";
}
int max = INT_MIN;
for (int i = 0; i < 13; i++) {
if (total[i] == max) {
draw = true;
}
else if (total[i] > max) {
max = total[i];
index = i;
draw = false;
}
}
if(draw) {
kIndex=1;
cout << " draw " << endl;
}
if (it == neighbors.end()) {
cout << "The card was not recognized! Shit happens...all the time" << endl;
return 0;
}
}
char Class = classes[index];
neighbors.clear();
return Class;
}
|
dd076ed8421d3dae842b23252a53548dd56abdb9 | b985d734c6499324d4ba256d535d1365a94b4d14 | /wc_rt1/conf.h | dd8e5f9ef467a44daf1e011224d478ed75d206b4 | [] | no_license | pilnikov/WeatherStation | c5c04a92e7b9e3998b4d0dd342a4bf1b98471184 | c17e0185621de8db92877d909088c27dee04dfb0 | refs/heads/master | 2023-02-24T12:44:58.210478 | 2023-02-22T08:13:18 | 2023-02-22T08:13:18 | 141,115,107 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,495 | h | conf.h | /*
********************************************************** Sensor
struct snr_data_t
{
int8_t t1 = 99; //Температура. Канал 1
uint8_t h1 = 0; //Влажность. Канал 1
int8_t t2 = 99; //Температура. Канал 2
uint8_t h2 = 0; //Влажность. Канал 2
int8_t t3 = 99; //Температура. Канал 3
uint8_t h3 = 0; //Влажность. Канал 3
uint16_t p = 0; //Давление
uint16_t ft = 0; //Освещенность
};
********************************************************** Prognoz
struct wf_data_t
{
uint8_t tod = 0; // время суток, для которого составлен прогноз: 0 - ночь 1 - утро, 2 - день, 3 - вечер
uint8_t cloud = 0; // облачность по градациям: 0 - ясно, 1- малооблачно, 2 - облачно, 3 - пасмурно
uint8_t prec = 10; // тип осадков: 4 - дождь, 5 - ливень, 6,7 – снег, 8 - гроза, 9 - нет данных, 10 - без осадков
bool rpower = 0; // интенсивность осадков, если они есть. 0 - возможен дождь/снег, 1 - дождь/снег
bool spower = 0; // вероятность грозы, если прогнозируется: 0 - возможна гроза, 1 - гроза
uint16_t press_max = 900; // атмосферное давление, в мм.рт.ст.
uint16_t press_min = 0; //
int8_t temp_max = 99; // температура воздуха, в градусах Цельсия
int8_t temp_min = -99; //
uint8_t wind_max = 99; // приземный ветер min, max минимальное и максимальное значения средней скорости ветра, без порывов
uint8_t wind_min = 0; //
uint16_t wind_dir = 0; // направление ветра в румбах, 0 - северный, 1 - северо-восточный, и т.д.
uint8_t hum_max = 99; // относительная влажность воздуха, в %
uint8_t hum_min = 0; //
int8_t heat_max = 99; // комфорт - температура воздуха по ощущению одетого по сезону человека, выходящего на улицу
int8_t heat_min = -99; //
String descript = "additional info"; // дополнительное описание состояния погоды
};
********************************************************** Config
typedef struct
{
uint8_t boot_mode = 0; // 0 - minimal; 1 - test; 2 - normal
bool
auto_br = false,
auto_corr = false,
use_pm = false,
every_hour_beep = false,
snd_pola = false,
led_pola = false,
rus_lng = false,
wifi_off = false,
udp_mon = false,
news_en = false;
unsigned long
period = 10,
pp_city_id = 0,
ts_ch_id = 0;
uint16_t
br_level[4] = {0, 0, 0, 0};
uint8_t
use_pp = 0,
use_ts = 0,
use_es = 0,
man_br = 0,
nmd_br = 0,
nm_start = 0,
nm_stop = 0,
alarms[7][5],
type_font = 0,
type_vdrv = 0,
type_disp = 0,
type_snr1 = 0,
type_snr2 = 0,
type_snr3 = 0,
type_snrp = 0,
type_rtc = 0,
type_thermo = 0,
src_thermo = 0,
gpio_sda = 255,
gpio_scl = 255,
gpio_dio = 255,
gpio_clk = 255,
gpio_dcs = 255,
gpio_dwr = 255,
gpio_trm = 255,
gpio_sqw = 255,
gpio_snd = 255,
gpio_led = 255,
gpio_btn = 255,
gpio_dht = 255,
gpio_ana = 255,
gpio_uar = 255,
int8_t
time_zone;
int
lb_thermo,
hb_thermo;
char
ch1_name[17],
ch2_name[17],
ch3_name[17],
sta_ssid[20],
sta_pass[20],
ap_ssid[20],
ap_pass[20],
AKey_r[17],
AKey_w[17],
esrv1_addr[17],
esrv2_addr[17],
radio_addr[17],
srudp_addr[17],
owm_key[33],
news_api_key[33], // Get your News API Key from https://newsapi.org
news_source[17]; // https://newsapi.org/sources to get full list of news sources available
} conf_data_t;
********************************************************** Actual config
struct hw_data_t
{
uint8_t type_vdrv; // Тип микросхемы драйвера дисплея 0 - Нет, 1 - TM1637, 2 - MAX7219, 3 - 74HC595, 4 - HT1621, 5 - HT1632, 6 - ILI9341, 11 - HT16K33, 12 - PCF8574
uint8_t type_disp; // Тип дисплея 0 - Внешний, 1 - 7SEGx4D, 2 - 7SEGx6D, 3 - 7SEGx8D, 10 - 14SEGx4D, 11 - 14SEGx8D, 12 - 16SEGx4D, 13 - 16SEGx8D, 19 - 2Linex16D, 20 - M32x8Mono, 21 - M32x16Mono, 22 - M32x16BiColor, 23 - M32x16Color, 24 - M64x32Color, 25 - M64x64Color, 29 - 320x240Color, 30 - Custom_1, 31 - Custom_2
uint8_t type_snr1; // Тип датчика канал 1: 0 - Нет, 1 - Взять с TC, 2 - Взять с ES1, 2 - Взять с ES2, 4 - DHT22, 5 - DS3231, 6 - SI7021, 7 - AM2320, 8 - BMP180, 9 - BMP280, 10 - BME280, 11 - Взять из прогноза
uint8_t type_snr2; // Тип датчика канал 2: 0 - Нет, 1 - Взять с TC, 2 - Взять с ES1, 2 - Взять с ES2, 4 - DHT22, 5 - DS3231, 6 - SI7021, 7 - AM2320, 8 - BMP180, 9 - BMP280, 10 - BME280, 11 - Взять из прогноза
uint8_t type_snr3; // Тип датчика канал 3: 0 - Нет, 1 - Взять с TC, 2 - Взять с ES1, 2 - Взять с ES2, 4 - DHT22, 5 - DS3231, 6 - SI7021, 7 - AM2320, 8 - BMP180, 9 - BMP280, 10 - BME280, 11 - Взять из прогноза
uint8_t type_snrp; // Тип датчика давления 0 - Нет, 1 - Взять с TC, 2 - Взять с ES1, 3 - Взять с ES2, 8 - BMP180, 9 - BMP280, 10 - BME280, 11 - Взять из прогноза
uint8_t type_rtc; // Тип RTC 0 - Нет, 1 - DS3231, 2 - DS1302, 3 - DS1307
uint8_t temp_rtc; // Температура чипа DS3231,
uint8_t lcd_addr; // Адрес LCD дисплея
uint8_t ht_addr; // Адрес HT1633
uint8_t bm_addr; // Адрес BM E/P 1/2 80
uint16_t lb; // Текущая яркость
bool bh1750_present; // Наличие датчика освещенности BH1750
};
********************************************************* Rtc
struct rtc_data_t
{
long ct = 1530687234; // Текущее время (UNIX format)
uint8_t hour = 62; // Текущее время. Час.
uint8_t min = 62; // Текущее время. Минута.
uint8_t sec = 62; // Текущее время. Секунда.
uint8_t day = 32; // Текущее время. День.
uint8_t wday = 9; // Текущее время. День недели.
uint8_t month = 13; // Текущее время. Месяц.
uint16_t year = 2030; // Текущее время. Год.
uint8_t a_num = 0; // Номер будильника
uint8_t n_cur_alm = 6; // Номер активного будильника
uint8_t a_hour = 62; // Час срабатывания будильника
uint8_t a_min = 62; // Минута срабатывания будильника
uint8_t a_muz = 0; // Номер мелодии будильника
bool alarm = false; // Будильник ????
bool alarm_on = false; // Будильник активен
bool wasAlarm = false; // Было срабатывание будильника
};
*/
#ifndef conf_h
#define conf_h
#define FW_Ver 2.0 //05.03.22 structure modified
// ------------------------------------------------------------- Include
#if ARDUINO >= 100
#include <Arduino.h>
#else
#include <WProgram.h>
#endif
#include <Udt.h>
#include <myrtc.h>
#include <Sysfn.h>
#include <Snd.h>
#include <Snr.h>
#include <Fdisp.h>
#include <Fdsp.h>
#include <BH1750.h>
#if defined(ESP8266)
#include <hw.h>
#endif
#if defined(BOARD_RTL8710) || defined(BOARD_RTL8195A) || defined(BOARD_RTL8711AM)
#include <Netwf_rt.h>
#endif
#if defined(ESP8266)
#include <ESP8266WebServer.h>
#elif CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32C3
#include <WebServer.h>
#endif
#if defined(__xtensa__) || CONFIG_IDF_TARGET_ESP32C3
#include <My_LFS.h>
#include <my_wifi.h>
#include <Netwf.h>
#include <FS.h>
#include <WiFiUdp.h>
#include <LittleFS.h>
#include <ntp.h>
#include <Exts.h>
#include <udp_cons.h>
#endif
#if defined(ESP8266)
#include <ESP8266mDNS.h>
#include <ESP8266SSDP.h>
#elif CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32C3
#include <ESPmDNS.h>
#include <ESP32SSDP.h>
#endif
#if defined(ESP8266)
#include <ESP8266HTTPUpdateServer.h>
#elif CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32C3
#include <HTTPUpdateServer.h>
#endif
// ----------------------------------- Force define func name
void sensor_init(snr_cfg_t*);
snr_data_t GetSnr(snr_data_t, snr_cfg_t, conf_data_t, uint8_t, bool, wf_data_t);
String uart_st(snr_data_t, wf_data_t, conf_data_t, rtc_time_data_t, rtc_alm_data_t, uint8_t);
void send_uart(snr_data_t, wf_data_t, conf_data_t, rtc_time_data_t, rtc_alm_data_t, uint8_t);
void keyb_read(bool, bool, byte, uint8_t&, uint8_t&, byte, byte, byte, bool, bool, uint32_t&, conf_data_t*, bool&);
inline uint8_t rumb_conv(uint16_t);
String remove_sb(String);
String lastday(String);
void Thermo(snr_data_t, conf_data_t);
void wasAlm_reset();
void alarm1_action(bool, uint8_t, uint8_t&, uint8_t, rtc_cfg_data_t*, uint8_t, bool&, byte,
bool&, bool&, byte*, char*);
String radio_snd(String, bool, char*);
#if defined(__xtensa__) || CONFIG_IDF_TARGET_ESP32C3
String gs_rcv(unsigned long, bool);
String es_rcv(char*, bool);
String ts_rcv(unsigned long, char*, bool);
String ts_snd(String, bool);
void put_to_es(char*, uint8_t, snr_data_t, bool);
wf_data_t getOWM_forecast(unsigned long, char*);
wf_data_t getOWM_current(unsigned long, char*);
#endif
void hw_accept(hw_data_t, snr_cfg_t*, uint8_t*, uint8_t*);
#if defined(ESP8266)
void IRAM_ATTR isr1();
void IRAM_ATTR isr2();
#elif defined(__AVR__)
void ISR_ATTR isr1();
void ISR_ATTR isr2();
#elif CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32C3
void ARDUINO_ISR_ATTR isr1();
#endif
#if defined(ESP8266)
void IRAM_ATTR isr0();
#elif defined(__AVR__)
void ISR_ATTR isr0();
#elif CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32C3
void ISR_ATTR isr0();
#endif
//-------------------------------------------------------------------------------------
class MAINJS
{
public:
String
to_json(conf_data_t);
conf_data_t
from_json(String),
def_conf();
private:
protected:
};
//---------------------------------------------------------------------------------------
void web_setup();
void start_serv();
void stop_serv();
void handleNTP();
void handleSetTime();
void handleSetPart();
void handleSetWiFi();
void handleSetIp1();
void handleSetIp2();
void handleEndSetWiFi();
void handleExit();
# ifdef MATRIX
void handleSetFont();
# endif //MATRIX
void handleSetPard();
void handleUpdSnr();
void handleUpdForeCast();
void handleSetPars1();
void handleSetPars2();
void handleSetPars3();
void handleRcvSnr();
void handleSetParc();
void handleSetPartrm();
void handleSetNews();
void handleUpdNews();
void handlejActT();
void handlejActA();
void handlejTime();
void handlejWiFi();
void handlejParc();
void handlejActB();
void handlejPard();
void handlejPars();
void handlejTS();
void handlejSnr();
void handlejUart();
void handlejTrm();
void handlejNews();
void handlejNewsT();
String getContentType(String filename);
bool handleFileRead(String path);
void handleFileUpload();
void handleFileDelete();
void handleFileCreate();
void handleFileList();
// ---------------------------------------------------- Variant of config
#define _dacha
//#define _work
#endif /*conf_h*/
|
b0f0231a0535fc127ffa7f416f3265c3096cabeb | 0a6f6adca840752fba35eb647b362fed93bc8a85 | /include/se2lam/Track.h | 9e28140146a70f73547ad7ecc6bc4c204548d812 | [
"MIT"
] | permissive | FaiScofield/se2lam | f87cddaeb541b079a86a46bb13bbeca845888d9f | 8a4ed0a4df666f53f22679d3042eb7b4c02068d5 | refs/heads/master | 2021-06-20T01:22:34.435862 | 2021-06-12T02:36:37 | 2021-06-12T02:36:37 | 195,356,644 | 0 | 0 | MIT | 2019-10-28T08:47:18 | 2019-07-05T07:03:31 | C++ | UTF-8 | C++ | false | false | 2,868 | h | Track.h | /**
* This file is part of se2lam
*
* Copyright (C) Fan ZHENG (github.com/izhengfan), Hengbo TANG (github.com/hbtang)
*/
#ifndef TRACK_H
#define TRACK_H
#include "Config.h"
#include "Frame.h"
#include "ORBmatcher.h"
#include "Sensors.h"
#include <g2o/types/sba/types_six_dof_expmap.h>
namespace se2lam
{
class KeyFrame;
class Map;
class LocalMapper;
class GlobalMapper;
class MapPublish;
typedef std::shared_ptr<KeyFrame> PtrKeyFrame;
class Track
{
public:
Track();
~Track();
void Run();
void setMap(Map* pMap) { mpMap = pMap; }
void setLocalMapper(LocalMapper* pLocalMapper) { mpLocalMapper = pLocalMapper; }
void setGlobalMapper(GlobalMapper* pGlobalMapper) { mpGlobalMapper = pGlobalMapper; }
void setSensors(Sensors* pSensors) { mpSensors = pSensors; }
void setMapPublisher(MapPublish* pMapPublisher) { mpMapPublisher = pMapPublisher; }
void RequestFinish();
bool IsFinished();
static void calcOdoConstraintCam(const Se2& dOdo, cv::Mat& cTc, g2o::Matrix6d& Info_se3);
static void calcSE3toXYZInfo(cv::Point3f xyz1, const cv::Mat& Tcw1, const cv::Mat& Tcw2,
Eigen::Matrix3d& info1, Eigen::Matrix3d& info2);
static bool mbUseOdometry;
bool mbNeedVisualization;
// int nMinFrames;
// int nMaxFrames;
// double trackTimeTatal = 0.;
private:
void CheckReady();
void ProcessFirstFrame(const cv::Mat& img, const Se2& odo);
void TrackReferenceKF(const cv::Mat& img, const Se2& odo);
void UpdateFramePose();
int RemoveOutliers(const std::vector<cv::KeyPoint>& kp1, const std::vector<cv::KeyPoint>& kp2,
std::vector<int>& matches);
int DoTriangulate();
bool NeedNewKF();
void ResetLocalTrack();
void CopyForPub();
std::mutex mMutexForPub;
bool CheckFinish();
void SetFinish();
bool mbFinishRequested;
bool mbFinished;
std::mutex mMutexFinish;
private:
Map* mpMap;
Sensors* mpSensors;
LocalMapper* mpLocalMapper;
GlobalMapper* mpGlobalMapper;
MapPublish* mpMapPublisher;
ORBextractor* mpORBextractor; // 这里有new
ORBmatcher* mpORBmatcher;
std::vector<int> mvKPMatchIdx, mvKPMatchIdxGood;
std::vector<cv::Point3f> mLocalMPs;
int mnGoodPrl; // count number of mLocalMPs with good parallax
std::vector<bool> mvbGoodPrl;
Frame mCurrentFrame, mLastFrame;
PtrKeyFrame mpReferenceKF, mpLoopKF;
std::vector<cv::Point2f> mPrevMatched;
int mnKPMatches, mnKPMatchesGood, mnKPsInline;
int mnMPsTracked, mnMPsNewAdded, mnMPsInline;
int mnLessMatchFrames, mnLostFrames;
// New KeyFrame rules (according to fps)
int nMinFrames, nMaxFrames, nMinMatches;
float mMaxAngle, mMinDistance;
cv::Mat mAffineMatrix;
PreSE2 preSE2;
Se2 lastOdom;
};
} // namespace se2lam
#endif // TRACK_H
|
7b556690cd100a07771241b07665cbd3a4fb5622 | b335c0baf2396ecc58689dbc72b0bfec9aaef5ec | /include/color_stream_window.h | 797b038cc9d7ec6e44f2cda36f9723c84feef71d | [
"MIT"
] | permissive | hyu1834/Intel-RealSense-R200-Point-Cloud-Capture | 5340761984097ec73197f4be0486e53d306e3904 | 166a635a601a34c5b7d396f1263cce0ac5fd7d93 | refs/heads/master | 2021-01-25T07:54:36.934010 | 2017-06-09T09:45:46 | 2017-06-09T09:45:46 | 93,681,076 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 535 | h | color_stream_window.h | #ifndef COLORSTREAM_H
#define COLORSTREAM_H
/*
* Standard Libraries
*/
/*
* 3rd Party Libraries
*/
//QT
#include <QWidget>
#include <QImage>
//OpenCV
#include <opencv2/opencv.hpp>
#include <opencv2/highgui.hpp>
/*
* Local Libraries
*/
/*
ENUM
*/
/*
MACRO
*/
namespace Ui {
class colorStream;
}
class colorStream : public QWidget
{
Q_OBJECT
public:
explicit colorStream(QWidget *parent = 0);
~colorStream();
void setImage(cv::Mat img);
private:
Ui::colorStream *ui;
};
#endif // COLORSTREAM_H
|
17a8b4b60224ba54425586c417d80038a00dd609 | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/net/dhcp/dhcpprov/inc/lsfn.h | 9f03bd07b86427ef75c8d1fc6a3242b07b4f886a | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,170 | h | lsfn.h | /******************************************************************
LsFn.h -- Properties action functions declarations (GET/SET)
MODULE:
DhcpProv.dll
DESCRIPTION:
Contains the declaration of the CDHCP_Lease_Parameters class, modeling all
the datastructures used to retrieve the information from the DHCP Client.
Contains the declarations for the action functions associated to
each manageable property from the class CDHCP_Server
REVISION:
08/14/98 - created
******************************************************************/
#include "Props.h" // needed for MFN_PROPERTY_ACTION_DECL definition
#ifndef _LSFN_H
#define _LSFN_H
#ifdef NT5
#define LPCLIENT_INFO_ARRAY LPDHCP_CLIENT_INFO_ARRAY_V5
#define LPCLIENT_INFO LPDHCP_CLIENT_INFO_V5
#define CLIENT_INFO DHCP_CLIENT_INFO_V5
#else if NT4
#define LPCLIENT_INFO_ARRAY LPDHCP_CLIENT_INFO_ARRAY_V4
#define LPCLIENT_INFO LPDHCP_CLIENT_INFO_V4
#define CLIENT_INFO DHCP_CLIENT_INFO_V4
#endif
// gathers the data structures needed for retrieving data from the DHCP Lease.
class CDHCP_Lease_Parameters
{
private:
void DeleteClientInfo(LPCLIENT_INFO& pClientInfo);
void DeleteClientInfoArray(LPCLIENT_INFO_ARRAY& pClientInfoArray);
public:
DHCP_IP_ADDRESS m_dwSubnetAddress;
DHCP_IP_ADDRESS m_dwClientAddress;
LPCLIENT_INFO_ARRAY m_pClientInfoArray;
LPCLIENT_INFO m_pClientInfo;
LPCLIENT_INFO m_pClientSetInfo;
CDHCP_Lease_Parameters(DHCP_IP_ADDRESS dwSubnetAddress, DHCP_IP_ADDRESS dwClientAddress);
~CDHCP_Lease_Parameters();
BOOL NextSubnetClients(DHCP_RESUME_HANDLE ResumeHandle);
BOOL GetClientInfoFromCache(LPCLIENT_INFO& pClientInfo);
BOOL GetClientInfo(LPCLIENT_INFO& pClientInfo, BOOL fRefresh);
BOOL CheckExistsSetInfoPtr();
BOOL CommitSet(DWORD & errCode);
};
// GET function for the (RO)"Subnet" property
MFN_PROPERTY_ACTION_DECL(fnLsGetSubnet);
// GET function for the (RO)"Address" property
MFN_PROPERTY_ACTION_DECL(fnLsGetAddress);
// GET function for the (RO) "Mask" property
MFN_PROPERTY_ACTION_DECL(fnLsGetMask);
// GET function for the (RW)"UniqueClientIdentifier" property
MFN_PROPERTY_ACTION_DECL(fnLsGetHdwAddress);
// SET function for the (RW)"UniqueClientIdentifier" property
MFN_PROPERTY_ACTION_DECL(fnLsSetHdwAddress);
// GET function for the (RW)"Name" property
MFN_PROPERTY_ACTION_DECL(fnLsGetName);
// SET function for the (RW)"Name" property
MFN_PROPERTY_ACTION_DECL(fnLsSetName);
// GET function for the (RW)"Comment" property
MFN_PROPERTY_ACTION_DECL(fnLsGetComment);
// SET function for the (RW)"Comment" property
MFN_PROPERTY_ACTION_DECL(fnLsSetComment);
// GET function for the (RO)"LeaseExpiryDate" property
MFN_PROPERTY_ACTION_DECL(fnLsGetExpiry);
// GET function for the (RW)"Type" property
MFN_PROPERTY_ACTION_DECL(fnLsGetType);
// SET function for the (RW)"Type" property
MFN_PROPERTY_ACTION_DECL(fnLsSetType);
#ifdef NT5
// GET function for the (RO)"State" property
MFN_PROPERTY_ACTION_DECL(fnLsGetState);
#endif
#endif
|
f6afb23ea747a6fb4f5f107bd242ab5e71ae5835 | 975cbf5d389edfd4e3d824543737ba7c32f362ea | /EmerCert/OpenSslExecutable.cpp | afde9a357df3c17ace649b4039a4ae2818fc17aa | [
"BSD-2-Clause"
] | permissive | NESS-Network/EmerCert | b63c6d896b010136792d2a142aed026813ed3902 | 994d09d000ae22b8a9bc0af836b28888e8bd6f88 | refs/heads/master | 2023-01-28T16:07:44.125831 | 2020-11-26T13:36:50 | 2020-11-26T13:36:50 | 316,082,402 | 1 | 0 | BSD-2-Clause | 2020-11-26T06:44:47 | 2020-11-26T00:15:44 | null | UTF-8 | C++ | false | false | 9,107 | cpp | OpenSslExecutable.cpp | //OpenSslExecutable.cpp by Emercoin developers
#include "pch.h"
#include "OpenSslExecutable.h"
#include "Settings.h"
#include "CertLogger.h"
QString OpenSslExecutable::s_path;
OpenSslExecutable::OpenSslExecutable() {
setWorkingDirectory(Settings::certDir().absolutePath());
if(s_path.isEmpty())
s_path = defaultPath();
}
QString OpenSslExecutable::defaultPath() {
QString p;
#ifdef Q_OS_WIN
p = "openssl.exe";
#else
p = "openssl";
#endif
p = QDir(QCoreApplication::applicationDirPath()).absoluteFilePath(p);
return p;
}
bool OpenSslExecutable::seemsOk(const QString & path) {
if(!path.contains("openssl", Qt::CaseInsensitive))
return false;
QFileInfo file(path);
return file.exists() && file.isExecutable();
}
struct OpenSslExecutable::SpecifyPathDialog: public QDialog {
QLineEdit* _path = 0;
QLabel* _statusLabel = 0;
QPixmap _pixOk;
QPixmap _pixFailed;
QTimer _timerCheck;//user can download exe so check it periodically
SpecifyPathDialog() {
_pixOk = QPixmap(":/qt-project.org/styles/commonstyle/images/standardbutton-apply-32.png");
_pixFailed = QPixmap(":/qt-project.org/styles/commonstyle/images/stop-24.png");
auto lay = new QFormLayout(this);
auto label = new QLabel(
tr("No OpenSSL executable found, certificate creation will not work.<br/>\n"
"Please download OpenSSL from <a href=\"https://wiki.openssl.org/index.php/Binaries\">www.openssl.org</a>"
" and place it in folder specified below:<br>%1")
.arg(qApp->applicationDirPath()));
label->setOpenExternalLinks(true);
lay->addRow(label);
{
auto lay2 = new QHBoxLayout;
_path = new QLineEdit;
QCompleter *completer = new QCompleter(this);
auto fileSystem = new QDirModel(completer);
fileSystem->setFilter(QDir::AllEntries|QDir::NoDotAndDotDot);
completer->setModel(fileSystem);
_path->setCompleter(completer);
connect(_path, &QLineEdit::textChanged, this, &SpecifyPathDialog::onPathChanged);
connect(&_timerCheck, &QTimer::timeout, this, &SpecifyPathDialog::onPathChanged);
_timerCheck.setInterval(1000);
_timerCheck.start();
lay2->addWidget(_path);
_statusLabel = new QLabel;
lay2->addWidget(_statusLabel);
auto browse = new QPushButton(tr("Browse"));
browse->setIcon(QIcon(":/qt-project.org/styles/commonstyle/images/standardbutton-open-32.png"));
lay2->addWidget(browse);
connect(browse, &QAbstractButton::clicked, this, &SpecifyPathDialog::onBrowse);
lay->addRow(tr("OpenSSL executable:"), lay2);
_path->setText(s_path);
}
{
auto box = new QDialogButtonBox;
lay->addRow(box);
auto ok = box->addButton(QDialogButtonBox::Ok);
auto cancel = box->addButton(QDialogButtonBox::Cancel);
ok->setIcon(QIcon(":/qt-project.org/styles/commonstyle/images/standardbutton-apply-32.png"));
cancel->setIcon(QIcon(":/qt-project.org/styles/commonstyle/images/standardbutton-cancel-32.png"));
connect(ok, &QAbstractButton::clicked, this, &QDialog::accept);
connect(cancel, &QAbstractButton::clicked, this, &QDialog::reject);
}
}
void onBrowse() {
QString s = QFileDialog::getOpenFileName(this, tr("Specify OpenSSL executable"), _path->text()
#ifdef Q_OS_WIN
, tr("Executable (*.exe);;All files (*)")
#endif
);
if(!s.isEmpty())
_path->setText(s);
if(seemsOk(s))
s_path = s;
}
void onPathChanged() {
QString p = _path->text();
bool ok = seemsOk(p);
_statusLabel->setPixmap(ok ? _pixOk : _pixFailed);
QString toolTip;
if(ok) {
toolTip = tr("Found!");
} else {
toolTip = tr("File not found");
if(!p.contains("openssl", Qt::CaseInsensitive))
toolTip = tr("Not openssl file");
else if(!QFile::exists(p))
;//use prev set value
else if(!QFileInfo(p).isExecutable())
toolTip = tr("File is not executable");
}
_statusLabel->setToolTip(toolTip);
}
};
bool OpenSslExecutable::isFoundOrMessageBox() {
if(s_path.isEmpty())
s_path = defaultPath();
if(seemsOk(s_path))
return true;
SpecifyPathDialog dlg;
dlg.exec();
return seemsOk(s_path);
}
QString OpenSslExecutable::errorString()const {
return QProcess::errorString() + '\n' + _strOutput;
}
QString OpenSslExecutable::exec(const QStringList & args) {
if(!QFile::exists(cfgFilePath())) {
//look for *cfg file in this repo
return log(tr("Config file not found: %1") + cfgFilePath());
}
log(tr("Starting openssl ") + args.join(' '));
_strOutput.clear();
if(!QFile::exists(s_path)) {
return log(tr("There is no file %1").arg(QDir::toNativeSeparators(s_path)));
}
start(s_path, args, QIODevice::ReadWrite);
const int maxTimeout = 10000 * 1000;
if(!waitForStarted(maxTimeout)) {
return log(tr("Can't start: %1").arg(error()));
}
if(!_dataToWrite.isEmpty()) {
write(_dataToWrite);
_dataToWrite.clear();
waitForBytesWritten();
closeWriteChannel();
}
if(!waitForFinished(maxTimeout)) {
return log(tr("Failed waiting to finish: %1").arg(error()));
}
readToMe();
if(QProcess::NormalExit != exitStatus()) {
return log(tr("Exit status = %1").arg(exitStatus()));
}
log(tr("Finished"));
return QString();
}
void OpenSslExecutable::readToMe() {
_strOutput += readAllStandardError();
_strOutput += readAllStandardOutput();
}
bool OpenSslExecutable::existsOrExit(const QDir & dir, const QString & file) {
if(dir.exists(file))
return true;
_strOutput += tr("File %1 does not exist").arg(file);
return false;
}
QString OpenSslExecutable::cfgFilePath() {
QDir dir = qApp->applicationDirPath();
QString s = dir.absoluteFilePath("openssl.cfg");
return s;
}
bool OpenSslExecutable::deleteOrExit(QDir & dir, const QString & file, int tries) {
for(int i = 0; i<tries; ++i) {
if(i>0)
QThread::msleep(50);
dir.remove(file);
if(!dir.exists(file))
return true;
}
_strOutput += tr("File %1 can't be removed").arg(file);
return false;
}
bool OpenSslExecutable::generateKeyAndCertificateRequest(const QString & baseName, const QString & subj) {
log(tr("Generate key and certificate request:"));
const QString keyFile = baseName + ".key";
const QString csrFile = baseName + ".csr";
QDir dir = workingDirectory();
if(!deleteOrExit(dir, keyFile))
return false;
if(!deleteOrExit(dir, csrFile))
return false;
QStringList args = QString("req -config $CFG -new -newkey rsa:2048 -nodes -keyout $KEY -subj $SUBJ -out $CSR").split(' ');
args.replaceInStrings("$KEY", keyFile);
args.replaceInStrings("$CSR", csrFile);
args.replaceInStrings("$SUBJ", subj);
args.replaceInStrings("$CFG", cfgFilePath());
if(!exec(args).isEmpty() || exitCode() != 0)
return false;
return existsOrExit(dir, keyFile) && existsOrExit(dir, csrFile);
}
bool OpenSslExecutable::generateCertificate(const QString & baseName, const QString & configDir) {
log(tr("Generate certificate:"));
const QString csrFile = baseName + ".csr";
const QString crtFile = baseName + ".crt";
QDir dir = workingDirectory();
if(!existsOrExit(dir, csrFile))
return false;
if(!deleteOrExit(dir, crtFile))
return false;
QStringList args = QString("ca -config $CA_DIR/ca.config -in $IN -out $OUT -batch").split(' ');
args.replaceInStrings("$CA_DIR", configDir);
args.replaceInStrings("$IN", csrFile);
args.replaceInStrings("$OUT", crtFile);
if(!exec(args).isEmpty() || exitCode() != 0)
return false;
return existsOrExit(dir, crtFile);
}
static const QString passKeyName = "b20bdb78a28343488aace4fc75dd47cf";
bool OpenSslExecutable::createCertificatePair(const QString & baseName, const QString & configDir, const QString & pass) {
log(tr("Create certificate pair:"));
const QString keyFile = baseName + ".key";
const QString crtFile = baseName + ".crt";
const QString p12 = baseName + ".p12";
QDir dir = workingDirectory();
if(!existsOrExit(dir, keyFile))
return false;
if(!existsOrExit(dir, crtFile))
return false;
dir.remove(p12);
//OpenSSL password options: https://www.openssl.org/docs/man1.1.0/apps/openssl.html#Pass-Phrase-Options
QStringList args = QString("pkcs12 -export -in $CRT -inkey $KEY -certfile $CA_DIR/emcssl_ca.crt -out $P12 -passout env:%1")
.arg(passKeyName)
.split(' ');
for(auto & s: args) {
if(s == "$CRT")
s = crtFile;
else if(s == "$KEY")
s = keyFile;
else if(s == "$P12")
s = p12;
else if(s.startsWith("$CA_DIR"))
s.replace("$CA_DIR", configDir);
}
{
auto env = systemEnvironment();
env << passKeyName + "=" + pass;
setEnvironment(env);
}
if(!exec(args).isEmpty())
return false;
if(exitCode() != 0)
return false;
return existsOrExit(dir, p12);
}
QString OpenSslExecutable::log(const QString & s) {
if(_logger) {
_logger->append(s);
}
return s;
}
void OpenSslExecutable::setLogger(CertLogger*l) {
_logger = l;
}
bool OpenSslExecutable::encryptInfocardAes(const QByteArray& data, const QString & outFile, const QString & pass) {
_dataToWrite = data;
QStringList args = QString("enc -aes-256-cbc -salt -out $OUTF -pass env:%1").arg(passKeyName).split(' ');
args.replaceInStrings("$OUTF", outFile);
{
auto env = systemEnvironment();
env << passKeyName + "=" + pass;
setEnvironment(env);
}
if(!exec(args).isEmpty())
return false;
if(exitCode() != 0)
return false;
return true;
} |
ccefedb3717a69591166ce80610588639c3043f8 | 36da767242709b44289a27b7d98aeede7f679182 | /replication/meerkatir/replica.cc | 527f26b14fb317903401caa40c3d0e6125422789 | [] | no_license | aaasz/meerkat | 4cbaad4af5a2182d53b97d25125f920a4a0c0bf3 | 8ae519d51f79711be4845da2417d0137548ae02e | refs/heads/master | 2022-07-01T13:18:25.360744 | 2019-10-23T00:28:13 | 2019-10-23T00:28:13 | 261,566,394 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 8,601 | cc | replica.cc | // -*- mode: c++; c-file-style: "k&r"; c-basic-offset: 4 -*-
/***********************************************************************
*
* replication/ir/replica.cc:
* IR Replica server
*
**********************************************************************/
#include "replication/meerkatir/replica.h"
#include <cstdint>
#include <set>
namespace replication {
namespace meerkatir {
using namespace std;
Replica::Replica(transport::Configuration config, int myIdx,
Transport *transport, AppReplica *app)
: config(std::move(config)), myIdx(myIdx), transport(transport), app(app)
{
if (transport != NULL) {
transport->Register(this, myIdx);
} else {
// we use this for micorbenchmarking, but still issue a warning
Warning("NULL transport provided to the replication layer");
}
}
Replica::~Replica() { }
void Replica::ReceiveRequest(uint8_t reqType, char *reqBuf, char *respBuf) {
size_t respLen;
switch(reqType) {
case unloggedReqType:
HandleUnloggedRequest(reqBuf, respBuf, respLen);
break;
case inconsistentReqType:
HandleInconsistentRequest(reqBuf, respBuf, respLen);
break;
case consensusReqType:
HandleConsensusRequest(reqBuf, respBuf, respLen);
break;
case finalizeConsensusReqType:
HandleFinalizeConsensusRequest(reqBuf, respBuf, respLen);
break;
default:
Warning("Unrecognized rquest type: %d", reqType);
}
// For every request, we need to send a response (because we use eRPC)
if (!(transport->SendResponse(respLen)))
Warning("Failed to send reply message");
}
void Replica::HandleUnloggedRequest(char *reqBuf, char *respBuf, size_t &respLen) {
// ignore requests from the past
app->UnloggedUpcall(reqBuf, respBuf, respLen);
}
void Replica::HandleInconsistentRequest(char *reqBuf, char *respBuf, size_t &respLen) {
auto *req = reinterpret_cast<inconsistent_request_t *>(reqBuf);
Debug("[%lu - %lu] Received inconsistent op nr %lu\n",
req->client_id, req->txn_nr, req->req_nr);
txnid_t txnid = make_pair(req->client_id, req->txn_nr);
// Check record if we've already handled this request
RecordEntry *entry = record.Find(txnid);
TransactionStatus crt_txn_status;
view_t crt_txn_view;
RecordEntryState crt_txn_state;
string crt_txn_result;
if (entry != NULL) {
if (req->req_nr <= entry->req_nr) {
Warning("Client request from the past.");
// If a client request number from the past, ignore it
return;
}
// If we already have this transaction in our record,
// save the txn's current state
crt_txn_view = entry->view;
// TODO: check the view? If request in lower
// view just reply with the new view and new state
crt_txn_status = entry->txn_status;
crt_txn_state = entry->state;
crt_txn_result = entry->result;
} else {
// We've never seen this transaction before,
// save it as tentative, in initial view,
// with initial status
entry = &record.Add(0, txnid, req->req_nr, NOT_PREPARED,
RECORD_STATE_FINALIZED, "");
crt_txn_status = NOT_PREPARED;
crt_txn_view = 0;
}
// Call in the application with the current transaction state;
// the app will decide whether to execute this commit/abort request
// or not; if yes, it will specify the updated transaction status
// and the result to return to the coordinator/client.
app->ExecInconsistentUpcall(txnid, entry, req->commit);
// TODO: we use eRPC and it expects replies in order so we need
// to send replies to all requests
auto *resp = reinterpret_cast<inconsistent_response_t *>(respBuf);
resp->req_nr = req->req_nr;
respLen = sizeof(inconsistent_response_t);
// TODO: for now just trim the log as soon as the transaction was finalized
// this is not safe for a complete checkpoint
record.Remove(txnid);
}
void Replica::HandleConsensusRequest(char *reqBuf, char *respBuf, size_t &respLen) {
auto *req = reinterpret_cast<consensus_request_header_t *>(reqBuf);
Debug("[%lu - %lu] Received consensus op number %lu:\n",
req->client_id, req->txn_nr, req->req_nr);
txnid_t txnid = make_pair(req->client_id, req->txn_nr);
// Check record if we've already handled this request
RecordEntry *entry = record.Find(txnid);
TransactionStatus crt_txn_status;
view_t crt_txn_view;
RecordEntryState crt_txn_state;
string crt_txn_result;
if (entry != NULL) {
//if (clientreq_nr <= entry->req_nr) {
// If a client request number from the past, ignore it
// return;
//}
// If we already have this transaction in our record,
// save the txn's current state
crt_txn_view = entry->view;
// TODO: check the view? If request in lower
// view just reply with the new view and new state
crt_txn_status = entry->txn_status;
crt_txn_state = entry->state;
crt_txn_result = entry->result;
} else {
// It's the first prepare request we've seen for this transaction,
// save it as tentative, in initial view, with initial status
entry = &record.Add(0, txnid, req->req_nr, NOT_PREPARED,
RECORD_STATE_TENTATIVE, "");
crt_txn_status = NOT_PREPARED;
crt_txn_view = 0;
}
// Call in the application with the current transaction status;
// the app will decide whether to execute this prepare request
// or not; if yes, it will specify the updated transaction status
// and the result to return to the coordinator/client.
// string result;
app->ExecConsensusUpcall(txnid, entry, req->nr_reads,
req->nr_writes, req->timestamp, req->id,
reqBuf + sizeof(consensus_request_header_t),
respBuf, respLen);
if (entry->txn_status != crt_txn_status) {
// Update record
//record.SetResult(txnid, result);
record.SetStatus(txnid, RECORD_STATE_TENTATIVE);
//crt_txn_result = result;
crt_txn_state = RECORD_STATE_TENTATIVE;
}
// fill in the replication layer specific fields
// TODO: make this more general
auto *resp = reinterpret_cast<consensus_response_t *>(respBuf);
resp->view = crt_txn_view;
resp->replicaid = myIdx;
resp->req_nr = req->req_nr;
resp->finalized = (crt_txn_state == RECORD_STATE_FINALIZED);
respLen = sizeof(consensus_response_t);
}
void Replica::HandleFinalizeConsensusRequest(char *reqBuf, char *respBuf, size_t &respLen) {
auto *req = reinterpret_cast<finalize_consensus_request_t *>(reqBuf);
Debug("[%lu - %lu] Received finalize consensus for req %lu",
req->client_id, req->txn_nr, req->req_nr);
txnid_t txnid = make_pair(req->client_id, req->txn_nr);
// Check record for the request
RecordEntry *entry = record.Find(txnid);
if (entry != NULL) {
//if (clientreq_nr < entry->req_nr) {
// If finalize for a different operation number, then ignore
// TODO: what if we missed a prepare phase, thus clientreq_nr > entry->req_nr?
// return;
//}
// TODO: check the view? If request in lower
// view just reply with the new view and new state
// Mark entry as finalized
record.SetStatus(txnid, RECORD_STATE_FINALIZED);
// if (msg.status() != entry->result) {
// // Update the result
// // TODO: set the timestamp and status of the transaction
// entry->result = msg.result();
// }
// Send the reply
auto *resp = reinterpret_cast<finalize_consensus_response_t *>(respBuf);
resp->view = entry->view;
resp->replicaid = myIdx;
resp->req_nr = req->req_nr;
respLen = sizeof(finalize_consensus_response_t);
Debug("[%lu - %lu] Operation found and consensus finalized", req->client_id, req->txn_nr);
} else {
// Ignore?
// Send the reply
auto *resp = reinterpret_cast<finalize_consensus_response_t *>(respBuf);
resp->view = 0;
resp->replicaid = myIdx;
resp->req_nr = req->req_nr;
respLen = sizeof(finalize_consensus_response_t);
}
}
void Replica::PrintStats() {
}
} // namespace ir
} // namespace replication
|
20797c4ab6cdaa4f950db0c0920d086604999333 | 43b429b62c58a0baa7ed12d9c321154ffe78add8 | /hg/boj/11000/11054-longtest-bitonic-subsequence/src/dp.cpp | c3ccb4749a933ff442ed33eb2ae41e819e901ddc | [] | no_license | JinYoung-Shin/Algorithm-Challenge-2017 | 215d6f4aef75d412ec98eedcdfdf8d818c3fa038 | 6d8e7d02a7606e8b89c63a815aac9f113e4bb01c | refs/heads/master | 2021-01-18T11:25:59.272019 | 2019-04-07T03:27:47 | 2019-04-07T03:27:47 | 84,324,714 | 5 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,079 | cpp | dp.cpp | #include <bits/stdc++.h>
using namespace std;
int dp1[1001]; // arr[i]를 마지막으로하는 앞에서부터 시작했을 때 가장 긴 증가하는 부분수열의 길이
int dp2[1001]; // arr[i]를 마지막으로하는 뒤에서부터 시작했을 때 가장 긴 증가하는 부분수열의 길이
int arr[1001];
int main() {
int n;
cin >> n;
for (int i=0; i < n; i++) {
cin >> arr[i];
dp1[i] = dp2[i] = 1;
}
for (int i=0;i < n; i++) {
auto& next = arr[i];
for (int j=0; j < i; j++) {
auto& prev = arr[j];
if (next > prev) {
dp1[i] = max(dp1[i], dp1[j] + 1);
}
}
}
for (int i=n-1; i >=0; i--) {
auto& next = arr[i];
for (int j=n-1; j > i; j--) {
auto& prev = arr[j];
if (next > prev) {
dp2[i] = max(dp2[i], dp2[j] + 1);
}
}
}
int ans = 0;
for (int i=0; i < n; i++) {
ans = max(ans, dp1[i] + dp2[i]);
}
cout << (ans-1) << endl;
return 0;
}
|
92649ecd160a22d81154ef432473bd4cdb2f7598 | 11372f47584ed7154697ac3b139bf298cdc10675 | /刷题比赛/ICPC/ICPC沈阳网络赛/K.cpp | f15aedff6f97441420abcfc789152d89ab979a41 | [] | no_license | strategist614/ACM-Code | b5d893103e4d2ea0134fbaeb0cbd18c0fec06d12 | d1e0f36dab47f649e2fade5e7ff23cfd0e8c8e56 | refs/heads/master | 2020-12-20T04:21:50.750182 | 2020-01-24T07:43:50 | 2020-01-24T07:45:08 | 235,958,679 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,626 | cpp | K.cpp | #include<bits/stdc++.h>
using namespace std;
int t;
int main()
{
cin >> t;
int tt = 0;
while(t--)
{
string str;
cin >> str;
int n = str.size();
printf("Case #%d: ",++tt);
if(n > 3)
{
cout<<317<<endl;
}
else
{
int ans = atoi(str.c_str());
if(ans >= 317)
{
cout<<317<<endl;
}
else if(ans<317 && ans>=311)
{
cout<<311<<endl;
}
else if(ans < 311 && ans >= 173)
{
cout<<173<<endl;
}
else if(ans < 173 && ans >= 137)
{
cout<<137<<endl;
}
else if(ans < 137 && ans >= 131)
{
cout<<131<<endl;
}
else if(ans < 131 && ans >= 113)
{
cout<<113<<endl;
}
else if(ans < 113 && ans >= 73)
{
cout<<73<<endl;
}
else if(ans < 73 && ans >= 71)
{
cout<<71<<endl;
}
else if(ans < 71 && ans >=53)
{
cout<<53<<endl;
}
else if(ans < 53 && ans >=37)
{
cout<<37<<endl;
}
else if(ans < 37 && ans >= 31)
{
cout<<31<<endl;
}
else if(ans < 31 && ans >= 23)
{
cout<<23<<endl;
}
else if(ans < 23 && ans >= 17)
{
cout<<17<<endl;
}
else if(ans < 17 && ans >= 13)
{
cout<<13<<endl;
}
else if(ans < 13 && ans >= 11)
{
cout<<11<<endl;
}
else if(ans <11 &&ans >= 7)
{
cout<<7<<endl;
}
else if(ans < 7 && ans >= 5)
{
cout<<5<<endl;
}
else if(ans < 5&&ans >= 3)
{
cout<<3<<endl;
}
else if(ans < 3 &&ans >=2)
{
cout<<2<<endl;
}
}
}
return 0;
}
|
b87e015e6a299f6bd80ae966c0c27125f3d9e4b2 | 41781f63a3f8ae236406ba3a797f52344da000bf | /00_src/Corelib/Button.h | 3d63e0302812c720a889bc444bd8c03ca4e0d779 | [] | no_license | tonnac/Study_0 | 760cd9d5847d1c6a7c9b0fd73efbe7d94e3d6e03 | dfbaaa5697ad30254bf4684246d0e84131ee595c | refs/heads/master | 2020-03-25T04:58:55.017853 | 2019-01-22T06:00:16 | 2019-01-22T06:00:16 | 143,423,294 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 507 | h | Button.h | #pragma once
#include "KObject.h"
#include "Input.h"
enum Btn_State
{
Btn_Normal,
Btn_Click,
Btn_Active,
Btn_Hover,
Btn_Count
};
class Button : public KObject
{
Bitmap* m_BtnColorBitmap[Btn_Count];
Bitmap* m_BtnMaskBitmap[Btn_Count];
Bitmap* m_BtnCurrent;
public:
bool Init () override;
bool Frame () override;
bool Render () override;
bool Release () override;
bool LoadFile(const TCHAR*, const TCHAR*, int iState);
public:
Button();
virtual ~Button();
};
|
e9da0acf3cffa5426be1fd09c220b0193235de02 | 9a94dd59935671152c954e5eb6a2acad274cf381 | /src/CCamera.cpp | f3e6817a1b736f5dda7b02d6f3eb18f12f5f83ab | [] | no_license | tomalbrc/visionray | 41ee3f2e8c910e3554cb53c4211e1cb993154fed | 30bbbb4078286863cc90916247906bd9737e1559 | refs/heads/master | 2020-04-23T17:35:36.746077 | 2019-02-18T18:41:46 | 2019-02-18T18:41:46 | 171,336,985 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 634 | cpp | CCamera.cpp | //
// CCamera.cpp
// trace
//
// Created by Tom Albrecht on 18.12.18.
// Copyright © 2018 Tom Albrecht. All rights reserved.
//
#include "CCamera.h"
NS_VRAY_BEGIN
CCamera::CCamera(const Vec3d &position, const math::Vec4 &orientation)
{
_position = position;
_orientation = _orientation;
}
void CCamera::position(const Vec3d &position)
{
_position = position;
}
const Vec3d &CCamera::position() const
{
return _position;
}
void CCamera::orientation(const math::Vec4 &orientation)
{
_orientation = orientation;
}
const math::Vec4 &CCamera::orientation() const
{
return _orientation;
}
NS_VRAY_END
|
81003bef48c78e4290cf0ed46c4e651313e2a9a8 | cbe0396f8743ceb0a223d7be152dc472a421b618 | /IRDConnect/include/calendarUtil.h | b008021534831fce2d1904662a3a93d08b5d1990 | [] | no_license | jagadeeshgajula/Derivatives-Connect | ab47bf8237daa9b54aec3f88d9e6f30a27aacb33 | e0dc101aae11f930f90c06e0f062a6329b17e73a | refs/heads/master | 2020-04-15T11:33:12.321802 | 2019-01-09T04:25:37 | 2019-01-09T04:25:37 | 164,635,803 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 524 | h | calendarUtil.h | #ifndef CALENDAR_UTIL_H
#define CALENDAR_UTIL_H
#include "calendar.h"
#include <set>
#include <list>
using namespace std;
using namespace IRDConnect;
namespace IRDConnect {
class CalendarUtil {
public :
static Calendar * getCalendar ( const std::string & holidayCd ) ;
static Calendar * getCalendar ( const std::set<std::string> & holidayCdSet ) ;
private :
static void readCalendars () ;
};
}
#endif
|
4ed00731dadd096c016b3f6dac12ff0987fe9d64 | 54e0ffd2fc7a58dd37966d9ac6ab57860e3bc1ac | /source/src/XJBrowser/AutoCallResult.cpp | 89bf36375524f731e2b7349f2f5aaddadaee6ada | [] | no_license | xjsh2017/vicente2018 | 4fef21671771ea55c96f617cf31cfedefca72495 | 414de9d7558c03a8666fc23d7dc080be738e21de | refs/heads/master | 2020-03-23T16:37:45.389992 | 2018-08-28T00:09:37 | 2018-08-28T00:09:37 | 141,820,732 | 2 | 1 | null | null | null | null | GB18030 | C++ | false | false | 81,008 | cpp | AutoCallResult.cpp | // AutoCallResult.cpp : implementation file
//
#include "stdafx.h"
#include "xjbrowser.h"
#include "AutoCallResult.h"
// #ifdef _DEBUG
// #define new DEBUG_NEW
// #undef THIS_FILE
// static char THIS_FILE[] = __FILE__;
// #endif
/** @brief 升降序作用位*/
int g_iResultViewAsc;
CString g_sRootDirPath;
UINT ExportByStation(LPVOID pParam)
{
CAutoCallResult* pView = (CAutoCallResult*)pParam;
if( !pView )
return -1;
CXJBrowserApp * pApp = (CXJBrowserApp*)AfxGetApp();
CDataEngine * pData = pApp->GetDataEngine();
if(pData == NULL)
return -1;
Sleep(10);
DEVICE_LIST listStation;
pData->GetStationList( listStation );
POSITION pos = listStation.GetHeadPosition();
int total = listStation.GetCount();
int count = 0;
int success = 0;
int fail = 0;
while(pos != NULL)
{
CStationObj*pStation = (CStationObj*)listStation.GetNext(pos);
if(pStation == NULL)
continue;
CString strDir = g_sRootDirPath + "\\" + pStation->m_sNetID;
CFileFind ifind;
if( !ifind.FindFile( strDir ) )
CreateDirectory( strDir, 0 );
CString sFilePath = strDir + "\\" + pStation->m_sName + ".xls" ;
if( pView->WriteResultToExcel( sFilePath, pStation->m_sID ) )
success++;
else
{
fail++;
CString strLog;
strLog.Format("[%s] %s", pStation->m_sID, IDS_AUTOCALLRESULT_EXPORT_FAIL );
WriteLog( strLog, XJ_LOG_LV1 );
}
count++;
if( pView->m_pExportProcess )
pView->m_pExportProcess->PostMessage( EXPORT_PROCESS, total, count );
Sleep( 1 );
}
if( pView->m_pExportProcess )
pView->m_pExportProcess->PostMessage( EXPORT_RESULT, success, fail );
return 0;
}
#define CALLRELUST_LIST_COLUMNS 25
//////////////////////////////////////////////////////////////////////////
//CCallResult
//##ModelId=49B87BB303CA
CCallResult::CCallResult()
{
/** @brief 定值区号结果*/
m_nZone = 0;
/** @brief 定值结果*/
m_nSetting = 0;
/** @brief 开关量结果*/
m_nDigital = 0;
/** @brief 软压板结果*/
m_nSoftBoard = 0;
/** @brief 模拟量结果*/
m_nAnalog = 0;
/** @brief 定值区号结果说明*/
m_sZoneNote = ERROR_NULL;
/** @brief 定值结果说明*/
m_sSettingNote = ERROR_NULL;
/** @brief 开关量结果说明*/
m_sDigitalNote = ERROR_NULL;
/** @brief 软压板结果说明*/
m_sSoftBoardNote = ERROR_NULL;
/** @brief 模拟量结果说明*/
m_sAnalogNote = ERROR_NULL;
/** @brief 所属批次*/
m_nSaveNo = 0;
/** @brief 二次设备ID*/
m_sSecID = "";
/** @brief 二次设备指针*/
m_pSec = NULL;
/** @brief CPU号*/
m_nCPU = -1;
/** @brief 完成时间*/
CTime tm(1972, 1, 1, 1, 1, 1);
m_tmEnd = tm;
/** @brief 厂站ID*/
m_sStationId = "";
/** @brief 厂站指针*/
m_pStation = NULL;
m_sSituation = "";
m_sDispose = "";
}
//##ModelId=49B87BB40000
CCallResult::~CCallResult()
{
}
/*************************************************************
函 数 名:LoadDataFromDB()
功能概要:从数据库读入数据信息
返 回 值: 读取成功返回TRUE, 失败返回FALSE
参 数:param1 数据库对象
Param2
**************************************************************/
//##ModelId=49B87BB4006D
BOOL CCallResult::LoadDataFromDB( CMemSet* pMemset )
{
//检查数据有效性
if(pMemset == NULL)
return FALSE;
try
{
m_sSecID = pMemset->GetValue((UINT)0); //保护ID
CString str;
str = pMemset->GetValue(1); //CPU
m_nCPU = atoi(str);
str = pMemset->GetValue(2); //完成时间
m_tmEnd = StringToTime(str);
m_sStationId = pMemset->GetValue(3); //厂站ID
str = pMemset->GetValue(4);
m_nZone = atoi(str); //定值区号召唤结果
str = pMemset->GetValue(5);
m_nSetting = atoi(str); //定值召唤结果
str = pMemset->GetValue(6);
m_nSoftBoard = atoi(str); //软压板召唤结果
str = pMemset->GetValue(7);
m_nAnalog = atoi(str); //模拟量召唤结果
str = pMemset->GetValue(8);
m_nDigital = atoi(str); //开关量召唤结果
str = pMemset->GetValue(10);
m_nHistory = atoi(str);//历史事件召唤结果
str = pMemset->GetValue(11);
m_nOsc = atoi(str);//录波召唤结果
if(m_nHistory == 2)
m_sHistoryNote = pMemset->GetValue(12);
if(m_nOsc == 2)
m_sOscNote = pMemset->GetValue(13);
if(m_nZone == 2)
m_sZoneNote = pMemset->GetValue(14); //定值区号结果说明
if(m_nSetting == 2)
m_sSettingNote = pMemset->GetValue(15); //定值结果说明
if(m_nDigital == 2)
m_sDigitalNote = pMemset->GetValue(16); //开关量结果说明
if(m_nSoftBoard == 2)
m_sSoftBoardNote = pMemset->GetValue(17); //软压板结果说明
if(m_nAnalog == 2)
m_sAnalogNote = pMemset->GetValue(18); //模拟量结果说明
str = pMemset->GetValue(19);
m_nSaveNo = atoi(str); //批次
m_sSituation = pMemset->GetRealDataValue( "call_notes" ); //情况说明
m_sDispose = pMemset->GetRealDataValue( "call_suggest" ); //处理意见
}
catch (...)
{
WriteLog("CCallResult::LoadDataFromDB 读取数据出错", 3);
}
if(!BuildReleation())
{
WriteLog("CCallResult::LoadDataFromDB, 与设备关联失败");
return FALSE;
}
return TRUE;
}
/*************************************************************
函 数 名:BuildReleation()
功能概要:建立与设备的关联
返 回 值: 成功返回TRUE, 失败返回FALSE
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB4008C
BOOL CCallResult::BuildReleation()
{
CXJBrowserApp * pApp = (CXJBrowserApp*)AfxGetApp();
CDataEngine * pData = pApp->GetDataEngine();
if(pData == NULL)
return FALSE;
//先查找二次设备指针
m_pSec = (CSecObj*)pData->FindDevice(m_sSecID, TYPE_SEC);
if(m_pSec == NULL)
return FALSE;
//厂站ID
CStationObj * pStation = (CStationObj*)pData->FindDevice(m_sStationId, TYPE_STATION);
m_pStation = pStation;
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CAutoCallResult
IMPLEMENT_DYNCREATE(CAutoCallResult, CFormView)
//##ModelId=49B87BB40158
CAutoCallResult::CAutoCallResult()
: CFormView(CAutoCallResult::IDD)
{
//{{AFX_DATA_INIT(CAutoCallResult)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
m_arrColum.RemoveAll();
m_listResult.RemoveAll();
m_arrSaveNo.RemoveAll();
g_iResultViewAsc = -1;
m_nNewSaveNo = 0;
m_nOldSaveNo = 0;
m_nMaxSaveNo = 10;
m_nMinSaveNo = 1;
m_ZoneStat.nFail = 0;
m_ZoneStat.nSuccess = 0;
m_SettingStat.nSuccess =0;
m_SettingStat.nFail = 0;
m_DigitalStat.nFail = 0;
m_DigitalStat.nSuccess = 0;
m_SoftBoardStat.nSuccess = 0;
m_SoftBoardStat.nFail = 0;
m_AnalogStat.nFail = 0;
m_AnalogStat.nSuccess = 0;
CTime tm(1971, 1, 1, 1, 1, 1);
m_tmStart = tm;
m_tmEnd = tm;
m_nOldSortCol = -1;
m_pStation = NULL;
m_nSelSaveNo = 0;
m_bShowNoFailed = TRUE;
m_bSelectRoot = FALSE;
}
//##ModelId=49B87BB403C8
CAutoCallResult::~CAutoCallResult()
{
Clear();
ClearSaveNo();
}
//##ModelId=49B87BB403A9
void CAutoCallResult::DoDataExchange(CDataExchange* pDX)
{
CFormView::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAutoCallResult)
DDX_Control(pDX, IDC_LIST_AUTOCALL_SUMMARY, m_ListSummary);
DDX_Control(pDX, IDC_LIST_AUTOCALL_RESULT, m_List);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CAutoCallResult, CFormView)
//{{AFX_MSG_MAP(CAutoCallResult)
ON_WM_WINDOWPOSCHANGED()
ON_WM_DESTROY()
ON_NOTIFY(NM_CUSTOMDRAW, IDC_LIST_AUTOCALL_RESULT, OnCustomDraw)
ON_NOTIFY(LVN_COLUMNCLICK, IDC_LIST_AUTOCALL_RESULT, OnColumnclickListAutocallResult)
ON_WM_CONTEXTMENU()
ON_COMMAND(IDC_RESULT_EXPORT, OnResultExport)
ON_COMMAND(IDC_RESULT_PRINT, OnResultPrint)
ON_COMMAND(IDC_RESULT_PREV, OnResultPrev)
ON_COMMAND(IDC_RESULT_NEXT, OnResultNext)
ON_COMMAND(IDC_RESULT_SHOWFAILD, OnResultShowfaild)
ON_COMMAND(IDC_WIN_CLOSE, OnWinClose)
ON_COMMAND(IDC_RESULT_STATIONEXPORT, OnResultStationexport)
//}}AFX_MSG_MAP
ON_MESSAGE(AUTOCALL_RESULT_OPEN, OnAutoCallResultFrameOpen)
ON_MESSAGE(AUTOCALL_RESULT_CHANGE, OnAutoCallResultChange)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CAutoCallResult diagnostics
#ifdef _DEBUG
//##ModelId=49B87BB50000
void CAutoCallResult::AssertValid() const
{
CFormView::AssertValid();
}
//##ModelId=49B87BB5000F
void CAutoCallResult::Dump(CDumpContext& dc) const
{
CFormView::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CAutoCallResult message handlers
//##ModelId=49B87BB4038A
void CAutoCallResult::OnInitialUpdate()
{
CFormView::OnInitialUpdate();
// TODO: Add your specialized code here and/or call the base class
//设置可滚动视图的必要属性
CSize sizeTotal(10, 10);
SetScrollSizes(MM_TEXT, sizeTotal);
//初始化列表框样式
InitListStyle();
InitSummaryListStyle();
}
//##ModelId=49B87BB5002E
void CAutoCallResult::OnWindowPosChanged(WINDOWPOS FAR* lpwndpos)
{
CFormView::OnWindowPosChanged(lpwndpos);
// TODO: Add your message handler code here
RegulateControlSize();
}
/*************************************************************
函 数 名:LoadListConfig()
功能概要:载入列信息配置
返 回 值: 载入成功返回TRUE, 失败返回FALSE
**************************************************************/
//##ModelId=49B87BB40232
BOOL CAutoCallResult::LoadListConfig()
{
//读取UI配置文件
BOOL bResult = TRUE;
// CoInitialize(NULL); //初始化COM
// {
MSXML2::IXMLDOMDocumentPtr pDoc;
HRESULT hr;
//初始化MSXML
hr=pDoc.CreateInstance(__uuidof(MSXML2::DOMDocument60));
if(FAILED(hr))
{
WriteLog("无法创建DOMDocument对象,请检查是否安装了MS XML Parser 运行库!", 3);
WriteLog("AutoCallResultConfig::读取UIConfig失败,将使用默认列风格");
bResult = FALSE;
}
//加载UIConfig文件
if(bResult)
{
if(!pDoc->load((_variant_t)g_UIConfig))
{
//加载失败
MSXML2::IXMLDOMParseErrorPtr errPtr = pDoc ->GetparseError();
CString str;
str.Format("when load UIConfig, error in line %d, char %d\n%s", errPtr ->Getline(), errPtr ->Getlinepos(), (char *)errPtr ->Getreason());
WriteLog(str);
WriteLog("AutoCallResultConfig::读取UIConfig失败,将使用默认列风格");
bResult = FALSE;
}
}
if(bResult)
{
MSXML2::IXMLDOMNodePtr pSelected;
pSelected = pDoc->selectSingleNode("//AutoCallResultConfig");
//查找ViewActionConfig
if(pSelected == NULL)
{
//未找到
WriteLog("未找到AutoCallResultConfig");
WriteLog("AutoCallResultConfig::读取UIConfig失败,将使用默认列风格");
bResult = FALSE;
}
else
{ //找到
if(!pSelected ->hasChildNodes())
{
//找不到子节点
WriteLog("未找到AutoCallResultConfig下的配置");
WriteLog("AutoCallResultConfig::读取UIConfig失败,将使用默认列风格");
bResult = FALSE;
}
else
{
//找到子节点列表指针
MSXML2::IXMLDOMNodeListPtr pChild;
pChild = pSelected ->GetchildNodes();
if( pChild->Getlength() == CALLRELUST_LIST_COLUMNS)
{
//循环读取子节点信息
for(int i = 0; i < pChild ->Getlength(); i++)
{
//得到子节点
MSXML2::IXMLDOMNodePtr pNode;
pNode = pChild ->Getitem(i);
//得到子节点属性列表指针
MSXML2::IXMLDOMNamedNodeMapPtr pAttrMap;
pAttrMap = pNode ->Getattributes();
//列属性结构
SColumn col;
//循环读取属性
for(int j = 0; j < pAttrMap ->Getlength(); j++)
{
MSXML2::IXMLDOMNodePtr pItem;
pItem = pAttrMap ->Getitem(j);
CString strValue = (char *)(_bstr_t)pItem ->GetnodeValue();
int nHide = 0;
int nWidth = 0;
switch(j)
{
case 0: //列名
col.sName = strValue;
break;
case 1: //列宽
nWidth = atoi(strValue);
col.nItemWidth = nWidth;
break;
case 2: //是否隐藏
nHide = atoi(strValue);
if(0 == nHide)
{
col.bHide = FALSE;
}
else
{
col.bHide = TRUE;
}
break;
default:
break;
}
}
m_arrColum.Add(col);
}
}
else
bResult = FALSE;
}
}
}
// }
// //关闭打开的COM
// CoUninitialize();
return bResult;
}
//##ModelId=49B87BB40242
BOOL CAutoCallResult::SaveListConfig()
{
//保存UIConfig失败", 3
BOOL bResult = TRUE;
// CoInitialize(NULL); //初始化COM
// {
MSXML2::IXMLDOMDocumentPtr pDoc;
HRESULT hr;
//初始化MSXML
hr=pDoc.CreateInstance(__uuidof(MSXML2::DOMDocument60));
if(FAILED(hr))
{
WriteLog("无法创建DOMDocument对象,请检查是否安装了MS XML Parser 运行库!", 3);
WriteLog("AutoCallResultConfig::保存UIConfig失败", XJ_LOG_LV3);
bResult = FALSE;
}
//加载UIConfig文件
if(bResult)
{
if(!pDoc->load((_variant_t)g_UIConfig))
{
//加载失败
MSXML2::IXMLDOMParseErrorPtr errPtr = pDoc ->GetparseError();
CString str;
str.Format("when load UIConfig, error in line %d, char %d\n%s", errPtr ->Getline(), errPtr ->Getlinepos(), (char *)errPtr ->Getreason());
WriteLog(str);
WriteLog("AutoCallResultConfig::保存UIConfig失败", XJ_LOG_LV3);
bResult = FALSE;
}
else
{
//加载文件成功
MSXML2::IXMLDOMNodePtr pRoot;
pRoot = pDoc ->selectSingleNode("//UIConfig");
MSXML2::IXMLDOMNodePtr pSelected;
pSelected = pDoc->selectSingleNode("//AutoCallResultConfig");
//查找ViewActionConfig
if(pSelected == NULL)
{
//未找到,新建节点
WriteLog("未找到AutoCallResultConfig, 将新建节点和子节点");
//新建节点
MSXML2::IXMLDOMElementPtr pNew = NULL;
pNew = pDoc ->createElement("AutoCallResultConfig");
if(pNew != NULL)
{
//加入新节点
pRoot ->appendChild(pNew);
//新建所有子节点
for(int i = 0; i < m_arrColum.GetSize(); i++)
{
MSXML2::IXMLDOMElementPtr pNewChild = NULL;
pNewChild = pDoc ->createElement("Col");
CString sName = m_arrColum[i].sName;
int nWidth = m_arrColum[i].nItemWidth;
BOOL bHide = m_arrColum[i].bHide;
pNewChild ->setAttribute("Name", _variant_t(sName));
CString sWidth;
sWidth.Format("%d", nWidth);
pNewChild ->setAttribute("Width", _variant_t(sWidth));
CString sHide;
if(bHide) //隐藏
{
sHide = "1";
}
else
{
sHide = "0";
}
pNewChild ->setAttribute("Hide", _variant_t(sHide));
//加入子节点
pNew ->appendChild(pNewChild);
}
}
}
else //找到了ViewActionConfig
{
//查找是否有子节点
if(!pSelected ->hasChildNodes())
{
//找不到子节点
WriteLog("未找到BatchDetailViewConfig下的配置, 新建所有子节点");
//新建所有子节点
for(int i = 0; i < m_arrColum.GetSize(); i++)
{
MSXML2::IXMLDOMElementPtr pNewChild = NULL;
pNewChild = pDoc ->createElement("Col");
CString sName = m_arrColum[i].sName;
int nWidth = m_arrColum[i].nItemWidth;
BOOL bHide = m_arrColum[i].bHide;
pNewChild ->setAttribute("Name", _variant_t(sName));
CString sWidth;
sWidth.Format("%d", nWidth);
pNewChild ->setAttribute("Width", _variant_t(sWidth));
CString sHide;
if(bHide) //隐藏
{
sHide = "1";
}
else
{
sHide = "0";
}
pNewChild ->setAttribute("Hide", _variant_t(sHide));
pSelected ->appendChild(pNewChild);
}
}
else
{
//找到有子节点, 删除所有子节点,再新建
WriteLog("找到了AutoCallResultConfig下的配置, 先删除新建所有子节点");
//找到子节点列表指针
MSXML2::IXMLDOMNodeListPtr pChild;
pChild = pSelected ->GetchildNodes();
//删除子节点
MSXML2::IXMLDOMNodePtr pNode = NULL;
pNode = pChild ->Getitem(0);
while(pNode != NULL)
{
pSelected ->removeChild(pNode);
pNode = pChild ->Getitem(0);
}
//新建子节点
for(int i = 0; i < m_arrColum.GetSize(); i++)
{
MSXML2::IXMLDOMElementPtr pNewChild = NULL;
pNewChild = pDoc ->createElement("Col");
CString sName = m_arrColum[i].sName;
int nWidth = m_arrColum[i].nItemWidth;
BOOL bHide = m_arrColum[i].bHide;
pNewChild ->setAttribute("Name", _variant_t(sName));
CString sWidth;
sWidth.Format("%d", nWidth);
pNewChild ->setAttribute("Width", _variant_t(sWidth));
CString sHide;
if(bHide) //隐藏
{
sHide = "1";
}
else
{
sHide = "0";
}
pNewChild ->setAttribute("Hide", _variant_t(sHide));
pSelected ->appendChild(pNewChild);
}
}
}
//保存配置文件
pDoc ->save(_variant_t(g_UIConfig));
bResult = TRUE;
}
}
// }
// //关闭打开的COM
// CoUninitialize();
return bResult;
}
/*************************************************************
函 数 名:NeedSave()
功能概要:判断是否列信息有改变需要保存
返 回 值: 需要保存返回TRUE, 不需要保存返回FALSE
**************************************************************/
//##ModelId=49B87BB40261
BOOL CAutoCallResult::NeedSave()
{
BOOL bReturn = FALSE;
//先读取最新列信息
int nCount = m_List.m_hideHeader.m_aColum.GetSize();
for(int j = 0; j < nCount; j++)
{
if(!m_List.m_hideHeader.m_aColum[j].bHide)
{
//只保存非隐藏列的列宽
m_List.m_hideHeader.m_aColum[j].nItemWidth = m_List.GetColumnWidth(j);
}
}
if(m_arrColum.GetSize() == 0)
{
//m_arrColum为空, 需要保存
bReturn = TRUE;
}
else if(m_arrColum.GetSize() != nCount)
{
//如果数量不相等,需要保存
bReturn = TRUE;
}
else
{
//对比各项,发现一项不等就需要保存
for(int i = 0; i < m_arrColum.GetSize(); i++)
{
if(m_arrColum[i].bHide != m_List.m_hideHeader.m_aColum[i].bHide)
{
bReturn = TRUE;
break;
}
if(m_arrColum[i].nItemWidth != m_List.m_hideHeader.m_aColum[i].nItemWidth)
{
bReturn = TRUE;
break;
}
if(m_arrColum[i].sName != m_List.m_hideHeader.m_aColum[i].sName)
{
bReturn = TRUE;
break;
}
}
}
if(bReturn)
{
//如果需要保存, 则重写m_arrColum
m_arrColum.RemoveAll();
for(int i = 0; i < nCount; i++)
{
SColumn col;
col.sName = m_List.m_hideHeader.m_aColum[i].sName;
col.nItemWidth = m_List.m_hideHeader.m_aColum[i].nItemWidth;
col.bHide = m_List.m_hideHeader.m_aColum[i].bHide;
m_arrColum.Add(col);
}
}
return bReturn;
}
/*************************************************************
函 数 名:RegulateControlSize()
功能概要:调整控件大小,位置
返 回 值: void
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB40271
void CAutoCallResult::RegulateControlSize()
{
if(m_List.GetSafeHwnd() == NULL)
return;
if(m_ListSummary.GetSafeHwnd() == NULL)
return;
//概述的高度为60, 其它的都为详细
CRect rc;
GetClientRect(&rc); //客户区大小
CRect rcSummary = rc;
rcSummary.bottom = rcSummary.top + 90;
m_ListSummary.MoveWindow(rcSummary);
CRect rect = rc;
rect.top = rcSummary.bottom;
m_List.MoveWindow(rect);
}
/*************************************************************
函 数 名:OnAutoCallResultFrameOpen()
功能概要:响应窗口打开消息, 调整控件
返 回 值: void
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB5009E
void CAutoCallResult::OnAutoCallResultFrameOpen( WPARAM wParam, LPARAM lParam )
{
RegulateControlSize();
//初始化数据
// LoadDataFromDB();
// FillListData();
// GetOCTime("OC_LSTARTTIME", m_tmStart);
// GetOCTime("OC_LENDTIME", m_tmEnd);
// FillSummaryListData();
}
/*************************************************************
函 数 名:InitListStyle()
功能概要:初始化列表风格
返 回 值: 失败返回-1, 成功返回>=0
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB40280
int CAutoCallResult::InitListStyle()
{
//空图形列表, 用来调整行高
CImageList m_l;
m_l.Create(1,g_ListItemHeight,TRUE|ILC_COLOR32,1,0);
m_List.SetImageList(&m_l,LVSIL_SMALL);
//先查找UIConfig配置文件中是否有此列表的列信息
//如果有,按配置文件的信息来设置列
//如果没有,按默认来设置列,并保存到配置文件
LV_COLUMN lvCol;
lvCol.mask=LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
lvCol.fmt=LVCFMT_CENTER;
if(LoadListConfig())
{
//载入配置成功
for(int i = 0; i < m_arrColum.GetSize(); i++)
{
lvCol.iSubItem = i;
lvCol.cx = m_arrColum[i].nItemWidth;
CString sName = m_arrColum[i].sName;
char * name = sName.GetBuffer(sName.GetLength());
lvCol.pszText = name;
BOOL bHide = m_arrColum[i].bHide;
m_List.InsertColumn(i,&lvCol, bHide);
}
}
else
{
//载入配置失败
CString colName="";
for (int nCol=0; nCol < CALLRELUST_LIST_COLUMNS; nCol++)
{
colName="";
lvCol.iSubItem=nCol;
lvCol.cx = 100;
switch(nCol)
{
case 0://
lvCol.cx = 50; //"批次"
colName.LoadString(IDS_AUTOCALLRESULT_NUMBER);
break;
case 1:
lvCol.cx = 300;
colName.LoadString(IDS_MODEL_SECONDARY);
break;
case 2:
colName.LoadString(IDS_MODEL_CPU);
break;
case 3:
colName.LoadString(IDS_AUTOCALLRESULT_ZONE);
break;
case 4:
colName.LoadString(IDS_AUTOCALLRESULT_ZONE_NOTE);
break;
case 5:
colName.LoadString(IDS_AUTOCALLRESULT_SETTING);
break;
case 6:
colName.LoadString(IDS_AUTOCALLRESULT_SETTING_NOTE);
break;
case 7:
colName.LoadString(IDS_AUTOCALLRESULT_DIGITAL);
break;
case 8:
colName.LoadString(IDS_AUTOCALLRESULT_DIGITAL_NOTE);
break;
case 9:
colName.LoadString(IDS_AUTOCALLRESULT_SOFT);
break;
case 10:
colName.LoadString(IDS_AUTOCALLRESULT_SOFT_NOTE);
break;
case 11:
colName.LoadString(IDS_AUTOCALLRESULT_ANALOG);
break;
case 12:
colName.LoadString(IDS_AUTOCALLRESULT_ANALOG_NOTE);
break;
case 13:
colName.LoadString(IDS_AUTOCALLRESULT_OSC);
break;
case 14:
colName.LoadString(IDS_AUTOCALLRESULT_OSC_NOTE);
break;
case 15:
colName.LoadString(IDS_AUTOCALLRESULT_HISEVENT);
break;
case 16:
colName.LoadString(IDS_AUTOCALLRESULT_HISEVENT_NOTE);
break;
case 17:
colName.LoadString(IDS_COMMON_FINISHTIME);
break;
case 18:
colName.LoadString(IDS_AUTOCALLRESULT_OVERVIEW);
break;
case 19:
colName.LoadString(IDS_AUTOCALLRESULT_RESOLUTION);
break;
case 20:
colName.LoadString(IDS_MODEL_SUBSTATION);
break;
case 21:
colName.LoadString(IDS_MODEL_PRIMARY);
break;
case 22:
colName.LoadString(IDS_MODEL_MANUFACTURER);
break;
case 23:
colName.LoadString(IDS_MODEL_MANAGEMENT);
break;
case 24:
colName.LoadString(IDS_MODEL_MAINTENANCE);
break;
default:
lvCol.cx=100;//列宽100象素
}
lvCol.pszText = colName.GetBuffer(1);
m_List.InsertColumn(nCol,&lvCol);
}
}
//设置风格
m_List.SetExtendedStyle(LVS_EX_GRIDLINES |LVS_EX_FULLROWSELECT);
// m_List.ModifyStyle(0, LVS_SHOWSELALWAYS);
return 0;
}
/*************************************************************
函 数 名:InitSummaryListStyle()
功能概要:初始化概述列表框的风格
返 回 值: 失败返回-1, 成功返回>=0
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB40290
int CAutoCallResult::InitSummaryListStyle()
{
//空图形列表, 用来调整行高
CImageList m_l;
m_l.Create(1,16,TRUE|ILC_COLOR32,1,0);
m_ListSummary.SetImageList(&m_l,LVSIL_SMALL);
LV_COLUMN lvCol;
lvCol.mask=LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
lvCol.fmt=LVCFMT_CENTER;
CString colName="";
for (int nCol=0; nCol < 9 ; nCol++)
{
colName="";
lvCol.iSubItem=nCol;
lvCol.cx = 100;
switch(nCol)
{
case 0://
lvCol.cx = 70; //列宽50象素
colName.LoadString(IDS_COMMON_ITEM);
break;
case 1:
colName.LoadString(IDS_SECPROP_ZONE);
break;
case 2:
colName.LoadString(IDS_SECPROP_SETTING);
break;
case 3:
colName.LoadString(IDS_SECPROP_DIGITAL);
break;
case 4:
colName.LoadString(IDS_SECPROP_SOFT);
break;
case 5:
colName.LoadString(IDS_SECPROP_ANALOG);
break;
case 6:
colName.LoadString(IDS_SECPROP_OSC);
break;
case 7:
colName.LoadString(IDS_SECPROP_HISTORYEVENT);
break;
case 8:
lvCol.cx = 240;
colName.LoadString(IDS_AUTOCALLRESULT_SUMMARY);
break;
default:
lvCol.cx=100;//列宽100象素
break;
}
lvCol.pszText = colName.GetBuffer(1);
m_ListSummary.InsertColumn(nCol,&lvCol);
}
//设置风格
m_ListSummary.SetExtendedStyle(LVS_EX_GRIDLINES |LVS_EX_FULLROWSELECT);
return 1;
}
/*************************************************************
函 数 名:LoadDataFromDB()
功能概要:从数据库读入数据
返 回 值: 读取成功返回TRUE, 失败返回FALSE
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB4029F
BOOL CAutoCallResult::LoadDataFromDB(int nSaveNo)
{
//清除旧数据
Clear();
//清除统计结果
ClearStat();
BOOL bReturn = TRUE;
CXJBrowserApp * pApp = (CXJBrowserApp*)AfxGetApp();
//组建查询条件
SQL_DATA sql;
sql.Conditionlist.clear();
sql.Fieldlist.clear();
CString str;
//条件
Condition Condition1;
str.Format("Is_Auto = 0");
pApp->m_DBEngine.SetCondition(sql, Condition1, str);
if (m_pStation != NULL)
{
Condition con2;
str.Format("station_id = '%s'", m_pStation->m_sID);
pApp->m_DBEngine.SetCondition(sql, con2, str);
}
else if( !pApp->MgrAllStations() )
{
Condition con2;
str.Format("(station_id in(select station_id from tb_user_related where user_id='%s'))", pApp->m_User.m_strUSER_ID);
pApp->m_DBEngine.SetCondition(sql, con2, str);
}
//批次号
Condition Con3;
str.Format("SaveNo = %d", nSaveNo);
pApp->m_DBEngine.SetCondition(sql, Con3, str);
CMemSet* pMemset;
pMemset = new CMemSet;
char * sError = new char[MAXMSGLEN];
memset(sError, '\0', MAXMSGLEN);
int nResult;
try
{
nResult = pApp->m_DBEngine.XJSelectData(EX_STTP_INFO_OC_RESULT_CFG, sql, sError, pMemset);
}
catch (...)
{
WriteLog("CAutoCallResult::LoadDataFromDB, 查询失败");
delete[] sError;
delete pMemset;
return FALSE;
}
if(pMemset != NULL && nResult == 1)
{
pMemset->MoveFirst();
int nCount = pMemset->GetMemRowNum();
for(int i = 0; i < nCount; i++)
{
//创建对象
CCallResult* pResult = new CCallResult;
if(pResult->LoadDataFromDB(pMemset))
{
//加入到统计结果
StatResult(pResult);
//加入到链表
m_listResult.AddTail(pResult);
}
else
{
delete pResult;
pResult = NULL;
}
pMemset->MoveNext();
}
}
else
{
CString str;
str.Format("CAutoCallResult::LoadDataFromDB,查询失败,原因为%s", sError);
WriteLog(str);
bReturn = FALSE;
}
delete[] sError;
delete pMemset;
sError = NULL;
pMemset = NULL;
return bReturn;
}
/*************************************************************
函 数 名:Clear()
功能概要:清除数据
返 回 值: void
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB402BF
void CAutoCallResult::Clear()
{
POSITION pos = m_listResult.GetHeadPosition();
while(pos != NULL)
{
CCallResult* pResult = (CCallResult*)m_listResult.GetNext(pos);
if(pResult == NULL)
continue;
delete pResult;
pResult = NULL;
}
m_listResult.RemoveAll();
}
/*************************************************************
函 数 名:StatResult()
功能概要:将指定结果加入到结果统计中
返 回 值: void
参 数:param1 指定结果
Param2
**************************************************************/
//##ModelId=49B87BB402C0
void CAutoCallResult::StatResult( CCallResult* pResult )
{
//检查数据有效性
if(pResult == NULL)
return;
if(pResult->m_tmEnd < m_tmStart)
m_tmStart = pResult->m_tmEnd;
if(pResult->m_tmEnd > m_tmEnd)
m_tmEnd = pResult->m_tmEnd;
//定值区号
if(1 == pResult->m_nZone)
{
//成功
m_ZoneStat.nSuccess++;
}
else if(2 == pResult->m_nZone)
{
//失败
m_ZoneStat.nFail++;
}
//定值
if(1 == pResult->m_nSetting)
{
//成功
m_SettingStat.nSuccess++;
}
else if(2 == pResult->m_nSetting)
{
//失败
m_SettingStat.nFail++;
}
//开关量
if(1 == pResult->m_nDigital)
{
//成功
m_DigitalStat.nSuccess++;
}
else if(2 == pResult->m_nDigital)
{
//失败
m_DigitalStat.nFail++;
}
//软压板
if(1 == pResult->m_nSoftBoard)
{
//成功
m_SoftBoardStat.nSuccess++;
}
else if(2 == pResult->m_nSoftBoard)
{
//失败
m_SoftBoardStat.nFail++;
}
//模拟量
if(1 == pResult->m_nAnalog)
{
//成功
m_AnalogStat.nSuccess++;
}
else if(2 == pResult->m_nAnalog)
{
//失败
m_AnalogStat.nFail++;
}
//录波
if(1 == pResult->m_nOsc)
m_OscStat.nSuccess++;
else if( 2== pResult->m_nOsc)
m_OscStat.nFail++;
//历史事件
if(1 == pResult->m_nHistory)
m_nHistoryStat.nSuccess++;
else if( 2 == pResult->m_nHistory)
m_nHistoryStat.nFail++;
}
/*************************************************************
函 数 名:FillListData()
功能概要:将所有召唤结果加入到列表框中显示
返 回 值: void
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB402DE
void CAutoCallResult::FillListData()
{
//填充数据时禁止刷新
m_List.SetRedraw(FALSE);
//删除列表数据
m_List.DeleteAllItems();
POSITION pos = m_listResult.GetHeadPosition();
while(pos != NULL)
{
CCallResult* pResult = (CCallResult*)m_listResult.GetNext(pos);
if(pResult == NULL)
continue;
//加入到显示
AddResultToList(pResult);
}
//恢复刷新
m_List.SetRedraw(TRUE);
}
/*************************************************************
函 数 名:AddResultToList()
功能概要:把指定结果加入到列表中显示
返 回 值: void
参 数:param1 指定结果
Param2 要加入的位置
**************************************************************/
//##ModelId=49B87BB402DF
void CAutoCallResult::AddResultToList( CCallResult* pResult, int nIndex)
{
//检查数据有效性
if(pResult == NULL)
return;
//判断是否需要显示
if(!m_bShowNoFailed)
{
//不显示无失败的项目
if(!HasFaildItem(pResult))
{
//没有失败条目
return;
}
}
if(nIndex < 0)
return;
if(m_List.GetSafeHwnd() == NULL)
return;
if(pResult->m_pSec == NULL)
return;
CString str;
//0: 批次
str.Format("%d", pResult->m_nSaveNo);
if(m_List.InsertItem(LVIF_TEXT|LVIF_PARAM, nIndex, str, 0, 0, 0, nIndex) == -1)
return;
//1: 二次设备名
str = pResult->m_pSec->m_sName;
m_List.SetItemText(nIndex, 1, str);
//2: CPU号
CSecCPU * pCpu = GetCPU(pResult->m_pSec, pResult->m_nCPU);
if(pCpu != NULL)
{
str.Format("%d(%s)", pCpu->code, pCpu->des);
}
else
{
str.Format("%d", pResult->m_nCPU);
}
m_List.SetItemText(nIndex, 2, str);
//3:定值区号结果
str = GetResultString(pResult->m_nZone);
m_List.SetItemText(nIndex, 3, str);
//4:定值区号结果说明
if(pResult->m_nZone == 2)//失败
m_List.SetItemText(nIndex, 4, pResult->m_sZoneNote);
else
m_List.SetItemText(nIndex, 4, "-");
//5:定值结果
str = GetResultString(pResult->m_nSetting);
m_List.SetItemText(nIndex, 5, str);
//6:定值结果说明
if(pResult->m_nSetting == 2)//失败
m_List.SetItemText(nIndex, 6, pResult->m_sSettingNote);
else
m_List.SetItemText(nIndex, 6, "-");
//7:开关量结果
str = GetResultString(pResult->m_nDigital);
m_List.SetItemText(nIndex, 7, str);
//8:开关量结果说明
if(pResult->m_nDigital == 2)//失败
m_List.SetItemText(nIndex, 8, pResult->m_sDigitalNote);
else
m_List.SetItemText(nIndex, 8, "-");
//9:软压板结果
str = GetResultString(pResult->m_nSoftBoard);
m_List.SetItemText(nIndex, 9, str);
//10:软压板结果说明
if(pResult->m_nSoftBoard == 2)//失败
m_List.SetItemText(nIndex, 10, pResult->m_sSoftBoardNote);
else
m_List.SetItemText(nIndex, 10, "-");
//11:模拟量结果
str = GetResultString(pResult->m_nAnalog);
m_List.SetItemText(nIndex, 11, str);
//12:模拟量结果说明
if(pResult->m_nAnalog == 2)
m_List.SetItemText(nIndex, 12, pResult->m_sAnalogNote);
else
m_List.SetItemText(nIndex, 12, "-");
//13:录波结果
str = GetResultString(pResult->m_nOsc);
m_List.SetItemText(nIndex, 13, str);
//14:录波结果说明
if(pResult->m_nOsc == 2)
m_List.SetItemText(nIndex, 14, pResult->m_sOscNote);
else
m_List.SetItemText(nIndex, 14, "-");
//15:历史事件结果
str = GetResultString(pResult->m_nHistory);
m_List.SetItemText(nIndex, 15, str);
//16:历史事件结果说明
if(pResult->m_nHistory == 2)
m_List.SetItemText(nIndex, 16, pResult->m_sHistoryNote);
else
m_List.SetItemText(nIndex, 16, "-");
//17:结束时间
str = pResult->m_tmEnd.Format("%Y-%m-%d %H:%M:%S");
m_List.SetItemText(nIndex, 17, str);
//18:情况说明
m_List.SetItemText( nIndex, 18, GetDetailSituation(pResult->m_sSituation));
//19:处理意见
m_List.SetItemText( nIndex, 19, GetDetailDispose(pResult->m_sDispose));
//20:厂站名
str = "";
if(pResult->m_pStation != NULL)
{
str = pResult->m_pStation->m_sName;
}
m_List.SetItemText(nIndex, 20, str);
//21:一次设备名
str = "";
if(pResult->m_pSec->m_pOwner != NULL)
{
str = pResult->m_pSec->m_pOwner->m_sName;
}
m_List.SetItemText(nIndex, 21, str);
//22:所属厂家
str = "";
if (pResult->m_pStation != NULL)
{
str = pResult->m_pStation->m_sManufacturer;
}
m_List.SetItemText(nIndex, 22, str);
//23:所属调管单位
str = "";
if (pResult->m_pStation != NULL)
{
str = pResult->m_pStation->m_sManagedepartment;
}
m_List.SetItemText(nIndex, 23, str);
//24:运维单位
str = "";
if (pResult->m_pStation != NULL)
{
str = pResult->m_pStation->m_sMaintaindepartment;
}
m_List.SetItemText(nIndex, 24, str);
//关联数据
m_List.SetItemData(nIndex, (DWORD)pResult);
}
/*************************************************************
函 数 名:GetResultString()
功能概要:取得结果字符串
返 回 值: 结果字符串
参 数:param1 结果标志
Param2
**************************************************************/
//##ModelId=49B87BB402EF
CString CAutoCallResult::GetResultString( int nResult )
{
CString ret = "";
//0:未召唤 1:成功 2:失败
if(0 == nResult)
{
//未召唤
ret.LoadString(IDS_CALLRESULT_NOTCALL);
}
if(1 == nResult)
{
//成功
ret.LoadString(IDS_CALLRESULT_SUCCESS);
}
if(2 == nResult)
{
//失败
ret.LoadString(IDS_CALLRESULT_FAILED);
}
if(3 == nResult)
{
//装置不支持
ret.LoadString(IDS_CALLRESULT_NOSUPPORT);
}
if(4 == nResult)
{
ret.LoadString(IDS_CALLRESULT_NODATA);
}
return ret;
}
/*************************************************************
函 数 名:GetCPU()
功能概要:取得指定二次设备的指定CPU号的CPU对象
返 回 值: 找到返回CPU对象的指针, 未找到返回NULL
参 数:param1 指定二次设备
Param2 指定CPU号
**************************************************************/
//##ModelId=49B87BB402FE
CSecCPU* CAutoCallResult::GetCPU( CSecObj* pObj, int nCpu )
{
//检查数据有效性
if(pObj == NULL)
return NULL;
//查找
CSecCPU* pCpu = NULL;
for(int i = 0; i < pObj->m_arrCPU.GetSize(); i++)
{
CSecCPU* pTemp = (CSecCPU*)pObj->m_arrCPU.GetAt(i);
if(pTemp->code == nCpu)
{
//找到, 退出循环
pCpu = pTemp;
break;
}
}
return pCpu;
}
/*************************************************************
函 数 名:FillSummaryListData()
功能概要:填充概述列表框数据
返 回 值: void
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB4031C
void CAutoCallResult::FillSummaryListData()
{
if(m_ListSummary.GetSafeHwnd() == NULL)
return;
//清除旧数据
m_ListSummary.DeleteAllItems();
if(m_pStation == NULL)
return;
//"项目", "定值区号","定值","开关量","软压板","模拟量","概述"
CString str;
CString stemp = "";
CString sNotstart = stemp.LoadString(IDS_AUTOCALL_NOTSTART);
//第一行: 总数
//0: 项目
str.LoadString(IDS_AUTOCALLRESULT_TOTAL);
if(m_ListSummary.InsertItem(LVIF_TEXT|LVIF_PARAM, 0, str, 0, 0, 0, 0) == -1)
return;
//1:定值区号
str.Format("%d", m_ZoneStat.nFail+ m_ZoneStat.nSuccess);
m_ListSummary.SetItemText(0, 1, str);
//2:定值
str.Format("%d", m_SettingStat.nFail + m_SettingStat.nSuccess);
m_ListSummary.SetItemText(0, 2, str);
//3:开关量
str.Format("%d", m_DigitalStat.nFail + m_SettingStat.nSuccess);
m_ListSummary.SetItemText(0, 3, str);
//4:软压板
str.Format("%d", m_SoftBoardStat.nFail + m_SoftBoardStat.nSuccess);
m_ListSummary.SetItemText(0, 4, str);
//5:模拟量
str.Format("%d", m_AnalogStat.nFail + m_AnalogStat.nSuccess);
m_ListSummary.SetItemText(0, 5, str);
//6:录波
str.Format("%d", m_OscStat.nFail + m_OscStat.nSuccess);
m_ListSummary.SetItemText(0, 6, str);
//7:历史事件
str.Format("%d", m_nHistoryStat.nFail + m_nHistoryStat.nSuccess);
m_ListSummary.SetItemText(0, 7, str);
//8:概述
stemp.LoadString(IDS_AUTOCALL_STARTTIME);
str.Format("%s:%s", stemp ,m_tmStart.Format("%Y-%m-%d %H:%M:%S"));
m_ListSummary.SetItemText(0, 8, str);
//第二行: 成功数
//0: 项目
str.LoadString(IDS_AUTOCALLRESULT_SUCCESS_NUM);
if(m_ListSummary.InsertItem(LVIF_TEXT|LVIF_PARAM, 1, str, 0, 0, 0, 1) == -1)
return;
//1:定值区号
str.Format("%d", m_ZoneStat.nSuccess);
m_ListSummary.SetItemText(1, 1, str);
//2:定值
str.Format("%d", m_SettingStat.nSuccess);
m_ListSummary.SetItemText(1, 2, str);
//3:开关量
str.Format("%d", m_SettingStat.nSuccess);
m_ListSummary.SetItemText(1, 3, str);
//4:软压板
str.Format("%d", m_SoftBoardStat.nSuccess);
m_ListSummary.SetItemText(1, 4, str);
//5:模拟量
str.Format("%d", m_AnalogStat.nSuccess);
m_ListSummary.SetItemText(1, 5, str);
//6:录波
str.Format("%d", m_OscStat.nSuccess);
m_ListSummary.SetItemText(1, 6, str);
//7:历史事件
str.Format("%d", m_nHistoryStat.nSuccess);
m_ListSummary.SetItemText(1, 7, str);
//6:概述
CTime tm(1971, 1, 1, 1, 1, 1);
stemp.LoadString(IDS_AUTOCALL_ENDTIME);
str.Format("%s:%s", stemp, m_tmEnd==tm?sNotstart:m_tmEnd.Format("%Y-%m-%d %H:%M:%S"));
m_ListSummary.SetItemText(1, 8, str);
//第三行: 失败数
//0: 项目
str.LoadString(IDS_AUTOCALLRESULT_FAILED_NUM);
if(m_ListSummary.InsertItem(LVIF_TEXT|LVIF_PARAM, 2, str, 0, 0, 0, 2) == -1)
return;
//1:定值区号
str.Format("%d", m_ZoneStat.nFail);
m_ListSummary.SetItemText(2, 1, str);
//2:定值
str.Format("%d", m_SettingStat.nFail);
m_ListSummary.SetItemText(2, 2, str);
//3:开关量
str.Format("%d", m_DigitalStat.nFail);
m_ListSummary.SetItemText(2, 3, str);
//4:软压板
str.Format("%d", m_SoftBoardStat.nFail);
m_ListSummary.SetItemText(2, 4, str);
//5:模拟量
str.Format("%d", m_AnalogStat.nFail);
m_ListSummary.SetItemText(2, 5, str);
//6:录波
str.Format("%d", m_OscStat.nFail);
m_ListSummary.SetItemText(2, 6, str);
//7:历史事件
str.Format("%d", m_nHistoryStat.nFail);
m_ListSummary.SetItemText(2, 7, str);
//6:概述
CTimeSpan tmSpan;
tmSpan = m_tmEnd - m_tmStart;
stemp.LoadString(IDS_AUTOCALLRESULT_TOTALTIME);
CString sformat = GetDurationFormatStr();
str.Format("%s:%s", stemp, tmSpan<0?stemp.LoadString(IDS_AUTOCALL_NOTSTART):tmSpan.Format(sformat));
m_ListSummary.SetItemText(2, 8, str);
}
//##ModelId=49B87BB40399
BOOL CAutoCallResult::DestroyWindow()
{
// TODO: Add your specialized code here and/or call the base class
return CFormView::DestroyWindow();
}
//##ModelId=49B87BB5004E
void CAutoCallResult::OnDestroy()
{
//保存UI设置
if(NeedSave())
SaveListConfig();
CFormView::OnDestroy();
// TODO: Add your message handler code here
}
/*************************************************************
函 数 名:OnCustomDraw()
功能概要:响应列表个性化显示消息
返 回 值:
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB5005D
void CAutoCallResult::OnCustomDraw( NMHDR* pNMHDR, LRESULT* pResult )
{
if(pNMHDR ->code == NM_CUSTOMDRAW)
{
LPNMLVCUSTOMDRAW lplvcd = (LPNMLVCUSTOMDRAW)pNMHDR;
switch(lplvcd->nmcd.dwDrawStage)
{
case CDDS_PREPAINT:
{
*pResult = CDRF_NOTIFYITEMDRAW; // ask for item notifications.
break;
}
case CDDS_ITEMPREPAINT:
{
*pResult = CDRF_NOTIFYSUBITEMDRAW;
break;
}
case CDDS_ITEMPREPAINT | CDDS_SUBITEM :
{
int nItem = static_cast<int> (lplvcd->nmcd.dwItemSpec); //行索引
int nSubItem = lplvcd->iSubItem; //列索引
//先给默认值, 后面再特殊处理
lplvcd ->clrText = RGB(0, 0, 0);
lplvcd ->clrTextBk = RGB(255, 255, 255);
//"批次", "二次设备", "CPU号", "定值区号结果", "定值区号结果说明", "定值结果", "定值结果说明", "开关量结果", "开关量结果说明", "软压板结果", "软压板结果说明", "模拟量结果", "模拟量结果说明", "完成时间", "厂站名", "一次设备", "所属调管单位", "运维单位"
//结果列
if(nSubItem == 3 || nSubItem == 5 || nSubItem == 7 || nSubItem == 9 || nSubItem == 11)
{
CString str = m_List.GetItemText(nItem, nSubItem);
CString stemp;
if(stemp.LoadString(IDS_CALLRESULT_SUCCESS) && str.CompareNoCase(stemp) == 0)
{
lplvcd->clrText = g_BatchSuccess;
}
else if( stemp.LoadString(IDS_CALLRESULT_FAILED) && str.CompareNoCase(stemp) == 0)
{
lplvcd->clrText = g_BatchFail;
}
else if( stemp.LoadString(IDS_CALLRESULT_NOTCALL) && str.CompareNoCase(stemp) == 0)
{
lplvcd->clrText = g_BatchNULL;
}
else if( stemp.LoadString(IDS_CALLRESULT_NOSUPPORT) && str.CompareNoCase(stemp) == 0 )
{
lplvcd->clrText = g_BatchNotSupport;
}
}
*pResult = CDRF_NEWFONT;
break;
}
default:
*pResult = CDRF_DODEFAULT;
}
}
}
/*************************************************************
函 数 名:CompareFunction()
功能概要:比较函数,用于列表排序
返 回 值: 比较结果.1, 0, -1
参 数:param1 比较对象1
Param2 比较对象2
param3 比较参数
**************************************************************/
//##ModelId=49B87BB40214
int CALLBACK CAutoCallResult::CompareFunction( LPARAM lParam1, LPARAM lParam2, LPARAM lParamData )
{
//取得比较数据
CCallResult* pResult1 = (CCallResult*)lParam1;
CCallResult* pResult2 = (CCallResult*)lParam2;
if(pResult2 == NULL || pResult1 == NULL)
return 0;
int nCol = (int)lParamData;
CString str1, str2;
int iResult = 0;
//"批次", "二次设备", "CPU号", "定值区号结果", "定值区号结果说明",
//"定值结果", "定值结果说明", "开关量结果", "开关量结果说明",
//"软压板结果", "软压板结果说明", "模拟量结果", "模拟量结果说明",
//"完成时间", "厂站名", "一次设备", "所属调管单位", "运维单位"
switch(nCol)
{
case 0: //批次
iResult = 0;
break;
case 1: //二次设备
str1 = pResult1->m_pSec->m_sName;
str2 = pResult2->m_pSec->m_sName;
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
break;
case 2: //CPU
iResult = pResult1->m_nCPU - pResult2->m_nCPU;
break;
case 3: //定值区号结果
iResult = pResult1->m_nZone - pResult2->m_nZone;
break;
case 4: //定值区号结果说明
str1 = pResult1->m_sZoneNote;
str2 = pResult2->m_sZoneNote;
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
break;
case 5: //定值结果
iResult = pResult1->m_nSetting - pResult2->m_nSetting;
break;
case 6: //定值结果说明
str1 = pResult1->m_sSettingNote;
str2 = pResult2->m_sSettingNote;
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
break;
case 7: //开关量结果
iResult = pResult1->m_nDigital - pResult2->m_nDigital;
break;
case 8: //开关量结果说明
str1 = pResult1->m_sDigitalNote;
str2 = pResult2->m_sDigitalNote;
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
break;
case 9: //软压板结果
iResult = pResult1->m_nSoftBoard - pResult2->m_nSoftBoard;
break;
case 10: //软压板结果说明
str1 = pResult1->m_sSoftBoardNote;
str2 = pResult2->m_sSoftBoardNote;
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
break;
case 11: //模拟量结果
iResult = pResult1->m_nAnalog - pResult2->m_nAnalog;
break;
case 12: //模拟量结果说明
str1 = pResult1->m_sAnalogNote;
str2 = pResult2->m_sAnalogNote;
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
break;
case 13: //录波结果
iResult = pResult1->m_nOsc - pResult2->m_nOsc;
break;
case 14: //录波结果说明
str1 = pResult1->m_sOscNote;
str2 = pResult2->m_sOscNote;
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
break;
case 15: //历史事件结果
iResult = pResult1->m_nHistory - pResult2->m_nHistory;
break;
case 16: //历史事件结果说明
str1 = pResult1->m_sHistoryNote;
str2 = pResult2->m_sHistoryNote;
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
break;
case 17: //结束时间
str1 = pResult1->m_tmEnd.Format("%Y-%m-%d %H:%M:%S");
str2 = pResult2->m_tmEnd.Format("%Y-%m-%d %H:%M:%S");
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
break;
case 18: //厂站名
if(pResult1->m_pStation != NULL)
{
str1 = pResult1->m_pStation->m_sName;
}
else
str1 = "";
if(pResult2->m_pStation != NULL)
{
str2 = pResult2->m_pStation->m_sName;
}
else
str2 = "";
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
break;
case 19: //一次设备
if(pResult1->m_pSec->m_pOwner != NULL)
{
str1 = pResult1->m_pSec->m_pOwner->m_sName;
}
else
str1 = "";
if(pResult2->m_pSec->m_pOwner != NULL)
{
str2 = pResult2->m_pSec->m_pOwner->m_sName;
}
else
str2 = "";
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
break;
case 20: //所属厂家
if (pResult1->m_pStation != NULL && pResult2->m_pStation != NULL)
{
str1 = pResult1->m_pStation->m_sManufacturer;
str2 = pResult2->m_pStation->m_sManufacturer;
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
}
break;
case 21: //调管单位
if (pResult1->m_pStation != NULL && pResult2->m_pStation != NULL)
{
str1 = pResult1->m_pStation->m_sManagedepartment;
str2 = pResult2->m_pStation->m_sManagedepartment;
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
}
break;
case 22: //运维单位
{
str1 = pResult1->m_pStation->m_sMaintaindepartment;
str2 = pResult2->m_pStation->m_sMaintaindepartment;
iResult = lstrcmpi( str1.GetBuffer(0), str2.GetBuffer(0));
str1.ReleaseBuffer(0);
str2.ReleaseBuffer(0);
}
break;
default:
iResult = 0;
break;
}
iResult *= g_iResultViewAsc;
return iResult;
}
//##ModelId=49B87BB5006D
void CAutoCallResult::OnColumnclickListAutocallResult(NMHDR* pNMHDR, LRESULT* pResult)
{
NM_LISTVIEW* pNMListView = (NM_LISTVIEW*)pNMHDR;
// TODO: Add your control notification handler code here
//排序所点击的列
const int iCol = pNMListView->iSubItem;
if ( iCol == m_nOldSortCol )
{
//颠倒顺序排列
g_iResultViewAsc = - g_iResultViewAsc;
}
else
{
g_iResultViewAsc = 1;
m_nOldSortCol = iCol;
}
ListView_SortItems(m_List.GetSafeHwnd(), CompareFunction, iCol);
*pResult = 0;
}
/*************************************************************
函 数 名:GetOCTime()
功能概要:从数据库查询自动总召的时间
返 回 值: 查询成功返回TRUE, 失败返回FALSE
参 数:param1 对应tb_sys_config中的KEY
Param2 时间
**************************************************************/
//##ModelId=49B87BB4031D
BOOL CAutoCallResult::GetOCTime( CString sKey, CTime& tmTime )
{
CXJBrowserApp* pApp = (CXJBrowserApp*)AfxGetApp();
//组建查询条件
SQL_DATA sql;
sql.Conditionlist.clear();
sql.Fieldlist.clear();
//条件:KeyName,查询Value
Field Field1;
pApp->m_DBEngine.SetField(sql, Field1, "Value", EX_STTP_DATA_TYPE_STRING);
Condition condition1;
CString str;
str.Format("KEYNAME='%s'", sKey);
pApp->m_DBEngine.SetCondition(sql, condition1, str);
CMemSet* pMemset;
pMemset = new CMemSet;
char * sError = new char[MAXMSGLEN];
memset(sError, '\0', MAXMSGLEN);
int nResult;
try
{
nResult = pApp->m_DBEngine.XJSelectData(EX_STTP_INFO_TBSYSCONFIG, sql, sError, pMemset);
}
catch (CException* e)
{
e->Delete();
WriteLog("CAutoCallResult::GetOCTime, 查询失败");
delete[] sError;
delete pMemset;
return FALSE;
}
if(pMemset != NULL && nResult == 1)
{
//查询成功
pMemset->MoveFirst();
int nCount = pMemset->GetMemRowNum();
if(nCount > 0)
{
str = pMemset->GetValue(UINT(0));
tmTime = StringToTime(str);
}
}
else
{
CString str;
str.Format("CAutoCallResult::GetOCTime, 查询失败,原因为%s", sError);
WriteLog(str);
return FALSE;
}
delete[] sError;
delete pMemset;
sError = NULL;
pMemset = NULL;
return TRUE;
}
/*************************************************************
函 数 名:ReFillAll()
功能概要:重新载入所有数据
返 回 值:
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB4032D
void CAutoCallResult::ReFillAll(int nSaveNo)
{
// g_wndWait.Show(SPLASH_NOTIMER);
//查询批次与最新批次
if(m_pStation != NULL && nSaveNo == -1)
{
QuerySaveNo(m_pStation->m_sID);
QueryNewSaveNo(m_pStation->m_sID);
}
else
{
QuerySaveNo("");
QueryNewSaveNo("");
}
if(nSaveNo < 1)
m_nSelSaveNo = m_nNewSaveNo;
else
m_nSelSaveNo = nSaveNo;
LoadDataFromDB(m_nSelSaveNo);
FillListData();
FillSummaryListData();
// g_wndWait.Hide();
}
/*************************************************************
函 数 名:OnAutoCallResultChange()
功能概要:响应选择改变消息
返 回 值:
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB500AB
void CAutoCallResult::OnAutoCallResultChange( WPARAM wParam, LPARAM lParam )
{
//取得选择的设备
CDeviceObj* pDevice = (CDeviceObj*)lParam;
if(pDevice == NULL)
{
//全部显示
ReFillAll(-1);
m_bSelectRoot = TRUE;
return;
}
m_bSelectRoot = FALSE;
m_nSelSaveNo = 0;
//判断是不是厂站
if(pDevice->m_nType != TYPE_STATION)
{
m_pStation = NULL;
return;
}
else
{
CStationObj* pStation = (CStationObj*)pDevice;
if(pStation != m_pStation)
{
m_pStation = pStation;
}
else
return;
}
//刷新数据
ReFillAll(-1);
//m_pStation = NULL;
}
/*************************************************************
函 数 名:ClearStat()
功能概要:清除统计结果
返 回 值:
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB4033C
void CAutoCallResult::ClearStat()
{
m_ZoneStat.nFail = 0;
m_ZoneStat.nSuccess = 0;
m_SettingStat.nSuccess =0;
m_SettingStat.nFail = 0;
m_DigitalStat.nFail = 0;
m_DigitalStat.nSuccess = 0;
m_SoftBoardStat.nSuccess = 0;
m_SoftBoardStat.nFail = 0;
m_AnalogStat.nFail = 0;
m_AnalogStat.nSuccess = 0;
m_OscStat.nFail = 0;
m_OscStat.nSuccess = 0;
m_nHistoryStat.nFail = 0;
m_nHistoryStat.nSuccess = 0;
CTime tm(1971, 1, 1, 1, 1, 1);
m_tmEnd = tm;
CTime tm1(2029, 1, 1, 1, 1, 1);
m_tmStart = tm1;
}
//##ModelId=49B87BB5007E
void CAutoCallResult::OnContextMenu(CWnd* pWnd, CPoint point)
{
// TODO: Add your message handler code here
//CListCtrlEx先截取了WM_CONTEXTMENU消息, 处理完后再转完给所有者窗口
//所以这里先得到消息参数再处理消息
LPMSG msg;
msg = (LPMSG)GetCurrentMessage();
UINT wParam = (UINT)msg ->wParam;
if(wParam == LISTCTRLEX_MARK)
{
CPoint * ptTemp = (CPoint*)msg->lParam;
point = *ptTemp;
//判断是右击在列头还是列表,只处理列表,列头在CListCtrlEx中处理
CPoint pt = point;
m_List.ScreenToClient(&pt);
CWnd* pChildWnd = m_List.ChildWindowFromPoint(pt);
if(pChildWnd != NULL && pChildWnd->GetSafeHwnd() != m_List.GetSafeHwnd())
{
char szClass [50];
// Verify that this window handle is indeed the header
// control's by checking its classname.
GetClassName(pChildWnd->GetSafeHwnd(), szClass, 50);
if (!lstrcmp (szClass, "SysHeader32"))
{
}
}
else if(pChildWnd != NULL && pChildWnd->GetSafeHwnd() == m_List.GetSafeHwnd())
{//点击的是ListCtrl的非列头部分
//生成菜单
CMenu Menu, *pMenu;
if(!Menu.LoadMenu(IDR_MENU_RESULT))
return;
pMenu = Menu.GetSubMenu(0);
if(GetPrevSaveNo(m_nSelSaveNo) > 0)
pMenu->EnableMenuItem(IDC_RESULT_PREV, MF_ENABLED);
if(GetNextSaveNo(m_nSelSaveNo) > 0)
pMenu->EnableMenuItem(IDC_RESULT_NEXT, MF_ENABLED);
if( !m_bSelectRoot )
pMenu->EnableMenuItem(IDC_RESULT_STATIONEXPORT, MF_DISABLED);
if(!m_bShowNoFailed)
{
//隐藏无失败项目
pMenu->CheckMenuItem(IDC_RESULT_SHOWFAILD, MF_CHECKED);
}
else
{
//显示
pMenu->CheckMenuItem(IDC_RESULT_SHOWFAILD, MF_UNCHECKED);
}
pMenu ->TrackPopupMenu(TPM_LEFTALIGN | TPM_LEFTBUTTON, point.x, point.y, this);
}
}
}
//##ModelId=49B87BB5008D
void CAutoCallResult::OnResultExport()
{
// TODO: Add your command handler code here
CTime t = CTime::GetCurrentTime();
CString strName = "";
if(m_pStation != NULL)
{
strName.Format("[%s]%s-%s.xls", m_pStation->m_sName, StringFromID(IDS_FUNC_AUTOCALLRESULT), t.Format("%Y%m%d%H%M%S"));
}
else
{
strName.Format("%s-%s.xls", StringFromID(IDS_FUNC_AUTOCALLRESULT), t.Format("%Y%m%d%H%M%S"));
}
//取得用户选择文件夹
CString strPath = GetSelectDir();
if(strPath.IsEmpty())
return;
strPath += strName;
if(WriteResultToExcel(strPath))
{
//导出成功
if(AfxMessageBox(IDS_COMMON_EXPORT_SUCCESS, MB_OKCANCEL) == IDOK)
{
CString str = "/n,/select,";
str += strPath;
ShellExecute(GetSafeHwnd(), NULL, "Explorer.exe", str, NULL, SW_SHOW);
}
}
else
{
//导出失败
AfxMessageBox(IDS_COMMON_EXPORT_FAIL);
}
}
/*************************************************************
函 数 名:AddResultToExcel()
功能概要:将指定的结果项写入到指定的Excel文件中
返 回 值: void
参 数:param1 数据库对象
Param2 结果项
**************************************************************/
//##ModelId=49B87BB4033D
void CAutoCallResult::AddResultToExcel( CDatabase* pDatabase, CCallResult* pResult )
{
if(pResult == NULL)
return;
//判断是否需要显示
if(!m_bShowNoFailed)
{
//不显示无失败的项目
if(!HasFaildItem(pResult))
{
//没有失败条目
return;
}
}
if(pResult->m_pSec == NULL)
return;
CString strSaveNO;
strSaveNO.Format("%d", pResult->m_nSaveNo);
CString strSQL;
CString strCPU = "";
CSecCPU * pCpu = GetCPU(pResult->m_pSec, pResult->m_nCPU);
if(pCpu != NULL)
{
strCPU.Format("%d(%s)", pCpu->code, pCpu->des);
}
else
{
strCPU.Format("%d", pResult->m_nCPU);
}
//8:厂站名
CString strStation = "";
if(pResult->m_pStation != NULL)
{
strStation = pResult->m_pStation->m_sName;
}
//9:一次设备名
CString strDevice = "";
if(pResult->m_pSec->m_pOwner != NULL)
{
strDevice = pResult->m_pSec->m_pOwner->m_sName;
}
CString strManufacturer = "";
if (pResult->m_pStation != NULL)
{
strManufacturer = pResult->m_pStation->m_sManufacturer;
}
//17:所属调管单位
CString sManagedepartment = "";
if (pResult->m_pStation != NULL)
{
sManagedepartment = pResult->m_pStation->m_sManagedepartment;
}
//18:运维单位
CString sMaintaindepartment = "";
if (pResult->m_pStation != NULL)
{
sMaintaindepartment = pResult->m_pStation->m_sMaintaindepartment;
}
strSQL.Format("INSERT INTO Log VALUES ('%s', '%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')",
strSaveNO, pResult->m_pSec->m_sName, strCPU,
GetResultString(pResult->m_nZone), pResult->m_nZone==2?pResult->m_sZoneNote:"-",
GetResultString(pResult->m_nSetting), pResult->m_nSetting==2?pResult->m_sSettingNote:"-",
GetResultString(pResult->m_nDigital), pResult->m_nDigital==2?pResult->m_sDigitalNote:"-",
GetResultString(pResult->m_nSoftBoard), pResult->m_nSoftBoard==2?pResult->m_sSoftBoardNote:"-",
GetResultString(pResult->m_nAnalog), pResult->m_nAnalog==2?pResult->m_sAnalogNote:"-",
GetResultString(pResult->m_nOsc), pResult->m_nOsc==2?pResult->m_sOscNote:"-",
GetResultString(pResult->m_nHistory), pResult->m_nHistory==2?pResult->m_sHistoryNote:"-",
pResult->m_tmEnd.Format("%Y-%m-%d %H:%M:%S"),GetDetailSituation(pResult->m_sSituation),
GetDetailDispose(pResult->m_sDispose),
strStation, strDevice, strManufacturer, sManagedepartment, sMaintaindepartment);
pDatabase->ExecuteSQL(strSQL);
}
/*************************************************************
函 数 名:WriteResultToExcel()
功能概要:将结果导出到Excel
返 回 值:
参 数:param1 文件路径
Param2
**************************************************************/
//##ModelId=49B87BB4034C
BOOL CAutoCallResult::WriteResultToExcel( CString strFullPath )
{
CDatabase database;
CString strDriver = "MICROSOFT EXCEL DRIVER (*.XLS)";
CString strSQL,str;
strSQL.Format("DRIVER={%s};DSN='''';FIRSTROWHASNAMES=1;READONLY=FALSE;CREATE_DB=\"%s\";DBQ=%s",
strDriver, strFullPath, strFullPath);
CFileFind find;
BOOL IsFind = FALSE;
IsFind = find.FindFile(strFullPath, 0);
try
{
if( database.OpenEx(strSQL,CDatabase::noOdbcDialog) )
{
if(!IsFind)
{
//新建
strSQL.Format("CREATE TABLE Log(\"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT,\"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT)",
StringFromID(IDS_AUTOCALLRESULT_NUMBER), StringFromID(IDS_MODEL_SECONDARY), StringFromID(IDS_MODEL_CPU), StringFromID(IDS_AUTOCALLRESULT_ZONE),
StringFromID(IDS_AUTOCALLRESULT_ZONE_NOTE), StringFromID(IDS_AUTOCALLRESULT_SETTING), StringFromID(IDS_AUTOCALLRESULT_SETTING_NOTE),
StringFromID(IDS_AUTOCALLRESULT_DIGITAL), StringFromID(IDS_AUTOCALLRESULT_DIGITAL_NOTE), StringFromID(IDS_AUTOCALLRESULT_SOFT), StringFromID(IDS_AUTOCALLRESULT_SOFT_NOTE),
StringFromID(IDS_AUTOCALLRESULT_ANALOG), StringFromID(IDS_AUTOCALLRESULT_ANALOG_NOTE), StringFromID(IDS_AUTOCALLRESULT_OSC), StringFromID(IDS_AUTOCALLRESULT_OSC_NOTE),
StringFromID(IDS_AUTOCALLRESULT_HISEVENT), StringFromID(IDS_AUTOCALLRESULT_HISEVENT_NOTE), StringFromID(IDS_COMMON_FINISHTIME), StringFromID(IDS_AUTOCALLRESULT_OVERVIEW),
StringFromID(IDS_AUTOCALLRESULT_RESOLUTION), StringFromID(IDS_MODEL_SUBSTATION), StringFromID(IDS_MODEL_PRIMARY), StringFromID(IDS_MODEL_MANUFACTURER),
StringFromID(IDS_MODEL_MANAGEMENT), StringFromID(IDS_MODEL_MAINTENANCE));
database.ExecuteSQL(strSQL);
}
POSITION pos = m_listResult.GetHeadPosition();
while(pos != NULL)
{
CCallResult* pResult = (CCallResult*)m_listResult.GetNext(pos);
if(pResult == NULL)
continue;
AddResultToExcel(&database, pResult);
}
}
else
return FALSE;
database.Close();
}
catch(CDBException * e)
{
WriteLog("创建Excel表错误: " + e->m_strError, XJ_LOG_LV1);
return FALSE;
}
return TRUE;
}
BOOL CAutoCallResult::WriteResultToExcel(CString strFullPath, CString sStationID)
{
CDatabase database;
CString strDriver = "MICROSOFT EXCEL DRIVER (*.XLS)";
CString strSQL,str;
strSQL.Format("DRIVER={%s};DSN='''';FIRSTROWHASNAMES=1;READONLY=FALSE;CREATE_DB=\"%s\";DBQ=%s",
strDriver, strFullPath, strFullPath);
CFileFind find;
BOOL IsFind = FALSE;
IsFind = find.FindFile(strFullPath, 0);
try
{
if( database.OpenEx(strSQL,CDatabase::noOdbcDialog) )
{
POSITION pos = m_listResult.GetHeadPosition();
while(pos != NULL)
{
CCallResult* pResult = (CCallResult*)m_listResult.GetNext(pos);
if(pResult == NULL)
continue;
if( pResult->m_sStationId == sStationID )
{
if(!IsFind)
{
//新建
strSQL.Format("CREATE TABLE Log(\"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT,\"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT, \"%s\" TEXT)",
StringFromID(IDS_AUTOCALLRESULT_NUMBER), StringFromID(IDS_MODEL_SECONDARY), StringFromID(IDS_MODEL_CPU), StringFromID(IDS_AUTOCALLRESULT_ZONE),
StringFromID(IDS_AUTOCALLRESULT_ZONE_NOTE), StringFromID(IDS_AUTOCALLRESULT_SETTING), StringFromID(IDS_AUTOCALLRESULT_SETTING_NOTE),
StringFromID(IDS_AUTOCALLRESULT_DIGITAL), StringFromID(IDS_AUTOCALLRESULT_DIGITAL_NOTE), StringFromID(IDS_AUTOCALLRESULT_SOFT), StringFromID(IDS_AUTOCALLRESULT_SOFT_NOTE),
StringFromID(IDS_AUTOCALLRESULT_ANALOG), StringFromID(IDS_AUTOCALLRESULT_ANALOG_NOTE), StringFromID(IDS_AUTOCALLRESULT_OSC), StringFromID(IDS_AUTOCALLRESULT_OSC_NOTE),
StringFromID(IDS_AUTOCALLRESULT_HISEVENT), StringFromID(IDS_AUTOCALLRESULT_HISEVENT_NOTE), StringFromID(IDS_COMMON_FINISHTIME), StringFromID(IDS_AUTOCALLRESULT_OVERVIEW),
StringFromID(IDS_AUTOCALLRESULT_RESOLUTION), StringFromID(IDS_MODEL_SUBSTATION), StringFromID(IDS_MODEL_PRIMARY), StringFromID(IDS_MODEL_MANUFACTURER),
StringFromID(IDS_MODEL_MANAGEMENT), StringFromID(IDS_MODEL_MAINTENANCE));
database.ExecuteSQL(strSQL);
IsFind = TRUE;
}
AddResultToExcel(&database, pResult);
}
}
}
else
return FALSE;
database.Close();
}
catch(CDBException * e)
{
TRACE("数据库错误: " + e->m_strError);
return FALSE;
}
return TRUE;
}
/*************************************************************
函 数 名:TranslateSingleKey()
功能概要:解释单个关键字的意义
返 回 值: 关键字表示的值
参 数:param1 关键字
Param2
**************************************************************/
//##ModelId=49B87BB4037C
CString CAutoCallResult::TranslateSingleKey( CString sKey )
{
//判断数据有效性
if(sKey == "")
return "";
if(m_List.GetSafeHwnd() == NULL)
return "";
CString sReturn = "";
int nFind = -1;
//判断是否带有[ ]运算符
nFind = sKey.Find('[', 0);
if(nFind > -1)
{
//带有[]运算符
int nFind2 = sKey.Find(']', nFind);
if(nFind2 == -1)
{
//没找到结束括号
return "";
}
//取得索引号
CString strIndex = sKey.Mid(nFind+1, nFind2- nFind - 1);
int nIndex = atoi(strIndex);
//取得头部
CString strHead = sKey.Left(nFind);
//取得事件
CCallResult* pResult = NULL;
if(strHead == "$AUTORESULT_LIST")
{
int nCount = 0;
POSITION pos = NULL;
pos = m_listResult.GetHeadPosition();
while(pos != NULL)
{
pResult = (CCallResult*)m_listResult.GetNext(pos);
if(nCount == nIndex)
break;
nCount++;
}
}
if(pResult == NULL)
return "";
if(pResult->m_pSec == NULL)
return "";
CString str;
//取得尾部字符
CString strTail = sKey.Right(sKey.GetLength() - (nFind2 + 3));
if(strTail == "PT_NAME$")
{
//二次设备名
return pResult->m_pSec->m_sName;
}
if(strTail == "PT_MODEL$")
{
//二次设备型号
return pResult->m_pSec->m_sModel;
}
if(strTail == "PT_CPU$")
{
//CPU号
str = "";
str.Format("%d", pResult->m_nCPU);
return str;
}
if(strTail == "ZONE_RESULT$")
{
//定值区号结果
return GetResultString(pResult->m_nZone);
}
if(strTail == "SETTING_RESULT$")
{
//定值结果
return GetResultString(pResult->m_nSetting);
}
if(strTail == "DIGITAL_RESULT$")
{
//开关量结果
return GetResultString(pResult->m_nDigital);
}
if(strTail == "SOFTBOARD_RESULT$")
{
//软压板结果
return GetResultString(pResult->m_nSoftBoard);
}
if(strTail == "ANALOG_RESULT$")
{
//模拟量结果
return GetResultString(pResult->m_nAnalog);
}
if(strTail == "COMPLETE_TIME$")
{
//结束时间
return pResult->m_tmEnd.Format("%Y-%m-%d %H:%M:%S");
}
if(strTail == "STATION_NAME$")
{
//厂站名
str = "";
if(pResult->m_pStation != NULL)
{
str = pResult->m_pStation->m_sName;
}
return str;
}
if(strTail == "DEVICE_NAME$")
{
//9:一次设备名
str = "";
if(pResult->m_pSec->m_pOwner != NULL)
{
str = pResult->m_pSec->m_pOwner->m_sName;
}
return str;
}
}
else
{
//判断是否有.GetCount()方法
nFind = sKey.Find(".GetCount()", 0);
if(nFind > -1)
{
//有.GetCount()方法
if(sKey == "$AUTORESULT_LIST.GetCount()$")
{
sReturn.Format("%d", m_List.GetItemCount());
return sReturn;
}
}
else
{
if(sKey == "$STATION_NAME$")
{
//厂站名
if(m_pStation == NULL)
return "";
return m_pStation->m_sName;
}
}
}
return "";
}
/*************************************************************
函 数 名:InitCOM()
功能概要:初始化打印模板COM组件
返 回 值: 初始化成功返回TRUE, 失败返回FALSE
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB4035B
BOOL CAutoCallResult::InitCOM()
{
/*HRESULT hr;
if((hr = ::CLSIDFromProgID(L"XJReportDoc", &clsid)) != NOERROR)
{
TRACE("unable to find program ID -- error= %x\n", hr);
return FALSE;
}
if((hr = ::CoGetClassObject(clsid, CLSCTX_INPROC_SERVER, NULL,
IID_IClassFactory, (void **)&pClf)) != NOERROR)
{
TRACE("unable to find CLSID -- error = %x\n", hr);
return FALSE;
}
pClf ->CreateInstance(NULL, IID_IUnknown, (void **)&pUnk);
pUnk ->QueryInterface(IID_IXJReport, (void **)&pReportDoc);
return TRUE;*/
return InitReportComNoReg(pClf, pReportDoc);
}
/*************************************************************
函 数 名:ReleaseCOM()
功能概要:删除COM组件
返 回 值:
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB4035C
void CAutoCallResult::ReleaseCOM()
{
if(pClf != NULL)
{
pClf->Release();
pClf = NULL;
}
if(pUnk != NULL)
{
pUnk->Release();
pUnk = NULL;
}
if(pReportDoc != NULL)
{
pReportDoc->Release();
pReportDoc = NULL;
}
}
//##ModelId=49B87BB5008F
void CAutoCallResult::OnResultPrint()
{
// TODO: Add your command handler code here
//打印
InitCOM();
//打开模板文件
BOOL bOpened = FALSE;
if(pReportDoc != NULL)
{
CSize szTemp = OpenReportFile(pReportDoc, AUTORESULT_LIST);
if(szTemp.cx != 0 && szTemp.cy != 0)
{
bOpened = TRUE;
}
else
{
CString sLog;
sLog.Format("打开打印模板文件失败.\r\n%s", AUTORESULT_LIST);
WriteLog(sLog, XJ_LOG_LV1);
AfxMessageBox(sLog);
}
}
//设置回调函数
if(pReportDoc != NULL && bOpened)
pReportDoc->SetQueryFunction(TranslateKeyInAutoCallResult);
if(pReportDoc != NULL && bOpened)
pReportDoc->FillValueData();
//打印
if(pReportDoc != NULL && bOpened)
{
g_hook = 1;
pReportDoc->Print();
g_hook = 0;
}
//删除COM
ReleaseCOM();
}
/*************************************************************
函 数 名:QuerySaveNo()
功能概要:查询指定站点的总召批次
返 回 值: void
参 数:param1 站ID
Param2
**************************************************************/
//##ModelId=49B87BB4035D
void CAutoCallResult::QuerySaveNo( CString sStationID )
{
ClearSaveNo();
CXJBrowserApp * pApp = (CXJBrowserApp*)AfxGetApp();
//组建查询条件
SQL_DATA sql;
sql.Conditionlist.clear();
sql.Fieldlist.clear();
CString str;
//字段
Field Field1;
pApp->m_DBEngine.SetField(sql, Field1, "SaveNo", EX_STTP_DATA_TYPE_INT);
//条件
Condition Condition1;
str.Format("Is_Auto = 0");
pApp->m_DBEngine.SetCondition(sql, Condition1, str);
if (sStationID != "")
{
Condition con2;
str.Format("station_id = '%s'", sStationID);
pApp->m_DBEngine.SetCondition(sql, con2, str);
}
//按时间排序
// Condition condition3;
// str.Format("order by TIME DESC");
// pApp->m_DBEngine.SetCondition(sql, condition3, str, EX_STTP_WHERE_ABNORMALITY);//非where
CMemSet* pMemset;
pMemset = new CMemSet;
char * sError = new char[MAXMSGLEN];
memset(sError, '\0', MAXMSGLEN);
int nResult;
try
{
nResult = pApp->m_DBEngine.XJSelectData(EX_STTP_INFO_OC_RESULT_CFG, sql, sError, pMemset);
}
catch (...)
{
WriteLog("CAutoCallResult::QuerySaveNo, 查询失败");
delete[] sError;
delete pMemset;
return;
}
if(pMemset != NULL && nResult == 1)
{
pMemset->MoveFirst();
int nCount = pMemset->GetMemRowNum();
for(int i = 0; i < nCount; i++)
{
//保存到数组中
SaveNumber* sn = new SaveNumber;
CString str = pMemset->GetValue(UINT(0));
sn->nSaveNo = atoi(str);
// str = pMemset->GetValue(1);
// sn->tmTime = StringToTime(str);
m_arrSaveNo.Add(sn);
pMemset->MoveNext();
}
}
else
{
CString str;
str.Format("CAutoCallResult::QuerySaveNo,查询失败,原因为%s", sError);
WriteLog(str);
}
delete[] sError;
delete pMemset;
sError = NULL;
pMemset = NULL;
//排序
SortSaveNo();
}
/*************************************************************
函 数 名:QueryNewSaveNo()
功能概要:查询指定站点的最新的总召批次号
返 回 值:
参 数:param1 站ID
Param2
**************************************************************/
//##ModelId=49B87BB4035F
void CAutoCallResult::QueryNewSaveNo( CString sStationID )
{
CXJBrowserApp * pApp = (CXJBrowserApp*)AfxGetApp();
//组建查询条件
SQL_DATA sql;
sql.Conditionlist.clear();
sql.Fieldlist.clear();
CString str;
//字段
Field Field1;
pApp->m_DBEngine.SetField(sql, Field1, "SaveNo", EX_STTP_DATA_TYPE_INT);
Field Field2;
pApp->m_DBEngine.SetField(sql, Field2, "1", EX_STTP_DATA_TYPE_TOP);
//条件
Condition Condition1;
str.Format("Is_Auto = 0");
pApp->m_DBEngine.SetCondition(sql, Condition1, str);
if (sStationID != "")
{
Condition con2;
str.Format("station_id = '%s'", sStationID);
pApp->m_DBEngine.SetCondition(sql, con2, str);
}
//按时间排序
Condition condition3;
str.Format("order by TIME DESC");
pApp->m_DBEngine.SetCondition(sql, condition3, str, EX_STTP_WHERE_ABNORMALITY);//非where
CMemSet* pMemset;
pMemset = new CMemSet;
char * sError = new char[MAXMSGLEN];
memset(sError, '\0', MAXMSGLEN);
int nResult;
try
{
nResult = pApp->m_DBEngine.XJSelectData(EX_STTP_INFO_OC_RESULT_CFG, sql, sError, pMemset);
}
catch (...)
{
WriteLog("CAutoCallResult::QueryNewSaveNo, 查询失败");
delete[] sError;
delete pMemset;
return;
}
if(pMemset != NULL && nResult == 1)
{
pMemset->MoveFirst();
int nCount = pMemset->GetMemRowNum();
for(int i = 0; i < nCount; i++)
{
//保存到数组中
CString str = pMemset->GetValue(UINT(0));
m_nNewSaveNo = atoi(str);
pMemset->MoveNext();
}
}
else
{
CString str;
str.Format("CAutoCallResult::QueryNewSaveNo,查询失败,原因为%s", sError);
WriteLog(str);
}
delete[] sError;
delete pMemset;
sError = NULL;
pMemset = NULL;
}
/*************************************************************
函 数 名:GetPrevSaveNo()
功能概要:取得上一批次的批次号
返 回 值: 上一批次批次号
参 数:param1 当前批次号
Param2
**************************************************************/
//##ModelId=49B87BB4036C
int CAutoCallResult::GetPrevSaveNo( int nCurSaveNo )
{
if(nCurSaveNo == m_nOldSaveNo)
{
//是最老的
return -1;
}
int nSaveNo = nCurSaveNo - 1;
if(nSaveNo < m_nMinSaveNo)
{
nSaveNo = m_nMaxSaveNo;
}
return nSaveNo;
}
/*************************************************************
函 数 名:GetNextSaveNo()
功能概要:取得下一批次的批次号
返 回 值: 下一批次批次号
参 数:param1 当前批次号
Param2
**************************************************************/
//##ModelId=49B87BB4036E
int CAutoCallResult::GetNextSaveNo( int nCurSaveNo )
{
if(nCurSaveNo == m_nNewSaveNo)
return -1; //是最新的
int nSaveNo = nCurSaveNo + 1;
if(nSaveNo > m_nMaxSaveNo)
{
nSaveNo = m_nMinSaveNo;
}
return nSaveNo;
}
//##ModelId=49B87BB50091
void CAutoCallResult::OnResultPrev()
{
// TODO: Add your command handler code here
ReFillAll(GetPrevSaveNo(m_nSelSaveNo));
}
//##ModelId=49B87BB5009C
void CAutoCallResult::OnResultNext()
{
// TODO: Add your command handler code here
ReFillAll(GetNextSaveNo(m_nSelSaveNo));
}
/*************************************************************
函 数 名:ClearSaveNo()
功能概要:清除批次记录
返 回 值:
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB4037A
void CAutoCallResult::ClearSaveNo()
{
for(int i = 0; i < m_arrSaveNo.GetSize(); i++)
{
SaveNumber * sn = (SaveNumber*)m_arrSaveNo.GetAt(i);
if(sn != NULL)
delete sn;
}
m_arrSaveNo.RemoveAll();
}
/*************************************************************
函 数 名:SortSaveNo()
功能概要:对批次按时间从旧到新进行排序
返 回 值:
参 数:param1
Param2
**************************************************************/
//##ModelId=49B87BB4037B
void CAutoCallResult::SortSaveNo()
{
int nMax = 0;
int nMin = 99;
//查找最大,最小批次号
for(int i = 0; i < m_arrSaveNo.GetSize(); i++)
{
SaveNumber* sn = (SaveNumber*)m_arrSaveNo.GetAt(i);
if(sn == NULL)
continue;
if(sn->nSaveNo > nMax)
nMax = sn->nSaveNo;
if(sn->nSaveNo < nMin)
nMin = sn->nSaveNo;
}
m_nMaxSaveNo = nMax;
m_nMinSaveNo = nMin;
if(m_nNewSaveNo == nMax)
{
//最新的批次号等于最大的批次号, 则最小的批次号为最老的
m_nOldSaveNo = nMin;
}
else if(m_nNewSaveNo < nMax)
{
//最新的批次号小于最大的批次号, 则最老的批次号为最新的批次号+1
m_nOldSaveNo = m_nNewSaveNo+1;
}
}
/*************************************************************
函 数 名: HasFaildItem()
功能概要: 判断一个自动总召的结果项是否有失败条目
返 回 值: 有失败条目返回TRUE, 无失败条目返回FALSE
参 数: param1 指定自动总召结果项对象
Param2
**************************************************************/
BOOL CAutoCallResult::HasFaildItem( CCallResult* pResult )
{
if(pResult == NULL)
return TRUE;
//0:未召唤 1:成功 2:失败 3: 装置不支持
if(2 == pResult->m_nZone) //定值区号
return TRUE;
if(2 == pResult->m_nSetting) //定值
return TRUE;
if(2 == pResult->m_nDigital) //开关量
return TRUE;
if(2 == pResult->m_nAnalog) //模拟量
return TRUE;
if(2 == pResult->m_nSoftBoard) //软压板
return TRUE;
if(2 == pResult->m_nOsc)//录波
return TRUE;
if(2 == pResult->m_nHistory)//历史事件
return TRUE;
return FALSE;
}
void CAutoCallResult::OnResultShowfaild()
{
// TODO: Add your command handler code here
m_bShowNoFailed = !m_bShowNoFailed;
//重新填充列表
FillListData();
}
void CAutoCallResult::OnWinClose()
{
// TODO: Add your command handler code here
GetParentFrame()->SendMessage(WM_CLOSE);
}
void CAutoCallResult::OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView)
{
// TODO: Add your specialized code here and/or call the base class
CXJBrowserApp* pApp = (CXJBrowserApp*)AfxGetApp();
pApp->SetAppTile(StringFromID(IDS_FUNC_AUTOCALLRESULT));
CFormView::OnActivateView(bActivate, pActivateView, pDeactiveView);
}
void CAutoCallResult::OnResultStationexport()
{
// TODO: Add your command handler code here
m_pExportProcess = NULL;
CTime t = CTime::GetCurrentTime();
CString strName = "";
strName.Format("%s-%s", StringFromID(IDS_FUNC_AUTOCALLRESULT), t.Format("%Y%m%d%H%M%S"));
//取得用户选择文件夹
CString strPath = GetSelectDir();
if(strPath.IsEmpty())
return;
strPath += strName;
//创建文件夹
CreateDirectory(strPath,NULL);
g_sRootDirPath = strPath;
CDlgExportProcess dlg;
m_pExportProcess = &dlg;
AfxBeginThread(ExportByStation,this,THREAD_PRIORITY_BELOW_NORMAL);
dlg.DoModal();
}
|
d1cf2b000ad5b38df9152ba1a159d9ed595e5f57 | 8fe2d7853c375adecd4549de13988aa01c637c09 | /base/mygrid.h | 79dc7058029e8618708bb00a0efc1fb41f3810a3 | [] | no_license | borjabrisson/WxAF | 85a5bc6ccc8b440a8e9152a6ed795f705f81b5c0 | 73fe724ea8331bb8cd9aba17284f0a3d806f772b | refs/heads/master | 2020-05-19T12:45:50.960072 | 2014-01-18T15:56:37 | 2014-01-18T15:56:37 | 11,108,041 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,094 | h | mygrid.h | // hworld.cpp
// Version using dynamic event routing
// http://docs.wxwidgets.org/trunk/group__group__funcmacro__events.html
#ifndef MY_GRID_H_
#define MY_GRID_H_
#include <wx/wx.h>
#include <wx/grid.h>
#include <wx/string.h>
#include <wx/object.h>
#include <wx/string.h>
#include <wx/colour.h>
#include "../configuracion/configuracion.h"
// http://www.cplusplus.com/reference/stl/
/*
void SetColLabelValue (int col, const wxString &value)
Set the value for the given column label.
void SetCellValue (const wxString &val, int row, int col)
### Miscellaneous Functions
### Sorting support.
void SetSortingColumn (int col, bool ascending=true)
wxGrid::GetSelectedRows
*/
/*
# Generar los label col y guardar las posiciones.
# Insertar una fila usando map string string
*/
typedef map<string,string> row_type;
typedef list<row_type> dataset;
class MyGrid : public wxGrid
{
protected:
map<string,int> components; // Asocia el ID de cada columna con su posición dentro del grid
dataset currentDataset; // Contiene el dataset utilizado actualmente.
public:
MyGrid(wxWindow *parent, wxWindowID id, list<itemHeaderColumn> components,const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize,
long style=wxWANTS_CHARS, const wxString &name=wxGridNameStr);
//GetNumberCols
int MysetRow(unsigned int pos,map<string,string> row);
int MyinsertRow(unsigned int pos, map<string,string> row);
int MyappendRow(map<string,string> row);
int pushDataSet(dataset data);
void pushHeaders(list<itemHeaderColumn> headers);
int numRowSelected();
void resetGrid();
void resetData();
void setColourRow(unsigned int row,const wxColour &colour);
void setColourRow(unsigned int row,unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha=wxALPHA_OPAQUE);
// Nos permiten acceder a la información de la fila pos. También nos permite seleccionar elementos específicos de esa fila.
map<string,string> MygetRow(unsigned int pos);
map<string,string> MygetItemsRow(unsigned int pos,list<string> items);
};
#endif /* MY_GRID_H_ */
|
c14ef14580fdedd0fdae8e0da0dd7479288414a7 | bc4af9166e9c4074338a58f5a9bced45a2c08720 | /rush01/srcs/CPUModule.cpp | bc5c5e109d3c7d0122720b14befc9f17e975adb0 | [] | no_license | abassibe/CPP | 75eeb5f82fefd2fe37d79cabe8a00ffbac9a6790 | a5fe1431052ee089f95a57c30857a837f879736f | refs/heads/master | 2020-05-04T20:50:27.611626 | 2019-04-08T13:34:20 | 2019-04-08T13:34:20 | 179,453,059 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,682 | cpp | CPUModule.cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* CPUModule.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abassibe <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/04 15:00:28 by abassibe #+# #+# */
/* Updated: 2019/04/06 14:40:44 by abassibe ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/CPUModule.hpp"
CPUModule::CPUModule() : _x(0), _y(0), _sizeX(20), _sizeY(20), _model(),
_clockSpeed(), _core(), _activity(), _previousActivity()
{
}
CPUModule::CPUModule(int x, int y, int sizeX, int sizeY) : _x(x), _y(y),
_sizeX(sizeX), _sizeY(sizeY)
{
//Fill _model and _clockSpeed
size_t bufferLen = 256;
char buffer[bufferLen];
sysctlbyname("machdep.cpu.brand_string", &buffer, &bufferLen,NULL,0);
std::string bufferString(buffer);
_model = bufferString.substr(0, bufferString.find("@"));
_clockSpeed = bufferString.substr(bufferString.find("@") + 1);
//Fill _core
_core = sysconf(_SC_NPROCESSORS_ONLN);
//Fill _activity
host_cpu_load_info_data_t cpuinfo;
mach_msg_type_number_t count = HOST_CPU_LOAD_INFO_COUNT;
if (host_statistics(mach_host_self(), HOST_CPU_LOAD_INFO, (host_info_t)&cpuinfo, &count) == KERN_SUCCESS)
{
unsigned long long totalTicks = 0;
for(int i = 0; i < CPU_STATE_MAX; i++)
totalTicks += cpuinfo.cpu_ticks[i];
_activity = (1.0f - ((totalTicks > 0) ? (static_cast<float>(cpuinfo.cpu_ticks[CPU_STATE_IDLE])) / totalTicks : 0)) * 100;
_previousActivity.push_back(_activity);
}
else
{
_activity = -1.0f * 100;
_previousActivity.push_back(_activity);
}
}
CPUModule::CPUModule(CPUModule const& copy) : _x(copy._x), _y(copy._y), _sizeX(copy._sizeX),
_sizeY(copy._sizeY), _model(copy._model), _clockSpeed(copy._clockSpeed), _core(copy._core),
_activity(copy._activity), _previousActivity(copy._previousActivity)
{
}
CPUModule::~CPUModule()
{
}
CPUModule &CPUModule::operator=(CPUModule const& copy)
{
_x = copy._x;
_y = copy._y;
_sizeX = copy._sizeX;
_sizeY = copy._sizeY;
_model = copy._model;
_clockSpeed = copy._clockSpeed;
_core = copy._core;
_activity = copy._activity;
_previousActivity = copy._previousActivity;
return (*this);
}
int CPUModule::getX() const
{
return (_x);
}
int CPUModule::getY() const
{
return (_y);
}
void CPUModule::setX(int const& x)
{
_x = x;
}
void CPUModule::setY(int const& y)
{
_y = y;
}
void CPUModule::setPos(int const& x, int const& y)
{
_x = x;
_y = y;
}
int CPUModule::getSizeX() const
{
return (_sizeX);
}
int CPUModule::getSizeY() const
{
return (_sizeY);
}
void CPUModule::setSizeX(int const& sizeX)
{
_sizeX = sizeX;
}
void CPUModule::setSizeY(int const& sizeY)
{
_sizeY = sizeY;
}
void CPUModule::setSize(int const& sizeX, int const& sizeY)
{
_sizeX = sizeX;
_sizeY = sizeY;
}
void CPUModule::updateData()
{
//Fill _model and _clockSpeed
size_t bufferLen = 256;
char buffer[bufferLen];
sysctlbyname("machdep.cpu.brand_string", &buffer, &bufferLen,NULL,0);
std::string bufferString(buffer);
_model = bufferString.substr(0, bufferString.find("@"));
_clockSpeed = bufferString.substr(bufferString.find("@") + 1);
//Fill _core
_core = sysconf(_SC_NPROCESSORS_ONLN);
//Fill _activity
host_cpu_load_info_data_t cpuinfo;
mach_msg_type_number_t count = HOST_CPU_LOAD_INFO_COUNT;
if (host_statistics(mach_host_self(), HOST_CPU_LOAD_INFO, (host_info_t)&cpuinfo, &count) == KERN_SUCCESS)
{
unsigned long long totalTicks = 0;
for (int i = 0; i < CPU_STATE_MAX; i++)
totalTicks += cpuinfo.cpu_ticks[i];
_activity = (1.0f - ((totalTicks > 0) ? (static_cast<float>(cpuinfo.cpu_ticks[CPU_STATE_IDLE])) / totalTicks : 0)) * 100;
_previousActivity.push_back(_activity);
}
else
{
_activity = 0.0f;
_previousActivity.push_back(_activity);
}
}
std::string CPUModule::getModel() const
{
return (_model);
}
std::string CPUModule::getClockSpeed() const
{
return (_clockSpeed);
}
int CPUModule::getCore() const
{
return (_core);
}
float CPUModule::getActivity() const
{
return (_activity);
}
std::list<float> CPUModule::getPreviousActivity() const
{
return (_previousActivity);
}
|
04f0ddb139ddb3fdd6e931972aaee20bd0112eff | 7810b13f010d84cbe7f40586ecb3a5d60399b821 | /MyTestServer/ZoneManager.h | c035922cf17480c0bf9c76cd1531bbb4e8fc3aea | [] | no_license | chrak/MyTestServer | 091d9be4d0d9653abc3750ab2b5213b716afc983 | 189146e3b4d8aeefc93eae6efb14459e25cd3994 | refs/heads/master | 2022-05-02T13:45:21.738700 | 2022-04-11T06:35:26 | 2022-04-11T06:35:26 | 144,518,444 | 5 | 4 | null | null | null | null | UHC | C++ | false | false | 1,828 | h | ZoneManager.h | #pragma once
#include "Define.h"
#include "Singleton.h"
#include "ServerTask.h"
#include <map>
#include <vector>
class CServerTask;
class CServerBase;
class CActor;
class CZone;
///////////////////////////////////////////////////////////
// Zone 관리 클래스
///////////////////////////////////////////////////////////
class CZoneManager
: public CSingleton<CZoneManager>,
public CServerTaskExecutor
{
public:
typedef std::vector<ZONE_MAP> THREAD_REGION_VEC;
struct _stInit
{
int regionCount; ///< thread의 수행 지역 아이디
CServerBase* server; ///< zone이 속해 있는 서버
};
private:
int m_regionCount; ///< thread의 수행 지역 갯수
THREAD_REGION_VEC m_vecZoneRegion; ///< thread의 수행 지역에 속해 있는 zone에 대한 백터
CServerBase* m_pServer; ///< zone이 속해 있는 서버
public:
/// 초기화
void Init(_stInit const& init_);
/// 존 정보 로딩
bool LoadZone();
/// 해당 zone의 thread 수행 지역 아이디를 구한다
inline THREAD_REGION GetThreadRegion(ZONE_ID id_) const { return id_ % m_regionCount; }
/// zone이 속해 있는 서버를 가지고 온다
inline CServerBase* GetServer() { return m_pServer; }
/// zoneID에 대한 zone을 가지고 온다
CZone* FindZone(ZONE_ID id_);
/// zoneID에 맞는 zone을 삭제한다
bool DeleteZone(ZONE_ID id_);
/// 해당 zoneID의 zone에 actor을 진입시킨다
bool EnterZone(ZONE_ID id_, CActor* actor_);
/// 해당 zoneID의 zone에서 actor를 퇴장시킨다
bool LeaveZone(ZONE_ID id_, CActor* actor_);
/// 서버 task를 수행한다
virtual void ExecuteTask(THREAD_REGION region_, CServerTask* task) override;
private:
/// 존 정보를 삽인한다
bool AddZone(CZone* zone_);
public:
CZoneManager();
~CZoneManager();
}; |
2dd6be5820830e8429806904514b8334429e2196 | a384e6e5fbaf22520777ae4846dad3c00f792d3d | /August Challenge/PALINGAM/main.cpp | 46601afda09be0cb1f5b83bc5e88ca334cfd05cf | [] | no_license | Kingpin007/Codechef | 90fb377d3ceccf11b354edad53be00ef6af07380 | ca265441ace65d4466b938f7ad92ac587e2f610f | refs/heads/master | 2020-12-24T13:00:04.428399 | 2018-03-23T09:23:31 | 2018-03-23T09:23:31 | 66,718,693 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,119 | cpp | main.cpp | #include <bits/stdc++.h>
#define ll long long int
using namespace std;
ll minSalary[1000],offeredSalary[1000],maxJobOffers[1000],company[1000];;
string qual[1000];
int main()
{
ll n;
cin>>n;
for(int i=0;i<n;i++){
string a,b;
bool aWins = false;
cin>>a;
cin>>b;
int countA[26]={0};
int countB[26]={0};
for(int i=0;i<a.length();i++){
countA[a[i]-'a']++;
countB[b[i]-'a']++;
}
bool AhasUniqueChar = false;
bool BhasUniqueChar = false;
for(int i=0;i<26;i++){
if(countA[i] > 0 && countB[i] == 0)
AhasUniqueChar = true;
if(countB[i] > 0 && countA[i] == 0)
BhasUniqueChar = true;
}
for(int i=0;i<26;i++){
if(countA[i] >= 2 && countB[i] == 0)
aWins = true;
if(countA[i] > 0 && AhasUniqueChar==true && BhasUniqueChar==false)
aWins = true;
}
if(aWins){
cout<<"A\n";
}
else{
cout<<"B\n";
}
}
return 0;
}
|
7bbd5c7e23db3fb313fed5cb357b71e9945ca2bd | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/multimedia/danim/src/daxctl/controls/mmctl/src/ochelp/dispiez.cpp | 9e6d51cabf520345f8824a6746af3c3066f27051 | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 17,093 | cpp | dispiez.cpp | // dispiez.cpp
//
// Implements IDispatch helper functions.
//
// Important: This .cpp file assumes a zero-initializing global "new" operator.
//
// @doc MMCTL
//
#include "precomp.h"
#include "..\..\inc\ochelp.h"
#include "debug.h"
// Common code used by DispatchInvokeEZ and DispatchInvokeIDEZ to convert the return
// value from a VARIANT into the requested type. NOTE: The Variant is cleared by
// this function.
static HRESULT DispatchInvokeListIDEZ(IDispatch *pdisp, DISPID dispid, WORD wFlags,
VARTYPE vtReturn, LPVOID pvReturn, va_list args)
{
HRESULT hr;
VARIANT var;
// Call the function
hr = DispatchInvokeList(pdisp, dispid, wFlags, &var, args);
// Return immediately on error
if(FAILED(hr))
goto EXIT;
// Return the result
if(vtReturn && pvReturn)
{
if (vtReturn == VT_VARIANT)
{
*((VARIANT *) pvReturn) = var;
VariantInit(&var);
}
else
{
VARTYPE vtTemp;
HRESULT hrTemp;
// try to coerce the variant into the correct type.
if (vtReturn == VT_INT)
vtTemp = VT_I4;
else
if (vtReturn == VT_LPSTR)
vtTemp = VT_BSTR;
else
vtTemp = vtReturn;
if (FAILED(hrTemp = VariantChangeType(&var, &var, 0, vtTemp)))
{
hr = hrTemp;
goto EXIT;
}
switch(vtReturn)
{
case VT_I2:
*((short *) pvReturn) = var.iVal;
break;
case VT_I4:
case VT_INT:
*((long *) pvReturn) = var.lVal;
break;
case VT_R4:
*((float *) pvReturn) = V_R4(&var);
break;
case VT_R8:
*((double *) pvReturn) = V_R8(&var);
break;
case VT_BOOL:
*((BOOL *) pvReturn) = (V_BOOL(&var) == 0 ? 0 : 1);
break;
case VT_BSTR:
*((BSTR *) pvReturn) = var.bstrVal;
VariantInit(&var); // prevent VariantClear clearing var.bstrVal
break;
case VT_DISPATCH:
*((LPDISPATCH *) pvReturn) = var.pdispVal;
VariantInit(&var); // prevent VariantClear clearing var.pdispVal
break;
case VT_UNKNOWN:
*((LPUNKNOWN *) pvReturn) = var.punkVal;
VariantInit(&var); // prevent VariantClear clearing var.punkVal
break;
case VT_LPSTR:
if(var.bstrVal)
{
if (UNICODEToANSI(LPSTR(pvReturn), var.bstrVal,
_MAX_PATH) == 0)
{
// The string couldn't be converted. One cause is
// a string that's longer than _MAX_PATH characters,
// including the NULL.
hr = DISP_E_OVERFLOW;
ASSERT(FALSE);
goto EXIT;
}
}
else
{
((LPSTR)pvReturn)[0] = '\0';
}
break;
default:
hr = DISP_E_BADVARTYPE;
break;
}
}
}
EXIT:
VariantClear(&var);
return hr;
}
/* @func HRESULT | DispatchInvokeIDEZ |
Calls <om IDispatch.Invoke> on a given <i IDispatch> object, passing
arguments specified as a variable-length list of arguments. This function
is almost identical to <f DispatchInvokeEZ>, except that <f DispatchInvokeIDEZ>
takes a DISPID rather than a name of a property/method.
@rdesc Returns the same HRESULT as <om IDispatch.Invoke>.
@parm IDispatch * | pdisp | The interface to call <om IDispatch.Invoke> on.
@parm DISPID | dispid | The DISPID of the property or method to invoke.
@parm WORD | wFlags | May be one of the following values (see
<om IDispatch.Invoke> for more information):
@flag DISPATCH_METHOD | The member <p dispid> is being invoked as a
method. If a property has the same name, both this and the
DISPATCH_PROPERTYGET flag may be set.
@flag DISPATCH_PROPERTYGET | The member <p dispid> is being retrieved
as a property or data member.
@flag DISPATCH_PROPERTYPUT | The member <p dispid> is being changed
as a property or data member.
@parm VARTYPE | vtReturn | The type of the return value (or NULL if the return
value should be ignored). See <f DispatchInvokeEZ> for more details.
@parm LPVOID | pvReturn | Where to store the return value from the method
or property-get call. See <f DispatchInvokeEZ> for more details.
@parm (varying) | (arguments) | The arguments to pass to the method or
property. See <f DispatchInvokeEZ> for more details.
@comm Named arguments are not supported by this function.
Don't forget to add a 0 argument to the end of the argument list.
@ex If a control has a "put" property that looks like this in ODL: |
[propput, id(DISPID_TABSTOP)]
HRESULT TabStop([in] float flTabStop)
@ex then the property can be set with DispatchInvokeIDEZ using the
following code: |
DispatchInvokeIDEZ(pdisp, DISPID_TABSTOP, DISPATCH_PROPERTYPUT, NULL, NULL, VT_R4, flTabStop, 0);
@ex If the ODL for the corresponding "get" property looks like this: |
[propget, id(DISPID_TABSTOP)]
HRESULT TabStop([out, retval] float *pflTabStop);
@ex then the property can be read as follows: |
float flTabStop;
DispatchInvokeIDEZ(pdisp, DISPID_TABSTOP, DISPATCH_PROPERTYGET, VT_R4, &flTabStop, 0);
@ex If the control has a SetText method with this ODL description: |
[id(DISPID_SETTEXT)]
HRESULT SetText([in] BSTR bstrText, [in] long lSize, [in] BOOL fBold);
@ex then the method can be called with the following code: |
DispatchInvokeIDEZ(pdisp, DISPID_SETTEXT, DISPATCH_METHOD, NULL, NULL, VT_LPSTR, "Hello", VT_I4, 12, VT_BOOL, FALSE, 0);
@ex (Note that DispatchInvokeIDEZ copies the VT_LPSTR parameter to a BSTR
before passing it to SetText. You can also pass in a BSTR or an
OLECHAR* for the first parameter.)
If a method has an "out" parameter that is marked as "retval" in ODL,
then DispatchInvokeIDEZ stores that parameter in varResult. If the
method looks like this, for example: |
[id(DISPID_GETROTATION)]
HRESULT GetRotation([in] long iCell, [out, retval] float *pflRotation);
@ex then GetRotation should be called like this: |
float flRotation;
DispatchInvokeIDEZ(pdisp, DISPID_GETROTATION, DISPATCH_METHOD, VT_R4, &flRotation, VT_I4, iCell, 0);
@ex If you need to pass in a type that is not directly supported by
DispatchInvokeIDEZ, you can use VT_VARIANT. Let's say the control has
a GetFormat method that looks like this: |
[id(DISPID_GETFORMAT)]
HRESULT GetFormat([out] long *lColor, [out] BOOL *pfBold);
@ex This takes a pointer-to-long and a pointer-to-BOOL, neither of which
can be passed directly to DispatchInvokeIDEZ. You can, however, use
VARIANTs to call GetFormat: |
long lColor;
BOOL fBold;
VARIANT varColor, varBold;
VariantInit(&varColor);
V_VT(&varColor) = VT_I4 | VT_BYREF;
V_I4REF(&varColor) = &lColor;
VariantInit(&varBold);
V_VT(&varBold) = VT_BOOL | VT_BYREF;
V_BOOLREF(&varBold) = &fBold;
DispatchInvokeIDEZ(pdisp, DISPID_GETFORMAT, DISPATCH_METHOD, NULL, NULL, VT_VARIANT, varColor, VT_VARIANT, varBold, 0);
*/
HRESULT DispatchInvokeIDEZ(IDispatch *pdisp, DISPID dispid, WORD wFlags,
VARTYPE vtReturn, LPVOID pvReturn, ...)
{
HRESULT hr;
// Call the function
va_list args;
va_start(args, pvReturn);
hr = DispatchInvokeListIDEZ(pdisp, dispid, wFlags, vtReturn, pvReturn, args);
va_end(args);
return hr;
}
/* @func HRESULT | DispatchInvokeEZ |
Calls <om IDispatch.Invoke> on a given <i IDispatch> object, passing
arguments specified as a variable-length list of arguments. This function
is similar to <f DispatchInvoke>, but requires less setup.
@rdesc Returns the same HRESULT as <om IDispatch.Invoke>.
@parm IDispatch * | pdisp | The interface to call <om IDispatch.Invoke> on.
@parm LPWSTR | pstr | The name of the property or method to invoke.
@parm WORD | wFlags | May be one of the following values (see
<om IDispatch.Invoke> for more information):
@flag DISPATCH_METHOD | The member <p pstr> is being invoked as a
method. If a property has the same name, both this and the
DISPATCH_PROPERTYGET flag may be set.
@flag DISPATCH_PROPERTYGET | The member <p pstr> is being retrieved
as a property or data member.
@flag DISPATCH_PROPERTYPUT | The member <p pstr> is being changed
as a property or data member.
@parm VARTYPE | vtReturn | The type of the return value (or NULL if the return
value should be ignored). The following VARTYPE values are supported:
@flag VT_INT | <p pvReturn> is an int *.
@flag VT_I2 | <p pvReturn> is a short *.
@flag VT_I4 | <p pvReturn> is a long *.
@flag VT_R4 | <p pvReturn> is a float *.
@flag VT_R8 | <p pvReturn> is a double *.
@flag VT_BOOL | <p pvReturn> is a BOOL * (<y not> a
VARIANT_BOOL *). Note that this behavior differs
slightly from the usual definition of VT_BOOL.
@flag VT_BSTR | <p pvReturn> is a BSTR *. If the function
succeeds, the caller of <f DispatchInvokeEZ> should free this
BSTR using <f SysFreeString>.
@flag VT_LPSTR | <p pvReturn> is an LPSTR that points
to a char array capable of holding at least _MAX_PATH
characters, including the terminating NULL. (You should
declare this as "char achReturn[_MAX_PATH]".) If the string is
too long for the LPSTR, DISP_E_OVERFLOW is returned.
@flag VT_DISPATCH | <p pvReturn> is an LPDISPATCH *.
The caller of <f DispatchInvokeEZ> must call <f Release>
on this LPDISPATCH.
@flag VT_UNKNOWN | <p pvReturn> is an LPUNKNOWN *.
The caller of <f DispatchInvokeEZ> must call <f Release>
on this LPUNKNOWN.
@flag VT_VARIANT | <p pvReturn> is a VARIANT *.
This allows arbitrary parameters to be passed using this
function. Note that this behavior differs from the usual
definition of VT_VARIANT. The caller of <f DispatchGetArgs>
should must call VariantClear on this VARIANT.
@parm LPVOID | pvReturn | Where to store the return value from the method
or property-get call. If <p pvReturn> is NULL, the result (if any) is
discarded. See the <p vtReturn> property for more infomation. This value
is unchanged if <f DispatchInvokeEZ> returns an error code.
@parm (varying) | (arguments) | The arguments to pass to the method or
property. These must consist of N pairs of arguments followed by
a 0 (zero value). In each pair, the first argument is a VARTYPE
value that indicates the type of the second argument. The following
VARTYPE values are supported:
@flag VT_INT | The following argument is an int. <f Invoke>
passes this as VT_I4, so this parameter should be declared
as a Long in BASIC.
@flag VT_I2 | The following argument is a short. In BASIC
this parameter should be declared as Integer.
@flag VT_I4 | The following argument is a long. In BASIC
this parameter should be declared as Long.
@flag VT_R4 | The following argument is a float. In BASIC
this parameter should be declared as Single.
@flag VT_R8 | The following argument is a double. In BASIC
this parameter should be declared as Double.
@flag VT_BOOL | The following argument is a BOOL (<y not> a
VARIANT_BOOL). In BASIC this parameter should be declared
as Boolean or Integer. Note that this behavior differs
slightly from the usual definition of VT_BOOL.
@flag VT_BSTR | The following argument is a BSTR or an OLECHAR *.
In BASIC this parameter should be declared as String.
@flag VT_LPSTR | The following argument is an LPSTR. <f Invoke>
passes this as a BSTR, so this parameter should be declared
as a String in BASIC. Note that this behavior differs
from the usual definition of VT_LPSTR.
@flag VT_DISPATCH | The following argument is an LPDISPATCH. In
BASIC this parameter should be declared as an Object.
@flag VT_UNKNOWN | The following argument is an LPUNKNOWN.
@flag VT_VARIANT | The following arguement is a VARIANT that is
passed as-is to <f Invoke>. This allows arbitrary parameters
to be passed using this function. Note that this behavior
differs from the usual definition of VT_VARIANT.
@comm Named arguments are not supported by this function.
Don't forget to add a 0 argument to the end of the argument list.
@ex If a control has a "put" property that looks like this in ODL: |
[propput, id(DISPID_TABSTOP)]
HRESULT TabStop([in] float flTabStop)
@ex then the property can be set with DispatchInvokeEZ using the following
code: |
DispatchInvokeEZ(pdisp, L"put_TabStop", DISPATCH_PROPERTYPUT, NULL, NULL, VT_R4, flTabStop, 0);
@ex If the ODL for the corresponding "get" property looks like this: |
[propget, id(DISPID_TABSTOP)]
HRESULT TabStop([out, retval] float *pflTabStop);
@ex then the property can be read as follows: |
float flTabStop;
DispatchInvokeEZ(pdisp, L"get_TabStop", DISPATCH_PROPERTYGET, VT_R4, &flTabStop, 0);
@ex If the control has a SetText method with this ODL description: |
[id(DISPID_SETTEXT)]
HRESULT SetText([in] BSTR bstrText, [in] long lSize, [in] BOOL fBold);
@ex then the method can be called with the following code: |
DispatchInvokeEZ(pdisp, L"SetText", DISPATCH_METHOD, NULL, NULL, VT_LPSTR, "Hello", VT_I4, 12, VT_BOOL, FALSE, 0);
@ex (Note that DispatchInvokeEZ copies the VT_LPSTR parameter to a BSTR
before passing it to SetText. You can also pass in a BSTR or an
OLECHAR* for the first parameter.)
If a method has an "out" parameter that is marked as "retval" in ODL,
then DispatchInvokeEZ stores that parameter in varResult. If the
method looks like this, for example: |
[id(DISPID_GETROTATION)]
HRESULT GetRotation([in] long iCell, [out, retval] float *pflRotation);
@ex then GetRotation should be called like this: |
float flRotation;
DispatchInvokeEZ(pdisp, L"GetRotation", DISPATCH_METHOD, VT_R4, &flRotation, VT_I4, iCell, 0);
@ex If you need to pass in a type that is not directly supported by
DispatchInvokeEZ, you can use VT_VARIANT. Let's say the control has a
GetFormat method that looks like this: |
[id(DISPID_GETFORMAT)]
HRESULT GetFormat([out] long *lColor, [out] BOOL *pfBold);
@ex This takes a pointer-to-long and a pointer-to-BOOL, neither of which
can be passed directly to DispatchInvokeEZ. You can, however, use
VARIANTs to call GetFormat: |
long lColor;
BOOL fBold;
VARIANT varColor, varBold;
VariantInit(&varColor);
V_VT(&varColor) = VT_I4 | VT_BYREF;
V_I4REF(&varColor) = &lColor;
VariantInit(&varBold);
V_VT(&varBold) = VT_BOOL | VT_BYREF;
V_BOOLREF(&varBold) = &fBold;
DispatchInvokeEZ(pdisp, L"GetFormat", DISPATCH_METHOD, NULL, NULL, VT_VARIANT, varColor, VT_VARIANT, varBold, 0);
*/
HRESULT DispatchInvokeEZ(IDispatch *pdisp, LPWSTR pstr, WORD wFlags,
VARTYPE vtReturn, LPVOID pvReturn, ...)
{
HRESULT hr;
DISPID dispid;
// find the dispid
hr = pdisp->GetIDsOfNames(IID_NULL, &pstr, 1, LOCALE_SYSTEM_DEFAULT, &dispid);
if(FAILED(hr))
return hr;
// Call the function
va_list args;
va_start(args, pvReturn);
hr = DispatchInvokeListIDEZ(pdisp, dispid, wFlags, vtReturn, pvReturn, args);
va_end(args);
return hr;
}
|
3fbc271286e19c50107db0e26c511de166e2c280 | 8207fcff3741be2f255efd234917b1b79ff42cfa | /Beautifu art.cpp | 28bda561cabe1cc5837685ed932f925f1b4a0082 | [] | no_license | p39149845/600612164 | 164ca8b18a240c11232e251e1cdf98c2c53beb6e | e9ea577e4c6d7db2cb2368c22eb433638ac6b641 | refs/heads/master | 2021-05-12T09:50:59.905103 | 2018-01-13T10:05:21 | 2018-01-13T10:05:21 | 117,333,370 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 313 | cpp | Beautifu art.cpp | #include<iostream>
using namespace std;
int main(){
cout<<"__________________ \n";
cout<<"?+-+ -+? \n";
cout<<"??? /?/ \n";
cout<<"???/?/ \n";
cout<<"?? /?/---+ \n";
cout<<"???????? \n";
cout<<"+----+-+-+ THIS IS BEAUTIFUL ART \n" ;
cout<<"??+--+???? \n";
cout<<"++??????++ \n";
cout<<"++????++ \n";
}
|
39deee97ef48d41c5d60cd6abee837e39eb53ac2 | d61bef1c247c2d454612f37055ef2555802f1ca2 | /138.cc | 11bfcac435b81b2512c1e2582e21a608825b618d | [] | no_license | li-chunyu/leetcode | 14abb171c70981445ec2c47aafc8940610227cc3 | b7156943519f13542986b5da0baabde6a3bb120c | refs/heads/master | 2021-07-23T11:46:59.921027 | 2021-05-28T05:02:28 | 2021-05-28T05:02:28 | 69,959,598 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,073 | cc | 138.cc | /*
// Definition for a Node.
class Node {
public:
int val;
Node* next;
Node* random;
Node() {}
Node(int _val, Node* _next, Node* _random) {
val = _val;
next = _next;
random = _random;
}
};
*/
class Solution {
public:
Node* copyRandomList(Node* head) {
if (!head) return NULL;
unordered_map<Node*, Node*> map;
Node *clone_head, *orignal_head, *new_head;
clone_head = new Node(head->val, NULL, NULL);
orignal_head = head;
map[head] = clone_head;
new_head = clone_head;
while (orignal_head->next) {
Node *n = new Node(orignal_head->next->val, NULL, NULL);
new_head->next = n;
map[orignal_head->next] = new_head->next;
new_head = new_head->next;
orignal_head = orignal_head->next;
}
new_head = clone_head;
while (head) {
if (head->random) {
new_head->random = map[head->random];
}
head = head->next;
new_head = new_head->next;
}
return clone_head;
}
}; |
9a9e2f5a883e96f38875e9906d2b7e156c687cc0 | 06db9f0fb62c3b7621c4ce5c9ea07fb8056afd68 | /include/bm_test_utils.h | a13c32a350f0930742574ac218b15c12bffe1bcb | [
"Apache-2.0"
] | permissive | apuaaChen/vectorSparse | 940b7b5dc1d561a30ea2417a24cb87212128757a | 4f73d4c6bce3061cbdb8593e6e6cf9ace65c02f2 | refs/heads/master | 2023-04-19T03:01:22.915757 | 2022-08-24T17:27:53 | 2022-08-24T17:27:53 | 351,565,020 | 15 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 8,256 | h | bm_test_utils.h | #ifndef BM_TEST_UTILS_H
#define BM_TEST_UTILS_H
#include <algorithm>
#include <cstring>
#include <random>
#include <stdio.h>
#include "cuda_fp16.h"
#include <assert.h>
#include <cublas_v2.h>
inline
cudaError_t checkCuda(cudaError_t result){
if (result != cudaSuccess){
fprintf(stderr, "CUDA Runtime Error: %s\n", cudaGetErrorString(result));
assert(result == cudaSuccess);
}
return result;
}
const char* cublasGetErrorString(cublasStatus_t status)
{
switch(status)
{
case CUBLAS_STATUS_SUCCESS: return "CUBLAS_STATUS_SUCCESS";
case CUBLAS_STATUS_NOT_INITIALIZED: return "CUBLAS_STATUS_NOT_INITIALIZED";
case CUBLAS_STATUS_ALLOC_FAILED: return "CUBLAS_STATUS_ALLOC_FAILED";
case CUBLAS_STATUS_INVALID_VALUE: return "CUBLAS_STATUS_INVALID_VALUE";
case CUBLAS_STATUS_ARCH_MISMATCH: return "CUBLAS_STATUS_ARCH_MISMATCH";
case CUBLAS_STATUS_MAPPING_ERROR: return "CUBLAS_STATUS_MAPPING_ERROR";
case CUBLAS_STATUS_EXECUTION_FAILED: return "CUBLAS_STATUS_EXECUTION_FAILED";
case CUBLAS_STATUS_INTERNAL_ERROR: return "CUBLAS_STATUS_INTERNAL_ERROR";
}
return "unknown error";
}
inline
cublasStatus_t checkCublas(cublasStatus_t result){
if (result != CUBLAS_STATUS_SUCCESS) {
fprintf(stderr, "CUDA Runtime Error: %s\n", cublasGetErrorString(result));
assert(result == CUBLAS_STATUS_SUCCESS);
}
return result;
}
// Helper function that generates random column indices for Blocked ELL format
void GenerateUniformBlockedELLIndex(int num_block_col,
int num_block_nnz_col, int num_block_row,
int* ellColInd, std::default_random_engine generator)
{
std::uniform_int_distribution<int> uni(0, num_block_col - 1);
std::vector<int> indices(num_block_col);
std::iota(indices.begin(), indices.end(), 0);
// Loop through all the rows of the sparse matrix
for (int r = 0; r < num_block_row; r ++){
int* ellColInd_r = reinterpret_cast<int *>(ellColInd + r * num_block_nnz_col);
// fill the vector with 0 ~ num_block_col-1 in sequence
std::random_shuffle(indices.begin(), indices.end());
int offset = 0;
for (int c = 0; c < num_block_col; c++){
if (indices[c] < num_block_nnz_col){
ellColInd_r[offset] = c;
offset ++;
}
}
}
}
template <typename ValueType, typename IndexType>
void MakeSparseMatrixRandomUniform(int rows, int columns, int nonzeros,
ValueType *values, IndexType *row_offsets,
IndexType *column_indices,
std::default_random_engine generator,
int row_padding)
{
int64_t num_elements = static_cast<int64_t>(rows) * columns;
assert (nonzeros <= num_elements);
assert (nonzeros > 0);
assert (row_padding >= 0);
std::uniform_real_distribution<ValueType> distribution(-1.0, 1.0);
// generate random values for the matrix
std::vector<ValueType> nonzero_values(nonzeros);
for (auto &v : nonzero_values){
v = distribution(generator);
}
// Create a uniformly distributed random sparsity mask
std::vector<int64_t> indices(num_elements);
// fill the vector with 0 ~ num_elements-1 in sequence
std::iota(indices.begin(), indices.end(), 0);
// shuffle the vector
std::random_shuffle(indices.begin(), indices.end());
// Create the compressed sparse row indices and offsets
int64_t offset = 0;
row_offsets[0] = 0;
for (int64_t i = 0; i < rows; ++i){
for (int64_t j = 0; j < columns; ++j){
int64_t idx = i * columns + j;
if (indices[idx] < nonzeros){
values[offset] = nonzero_values[indices[idx]];
column_indices[offset] = j;
++offset;
}
}
if (row_padding > 0){
int residue = (offset - row_offsets[i]) % row_padding;
int to_add = (row_padding - residue) % row_padding;
for (; to_add > 0; --to_add){
values[offset] = 0.0;
// NOTE: When we pad with zeros the column index that we assign
// the phantom zero needs to be a valid column index s.t. we
// don't index out-of-range into the dense rhs matrix when
// computing spmm. Here we set all padding column-offsets to
// the same column as the final non-padding weight in the row.
column_indices[offset] = column_indices[offset - 1];
++offset;
}
assert((offset - row_offsets[i]) % row_padding == 0);
}
row_offsets[i + 1] = offset;
}
}
template <typename ValueType>
void MakeDenseMatrix(int rows, int columns, ValueType *matrix,
std::default_random_engine generator)
{
std::uniform_real_distribution<float> distribution(-1.0, 1.0);
for (int64_t i = 0; i < static_cast<int64_t>(rows) * columns; ++i){
float temp = distribution(generator);
matrix[i] = ValueType(temp);
// int temp = (i / columns) % 8;
// matrix[i] = half(temp * 0.01);
}
}
/*
// For CSC
template <typename ValueType, typename OutType>
void Host_sddmm(int m_vec, int k, int VecLength, const int* col_offsets, const int* row_indices, const ValueType* lhs_matrix,
const ValueType* rhs_matrix, OutType* output_values){
// Loop over all the columns
for (int i = 0; i < m_vec; ++i){
// Loop over all the nonzero rows of the column
for (int j = col_offsets[i]; j < col_offsets[i+1]; ++j){
// Loop over all the values in the vector
for (int v = 0; v < VecLength; v ++){
// set the accumulator
OutType accumulator = 0.0;
// compute the index to the real m and n
int idx_n = row_indices[j];
int idx_m = i * VecLength + v;
for (int l=0; l < k; ++l){
accumulator += (OutType)lhs_matrix[idx_n * k + l] * (OutType)rhs_matrix[idx_m * k + l];
}
// Write the output
output_values[j * VecLength + v] = accumulator;
}
}
}
}
*/
template <typename ValueType, typename OutType>
void Host_sddmm(int m_vec, int k, int VecLength, const int* row_offsets, const int* col_indices, const ValueType* lhs_matrix,
const ValueType* rhs_matrix, OutType* output_values){
// Loop over all the rows
for (int i = 0; i < m_vec; ++i){
// Loop over all the nonzero columns of the column
for (int j = row_offsets[i]; j < row_offsets[i+1]; ++j){
// Loop over all the values in the vector
for (int v = 0; v < VecLength; v ++){
// set the accumulator
float accumulator = 0.0;
// compute the index to the real m and n
int idx_n = col_indices[j];
int idx_m = i * VecLength + v;
for (int l=0; l < k; ++l){
accumulator += (float)lhs_matrix[idx_m * k + l] * (float)rhs_matrix[idx_n * k + l];
}
// Write the output
output_values[j * VecLength + v] = (OutType)accumulator;
}
}
}
}
void IdentityRowSwizzle(int rows, int *row_indices){
std::iota(row_indices, row_indices + rows, 0);
}
void SortedRowSwizzle(int rows, const int *row_offsets, int *row_indices){
// Create the unsorted row indices
std::vector<int> swizzle_staging(rows);
std::iota(swizzle_staging.begin(), swizzle_staging.end(), 0);
// Argsort the row indices based on their length
std::sort(swizzle_staging.begin(), swizzle_staging.end(),
[&row_offsets](int idx_a, int idx_b){
int length_a = row_offsets[idx_a + 1] - row_offsets[idx_a];
int length_b = row_offsets[idx_b + 1] - row_offsets[idx_b];
return length_a > length_b;
});
// Copy the ordered row indices to the output.
std::memcpy(row_indices, swizzle_staging.data(), sizeof(int) * rows);
}
#endif |
bbd4554688d9d81a1c456584d6c07055c2345644 | 2b5b6402c1367b7aab8a77ede5295044a0decf73 | /projects/node-pylon/src/genicam/gcstring.cc | 71cb74e0f59014ced6c6e022b03df3e42b6a5dad | [
"MIT"
] | permissive | bjoernrennfanz/node-pylon | 7d951ceb227ade4d5885d5e8a5ae06c4963a21e7 | 8c20349d112de2674817a07b3ddbe2e5c481a676 | refs/heads/master | 2021-01-21T19:40:34.263058 | 2018-06-05T18:11:29 | 2018-06-05T18:11:29 | 92,153,337 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,119 | cc | gcstring.cc | // MIT License
//
// Copyright (c) 2017 - 2018 Björn Rennfanz <bjoern@fam-rennfanz.de>
//
// 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.
//
// ----------------------------------------------------------------------------
// This is auto generated code by pylon-node-gen.
// Do not edit this file or all your changes will be lost after re-generation.
// ----------------------------------------------------------------------------
#include "gcstring.h"
#include "../pylon_v8.h"
using namespace v8;
using namespace GenICam_3_0_Basler_pylon_v5_0;
Nan::Persistent<FunctionTemplate> GCStringWrap::prototype;
Nan::Persistent<Function> GCStringWrap::constructor;
// Supported implementations
// gcstring()
// gcstring(char* const pc)
// gcstring(gcstring& const str)
// gcstring(wchar_t* const pBufferUTF16)
// gcstring(char* const pc, unsigned int n)
// gcstring(unsigned int count, char ch)
// gcstring(wchar_t* const pBufferUTF16, unsigned int n)
GCStringWrap::GCStringWrap(Nan::NAN_METHOD_ARGS_TYPE info)
: m_GCString(NULL)
{
// Check constructor arguments
if (info.Length() == 0)
{
// gcstring()
m_GCString = new gcstring();
}
else if ((info.Length() == 1) && info[0]->IsString())
{
// Convert from string value
char* arg0 = pylon_v8::ToGCString(info[0]->ToString()).c_str();
// gcstring(char* const pc)
m_GCString = new gcstring(arg0);
}
else if ((info.Length() == 1) && (info[0]->IsObject() && (pylon_v8::ToGCString(info[0]->ToObject()->GetConstructorName()) == "gcstring")))
{
// Unwrap object
GCStringWrap* arg0_wrap = ObjectWrap::Unwrap<GCStringWrap>(info[0]->ToObject());
gcstring* arg0 = arg0_wrap->GetWrapped();
// gcstring(gcstring& const str)
m_GCString = new gcstring(*arg0);
}
else if ((info.Length() == 1) && info[0]->IsString())
{
// Convert from string value
wchar_t* arg0 = static_cast<wchar_t*>(pylon_v8::ToGCString(info[0]->ToString()).w_str());
// gcstring(wchar_t* const pBufferUTF16)
m_GCString = new gcstring(arg0);
}
else if ((info.Length() == 2) && info[0]->IsString() && info[1]->IsNumber())
{
// Convert from string value
char* arg0 = pylon_v8::ToGCString(info[0]->ToString()).c_str();
// Convert from number value
unsigned int arg1 = static_cast<unsigned int>(info[1]->NumberValue());
// gcstring(char* const pc, unsigned int n)
m_GCString = new gcstring(arg0, arg1);
}
else if ((info.Length() == 2) && info[0]->IsNumber() && info[1]->IsString())
{
// Convert from number value
unsigned int arg0 = static_cast<unsigned int>(info[0]->NumberValue());
// Convert from string value
char arg1 = pylon_v8::ToGCString(info[1]->ToString()).c_str()[0];
// gcstring(unsigned int count, char ch)
m_GCString = new gcstring(arg0, arg1);
}
else if ((info.Length() == 2) && info[0]->IsString() && info[1]->IsNumber())
{
// Convert from string value
wchar_t* arg0 = static_cast<wchar_t*>(pylon_v8::ToGCString(info[0]->ToString()).w_str());
// Convert from number value
unsigned int arg1 = static_cast<unsigned int>(info[1]->NumberValue());
// gcstring(wchar_t* const pBufferUTF16, unsigned int n)
m_GCString = new gcstring(arg0, arg1);
}
}
GCStringWrap::~GCStringWrap()
{
delete m_GCString;
}
NAN_MODULE_INIT(GCStringWrap::Initialize)
{
// Prepare constructor template
Local <FunctionTemplate> tpl = Nan::New<FunctionTemplate>(New);
tpl->SetClassName(Nan::New("GCStringWrap").ToLocalChecked());
tpl->InstanceTemplate()->SetInternalFieldCount(1);
// Register prototypes to template
Nan::SetPrototypeMethod(tpl, "append", append);
Nan::SetPrototypeMethod(tpl, "assign", assign);
Nan::SetPrototypeMethod(tpl, "compare", compare);
Nan::SetPrototypeMethod(tpl, "w_str", w_str);
Nan::SetPrototypeMethod(tpl, "c_str", c_str);
Nan::SetPrototypeMethod(tpl, "empty", empty);
Nan::SetPrototypeMethod(tpl, "find", find);
Nan::SetPrototypeMethod(tpl, "length", length);
Nan::SetPrototypeMethod(tpl, "size", size);
Nan::SetPrototypeMethod(tpl, "resize", resize);
Nan::SetPrototypeMethod(tpl, "max_size", max_size);
Nan::SetPrototypeMethod(tpl, "substr", substr);
Nan::SetPrototypeMethod(tpl, "find_first_of", find_first_of);
Nan::SetPrototypeMethod(tpl, "find_first_not_of", find_first_not_of);
Nan::SetPrototypeMethod(tpl, "_npos", _npos);
Nan::SetPrototypeMethod(tpl, "swap", swap);
// Register template in Node JS
prototype.Reset(tpl);
Local<Function> function = Nan::GetFunction(tpl).ToLocalChecked();
constructor.Reset(function);
Nan::Set(target, Nan::New("gcstring").ToLocalChecked(), function);
// Register static functions in Node JS
Nan::Set(target, Nan::New<String>("throwBadAlloc").ToLocalChecked(), Nan::GetFunction(Nan::New<FunctionTemplate>(GCStringWrap::ThrowBadAlloc)).ToLocalChecked());
Nan::Set(target, Nan::New<String>("getline").ToLocalChecked(), Nan::GetFunction(Nan::New<FunctionTemplate>(GCStringWrap::getline)).ToLocalChecked());
}
NAN_METHOD(GCStringWrap::_npos)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if (info.Length() == 0)
{
// Call wrapped method
unsigned int result = gCString->_npos();
// Set return value
info.GetReturnValue().Set(Nan::New<Number>(result));
}
}
NAN_METHOD(GCStringWrap::append)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if ((info.Length() == 2) && info[0]->IsNumber() && info[1]->IsString())
{
// Convert from number value
unsigned int arg0 = static_cast<unsigned int>(info[0]->NumberValue());
// Convert from string value
char arg1 = pylon_v8::ToGCString(info[1]->ToString()).c_str()[0];
// Call wrapped method
gCString->append(arg0, arg1);
}
else if ((info.Length() == 1) && (info[0]->IsObject() && (pylon_v8::ToGCString(info[0]->ToObject()->GetConstructorName()) == "gcstring")))
{
// Unwrap object
GCStringWrap* arg0_wrap = ObjectWrap::Unwrap<GCStringWrap>(info[0]->ToObject());
gcstring* arg0 = arg0_wrap->GetWrapped();
// Call wrapped method
gCString->append(*arg0);
}
}
NAN_METHOD(GCStringWrap::assign)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if ((info.Length() == 2) && info[0]->IsString() && info[1]->IsNumber())
{
// Convert from string value
wchar_t* arg0 = static_cast<wchar_t*>(pylon_v8::ToGCString(info[0]->ToString()).w_str());
// Convert from number value
int arg1 = static_cast<int>(info[1]->NumberValue());
// Call wrapped method
gCString->assign(arg0, arg1);
}
else if ((info.Length() == 2) && info[0]->IsString() && info[1]->IsNumber())
{
// Convert from string value
char* arg0 = pylon_v8::ToGCString(info[0]->ToString()).c_str();
// Convert from number value
unsigned int arg1 = static_cast<unsigned int>(info[1]->NumberValue());
// Call wrapped method
gCString->assign(arg0, arg1);
}
else if ((info.Length() == 2) && info[0]->IsNumber() && info[1]->IsString())
{
// Convert from number value
unsigned int arg0 = static_cast<unsigned int>(info[0]->NumberValue());
// Convert from string value
char arg1 = pylon_v8::ToGCString(info[1]->ToString()).c_str()[0];
// Call wrapped method
gCString->assign(arg0, arg1);
}
else if ((info.Length() == 1) && info[0]->IsString())
{
// Convert from string value
wchar_t* arg0 = static_cast<wchar_t*>(pylon_v8::ToGCString(info[0]->ToString()).w_str());
// Call wrapped method
gCString->assign(arg0);
}
else if ((info.Length() == 1) && info[0]->IsString())
{
// Convert from string value
char* arg0 = pylon_v8::ToGCString(info[0]->ToString()).c_str();
// Call wrapped method
gCString->assign(arg0);
}
else if ((info.Length() == 1) && (info[0]->IsObject() && (pylon_v8::ToGCString(info[0]->ToObject()->GetConstructorName()) == "gcstring")))
{
// Unwrap object
GCStringWrap* arg0_wrap = ObjectWrap::Unwrap<GCStringWrap>(info[0]->ToObject());
gcstring* arg0 = arg0_wrap->GetWrapped();
// Call wrapped method
gCString->assign(*arg0);
}
}
NAN_METHOD(GCStringWrap::c_str)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if (info.Length() == 0)
{
// Call wrapped method
const char* result = gCString->c_str();
// Set return value
info.GetReturnValue().Set(pylon_v8::FromGCString(result).ToLocalChecked());
}
}
NAN_METHOD(GCStringWrap::compare)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if ((info.Length() == 1) && (info[0]->IsObject() && (pylon_v8::ToGCString(info[0]->ToObject()->GetConstructorName()) == "gcstring")))
{
// Unwrap object
GCStringWrap* arg0_wrap = ObjectWrap::Unwrap<GCStringWrap>(info[0]->ToObject());
gcstring* arg0 = arg0_wrap->GetWrapped();
// Call wrapped method
int result = gCString->compare(*arg0);
// Set return value
info.GetReturnValue().Set(Nan::New<Number>(result));
}
}
NAN_METHOD(GCStringWrap::empty)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if (info.Length() == 0)
{
// Call wrapped method
bool result = gCString->empty();
// Set return value
info.GetReturnValue().Set(Nan::New<Boolean>(result));
}
}
NAN_METHOD(GCStringWrap::find)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if ((info.Length() == 3) && info[0]->IsString() && info[1]->IsNumber() && info[2]->IsNumber())
{
// Convert from string value
char* arg0 = pylon_v8::ToGCString(info[0]->ToString()).c_str();
// Convert from number value
unsigned int arg1 = static_cast<unsigned int>(info[1]->NumberValue());
// Convert from number value
unsigned int arg2 = static_cast<unsigned int>(info[2]->NumberValue());
// Call wrapped method
unsigned int result = gCString->find(arg0, arg1, arg2);
// Set return value
info.GetReturnValue().Set(Nan::New<Number>(result));
}
else if ((info.Length() == 3) && (info[0]->IsObject() && (pylon_v8::ToGCString(info[0]->ToObject()->GetConstructorName()) == "gcstring")) && info[1]->IsNumber() && info[2]->IsNumber())
{
// Unwrap object
GCStringWrap* arg0_wrap = ObjectWrap::Unwrap<GCStringWrap>(info[0]->ToObject());
gcstring* arg0 = arg0_wrap->GetWrapped();
// Convert from number value
unsigned int arg1 = static_cast<unsigned int>(info[1]->NumberValue());
// Convert from number value
unsigned int arg2 = static_cast<unsigned int>(info[2]->NumberValue());
// Call wrapped method
unsigned int result = gCString->find(*arg0, arg1, arg2);
// Set return value
info.GetReturnValue().Set(Nan::New<Number>(result));
}
else if ((info.Length() == 2) && info[0]->IsString() && info[1]->IsNumber())
{
// Convert from string value
char* arg0 = pylon_v8::ToGCString(info[0]->ToString()).c_str();
// Convert from number value
unsigned int arg1 = static_cast<unsigned int>(info[1]->NumberValue());
// Call wrapped method
unsigned int result = gCString->find(arg0, arg1);
// Set return value
info.GetReturnValue().Set(Nan::New<Number>(result));
}
else if ((info.Length() == 2) && (info[0]->IsObject() && (pylon_v8::ToGCString(info[0]->ToObject()->GetConstructorName()) == "gcstring")) && info[1]->IsNumber())
{
// Unwrap object
GCStringWrap* arg0_wrap = ObjectWrap::Unwrap<GCStringWrap>(info[0]->ToObject());
gcstring* arg0 = arg0_wrap->GetWrapped();
// Convert from number value
unsigned int arg1 = static_cast<unsigned int>(info[1]->NumberValue());
// Call wrapped method
unsigned int result = gCString->find(*arg0, arg1);
// Set return value
info.GetReturnValue().Set(Nan::New<Number>(result));
}
else if ((info.Length() == 2) && info[0]->IsString() && info[1]->IsNumber())
{
// Convert from string value
char arg0 = pylon_v8::ToGCString(info[0]->ToString()).c_str()[0];
// Convert from number value
unsigned int arg1 = static_cast<unsigned int>(info[1]->NumberValue());
// Call wrapped method
unsigned int result = gCString->find(arg0, arg1);
// Set return value
info.GetReturnValue().Set(Nan::New<Number>(result));
}
}
NAN_METHOD(GCStringWrap::find_first_not_of)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if ((info.Length() == 2) && (info[0]->IsObject() && (pylon_v8::ToGCString(info[0]->ToObject()->GetConstructorName()) == "gcstring")) && info[1]->IsNumber())
{
// Unwrap object
GCStringWrap* arg0_wrap = ObjectWrap::Unwrap<GCStringWrap>(info[0]->ToObject());
gcstring* arg0 = arg0_wrap->GetWrapped();
// Convert from number value
unsigned int arg1 = static_cast<unsigned int>(info[1]->NumberValue());
// Call wrapped method
unsigned int result = gCString->find_first_not_of(*arg0, arg1);
// Set return value
info.GetReturnValue().Set(Nan::New<Number>(result));
}
}
NAN_METHOD(GCStringWrap::find_first_of)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if ((info.Length() == 2) && (info[0]->IsObject() && (pylon_v8::ToGCString(info[0]->ToObject()->GetConstructorName()) == "gcstring")) && info[1]->IsNumber())
{
// Unwrap object
GCStringWrap* arg0_wrap = ObjectWrap::Unwrap<GCStringWrap>(info[0]->ToObject());
gcstring* arg0 = arg0_wrap->GetWrapped();
// Convert from number value
unsigned int arg1 = static_cast<unsigned int>(info[1]->NumberValue());
// Call wrapped method
unsigned int result = gCString->find_first_of(*arg0, arg1);
// Set return value
info.GetReturnValue().Set(Nan::New<Number>(result));
}
}
NAN_METHOD(GCStringWrap::length)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if (info.Length() == 0)
{
// Call wrapped method
unsigned int result = gCString->length();
// Set return value
info.GetReturnValue().Set(Nan::New<Number>(result));
}
}
NAN_METHOD(GCStringWrap::max_size)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if (info.Length() == 0)
{
// Call wrapped method
unsigned int result = gCString->max_size();
// Set return value
info.GetReturnValue().Set(Nan::New<Number>(result));
}
}
NAN_METHOD(GCStringWrap::resize)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if ((info.Length() == 1) && info[0]->IsNumber())
{
// Convert from number value
unsigned int arg0 = static_cast<unsigned int>(info[0]->NumberValue());
// Call wrapped method
gCString->resize(arg0);
// Set return value to undefined
info.GetReturnValue().SetUndefined();
}
}
NAN_METHOD(GCStringWrap::size)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if (info.Length() == 0)
{
// Call wrapped method
unsigned int result = gCString->size();
// Set return value
info.GetReturnValue().Set(Nan::New<Number>(result));
}
}
NAN_METHOD(GCStringWrap::substr)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if ((info.Length() == 2) && info[0]->IsNumber() && info[1]->IsNumber())
{
// Convert from number value
unsigned int arg0 = static_cast<unsigned int>(info[0]->NumberValue());
// Convert from number value
unsigned int arg1 = static_cast<unsigned int>(info[1]->NumberValue());
// Call wrapped method
gCString->substr(arg0, arg1);
}
}
NAN_METHOD(GCStringWrap::swap)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if ((info.Length() == 1) && (info[0]->IsObject() && (pylon_v8::ToGCString(info[0]->ToObject()->GetConstructorName()) == "gcstring")))
{
// Unwrap object
GCStringWrap* arg0_wrap = ObjectWrap::Unwrap<GCStringWrap>(info[0]->ToObject());
gcstring* arg0 = arg0_wrap->GetWrapped();
// Call wrapped method
gCString->swap(*arg0);
// Set return value to undefined
info.GetReturnValue().SetUndefined();
}
}
NAN_METHOD(GCStringWrap::w_str)
{
GCStringWrap* wrappedGCString = ObjectWrap::Unwrap<GCStringWrap>(info.This());
gcstring* gCString = wrappedGCString->GetWrapped();
if (info.Length() == 0)
{
// Call wrapped method
gCString->w_str();
}
}
NAN_METHOD(GCStringWrap::getline)
{
if ((info.Length() == 3) && info[0]->IsObject() && (info[1]->IsObject() && (pylon_v8::ToGCString(info[1]->ToObject()->GetConstructorName()) == "gcstring")) && info[2]->IsString())
{
// TODO: Implement wrapper for basic_istream<char, std::char_traits<char> >
// Unwrap object
GCStringWrap* arg1_wrap = ObjectWrap::Unwrap<GCStringWrap>(info[1]->ToObject());
gcstring* arg1 = arg1_wrap->GetWrapped();
// Convert from string value
char arg2 = pylon_v8::ToGCString(info[2]->ToString()).c_str()[0];
// Call wrapped function
// TODO: Implement return value wrapper for getline(*arg0, *arg1, arg2)
}
else if ((info.Length() == 2) && info[0]->IsObject() && (info[1]->IsObject() && (pylon_v8::ToGCString(info[1]->ToObject()->GetConstructorName()) == "gcstring")))
{
// TODO: Implement wrapper for basic_istream<char, std::char_traits<char> >
// Unwrap object
GCStringWrap* arg1_wrap = ObjectWrap::Unwrap<GCStringWrap>(info[1]->ToObject());
gcstring* arg1 = arg1_wrap->GetWrapped();
// Call wrapped function
// TODO: Implement return value wrapper for getline(*arg0, *arg1)
}
}
NAN_METHOD(GCStringWrap::ThrowBadAlloc)
{
if ((info.Length() == 2) && info[0]->IsString() && info[1]->IsNumber())
{
// Convert from string value
char* arg0 = pylon_v8::ToGCString(info[0]->ToString()).c_str();
// Convert from number value
int arg1 = static_cast<int>(info[1]->NumberValue());
// Call wrapped function
ThrowBadAlloc(arg0, arg1);
// Set return value to undefined
info.GetReturnValue().SetUndefined();
}
}
|
0931d91b1e45fa5c009e6d9901f12092352e7b11 | 29b91fafb820e5513c7284072dca5bd77c189b22 | /bst_preorder_represents_bst.cpp | b523b3d6c1a34b7b39a916fcaa93388196ec83e5 | [] | no_license | rishirajsurti/gfg | c1d542ebb59790d529be7be2a107a67f4fae2b35 | f7205bec70c39e085bf8a45b527f7464c8bcef8e | refs/heads/master | 2021-03-27T19:13:06.466708 | 2016-11-15T11:43:31 | 2016-11-15T11:43:31 | 61,434,826 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 499 | cpp | bst_preorder_represents_bst.cpp | #include <bits/stdc++.h>
using namespace std;
typedef vector<int> vi;
vi a;
bool solve(){
stack<int> s;
int root = INT_MIN;
for(int i = 0; i < a.size(); i++){
if(a[i] < root) return false;
while(!s.empty() && a[i] > s.top()){
root = s.top(); s.pop();
}
s.push(a[i]);
}
return true;
}
int main(){
int t; scanf("%d", &t);
while(t--){
int n; scanf("%d", &n);
a.clear();
a.assign(n, 0);
for(int i = 0 ; i < n; scanf("%d", &a[i++] ));
printf("%d\n", solve());
}
return 0;
} |
45377e2d2ec3996ff2380656001fdf0c37b352e8 | 5ca54a530989235266fa7aebd18705cdea8080f6 | /Creational/FactoryMethod/FactoryMehtod/C++/Factory.h | 493b18b0a66ab4d6aa213c32ae5fa61585942e95 | [] | no_license | Farbowd/Practical-Design-Patterns | 87710df0d7f6dac4a3774a58f95a56413ccda8b6 | eeb76c0bceec66717d9b0be0de17db52d5e8dbf1 | refs/heads/master | 2023-04-23T15:26:07.882500 | 2021-05-07T09:50:14 | 2021-05-07T09:50:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 301 | h | Factory.h | #ifndef FACTORY_H
#define FACTORY_H
class Product {
};
class ConcreteProduct : public Product {
};
class Factory {
public:
void AnOperation();
protected:
virtual Product* FactoryMethod() = 0;
};
class ConcreteFactory : public Factory {
protected:
virtual Product* FactoryMethod();
};
#endif
|
3296b82b3c02f0978e454cee416d7b526843788f | 44deb39f20d9f741c6a201bccd3040cc4244d883 | /Day10/String5.cpp | bdc2b47ecd8e8697a18d4769b4c2de6ed51be001 | [] | no_license | gargpriyam21/CPP-Codes | 0a51060aaa2527f21d6a5f8f7c115aaf67a365f3 | 895a8f04879d1d43f44593f25fee5b0f4934de15 | refs/heads/master | 2022-04-12T12:38:28.565108 | 2020-04-10T15:51:12 | 2020-04-10T15:51:12 | 254,673,188 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 236 | cpp | String5.cpp | //
// String5.cpp
//
//
// Created by Neera on 21/06/16.
//
//
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char s1[10]="BIRD";
char s2[10]="BEAR";
int i = strcmp(s1,s2);
cout<<i;
}
|
8b30c580345af40030d0f222735f8161951db6f6 | e68f71f8b60f103d788a7d52bb6947653a00d8be | /Tree/Binary Tree/Traversal/DFS/Iterative/preorder.cpp | 729245c8dd09652af097931d86a5759f52ab3c05 | [] | no_license | mridulraturi7/Data-Structures | 8a662cdec15b4b3c22de39efa7bb4fbfb45ec6cd | 26e18c72d5ea8c27ab24a56299d3de6743b57e24 | refs/heads/master | 2023-06-05T07:36:15.808088 | 2021-06-22T18:17:50 | 2021-06-22T18:17:50 | 287,454,824 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,599 | cpp | preorder.cpp | /*
Implementation 12.
Preorder Traversal of a Binary Tree using Stack (Iterative).
Algorithm:
Create a stack and push the root node into stack.
while(stack is not empty)
{
Pop an element from stack.
Push the right child of popped element.
Push the left child of popped element.
}
*/
#include<iostream>
#include<stack>
using namespace std;
struct Node
{
int data;
struct Node *left;
struct Node *right;
};
Node* createNode(int data)
{
struct Node *newNode = new Node();
if(!newNode)
{
cout<<"Memory Error!!";
return NULL;
}
newNode->data = data;
newNode->left = NULL;
newNode->right = NULL;
}
void preorder(struct Node *root)
{
//Check if the tree is empty.
if(root == NULL)
{
return;
}
stack<struct Node*> s;
s.push(root);
while(s.empty() == false)
{
struct Node *current = s.top();
s.pop();
cout<<current->data<<" ";
//Right child is pushed befor left so that left will come at top and processed first.
if(current->right != NULL)
{
s.push(current->right);
}
if(current->left != NULL)
{
s.push(current->left);
}
}
}
int main()
{
struct Node *root = createNode(1);
root->left = createNode(2);
root->right = createNode(3);
root->left->left = createNode(4);
root->left->right = createNode(5);
cout<<"Preorder Traversal of the Binary Tree: ";
preorder(root);
return 0;
} |
9bfc5db635b82cc6130baa7197d0354b7fe440ec | fa9c0a6cf911551551d56c2270808b1e35926ae0 | /Apunts_examen_Programació_2/Apunts_examen_Programació_2/Stack_2.h | a39faa2579f17c5cdd920db62c7adcb35a9de71d | [] | no_license | AGM16/Material-Apunts-Programaci--2 | fd653e8f76eeeca7b226a60b101eb9ea36bca88c | 1b8564a1f19c233fa969494cbaf8b75eb16e2511 | refs/heads/master | 2020-05-16T23:51:30.788460 | 2015-06-09T07:01:05 | 2015-06-09T07:01:05 | 32,765,145 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 592 | h | Stack_2.h | #ifndef _STACK_2_
#define _STACK_2_
#include "Double_List.h"
template<class TYPE>
class Stack_2
{
private:
DLinkList<TYPE> data;
public:
void Push_s2(const TYPE& _data)
{
data.add(_data);
}
bool Pop_s2(TYPE& result)
{
if (data.Count() != NULL)
{
result = data.end->data;
data.del(data.end);
return true;
}
return false;
}
void Clear()
{
data.Clear();
}
unsigned int Count()const
{
return data.Count();
}
const TYPE* PEEK_s2(unsigned int index)const
{
if (index < data.Count())
{
return &data[index];
}
return NULL;
}
};
#endif |
d202629b10a26df093557224e039811c5c3eb47c | 4b79831a6d198952a492c02c4aaa19a826d94477 | /TargetSum.cpp | bef027ba62821599e74c39cd394d1da5ae29c15f | [] | no_license | moakbari/LeetCode | acbfdc680ebb5a865cab354676e5f42542f14615 | e6aef12421c59de6cff314207940b50c9e0e31cb | refs/heads/master | 2020-04-29T01:22:15.712029 | 2019-05-27T20:08:27 | 2019-05-27T20:08:27 | 175,727,876 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 754 | cpp | TargetSum.cpp | class Solution {
public:
// sum(p) - sum(n) = S; --> sum(p) - sum(n) + sum(p) + sum(n) = S + sum(nums) ---> 2*sum(p) = S + sum(nums) ---> sum(p) = (S+sum(nums)) /2
int findTargetSumWaysHelper(vector<int>& nums, int target){
vector<int> Dp(target + 1, 0);
Dp[0] = 1;
for (int i = 0; i < nums.size(); i++){
for (int j = target; j >= nums[i]; j--){
Dp[j] += Dp[j - nums[i]];
}
}
return Dp[target];
}
int findTargetSumWays(vector<int>& nums, int S) {
int sumNums = accumulate(nums.begin(), nums.end(), 0);
return (S > sumNums || (S + sumNums) & 1) ? 0 : findTargetSumWaysHelper(nums, (S + sumNums) >> 1);
}
};
|
7ebaa2c59aa3edd70a311338ef66af2989fde671 | 5bc6cc084bbd2273a58d0be37c79fdd14caf7a48 | /Source.cpp | c9620625c80bd7252d7d0a81b578dad67aabe2e2 | [] | no_license | okeith12/ProjectScripts | 76d3e022352568ca8b5d852ee480aa5f7f1024be | 9e53fe5fb7e5e25bf421aff9b1f58961e310308d | refs/heads/master | 2021-09-23T21:55:19.962102 | 2018-09-28T02:13:28 | 2018-09-28T02:13:28 | 116,326,423 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,338 | cpp | Source.cpp | #include <iostream>
#include <fstream>
#include <utility>
#include <vector>
#include <sys/types.h>
#include <algorithm>
//#include <sys/wait.h>
//#include <unistd.h>
using namespace std;
void swap(int &a, int &b);
void childFunction(pair<int, pair<int, int>>b);
void parentFunction(pair<int, pair<int, int>>b);
bool priority_sort(pair<int, int> &a, pair<int, int> &b);
int main() {
//pid_t PID;
int pid = 0;
int count = 0;
int quantum, exec, pr;
vector<pair<int, int>> a;
vector<int> pid2;
vector<int>::iterator check;
pair<int, pair<int, int>>b;
fstream input_f;
input_f.open("input.txt");
while (input_f >> quantum) {
while (input_f >> exec >> pr) {
a.push_back(make_pair(exec, pr));
}
}
for (int i = 0; i < a.size(); i++) {
pid2.push_back(pid);
pid++;
}
sort(a.begin(), a.end(), priority_sort);
cout << "Scheduling queue: ";
for (int i = 0; i < a.size(); i++) {
if (a[i].first > quantum) {
a.insert(a.begin() + i + 2, make_pair(a[i].first - quantum, a[i].second)); //SPLIT IF GREATER THEN QUANTUM;
pid2.insert(pid2.begin() + i + 2, pid2[i]);
a[i].first = a[i].first - (a[i].first - quantum);
}
b = make_pair(pid2[i], a[i]);
parentFunction(b);
}
cout << endl;
pid = 0;
int endtime = a.size();
for (int i = 0; i < a.size(); i++) {
b = make_pair(pid2[i], a[i]);
pid++;
cout << "Process " << b.first << ": " << "exec time = " << b.second.first << "," << "priorty ="
<< b.second.second << endl;
if (pid2[i] == pid2[i+2] !& pid2.end()) {
//sleep(b.second.first);
}
else
//sleep(b.second.first);
cout << "Process " << b.first << " ends." << endl;
/* if (PID = fork() == 0) {
childFunction(b);
exit(0);
}
else
wait(&endtime);
*/
}
input_f.close();
system("pause");
}
void childFunction(pair<int, pair<int, int>>b) {
cout << "Process " << b.first << ": " << "exec time = " << b.second.first << "," << "priorty ="
<< b.second.second << endl;
//sleep(b.second.first);
cout << "Process " << b.first << "ends." << endl;
}
void parentFunction(pair<int, pair<int, int>>b) {
cout << "(" << b.first << "," << b.second.first << "," <<
b.second.second << ")" << " ";
}
bool priority_sort(pair<int, int> &a, pair<int, int> &b)
{
return (a.second < b.second);
}
|
03350b3b36acb3aed027b0bc95184d05df976486 | 9ed0ca49d7fddf6ecb1784d15709a3235cba37b4 | /Source/Runtime/Foundation/Memory/StlAllocator.h | 89580f41f0b6b4cc0d99fd98e73f3f5d74f84c31 | [
"MIT"
] | permissive | simeks/Sandbox | 1332422161924dd490bd70cac8d791a6bfb67492 | 394b7ab774b172b6e8bc560eb2740620a8dee399 | refs/heads/master | 2020-05-17T08:45:03.388896 | 2017-03-05T14:10:37 | 2017-03-05T14:10:37 | 83,967,032 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,629 | h | StlAllocator.h | // Copyright 2008-2014 Simon Ekström
#ifndef __FOUNDATION_STLALLOCATOR_H__
#define __FOUNDATION_STLALLOCATOR_H__
namespace sb
{
/// @brief Custom allocator for STL
///
/// It's made so that we can use our memory::DebugAllocator with STL
template<typename T>
class stl_debug_allocator : public std::allocator<T>
{
public:
typedef T value_type;
typedef size_t size_type;
typedef ptrdiff_t difference_type;
typedef T* pointer;
typedef const T* const_pointer;
typedef T& reference;
typedef const T& const_reference;
template<typename U>
struct rebind
{
typedef stl_debug_allocator<U> other;
};
stl_debug_allocator() throw() {}
stl_debug_allocator(const stl_debug_allocator&) throw() {}
template<typename U> stl_debug_allocator(const stl_debug_allocator<U>&) throw() {}
~stl_debug_allocator() throw() {}
pointer allocate(size_type n, const void* = 0)
{
#ifdef SANDBOX_MEMORY_TRACKING
return (pointer)memory::DebugAllocator().Allocate(n*sizeof(T));
#else
return (pointer)memory::DefaultAllocator().Allocate(n*sizeof(T));
#endif
}
void deallocate(pointer p, size_type)
{
#ifdef SANDBOX_MEMORY_TRACKING
memory::DebugAllocator().Free(p);
#else
memory::DefaultAllocator().Free(p);
#endif
}
};
template <typename T, typename U>
inline bool operator==(const stl_debug_allocator<T>&, const stl_debug_allocator<U>){ return true; }
template <typename T, typename U>
inline bool operator!=(const stl_debug_allocator<T>&, const stl_debug_allocator<U>){ return false; }
} // namespace sb
#endif // __FOUNDATION_STLALLOCATOR_H__
|
8bdbf1e780b262967a412c55dd6aa9ee1a3e47a0 | fa59cfedc5f57e881679fb0b5046da8c911229ca | /2670 연속부분최대곱.cpp | cf9d0eb130f20ea9c9208b090789b137bcf1be61 | [] | no_license | ju214425/algorithm | e2862df2c55490b97aefffaec99bb449a9db7e1f | db6d96eda3272a7faddaf11fdd02534d6231eafc | refs/heads/master | 2023-07-02T21:32:53.718629 | 2023-06-25T06:04:57 | 2023-06-25T06:04:57 | 193,701,850 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 178 | cpp | 2670 연속부분최대곱.cpp | #include <cstdio>
#include <vector>
using namespace std;
int main(){
int n;
scanf("%d", &n);
vector<int> v(n+1);
for(int i = 1 ; i <= n ; i++){
scanf("%d", &v[i]);
}
} |
e169ea9a9b6bfd12f671c7877dc7037214cde44d | 2f9493b5001f9c881126d24ade21dd63ea08057d | /src/Altimeter.h | 547d380a7e8b868f28c6fe5be5682b2433e05760 | [] | no_license | stanford-ssi/rockets-irec-sradaltimeter | 24ea5a02f73e40632bd61998407b1da2a827be01 | bd6c8bfb12a65ca1f20a4596cfbcb34ea2329640 | refs/heads/master | 2021-01-12T01:24:49.285944 | 2018-05-16T03:11:45 | 2018-05-16T03:11:45 | 78,380,915 | 1 | 3 | null | 2018-05-13T23:52:24 | 2017-01-09T00:49:26 | C++ | UTF-8 | C++ | false | false | 1,815 | h | Altimeter.h | /*
This file contains the class for the altimeter for which everything
else is a meber of.
*/
#ifndef ALTIMETER_H
#define ALTIMETER_H
#include <WProgram.h>
#include <stdint.h>
#include <SPI.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_BNO055.h>
#include <Adafruit_BMP280.h>
#include "Flight_Sensors.h"
#include "Flight_Data.h"
#include "Flight_Events.h"
#include "SITL.h"
#include "Flight_Configuration.h"
#include "Logger.h"
#include "Altitude_Filter.h"
#include "Average.h"
#include "Hermes.h"
#include "hermes_irec.h"
#include "Utils.h"
class Altimeter{
public:
/* member objects */
Altitude_Filter alt_filter;
Flight_Data flight_data;
#ifdef SITL_ON
SITL flight_sensors;
#else
Flight_Sensors flight_sensors;
#endif
Flight_Events flight_events;
Logger logger;
/* member variables */
uint16_t flight_state = STRTUP; //flight state variable
uint8_t led_counter = 0; //counter used to blink the led
uint8_t buzzer_counter; //counter used to buzz the buzzer
uint8_t buzzer_freq_scaler; //counter used to act as a scaler on the buzzer frequency
uint8_t ematch_triggers = 0;
int ematch_counters[4] = {0,0,0,0};
uint8_t event_hist = 0;
void manageEvents();
void startup();
void transmitXbee();
private:
void eventHandle(event_t event);
void mainUpdate();
void manageBuzzer();
void manageLEDs();
void manageEmatches();
void logData();
void buzzInidicate(bool buzz);
void buzzOff();
bool setXbeeBuffer();
//flight transitions
bool checkOnRail();
bool checkLiftoff();
bool checkLowAlt();
void recoveryEvent(int event);
uint8_t transmit_counter = 0;
uint8_t xbee_buf[XBEE_BUF_LENGTH];
uint8_t xbee_buf_head;
//transitions variables
bool liftoff_accel = false;
void breakRocket();
};
#endif
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.