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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4a68836fd4f95b147a465a89d0191c2d4a5cd271 | b4af26ef6994f4cbb738cdfd182e0a992d2e5baa | /source/leetcode/1882/panze.cpp | ba7665b0eb3f7e7894ab94a1867c168d0edd3b64 | [] | no_license | wisest30/AlgoStudy | 6819b193c8e9245104fc52df5852cd487ae7a26e | 112de912fc10933445c2ad36ce30fd404c493ddf | refs/heads/master | 2023-08-08T17:01:12.324470 | 2023-08-06T11:54:15 | 2023-08-06T11:54:15 | 246,302,438 | 10 | 17 | null | 2021-09-26T13:52:18 | 2020-03-10T13:02:56 | C++ | UTF-8 | C++ | false | false | 1,208 | cpp | panze.cpp | #define ull unsigned long long
struct Server {
int idx;
int priority;
friend bool operator<(const Server &lhs, const Server &rhs) {
return (lhs.priority != rhs.priority) ? (lhs.priority > rhs.priority) : (lhs.idx > rhs.idx);
}
};
struct Worker {
Server server;
ull end_clock;
friend bool operator<(const Worker &lhs, const Worker &rhs) {
return lhs.end_clock > rhs.end_clock;
}
};
class Solution {
public:
vector<int> assignTasks(vector<int>& servers, vector<int>& tasks) {
ull clock = 0;
priority_queue<Server> idle_servers;
priority_queue<Worker> workers;
for (int i = 0; i < servers.size(); ++i) {
idle_servers.push({i, servers[i]});
}
vector<int> ret;
for (const auto &task : tasks) {
if (idle_servers.empty()) {
clock = workers.top().end_clock;
}
while (!workers.empty() && workers.top().end_clock <= clock) {
idle_servers.push(workers.top().server);
workers.pop();
}
auto server = idle_servers.top();
idle_servers.pop();
ret.push_back(server.idx);
workers.push({server, clock + task});
clock++;
}
return ret;
}
}; |
1eaf7164808b3e91ecad1d554a8111922535e810 | 14015867b104910fc19ceda6a2724ca831c9e515 | /bst_tests.h | bf7a9151d1a84575375e0e0d354201d259492d03 | [] | no_license | barskhianfannie/Objects | a673f861b4769267634e5fe64a58e8f2ef953395 | 1f07f1a15bf69a007276ebb3a41e8ddd369ba8cc | refs/heads/master | 2020-08-04T02:31:14.663149 | 2019-09-30T22:55:27 | 2019-09-30T22:55:27 | 211,971,909 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,365 | h | bst_tests.h | #ifndef BST_TESTS_H
#define BST_TESTS_H
// AUTHOR : FANNIE BARSKHIAN
// CLASS : DATA STRUCTURES
// PROJECT : BINARY SEARCH TREES
#include "../BSTrees/bst_functions.h"
#include "../BSTrees/bst_class.h"
#include <iostream>
void test_insert();
tree_node<int>* make_tree();
void test_sorted_list();
void BST_Menu();
void test_tree_copy();
void test_tree_search();
void test_tree_erase();
void run_lower_tests();
void big_three_tests();
char menu;
int num;
bool run = true;
void big_three_tests()
{
cout << "===============================================================" << endl;
cout << " TESTING BST CLASS BIG THREE FUNCTIONS " << endl;
cout << "===============================================================" << endl;
BSTree<int> tree;
int numbers[] = {5,4,7,12, 9,10,15,17,50,25,75,35,65,85};
for(int i = 0; i < 14; i++)
{
tree.insert(numbers[i]);
}
cout << "Made Tree # 1 : " << endl << tree << endl;
cout << "Testing Copy CTOR [ BSTree<int> tree_2 = tree_1 ] " << endl;
BSTree<int> tree_copy = tree;
cout << tree_copy << endl;
tree_copy.clear();
int numbers_1[] = {5,4,7,12};
for(int i = 0; i < 4; i++)
{
tree_copy.insert(numbers_1[i]);
}
cout << "Setting Tree # 2 to : " << endl << endl;
cout << tree_copy;
cout << "Testing Assignment Operator [ tree_2 = tree_1 ] " << endl << endl;
tree_copy = tree;
cout << tree_copy;
cout << "Clearing Tree # 1 then running Assignment Operator [ tree_2 = tree_1 ] again " << endl;
cout << "Nothing should be printing here " << endl;
}
void BST_Menu()
{
BSTree<int> tree;
tree.clear();
while(run)
{
cout << "[R]andom [I]nsert [C]lear [S]earch e[X]it: " ;
cin >> menu;
menu = toupper(menu);
switch(menu)
{
case 'R':
{
num = rand() % 100;
cout << "-- INSERTING: " << num << endl;// num in the range 0 to 99
cout << endl << endl;
tree.insert(num);
cout << tree << endl << endl;
cout << "==============================================" << endl << endl;
break;
}
case 'I' :
{
cout << "Please input number you would like to add to the tree : " ;
cin >> num;
cout << "-- INSERTING: " << num << endl;
tree.insert(num);
cout << endl << endl;
cout << tree << endl << endl;
cout << "==============================================" << endl << endl;
break;
}
case 'C' :
{
cout << "Clearing Tree" << endl;
tree.clear();
cout << endl << endl;
cout << tree << endl << endl;
cout << "==============================================" << endl << endl;
break;
}
case 'S':
{
cout << "Please input a number to see if it exists in the tree: " ;
cin >> num;
cout << "Searching for: " << num << endl;
tree_node<int>* root = new tree_node<int>();
if(tree.search(num,root))
{
cout << "Found : " << num << endl;
cout << endl << endl;
cout << tree << endl << endl;
cout << "==============================================" << endl << endl;
}else{
cout << num << " does not exist in this tree." << endl;
cout << endl << endl;
cout << tree << endl << endl;
cout << "==============================================" << endl << endl;
}
break;
}
case 'X' :
{
run = false;
break;
}
default :
{
cout << "Invalid Input" << endl;
}
}
}
}
tree_node<int>* make_tree()
{
int numbers[] = {5,4,7,12, 9,10,15,17,50,25,75,35,65,85};
tree_node<int>* root = new tree_node<int>();
tree_clear(root); // erase 0 as the root
for(int i = 0; i < 11; i++)
{
tree_insert(root, numbers[i]);
}
return root;
}
void test_insert()
{
cout << "==============================================" << endl;
cout << "TESTING INSERT FUNCTION" << endl;
cout << "==============================================" << endl << endl;
tree_node<int>* root = make_tree();
tree_print(root);
}
void test_sorted_list()
{
cout << "==============================================" << endl;
cout << "TESTING SORTED LIST FUNCTION" << endl;
cout << "==============================================" << endl << endl;
int sorted[] ={1,2,3,4,5,6,7,8,9,10};
int size = sizeof(sorted)/ sizeof (sorted[0]);
tree_node<int>* sort = new tree_node<int>();
sort = tree_from_sorted_list(sorted, size); // works
tree_print(sort);
cout << endl;
cout << "==============================================" << endl;
cout << "TESTING DEBUG PRINT H/BF FUNCTION" << endl;
cout << "==============================================" << endl << endl;
tree_print_debug(sort);
}
void test_tree_copy()
{
cout << "==============================================" << endl;
cout << "TESTING COPY FUNCTION" << endl;
cout << "==============================================" << endl << endl;
tree_node<int>* root = make_tree();
cout << "Making Tree # 1 " << endl;
cout << "==================================" << endl;
tree_print(root);
cout << "Making Copy of Tree # 1 into Tree # 2 then printing Tree # 2 " << endl;
cout << "==================================" << endl;
tree_node<int>* root_copy;
root_copy = tree_copy(root);
tree_print(root_copy);
}
void test_tree_search()
{
cout << "==============================================" << endl;
cout << "TESTING SEARCH FUNCTION" << endl;
cout << "==============================================" << endl << endl;
tree_node<int>* root = make_tree();
cout << "This is Your Tree " << endl;
cout << "==================================" << endl;
tree_print(root);
cout << "Please input a number to see if it exists in the tree: " ;
cin >> num;
cout << "Searching for: " << num << endl;
tree_node<int>* found_ptr = new tree_node<int>();
if(tree_search(root, num, found_ptr))
{
cout << "Found : " << num << endl;
cout << endl << endl;
cout << "==============================================" << endl << endl;
}else{
cout << num << " does not exist in this tree." << endl;
cout << endl << endl;
cout << "==============================================" << endl << endl;
}
}
void test_tree_erase()
{
cout << "==============================================" << endl ;
cout << "TESTING ERASE FUNCTION" << endl;
cout << "==============================================" << endl << endl;
tree_node<int>* root = make_tree();
cout << "This is Your Tree " << endl;
tree_print(root);
cout << endl << endl;
cout << "==================================" << endl;
cout << "Please input a number you would like to erase from the tree " ;
cin >> num;
run = tree_erase(root, num);
if(!run)
{
cout << "Found & Erasing : " << num << endl;
cout << endl << endl;
tree_print(root);
cout << "==============================================" << endl << endl;
}else{
cout << num << " does not exist in this tree." << endl;
tree_print(root);
cout << endl << endl;
cout << "==============================================" << endl << endl;
}
}
void run_lower_tests()
{
test_insert();
cout << endl << endl;
test_sorted_list();
cout << endl << endl;
test_tree_copy();
cout << endl << endl;
test_tree_erase();
cout << endl << endl;
test_tree_search();
cout << endl << endl;
}
#endif // BST_TESTS_H
|
9c79d7f616917969972243f25226ff00192bb3ce | 5128de785ab87c9c83d00c0f543b8bd8561b8d8b | /src/gui/etriggermain.h | 4497ff66ea5db73b0b41787df06b0f1af4e10c86 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | Gianluigi/3gger | 15059e166f9df867cbdf7601cbfc8f748843f5ce | 5c73c6361473362c2630cb909d765e278059adee | refs/heads/master | 2021-01-18T14:02:43.539871 | 2014-06-12T20:35:45 | 2014-06-12T20:35:45 | 20,763,325 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,188 | h | etriggermain.h | #ifndef ETRIGGERMAIN_H
#define ETRIGGERMAIN_H
#include <QtWidgets/QMainWindow>
#include <qextserialenumerator.h>
#include <qextserialport.h>
#include <QList>
namespace Ui {
class eTriggerMain;
}
class eTriggerMain : public QMainWindow {
Q_OBJECT
public:
eTriggerMain(QWidget *parent = 0);
~eTriggerMain();
protected:
void changeEvent(QEvent *e);
void closeEvent(QCloseEvent *event);
private:
Ui::eTriggerMain *ui;
QextSerialPort *port;
QString curFile;
bool saveProtocol(QString filename);
bool trySaveProtocol();
void setTitle(QString title);
private slots:
void on_actionSerial_Port_2_triggered();
void on_actionSave_As_triggered();
void on_actionExit_triggered();
void on_actionAbout_triggered();
void on_actionNew_triggered();
void on_spinTrainRate_valueChanged(double );
void on_spinNumTrains_valueChanged(int );
void on_pushStop_clicked();
void on_actionSave_triggered();
void on_actionOpen_triggered();
void on_pushStart_clicked();
void on_pushRemove_clicked();
void on_pushAdd_clicked();
void onReadyRead();
void documentWasModified();
};
#endif // ETRIGGERMAIN_H
|
dd4c4f4691fd7714f3e3e37ff506d368b418a2df | 4f2283750a3bb8706f1dd176cf9823c5f67f40c8 | /chaos/cu_toolkit/ControlManager/AttributeSharedCacheWrapper.h | e6aab2b813ee89c673c857fc2470e675038d67b7 | [
"Apache-2.0"
] | permissive | fast01/chaosframework | 62d97cc05823d9ec71f494ac518f927cbf837476 | 28194bcca5f976fd5cf61448ca84ce545e94d822 | refs/heads/master | 2020-12-31T04:06:07.569547 | 2014-12-05T09:37:34 | 2014-12-05T09:37:34 | 29,051,305 | 2 | 0 | null | 2015-01-10T08:07:31 | 2015-01-10T08:07:31 | null | UTF-8 | C++ | false | false | 8,094 | h | AttributeSharedCacheWrapper.h | /*
* AttributeSharedCacheWrapper.h
* !CHOAS
* Created by Bisegni Claudio.
*
* Copyright 2014 INFN, National Institute of Nuclear Physics
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __CHAOSFramework__AttributeSharedCahe__
#define __CHAOSFramework__AttributeSharedCahe__
#include <chaos/common/exception/CException.h>
#include <chaos/common/data/cache/AttributesSetting.h>
namespace chaos{
namespace cu {
namespace control_manager {
using namespace chaos::common::data::cache;
class AttributeSharedCacheWrapper {
//! attributed value shared cache
/*!
The data in every attribute is published automatically on the chaos data service
with somne triggering logic according to the domain one.
*/
SharedCacheInterface * const attribute_value_shared_cache;
public:
AttributeSharedCacheWrapper(SharedCacheInterface * const _attribute_value_shared_cache);
~AttributeSharedCacheWrapper();
//! return the typed const ptr associated at a name for a determinate domain
template<typename T>
T * getRWPtr(AttributeValueSharedCache::SharedVariableDomain domain,
const std::string& attribute_name) {
CHAOS_ASSERT(attribute_value_shared_cache)
switch(domain) {
case AttributeValueSharedCache::SVD_INPUT:
throw CException(-1, "Input variable domain can't be used as read write pointer", __PRETTY_FUNCTION__);
break;
case AttributeValueSharedCache::SVD_SYSTEM:
throw CException(-1, "System variable domain can't be used as read write pointer", __PRETTY_FUNCTION__);
break;
default:
break;
}
ValueSetting *value_setting = attribute_value_shared_cache->getVariableValue(domain, attribute_name);
return value_setting->getValuePtr<T>();
}
//! return the typed const ptr associated at a name for a determinate domain
template<typename T>
const T * getROPtr(AttributeValueSharedCache::SharedVariableDomain domain,
const std::string& attribute_name) {
CHAOS_ASSERT(attribute_value_shared_cache)
ValueSetting *value_setting = attribute_value_shared_cache->getVariableValue(domain, attribute_name);
return (const T *)value_setting->getValuePtr<T>();
}
//! return the typed value associated at a name for a determinate domain
template<typename T>
T getValue(AttributeValueSharedCache::SharedVariableDomain domain,
const std::string& attribute_name) {
CHAOS_ASSERT(attribute_value_shared_cache)
ValueSetting *value_setting = attribute_value_shared_cache->getVariableValue(domain, attribute_name);
return *value_setting->getValuePtr<T>();
}
// Return the value object for the domain and the string key
template<typename T>
void getCachedOutputAttributeValue(const std::string& attribute_name,
T*** value_ptr) {
CHAOS_ASSERT(attribute_value_shared_cache)
ValueSetting *value_setting = attribute_value_shared_cache->getVariableValue(AttributeValueSharedCache::SVD_OUTPUT, attribute_name);
if(value_setting) {
*value_ptr = (T**)&value_setting->value_buffer;
}
}
// Return the value object for the domain and the index of the variable
template<typename T>
void getCachedOutputAttributeValue(VariableIndexType variable_index,
T*** value_ptr) {
ValueSetting *value_setting = attribute_value_shared_cache->getVariableValue(AttributeValueSharedCache::SVD_OUTPUT, variable_index);
if(value_setting) {
*value_ptr = (T**)&value_setting->value_buffer;
}
}
// Return the value object for the domain and the string key
template<typename T>
void getCachedCustomAttributeValue(const std::string& attribute_name,
T*** value_ptr) {
CHAOS_ASSERT(attribute_value_shared_cache)
ValueSetting *value_setting = attribute_value_shared_cache->getVariableValue(AttributeValueSharedCache::SVD_CUSTOM, attribute_name);
if(value_setting) {
*value_ptr = (T**)&value_setting->value_buffer;
}
}
// Return the value object for the domain and the index of the variable
template<typename T>
void getCachedCustomAttributeValue(VariableIndexType variable_index,
T*** value_ptr) {
ValueSetting *value_setting = attribute_value_shared_cache->getVariableValue(AttributeValueSharedCache::SVD_CUSTOM, variable_index);
if(value_setting) {
*value_ptr = (T**)&value_setting->value_buffer;
}
}
// Return the value object for the domain and the string key
template<typename T>
void getReadonlyCachedAttributeValue(AttributeValueSharedCache::SharedVariableDomain domain,
const std::string& attribute_name,
const T*** value_ptr) {
CHAOS_ASSERT(attribute_value_shared_cache)
ValueSetting *value_setting = attribute_value_shared_cache->getVariableValue(domain, attribute_name);
if(value_setting) {
*value_ptr = (const T**)&value_setting->value_buffer;
}
}
// Return the value object for the domain and the index of the variable
template<typename T>
void getReadonlyCachedAttributeValue(AttributeValueSharedCache::SharedVariableDomain domain,
VariableIndexType variable_index,
const T*** value_ptr) {
ValueSetting *value_setting = attribute_value_shared_cache->getVariableValue(domain, variable_index);
if(value_setting) {
*value_ptr = (const T**)&value_setting->value_buffer;
}
}
// Set the value for a determinated variable in a determinate domain
void setOutputAttributeValue(const std::string& attribute_name,
void * value,
uint32_t size);
// Set the value for a determinated variable in a determinate domain
void setOutputAttributeValue(VariableIndexType attribute_index,
void * value,
uint32_t size);
void setOutputDomainAsChanged();
bool setOutputAttributeNewSize(const std::string& attribute_name,
uint32_t new_size);
bool setOutputAttributeNewSize(VariableIndexType attribute_index,
uint32_t new_size);
boost::shared_ptr<SharedCacheLockDomain> getLockOnOutputAttributeCache(bool write_lock = true);
// Get the index of the changed attribute
void getChangedInputAttributeIndex(std::vector<VariableIndexType>& changed_index);
void resetChangedInputIndex();
// Return the names of all variabl einto a determinated domain
void getVariableNames(AttributeValueSharedCache::SharedVariableDomain domain,
std::vector<std::string>& names);
// Add a new variable
void addCustomAttribute(const std::string& name,
uint32_t max_size,
chaos::DataType::DataType type);
// Set the value for a determinated variable in a determinate domain
void setCustomAttributeValue(const std::string& attribute_name,
void * value,
uint32_t size);
// Set the value for a determinated variable in a determinate domain
void setCustomAttributeValue(VariableIndexType attribute_index,
void * value,
uint32_t size);
void setCustomDomainAsChanged();
boost::shared_ptr<SharedCacheLockDomain> getLockOnCustomAttributeCache(bool write_lock = true);
boost::shared_ptr<SharedCacheLockDomain> getReadLockOnInputAttributeCache();
};
}
}
}
#endif /* defined(__CHAOSFramework__AttributeSharedCahe__) */
|
aae5609bed0ad6cb56910adbe2b5aab46e8977cd | d04531545ad137c850763fa412651d0acbbabc53 | /neon_examples/HOG_SVM/HOGDescriptorFixture.h | 417d6f0a53afd607164db0615c95e3d0645d6342 | [] | no_license | karljiang118440/ARM-compute-library | 216089b00aada05df611cd36d49ec7a8f720cac8 | 09073974fe8a343dc4f767a9635323aa71be5522 | refs/heads/master | 2022-01-14T13:41:05.926063 | 2019-07-17T12:29:10 | 2019-07-17T12:29:10 | 183,392,433 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,127 | h | HOGDescriptorFixture.h | #ifndef ARM_COMPUTE_TEST_HOG_DESCRIPTOR_FIXTURE
#define ARM_COMPUTE_TEST_HOG_DESCRIPTOR_FIXTURE
#include "arm_compute/core/HOGInfo.h"
#include "arm_compute/core/TensorShape.h"
#include "arm_compute/core/Types.h"
#include "tests/AssetsLibrary.h"
#include "tests/Globals.h"
#include "tests/IAccessor.h"
#include "tests/framework/Asserts.h"
#include "tests/framework/Fixture.h"
#include "tests/validation/reference/HOGDescriptor.h"
namespace arm_compute
{
namespace test
{
namespace validation
{
template <typename TensorType, typename HOGType, typename AccessorType, typename FunctionType, typename T, typename U>
class HOGDescriptorValidationFixture : public framework::Fixture
{
public:
template <typename...>
void setup(std::string image, HOGInfo hog_info, Format format, BorderMode border_mode)
{
// Only defined borders supported
ARM_COMPUTE_ERROR_ON(border_mode == BorderMode::UNDEFINED);
// Generate a random constant value
std::mt19937 gen(library->seed());
std::uniform_int_distribution<T> int_dist(0, 255);
const T constant_border_value = int_dist(gen);
_target = compute_target(image, format, border_mode, constant_border_value, hog_info);
_reference = compute_reference(image, format, border_mode, constant_border_value, hog_info);
}
protected:
template <typename V>
void fill(V &&tensor, const std::string image, Format format)
{
library->fill(tensor, image, format);
}
template <typename V, typename D>
void fill(V &&tensor, int i, D max)
{
library->fill_tensor_uniform(tensor, i, static_cast<D>(0), max);
}
TensorType compute_target(const std::string image, Format &format, BorderMode &border_mode, T constant_border_value, const HOGInfo &hog_info)
{
// Get image shape for src tensor
TensorShape shape = library->get_image_shape(image);
// Create tensor info for HOG descriptor
TensorInfo tensor_info_hog_descriptor(hog_info, shape.x(), shape.y());
// Create HOG
HOGType hog = create_HOG<HOGType>(hog_info);
// Create tensors
TensorType src = create_tensor<TensorType>(shape, data_type_from_format(format));
TensorType dst = create_tensor<TensorType>(tensor_info_hog_descriptor.tensor_shape(), DataType::F32, tensor_info_hog_descriptor.num_channels());
ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
// Create and configure function
FunctionType hog_descriptor;
hog_descriptor.configure(&src, &dst, &hog, border_mode, constant_border_value);
ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
// Allocate tensors
src.allocator()->allocate();
dst.allocator()->allocate();
ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
const T max = std::numeric_limits<T>::max();
// Fill tensors
fill(AccessorType(src), image, format);
fill(AccessorType(dst), 1, static_cast<U>(max));
// Compute function
hog_descriptor.run();
return dst;
}
SimpleTensor<U> compute_reference(const std::string image, Format format, BorderMode border_mode, T constant_border_value, const HOGInfo &hog_info)
{
// Create reference
SimpleTensor<T> src{ library->get_image_shape(image), data_type_from_format(format) };
// Fill reference
fill(src, image, format);
return reference::hog_descriptor<U>(src, border_mode, constant_border_value, hog_info);
}
TensorType _target{};
SimpleTensor<U> _reference{};
};
} // namespace validation
} // namespace test
} // namespace arm_compute
#endif /* ARM_COMPUTE_TEST_HOG_DESCRIPTOR_FIXTURE */ |
6ea2e76c79f2f76e1b514cdf69458763979584b8 | 4e9799a0082d15d7994b61ee046eda9ea4b2a591 | /src/system_call/list.cpp | fb6dd4a5ca6fee0df2496e46eddec1c9ad4f4ac8 | [] | no_license | MIXALER/apue | d128a439326ca46da89eacb52cf64e6ac54a2e63 | 1edeb8f501a4760c62e530514ede3261051bb238 | refs/heads/master | 2023-09-04T16:58:30.185333 | 2021-11-22T08:38:50 | 2021-11-22T08:38:50 | 354,752,934 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 512 | cpp | list.cpp | //
// Created by yuanh on 2021/3/26.
//
#include <dirent.h>
#include <sys/types.h>
#include <stdio.h>
int main(int argc, char *argv[])
{
DIR *dp;
struct dirent *dirp;
if(argc != 2)
{
printf("a single argument is required");
return 1;
}
if((dp = opendir(argv[1])) == NULL)
{
printf("can't open %s", argv[1]);
return 1;
}
while(( dirp = readdir(dp)) != NULL)
printf("%s\n",dirp->d_name);
closedir(dp);
return 0;
} |
120231b60da06171cae61ec457f1fc171fc5307f | feddf2c2121c1e5f679ef2a4205a4cb092b673e3 | /DataType/datatype.h | 7a7c9681ce38fa7a5eb282b1840a4db22b287a77 | [] | no_license | linbinyang/Inference-System-without-TensorFlow-api | 1f8436289c9d6c179d2a2dafe3783c25837ceb0c | 66d32133f0696709b0954cd6952b0c511884c1b5 | refs/heads/master | 2022-07-13T18:22:11.593743 | 2020-01-03T06:22:35 | 2020-01-03T06:22:35 | 227,769,348 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,145 | h | datatype.h | //
// Created by Linbin Yang on 2019-12-28.
//
#ifndef C_INFERENCE_DATATYPE_H
#define C_INFERENCE_DATATYPE_H
#include <common/commonlib.h>
#include <fstream>
#include <limits>
namespace MultiEigen{
template <typename T>
struct Eigen_Vector{
public:
Eigen_Vector(){}
Eigen_Vector(int m, Json::Value node){
this->data.resize(m);
for (int i = 0; i < m; i ++){
this->data(i) = (T)node[i].asDouble();
}
}
Eigen_Vector(int m){
this->data = Eigen::Matrix<T, Eigen::Dynamic, 1>::Random(m);
}
Eigen::Matrix<T, Eigen::Dynamic, 1>& getData(){
return this->data;
}
void setData(Eigen::Matrix<T, Eigen::Dynamic, 1> current){
this->data = current;
}
int size(){
return this->data.size();
}
void setData(int m, Json::Value node){
this->data.resize(m);
for (int i = 0; i < m; i ++){
this->data(i) = (T)node[i].asDouble();
}
}
//auto inline
inline T &operator[](int i){
return this->data(i);
}
template <typename U>
friend std::ostream& operator<<(std::ostream &os, const Eigen_Vector<U> &m);
private:
Eigen::Matrix<T, Eigen::Dynamic, 1> data;
};
template <typename T>
std::ostream& operator<<(std::ostream &os, Eigen_Vector<T> &m){
os << "[";
for(int i = 0; i < m.size(); i ++){
os << m[i];
if (i != m.size() - 1){
os << " ";
}
}
os << "]";
return os;
}
template <typename T>
class Eigen_Col_iterator{
public:
Eigen_Col_iterator(){}
Eigen_Col_iterator<T>& initailizer(T *data, size_t index, size_t size, size_t step){
this->start = data;
this->cur_index = index;
this->max_size = size;
this->step = step;
this->start = this->start + index;
return *this;
}
bool isValid(){
return this->cur_index < this->max_size;
}
Eigen_Col_iterator<T>& operator++(int){
Eigen_Col_iterator<T> temp = *this;
this->cur_index = this->cur_index + this->step;
this->start = this->start + this->step;
return temp;
}
Eigen_Col_iterator<T>& operator--(int){
Eigen_Col_iterator<T> temp = *this;
this->cur_index = this->cur_index - this->step;
this->start = this->start - this->step;
return temp;
}
T &operator*(){
return *(this->start);
}
bool operator==(const Eigen_Col_iterator<T>& iter2){
return this->start == iter2.start;
}
bool operator!=(const Eigen_Col_iterator<T>& iter2){
return this->start != iter2.start;
}
public:
T *start;
private:
size_t step;
size_t cur_index;
size_t max_size;
};
template <typename T>
class Eigen_2D_iterator{
public:
Eigen_2D_iterator(){}
Eigen_2D_iterator(T* data, size_t index, size_t col, size_t row){
this->max_size = col * row;
this->step = col;
this->cur_index = index;
this->data = data;
this->data = this->data + index;
}
bool isValid(){
return this->cur_index < this->max_size;
}
Eigen_2D_iterator<T>& operator++(int){
Eigen_2D_iterator<T> temp = *this;
this->cur_index = this->cur_index + this->step;
this->data = this->data + this->step;
return temp;
}
Eigen_2D_iterator<T>& operator--(int){
Eigen_2D_iterator<T> temp = *this;
this->cur_index = this->cur_index - this->step;
this->data = this->data - this->step;
return temp;
}
Eigen_Col_iterator<T> &operator*(){
return this->start.initailizer(this->data, 0, this->step, 1);
}
bool operator==(const Eigen_2D_iterator<T>& iter2){
return this->data == iter2.data;
}
bool operator!=(const Eigen_2D_iterator<T>& iter2){
return this->data != iter2.data;
}
Eigen_Col_iterator<T> begin(){
return this->start.initailizer(this->data, 0, this->step, 1);
}
Eigen_Col_iterator<T> end(){
return this->start.initailizer(this->data, this->step, this->step, 1);
}
T* data;
Eigen_Col_iterator<T> start;
private:
size_t cur_index;
size_t step;
size_t max_size;
};
/*
padding: VALID = without padding, SAME = with zero padding
Note that in TensorFlow, "SAME" tries to pad evenly left and right, but if the amount of columns to be added is odd,
it will add the extra column to the right, the same logic applies vertically: there may be an extra row of zeros at the bottom.
*/
enum struct padding_type{
valid,
same
};
#define FILTER_DIM(input, filter, stride) (((input) - (filter))/(stride) + 1)
#define NEEDED_DIMENSION(input, filter, stride) ((((input/stride))-1) * (stride) + filter - input)
template <typename T>
struct Eigen_2D{
public:
Eigen_2D(){}
Eigen_2D(int m, int n){
this->data = Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>::Random(m,n);
}
Eigen_2D(int m, int n, Json::Value node){
this->data.resize(m, n);
for (int i = 0; i < m; i ++){
for (int j = 0; j < n; j ++){
this->data(i, j) = (T)node[i][j].asDouble();
}
}
}
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>& getData(){
return this->data;
}
T &operator()(int x, int y){
return this->data(x, y);
}
template <typename U>
friend std::ostream& operator<<(std::ostream &os, Eigen_2D<U> &m);
void setData(Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> current){
this->data = current;
}
void setData(Eigen_2D<T> ¤t){
this->data = current.data;
}
void setData(int m, int n, Json::Value node){
this->data.resize(m, n);
for (int i = 0; i < m; i ++){
for (int j = 0; j < n; j ++){
this->data(i, j) = (T)node[i][j].asDouble();
}
}
}
void initialize(int m, int n){
this->data = Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>::Random(m,n);
}
size_t cols(){
return this->data.cols();
}
size_t rows(){
return this->data.rows();
}
void resize(int m, int n){
this->data.resize(m, n);
}
Eigen_2D_iterator<T> begin(){
Eigen_2D_iterator<T> b(&this->data(0,0), 0, this->cols(), this->rows());
return b;
}
Eigen_2D_iterator<T> end(){
Eigen_2D_iterator<T> b(&this->data(0,0), this->cols()*this->rows(), this->cols(), this->rows());
return b;
}
public:
//add with broadcast
Eigen_2D<T> AddBoradCast(Eigen_2D<T> new_vec){
Eigen_2D<T> res;
Eigen::Matrix<T, Eigen::Dynamic, 1> vec(new_vec.rows());
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>& vec_infere = new_vec.getData();
for(int i = 0; i < new_vec.rows(); i ++){
vec(i) = vec_infere(i,0);
}
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> output = this->data.transpose();
output.colwise() += vec;
res.setData(output.transpose());
return res;
}
Eigen_2D<T> AddBoradCast(Eigen_Vector<T> new_vec){
Eigen_2D<T> res;
Eigen::Matrix<T, Eigen::Dynamic, 1>& vec = new_vec.getData();
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> output = this->data.transpose();
output.colwise() += vec;
res.setData(output.transpose());
return res;
}
void AddBoradCast(Eigen_Vector<T> new_vec, int index){
T single_add = new_vec[index];
for (auto iter = this->begin(); iter != this->end(); iter++){
//std::transform(iter.begin(), iter.end(), iter.begin(), f);
for (auto elem = iter.begin(); elem != iter.end(); elem ++){
*elem = *elem + single_add;
}
}
}
//add without broadcast
Eigen_2D<T> AddWithoutBroadCast(Eigen_2D<T> mat2){
Eigen_2D<T> res;
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> output = this->data + mat2.getData();
res.setData(output);
return res;
}
//matmul
Eigen_2D<T> Matmul(Eigen_2D<T> mat2){
Eigen_2D<T> res;
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> output = this->data * mat2.data;
res.setData(output);
return res;
}
//argmax
Eigen_Vector<T> Argmax(bool row_or_col){
Eigen_Vector<T> res;
res.setData(this->Argmax_helper(this->data, row_or_col));
return res;
}
//convd
Eigen_2D<T> convd_base(Eigen_2D<T> kernel, std::vector<int> stride, padding_type padding){
int x_axis_stride = stride[1];
int y_axis_stride = stride[2]; //leave out the 0th and 3th elements
int left = 0;
int right = 0;
int up = 0;
int down = 0;
if (padding == padding_type::same) {
int x_needed = NEEDED_DIMENSION(this->cols(), kernel.cols(), x_axis_stride);
int y_needed = NEEDED_DIMENSION(this->rows(), kernel.rows(), y_axis_stride);
left = x_needed / 2;
right = x_needed - left;
up = y_needed / 2;
down = y_needed - up;
}
//return shape
Eigen_2D<T> res;
int col_shape = right+left+this->cols();
int row_shape = up+down+this->rows();
int ac_col_shape = FILTER_DIM(col_shape, kernel.cols(), x_axis_stride);
int ac_row_shape = FILTER_DIM(row_shape, kernel.rows(), y_axis_stride);
//expand the image with possible padding
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> new_image = Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>::Zero(row_shape, col_shape);
new_image.resize(row_shape, col_shape);
new_image.block(up, left, this->rows(), this->cols()) << this->data;
//now start compute the convd_base
res.resize(ac_row_shape, ac_col_shape);
for (int i = 0; i < ac_row_shape; i ++){
for (int j = 0; j < ac_col_shape; j ++){
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> unit_image = new_image.block(i*x_axis_stride, j*y_axis_stride, kernel.rows(), kernel.cols());
Map<Eigen::Matrix<T, Eigen::Dynamic, 1>> v1(unit_image.data(), unit_image.size());
Map<Eigen::Matrix<T, Eigen::Dynamic, 1>> v2(kernel.getData().data(), kernel.getData().size());
res(i, j) = v1.dot(v2);
}
}
return res;
}
//softmax2d
Eigen_2D<T> softmax2d(bool row_or_col){
Eigen_2D<T> res;
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> softres = this->SoftmaxOp(this->data, row_or_col);
res.setData(softres);
return res;
}
//apply(Relu, Sigmoid ......)
Eigen_2D<T> apply(const std::function<T(const T&)> &f){
Eigen_2D<T> res;
res.setData(this->data);
for (auto iter = res.begin(); iter != res.end(); iter++){
for (auto elem = iter.begin(); elem != iter.end(); elem ++){
*elem = f(*elem);
}
}
return res;
}
protected:
Eigen::Matrix<T, Eigen::Dynamic, 1> Argmax_helper(Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> mat1, bool row_or_col){
if (!row_or_col){
return Argmax_helper(mat1.transpose(), !row_or_col);
}
Eigen::Matrix<T, Eigen::Dynamic, 1> output(mat1.rows());
for (int i = 0; i < mat1.rows(); i ++){
output(i) = (T)this->FindMaxIndex(mat1, i, mat1.cols());
}
return output;
}
T FindMax(Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>& mat1, int m, int n){
T max = numeric_limits<T>::min();
for (int i = 0; i < n; i ++){
if (max < mat1(m, i)) max = mat1(m, i);
}//end for
return max;
}
int FindMaxIndex(Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>& mat1, int m, int n){
T max = numeric_limits<T>::min();
int res = 0;
for (int i = 0; i < n; i ++){
if (max < mat1(m, i)) {
max = mat1(m, i);
res = i;
}
}//end for
return res;
}
void MySoftmax(Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>& mat, int m, int n){
T sum = 0.0;
T max = FindMax(mat, m, n);
for (int i = 0; i < n; i ++){
T fi = exp(mat(m, i) - max);
mat(m, i) = fi;
sum = sum + fi;
}
for (int i = 0; i < n; i ++){
mat(m, i) = mat(m, i) / sum;
}
}
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> SoftmaxOp(Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> mat1, bool row_or_col){
/*
True: Softmax According to Row
False: Softmax According to Col
*/
if (!row_or_col){
return SoftmaxOp(mat1.transpose(), !row_or_col).transpose();
}
for (int i = 0; i < mat1.rows(); i ++){
MySoftmax(mat1, i, mat1.cols());
}
return mat1;
}
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> data;
};
template <typename T>
std::ostream& operator<<(std::ostream &os, Eigen_2D<T> &m){
os << "[" << m.data << "]";
return os;
}
template <typename T>
struct Eigen_3D{
//represent one picture or kernel
public:
Eigen_3D(){}
Eigen_3D(int a, int b, int c, Json::Value node){
for (int i = 0; i < c ; i ++){
Eigen_2D<T> temp(a, b);
for (int m = 0; m < a; m ++){
for (int n = 0; n < b; n ++){
temp.getData()(m, n) = (T)node[m][n][i].asDouble();
}
}
this->Tdata.push_back(temp);
}//end for
}
Eigen_3D(int a, int b, int c){
for (int i = 0; i < c; i ++){
Eigen_2D<T> temp(a, b);
this->Tdata.push_back(temp);
}
}
int Tsize(){
return this->Tdata.size();
}
Eigen_2D<T>& operator[](int index){
return this->Tdata[index];
}
template <typename U>
friend std::ostream& operator<<(std::ostream &os, Eigen_3D<U> &m);
void initialize(int a, int b, int c){
for (int i = 0; i < c; i ++){
Eigen_2D<T> temp(a, b);
this->Tdata.push_back(temp);
}
}
void setData (std::vector<Eigen_2D<T>>& Tdata){
this->Tdata.assign(Tdata.begin(), Tdata.end());
}
void setData(int a, int b, int c, Json::Value node){
for (int i = 0; i < c ; i ++){
Eigen_2D<T> temp(a, b);
for (int m = 0; m < a; m ++){
for (int n = 0; n < b; n ++){
temp(m, n) = (T)node[m][n][i].asDouble();
}
}
this->Tdata.push_back(temp);
}//end for
}
vector<Eigen_2D<T>>& getData(){
return this->Tdata;
}
size_t rows(){
assert(this->Tdata.size() != 0); //check if we initialized the Tdata
return this->Tdata[0].rows();
}
size_t cols(){
assert(this->Tdata.size() != 0); //check if we initialized the Tdata
return this->Tdata[0].cols();
}
Eigen_2D<T> convd(Eigen_3D<T> kernel, std::vector<int> stride, padding_type padding){
assert(this->Tsize() > 0 && kernel.Tsize() > 0 && this->Tsize() == kernel.Tsize());
Eigen_2D<T> res = this->Tdata[0].convd_base(kernel[0], stride, padding);
for (int i = 1; i < this->Tdata.size(); i ++){
res = res.AddWithoutBroadCast(this->Tdata[i].convd_base(kernel[i], stride, padding));
}
return res;
}
private:
std::vector<Eigen_2D<T>> Tdata;
};
template <typename U>
std::ostream& operator<<(std::ostream &os, Eigen_3D<U> &m){
os << "[" << endl;
for (int i = 0; i < m.Tsize(); i ++){
cout << m[i];
if (i != m.Tsize() - 1){
os << "," << endl << endl;
}else{
os << endl;
}
}
os << "]" << endl;
return os;
}
enum struct matrix_type{
kernel,
image
};
template <typename T>
struct Eigen_4D{
public:
Eigen_4D(){}
Eigen_4D(int a, int b, int c, int d, Json::Value node, matrix_type mtype){
this->mtype = mtype;
if (this->mtype == matrix_type::image){
for (int i = 0; i < a; i ++){
Eigen_3D<T> temp(b, c, d, node[i]);
this->Qdata.push_back(temp);
}//end for
}else{
for (int i = 0; i < d; i ++){
Eigen_3D<T> temp_3d;
for (int m = 0; m < c; m ++){
Eigen_2D<T> temp_2d(a,b);
for (int n = 0; n < a; n ++){
for (int j = 0; j < b; j ++){
temp_2d(n, j) = (T)node[n][j][m][i].asDouble();
}
}
temp_3d.getData().push_back(temp_2d);
}
this->Qdata.push_back(temp_3d);
}
}
}
Eigen_4D(int a, int b, int c, int d){
for (int i = 0; i < a; i++){
Eigen_3D<T> temp(b, c, d);
this->Qdata.push_back(temp);
}
}
int Qsize(){
return this->Qdata.size();
}
Eigen_3D<T>& operator[] (int index){
return this->Qdata[index];
}
template <typename U>
friend std::ostream& operator<<(std::ostream &os, const Eigen_4D<U> &m);
void Initialize(int a, int b, int c, int d){
for (int i = 0; i < a; i++){
Eigen_3D<T> temp(b, c, d);
this->Qdata.push_back(temp);
}
}
void setData(std::vector<Eigen_3D<T>> Qdata){
this->Qdata.assign(Qdata.begin(), Qdata.end());
}
void setData(int a, int b, int c, int d, Json::Value node, matrix_type mtype){
this->mtype = mtype;
if (this->mtype == matrix_type::image){
for (int i = 0; i < a; i ++){
Eigen_3D<T> temp(b, c, d, node[i]);
this->Qdata.push_back(temp);
}//end for
}else{
for (int i = 0; i < d; i ++){
Eigen_3D<T> temp_3d;
for (int m = 0; m < c; m ++){
Eigen_2D<T> temp_2d(a,b);
for (int n = 0; n < a; n ++){
for (int j = 0; j < b; j ++){
temp_2d(n, j) = (T)node[n][j][m][i].asDouble();
}
}
temp_3d.getData().push_back(temp_2d);
}
this->Qdata.push_back(temp_3d);
}
}//end else
}
void getShape(std::vector<int>& res){
res.push_back(this->Qdata.size());
res.push_back(this->Qdata[0].rows());
res.push_back(this->Qdata[0].cols());
res.push_back(this->Qdata[0].Tsize());
}
std::vector<Eigen_3D<T>>& getData(){
return this->Qdata;
}
Eigen_4D<T> convd_with_multi_filter(Eigen_4D<T> kernel, std::vector<int> stride, padding_type padding){
assert(this->mtype == matrix_type::image); // to ensure the validity of this function
Eigen_4D<T> res;
for (int i = 0; i < this->Qdata.size(); i ++){
Eigen_3D<T> unit_res;
for (int j = 0; j < kernel.getData().size(); j ++){
//number of filters
unit_res.getData().push_back(this->Qdata[i].convd(kernel[j], stride, padding));
}//end for
res.getData().push_back(unit_res);
}
return res;
}
Eigen_4D<T> AddBoradCast(Eigen_Vector<T> other){
Eigen_4D<T> res;
res.setData(this->Qdata);
//loop thourght all image and do activation
for (int i = 0; i < this->Qdata.size(); i ++){
Eigen_3D<T> &t_3d = res.getData()[i];
for (int j = 0; j < t_3d.getData().size(); j ++){
t_3d[j].AddBoradCast(other, j);
}
}
return res;
}
Eigen_4D<T> apply(const std::function<T(const T&)> &f){
Eigen_4D<T> res;
res.setData(this->Qdata);
// Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>& f_data = res.getData();
// Loop thourght all image and do activation
for (int i = 0; i < res.Qsize(); i ++){
for (int j = 0; j < res[i].Tsize(); j ++){
res[i][j] = res[i][j].apply(f);
}
}
return res;
}
/*
We do not do reshape on kernel matrix, normally we reshape placeholder matrix [a,b,c,d]
-a : number of pictures
-b : dimension x
-c : dimension y
-d : number of channelsT
Note that we reshape a 4-dimension to prepare for the future fully connected layer connection
*/
#define CALCULATE_INDEX(channel_index, num_of_c, col_size, i, j) (channel_index + col_size*num_of_c*i + num_of_c*j)
Eigen_2D<T> reshape(){
assert(this->Qdata.size() > 0); //To ensure the correctness of the following code
Eigen_2D<T> res(this->Qdata.size(), this->Qdata[0].rows()*this->Qdata[0].cols()*this->Qdata[0].getData().size());
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>& res_data = res.getData();
size_t num_of_c = this->Qdata[0].Tsize();
for (int m = 0; m < this->Qsize(); m ++){
// Efficient loop through 3D map
for (int n_c = 0; n_c < num_of_c; n_c ++){
//fetch one specific channel
Eigen_2D<T> image_map = this->Qdata[m][n_c];
for (int i = 0; i < image_map.rows(); i++){
for (int j = 0; j < image_map.cols(); j ++){
res_data(m, CALCULATE_INDEX(n_c, num_of_c,image_map.cols(), i, j)) = image_map(i,j);
}
}//loop through the image
}
}
return res;
}
private:
std::vector<Eigen_3D<T>> Qdata;
matrix_type mtype = matrix_type::image;
};
template <typename T>
std::ostream& operator<<(std::ostream &os, Eigen_4D<T> &m){
os << "[" << endl;
for (int i = 0; i < m.Qsize(); i ++){
cout << m[i];
if (i != m.Qsize() - 1){
os << "," << endl;
}else{
os << endl;
}
}
os << "]" << endl;
return os;
}
}
#endif //C_INFERENCE_DATATYPE_H |
24c6cedaa8aa5c43abbdc858ff6b7aee71e63f63 | ddb11f23cb67059703c67aad577bf217111c252c | /gadgets/mri_core/GenericReconGadget.h | 896ec9a2ad0921f25ca2e66049ef841afb66fce0 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | idvr/gadgetron | 25ad6266a511f6c3cdf6f3becd1dbdf57ddf0612 | ddd08b8ccef6987e398353588b0d0ff946874660 | refs/heads/master | 2021-01-18T00:16:53.133513 | 2016-03-07T20:14:19 | 2016-03-07T20:14:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,305 | h | GenericReconGadget.h | /** \file GenericReconGadget.h
\brief This serves an optional base class gadget for both 2DT and 3DT reconstruction, working on the IsmrmrdReconData.
Some common functionalities are implemented here and can be reused in specific recon gadgets.
\author Hui Xue
*/
#pragma once
#include <complex>
#include "gadgetron_mricore_export.h"
#include "Gadget.h"
#include "hoNDArray.h"
#include "ismrmrd/ismrmrd.h"
#include "ismrmrd/xml.h"
#include "ismrmrd/meta.h"
#include "GadgetronTimer.h"
#include "hoNDArray_utils.h"
// #include "gtPlusIOAnalyze.h"
#include "GadgetStreamController.h"
#include "hoNDArray_utils.h"
#include "hoNDArray_elemwise.h"
#include "hoNDFFT.h"
#include "mri_core_def.h"
#include "mri_core_data.h"
#include "mri_core_utility.h"
#include "mri_core_coil_map_estimation.h"
namespace Gadgetron {
class EXPORTGADGETSMRICORE GenericReconGadget : public Gadget1<IsmrmrdReconData>
{
public:
GADGET_DECLARE(GenericReconGadget);
typedef Gadget1<IsmrmrdReconData> BaseClass;
GenericReconGadget();
~GenericReconGadget();
/// ------------------------------------------------------------------------------------
/// parameters to control the reconstruction
/// ------------------------------------------------------------------------------------
/// image series
GADGET_PROPERTY(image_series, int, "Image series number", 0);
/// ------------------------------------------------------------------------------------
/// debug and timing
GADGET_PROPERTY(verbose, bool, "Whether to print more information", false);
GADGET_PROPERTY(debug_folder, std::string, "If set, the debug output will be written out", "");
GADGET_PROPERTY(perform_timing, bool, "Whether to perform timing on some computational steps", false);
protected:
// --------------------------------------------------
// variables for protocol
// --------------------------------------------------
// number of encoding spaces in the protocol
size_t num_encoding_spaces_;
// for every encoding space
// acceleration factor for E1 and E2
std::vector<double> acceFactorE1_;
std::vector<double> acceFactorE2_;
// calibration mode
std::vector<Gadgetron::ismrmrdCALIBMODE> calib_mode_;
// encoding space limits
std::vector<ISMRMRD::EncodingCounters> meas_max_idx_;
// --------------------------------------------------
// variable for recon
// --------------------------------------------------
// number of times the process function is called
size_t process_called_times_;
/// buffers used during recon
hoNDArray< std::complex<float> > complex_im_recon_buf_;
hoNDArray< std::complex<float> > data_recon_buf_;
// filter used for ref coil map
hoNDArray< std::complex<float> > filter_RO_ref_coi_map_;
hoNDArray< std::complex<float> > filter_E1_ref_coi_map_;
hoNDArray< std::complex<float> > filter_E2_ref_coi_map_;
// --------------------------------------------------
// variables for debug and timing
// --------------------------------------------------
// in verbose mode, more info is printed out
bool verbose_;
// clock for timing
Gadgetron::GadgetronTimer gt_timer_local_;
Gadgetron::GadgetronTimer gt_timer_;
//// debug folder
//std::string debug_folder_full_path_;
//// exporter
//Gadgetron::gtPlus::gtPlusIOAnalyze gt_exporter_;
// --------------------------------------------------
// gadget functions
// --------------------------------------------------
// default interface function
virtual int process_config(ACE_Message_Block* mb);
virtual int process(Gadgetron::GadgetContainerMessage< IsmrmrdReconData >* m1);
// --------------------------------------------------
// recon step functions
// --------------------------------------------------
// make the ref data for coil map estimation
virtual void make_ref_coil_map(IsmrmrdDataBuffered& ref_, std::vector<size_t> recon_dims, hoNDArray< std::complex<float> >& ref_calib, hoNDArray< std::complex<float> >& ref_coil_map, size_t encoding);
// estimate coil map
virtual void perform_coil_map_estimation(const hoNDArray< std::complex<float> >& ref_coil_map, hoNDArray< std::complex<float> >& coil_map, size_t encoding);
// compute image header
virtual void compute_image_header(IsmrmrdReconBit& recon_bit, IsmrmrdImageArray& res, size_t encoding);
// send out the recon results
virtual int send_out_image_array(IsmrmrdReconBit& recon_bit, IsmrmrdImageArray& res, size_t encoding, int series_num, const std::string& data_role);
// --------------------------------------------------
// utility functions
// --------------------------------------------------
// compute image number
virtual size_t compute_image_number(ISMRMRD::ImageHeader& imheader, size_t encoding = 0, size_t CHA = 1, size_t cha = 0, size_t E2 = 1);
};
}
|
57c167bb73af500e983c1bb5c62af4a221a91d1d | 82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5 | /Airfoil/wingMotion/wingMotion2D_pimpleFoam/2.34/pointDisplacement | 58bc23131e0d62443753d4527b0d4710c6f8be62 | [
"MIT"
] | permissive | ishantja/KUHPC | 6355c61bf348974a7b81b4c6bf8ce56ac49ce111 | 74967d1b7e6c84fdadffafd1f7333bf533e7f387 | refs/heads/main | 2023-01-21T21:57:02.402186 | 2020-11-19T13:10:42 | 2020-11-19T13:10:42 | 312,429,902 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 705,100 | pointDisplacement | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class pointVectorField;
location "2.34";
object pointDisplacement;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 0 0 0 0 0];
internalField nonuniform List<vector>
26316
(
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-7.345013664e-07 -2.160155576e-06 2.775557562e-17)
(0 0 0)
(0 0 0)
(-4.04960391e-07 -2.41981963e-05 3.330669074e-16)
(1.871390952e-06 -2.05685371e-05 2.91433544e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-4.575806356e-05 -4.900363275e-05 4.857225733e-16)
(-0.000263288688 -0.0003072845081 3.080868893e-15)
(-3.443578896e-06 -3.729851743e-06 4.163336342e-17)
(-0.0004996078661 -0.0007411356987 8.007483565e-15)
(-0.00123917076 -0.001984347961 1.99146255e-14)
(-0.001468890894 -0.002686976383 2.696454171e-14)
(-0.0006861704769 -0.001161600972 1.254552018e-14)
(-0.0008320480836 -0.002447050686 2.645106356e-14)
(-0.001452785385 -0.00464151332 4.660161146e-14)
(-0.001206976054 -0.005129549756 5.150047055e-14)
(-0.0007145124737 -0.002784927892 3.010092176e-14)
(-2.346723846e-05 -0.003259289749 3.520794767e-14)
(-2.038342586e-05 -0.005804680951 5.821731985e-14)
(0.0004195924719 -0.005732036746 5.746791931e-14)
(0.0002420065403 -0.003206666117 3.463895837e-14)
(0.0007926099063 -0.002459718468 2.654820808e-14)
(0.001408401557 -0.004666591348 4.674038934e-14)
(0.001539977977 -0.0040779776 4.084232952e-14)
(0.0008323406538 -0.002059162324 2.223221607e-14)
(0.0004883911596 -0.0007512619174 8.10462808e-15)
(0.001213162387 -0.0020057675 2.009503675e-14)
(0.000912052382 -0.001339801013 1.34336986e-14)
(0.0002852030908 -0.0003894734931 4.204969706e-15)
(0 0 0)
(4.800503228e-05 -5.277781172e-05 5.273559367e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001277939879 -0.0001325578888 1.026956298e-15)
(-0.0006979225051 -0.0007717378125 6.009082121e-15)
(-0.0001653599578 -0.0001726344286 1.415534356e-15)
(-0.002355489111 -0.003070734034 2.536859611e-14)
(-0.003763770547 -0.005201596609 4.062028491e-14)
(-0.004795098732 -0.007235454011 5.653810753e-14)
(-0.003234789576 -0.004602022318 3.805289417e-14)
(-0.005001868526 -0.009828347217 8.137934771e-14)
(-0.006601721358 -0.01378832767 1.078998002e-13)
(-0.0066181261 -0.01585972576 1.241229342e-13)
(-0.005125031234 -0.01154237259 9.559020242e-14)
(-0.003946160813 -0.01580491854 1.308120279e-13)
(-0.004876327589 -0.02089818749 1.634109514e-13)
(-0.003802596425 -0.02205044287 1.723066134e-13)
(-0.003112071795 -0.01679573776 1.389305337e-13)
(0.0001092331573 -0.0181455651 1.497829638e-13)
(0.0001957522779 -0.02361702325 1.840749775e-13)
(0.001592110924 -0.02347510638 1.828120988e-13)
(0.001244659425 -0.0180166718 1.486033518e-13)
(0.004081112546 -0.01592547678 1.310757058e-13)
(0.005150184277 -0.02107500008 1.637162628e-13)
(0.005948969566 -0.01965630321 1.526140325e-13)
(0.004678660874 -0.01470798936 1.210143097e-13)
(0.005001449248 -0.009947280745 8.180955913e-14)
(0.006658104438 -0.01397240634 1.083994006e-13)
(0.006291340626 -0.0117725911 9.134359935e-14)
(0.004603512929 -0.00815724605 6.708522626e-14)
(0.002340144622 -0.003120414991 2.568778523e-14)
(0.003745256554 -0.005283219384 4.105049634e-14)
(0.002645292948 -0.00344642658 2.679800826e-14)
(0.001467923129 -0.001807086019 1.489086632e-14)
(0 0 0)
(0.0001268788886 -0.000134056449 1.040834086e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-5.49834752e-05 -5.877791219e-05 3.747002708e-16)
(0 0 0)
(-0.002338528999 -0.002831334872 1.890154699e-14)
(-0.003474619433 -0.004402970458 2.806088695e-14)
(-0.005432671644 -0.00734621823 4.6893045e-14)
(-0.003990766175 -0.005153931948 3.445854713e-14)
(-0.00908416767 -0.01470146678 9.858780459e-14)
(-0.01101509856 -0.01869358316 1.197375532e-13)
(-0.01229098809 -0.02280903112 1.462302501e-13)
(-0.01035018999 -0.01831097443 1.229016888e-13)
(-0.01167499229 -0.02873139008 1.93067784e-13)
(-0.01329155806 -0.03434255462 2.203792704e-13)
(-0.01264475229 -0.03758361961 2.411126854e-13)
(-0.01121871495 -0.03174877261 2.133154764e-13)
(-0.007541509203 -0.03861371752 2.589872761e-13)
(-0.008308146087 -0.04474476197 2.864930515e-13)
(-0.006283951966 -0.0462396808 2.957634138e-13)
(-0.005737418217 -0.04009310403 2.686462164e-13)
(0.0004935094424 -0.04208325515 2.810252031e-13)
(0.0005686056874 -0.04823055985 3.074068777e-13)
(0.002907981092 -0.04810114102 3.061995102e-13)
(0.00263005722 -0.04193822727 2.797206911e-13)
(0.008343077811 -0.0390153569 2.593619763e-13)
(0.00926170967 -0.04522577921 2.868816296e-13)
(0.01094461858 -0.04336130265 2.747801986e-13)
(0.009803507013 -0.03718219971 2.469691118e-13)
(0.01203730668 -0.02921803421 1.937477956e-13)
(0.01377200327 -0.03493297548 2.209621375e-13)
(0.01380578717 -0.03128967834 1.978972541e-13)
(0.01193546889 -0.02587839852 1.71612724e-13)
(0.00907497519 -0.01485659294 9.861556016e-14)
(0.0113162377 -0.0193469785 1.223326995e-13)
(0.009743795271 -0.01540750316 9.739431484e-14)
(0.007719574057 -0.01166558752 7.742417818e-14)
(0.002670296413 -0.003287420379 2.184363801e-14)
(0.003991778616 -0.005147286699 3.262667914e-14)
(0.002251547565 -0.002733323944 1.733335697e-14)
(0.001286452599 -0.00149087276 9.908740495e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.000254122501 -0.0002935067578 1.637578961e-15)
(-0.0005778879304 -0.000694118273 3.719247132e-15)
(-0.002052105952 -0.002592225432 1.393329896e-14)
(-0.001379740488 -0.001676021166 9.36750677e-15)
(-0.008096080538 -0.01165340207 6.530886942e-14)
(-0.009575990766 -0.01433260821 7.727152251e-14)
(-0.01233296711 -0.01968507564 1.062622212e-13)
(-0.0106945453 -0.01641606277 9.213463326e-14)
(-0.01681850115 -0.03233549666 1.821737206e-13)
(-0.01857016079 -0.03712081099 2.010058786e-13)
(-0.0195395297 -0.04267795984 2.312872116e-13)
(-0.01786343979 -0.03754596033 2.117750419e-13)
(-0.01752560295 -0.05138061978 2.902816876e-13)
(-0.01861365903 -0.05655308618 3.07059933e-13)
(-0.01712860946 -0.05987052156 3.250177905e-13)
(-0.01618298058 -0.05457100944 3.081979116e-13)
(-0.01000562143 -0.06110755304 3.442940377e-13)
(-0.01035991544 -0.06532351609 3.538280779e-13)
(-0.00768701959 -0.06601420108 3.571865026e-13)
(-0.007465975389 -0.06216328182 3.498590306e-13)
(0.000598070633 -0.06338213096 3.554240235e-13)
(0.0005364786976 -0.06660169261 3.591016373e-13)
(0.003288858409 -0.06667596451 3.590461262e-13)
(0.003314565941 -0.06337707221 3.54938301e-13)
(0.01119545457 -0.06184770647 3.450156827e-13)
(0.011483157 -0.06606039039 3.542999227e-13)
(0.01396608371 -0.06505614488 3.484712519e-13)
(0.01351420709 -0.06046651464 3.368971768e-13)
(0.01831577821 -0.05237674256 2.90906188e-13)
(0.01946849059 -0.05777428854 3.081285227e-13)
(0.02037140066 -0.05402955827 2.87769808e-13)
(0.01896512613 -0.0483925683 2.683964162e-13)
(0.01743723955 -0.03380173846 1.873501354e-13)
(0.01921767644 -0.03874282613 2.063488269e-13)
(0.01758303497 -0.03281444047 1.74887882e-13)
(0.01576962025 -0.02829845567 1.569577801e-13)
(0.008566471705 -0.0125482904 6.983302825e-14)
(0.01009857909 -0.01538501707 8.225364834e-14)
(0.007276252208 -0.01043885605 5.587197371e-14)
(0.005960901211 -0.008222233337 4.579669977e-14)
(0.0003931526595 -0.0004610024494 2.581268532e-15)
(0.0006754255383 -0.0008238737492 4.413136523e-15)
(1.714519717e-05 -1.991707448e-05 1.110223025e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-2.418841108e-05 -3.154207603e-05 1.387778781e-16)
(-6.600361623e-07 -8.328593351e-07 0)
(0 0 0)
(-0.001814046972 -0.002429893435 1.169897512e-14)
(-0.002289566626 -0.00317228919 1.476596623e-14)
(-0.004748779381 -0.006918211252 3.222422329e-14)
(-0.004051605663 -0.005706710535 2.750577544e-14)
(-0.01313712349 -0.02191254694 1.059707877e-13)
(-0.01429952633 -0.02466400633 1.153105389e-13)
(-0.01735631412 -0.03191277918 1.493943858e-13)
(-0.01644270789 -0.02924040378 1.416089468e-13)
(-0.02265455957 -0.05039604602 2.44734788e-13)
(-0.02359586405 -0.05423676294 2.545741395e-13)
(-0.02418747041 -0.06068817215 2.849387393e-13)
(-0.02333450738 -0.05668022296 2.753491879e-13)
(-0.02094235719 -0.07022363229 3.409911242e-13)
(-0.02139700343 -0.07399178232 3.471389842e-13)
(-0.01921257918 -0.07595983685 3.561317907e-13)
(-0.01892482018 -0.07264274925 3.526207104e-13)
(-0.01090263276 -0.07406190167 0)
(-0.01109241267 -0.07672793956 0)
(-0.009705098561 -0.07674569571 0)
(-0.008241450614 -0.07670538718 0)
(-0.008135229273 -0.07538601103 0)
(-0.008083852293 -0.0740970582 0)
(0.000302756755 -0.07429658442 0)
(0.0002641636856 -0.07557865428 0)
(0.001668753653 -0.07561981075 0)
(0.001699736186 -0.07433763247 0)
(0.01159402589 -0.07474164172 0)
(0.01159630774 -0.07605965169 0)
(0.0116079374 -0.07739836158 0)
(0.01300394224 -0.07748069929 0)
(0.0143804284 -0.07753704695 0)
(0.01439922817 -0.07489097846 0)
(0.02165430892 -0.07191471509 3.433503482e-13)
(0.02197110901 -0.07566146829 3.491928968e-13)
(0.02362581352 -0.07268257498 3.352040867e-13)
(0.02313052883 -0.06865642113 3.275713034e-13)
(0.02332741474 -0.0525408913 2.505634589e-13)
(0.02415894035 -0.0563523727 2.596256543e-13)
(0.0229229261 -0.04947370853 2.279842981e-13)
(0.02188846276 -0.04562380107 2.17659224e-13)
(0.0141039719 -0.02399055242 1.14713794e-13)
(0.01542435001 -0.02715221234 1.254552018e-13)
(0.0121491012 -0.02013575107 9.314771177e-14)
(0.01094219739 -0.01752558682 8.390510509e-14)
(0.002434743827 -0.003313923697 1.591782262e-14)
(0.003043390839 -0.004285653218 1.990074772e-14)
(0.001090209648 -0.001461684971 6.786238238e-15)
(0.0007417557624 -0.0009612946527 4.62130334e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0002179493368 -0.0003210552004 1.276756478e-15)
(-0.0001242033042 -0.0001777030484 7.21644966e-16)
(-0.0001016091326 -0.0001410841549 5.967448757e-16)
(-0.003289775782 -0.005013934703 2.120525977e-14)
(-0.003411895694 -0.005357513921 2.198241589e-14)
(-0.006316300872 -0.01042552586 4.281297539e-14)
(-0.006149225936 -0.009852149924 4.168887457e-14)
(-0.01652475951 -0.03131315872 1.330047184e-13)
(-0.0167913923 -0.03276846332 1.350586309e-13)
(-0.01998378405 -0.04154695749 1.714461906e-13)
(-0.01969805894 -0.03977053304 1.691286e-13)
(-0.02552045611 -0.06427583969 2.739336535e-13)
(-0.02579620825 -0.06685403254 2.764316553e-13)
(-0.02611956228 -0.07379215156 3.051725539e-13)
(-0.02586743325 -0.07104437801 3.028410855e-13)
(-0.02214093757 -0.0834362039 3.552713679e-13)
(-0.02227335121 -0.08622458265 3.561317907e-13)
(-0.01971770722 -0.0870169365 0)
(-0.01963564308 -0.08440651971 3.591016373e-13)
(-0.01142204541 -0.0846233477 0)
(-0.01146945028 -0.08594602146 0)
(-0.01010127585 -0.08597916591 0)
(-0.01005405357 -0.08465857244 0)
(0.01146263658 -0.08527115998 0)
(0.01143109767 -0.08658146647 0)
(0.01279851155 -0.08662793866 0)
(0.01283143228 -0.0853196147 0)
(0.02230610655 -0.0852372169 3.573391583e-13)
(0.02228492891 -0.08803374592 3.582134589e-13)
(0.02450138929 -0.08631779001 3.509276203e-13)
(0.0244328256 -0.08329930983 3.489292189e-13)
(0.02646450618 -0.06820137646 2.854383396e-13)
(0.02676241304 -0.07119011202 2.891714646e-13)
(0.02583175386 -0.06350981554 2.580435865e-13)
(0.02548135678 -0.06071183638 2.541855615e-13)
(0.01809810976 -0.03510602421 1.473543509e-13)
(0.01850172178 -0.03700829857 1.507405312e-13)
(0.01502111115 -0.02827290279 1.152966611e-13)
(0.01463749638 -0.02672127449 1.122851812e-13)
(0.004415599712 -0.006843232638 2.885192085e-14)
(0.00498617493 -0.007966068661 3.258504577e-14)
(0.002377856875 -0.003616047604 1.47937218e-14)
(0.001957492501 -0.00288787451 1.21846977e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0003577790035 -0.0005874724591 2.095545959e-15)
(-0.000323145241 -0.0005169730689 1.887379142e-15)
(-0.0002834896633 -0.0004415632116 1.665334537e-15)
(-0.004054235062 -0.006928550355 2.611799665e-14)
(-0.004192371601 -0.007358569916 2.700617507e-14)
(-0.00731077967 -0.01348534959 4.95159469e-14)
(-0.007137677692 -0.01281999789 4.835021272e-14)
(-0.01784974831 -0.03786741622 1.433297925e-13)
(-0.01806910635 -0.03935198574 1.44995127e-13)
(-0.02124306159 -0.04925016747 1.816324868e-13)
(-0.02102570699 -0.04749306567 1.799393967e-13)
(-0.02659536671 -0.0747082223 2.835509605e-13)
(-0.02677145882 -0.07712569755 2.849526171e-13)
(-0.02695436671 -0.08453599619 3.123473702e-13)
(-0.02679932487 -0.08198153065 3.11181636e-13)
(-0.02258536685 -0.09431174159 3.575195695e-13)
(-0.02267279233 -0.09694812521 3.577416141e-13)
(-0.02002247966 -0.09739844825 0)
(-0.01994810058 -0.09480948093 0)
(-0.01174834045 -0.09505360369 0)
(-0.01178633705 -0.09634896397 0)
(-0.01042180475 -0.09638939802 0)
(-0.01038362814 -0.09509404315 0)
(0.01117980617 -0.09572395955 0)
(0.01114098072 -0.09702692212 0)
(0.01250523338 -0.09706866902 0)
(0.01254427902 -0.09576637368 0)
(0.02210412654 -0.0960471367 3.59060004e-13)
(0.02202557691 -0.09865809055 3.591016373e-13)
(0.02447622352 -0.09759797423 3.549660565e-13)
(0.02451828325 -0.09488321999 3.544387006e-13)
(0.02750851309 -0.0801103607 2.98955305e-13)
(0.02761961581 -0.08278163599 3.007871729e-13)
(0.02698036514 -0.07464693043 2.712829961e-13)
(0.02681489944 -0.07210811381 2.691458167e-13)
(0.01994933191 -0.04355171396 1.628974733e-13)
(0.02023240365 -0.0454087463 1.653677195e-13)
(0.0167935568 -0.03544042075 1.292022045e-13)
(0.01649648655 -0.0338695035 1.268291028e-13)
(0.005716910754 -0.009949982573 3.738676035e-14)
(0.005949023034 -0.01063837475 3.891331701e-14)
(0.003067859997 -0.005220444446 1.910971381e-14)
(0.002892248998 -0.004790425165 1.801336857e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0005277817859 -0.0009556091104 3.094746681e-15)
(-0.0004758278338 -0.0008414724148 2.789435349e-15)
(-0.0004295710739 -0.0007415765389 2.525757381e-15)
(-0.004536446086 -0.008590958833 2.921274334e-14)
(-0.004675826577 -0.00907047163 3.010092176e-14)
(-0.007911031151 -0.01612242759 5.355438315e-14)
(-0.007739140146 -0.01539862912 5.240252676e-14)
(-0.01861246272 -0.04367075724 1.490751966e-13)
(-0.01882643866 -0.04522490707 1.5068502e-13)
(-0.0219963449 -0.05620447088 1.874334021e-13)
(-0.02178469132 -0.05437974524 1.857958232e-13)
(-0.02722578799 -0.08424909645 2.882971639e-13)
(-0.02739664359 -0.08671072889 2.89601676e-13)
(-0.0275117045 -0.094670306 3.161915174e-13)
(-0.02736160186 -0.09208416497 3.151229278e-13)
(-0.02292093196 -0.1048064743 3.581995811e-13)
(-0.02300354967 -0.1074294086 3.583661146e-13)
(-0.02031538179 -0.1077326556 0)
(-0.02024258816 -0.1051504871 0)
(-0.01204816105 -0.1053942095 0)
(-0.01208522627 -0.106684553 0)
(-0.01072254503 -0.1067246311 0)
(-0.01070389061 -0.106079403 0)
(-0.01068525241 -0.1054347149 0)
(0.01085454429 -0.1061358092 0)
(0.01081190643 -0.1074337326 0)
(0.01217466388 -0.1074732726 0)
(0.01221746915 -0.1061757746 0)
(0.02177042373 -0.1064439059 3.590738817e-13)
(0.02167997285 -0.1090141571 3.590044928e-13)
(0.0240870866 -0.1076053983 3.541333893e-13)
(0.02420327686 -0.1051924061 3.546191119e-13)
(0.02732744679 -0.08893736099 2.995520498e-13)
(0.027168131 -0.09076445432 2.984695824e-13)
(0.02652896882 -0.08170101701 2.687156053e-13)
(0.02669150046 -0.0801062821 2.698674617e-13)
(0.01997286695 -0.04850360656 1.63702385e-13)
(0.019828089 -0.04936876207 1.626893065e-13)
(0.01641848886 -0.03840743081 1.266764471e-13)
(0.01655014605 -0.03776883478 1.276062589e-13)
(0.005787123793 -0.01117800276 3.788636072e-14)
(0.005711153829 -0.01130346646 3.740063814e-14)
(0.002893540626 -0.005448121997 1.804112415e-14)
(0.002947054039 -0.005415600468 1.837419106e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0007558509268 -0.001496100372 4.427014311e-15)
(-0.000694066983 -0.001344538677 4.066191828e-15)
(-0.0006343109846 -0.001202022754 3.719247132e-15)
(-0.005111802008 -0.01062259728 3.290423489e-14)
(-0.005265462905 -0.01118411129 3.388955783e-14)
(-0.008630702311 -0.01925195495 5.838385331e-14)
(-0.008444316975 -0.01843009559 5.71348524e-14)
(-0.01948254636 -0.05005449782 1.556116347e-13)
(-0.01970914922 -0.0517287299 1.573047248e-13)
(-0.02286661679 -0.06378471376 1.941086181e-13)
(-0.02264371747 -0.06184250055 1.92415528e-13)
(-0.02791499553 -0.09421294848 2.935290899e-13)
(-0.02809143129 -0.09675748973 2.948474798e-13)
(-0.02811825428 -0.1051682545 3.204936316e-13)
(-0.02796494644 -0.1025188113 3.194111642e-13)
(-0.02324547537 -0.11528868 3.587546926e-13)
(-0.02332399272 -0.1179028586 3.588518371e-13)
(-0.02060397635 -0.1180674126 0)
(-0.02053227773 -0.1154837098 0)
(-0.01234288001 -0.1157269209 0)
(-0.01237920123 -0.1170184878 0)
(-0.01101886189 -0.1170585557 0)
(-0.01100055127 -0.1164127768 0)
(-0.01098218425 -0.1157671196 0)
(0.01050374778 -0.1165040117 0)
(0.01045744381 -0.1178000233 0)
(0.01181892266 -0.1178381436 0)
(0.01186551583 -0.116542501 0)
(0.02136205458 -0.1165060186 3.581718255e-13)
(0.02122903247 -0.1188458582 3.574501806e-13)
(0.02339014927 -0.116045522 3.488459521e-13)
(0.02361063553 -0.1141942742 3.508721091e-13)
(0.0261577671 -0.09419620204 2.892547313e-13)
(0.02559542868 -0.09439324417 2.836203494e-13)
(0.02489102137 -0.08449670442 2.539357613e-13)
(0.02535386468 -0.0840652262 2.581962422e-13)
(0.01835696536 -0.04907775264 1.510180869e-13)
(0.01788994549 -0.04892519386 1.472988398e-13)
(0.01451563941 -0.03726698364 1.122990589e-13)
(0.01494987218 -0.03752860787 1.155880947e-13)
(0.004667570764 -0.009903817199 3.058664433e-14)
(0.004416875218 -0.009581856348 2.894906537e-14)
(0.001964121012 -0.004052958833 1.225408663e-14)
(0.002132233083 -0.004303609794 1.329492072e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0009553474355 -0.002052039794 5.606626274e-15)
(-0.0009879809712 -0.002080430402 5.787037516e-15)
(-0.0009018691528 -0.00186112458 5.287437155e-15)
(-0.00576796193 -0.01304572506 3.71092046e-14)
(-0.005964499644 -0.01376336625 3.83582055e-14)
(-0.009468961696 -0.02293665129 6.397660179e-14)
(-0.009234820105 -0.02192808995 6.242228956e-14)
(-0.02043267755 -0.05700478267 1.626893065e-13)
(-0.02070782326 -0.05890586947 1.647432191e-13)
(-0.02384324485 -0.07202279415 2.015887457e-13)
(-0.02357543117 -0.06985855109 1.995348331e-13)
(-0.02864288646 -0.1045601519 2.989969383e-13)
(-0.0288449713 -0.1072582265 3.005373728e-13)
(-0.02876410332 -0.1160094792 3.25045546e-13)
(-0.02859297458 -0.1132436032 3.238243007e-13)
(-0.0235528931 -0.1257189283 3.59060004e-13)
(-0.02362709624 -0.1283141657 3.591016373e-13)
(-0.02088869886 -0.128399223 0)
(-0.02081755828 -0.1258161041 0)
(-0.01262951179 -0.1260583136 0)
(-0.01266468936 -0.1273497948 0)
(-0.01130692112 -0.1273894852 0)
(-0.01128920512 -0.1267435082 0)
(-0.01127144353 -0.1260980131 0)
(0.01012411058 -0.1268466649 0)
(0.01007415438 -0.1281383029 0)
(0.01143518564 -0.1281753287 0)
(0.01148556185 -0.1268837033 0)
(0.02073986538 -0.1252499996 3.53758689e-13)
(0.0205285392 -0.1270416756 3.516908986e-13)
(0.02233385698 -0.1220959568 3.37868622e-13)
(0.02264976586 -0.1209410802 3.414490912e-13)
(0.02401322839 -0.09481855085 2.676331379e-13)
(0.02359300962 -0.09523089758 2.634698015e-13)
(0.02239751469 -0.08306293588 2.298716772e-13)
(0.02311721989 -0.08392154548 2.369354712e-13)
(0.01579905812 -0.04609267886 1.303679387e-13)
(0.01480718682 -0.0440900025 1.22235555e-13)
(0.01148818292 -0.03209422385 8.905376436e-14)
(0.01248285804 -0.03417247936 9.672818102e-14)
(0.003133634764 -0.007243857795 2.055300374e-14)
(0.002736744728 -0.006456100758 1.794397964e-14)
(0.000889018249 -0.001995057466 5.551115123e-15)
(0.001118967691 -0.002460545502 6.980527267e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.001698707959 -0.003933873081 9.950373858e-15)
(-0.001548647347 -0.003521170828 9.076073226e-15)
(-0.001325337725 -0.00295796011 7.757683385e-15)
(-0.00659641497 -0.01612518127 4.239664175e-14)
(-0.007088075682 -0.01764702229 4.554689959e-14)
(-0.01075567075 -0.02809526044 7.256695245e-14)
(-0.01015325371 -0.02604564785 6.852851619e-14)
(-0.02163748873 -0.0650756018 1.716682352e-13)
(-0.02204595917 -0.06748787172 1.747352263e-13)
(-0.02508290113 -0.08146814244 2.110672748e-13)
(-0.02474185384 -0.07896540519 2.084582507e-13)
(-0.02950354953 -0.1156485619 3.056027653e-13)
(-0.02962464068 -0.1181012676 3.062688991e-13)
(-0.02950585454 -0.1274262307 3.304301277e-13)
(-0.02931310775 -0.1245233796 3.290423489e-13)
(-0.023846319 -0.1360656959 0)
(-0.02392099252 -0.1386484686 0)
(-0.02117848014 -0.1387295003 0)
(-0.02114139691 -0.1374385567 0)
(-0.02110467008 -0.1361474824 0)
(-0.01290803423 -0.1363896496 0)
(-0.01292541778 -0.1370345556 0)
(-0.01224634645 -0.1370541662 0)
(-0.0122290283 -0.1364094384 0)
(-0.001131475061 -0.1368965439 0)
(-0.001148616062 -0.1372179324 0)
(-0.001163596376 -0.1375394458 0)
(-0.0004985270234 -0.1375518496 0)
(-0.0004653940799 -0.1369094584 0)
(0.009694804623 -0.1371633836 0)
(0.009635050176 -0.1384493223 0)
(0.009574766518 -0.1397348847 0)
(0.01230484234 -0.1398100778 0)
(0.01242197816 -0.1372372284 0)
(0.01105889781 -0.1372004413 0)
(0.01976453874 -0.1312937378 3.430450368e-13)
(0.01940342789 -0.1318472523 3.381739333e-13)
(0.02073578273 -0.1239885661 3.179123631e-13)
(0.021299714 -0.1246395725 3.255451464e-13)
(0.02156232835 -0.09263514351 2.419592304e-13)
(0.02078060856 -0.09106320619 2.335076577e-13)
(0.01929918496 -0.07759224125 1.990352327e-13)
(0.02011637232 -0.07931576919 2.072231275e-13)
(0.01226999009 -0.03875344889 1.014327511e-13)
(0.01153110526 -0.03711490899 9.536815782e-14)
(0.0084407648 -0.02547889687 6.550315845e-14)
(0.009091658278 -0.02693175442 7.054079543e-14)
(0.001294230291 -0.003236684332 8.493206138e-15)
(0.001052108644 -0.002681187863 6.911138328e-15)
(8.342677698e-05 -0.000202317969 5.273559367e-16)
(0.0001593907364 -0.0003793045938 9.992007222e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.001611000303 -0.004020981311 9.478529073e-15)
(-0.001820602199 -0.004466564827 1.071365219e-14)
(-0.001945431617 -0.004690223835 1.144917494e-14)
(-0.007852554007 -0.02072606214 5.066780329e-14)
(-0.007600379758 -0.02041293626 4.904410211e-14)
(-0.0113445858 -0.03196015524 7.68274333e-14)
(-0.01164641633 -0.03224596335 7.889522369e-14)
(-0.02306255039 -0.0747745693 1.833533325e-13)
(-0.02269588224 -0.07484495254 1.803279748e-13)
(-0.02570346731 -0.08988849803 2.167155344e-13)
(-0.02605912418 -0.08961692272 2.1987967e-13)
(-0.03026779009 -0.1276769452 3.135408599e-13)
(-0.03004231287 -0.1287632873 3.106959134e-13)
(-0.02970332212 -0.1378864296 3.326922071e-13)
(-0.02985771956 -0.1364581367 3.350653088e-13)
(-0.02384234095 -0.1464312191 0)
(-0.0239199072 -0.1490143253 0)
(-0.02116975415 -0.1490969077 0)
(-0.02113098004 -0.1478056546 0)
(-0.0210921879 -0.1465138015 0)
(-0.01284184875 -0.146761545 0)
(-0.01288064089 -0.1480533981 0)
(-0.01150562437 -0.1480946875 0)
(-0.01148621929 -0.147448461 0)
(-0.01146683223 -0.1468028344 0)
(-0.01215434049 -0.1467821897 0)
(-0.001841418531 -0.1470918691 0)
(-0.001860804439 -0.1477374957 0)
(-0.00188020894 -0.1483837223 0)
(-0.0005051501676 -0.1484250129 0)
(-0.0004663580334 -0.1471331598 0)
(0.009159015638 -0.1474221933 0)
(0.009081449387 -0.1500052995 0)
(0.01179212409 -0.1495126216 3.577416141e-13)
(0.01190088634 -0.1473878616 3.588240816e-13)
(0.01835010186 -0.1332273516 3.238936896e-13)
(0.01788362138 -0.1326371458 3.169686735e-13)
(0.01882582981 -0.1224049016 2.92474378e-13)
(0.01938396624 -0.1235053024 3.002043059e-13)
(0.01808410453 -0.08386561266 2.039063363e-13)
(0.01735127167 -0.08196107781 1.958849749e-13)
(0.0154903385 -0.0670069423 1.602051825e-13)
(0.01654979383 -0.07034916634 1.710992459e-13)
(0.008704206558 -0.02957029853 7.202571872e-14)
(0.007586585653 -0.02621794415 6.278311204e-14)
(0.005157899785 -0.01671792045 4.005129561e-14)
(0.005877064425 -0.01872152265 4.563016631e-14)
(0.0002166301861 -0.0005829550634 1.415534356e-15)
(9.785139735e-05 -0.0002680030696 6.383782392e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0003762338559 -0.001003556959 2.220446049e-15)
(-0.0006827035925 -0.001791729624 4.024558464e-15)
(-0.001014316635 -0.002618500387 5.967448757e-15)
(-0.005823365636 -0.01646407957 3.758104938e-14)
(-0.004974955007 -0.01430382651 3.212707878e-14)
(-0.008108191387 -0.0244584753 5.495603972e-14)
(-0.009172934199 -0.02720555404 6.21447338e-14)
(-0.01989071026 -0.06902779204 1.58012492e-13)
(-0.0184384737 -0.06509310195 1.465494393e-13)
(-0.02142650978 -0.0801819227 1.806194083e-13)
(-0.02290387798 -0.08425797703 1.929845173e-13)
(-0.02793112479 -0.1256619066 2.880751193e-13)
(-0.02670350413 -0.1221509222 2.754185768e-13)
(-0.02697137113 -0.1334302193 3.008704397e-13)
(-0.02802003997 -0.1363799372 3.126526815e-13)
(-0.02387353902 -0.1550793985 3.552297345e-13)
(-0.02352574104 -0.1550444932 3.493594303e-13)
(-0.02128312756 -0.1580861686 3.560762796e-13)
(-0.02138874138 -0.1567545079 3.588934705e-13)
(-0.01315214979 -0.1570951698 0)
(-0.01322973406 -0.159678876 0)
(-0.01047964101 -0.1597614566 0)
(-0.01040205674 -0.1571777504 0)
(-0.01177713327 -0.1571364592 0)
(-0.002151717596 -0.1574254939 0)
(-0.002229301865 -0.1600092001 0)
(0.0005208091843 -0.1600917813 0)
(0.0005983934527 -0.1575080751 0)
(0.00878522565 -0.1563470978 3.559097461e-13)
(0.008600934576 -0.1564322508 3.503725088e-13)
(0.01098998647 -0.1517048203 3.39631101e-13)
(0.01128580363 -0.1528407976 3.477634847e-13)
(0.016363204 -0.1280893182 2.91169866e-13)
(0.01565692618 -0.1245421437 2.785827125e-13)
(0.01605458392 -0.1116797045 2.498001805e-13)
(0.0168831247 -0.1156180391 2.628036677e-13)
(0.01435888483 -0.07126701437 1.62064806e-13)
(0.01334261454 -0.06724374245 1.50490731e-13)
(0.01133907551 -0.05232420981 1.171424069e-13)
(0.01233768827 -0.05606626298 1.275507477e-13)
(0.004857045726 -0.01763404596 4.01761957e-14)
(0.004173620159 -0.0153922702 3.451405828e-14)
(0.002136533979 -0.007392717392 1.658395643e-14)
(0.002901798896 -0.009885352871 2.25375274e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-9.24089185e-06 -2.543889665e-05 5.551115123e-17)
(-0.002212537075 -0.006682845337 1.430799923e-14)
(-0.00138870669 -0.004261945795 8.978928712e-15)
(-0.003231334845 -0.01041575572 2.19685381e-14)
(-0.004439407278 -0.01407841904 3.014255512e-14)
(-0.01295721354 -0.04817174717 1.033201302e-13)
(-0.01091237686 -0.04127718411 8.715250743e-14)
(-0.01351573717 -0.05422633708 1.145472606e-13)
(-0.01570815911 -0.06192498495 1.32893696e-13)
(-0.02143527938 -0.1032835035 2.218641937e-13)
(-0.0192250828 -0.09432761959 1.994654442e-13)
(-0.02010852032 -0.1066556601 2.25569563e-13)
(-0.02219653547 -0.115608873 2.483707684e-13)
(-0.02082780467 -0.1440030391 3.092803791e-13)
(-0.01934981953 -0.1362099873 2.880196082e-13)
(-0.01808139027 -0.1431245198 3.025635298e-13)
(-0.01932262416 -0.1502571292 3.22630811e-13)
(-0.01283048848 -0.1605777167 3.443773045e-13)
(-0.01220702179 -0.1553905307 3.281541705e-13)
(-0.009811339923 -0.157050033 3.315125952e-13)
(-0.01028375829 -0.1618578587 3.46958573e-13)
(-0.002285572329 -0.161067151 3.447797603e-13)
(-0.002159942365 -0.1559079084 3.286537709e-13)
(0.0003803734153 -0.1533824584 3.231859225e-13)
(0.0003739436227 -0.1591045219 3.404082571e-13)
(0.007632973192 -0.1455490133 3.110012248e-13)
(0.00716116801 -0.13773168 2.898792317e-13)
(0.008896544056 -0.1294979557 2.72462608e-13)
(0.009562717291 -0.1378981688 2.94569924e-13)
(0.01272838414 -0.1054201261 2.250699627e-13)
(0.01150541733 -0.09633120118 2.025879464e-13)
(0.01135747717 -0.08319568064 1.749711487e-13)
(0.01271440372 -0.09208826814 1.966066199e-13)
(0.009504532749 -0.04994032117 1.066924327e-13)
(0.008059100524 -0.0428858667 9.024725411e-14)
(0.006302245075 -0.03074319563 6.472600234e-14)
(0.007650762855 -0.0368342301 7.871481245e-14)
(0.001923438386 -0.007419712877 1.586231146e-14)
(0.001238995513 -0.004849134984 1.021405183e-14)
(0.0002777307897 -0.001021144455 2.15105711e-15)
(0.0006419761046 -0.002325505137 4.968248035e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-8.112791543e-06 -2.606242284e-05 5.551115123e-17)
(0 0 0)
(-8.354473123e-05 -0.0002864758978 5.689893001e-16)
(-0.0004937865432 -0.001668295107 3.358424649e-15)
(-0.004992721558 -0.01987705847 4.010680676e-14)
(-0.003326642392 -0.01346458051 2.677025268e-14)
(-0.00495875985 -0.02132977249 4.241051954e-14)
(-0.00692290403 -0.02927303874 5.90777427e-14)
(-0.01192027743 -0.0618663415 1.249556014e-13)
(-0.009492903773 -0.0502118496 9.992007222e-14)
(-0.01053453443 -0.06033826764 1.200983757e-13)
(-0.01297548495 -0.07287620189 1.472155731e-13)
(-0.01361615768 -0.1017901769 2.056410597e-13)
(-0.01147527199 -0.0876711992 1.745270595e-13)
(-0.01103384586 -0.09497910461 1.890571033e-13)
(-0.01299133522 -0.1093250527 2.208372374e-13)
(-0.009111384455 -0.1240615918 2.504385588e-13)
(-0.007827135062 -0.1095307805 2.178951464e-13)
(-0.006296870636 -0.1117146623 2.221833828e-13)
(-0.007337236658 -0.126243853 2.547684286e-13)
(-0.001443956646 -0.1245428159 2.510908148e-13)
(-0.001155766836 -0.1099739452 2.185335246e-13)
(0.0005293237263 -0.1066364931 2.118444309e-13)
(0.000496828465 -0.1212145571 2.443045766e-13)
(0.005331346524 -0.103057019 2.075284389e-13)
(0.004611465223 -0.08881405908 1.763311719e-13)
(0.00545807114 -0.08057465631 1.599415045e-13)
(0.006404279311 -0.09447607022 1.902367153e-13)
(0.007373863591 -0.06337005793 1.275785033e-13)
(0.005952897605 -0.05152918812 1.022792961e-13)
(0.005437606329 -0.04134948252 8.208711488e-14)
(0.006914035782 -0.05212926354 1.049438314e-13)
(0.003796292307 -0.02093640997 4.217459715e-14)
(0.002567149149 -0.014322855 2.844946501e-14)
(0.001514564726 -0.007767998439 1.543210004e-14)
(0.002517490407 -0.01275257581 2.570166302e-14)
(2.118045848e-05 -8.653179248e-05 1.665334537e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0002143812938 -0.0009088336258 1.734723476e-15)
(0 0 0)
(-0.0001558364569 -0.0007139357102 1.346145417e-15)
(-0.0007727898347 -0.003488891532 6.64746036e-15)
(-0.00330214174 -0.01845882935 3.518019209e-14)
(-0.001839760571 -0.01046202837 1.966482532e-14)
(-0.002480588692 -0.01532860145 2.881028749e-14)
(-0.004092802135 -0.02483726906 4.7351012e-14)
(-0.005385343575 -0.0439905147 8.387734951e-14)
(-0.003700424452 -0.03088895395 5.809241976e-14)
(-0.003762236388 -0.03557973299 6.691869281e-14)
(-0.005361825783 -0.0495433183 9.446610161e-14)
(-0.003988640712 -0.06113174511 1.16545662e-13)
(-0.002881738608 -0.04555931001 8.566758414e-14)
(-0.002307125696 -0.04712451737 8.859579737e-14)
(-0.00319462948 -0.06292690483 1.1994572e-13)
(-0.0004198925457 -0.06143191024 1.170452624e-13)
(-0.0002583084213 -0.04580951967 8.609779556e-14)
(0.0003881999186 -0.04341388667 8.158751452e-14)
(0.0004676464595 -0.05868106418 1.117855808e-13)
(0.002361096493 -0.04472465122 8.518186156e-14)
(0.001669600958 -0.03148555798 5.916100942e-14)
(0.001791863267 -0.026427238 4.965472478e-14)
(0.002622081 -0.03865232358 7.360778653e-14)
(0.002171009588 -0.01919853442 3.656797087e-14)
(0.001234593618 -0.01100715272 2.067790383e-14)
(0.0008462630015 -0.006669018434 1.253164239e-14)
(0.001694699018 -0.01322608019 2.518818487e-14)
(0.0001949670909 -0.00112785226 2.15105711e-15)
(5.474476801e-07 -3.208654965e-06 0)
(0 0 0)
(2.279691975e-06 -1.21548943e-05 2.775557562e-17)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-2.409869833e-05 -0.000156118345 2.91433544e-16)
(-0.0004320373811 -0.003819106209 6.89726054e-15)
(-4.861617938e-05 -0.000436348159 7.771561172e-16)
(-0.0001061778134 -0.001085624555 1.942890293e-15)
(-0.0005471786585 -0.005504094295 9.93649607e-15)
(-0.0005623064561 -0.009661023609 1.745825706e-14)
(-0.0001816363135 -0.003187963782 5.689893001e-15)
(-0.000155682244 -0.003591814395 6.411537967e-15)
(-0.0004606597574 -0.01037155076 1.873501354e-14)
(-2.781707495e-05 -0.009766154826 1.76386683e-14)
(-7.567365331e-06 -0.003246734755 5.787037516e-15)
(3.024004857e-05 -0.00265837205 4.74620343e-15)
(9.632414364e-05 -0.008700351711 1.57096558e-14)
(0.0002124751674 -0.004013430845 7.244205236e-15)
(2.634522468e-05 -0.0005015913307 8.881784197e-16)
(4.856074239e-06 -7.333485235e-05 1.387778781e-16)
(0.0001613975087 -0.002412470725 4.357625372e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.01034509026 -0.09379665721 0)
(-0.01170998438 -0.09375627234 0)
(0.01121833035 -0.09442302985 0)
(0.009854049576 -0.09437821922 0)
(0.009834780008 -0.09502793313 0)
(0.009815803788 -0.09567987795 0)
(0.01009113096 -0.08521495047 0)
(0.01006272987 -0.08653076167 0)
(-0.01066661421 -0.1047900268 0)
(-0.01064795439 -0.1041446186 0)
(-0.01201109403 -0.104103806 0)
(0.010896989 -0.1048363185 0)
(0.009534784173 -0.1047963747 0)
(0.009513760119 -0.1054465164 0)
(0.009492561462 -0.1060964727 0)
(0.009796691348 -0.09633235919 0)
(0.009777453497 -0.09698501683 0)
(-0.01096382264 -0.1151216424 0)
(-0.01094545202 -0.1144758653 0)
(-0.01230644238 -0.1144354775 0)
(0.01054851565 -0.115209155 0)
(0.009187198794 -0.1151716402 0)
(0.009165061175 -0.1158188657 0)
(0.009142637958 -0.1164656022 0)
(0.009471240999 -0.1067464853 0)
(0.009450030987 -0.1073948197 0)
(-0.01125368555 -0.1254526379 0)
(-0.01123586396 -0.1248071445 0)
(-0.01259422502 -0.124767196 0)
(0.01017405056 -0.1255555669 0)
(0.008813548512 -0.1255189173 0)
(0.008762803274 -0.1268108319 0)
(0.009096497782 -0.1177621593 0)
(-0.01221174673 -0.1357639288 0)
(-0.01289069266 -0.1357441418 0)
(-0.001116140118 -0.1365745606 0)
(-0.001450727767 -0.1365678767 0)
(-0.001465390684 -0.1368899402 0)
(-0.0004336879712 -0.1362661837 0)
(-0.001100555566 -0.1362525849 0)
(0.009751538583 -0.135876033 0)
(0.008391676745 -0.1358400633 0)
(0.008334406367 -0.1371272776 0)
(0.008714765355 -0.1281025876 0)
(-0.01213493542 -0.1461359632 0)
(-0.01282244368 -0.1461153185 0)
(-0.001822016651 -0.1464456424 0)
(-0.002509561745 -0.1464249966 0)
(-0.002528954821 -0.1470712236 0)
(-0.001481097035 -0.137211672 0)
(-0.0004275658992 -0.1458413067 0)
(-0.001066148727 -0.1458425504 0)
(-0.001710730889 -0.1458538235 0)
(0.00930877373 -0.1448669591 0)
(0.007948407906 -0.1448297731 0)
(0.006579908773 -0.144791442 0)
(0.006510374638 -0.1460730632 0)
(0.006449693672 -0.1473618568 0)
(0.008274477318 -0.1384130309 0)
(-0.01000312634 -0.08333659721 0)
(-0.01137146276 -0.08330084745 0)
(-0.001075623952 -0.07425609486 0)
(-0.001118092776 -0.07553858885 0)
(0.01149040021 -0.08395457713 0)
(0.0101188339 -0.0839003891 0)
(0.01019360378 -0.07467640761 0)
(0.0101911319 -0.07598472583 0)
(0.00586619351 -0.09032334202 0)
(0.005874307414 -0.08999413334 0)
(0.005530001206 -0.08998359623 0)
(0.005520944598 -0.09031299881 0)
(0.005976450837 -0.0850439598 0)
(0.005289408037 -0.08501361433 0)
(0.005281172789 -0.08568046401 0)
(0.005967322252 -0.08570895934 0)
(0.0125832688 -0.09446593843 0)
(0.02217961447 -0.09343092266 3.589628594e-13)
(0.01945259956 -0.0933779335 0)
(0.01937305217 -0.0959770153 0)
(0.01967818057 -0.08556364942 0)
(0.01960480393 -0.08816723338 0)
(-0.02016960733 -0.102568084 0)
(-0.02283931435 -0.1021903027 3.580608032e-13)
(-0.01337514271 -0.1040632663 0)
(-0.01341203153 -0.1053537352 0)
(-0.01311359279 -0.09501314801 0)
(-0.01315146578 -0.09630839189 0)
(0.005493691299 -0.1007667862 0)
(0.005505002566 -0.1004414991 0)
(0.005117290016 -0.1004302772 0)
(0.005106099961 -0.1007553277 0)
(0.005710330678 -0.09555467582 0)
(0.005353576376 -0.09554528435 0)
(0.005353673974 -0.09587103412 0)
(0.005705685668 -0.09588076363 0)
(0.01226002485 -0.1048765875 0)
(0.02185818096 -0.1038573371 3.591016373e-13)
(0.01912558894 -0.1037780196 0)
(0.01903965318 -0.1063738467 0)
(0.01929242709 -0.09857798654 0)
(-0.02046027369 -0.1128998361 0)
(-0.02316612625 -0.112672306 3.586436703e-13)
(-0.0136687546 -0.1143951101 0)
(-0.01370501402 -0.1156866189 0)
(-0.01344885854 -0.1066441459 0)
(-0.01219623002 -0.1105591926 0)
(-0.01083439242 -0.1105993656 0)
(-0.01081571278 -0.1099532974 0)
(-0.01079710035 -0.1093074674 0)
(-0.01215929616 -0.1092672236 0)
(-0.006750929895 -0.1107197628 0)
(-0.00674245921 -0.1103966726 0)
(-0.006735046369 -0.1100736107 0)
(-0.007415318945 -0.1100536037 0)
(-0.007433458564 -0.1106996881 0)
(-0.006601012271 -0.105555616 0)
(-0.007281869268 -0.1055354713 0)
(-0.007301040283 -0.1061799032 0)
(-0.006620656099 -0.1061997934 0)
(-0.006610676972 -0.1058774692 0)
(0.005240998428 -0.1111729476 0)
(0.005249463759 -0.1108482357 0)
(0.004906324033 -0.1108386525 0)
(0.004899772781 -0.1111634218 0)
(0.005400615781 -0.105976181 0)
(0.005050565607 -0.1059651291 0)
(0.005030309791 -0.1062894869 0)
(0.005385089349 -0.1063010412 0)
(0.01191076912 -0.1152474787 0)
(0.02147890931 -0.1140681559 3.58602037e-13)
(0.01877491658 -0.1141480876 0)
(0.01868383104 -0.1167354122 0)
(0.01895285233 -0.1089644829 0)
(-0.02074648851 -0.1232333433 0)
(-0.02347587322 -0.1231106942 3.58990615e-13)
(-0.01395492438 -0.1247271173 0)
(-0.01399003294 -0.1260183003 0)
(-0.01374109523 -0.116978193 0)
(-0.01248746469 -0.1208938704 0)
(-0.0111280962 -0.1209342695 0)
(-0.01111002379 -0.1202884233 0)
(-0.01109188597 -0.1196423989 0)
(-0.01245156168 -0.1196022308 0)
(-0.007058427034 -0.1210540123 0)
(-0.00704718964 -0.1207311854 0)
(-0.007389415509 -0.120720969 0)
(-0.007399652664 -0.121043886 0)
(-0.006912494083 -0.1158865628 0)
(-0.007588501691 -0.1158669241 0)
(-0.007607528734 -0.1165125614 0)
(-0.006932062951 -0.1165322439 0)
(-0.006922785835 -0.1162092981 0)
(0.00488409509 -0.1215329191 0)
(0.004908063362 -0.1208865293 0)
(0.004230605445 -0.1208685886 0)
(0.004207339797 -0.1215151797 0)
(0.005067585742 -0.1163539254 0)
(0.004388495181 -0.116335155 0)
(0.004376897126 -0.1166595927 0)
(0.004366103087 -0.1169846551 0)
(0.005045217088 -0.1170020449 0)
(-0.02106840526 -0.1348557936 0)
(-0.02103190043 -0.1335641121 0)
(-0.02377259831 -0.1334826544 0)
(-0.01287345488 -0.1350980904 0)
(-0.01423362142 -0.1350582679 0)
(-0.01426892621 -0.1363499855 0)
(-0.01402509231 -0.1273098451 0)
(-0.01276930943 -0.1312238454 0)
(-0.0120903653 -0.1312436924 0)
(-0.01207294391 -0.1305975264 0)
(-0.01275194984 -0.1305777376 0)
(-0.007318291665 -0.1313844072 0)
(-0.007315722808 -0.1310606593 0)
(-0.007672588056 -0.1310491625 0)
(-0.007678274032 -0.1313725165 0)
(-0.007189004044 -0.1262180793 0)
(-0.007540640086 -0.1262070399 0)
(-0.007551939267 -0.1265293245 0)
(-0.007202603717 -0.1265401748 0)
(-0.0009123086595 -0.1317369387 0)
(-0.0005742391149 -0.1317454088 0)
(-0.0005676578781 -0.1314212409 0)
(-0.0009089873329 -0.1314118321 0)
(0.004481852799 -0.1318663655 0)
(0.004508969977 -0.131220911 0)
(0.003831890637 -0.131204363 0)
(0.003805308688 -0.1318495934 0)
(0.004690868076 -0.1267031524 0)
(0.0040147158 -0.1266857315 0)
(0.003989651897 -0.1273316079 0)
(0.004666098185 -0.1273490377 0)
(-0.02105339577 -0.1452219484 0)
(-0.02121883989 -0.1439615578 0)
(-0.02396481007 -0.1438756778 0)
(-0.01280305662 -0.1454696919 0)
(-0.01417813315 -0.1454284007 0)
(-0.01421692528 -0.1467202538 0)
(-0.01430421117 -0.1376410431 0)
(-0.01294307919 -0.1376807144 0)
(-0.01305136301 -0.1415547751 0)
(-0.01237193706 -0.1415745765 0)
(-0.01235345544 -0.1409291029 0)
(-0.01303287959 -0.1409092415 0)
(-0.007608004514 -0.1417136054 0)
(-0.007577817202 -0.1413935095 0)
(-0.007929482038 -0.141382229 0)
(-0.00795233647 -0.1417033258 0)
(-0.007435595025 -0.1365522359 0)
(-0.007801187011 -0.1365397564 0)
(-0.007816832139 -0.1368607694 0)
(-0.00745652156 -0.13687273 0)
(-0.01173834114 -0.1558446061 0)
(-0.01311335766 -0.1558033167 0)
(-0.002112925462 -0.1561336408 0)
(-0.003487983987 -0.1560923502 0)
(-0.003526776121 -0.1573842033 0)
(-0.002548335879 -0.1477168503 0)
(-0.006133583942 -0.09001734846 0)
(-0.006153722193 -0.09066799119 0)
(-0.005470945101 -0.09068759297 0)
(-0.005460866101 -0.09036214278 0)
(-0.00545120654 -0.09003746073 0)
(-0.006291542089 -0.09521566029 0)
(-0.005606165717 -0.09523630103 0)
(-0.005596722974 -0.09491263944 0)
(-0.005589053279 -0.09458802375 0)
(-0.006272739383 -0.09456749383 0)
(-0.005943621049 -0.08474081669 0)
(-0.005971580587 -0.08540652337 0)
(-0.00528406244 -0.08541283886 0)
(-0.005256131226 -0.0847484754 0)
(-0.005430439636 -0.08938448266 0)
(-0.006112856174 -0.08936487369 0)
(0.005717188589 -0.09522829412 0)
(0.005357531357 -0.09521917582 0)
(0.005512544141 -0.09064155028 0)
(0.005857452967 -0.09065161903 0)
(0.0113293097 -0.0905072027 0)
(0.009963175337 -0.09046012032 0)
(0.009945434485 -0.091112925 0)
(0.009927922836 -0.0917680968 0)
(0.01129319843 -0.0918137781 0)
(0.005849815836 -0.09097895024 0)
(0.006533660888 -0.09100158692 0)
(0.006550670356 -0.09034713874 0)
(0.006060506891 -0.09556453039 0)
(0.006068750264 -0.09523801012 0)
(-0.006591051162 -0.1052338918 0)
(-0.00658149025 -0.1049114949 0)
(-0.007262698252 -0.1048910394 0)
(-0.006449568749 -0.1003902537 0)
(-0.007129463904 -0.1003700779 0)
(-0.007148669153 -0.1010156498 0)
(-0.006468952203 -0.1010357603 0)
(-0.01189916141 -0.1002282333 0)
(-0.01193657529 -0.1015201879 0)
(-0.01057294662 -0.1015607149 0)
(-0.01053535454 -0.1002688258 0)
(-0.005791100123 -0.1010555745 0)
(-0.005781513409 -0.1007331184 0)
(-0.00577097925 -0.1004105105 0)
(-0.006258840404 -0.1055658307 0)
(-0.006248693287 -0.1052441121 0)
(-0.006310919594 -0.09586296871 0)
(-0.005625642218 -0.09588330618 0)
(-0.005614833221 -0.09555974567 0)
(-0.005760952104 -0.1000875871 0)
(-0.005750402324 -0.09976425907 0)
(-0.006429865462 -0.09974409618 0)
(0.005416360006 -0.1056518678 0)
(0.005071109417 -0.1056413804 0)
(0.005098891656 -0.1010809782 0)
(0.005485970559 -0.1010929018 0)
(0.01102134352 -0.1009330724 0)
(0.0103398373 -0.1009125479 0)
(0.01031949184 -0.1015640913 0)
(0.01100088165 -0.1015844922 0)
(0.005863286466 -0.101104352 0)
(0.005871882647 -0.1007780826 0)
(0.005746822806 -0.1059868172 0)
(0.00575969412 -0.1056621775 0)
(0.006053232567 -0.09589077947 0)
(0.005882677298 -0.1004525998 0)
(0.01104159835 -0.1002825473 0)
(0.01036003213 -0.100262021 0)
(-0.006902387744 -0.1155640022 0)
(-0.006891984996 -0.1152415705 0)
(-0.007569125443 -0.1152216576 0)
(-0.007452154421 -0.1113462963 0)
(-0.006768792925 -0.1113666363 0)
(-0.006758713561 -0.111043174 0)
(-0.01223311829 -0.1118516434 0)
(-0.01087152971 -0.1118921091 0)
(-0.01085296467 -0.1112458574 0)
(-0.0064116587 -0.1110537756 0)
(-0.006404473257 -0.1107302865 0)
(-0.006576445459 -0.1158962934 0)
(-0.006565356881 -0.1155738223 0)
(-0.006268995323 -0.1058876092 0)
(-0.006398579074 -0.1104069988 0)
(0.00508965316 -0.1157066378 0)
(0.004410053172 -0.1156880322 0)
(0.004399298178 -0.1160115944 0)
(0.004889864993 -0.1114879703 0)
(0.005230529014 -0.1114975993 0)
(0.01068176859 -0.1113255744 0)
(0.009319968108 -0.1112881652 0)
(0.009298165279 -0.1119362416 0)
(0.009276273075 -0.1125832943 0)
(0.01063776633 -0.1126209346 0)
(0.005219474602 -0.1118213326 0)
(0.005899388999 -0.1118400677 0)
(0.005921186422 -0.1111921713 0)
(0.005746048079 -0.1163726169 0)
(0.005768305703 -0.115725395 0)
(0.005734055281 -0.1063120005 0)
(0.005942461841 -0.1105436587 0)
(0.005601402416 -0.1105335975 0)
(0.005258630507 -0.1105239652 0)
(0.01072500882 -0.1100295909 0)
(0.009363782601 -0.1099910578 0)
(0.00934208176 -0.1106397378 0)
(-0.0071760944 -0.1258959632 0)
(-0.007529642718 -0.1258848063 0)
(-0.00740976621 -0.1213666867 0)
(-0.007069656626 -0.1213767795 0)
(-0.01252315886 -0.1221845553 0)
(-0.01116407777 -0.1222245254 0)
(-0.01114615599 -0.1215796956 0)
(-0.00672730895 -0.1213869395 0)
(-0.006714044679 -0.1210644136 0)
(-0.006828388048 -0.1262298689 0)
(-0.006812159672 -0.1259080326 0)
(-0.006587241232 -0.1162190135 0)
(-0.006700781003 -0.1207417075 0)
(0.004716234406 -0.1260568046 0)
(0.004039566108 -0.1260393681 0)
(0.00418421875 -0.1221619553 0)
(0.004861208052 -0.1221797017 0)
(-0.007421775145 -0.1362302072 0)
(-0.007790546055 -0.136217392 0)
(-0.007687616555 -0.1316956406 0)
(-0.007328482619 -0.1317073857 0)
(-0.01278666361 -0.1318697732 0)
(-0.01210771949 -0.1318896202 0)
(-0.001244254402 -0.1317303942 0)
(-0.001258241682 -0.1320521777 0)
(-0.0009226544171 -0.1320597925 0)
(-0.006962851028 -0.1317197463 0)
(-0.006949983369 -0.1313970283 0)
(-0.007074672421 -0.1365642149 0)
(-0.00705418268 -0.1362428669 0)
(-0.006845718667 -0.1265516121 0)
(-0.006950559236 -0.1310730058 0)
(-0.001246615863 -0.1314034954 0)
(0.004249184855 -0.1370180581 0)
(0.004310129764 -0.1357316747 0)
(0.002955760498 -0.1356977918 0)
(0.002924602808 -0.1363412031 0)
(0.002892856517 -0.136983816 0)
(0.003777494904 -0.1324942462 0)
(0.004454007807 -0.1325112576 0)
(-0.0005847144779 -0.1320682586 0)
(-0.007342724599 -0.1469230709 0)
(-0.007324423416 -0.1462714061 0)
(-0.007665087471 -0.1462629782 0)
(-0.008008019652 -0.1462556834 0)
(-0.008028876856 -0.1469042686 0)
(-0.007977820201 -0.1420239833 0)
(-0.007639439878 -0.1420336638 0)
(-0.01307007923 -0.1422000614 0)
(-0.01239058967 -0.1422197446 0)
(-0.001433772151 -0.1420208018 0)
(-0.002090890074 -0.14201206 0)
(-0.00213440691 -0.1426493948 0)
(-0.001478199216 -0.142657809 0)
(-0.007343628279 -0.1420411653 0)
(-0.007309806024 -0.1417214187 0)
(-0.006656878406 -0.1469436657 0)
(-0.006642843398 -0.1462918728 0)
(-0.006985517434 -0.1462797812 0)
(-0.007102088809 -0.1368840337 0)
(-0.007274360711 -0.1414020212 0)
(-0.001388743248 -0.1413833322 0)
(-0.002047645025 -0.1413738762 0)
(-0.01987284057 -0.0922171769 0)
(-0.0224912397 -0.0916505542 3.572003804e-13)
(-0.01307542033 -0.09371593127 0)
(-0.01279014341 -0.08458765794 0)
(-0.01283689207 -0.08590847884 0)
(-0.01159355359 -0.08986290189 0)
(-0.01022777403 -0.08990179991 0)
(-0.01018700274 -0.08859603708 0)
(-0.01155289943 -0.08855703945 0)
(-0.006794979834 -0.08934511136 0)
(-0.0068157109 -0.08999749595 0)
(-0.006627585842 -0.08472456764 0)
(-0.006656040838 -0.08539217404 0)
(0.003147379264 -0.08759631686 0)
(0.003132654886 -0.08727146713 0)
(0.002787578662 -0.08728017304 0)
(0.002887748195 -0.08754733378 0)
(0.003197028469 -0.0849025023 0)
(0.002838060623 -0.08488422613 0)
(0.002828026914 -0.08523116802 0)
(0.003189326059 -0.08524460745 0)
(-0.01049761542 -0.0989760402 0)
(-0.01186166591 -0.09893556056 0)
(-0.007110180635 -0.09972390771 0)
(-0.006974259162 -0.09519545975 0)
(-0.006993636667 -0.09584276816 0)
(0.002192954065 -0.1188547221 0)
(0.002189484939 -0.1185284507 0)
(0.001829803246 -0.118493147 0)
(0.001768466459 -0.1187625807 0)
(0.011534951 -0.1255929492 0)
(0.02092380128 -0.1232546749 3.553407568e-13)
(0.01840221151 -0.1244868749 3.591016373e-13)
(0.01829727719 -0.1270145954 3.589351039e-13)
(0.01859154185 -0.1193228207 0)
(-0.0009558576024 -0.1290516428 0)
(-0.000535708158 -0.1291430534 0)
(-0.0005273106482 -0.1288190001 0)
(-0.0008768141551 -0.1287851431 0)
(0.001888220984 -0.1292193231 0)
(0.001913481689 -0.1285736928 0)
(0.001237077386 -0.1285568648 0)
(0.001224872745 -0.128879903 0)
(0.001213499742 -0.129202846 0)
(0.001989494839 -0.1266359079 0)
(0.001651590302 -0.1266273827 0)
(0.001639179256 -0.1269502946 0)
(0.001977105992 -0.1269588804 0)
(-0.0007697582076 -0.1420319727 0)
(-0.0007248487174 -0.1413947998 0)
(0.003984897259 -0.1421529463 0)
(0.00405368857 -0.1408710626 0)
(0.002686934897 -0.1408332043 0)
(0.002610657147 -0.1421124009 0)
(0.002860636206 -0.1376264147 0)
(0.002828132098 -0.1382684644 0)
(0.0041862959 -0.138303182 0)
(-0.006954976437 -0.09454730771 0)
(-0.00683579005 -0.09064817048 0)
(-0.01163246518 -0.09116073304 0)
(-0.01026707122 -0.09120047229 0)
(-0.003495779643 -0.09269796161 0)
(-0.003528261564 -0.09302207245 0)
(-0.00322601233 -0.09303078814 0)
(-0.003190532664 -0.09270604663 0)
(-0.003185761721 -0.08475956513 0)
(-0.00320692754 -0.08510342786 0)
(-0.002861332359 -0.08510483964 0)
(-0.002837677833 -0.08475629817 0)
(-0.003299752818 -0.08746708916 0)
(-0.002956583944 -0.0874729017 0)
(-0.002943512797 -0.08714100721 0)
(-0.003291673352 -0.08713562732 0)
(0.006652986524 -0.08573781245 0)
(0.006664985381 -0.08507822731 0)
(0.006567423774 -0.0896912175 0)
(0.005883133637 -0.08966600304 0)
(0.01136474131 -0.08920126151 0)
(0.009998895973 -0.08915655403 0)
(0.009981196202 -0.08980799067 0)
(0.002001293876 -0.1263123771 0)
(0.001663126536 -0.1263036038 0)
(0.002073930352 -0.124046642 0)
(0.001723779397 -0.1240347462 0)
(0.001717855773 -0.1243594144 0)
(0.002064688014 -0.1243704297 0)
(0.01031829333 -0.1216800036 0)
(0.008957332885 -0.1216426196 0)
(0.008909940579 -0.1229348751 0)
(0.01027067182 -0.1229718919 0)
(0.00553852016 -0.1221976981 0)
(0.005561959816 -0.1215511122 0)
(0.005367745175 -0.1267208354 0)
(0.005393395913 -0.1260746162 0)
(0.005723716039 -0.1170203171 0)
(0.005585574073 -0.1209047117 0)
(0.01036567248 -0.1203861863 0)
(0.009004473827 -0.120348735 0)
(-0.001018586104 -0.1343196632 0)
(-0.001361284803 -0.134309793 0)
(-0.001370476753 -0.1346340626 0)
(-0.001030803349 -0.1346428211 0)
(-0.003967588886 -0.1394031215 0)
(-0.003616494091 -0.1394149855 0)
(-0.003595161375 -0.1390957648 0)
(-0.003943482254 -0.1390839241 0)
(-0.001270006439 -0.1394644267 0)
(-0.001232675169 -0.1388237832 0)
(-0.001894424635 -0.1388132208 0)
(-0.001912735067 -0.1391339736 0)
(-0.001930729266 -0.1394540153 0)
(0.0001718644806 -0.07942493233 0)
(-0.0005757622889 -0.07940873427 0)
(-0.000594612089 -0.08005026907 0)
(0.0001520612393 -0.08006651057 0)
(-0.005586525219 -0.07935283472 0)
(-0.005730933651 -0.08072911486 0)
(-0.005031292527 -0.08073091179 0)
(-0.004309540024 -0.08071455696 0)
(-0.004236356136 -0.08003239191 0)
(-0.004164977421 -0.07936074261 0)
(-0.005222028603 -0.08407499208 0)
(-0.005916843713 -0.08408087958 0)
(0.005985250006 -0.08438033046 0)
(0.005296992758 -0.08434902846 0)
(0.005972013695 -0.0797057253 0)
(0.004539591026 -0.07961977166 0)
(0.004532470297 -0.08026910568 0)
(0.004560601617 -0.08094287828 0)
(0.005294834019 -0.08100811871 0)
(0.005998607923 -0.08105068602 0)
(0.0009326830348 -0.08009538642 0)
(0.0009474135652 -0.07945303127 0)
(0.003043435146 -0.08801305708 0)
(0.005929746239 -0.08769331323 0)
(0.005244945054 -0.08766831765 0)
(0.005236880237 -0.08799949166 0)
(0.005228867998 -0.08833011472 0)
(0.005915183747 -0.08835367239 0)
(0.003471871992 -0.08794828117 0)
(0.003487606902 -0.08761387823 0)
(0.003544915094 -0.08525680461 0)
(0.003549918446 -0.08491718331 0)
(0.003489452938 -0.08728060168 0)
(0.005944297509 -0.08703512779 0)
(0.005260375247 -0.08701206239 0)
(0.00525257784 -0.08733973112 0)
(0.005669563839 -0.09816369039 0)
(0.005346089369 -0.0981530161 0)
(0.005332868205 -0.09847890644 0)
(0.005656596487 -0.0984895283 0)
(0.005678156416 -0.09783754095 0)
(0.005352574058 -0.09782686342 0)
(0.005328509245 -0.1085774681 0)
(0.004990404321 -0.1085682162 0)
(0.004977115965 -0.1088937442 0)
(0.005317050964 -0.108903051 0)
(0.005337050829 -0.1082510168 0)
(0.004997468654 -0.1082413603 0)
(0.002152126254 -0.1214555672 0)
(0.002165997756 -0.1211328193 0)
(0.00182272543 -0.1211230519 0)
(0.001799373589 -0.1214437134 0)
(0.001894425728 -0.1191806933 0)
(0.002214341014 -0.1191854953 0)
(0.004977235142 -0.1189445752 0)
(0.004299318215 -0.1189263205 0)
(0.004276297387 -0.1195725586 0)
(0.004954574329 -0.1195908241 0)
(0.002560065028 -0.1191958168 0)
(0.002555446864 -0.1188692106 0)
(0.002502552625 -0.121467291 0)
(0.002513540423 -0.1211439761 0)
(0.002322255818 -0.1162669236 0)
(0.002258563077 -0.1165666151 0)
(0.002615126461 -0.1166011646 0)
(0.002643874343 -0.1162800045 0)
(0.002559242796 -0.1185445987 0)
(0.004999978174 -0.1182977883 0)
(0.00432209305 -0.1182794744 0)
(0.004310510021 -0.1186030117 0)
(-0.00730027363 -0.1287983718 0)
(-0.007632647111 -0.1287890518 0)
(-0.007643662496 -0.1291118854 0)
(-0.007313385498 -0.1291210223 0)
(-0.009988368628 -0.1287211362 0)
(-0.01000612841 -0.1293665713 0)
(-0.009331017239 -0.129386063 0)
(-0.009313019246 -0.1287406951 0)
(-0.01005928055 -0.1313026405 0)
(-0.00938440939 -0.131322125 0)
(-0.009366629786 -0.1306760298 0)
(-0.01004162276 -0.1306566017 0)
(0.001781960364 -0.1318012073 0)
(0.00180931694 -0.1311561804 0)
(0.001136584159 -0.1311404837 0)
(0.001110094015 -0.1317856567 0)
(0.001201200304 -0.1295256411 0)
(0.001189159471 -0.1298486241 0)
(0.001862673475 -0.1298647046 0)
(-0.000853559077 -0.129468024 0)
(-0.0005280233407 -0.1294723341 0)
(-0.007630678214 -0.1391214836 0)
(-0.007948390731 -0.1391139251 0)
(-0.00795986992 -0.1394362043 0)
(-0.007647845025 -0.1394431716 0)
(-0.01027067537 -0.1390504968 0)
(-0.01028836975 -0.1396957537 0)
(-0.00961636609 -0.1397147317 0)
(-0.009598973527 -0.1390695257 0)
(-0.01034311439 -0.1416328561 0)
(-0.009670990723 -0.1416518377 0)
(-0.009661184396 -0.141329268 0)
(-0.0096520999 -0.1410067367 0)
(-0.01032451457 -0.1409874461 0)
(-0.01019955461 -0.1364680378 0)
(-0.01021710916 -0.1371126384 0)
(-0.009543607244 -0.1371317214 0)
(-0.009525518074 -0.1364873171 0)
(-0.009580802734 -0.1384244032 0)
(-0.01025292279 -0.1384053016 0)
(-0.007608078206 -0.1388008595 0)
(-0.00793195476 -0.1387925754 0)
(-0.003378941289 -0.09009661841 0)
(-0.003340428945 -0.09043108283 0)
(-0.002916495884 -0.09052329168 0)
(-0.003068130375 -0.09010181363 0)
(-0.00315332559 -0.0923835791 0)
(-0.003461381279 -0.09237522956 0)
(-0.006214528677 -0.09261896472 0)
(-0.005533114848 -0.09263876579 0)
(-0.005522583613 -0.0923134553 0)
(-0.005512231212 -0.09198910034 0)
(-0.006194291862 -0.09196903963 0)
(-0.003804424984 -0.09236504866 0)
(-0.003832555503 -0.09268844937 0)
(-0.003719040025 -0.09008696435 0)
(-0.003702782096 -0.09041794386 0)
(-0.003437226829 -0.0953110396 0)
(-0.00341194935 -0.09500605064 0)
(-0.003774663632 -0.09497293802 0)
(-0.003770755843 -0.09529760107 0)
(-0.003858878181 -0.09301304545 0)
(-0.006234541699 -0.09326943705 0)
(-0.00555362351 -0.09328994391 0)
(-0.005543575898 -0.09296473901 0)
(-0.006046873511 -0.08739472338 0)
(-0.00536400175 -0.08741277253 0)
(-0.005338816381 -0.08674705101 0)
(-0.006021660013 -0.08672946514 0)
(-0.00363835133 -0.08712687474 0)
(-0.003646946348 -0.08745870546 0)
(-0.003537262116 -0.08477000835 0)
(-0.003552905997 -0.08510337986 0)
(-0.003393425252 -0.08976596243 0)
(-0.00372553937 -0.08975760513 0)
(-0.003651799646 -0.08778972967 0)
(-0.003300041244 -0.0877980943 0)
(-0.00606980478 -0.08805457899 0)
(-0.005386868349 -0.08807307451 0)
(-0.002954809724 -0.08780601671 0)
(-0.003078474781 -0.08977170235 0)
(0.005796711494 -0.09294342757 0)
(0.005450425871 -0.09293260881 0)
(0.005445365025 -0.09325934475 0)
(0.005789337528 -0.0932709949 0)
(0.005804963876 -0.09261660729 0)
(0.005457688212 -0.0926057588 0)
(-0.006523925496 -0.1029744773 0)
(-0.006180879395 -0.1029847783 0)
(-0.006172663728 -0.1026619807 0)
(-0.006514655588 -0.1026517714 0)
(-0.003818854721 -0.1004661867 0)
(-0.004120287922 -0.1004574955 0)
(-0.004141027888 -0.1007793765 0)
(-0.003840758735 -0.1007880327 0)
(-0.006532838993 -0.1032973139 0)
(-0.006189462878 -0.1033076249 0)
(-0.006370555776 -0.0978049689 0)
(-0.00568829773 -0.09782545594 0)
(-0.005677483922 -0.09750153523 0)
(-0.005667357747 -0.09717771399 0)
(-0.006350632843 -0.0971574967 0)
(-0.003638970513 -0.09788789457 0)
(-0.003615930617 -0.09756482145 0)
(-0.0039268532 -0.09755554503 0)
(-0.003949027259 -0.0978785841 0)
(-0.003786869041 -0.09562040174 0)
(-0.003464071987 -0.09563063529 0)
(-0.003797097109 -0.1001442161 0)
(-0.004099534748 -0.1001353747 0)
(-0.003970778292 -0.09820133558 0)
(-0.003661793789 -0.0982105538 0)
(-0.006390393481 -0.09845160287 0)
(-0.005709045671 -0.09847200252 0)
(-0.0056984869 -0.098148975 0)
(0.005514145639 -0.1033754171 0)
(0.005193083218 -0.1033666169 0)
(0.005180759694 -0.1036924141 0)
(0.005503460183 -0.1037012634 0)
(0.005520507315 -0.103049561 0)
(0.005198726665 -0.1030406792 0)
(0.005843275384 -0.1033847598 0)
(0.005851195322 -0.1030590105 0)
(0.008215212525 -0.1034546637 0)
(0.008235640159 -0.102804384 0)
(0.00755514678 -0.1027841301 0)
(0.007535015556 -0.1034345389 0)
(0.008296335103 -0.100851125 0)
(0.007615067098 -0.1008306677 0)
(0.007595070836 -0.1014825819 0)
(0.008276220638 -0.1015029756 0)
(0.008131551283 -0.1060567449 0)
(0.008152695342 -0.1054066068 0)
(0.00747255297 -0.1053866638 0)
(0.007451347106 -0.1060368601 0)
(0.007514451701 -0.104085355 0)
(0.008194530468 -0.1041054162 0)
(0.005833191754 -0.1037105641 0)
(0.006000399422 -0.09817422538 0)
(0.006009830232 -0.09784816117 0)
(0.008375799232 -0.09824681576 0)
(0.008395308267 -0.09759512716 0)
(0.007714351085 -0.09757431885 0)
(0.007694960253 -0.09822607105 0)
(0.008452527385 -0.09563761985 0)
(0.007770977385 -0.09561655351 0)
(0.00775227235 -0.09626946737 0)
(0.008433644144 -0.09629046831 0)
(0.008316355331 -0.1002004126 0)
(0.007635029125 -0.1001798935 0)
(0.007675158413 -0.09887751062 0)
(0.008356119199 -0.09889819893 0)
(0.005988693923 -0.09850004112 0)
(-0.006829881625 -0.1133036082 0)
(-0.006486389704 -0.1133138626 0)
(-0.006475023907 -0.1129911596 0)
(-0.006819012048 -0.1129808302 0)
(-0.006839904573 -0.1136265917 0)
(-0.006497678703 -0.1136368081 0)
(-0.00667988831 -0.1081363406 0)
(-0.006340993172 -0.1081462768 0)
(-0.00633070742 -0.1078235414 0)
(-0.006670014773 -0.1078135328 0)
(-0.00668982365 -0.1084592067 0)
(-0.006351240525 -0.1084691335 0)
(0.005155003395 -0.1137641485 0)
(0.004813712952 -0.1137543806 0)
(0.004803642563 -0.114078744 0)
(0.005144292781 -0.1140884327 0)
(0.002689367621 -0.1159625903 0)
(0.002386001117 -0.1159546818 0)
(0.005164792367 -0.1134399568 0)
(0.004822631293 -0.1134299826 0)
(-0.00714345511 -0.1236340117 0)
(-0.006811747656 -0.1236433117 0)
(-0.006804353411 -0.1233200691 0)
(-0.007135370837 -0.1233107898 0)
(-0.007148314854 -0.1239574506 0)
(-0.006812528439 -0.1239671133 0)
(-0.006972719043 -0.1184709705 0)
(-0.00661658042 -0.1184822653 0)
(-0.006611962488 -0.1181588792 0)
(-0.006965350601 -0.1181477871 0)
(-0.006981619945 -0.1187939877 0)
(-0.006624917299 -0.1188052994 0)
(0.002137817923 -0.1217786623 0)
(0.002490686378 -0.12179106 0)
(0.002418718921 -0.1240571155 0)
(0.002428988508 -0.1237331184 0)
(0.002082272074 -0.1237220465 0)
(0.004789562453 -0.1241186388 0)
(0.004813705344 -0.1234718338 0)
(0.004136957854 -0.1234540346 0)
(0.004112913958 -0.1241011428 0)
(0.001728364387 -0.1237092572 0)
(0.001778207622 -0.1217649811 0)
(-0.007453802111 -0.1339591672 0)
(-0.00778396451 -0.1339502139 0)
(-0.007796179944 -0.1342730115 0)
(-0.007469730491 -0.134281613 0)
(-0.01012983066 -0.1338840956 0)
(-0.01014743386 -0.1345303162 0)
(-0.009473995552 -0.1345495174 0)
(-0.009456274149 -0.1339033604 0)
(-0.009508178307 -0.1358418693 0)
(-0.01018221484 -0.13582259 0)
(-0.01007699475 -0.1319485575 0)
(-0.009402363596 -0.1319680348 0)
(-0.009438325348 -0.1332576306 0)
(-0.01011218368 -0.1332384168 0)
(-0.007435588843 -0.1336370301 0)
(-0.007770134414 -0.1336276449 0)
(-0.001006679074 -0.1339965561 0)
(-0.001351862453 -0.1339858305 0)
(-0.007126364419 -0.1339678585 0)
(-0.007102257719 -0.1336462587 0)
(-0.007148172429 -0.1342897074 0)
(-0.006970570853 -0.1288074314 0)
(-0.006953064408 -0.1284850329 0)
(-0.007286582135 -0.1284756185 0)
(-0.00698722766 -0.1291297353 0)
(-0.001090940276 -0.1295047972 0)
(-0.0006798853301 -0.1343280321 0)
(-0.0006666612592 -0.134005445 0)
(0.001668223539 -0.1343792636 0)
(0.001697855398 -0.1337346654 0)
(0.001026289656 -0.133719304 0)
(0.0009964705823 -0.1343641368 0)
(0.00108199584 -0.1324295803 0)
(0.001754437006 -0.1324453884 0)
(-0.01036206341 -0.1422778952 0)
(-0.009690592566 -0.142296617 0)
(-0.009680551635 -0.1419742345 0)
(-0.0102771274 -0.1442933618 0)
(-0.009601975909 -0.1442875108 0)
(-0.009677150618 -0.1439249741 0)
(-0.009710788797 -0.1435911905 0)
(-0.01038314074 -0.1435818111 0)
(-0.007570563526 -0.144345748 0)
(-0.007686179234 -0.1439797748 0)
(-0.008006518159 -0.1439756808 0)
(-0.007899070213 -0.1443494563 0)
(-0.007402281189 -0.1442652206 0)
(-0.007479095306 -0.1439712793 0)
(-0.004203505853 -0.1445508129 0)
(-0.004188629352 -0.1442295966 0)
(-0.004513043089 -0.1442270018 0)
(-0.004528124194 -0.1445480317 0)
(-0.004054324193 -0.141988775 0)
(-0.00438894724 -0.1419819699 0)
(-0.004402963327 -0.1423039327 0)
(-0.004069522311 -0.1423101018 0)
(-0.00731666304 -0.1391285707 0)
(-0.007287068562 -0.1388088173 0)
(-0.004283588831 -0.1390523311 0)
(-0.004378618057 -0.1393155882 0)
(-0.004039876106 -0.1416674258 0)
(-0.004376922029 -0.1416597071 0)
(-0.004299543339 -0.1397260471 0)
(-0.00397318734 -0.1397293609 0)
(-0.007343414624 -0.1394492502 0)
(-0.001968523754 -0.1400945848 0)
(-0.001307766124 -0.1401049373 0)
(-0.003628023729 -0.1397389448 0)
(-0.00372314765 -0.1419941554 0)
(-0.003706558699 -0.1416737112 0)
(0.00177034063 -0.08479576772 0)
(0.001348394406 -0.08478339336 0)
(0.001717721793 -0.08519647679 0)
(0.0005653519039 -0.127888023 0)
(0.0005781343702 -0.1275649422 0)
(0.0002195189202 -0.1275509305 0)
(0.0002072278792 -0.127873846 0)
(0.000630772453 -0.1265997922 0)
(0.0002964014333 -0.1265923941 0)
(0.0002808114804 -0.1269143697 0)
(0.0006183548119 -0.1269225237 0)
(-0.02132492269 -0.1542643201 0)
(-0.02400955476 -0.1537904945 3.581857033e-13)
(-0.01307458354 -0.1545120636 0)
(-0.01444966007 -0.1544707724 0)
(-0.01582473659 -0.1544294813 0)
(-0.01590230284 -0.1570125874 0)
(-0.01425571741 -0.1480121069 0)
(-0.01299699927 -0.1519283574 0)
(-0.01162198275 -0.1519696468 0)
(-0.01158319062 -0.1506777937 0)
(-0.01295820714 -0.1506365043 0)
(-0.007496795176 -0.1520935191 0)
(-0.007458003042 -0.150801666 0)
(-0.008833037565 -0.1507603761 0)
(-0.0088718297 -0.1520522292 0)
(-0.00804853996 -0.147551088 0)
(-0.007361445698 -0.1475711197 0)
(0.0006759597034 -0.1549249689 0)
(-0.000699092821 -0.1548836784 0)
(-0.002074151346 -0.1548423878 0)
(0.008914524772 -0.1549211433 3.585187702e-13)
(0.006176187802 -0.1550901313 0)
(0.006097571772 -0.1576352243 3.590183706e-13)
(0.006370130455 -0.1486314658 0)
(0.006331356339 -0.1499227189 0)
(-0.001774694237 -0.08471168778 0)
(-0.001816820662 -0.08508597923 0)
(-0.001385872861 -0.08514878362 0)
(-0.001405820412 -0.08467267568 0)
(0.000636109259 -0.1262748662 0)
(0.0002914694885 -0.1262646374 0)
(0.0006640619188 -0.1253021886 0)
(0.0003445726158 -0.1252986005 0)
(0.0003288008538 -0.1256206307 0)
(0.0006599077563 -0.1256273302 0)
(0.001544697455 -0.1369519212 0)
(0.001576634548 -0.1363095542 0)
(0.0009052482012 -0.1362946186 0)
(0.0008734515109 -0.1369371099 0)
(0.0009668165411 -0.1350080737 0)
(0.001638427293 -0.1350231363 0)
(-0.0006934616137 -0.1346505486 0)
(0.00365881154 -0.1472570316 0)
(0.003751221268 -0.1459884089 0)
(0.002381490792 -0.1459532839 0)
(0.002283753016 -0.1472157409 0)
(0.002530041271 -0.1433896656 0)
(0.003915890551 -0.1434344032 0)
(-0.0008157453285 -0.1426686328 0)
(7.614561308e-05 -0.08199088177 0)
(-0.0007208052636 -0.08198734592 0)
(-0.0007630312391 -0.08263435259 0)
(-0.0003345685558 -0.08262561624 0)
(7.279130561e-05 -0.08263162069 0)
(-0.002950858359 -0.0820132287 0)
(-0.003028877258 -0.08270420901 0)
(-0.002307269352 -0.08268966955 0)
(-0.002205775118 -0.0819941152 0)
(-0.002810571978 -0.08440682075 0)
(-0.00315980148 -0.08441023889 0)
(0.003199750805 -0.08455844326 0)
(0.002843291593 -0.0845372247 0)
(0.003155776087 -0.08218388649 0)
(0.002426800446 -0.08213138577 0)
(0.002442807956 -0.08279670469 0)
(0.003181651379 -0.08286378919 0)
(0.0005098055495 -0.08265042483 0)
(0.0009098998007 -0.08267431216 0)
(0.0009017198831 -0.08202511925 0)
(0.005574963649 -0.09946665973 0)
(0.005211565306 -0.09945592767 0)
(0.005165488576 -0.09978137192 0)
(0.005544436567 -0.09979227062 0)
(0.004315434607 -0.09551741384 0)
(0.004336347112 -0.09584198695 0)
(0.004647658504 -0.09585151526 0)
(0.004632131229 -0.09552680358 0)
(0.00438404852 -0.09681843776 0)
(0.004688104407 -0.09682798844 0)
(0.00467682534 -0.09650220319 0)
(0.004371328799 -0.09649242909 0)
(0.005694361324 -0.09685988619 0)
(0.005698335513 -0.09653353801 0)
(0.005356635268 -0.09652321728 0)
(0.005357334082 -0.09684934544 0)
(0.005278938697 -0.1098750632 0)
(0.00493001475 -0.1098647058 0)
(0.004919164329 -0.1101890458 0)
(0.005267971263 -0.1101997 0)
(0.003847184623 -0.1098256441 0)
(0.003830112575 -0.1101487763 0)
(0.004199301055 -0.1101632856 0)
(0.004211932937 -0.1098394195 0)
(0.003890418955 -0.1111378571 0)
(0.004219264342 -0.1111452695 0)
(0.004216261451 -0.1108184716 0)
(0.003880553617 -0.110809592 0)
(0.004040266903 -0.1059338306 0)
(0.004005760518 -0.10625716 0)
(0.00431765815 -0.1062661654 0)
(0.004350089639 -0.1059431341 0)
(0.003890950803 -0.1072019456 0)
(0.004250854556 -0.1072354543 0)
(0.004257692613 -0.1069109338 0)
(0.003928207171 -0.1068974365 0)
(0.005350352773 -0.1072748364 0)
(0.005358575086 -0.1069504174 0)
(0.004997462887 -0.1069379523 0)
(0.00499092304 -0.1072625419 0)
(-0.007319851908 -0.1184603665 0)
(-0.007329070823 -0.1187833742 0)
(-0.009697191073 -0.1183903604 0)
(-0.009715688904 -0.1190363739 0)
(-0.009037406609 -0.1190562611 0)
(-0.009018790574 -0.1184103112 0)
(-0.009770876982 -0.1209742437 0)
(-0.009093134709 -0.1209941147 0)
(-0.009074580478 -0.1203482229 0)
(-0.009752502759 -0.1203283465 0)
(-0.009623164967 -0.1158071479 0)
(-0.009641711991 -0.1164527996 0)
(-0.008962951477 -0.1164727613 0)
(-0.008944284449 -0.1158271131 0)
(-0.009000234541 -0.1177643594 0)
(-0.009678755045 -0.117744405 0)
(-0.00731105301 -0.1181373462 0)
(-0.009916191789 -0.1261375078 0)
(-0.009934253387 -0.126782994 0)
(-0.009257885765 -0.1268026435 0)
(-0.009239525956 -0.1261572264 0)
(-0.00929469962 -0.1280946161 0)
(-0.009970409017 -0.1280750464 0)
(-0.007621268108 -0.128466109 0)
(-0.007580137605 -0.1404205835 0)
(-0.007925688802 -0.1404099069 0)
(-0.007911520624 -0.1407360792 0)
(-0.007551860469 -0.1407479001 0)
(-0.008959885909 -0.1403786715 0)
(-0.008966735355 -0.1407027713 0)
(-0.00862214119 -0.1407131189 0)
(-0.008619064692 -0.1403886656 0)
(-0.008995574131 -0.1416711584 0)
(-0.008652238216 -0.1416814081 0)
(-0.00863908076 -0.1413592393 0)
(-0.008984571358 -0.1413487447 0)
(-0.006674357454 -0.1475917518 0)
(-0.006121736651 -0.1521348098 0)
(-0.006082944517 -0.1508429567 0)
(-0.001996567083 -0.1522586815 0)
(-0.001957774965 -0.1509668284 0)
(-0.003332833468 -0.1509255378 0)
(-0.003371625602 -0.1522173909 0)
(0.005756564732 -0.09424839238 0)
(0.005409695284 -0.09423761615 0)
(0.005387711924 -0.09456450456 0)
(0.005741377289 -0.09457416362 0)
(0.004419096121 -0.09420228489 0)
(0.004244876835 -0.09461192417 0)
(0.004671463586 -0.09454636002 0)
(0.004727653876 -0.09421611465 0)
(0.004621839772 -0.09520212901 0)
(0.004292836543 -0.09519597311 0)
(0.006140040202 -0.09295391731 0)
(0.006148707196 -0.09262728965 0)
(0.008527183022 -0.09302944273 0)
(0.008545606607 -0.09237790172 0)
(0.00786371461 -0.09235622454 0)
(0.007845462024 -0.09300807097 0)
(0.008598137234 -0.09041453023 0)
(0.007915946667 -0.09039279604 0)
(0.00789881287 -0.09104738462 0)
(0.008580879468 -0.09106924721 0)
(0.008471334408 -0.09498530962 0)
(0.007789668007 -0.09496411966 0)
(0.007827273587 -0.09366178109 0)
(0.008508936385 -0.09368309104 0)
(0.00613175719 -0.09328175763 0)
(0.005462323078 -0.1046772086 0)
(0.005129951398 -0.1046678286 0)
(0.00511103724 -0.1049921067 0)
(0.00544741168 -0.105001787 0)
(0.004168623597 -0.1046419044 0)
(0.004138872433 -0.1049644757 0)
(0.004442693733 -0.1049732386 0)
(0.004470800251 -0.1046498371 0)
(0.0043822049 -0.1056206337 0)
(0.004074584833 -0.1056121772 0)
(0.005497323578 -0.1020716243 0)
(0.005486546747 -0.1017453136 0)
(0.005108686024 -0.1017336068 0)
(0.005134963889 -0.102060503 0)
(-0.007510450015 -0.1132836523 0)
(-0.007530033297 -0.1139298135 0)
(-0.006850636757 -0.1139497942 0)
(-0.009548588029 -0.1132235916 0)
(-0.009567331276 -0.113869778 0)
(-0.008888032542 -0.1138898158 0)
(-0.00886916929 -0.113243633 0)
(-0.008925566426 -0.1151817668 0)
(-0.009604565148 -0.1151617379 0)
(-0.005587041332 -0.1159240217 0)
(-0.005567205006 -0.1156022337 0)
(-0.005897766413 -0.1155929681 0)
(-0.005913712182 -0.115914993 0)
(-0.005507705021 -0.114636569 0)
(-0.005849366867 -0.1146263696 0)
(-0.005865511256 -0.114948809 0)
(-0.005527508354 -0.1149586583 0)
(-0.006871341489 -0.1145961018 0)
(-0.006881636845 -0.1149189571 0)
(-0.006542897714 -0.1149288886 0)
(-0.00653164412 -0.1146061222 0)
(0.003871836664 -0.1114602834 0)
(0.004207548101 -0.111469043 0)
(0.003775279886 -0.1124202109 0)
(0.004142119872 -0.1124345296 0)
(0.004162950454 -0.1121122309 0)
(0.003805293803 -0.1120996894 0)
(0.00519625274 -0.1124684655 0)
(0.005207410958 -0.1121446753 0)
(0.004864475258 -0.1121344976 0)
(0.004851826582 -0.112458123 0)
(0.005834330974 -0.1137826258 0)
(0.005855812169 -0.1131352604 0)
(0.005174989339 -0.1131163779 0)
(0.007872273479 -0.1138391973 0)
(0.007894096671 -0.1131924428 0)
(0.007214589101 -0.1131733596 0)
(0.007192815101 -0.1138204759 0)
(0.007959820128 -0.1112497245 0)
(0.007280197959 -0.1112304577 0)
(0.007258458736 -0.1118784159 0)
(0.007938080905 -0.1118976827 0)
(0.005668048245 -0.1085861624 0)
(0.005677648252 -0.1082604636 0)
(0.008046942783 -0.1086523716 0)
(0.008068310636 -0.1080027808 0)
(0.00738816466 -0.1079829577 0)
(0.007367160425 -0.1086324394 0)
(0.007430015832 -0.1066872328 0)
(0.008110343617 -0.1067070012 0)
(0.007981824586 -0.1106009335 0)
(0.007302020607 -0.1105817213 0)
(0.007345470938 -0.1092827413 0)
(0.00802539312 -0.1093020171 0)
(0.005657319002 -0.108911467 0)
(-0.0074786415 -0.1236243671 0)
(-0.007486005744 -0.1239476106 0)
(-0.009843821785 -0.1235554467 0)
(-0.009861712386 -0.1242012383 0)
(-0.009184931953 -0.1242211405 0)
(-0.009166799541 -0.1235752961 0)
(-0.009221231554 -0.1255119874 0)
(-0.009898137397 -0.1254922617 0)
(-0.009789176789 -0.1216196627 0)
(-0.009111614523 -0.1216395282 0)
(-0.009148425318 -0.1229293989 0)
(-0.009825629371 -0.1229096041 0)
(-0.007469900804 -0.1233012849 0)
(-0.007103324938 -0.1223427994 0)
(-0.006767264313 -0.1223525304 0)
(-0.006753895063 -0.1220309085 0)
(-0.007092089974 -0.1220210534 0)
(-0.005765858502 -0.1223809793 0)
(-0.005741072602 -0.1220603609 0)
(-0.006077505242 -0.1220506187 0)
(-0.006098506193 -0.1223715911 0)
(-0.005669953776 -0.1210963664 0)
(-0.006016212407 -0.1210858488 0)
(-0.006036541959 -0.1214078622 0)
(-0.005693573861 -0.1214181609 0)
(-0.00579024344 -0.1262634449 0)
(-0.005762579207 -0.1259423724 0)
(-0.006077196734 -0.1259327448 0)
(-0.006102702681 -0.1262539422 0)
(-0.00568141352 -0.124998198 0)
(-0.006040128646 -0.1249655057 0)
(-0.006036910256 -0.1252891271 0)
(-0.005707534603 -0.1253020806 0)
(-0.007151006985 -0.1249277038 0)
(-0.007155882316 -0.1252506617 0)
(-0.006789347085 -0.1252629293 0)
(-0.006788228503 -0.1249396784 0)
(-0.006947833067 -0.1171782193 0)
(-0.006609560153 -0.1171880768 0)
(-0.006604941626 -0.1168648709 0)
(-0.006940858245 -0.1168551442 0)
(-0.00562881977 -0.1172151245 0)
(-0.005633577214 -0.1168911566 0)
(-0.005948817612 -0.1168830718 0)
(-0.005944610389 -0.1172069631 0)
(-0.005928858729 -0.1162374023 0)
(-0.005606188836 -0.1162460706 0)
(-0.00564633189 -0.1207745119 0)
(-0.005995903251 -0.1207637146 0)
(-0.005575378624 -0.1198088309 0)
(-0.005935051987 -0.1197972498 0)
(-0.005955283139 -0.1201193863 0)
(-0.005599036512 -0.1201306843 0)
(-0.007013539856 -0.1197625825 0)
(-0.00702472505 -0.1200854711 0)
(-0.006674289653 -0.1200962943 0)
(-0.006661121981 -0.1197735854 0)
(0.004088147059 -0.1247473285 0)
(0.004765229373 -0.1247647774 0)
(0.002408008937 -0.1243803787 0)
(0.002664231685 -0.1266522654 0)
(0.002688367369 -0.1260057004 0)
(0.002013262128 -0.1259886112 0)
(-0.002203152839 -0.1330469874 0)
(-0.001965356984 -0.1330088454 0)
(-0.002055361072 -0.1325952356 0)
(-0.0009650177539 -0.1330279535 0)
(-0.0009526642849 -0.1327041391 0)
(-0.001297321466 -0.1326942701 0)
(-0.001307132044 -0.1330186413 0)
(-0.007378703215 -0.1326730286 0)
(-0.007028277422 -0.1326839717 0)
(-0.007004805575 -0.1323633138 0)
(-0.007360530776 -0.1323518513 0)
(-0.007463053297 -0.1352542495 0)
(-0.007438520892 -0.135580673 0)
(-0.007085324192 -0.1355919395 0)
(-0.007135207588 -0.1352629531 0)
(-0.00724459862 -0.1275076863 0)
(-0.006899408034 -0.1275181719 0)
(-0.006881435371 -0.1271958474 0)
(-0.007230538713 -0.1271850642 0)
(-0.005904922343 -0.1275476742 0)
(-0.005876253059 -0.1272263316 0)
(-0.006183074482 -0.1272174786 0)
(-0.006209999496 -0.1275389337 0)
(-0.006129263465 -0.1265748676 0)
(-0.005818875499 -0.1265839478 0)
(-0.006133280963 -0.130111058 0)
(-0.00639954869 -0.1301094885 0)
(-0.006369443246 -0.130435719 0)
(-0.006161320086 -0.1304064151 0)
(-0.007334772511 -0.1300876513 0)
(-0.00732966525 -0.1304115696 0)
(-0.00699252278 -0.130421273 0)
(-0.0070093029 -0.1300962835 0)
(-0.0009231129075 -0.1304274411 0)
(-0.0013451727 -0.1303356128 0)
(-0.001239211171 -0.1307530649 0)
(-0.0009110089459 -0.1307581758 0)
(-0.007631838267 -0.1447127154 0)
(-0.007187623873 -0.1447921167 0)
(-0.01003297649 -0.144906664 0)
(-0.009344268178 -0.1449273447 0)
(-0.00939484789 -0.144629747 0)
(-0.0100916957 -0.1468441274 0)
(-0.009403989417 -0.1468641775 0)
(-0.009384242344 -0.1462185618 0)
(-0.01007211062 -0.1461979063 0)
(-0.009007289727 -0.1419933103 0)
(-0.008666706718 -0.1420032372 0)
(-0.009042179743 -0.1429612154 0)
(-0.00870986266 -0.1429704135 0)
(-0.008696807191 -0.1426476412 0)
(-0.009031402565 -0.1426383145 0)
(-0.007734682041 -0.1429950121 0)
(-0.007705251337 -0.1426741128 0)
(-0.008030787563 -0.142665899 0)
(-0.008053720016 -0.142987594 0)
(-0.003740538833 -0.1423145154 0)
(-0.003562514105 -0.1445559475 0)
(-0.00351356701 -0.1439175145 0)
(-0.004157087938 -0.1439150065 0)
(-0.001624862626 -0.1445636243 0)
(-0.001575852013 -0.1439281961 0)
(-0.002227023778 -0.1439226957 0)
(-0.002269503191 -0.1445607223 0)
(-0.007449579063 -0.1430015314 0)
(-0.007416263804 -0.1426808688 0)
(-0.005459366167 -0.1432493912 0)
(-0.005436508827 -0.1429315976 0)
(-0.005756096667 -0.142911491 0)
(-0.005857864545 -0.1431665582 0)
(-0.004591953608 -0.1470086747 0)
(-0.004573160557 -0.1463624297 0)
(-0.005262414856 -0.1463405315 0)
(-0.00528013388 -0.1469874092 0)
(-0.004572278041 -0.1448592403 0)
(-0.004246890496 -0.1448630054 0)
(-0.007532798796 -0.1378365095 0)
(-0.007196030737 -0.1378460816 0)
(-0.007164708137 -0.1375245784 0)
(-0.007506851805 -0.1375144246 0)
(-0.007208927164 -0.1407791575 0)
(-0.007178944674 -0.1405090826 0)
(0.003158458715 -0.08626554972 0)
(0.002801830088 -0.08625297301 0)
(0.002793828673 -0.0865912356 0)
(0.003145808143 -0.08660743824 0)
(0.002104441598 -0.08518635905 0)
(0.002120507132 -0.08483514569 0)
(0.003170298248 -0.08592527037 0)
(0.002811732898 -0.08591559029 0)
(0.002316464498 -0.1175789858 0)
(0.002035089288 -0.1175791246 0)
(0.001967013716 -0.1178875729 0)
(0.002271450678 -0.117895033 0)
(0.002325660023 -0.117255557 0)
(0.002098763112 -0.1172906631 0)
(0.000529154783 -0.1291832572 0)
(0.0005390541393 -0.1288597895 0)
(0.0001872567373 -0.1288471236 0)
(0.0001782964111 -0.1291709198 0)
(0.0002044225653 -0.1281992683 0)
(0.0005574224133 -0.1282120904 0)
(-0.0007092675227 -0.1282188561 0)
(-0.0004717795315 -0.1281825065 0)
(-0.0005773950069 -0.1277665062 0)
(-0.003592470655 -0.09399155939 0)
(-0.003320449304 -0.09399372207 0)
(-0.003289009181 -0.09367510515 0)
(-0.003581672452 -0.09366775833 0)
(-0.003561321831 -0.09432004327 0)
(-0.003349203119 -0.09429127974 0)
(-0.003256932702 -0.08612169647 0)
(-0.00291409339 -0.08612848404 0)
(-0.002897002094 -0.08578671084 0)
(-0.003240715189 -0.0857808219 0)
(-0.001899811403 -0.08615073146 0)
(-0.001781360261 -0.08587707922 0)
(-0.002204769107 -0.08579221302 0)
(-0.002232503154 -0.08612921043 0)
(-0.002135256961 -0.0847373241 0)
(-0.0021656163 -0.0850951488 0)
(-0.002258828026 -0.08646567962 0)
(-0.002009567223 -0.08643081261 0)
(-0.003271194403 -0.08646363871 0)
(-0.002926694413 -0.0864687225 0)
(0.0006944160572 -0.1240047371 0)
(0.000682023012 -0.1243276495 0)
(0.001019719936 -0.1243362885 0)
(0.001020363376 -0.1240102607 0)
(0.00100415833 -0.1253113201 0)
(0.001003602928 -0.1249850161 0)
(0.0006516165093 -0.1249726448 0)
(0.002035603738 -0.1253419923 0)
(0.002046086325 -0.1250183019 0)
(0.001702588403 -0.1250080473 0)
(0.001694165686 -0.1253323401 0)
(0.0002333001147 -0.1248821901 0)
(0.0004588283747 -0.1240400627 0)
(0.0003839468385 -0.1243229628 0)
(-0.002378393372 -0.1342848362 0)
(-0.002390404203 -0.1346078201 0)
(-0.002054438912 -0.1346150859 0)
(-0.002052035595 -0.1342889308 0)
(-0.002422820927 -0.1355761597 0)
(-0.002083913152 -0.1355847751 0)
(-0.002069588666 -0.135263302 0)
(-0.002403584082 -0.1352563356 0)
(-0.001070906349 -0.1356094886 0)
(-0.001057232285 -0.1352878158 0)
(-0.00139274875 -0.1352803232 0)
(-0.001406593819 -0.1356019308 0)
(-0.002719005898 -0.1352556923 0)
(-0.002754531475 -0.1355701628 0)
(-0.002624570266 -0.1343190031 0)
(-0.002714889366 -0.1345848039 0)
(-0.002481506208 -0.1368648931 0)
(-0.002474480936 -0.136540138 0)
(-0.0028187919 -0.1365301592 0)
(-0.002823419487 -0.1368554668 0)
(-0.00280086642 -0.1358816061 0)
(-0.00245034345 -0.135893513 0)
(-0.003920714116 -0.138058301 0)
(-0.003523554387 -0.1381409136 0)
(-0.003507821618 -0.137818582 0)
(-0.00382749523 -0.1377973318 0)
(-0.002524819587 -0.1381587124 0)
(-0.002511272098 -0.1378359548 0)
(-0.002845797339 -0.1378290926 0)
(-0.002858371599 -0.1381522398 0)
(-0.002831534985 -0.1371795286 0)
(-0.002490372332 -0.1371887522 0)
(-0.002593126136 -0.1394426526 0)
(-0.002575225544 -0.1391227283 0)
(-0.0029104666 -0.1391153041 0)
(-0.002928264593 -0.1394354117 0)
(-0.002873147337 -0.1384749004 0)
(-0.002540200144 -0.1384811147 0)
(-0.003848399194 -0.1384656742 0)
(-0.003536310456 -0.1384641154 0)
(0.003334726995 -0.08902487493 0)
(0.003460421928 -0.08860519045 0)
(0.003208209581 -0.08855794958 0)
(0.004502289375 -0.08897058866 0)
(0.004516410963 -0.08863951245 0)
(0.004156946983 -0.08863095847 0)
(0.004137753062 -0.08896275319 0)
(0.004551284425 -0.0876437587 0)
(0.004198685285 -0.08763479228 0)
(0.004186557023 -0.08796648687 0)
(0.004540922234 -0.0879748397 0)
(0.004446342975 -0.090286712 0)
(0.004466260047 -0.08995703497 0)
(0.004110553244 -0.08994635971 0)
(0.00407782895 -0.09027974201 0)
(0.004126730643 -0.08929242105 0)
(0.004490745006 -0.08929983847 0)
(0.004560534194 -0.0873139235 0)
(0.004208038567 -0.08730250988 0)
(0.004582201185 -0.0863173708 0)
(0.004234799173 -0.08630592997 0)
(0.004225071458 -0.08663668169 0)
(0.004573283412 -0.08664714991 0)
(0.00350928842 -0.08661924177 0)
(0.003522144738 -0.08628170151 0)
(0.004419341772 -0.09812170418 0)
(0.004422477263 -0.09844868625 0)
(0.004711492928 -0.0984579054 0)
(0.004714580883 -0.09813147055 0)
(0.004424773533 -0.09951121599 0)
(0.004631733581 -0.09910904597 0)
(0.0044251808 -0.09907065322 0)
(0.00560792265 -0.09914046123 0)
(0.005263937518 -0.09912983166 0)
(0.00535709927 -0.09717496512 0)
(0.005689805128 -0.09718561633 0)
(0.004395569416 -0.09714356965 0)
(0.004697804219 -0.09715336592 0)
(0.004711606174 -0.09780533411 0)
(0.004413167725 -0.09779571189 0)
(0.00400882081 -0.1085444463 0)
(0.003969526262 -0.1088664308 0)
(0.004302199178 -0.108874979 0)
(0.004328742641 -0.1085512304 0)
(0.004238203941 -0.1095173442 0)
(0.003884155222 -0.1095054516 0)
(0.00529108036 -0.1095511223 0)
(0.004944550512 -0.1095408368 0)
(0.003570194118 -0.1094959638 0)
(0.00352023669 -0.1098120428 0)
(0.003715793887 -0.1085384098 0)
(0.003667020173 -0.1088592688 0)
(0.003572175003 -0.1108051965 0)
(0.00357768117 -0.1111330305 0)
(0.003470826865 -0.1101146856 0)
(0.004032403193 -0.1082191073 0)
(0.003759244786 -0.1082172108 0)
(0.004992416895 -0.1075883936 0)
(0.00534566039 -0.1075999018 0)
(0.003856833514 -0.1074729174 0)
(0.004277246374 -0.1075641557 0)
(0.004339515721 -0.1082246659 0)
(0.002173792647 -0.1201574344 0)
(0.001810234813 -0.1201426137 0)
(0.001810405009 -0.1204685458 0)
(0.002168659849 -0.1204823665 0)
(0.002193130374 -0.1198348507 0)
(0.001843053207 -0.1198234977 0)
(0.00253308915 -0.1201705657 0)
(0.002546176473 -0.1198459325 0)
(0.003574745126 -0.1202034063 0)
(0.003585551165 -0.1198783443 0)
(0.003243598298 -0.1198684363 0)
(0.003232617045 -0.1201937333 0)
(0.003616569322 -0.1189067796 0)
(0.003269552876 -0.1188956987 0)
(0.003261820204 -0.1192194116 0)
(0.003605906745 -0.1192298641 0)
(0.002637995635 -0.1175843768 0)
(0.002639984304 -0.1172593503 0)
(0.003662450195 -0.1176134578 0)
(0.003671338519 -0.1172896594 0)
(0.003325348098 -0.1172792099 0)
(0.003318618061 -0.1176031331 0)
(0.003701694337 -0.116314952 0)
(0.003351968159 -0.1163045104 0)
(0.003337239777 -0.116628794 0)
(0.003689302447 -0.1166394259 0)
(0.003627366914 -0.1185833989 0)
(0.003279203825 -0.1185721034 0)
(0.003306538831 -0.1179259949 0)
(0.003651439604 -0.1179365318 0)
(0.002612294111 -0.1179044873 0)
(-0.0005642916626 -0.1304419394 0)
(-0.000555837142 -0.1301175875 0)
(-0.000913954563 -0.1301032905 0)
(0.0004859445806 -0.1304780405 0)
(0.000497674607 -0.1301548079 0)
(0.0001522056126 -0.1301441939 0)
(0.0001420128392 -0.1304678329 0)
(0.0001714805528 -0.1294955011 0)
(0.0005196406324 -0.1295070968 0)
(-0.008931161033 -0.1390880776 0)
(-0.008940005519 -0.1394106161 0)
(-0.008608644872 -0.1394196654 0)
(-0.008599858587 -0.1390970651 0)
(-0.00861704247 -0.1400653217 0)
(-0.008952956097 -0.1400558954 0)
(-0.007625015011 -0.1400922879 0)
(-0.007946957089 -0.140084182 0)
(-0.007874534447 -0.1378263679 0)
(-0.007894191989 -0.1381490021 0)
(-0.007558431971 -0.1381585439 0)
(-0.008891248671 -0.1377969188 0)
(-0.008901383839 -0.1381204394 0)
(-0.008566552058 -0.1381298933 0)
(-0.008554738623 -0.1378064831 0)
(-0.008589408449 -0.1387750553 0)
(-0.008921725532 -0.1387658571 0)
(-0.003356519412 -0.09141032652 0)
(-0.003037820527 -0.09142043701 0)
(-0.002996450574 -0.09110133753 0)
(-0.003327299262 -0.09108743898 0)
(-0.003391067765 -0.0917324535 0)
(-0.003077412078 -0.09174211227 0)
(-0.003720834536 -0.09139752501 0)
(-0.00374731378 -0.09172073508 0)
(-0.004801510625 -0.09136032969 0)
(-0.004813676324 -0.09168547099 0)
(-0.00446335194 -0.09169659119 0)
(-0.004448555142 -0.09137182919 0)
(-0.004851806626 -0.0926586838 0)
(-0.004511303422 -0.0926686683 0)
(-0.004495324575 -0.09234394179 0)
(-0.004839058903 -0.09233355998 0)
(-0.004765128772 -0.0900571436 0)
(-0.004772761707 -0.09038253512 0)
(-0.00442222982 -0.09039314507 0)
(-0.004418284715 -0.09006616542 0)
(-0.004436117018 -0.09104621562 0)
(-0.004790382952 -0.09103455666 0)
(-0.003700370513 -0.09107323346 0)
(-0.003896808639 -0.09398500307 0)
(-0.003865007589 -0.0943135666 0)
(-0.00488995454 -0.09395788315 0)
(-0.004892344036 -0.09428325796 0)
(-0.004545113365 -0.09429380481 0)
(-0.004550551778 -0.0939677145 0)
(-0.004899733306 -0.09525853494 0)
(-0.004530015547 -0.09527101824 0)
(-0.004528840532 -0.09494668798 0)
(-0.004894629337 -0.0949345629 0)
(-0.004864133753 -0.09298460099 0)
(-0.004526429061 -0.09299438134 0)
(-0.004548349515 -0.09364317486 0)
(-0.004884235537 -0.09363362929 0)
(-0.003896966869 -0.09366027245 0)
(-0.0033175413 -0.08878828001 0)
(-0.003677015377 -0.08877606228 0)
(-0.003697558695 -0.0891035945 0)
(-0.003348256913 -0.08911396933 0)
(-0.004724889059 -0.08874768334 0)
(-0.004736094514 -0.08907624667 0)
(-0.004392828674 -0.08908623005 0)
(-0.004380402106 -0.08875760129 0)
(-0.004412884503 -0.08973972794 0)
(-0.00475644666 -0.08973061249 0)
(-0.002956385458 -0.0888020917 0)
(-0.002927874836 -0.08847703283 0)
(-0.003297623467 -0.08846137762 0)
(-0.003001952623 -0.08912456644 0)
(0.004386789683 -0.09290295178 0)
(0.004411026988 -0.09322540264 0)
(0.004754527902 -0.09323595761 0)
(0.004744651057 -0.09291147565 0)
(0.004760767727 -0.09388835934 0)
(0.004448531804 -0.09387501969 0)
(0.0057704105 -0.09392330153 0)
(0.00542791586 -0.09391163571 0)
(0.004172218236 -0.09385999613 0)
(0.004201333264 -0.09415700936 0)
(0.004061788618 -0.09289691607 0)
(0.004101522299 -0.09321490761 0)
(0.004466703445 -0.09158626894 0)
(0.004457885618 -0.09126271964 0)
(0.004117120851 -0.0912510457 0)
(0.004146560437 -0.0915712505 0)
(0.004062599999 -0.09060929557 0)
(0.004435628585 -0.09061512192 0)
(0.004381332029 -0.09257830225 0)
(0.004021614761 -0.09259158324 0)
(0.004137906022 -0.09189865927 0)
(0.004450202474 -0.09191458317 0)
(0.005833278641 -0.09163367085 0)
(0.005490207348 -0.09162300866 0)
(0.005479772627 -0.09195150505 0)
(0.005823648548 -0.09196237157 0)
(0.004787722264 -0.09192772114 0)
(0.004802504138 -0.09160025614 0)
(0.004746102117 -0.09258595256 0)
(-0.003908309844 -0.1017532154 0)
(-0.004197479765 -0.1017457332 0)
(-0.004199347817 -0.1020703429 0)
(-0.003930321829 -0.102073857 0)
(-0.005141345063 -0.1017208738 0)
(-0.005140951617 -0.1020453713 0)
(-0.004812624103 -0.1020546298 0)
(-0.004818352364 -0.101729792 0)
(-0.005112384911 -0.1030182447 0)
(-0.004737039515 -0.1030307168 0)
(-0.004759966897 -0.102705843 0)
(-0.005121131924 -0.1026943372 0)
(-0.005100917887 -0.1004299707 0)
(-0.005113256318 -0.1007524643 0)
(-0.004786857281 -0.1007615448 0)
(-0.004772082154 -0.1004393045 0)
(-0.004812417369 -0.1014061452 0)
(-0.005134991853 -0.1013972996 0)
(-0.003885418169 -0.1014306783 0)
(-0.004181416966 -0.1014228109 0)
(-0.005143293316 -0.1043101544 0)
(-0.005157945445 -0.1046326986 0)
(-0.004786514608 -0.1046449331 0)
(-0.004768744151 -0.1043225425 0)
(-0.005203613655 -0.1055985384 0)
(-0.0048416962 -0.1056101869 0)
(-0.004823023939 -0.1052889644 0)
(-0.005188191726 -0.1052771583 0)
(-0.005111516816 -0.1033417355 0)
(-0.004730812605 -0.1033545487 0)
(-0.004751993737 -0.1040001213 0)
(-0.005129599424 -0.1039875213 0)
(-0.003541981987 -0.096597789 0)
(-0.003857049533 -0.0965881479 0)
(-0.003880318017 -0.09691043342 0)
(-0.003566310712 -0.09691998263 0)
(-0.004945793014 -0.09655281231 0)
(-0.004959049499 -0.09687587893 0)
(-0.004600316373 -0.09688737175 0)
(-0.004584003365 -0.09656451702 0)
(-0.004998608982 -0.09784628622 0)
(-0.004648683606 -0.09785709416 0)
(-0.004632768994 -0.0975335068 0)
(-0.004985510882 -0.09752249417 0)
(-0.004908519013 -0.09558191598 0)
(-0.004538789254 -0.09559439964 0)
(-0.004567777947 -0.09624117921 0)
(-0.004932604315 -0.09622920314 0)
(-0.003516927826 -0.09627543699 0)
(-0.003833395827 -0.09626563371 0)
(-0.003729674912 -0.09917572652 0)
(-0.004035475698 -0.09916708435 0)
(-0.004057389333 -0.09948965079 0)
(-0.003753072409 -0.09949830845 0)
(-0.005050037024 -0.0991373395 0)
(-0.005062883096 -0.09946053855 0)
(-0.004726410256 -0.09947034197 0)
(-0.004710879677 -0.09914734364 0)
(-0.004757026207 -0.1001167123 0)
(-0.00508835624 -0.1001072435 0)
(-0.005011562464 -0.09816966222 0)
(-0.004664361795 -0.09818020818 0)
(-0.004695364719 -0.09882506552 0)
(-0.005037220375 -0.09881492029 0)
(-0.003706503656 -0.09885427887 0)
(-0.004013633488 -0.09884529651 0)
(0.004273035329 -0.1033413917 0)
(0.004248855879 -0.1036682142 0)
(0.004546031931 -0.1036758767 0)
(0.004566944221 -0.1033498569 0)
(0.004498054768 -0.104325209 0)
(0.004198294429 -0.1043168083 0)
(0.005476896082 -0.1043518994 0)
(0.005148179147 -0.1043428093 0)
(0.005167900821 -0.1023878395 0)
(0.005510646315 -0.1023979514 0)
(0.004330626064 -0.1023959088 0)
(0.004537999092 -0.1023701858 0)
(0.004353782612 -0.101957951 0)
(0.004581560434 -0.1030243088 0)
(0.004293390175 -0.103016136 0)
(-0.005348138294 -0.1120592884 0)
(-0.005367507808 -0.1123813306 0)
(-0.005005166136 -0.1123930519 0)
(-0.004982452089 -0.1120712302 0)
(-0.005427535814 -0.1133469794 0)
(-0.005075069937 -0.1133579837 0)
(-0.005051563858 -0.1130361858 0)
(-0.005407356268 -0.1130249614 0)
(-0.005309130117 -0.1107662406 0)
(-0.005304857503 -0.1110905543 0)
(-0.004925436155 -0.1111036893 0)
(-0.004930775012 -0.1107792836 0)
(-0.004960234855 -0.1117491533 0)
(-0.005329749813 -0.1117369164 0)
(-0.005190999512 -0.1149684628 0)
(-0.005168097655 -0.1146465867 0)
(-0.005260410681 -0.115932989 0)
(-0.005237039615 -0.1156114873 0)
(-0.005447746569 -0.1136692366 0)
(-0.005098599423 -0.1136799611 0)
(-0.00514515259 -0.1143244716 0)
(-0.005487858479 -0.1143142408 0)
(-0.005267697934 -0.1068862688 0)
(-0.005283982726 -0.1072085839 0)
(-0.004940442802 -0.1072188397 0)
(-0.004920403063 -0.1068968777 0)
(-0.005332919302 -0.1081754665 0)
(-0.005000783434 -0.1081848995 0)
(-0.00498066389 -0.1078628798 0)
(-0.005316634511 -0.1078531515 0)
(-0.005219353597 -0.1059199089 0)
(-0.004860984684 -0.1059313307 0)
(-0.004900447327 -0.1065749131 0)
(-0.005251468947 -0.1065640121 0)
(-0.005384057513 -0.1094658679 0)
(-0.005379750087 -0.1097898223 0)
(-0.005062335204 -0.1097980925 0)
(-0.005067210851 -0.109474061 0)
(-0.004969321596 -0.1104525594 0)
(-0.005330313211 -0.1104408786 0)
(-0.005348953885 -0.1084978492 0)
(-0.005020694771 -0.1085069856 0)
(-0.005056689288 -0.1091512726 0)
(-0.005376926684 -0.1091427975 0)
(0.003732863302 -0.1150177652 0)
(0.003738125708 -0.1146927169 0)
(0.003377440156 -0.1146792436 0)
(0.003377569541 -0.1150055348 0)
(0.003775753077 -0.1137234527 0)
(0.003436290296 -0.1137142201 0)
(0.003418207232 -0.1140364211 0)
(0.003765530898 -0.114047271 0)
(0.003714944227 -0.115991705 0)
(0.003369993039 -0.115981647 0)
(0.003384390968 -0.1153331681 0)
(0.003730562008 -0.1153432027 0)
(0.002508415998 -0.1153550294 0)
(0.002733403013 -0.1153205265 0)
(0.002600739683 -0.1149016721 0)
(0.003449411423 -0.1120872612 0)
(0.003406506035 -0.1124052936 0)
(0.003543620707 -0.1114527098 0)
(0.003773144996 -0.1133969068 0)
(0.003428592832 -0.1133865605 0)
(0.00338433682 -0.1127267714 0)
(0.0037593923 -0.1127428982 0)
(-0.005859694401 -0.1236676963 0)
(-0.005839713457 -0.1233454922 0)
(-0.006158228188 -0.123337249 0)
(-0.00617005721 -0.1236601783 0)
(-0.006119605562 -0.1226930409 0)
(-0.005790970829 -0.1227020684 0)
(-0.007114541917 -0.1226651465 0)
(-0.006780551973 -0.1226746351 0)
(-0.005490540859 -0.1227103691 0)
(-0.005463626656 -0.1223892741 0)
(-0.005571326711 -0.1236750943 0)
(-0.00554444069 -0.1233533378 0)
(-0.005387260063 -0.1214271188 0)
(-0.005362295923 -0.1211053646 0)
(-0.005437071295 -0.1220691292 0)
(-0.005866112407 -0.1239910283 0)
(-0.005597783621 -0.1239935606 0)
(-0.006795347648 -0.1246157597 0)
(-0.0071497702 -0.1246045165 0)
(-0.005658921785 -0.1247295797 0)
(-0.00607685056 -0.1246390165 0)
(-0.006166559222 -0.1239842886 0)
(-0.00549302956 -0.1185204477 0)
(-0.005498237618 -0.1181962862 0)
(-0.005874706249 -0.11818342 0)
(-0.005870594435 -0.1185074886 0)
(-0.005924269725 -0.1175321796 0)
(-0.005592834084 -0.1175415315 0)
(-0.006953087621 -0.1175014061 0)
(-0.006610891752 -0.1175116216 0)
(-0.005292292472 -0.1175485143 0)
(-0.005328672372 -0.1172220354 0)
(-0.005162011641 -0.1185335106 0)
(-0.005138186833 -0.1182288984 0)
(-0.005283560945 -0.1162547376 0)
(-0.005323891838 -0.1168988344 0)
(-0.005287315896 -0.1201399847 0)
(-0.005262225751 -0.1198182343 0)
(-0.005337331783 -0.1207836105 0)
(-0.005507579685 -0.1188429951 0)
(-0.005186955316 -0.1188529832 0)
(-0.005237135606 -0.119496484 0)
(-0.005551846741 -0.1194869737 0)
(-0.00664818412 -0.1194509296 0)
(-0.007002464468 -0.1194397506 0)
(-0.005915132848 -0.1194751039 0)
(-0.005879979555 -0.1188304312 0)
(0.0005786151886 -0.1235875301 0)
(0.002115969333 -0.1227508626 0)
(0.00176675321 -0.1227392351 0)
(0.001752074088 -0.1230614783 0)
(0.002104542327 -0.123073804 0)
(0.0008029236808 -0.1227212233 0)
(0.0007261610936 -0.123024366 0)
(0.001043727071 -0.1230366045 0)
(0.001090052515 -0.1227216776 0)
(0.001003939225 -0.1236798167 0)
(0.001106765703 -0.1224000961 0)
(0.0008751891773 -0.1224358424 0)
(0.002123436193 -0.1224272017 0)
(0.001772300603 -0.1224150962 0)
(-0.002474817081 -0.1338695323 0)
(-0.001321115155 -0.133341506 0)
(-0.000978652262 -0.133351249 0)
(-0.002293402622 -0.1333228798 0)
(-0.001997352675 -0.1333255238 0)
(-0.002056812104 -0.1339601578 0)
(-0.007397472669 -0.1329938878 0)
(-0.007052592294 -0.133004304 0)
(-0.007164609184 -0.1349360832 0)
(-0.007479459583 -0.1349286106 0)
(-0.006018842852 -0.1288332476 0)
(-0.005990480176 -0.1285117156 0)
(-0.006290401927 -0.1285034902 0)
(-0.00631696033 -0.1288251364 0)
(-0.006236842308 -0.1278604512 0)
(-0.005933441621 -0.1278690213 0)
(-0.007258634526 -0.1278303091 0)
(-0.006917354894 -0.127840437 0)
(-0.007010756639 -0.1297734958 0)
(-0.007332907519 -0.1297651434 0)
(-0.006103249164 -0.129794741 0)
(-0.006389795193 -0.1297878782 0)
(-0.006343099312 -0.129146615 0)
(-0.00604704172 -0.1291547244 0)
(-0.001263686076 -0.1300693066 0)
(-0.008067613718 -0.1433102811 0)
(-0.007754428958 -0.1433166227 0)
(-0.009048880355 -0.1432843587 0)
(-0.008717645119 -0.1432935845 0)
(-0.008923464958 -0.1443057833 0)
(-0.008581901002 -0.1443190427 0)
(-0.008669509378 -0.1439545712 0)
(-0.009005137951 -0.143943652 0)
(-0.005578603354 -0.1445086202 0)
(-0.005527569162 -0.1442024829 0)
(-0.005912466559 -0.1441759109 0)
(-0.006061902011 -0.1444442006 0)
(-0.005795136097 -0.1435693795 0)
(-0.005471271968 -0.1435714774 0)
(-0.007480857213 -0.1433213543 0)
(-0.005376557124 -0.1419482899 0)
(-0.005475694599 -0.1422071596 0)
(-0.005077822643 -0.1422898537 0)
(-0.005057835138 -0.1419690311 0)
(-0.005120540584 -0.1432576438 0)
(-0.005103081002 -0.1429374059 0)
(-0.004122008569 -0.1432745957 0)
(-0.004103128696 -0.1429532594 0)
(-0.004433398046 -0.1429494678 0)
(-0.004449852629 -0.1432712372 0)
(-0.007226795313 -0.1381676015 0)
(-0.00408506947 -0.1385062523 0)
(-0.004003321013 -0.1406992705 0)
(-0.00434290023 -0.1406911154 0)
(-0.004353199206 -0.1410146912 0)
(-0.004014196013 -0.141022829 0)
(-0.005032635306 -0.1416514279 0)
(-0.005276925794 -0.1416881738 0)
(-0.003995061509 -0.140375213 0)
(-0.00433792162 -0.1403655181 0)
(-0.007332864089 -0.140097097 0)
(0.01285917451 -0.08400174479 0)
(0.02225101845 -0.08218511188 3.55396268e-13)
(0.01974441779 -0.08294444715 3.591016373e-13)
(0.01962023527 -0.07398892142 3.535921556e-13)
(0.01975663818 -0.0772971591 3.570893581e-13)
(-9.977815093e-05 -0.1272209408 0)
(-4.467744036e-05 -0.1269095805 0)
(-0.0003297236276 -0.1269105701 0)
(-0.0004149800486 -0.1272093738 0)
(-1.779390134e-05 -0.1265907066 0)
(-0.0002499134922 -0.1266279381 0)
(0.01111473894 -0.1359128237 0)
(0.02006283604 -0.1302223192 3.467365284e-13)
(0.01787099127 -0.1337824863 3.563815909e-13)
(0.01766330237 -0.1355095272 3.54216656e-13)
(0.0181733229 -0.1294120767 3.584355035e-13)
(-0.0001221745497 -0.1261755842 0)
(-0.001421248921 -0.1359235141 0)
(-0.001086465676 -0.1359306243 0)
(-0.002102519383 -0.1359050386 0)
(-0.002139906744 -0.13687437 0)
(-0.002129151749 -0.1365508079 0)
(0.005343247097 -0.1273666688 0)
(0.005837675298 -0.131901253 0)
(0.005891483007 -0.1306113522 0)
(0.004536262351 -0.1305758221 0)
(0.00991827905 -0.1320092529 0)
(0.009971244923 -0.1307193869 0)
(0.008611741298 -0.1306834879 0)
(0.008558840833 -0.1319731757 0)
(4.646591653e-05 -0.08327299107 0)
(-0.0003745875761 -0.08326828704 0)
(-0.0004328091315 -0.08359641747 0)
(1.832733248e-05 -0.08359301036 0)
(-0.001610135176 -0.08332355267 0)
(-0.001646136067 -0.08366045198 0)
(-0.001234526441 -0.08362305505 0)
(-0.00119382854 -0.0832899362 0)
(-0.001357519716 -0.08432096905 0)
(-0.001726697419 -0.08434850085 0)
(0.00175742952 -0.08444553266 0)
(0.001374725976 -0.08439690115 0)
(0.001695549326 -0.08339326287 0)
(0.001310089625 -0.0833610167 0)
(0.001309222167 -0.08369230474 0)
(0.001702351111 -0.08373015025 0)
(0.0004847462135 -0.08361876919 0)
(0.0004933897215 -0.08329514365 0)
(0.0115770227 -0.08003388068 0)
(0.01019319784 -0.07996392604 0)
(0.01017166736 -0.08127893281 0)
(0.01154807244 -0.08133798058 0)
(0.007396284687 -0.08113054555 0)
(0.007392690322 -0.07979624487 0)
(0.006673898282 -0.08441341047 0)
(0.005900081912 -0.08901119269 0)
(0.005556551861 -0.08899980806 0)
(0.005547868073 -0.08932619499 0)
(0.005891487697 -0.0893379967 0)
(0.004849216582 -0.0893070414 0)
(0.004859820337 -0.08897831587 0)
(0.004812307979 -0.09029556929 0)
(0.004826000092 -0.08996579543 0)
(-0.007358828831 -0.1081163736 0)
(-0.007378037683 -0.1087620655 0)
(-0.006699457177 -0.1087820218 0)
(-0.009398525107 -0.108056206 0)
(-0.009417313943 -0.1087019106 0)
(-0.008737175174 -0.1087219737 0)
(-0.008718266334 -0.1080762727 0)
(-0.009473694863 -0.1106395043 0)
(-0.008793736102 -0.1106595619 0)
(-0.008774876453 -0.1100134992 0)
(-0.009454895217 -0.1099934397 0)
(-0.009323240208 -0.1054750733 0)
(-0.009342054812 -0.106119636 0)
(-0.008661497828 -0.1061397717 0)
(-0.008642623221 -0.1054952107 0)
(-0.008699359295 -0.1074306317 0)
(-0.00937967627 -0.1074105033 0)
(-0.006660141237 -0.1074907249 0)
(-0.007339561777 -0.1074707434 0)
(0.0004386146734 -0.131770418 0)
(0.000450876903 -0.131447862 0)
(0.0001131793669 -0.1314396433 0)
(0.0001020679778 -0.1317624741 0)
(0.0001327452936 -0.1307918601 0)
(0.0004736787305 -0.130801317 0)
(-0.000563523872 -0.1307689705 0)
(0.001964574941 -0.1272817887 0)
(0.002638637958 -0.127298186 0)
(0.002562222198 -0.1292357787 0)
(0.002588089522 -0.1285903467 0)
(0.004588954015 -0.1292858878 0)
(0.004614832728 -0.1286408766 0)
(0.003938051616 -0.1286237971 0)
(0.003912507114 -0.1292688784 0)
(-0.008851370544 -0.1365069 0)
(-0.008860131604 -0.1368286602 0)
(-0.008519910411 -0.1368386362 0)
(-0.008509712896 -0.1365170392 0)
(-0.008542861582 -0.1374829546 0)
(-0.008880509876 -0.1374732961 0)
(-0.007854693294 -0.1375036191 0)
(0.004803278397 -0.09062407184 0)
(0.004804589422 -0.09127481214 0)
(0.005841503452 -0.09130576872 0)
(0.005498250945 -0.09129534132 0)
(-0.009492508923 -0.1112860489 0)
(-0.008812610164 -0.1113061047 0)
(-0.008850322254 -0.1125979903 0)
(-0.009529921001 -0.1125779434 0)
(-0.006809199721 -0.1126582607 0)
(-0.007490884751 -0.1126380912 0)
(-0.006788683426 -0.1120130284 0)
(-0.006441556562 -0.1120236322 0)
(-0.006430687579 -0.1117006741 0)
(-0.006777772442 -0.1116900715 0)
(-0.005705142003 -0.1117242026 0)
(-0.00571989374 -0.112046864 0)
(-0.005684430502 -0.1107534696 0)
(-0.00568471267 -0.1110774663 0)
(-0.005692185062 -0.1104291114 0)
(-0.005710004136 -0.1094569211 0)
(-0.005710363695 -0.1097804951 0)
(-0.006718246012 -0.1094277263 0)
(-0.006726923103 -0.1097506902 0)
(-0.006387165732 -0.1097607124 0)
(-0.00637972289 -0.1094376514 0)
(-0.007801868035 -0.1352444358 0)
(-0.007793184049 -0.1355692423 0)
(-0.008818818666 -0.1352148595 0)
(-0.008826062904 -0.1355381066 0)
(-0.008487219967 -0.1355479812 0)
(-0.008481712196 -0.1352245618 0)
(-0.008500508395 -0.1361945116 0)
(-0.008841687825 -0.1361844467 0)
(-0.001557984741 -0.1317295615 0)
(-0.001586620909 -0.1320468813 0)
(-0.001627450103 -0.1323611324 0)
(-0.001281826895 -0.1323715109 0)
(-0.0009384657655 -0.132381281 0)
(-0.00676384285 -0.1365737888 0)
(-0.006732409934 -0.1362554119 0)
(-0.006702196071 -0.1359512318 0)
(-0.007053335894 -0.1359190673 0)
(-0.007421628586 -0.1359063265 0)
(-0.000907037644 -0.1310860237 0)
(-0.001243760749 -0.1310781346 0)
(-0.001569523341 -0.1310542392 0)
(-0.001652034226 -0.1313169113 0)
(-0.0006248115351 -0.1330369682 0)
(-0.0006115406351 -0.1327134216 0)
(0.0003844955804 -0.1330592885 0)
(0.0003985254861 -0.1327366655 0)
(6.307262019e-05 -0.1327292949 0)
(4.881110158e-05 -0.1330520311 0)
(8.95345472e-05 -0.1320846616 0)
(0.0004257812304 -0.1320925964 0)
(-0.007672413701 -0.142353556 0)
(-0.007379755818 -0.1423604822 0)
(-0.007480998439 -0.1371930575 0)
(-0.007132886939 -0.137203871 0)
(-0.006829635646 -0.1372120162 0)
(-0.00679532438 -0.1368925846 0)
(-0.007554705949 -0.1410720601 0)
(-0.007239940879 -0.1410839743 0)
(0.003127197446 -0.08694561046 0)
(0.002686607136 -0.08701512023 0)
(0.002221301276 -0.1182099052 0)
(0.001897367268 -0.1181963344 0)
(-0.0001780803519 -0.1291571555 0)
(-0.0001697626471 -0.1288331599 0)
(-0.0001524830384 -0.1285117155 0)
(-0.0004927630603 -0.1285026986 0)
(-0.0007917938884 -0.1284985237 0)
(0.0009596824632 -0.1269320525 0)
(0.0009715270893 -0.1266090035 0)
(0.0009164124824 -0.1279004265 0)
(0.00092910435 -0.1275771628 0)
(0.001939416223 -0.1279280226 0)
(0.001952080487 -0.1276048782 0)
(0.001613811125 -0.1275967024 0)
(0.001600976458 -0.1279197216 0)
(-0.003557119915 -0.09334551136 0)
(-0.003257368585 -0.0933542121 0)
(0.008615206885 -0.08976007785 0)
(0.007932905321 -0.08973804005 0)
(0.008664825679 -0.08779567604 0)
(0.007981674528 -0.08777193114 0)
(0.007965262922 -0.08842646933 0)
(0.008648388128 -0.08845107827 0)
(0.006598952689 -0.08837724366 0)
(0.006613735212 -0.08771895706 0)
(0.001684775143 -0.1256560633 0)
(0.002024189328 -0.1256651143 0)
(0.001000063575 -0.1256362833 0)
(0.0009805474348 -0.1262846086 0)
(-0.003160151 -0.1368478777 0)
(-0.003145045877 -0.1365262479 0)
(-0.003391651203 -0.1365608824 0)
(-0.00348397374 -0.1368250015 0)
(-0.003235529393 -0.1361129241 0)
(-0.003733200413 -0.1375333319 0)
(-0.003489194368 -0.1374976585 0)
(-0.00357526653 -0.137085428 0)
(-0.003171550659 -0.1374983084 0)
(-0.003171058993 -0.137171135 0)
(0.006008127884 -0.0823960529 0)
(0.005307452408 -0.08235070191 0)
(0.005308010426 -0.08301971884 0)
(0.00599954075 -0.08305402106 0)
(0.003893690629 -0.08291490451 0)
(0.003880631007 -0.0822402152 0)
(0.003552641381 -0.0845781043 0)
(0.003126063569 -0.08828357075 0)
(0.003464946624 -0.08827730934 0)
(0.003816300691 -0.08828913911 0)
(0.003828948669 -0.08795833695 0)
(0.003842088808 -0.08762474492 0)
(0.003643003722 -0.09034786342 0)
(0.003778742443 -0.08993150139 0)
(0.00354048016 -0.08988149642 0)
(0.003777829678 -0.08960689825 0)
(0.003473764289 -0.08959386401 0)
(0.002170534116 -0.1208083498 0)
(0.001827234797 -0.1207982813 0)
(0.001508013126 -0.1207939806 0)
(0.001493632809 -0.121116473 0)
(0.001449139226 -0.1214319954 0)
(0.001665411341 -0.1192153155 0)
(0.00159940638 -0.1195052084 0)
(0.001884819143 -0.1195056112 0)
(0.002213917765 -0.1195121903 0)
(0.003530422498 -0.1214974355 0)
(0.003541488299 -0.1211741229 0)
(0.003201699107 -0.1211647604 0)
(0.003190739509 -0.1214881363 0)
(0.003222009031 -0.1205182007 0)
(0.003563250877 -0.120527787 0)
(0.002525058234 -0.1204954107 0)
(0.00219864109 -0.1168381332 0)
(0.002619550781 -0.1169290261 0)
(0.002975316743 -0.1169419312 0)
(0.00297892371 -0.1166158123 0)
(0.002998649074 -0.1162925195 0)
(-0.0008773555095 -0.1297877112 0)
(-0.0005372890845 -0.1297963013 0)
(-0.0001874105376 -0.1298080688 0)
(-0.0001803540575 -0.1294830743 0)
(-0.003317324843 -0.09076187154 0)
(-0.002955030612 -0.09079617268 0)
(-0.002848538262 -0.0900699714 0)
(-0.003426080516 -0.09205384585 0)
(-0.003115016324 -0.09206300641 0)
(-0.003775652472 -0.09204286835 0)
(-0.004128359549 -0.09203149643 0)
(-0.004150021786 -0.09235449081 0)
(-0.004171316239 -0.09267863731 0)
(-0.003389069367 -0.09473630294 0)
(-0.003811469499 -0.0946446446 0)
(-0.00417300593 -0.09463270726 0)
(-0.004153365545 -0.09495964444 0)
(-0.004150371595 -0.0952843401 0)
(-0.004191213264 -0.09300384673 0)
(-0.004207912735 -0.09332837143 0)
(-0.003881435083 -0.09333703392 0)
(-0.004680303221 -0.08742888867 0)
(-0.004691390234 -0.08775970767 0)
(-0.004348112394 -0.08776969141 0)
(-0.004337639551 -0.08743832547 0)
(-0.004368399125 -0.08842787879 0)
(-0.004712967018 -0.08841785632 0)
(-0.003661764746 -0.08844798677 0)
(-0.003294942275 -0.08813088875 0)
(-0.002933793983 -0.08814435188 0)
(-0.002508872952 -0.0882376594 0)
(-0.002633754428 -0.08781005417 0)
(-0.002624442226 -0.08747913983 0)
(-0.002801180854 -0.08977267809 0)
(-0.002748315418 -0.08945495677 0)
(-0.003047121446 -0.08944757564 0)
(-0.003377759268 -0.08943945485 0)
(-0.003949819031 -0.1023705516 0)
(-0.004158938759 -0.1023972431 0)
(-0.003978614604 -0.1028080999 0)
(-0.004459159945 -0.1023897895 0)
(-0.004399880111 -0.1027172563 0)
(-0.004358701799 -0.1030433388 0)
(-0.003996671528 -0.1030758303 0)
(-0.00444648715 -0.1004483609 0)
(-0.004464404603 -0.1007704468 0)
(-0.004481624822 -0.1010923134 0)
(-0.004161550639 -0.1011010238 0)
(-0.003862638136 -0.1011094591 0)
(-0.004442000386 -0.1049787429 0)
(-0.004462962957 -0.1053004371 0)
(-0.004148291427 -0.1053100663 0)
(-0.004126380817 -0.1049884006 0)
(-0.004484269326 -0.1056215804 0)
(-0.004170319627 -0.105631248 0)
(-0.004350522412 -0.1033673494 0)
(-0.004017214795 -0.1033803609 0)
(-0.004362070017 -0.103690107 0)
(-0.00403879534 -0.1037002348 0)
(-0.003591026446 -0.09724186436 0)
(-0.003903652503 -0.09723271696 0)
(-0.004257982655 -0.09722159658 0)
(-0.004277850818 -0.09754464483 0)
(-0.004297198166 -0.09786794895 0)
(-0.00416088777 -0.09560754907 0)
(-0.004178092418 -0.09593049713 0)
(-0.003809493102 -0.09594282672 0)
(-0.003490817605 -0.09595251612 0)
(-0.003775393483 -0.09982164339 0)
(-0.004078693356 -0.09981271598 0)
(-0.004410045589 -0.09980318644 0)
(-0.00442834648 -0.1001260415 0)
(-0.004316190888 -0.09819084332 0)
(-0.004334959186 -0.09851326398 0)
(-0.003992219097 -0.09852355588 0)
(-0.003684188633 -0.09853274545 0)
(-0.005767869665 -0.1130133551 0)
(-0.00578421446 -0.1133356684 0)
(-0.005735566507 -0.1123691974 0)
(-0.006798232949 -0.112335846 0)
(-0.006452542541 -0.1123462866 0)
(-0.00652034312 -0.114283177 0)
(-0.00686082472 -0.1142730731 0)
(-0.005833187071 -0.1143037511 0)
(-0.00580058866 -0.1136581609 0)
(-0.005653743377 -0.107843329 0)
(-0.005666949447 -0.1081659166 0)
(-0.005614022567 -0.1068757492 0)
(-0.005627250836 -0.1071982761 0)
(-0.006640395965 -0.1068451692 0)
(-0.006650209499 -0.1071679788 0)
(-0.006310098113 -0.1071780116 0)
(-0.006299804559 -0.1068552164 0)
(-0.004622321235 -0.1075507761 0)
(-0.004645705509 -0.1078725176 0)
(-0.004341194181 -0.1078813012 0)
(-0.004316509656 -0.1075596588 0)
(-0.004669151586 -0.1081943173 0)
(-0.004366010711 -0.1082029397 0)
(-0.004506762537 -0.1059424478 0)
(-0.004194436491 -0.1059515862 0)
(-0.004529595977 -0.1062638456 0)
(-0.004218635591 -0.1062730631 0)
(-0.004724013832 -0.1101315362 0)
(-0.004548032088 -0.1105434037 0)
(-0.004513553618 -0.1101038039 0)
(-0.004692535859 -0.1085160589 0)
(-0.004390835044 -0.108524638 0)
(-0.004715621922 -0.1088378694 0)
(-0.004415645574 -0.1088462766 0)
(-0.006370949795 -0.1091146903 0)
(-0.006709150706 -0.109104835 0)
(-0.005703005312 -0.1091338467 0)
(-0.005679957509 -0.1084885103 0)
(0.003035356086 -0.114343705 0)
(0.0030771406 -0.1140265999 0)
(0.002772283026 -0.1140189469 0)
(0.002711792292 -0.1143302054 0)
(0.003113668337 -0.1137079555 0)
(0.002832759957 -0.1137077481 0)
(0.003026997931 -0.1159716477 0)
(0.003048786121 -0.1156504588 0)
(0.002729499076 -0.1156451352 0)
(0.002449197316 -0.1156451261 0)
(0.003112482314 -0.1133814524 0)
(0.002888801585 -0.1134148534 0)
(0.002972324676 -0.1129623729 0)
(0.004840567549 -0.1127822706 0)
(0.005184731499 -0.1127925452 0)
(0.00412914839 -0.112757905 0)
(0.004123022758 -0.1137337004 0)
(0.004125512455 -0.1134083887 0)
(-0.008784810513 -0.1339223222 0)
(-0.008794091232 -0.1342453881 0)
(-0.008459617664 -0.1342547711 0)
(-0.008450096935 -0.1339317125 0)
(-0.008475664404 -0.1349011586 0)
(-0.008811036207 -0.1348916885 0)
(-0.00780701728 -0.1349199157 0)
(-0.00772691252 -0.1326622722 0)
(-0.007741184798 -0.1329835667 0)
(-0.008747217884 -0.1326324149 0)
(-0.008756460766 -0.1329542208 0)
(-0.008419892517 -0.1329638469 0)
(-0.008409931407 -0.1326421227 0)
(-0.008440157991 -0.1336087264 0)
(-0.008775409789 -0.1335992599 0)
(-0.006801243416 -0.1339763001 0)
(-0.006771527098 -0.1336552892 0)
(-0.006741445972 -0.1333345295 0)
(-0.007077415998 -0.1333249814 0)
(-0.007416566749 -0.1333151576 0)
(-0.007480089453 -0.1346045865 0)
(-0.007163830798 -0.1346121614 0)
(-0.006854720222 -0.1346189811 0)
(-0.006829835292 -0.1342974648 0)
(-0.001176305941 -0.129783779 0)
(-0.007745129989 -0.143642949 0)
(-0.008058574579 -0.1436372603 0)
(-0.008381374693 -0.1436291287 0)
(-0.008335571685 -0.1439657999 0)
(-0.008239136453 -0.1443343201 0)
(-0.006415273296 -0.1444321481 0)
(-0.006301041413 -0.1441034054 0)
(-0.006608069548 -0.1444662363 0)
(-0.007498909749 -0.1436461386 0)
(-0.004466373776 -0.1435916234 0)
(-0.00413975137 -0.1435950653 0)
(-0.005134178638 -0.1435790173 0)
(-0.005229263656 -0.1445213324 0)
(-0.005181860174 -0.1442137047 0)
(-0.007029260166 -0.1391350989 0)
(-0.006995907154 -0.1388161791 0)
(-0.006963697164 -0.1384963241 0)
(-0.007257141657 -0.1384885935 0)
(-0.007583628914 -0.1384800508 0)
(-0.003891621184 -0.1387762501 0)
(-0.004183539999 -0.1387751114 0)
(-0.004546491902 -0.139761512 0)
(-0.004644456983 -0.1400223388 0)
(-0.004321728073 -0.1400446416 0)
(-0.003982948096 -0.1400530129 0)
(-0.007650887289 -0.1397664848 0)
(-0.007357463721 -0.1397715123 0)
(-0.007097171627 -0.139772482 0)
(-0.00706365185 -0.1394550085 0)
(-0.003662923978 -0.1407079906 0)
(-0.003651450177 -0.1403852908 0)
(-0.002664205989 -0.1407261492 0)
(-0.002646554994 -0.140405737 0)
(-0.002977136322 -0.1404007348 0)
(-0.002994195095 -0.1407212249 0)
(-0.002944812783 -0.1397572984 0)
(-0.002611843985 -0.1397633932 0)
(-0.0001540474479 -0.1278586134 0)
(-0.0001440982879 -0.1275350871 0)
(-0.00049966201 -0.127499847 0)
(0.00024812453 -0.1272321084 0)
(0.0005977336777 -0.1272434473 0)
(-0.001846195871 -0.08543583052 0)
(-0.001547401067 -0.08541358541 0)
(-0.0009981423988 -0.08468520907 0)
(0.0006448025996 -0.1259501612 0)
(0.0002983411678 -0.1259393972 0)
(-4.638138332e-05 -0.1259071251 0)
(0.0001100511585 -0.1253346188 0)
(3.319316136e-05 -0.1256167388 0)
(0.003198388999 -0.08354399404 0)
(0.002838101254 -0.08351387303 0)
(0.002844200838 -0.08385474511 0)
(0.003200064068 -0.08388021099 0)
(0.002100892785 -0.0837799414 0)
(0.002091652136 -0.08343887291 0)
(0.002125018576 -0.08448730588 0)
(0.004750620505 -0.1000950814 0)
(0.004784513096 -0.0997705925 0)
(0.004420627527 -0.09978128601 0)
(0.004415902661 -0.1000880332 0)
(0.004850203443 -0.09944537687 0)
(0.004725537309 -0.1007442003 0)
(0.004735105496 -0.1004191612 0)
(0.004409555518 -0.1004092053 0)
(0.004402335213 -0.1007348555 0)
(0.004354593706 -0.09616654006 0)
(0.004662920562 -0.09617645921 0)
(0.005007572928 -0.09618686859 0)
(0.004999076769 -0.09586140713 0)
(0.004991883258 -0.09553616496 0)
(0.005022026513 -0.09683873622 0)
(0.005015544652 -0.09651279475 0)
(0.003967171008 -0.1065788653 0)
(0.004284680655 -0.1065885798 0)
(0.004647009102 -0.1066011415 0)
(0.004672083099 -0.1062775288 0)
(0.004698639157 -0.1059539607 0)
(0.004623042581 -0.107249273 0)
(0.004628235976 -0.1069245229 0)
(0.004269402847 -0.09488856053 0)
(0.004630560156 -0.09487592335 0)
(0.005001830313 -0.09488370879 0)
(0.005029592557 -0.09455537238 0)
(0.005063985072 -0.09422723506 0)
(0.004990428397 -0.09521061466 0)
(0.004108964617 -0.1052886638 0)
(0.004413717162 -0.1052972145 0)
(0.004751449459 -0.1053068755 0)
(0.004776267264 -0.1049825946 0)
(0.004800134616 -0.1046587656 0)
(0.004725296607 -0.1056308161 0)
(0.004714105235 -0.1013951105 0)
(0.004717628199 -0.101068989 0)
(0.004393102479 -0.1010585234 0)
(0.004379932971 -0.1013824934 0)
(0.004774459483 -0.1020491972 0)
(0.004728955026 -0.1017217837 0)
(0.004367407155 -0.1016900273 0)
(-0.005717237137 -0.1217395938 0)
(-0.006056940507 -0.1217295733 0)
(-0.006398926366 -0.1217193641 0)
(-0.006415508145 -0.1220407694 0)
(-0.006432280129 -0.1223621089 0)
(-0.005734965371 -0.1256211782 0)
(-0.006053663662 -0.1256112479 0)
(-0.00642388364 -0.1255986895 0)
(-0.006441821491 -0.1259206547 0)
(-0.006462670651 -0.126242172 0)
(-0.006415685835 -0.1249524868 0)
(-0.006412905463 -0.125276095 0)
(-0.001880761574 -0.1320441745 0)
(-0.001970482395 -0.1323292715 0)
(-0.001793688901 -0.1317674661 0)
(-0.001645649226 -0.1330108184 0)
(-0.00164304908 -0.1326839486 0)
(-0.00662670535 -0.1320532448 0)
(-0.006654169774 -0.1323742632 0)
(-0.006347419759 -0.1323832942 0)
(-0.006317491035 -0.1320624098 0)
(-0.006682270802 -0.1326944818 0)
(-0.00637725185 -0.1327031606 0)
(-0.006581813079 -0.1314096453 0)
(-0.006600982187 -0.1317318137 0)
(-0.006287423099 -0.1317412894 0)
(-0.006257366025 -0.1314223307 0)
(-0.006838188087 -0.135268629 0)
(-0.00667538953 -0.1356817221 0)
(-0.006631278166 -0.1352389284 0)
(-0.005847555576 -0.1269050499 0)
(-0.006156127269 -0.1268960843 0)
(-0.006507403296 -0.1268850556 0)
(-0.006530171345 -0.1272068757 0)
(-0.006552951395 -0.1275286955 0)
(-0.006484798459 -0.1265634709 0)
(-0.0066156709 -0.1307585763 0)
(-0.006582348746 -0.1310856841 0)
(-0.006228690621 -0.1311179842 0)
(-0.006203305544 -0.1308486121 0)
(-0.006696784795 -0.1301036259 0)
(-0.006666213134 -0.1304299304 0)
(-0.001485294429 -0.1307860935 0)
(-0.008703751549 -0.1446529017 0)
(-0.008352587199 -0.1446664494 0)
(-0.00867379481 -0.1455912843 0)
(-0.008327508507 -0.1455992804 0)
(-0.008312756753 -0.1452760185 0)
(-0.00866092115 -0.1452685665 0)
(-0.007303097718 -0.1456060191 0)
(-0.00727958523 -0.1452698078 0)
(-0.007615095548 -0.1452783505 0)
(-0.00763768376 -0.1456061817 0)
(-0.008004502179 -0.1423445448 0)
(-0.008342748696 -0.1423348082 0)
(-0.008362570029 -0.142656897 0)
(-0.008379638456 -0.1429793086 0)
(-0.005406732047 -0.1426155732 0)
(-0.005651099365 -0.1426532777 0)
(-0.006984406346 -0.1456059798 0)
(-0.006997722778 -0.1452476428 0)
(-0.005946676418 -0.1456629654 0)
(-0.005949469215 -0.145333171 0)
(-0.006309489607 -0.1453079466 0)
(-0.006299082649 -0.1456433748 0)
(-0.006080511226 -0.1447851235 0)
(-0.005710097812 -0.1447896401 0)
(-0.006898206063 -0.1378539438 0)
(-0.006864549368 -0.1375325107 0)
(0.002380813861 -0.08631182796 0)
(0.002499407886 -0.08656201745 0)
(0.002007376532 -0.08563101354 0)
(0.002452375018 -0.08556890299 0)
(0.002464054013 -0.08521376984 0)
(0.002475982668 -0.08486092256 0)
(0.002458791713 -0.08589921463 0)
(0.00214941141 -0.08586957731 0)
(-0.0001449375636 -0.1281876366 0)
(-0.002188945781 -0.08544606566 0)
(-0.002534513821 -0.08544755002 0)
(-0.002552635065 -0.08579162248 0)
(-0.00257215832 -0.08613118464 0)
(-0.002585205686 -0.08681268716 0)
(-0.002595525215 -0.08715014745 0)
(-0.002248895701 -0.08718371395 0)
(-0.002166407395 -0.08690469378 0)
(-0.002327806308 -0.08748438986 0)
(-0.00258502808 -0.08646877254 0)
(0.0006545706395 -0.1246468666 0)
(0.0003064591728 -0.1246136519 0)
(-0.002399733536 -0.1349313049 0)
(-0.002803522857 -0.1348456706 0)
(-0.002955950333 -0.1352944004 0)
(-0.003048799956 -0.1355678726 0)
(-0.002467318848 -0.1362150266 0)
(-0.002819946086 -0.1362023959 0)
(-0.003144515539 -0.1358497866 0)
(-0.003192273426 -0.1381458167 0)
(-0.003179046347 -0.1378229293 0)
(-0.003562266914 -0.1387815157 0)
(-0.003226853041 -0.1387885847 0)
(-0.003206436544 -0.1384686759 0)
(0.003770533595 -0.08895567194 0)
(0.003799077461 -0.08861990598 0)
(0.004481072027 -0.08962796736 0)
(0.004124131591 -0.08961877449 0)
(0.003761254671 -0.08928527804 0)
(0.003403154859 -0.08929969463 0)
(0.004424882662 -0.09877078181 0)
(0.004693326966 -0.09878346709 0)
(0.004992169812 -0.09879382213 0)
(0.00501937155 -0.0984683516 0)
(0.005029708398 -0.09814231459 0)
(0.004931714077 -0.09911931506 0)
(0.004405701245 -0.09746896011 0)
(0.004705892957 -0.09747899531 0)
(0.005030740276 -0.09748995105 0)
(0.00502714093 -0.09716421624 0)
(0.005032093116 -0.09781609885 0)
(0.003926634031 -0.109186025 0)
(0.004270125953 -0.1091962795 0)
(0.00461590696 -0.1092069029 0)
(0.00463830602 -0.1088841709 0)
(0.004656057949 -0.1085591973 0)
(0.003618641354 -0.1091773771 0)
(0.003847380415 -0.1104773238 0)
(0.003426574547 -0.1103857734 0)
(0.003352749674 -0.1108378845 0)
(0.003301173963 -0.1111332555 0)
(0.004014280327 -0.1078902339 0)
(0.003798074783 -0.1079210968 0)
(0.004319532183 -0.1078955564 0)
(0.004653284532 -0.1079045575 0)
(0.004634721828 -0.1075763314 0)
(0.004662734067 -0.1082322697 0)
(0.001453967243 -0.1201080131 0)
(0.001388169281 -0.1203770125 0)
(0.001277495651 -0.1208294585 0)
(0.001207378209 -0.121116105 0)
(0.001132425878 -0.1214199626 0)
(0.001526426855 -0.1198117678 0)
(0.00297493833 -0.1175929331 0)
(0.002978920865 -0.117268507 0)
(-0.004217262656 -0.09397694186 0)
(-0.004199649164 -0.09430417851 0)
(-0.004218409125 -0.0936521215 0)
(-0.002630816807 -0.08881582569 0)
(-0.002566709946 -0.08851254322 0)
(-0.002401655554 -0.0877755126 0)
(-0.002692073886 -0.08913320494 0)
(0.004437261134 -0.09354935481 0)
(0.004764472517 -0.09356158267 0)
(0.005099107429 -0.09357319265 0)
(0.005099909884 -0.09324686935 0)
(0.005099736084 -0.09292105723 0)
(0.005089147968 -0.09390026195 0)
(0.004140487201 -0.09353810099 0)
(0.004442195078 -0.09094004497 0)
(0.004081424775 -0.09093179409 0)
(0.00375582547 -0.09092628092 0)
(0.003811459328 -0.09124036579 0)
(0.003865296138 -0.09155349585 0)
(0.00369873087 -0.09062424158 0)
(0.004409374533 -0.09224823261 0)
(0.0039839614 -0.09231491303 0)
(0.003914416023 -0.09184990865 0)
(-0.004505359662 -0.1017379295 0)
(-0.004498274751 -0.1020629882 0)
(-0.004496681959 -0.1014145452 0)
(-0.004400507841 -0.1043345609 0)
(-0.004421159011 -0.1046566848 0)
(-0.004104447397 -0.1046663753 0)
(-0.004082560177 -0.1043442885 0)
(-0.004380376892 -0.1040123614 0)
(-0.004060672956 -0.1040222017 0)
(-0.004217852744 -0.09657659291 0)
(-0.004237938701 -0.09689909412 0)
(-0.004197710372 -0.09625361295 0)
(-0.004372562365 -0.09915732256 0)
(-0.004391447677 -0.09948003998 0)
(-0.004353684872 -0.09883526552 0)
(0.004223622272 -0.1039919421 0)
(0.004522678781 -0.1040003817 0)
(0.004844276431 -0.1040089578 0)
(0.004863664625 -0.1036840934 0)
(0.004879561899 -0.1033582834 0)
(0.004823050955 -0.1043340072 0)
(0.004313471287 -0.1026951961 0)
(0.004581396833 -0.102698557 0)
(0.004878772694 -0.1027061655 0)
(0.004836936207 -0.1023782014 0)
(0.004887523244 -0.1030323552 0)
(-0.005387290131 -0.1127031203 0)
(-0.005028168791 -0.1127146848 0)
(-0.004714357692 -0.1127241681 0)
(-0.004690120789 -0.1124026323 0)
(-0.004666024288 -0.1120809722 0)
(-0.004764089749 -0.1133671418 0)
(-0.004739207216 -0.1130455053 0)
(-0.005313993026 -0.1114139849 0)
(-0.004939697079 -0.1114266056 0)
(-0.004617752655 -0.1114366334 0)
(-0.00459301598 -0.1111168543 0)
(-0.004569105962 -0.1108120044 0)
(-0.00464190858 -0.1117590725 0)
(-0.005547324282 -0.1152805671 0)
(-0.005213930163 -0.1152900979 0)
(-0.004910578685 -0.1152989067 0)
(-0.004886459985 -0.1149773074 0)
(-0.004862322077 -0.1146554683 0)
(-0.004959898509 -0.1159413523 0)
(-0.004934954784 -0.115620078 0)
(-0.005467890726 -0.113991676 0)
(-0.005122058113 -0.1140021809 0)
(-0.004813898041 -0.1140112542 0)
(-0.004788979489 -0.1136890183 0)
(-0.004838168566 -0.1143335097 0)
(-0.004575754895 -0.1069072268 0)
(-0.004599020966 -0.107229032 0)
(-0.004291937334 -0.1072379529 0)
(-0.004267360813 -0.1069163072 0)
(-0.005300303519 -0.1075308979 0)
(-0.004960532345 -0.1075408604 0)
(-0.004552576432 -0.1065855392 0)
(-0.004242844295 -0.1065946597 0)
(-0.004755991214 -0.1094818449 0)
(-0.004760683546 -0.1098051087 0)
(-0.004490511494 -0.1098080566 0)
(-0.004465708851 -0.1094894806 0)
(-0.005359209614 -0.1101149848 0)
(-0.005026067506 -0.110124508 0)
(-0.005364122631 -0.1088201978 0)
(-0.005039842275 -0.1088290345 0)
(-0.004737698141 -0.1091596502 0)
(-0.004440662509 -0.109167789 0)
(0.003021242547 -0.1149929131 0)
(0.003011391012 -0.1146645883 0)
(0.002653586784 -0.1146297614 0)
(0.003046145625 -0.1153243925 0)
(0.003840104297 -0.1117800326 0)
(0.003497442806 -0.1117699232 0)
(0.003190636375 -0.111761371 0)
(0.0031349661 -0.1120776988 0)
(0.003077760442 -0.1123911579 0)
(0.003246112211 -0.1114461183 0)
(0.003762150405 -0.113068848 0)
(0.003397540709 -0.1130546563 0)
(0.00302228022 -0.1126917567 0)
(-0.005815887562 -0.1230236438 0)
(-0.006140071319 -0.1230149902 0)
(-0.006464931302 -0.1230062561 0)
(-0.00647854119 -0.1233288917 0)
(-0.006486493458 -0.1236521176 0)
(-0.006448982524 -0.122683931 0)
(-0.005517483874 -0.1230318236 0)
(-0.005412204995 -0.1217486333 0)
(-0.005831501985 -0.1243176343 0)
(-0.005622361213 -0.1242894419 0)
(-0.0061319668 -0.124310894 0)
(-0.006463506248 -0.124301599 0)
(-0.006435664086 -0.1246274012 0)
(-0.006483055473 -0.1239762261 0)
(-0.005536515993 -0.1178696301 0)
(-0.005117174763 -0.1179603558 0)
(-0.005082784496 -0.1175206934 0)
(-0.005059642764 -0.1172248289 0)
(-0.005623037651 -0.1165683687 0)
(-0.005305624569 -0.116576699 0)
(-0.005009847186 -0.1165847399 0)
(-0.004984866848 -0.1162630463 0)
(-0.005034815525 -0.1169064338 0)
(-0.005622708202 -0.1204525974 0)
(-0.005312359841 -0.1204617965 0)
(-0.005528817077 -0.1191650413 0)
(-0.005212047263 -0.1191747936 0)
(0.0006498247785 -0.1233185129 0)
(0.00100720117 -0.1233539877 0)
(0.001374353118 -0.1233701174 0)
(0.001396485125 -0.1230488788 0)
(0.001421178608 -0.122728738 0)
(0.001369681504 -0.1240218912 0)
(0.001367458645 -0.1236951167 0)
(0.001412373107 -0.1220751782 0)
(0.001414138577 -0.1217497847 0)
(0.001057740208 -0.1217149399 0)
(0.0009897209651 -0.1219835123 0)
(0.001427489833 -0.122404562 0)
(-0.00238689813 -0.1336054611 0)
(-0.002040887939 -0.1336382523 0)
(-0.001688344707 -0.1336509406 0)
(-0.00166310644 -0.1333321975 0)
(-0.001707571025 -0.1342989141 0)
(-0.001702978832 -0.1339733652 0)
(-0.006473426413 -0.1336631596 0)
(-0.006441006993 -0.1333425302 0)
(-0.006505677233 -0.1339839743 0)
(-0.006711490867 -0.1330143665 0)
(-0.006408664997 -0.1330226791 0)
(-0.006866451438 -0.1349418533 0)
(-0.006601777975 -0.1349433149 0)
(-0.006570064866 -0.134625607 0)
(-0.006537874049 -0.1343047906 0)
(-0.005961960898 -0.1281903684 0)
(-0.006263649118 -0.1281819699 0)
(-0.006598377093 -0.1281724591 0)
(-0.006620966937 -0.1284943446 0)
(-0.006643270571 -0.1288162988 0)
(-0.006575685245 -0.1278505766 0)
(-0.00607519437 -0.1294756621 0)
(-0.006368173836 -0.1294676452 0)
(-0.006684073666 -0.1294597207 0)
(-0.006697510108 -0.1297809803 0)
(-0.006664774371 -0.1291382169 0)
(-0.008389641007 -0.1433024129 0)
(-0.005507229512 -0.1438841332 0)
(-0.005841064742 -0.1438778923 0)
(-0.006156863503 -0.143860602 0)
(-0.006039771624 -0.1436070159 0)
(-0.005088504479 -0.1426149795 0)
(-0.00475250554 -0.1426205647 0)
(-0.004740370471 -0.1422964435 0)
(-0.004725123739 -0.1419746978 0)
(-0.006931136729 -0.1381753986 0)
(-0.004706600088 -0.1413280244 0)
(-0.00468810367 -0.1410080579 0)
(-0.00500852432 -0.1409870855 0)
(-0.005106969319 -0.1412442944 0)
(-0.004663949665 -0.1406898828 0)
(-0.004908844971 -0.1407263703 0)
(-0.004713649344 -0.1416521782 0)
(-0.004740554712 -0.1402805791 0)
(-0.007127912017 -0.1400661964 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-8.441095034e-05 -0.0001154115859 1.346145417e-15)
(-1.061850441e-05 -1.29299929e-05 1.387778781e-16)
(-0.0002891319996 -0.0003817504256 4.121702979e-15)
(0 0 0)
(0 0 0)
(-0.0001883012737 -0.0002935617142 3.441691376e-15)
(-0.0003684949516 -0.0009935976692 1.162958618e-14)
(-0.0003500117841 -0.0007590600654 8.881784197e-15)
(-0.0008665528066 -0.002045713336 2.212119377e-14)
(0 0 0)
(0 0 0)
(-0.0003363885597 -0.001198396204 1.403044347e-14)
(-1.618996058e-05 -0.001494848023 1.749989043e-14)
(-0.0001468311331 -0.001459007257 1.708355679e-14)
(-0.000288583514 -0.003202492667 3.461120279e-14)
(0 0 0)
(-2.543014772e-06 -2.04268031e-05 2.775557562e-16)
(0.0001151138354 -0.001460963128 1.709743458e-14)
(0.0003465719353 -0.000999414148 1.169897512e-14)
(0.000309967336 -0.001203421026 1.408595462e-14)
(0.0006714190592 -0.002795696553 3.018418848e-14)
(0 0 0)
(7.043737487e-07 -2.298939301e-06 2.775557562e-17)
(0.0003335456912 -0.0007651260304 8.965050924e-15)
(8.354432248e-05 -0.0001187395166 1.387778781e-15)
(0.0001832870217 -0.0002983689384 3.497202528e-15)
(0.0006666936423 -0.001173587951 1.267042027e-14)
(0 0 0)
(0 0 0)
(1.123904903e-05 -1.417136128e-05 1.665334537e-16)
(0 0 0)
(0 0 0)
(4.160046722e-06 -4.63683049e-06 5.551115123e-17)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.001231739638 -0.00150968318 1.323940957e-14)
(-0.000606068666 -0.0006859741233 6.022959909e-15)
(-0.001472151862 -0.001771616303 1.462718835e-14)
(0 0 0)
(-0.001922828737 -0.002570600782 2.256528298e-14)
(-0.003538712163 -0.006519331804 5.731526365e-14)
(-0.003142951277 -0.005140493122 4.51860771e-14)
(-0.004621497631 -0.008054666363 6.666889263e-14)
(-0.000928311162 -0.00132208995 1.326716514e-14)
(-0.003735139347 -0.007878168561 6.927791674e-14)
(-0.003043355059 -0.01134679038 9.973966097e-14)
(-0.003480011306 -0.01033458311 9.088563235e-14)
(-0.004581191731 -0.01457510285 1.206812428e-13)
(-0.001583445229 -0.004051241598 4.067579606e-14)
(-0.002432513981 -0.01216780983 1.069283551e-13)
(4.303138234e-05 -0.01328914456 1.165734176e-13)
(-0.0008438078463 -0.01315302339 1.154493168e-13)
(-0.001032163664 -0.01797975217 1.485339629e-13)
(-0.0004608533018 -0.005723891958 5.742628595e-14)
(0.0009260743967 -0.01317703812 1.155187057e-13)
(0.003078551475 -0.01142384399 9.997558337e-14)
(0.002487663093 -0.01223195983 1.070948885e-13)
(0.003280700042 -0.01689535894 1.391525783e-13)
(0.001163210416 -0.005150826711 5.161149286e-14)
(0.003494099835 -0.01041852427 9.114931032e-14)
(0.00350903646 -0.006591315322 5.764833055e-14)
(0.003714621055 -0.007958562843 6.961098364e-14)
(0.00515131801 -0.01167312873 9.597878048e-14)
(0.001434594399 -0.002711489862 2.715883074e-14)
(0.003111084811 -0.005201775299 4.550526622e-14)
(0.001224543918 -0.001537860549 1.346145417e-14)
(0.001904616848 -0.00260914418 2.284283873e-14)
(0.003211084568 -0.0046682073 3.842759444e-14)
(0.0002634636478 -0.0003162516171 3.16413562e-15)
(0.0006080295787 -0.0007046884286 6.175615574e-15)
(0 0 0)
(0 0 0)
(0.0001718716672 -0.0001832586375 1.512678871e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.001350404862 -0.00155715321 1.090794122e-14)
(-0.0004022911589 -0.0004367790348 3.053113318e-15)
(-0.0009968192592 -0.001135794418 7.577272143e-15)
(0 0 0)
(-0.00266947293 -0.003282412827 2.303712776e-14)
(-0.007190952425 -0.01107039273 7.790990075e-14)
(-0.00574214474 -0.008151247553 5.730138586e-14)
(-0.007519762757 -0.0112181043 7.516209877e-14)
(-0.00265586727 -0.003386937146 2.642330799e-14)
(-0.008414762411 -0.01415647319 9.969802761e-14)
(-0.009990388822 -0.02334862814 1.646460746e-13)
(-0.009859768255 -0.02039290694 1.437738817e-13)
(-0.01168218794 -0.02542999109 1.708633235e-13)
(-0.006272972059 -0.01161105338 9.08301212e-14)
(-0.009711734484 -0.02608639064 1.839500774e-13)
(-0.006699705958 -0.03246886667 2.286226763e-13)
(-0.008022798746 -0.03068501921 2.16215934e-13)
(-0.009098708586 -0.03672078397 2.464833893e-13)
(-0.005730540615 -0.01945945696 1.522393323e-13)
(-0.005132431345 -0.03387707162 2.3832325e-13)
(0.0003986989507 -0.03578206825 2.509381591e-13)
(-0.001518930038 -0.03553752165 2.494948692e-13)
(-0.001655120287 -0.04182371163 2.796374243e-13)
(-0.001208780353 -0.0234218174 1.827288321e-13)
(0.002304818378 -0.0356307374 2.495920137e-13)
(0.00732426043 -0.03278977236 2.289834988e-13)
(0.005829834103 -0.03413562697 2.386008058e-13)
(0.006618129652 -0.04041382381 2.689515277e-13)
(0.004124749316 -0.02219525336 1.725425358e-13)
(0.008560129248 -0.03104987278 2.166600233e-13)
(0.0102356717 -0.02372005233 1.653122084e-13)
(0.01005312716 -0.02647611543 1.845468223e-13)
(0.01169762962 -0.03225204797 2.139399768e-13)
(0.006723146442 -0.01605901509 1.245947789e-13)
(0.0100189108 -0.02073003511 1.444677711e-13)
(0.007187198581 -0.01123827848 7.84233789e-14)
(0.008450560818 -0.01439344074 1.003641614e-13)
(0.01042500835 -0.01860963741 1.234845559e-13)
(0.004776649638 -0.007342694186 5.70238301e-14)
(0.005705682102 -0.008238308333 5.753730825e-14)
(0.001551481645 -0.001819318326 1.271205363e-14)
(0.002862133625 -0.003579049737 2.500777363e-14)
(0.0043118142 -0.005658909981 3.758104938e-14)
(0.0007010536415 -0.0007912090657 6.161737787e-15)
(0.0005547466081 -0.0006123313329 4.274358645e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0007886129351 -0.0009197132324 5.356826094e-15)
(-4.848525897e-05 -5.376159553e-05 3.053113318e-16)
(-0.006584191352 -0.009098524955 5.309641615e-14)
(-0.00427275019 -0.005560363871 3.241851232e-14)
(-0.005528533045 -0.007493632847 4.195255254e-14)
(-0.0019960043 -0.002380458548 1.515454429e-14)
(-0.008987628048 -0.01324365652 7.741030039e-14)
(-0.01474021849 -0.02725145345 1.601080379e-13)
(-0.0133069933 -0.02264744505 1.328104293e-13)
(-0.01521133734 -0.0269624412 1.516842207e-13)
(-0.009367043556 -0.01464805513 9.374445664e-14)
(-0.01597368796 -0.03232619553 1.90125693e-13)
(-0.01618269899 -0.04566832421 2.687849943e-13)
(-0.01669557656 -0.04165678235 2.45192755e-13)
(-0.01825644684 -0.0473124462 2.67300071e-13)
(-0.01345579872 -0.03074328219 1.972727537e-13)
(-0.01513784469 -0.04914565272 2.89143709e-13)
(-0.009549885387 -0.0561750542 3.297084827e-13)
(-0.01173337358 -0.05438779165 3.195360643e-13)
(-0.01236925899 -0.05954693315 3.358285872e-13)
(-0.0100898653 -0.04280470388 2.743083538e-13)
(-0.007157197118 -0.05747382489 3.369804435e-13)
(0.0006249523212 -0.05911033125 3.453071162e-13)
(-0.002017065074 -0.05888444192 3.444189378e-13)
(-0.002122219109 -0.06320828069 3.548966676e-13)
(-0.001782430225 -0.04796658721 3.061162435e-13)
(0.003259323353 -0.059047941 3.444883268e-13)
(0.01069180912 -0.0567685115 3.299305273e-13)
(0.008341903462 -0.05794527735 3.371886104e-13)
(0.00864963427 -0.06265262308 3.499700529e-13)
(0.007316958191 -0.0466206957 2.960548473e-13)
(0.01281081234 -0.05507061469 3.197025977e-13)
(0.017014984 -0.0468186647 2.71088707e-13)
(0.0160784851 -0.05025063994 2.911559882e-13)
(0.01715045835 -0.05579212631 3.102101909e-13)
(0.01325883901 -0.03819126327 2.416677969e-13)
(0.0174222312 -0.04278104522 2.475381011e-13)
(0.01549956466 -0.02885257798 1.667138649e-13)
(0.01668050015 -0.03375309122 1.949829187e-13)
(0.01855861934 -0.03910254138 2.166461455e-13)
(0.01239824978 -0.02311055193 1.462024946e-13)
(0.01382608821 -0.02382412 1.377509218e-13)
(0.007000252263 -0.009844316067 5.709321904e-14)
(0.009432514519 -0.01413611977 8.190670364e-14)
(0.01119074549 -0.01746815192 9.70890035e-14)
(0.005933274572 -0.0081552008 5.163924843e-14)
(0.004647525943 -0.006154149881 3.573530361e-14)
(0.0001169349754 -0.0001316185242 7.632783294e-16)
(0.0009974310796 -0.001181880478 6.869504965e-15)
(0.00165480709 -0.002042650801 1.140754158e-14)
(0.0001182324458 -0.0001284174688 8.187894807e-16)
(-0.003292854028 -0.004478735426 2.234323837e-14)
(-0.001320123946 -0.001707483159 8.507083926e-15)
(-0.01225710649 -0.01974627565 9.889311592e-14)
(-0.00913502745 -0.0138600292 6.933342789e-14)
(-0.00996987128 -0.01566323311 7.564782134e-14)
(-0.006789756482 -0.009569837557 5.152822613e-14)
(-0.01524226343 -0.02618298881 1.31325506e-13)
(-0.02149761998 -0.04621910466 2.324529458e-13)
(-0.02000870419 -0.03967590984 1.99409933e-13)
(-0.02122503817 -0.04355730157 2.113864639e-13)
(-0.01698063166 -0.031297988 1.693367668e-13)
(-0.02227606533 -0.05230943818 2.632061236e-13)
(-0.02038223392 -0.06619776864 3.331640519e-13)
(-0.02164824342 -0.06234347338 3.137490268e-13)
(-0.02242733336 -0.06674979354 3.242128788e-13)
(-0.01965256891 -0.05279022162 2.865346849e-13)
(-0.01849949582 -0.06888427988 3.466532617e-13)
(-0.01075274845 -0.07145646399 0)
(-0.01354247774 -0.07133436603 3.587130593e-13)
(-0.01371733898 -0.07404506462 0)
(-0.01289177731 -0.06411340079 3.475830734e-13)
(-0.007956480935 -0.0715133456 0)
(0.0003398073993 -0.0730145283 0)
(-0.001035768244 -0.07297382269 0)
(-0.002213410161 -0.06650997541 3.590461262e-13)
(0.001723132589 -0.07305588701 0)
(0.01159539581 -0.07212802091 0)
(0.008793141645 -0.07201450635 0)
(0.008786714013 -0.07461055889 0)
(0.008819336982 -0.06654812428 3.574085472e-13)
(0.01439212963 -0.07220853461 3.588657149e-13)
(0.021157835 -0.06770762116 3.348293864e-13)
(0.01931747293 -0.07016945022 3.473749066e-13)
(0.01804428402 -0.06093351549 3.255590242e-13)
(0.02243775541 -0.06420104937 3.173017404e-13)
(0.02218150617 -0.04819857259 2.381567166e-13)
(0.02298994926 -0.05431227483 2.683131495e-13)
(0.02401754435 -0.05882537733 2.80511725e-13)
(0.02024954129 -0.04437256569 2.362554596e-13)
(0.02066835262 -0.04156734165 2.055022819e-13)
(0.01261088333 -0.02070224402 1.026123631e-13)
(0.01586863671 -0.02775729421 1.374456104e-13)
(0.01704679902 -0.03090065371 1.476180289e-13)
(0.0128803291 -0.02091026448 1.116606807e-13)
(0.009596114736 -0.01483475228 7.360778653e-14)
(0.001808083463 -0.002375897039 1.182387521e-14)
(0.003958255239 -0.005476011463 2.722821968e-14)
(0.00486329127 -0.006969418402 3.344546862e-14)
(0.00238790926 -0.003065996913 1.644517855e-14)
(-0.005821492891 -0.009045209246 3.948230631e-14)
(-0.00305124213 -0.004509528065 1.966482532e-14)
(-0.01601360602 -0.02943859735 1.289801599e-13)
(-0.01257487112 -0.02178141623 9.531264666e-14)
(-0.01304140074 -0.02328829549 9.87959714e-14)
(-0.01101685795 -0.01789941949 8.358591597e-14)
(-0.01916095277 -0.03753811749 1.646738301e-13)
(-0.0250220733 -0.06119095306 2.690347944e-13)
(-0.02380042513 -0.05373939289 2.361583151e-13)
(-0.0243315011 -0.05659436091 2.410849298e-13)
(-0.02201866814 -0.04670059062 2.190470028e-13)
(-0.025420033 -0.06780609704 2.982059044e-13)
(-0.02193221364 -0.08038831733 3.532729664e-13)
(-0.02379747092 -0.07757000925 3.410882687e-13)
(-0.02409911173 -0.08081098124 3.443079155e-13)
(-0.02302689477 -0.0707302879 3.320121955e-13)
(-0.01953308638 -0.08172810699 3.588657149e-13)
(-0.0127397662 -0.08326399963 0)
(-0.01386108081 -0.07669194561 0)
(-0.01121536575 -0.07935651497 0)
(-0.009830962397 -0.07937120491 0)
(-0.009773979093 -0.07806355066 0)
(-0.0111536565 -0.07803947766 0)
(-0.005479433 -0.07803125662 0)
(-0.006909226232 -0.07802573762 0)
(-0.007031415564 -0.07937487878 0)
(-0.005290643156 -0.07415558961 0)
(-0.006701323223 -0.07413016526 0)
(-0.006749942436 -0.07541727909 0)
(-0.005364649632 -0.07544974846 0)
(0.001686008522 -0.07948599016 0)
(0.001663552008 -0.07818983555 0)
(0.0002025207929 -0.07814229983 0)
(0.005959067262 -0.0783868666 0)
(0.004536072391 -0.07831494901 0)
(0.005962901184 -0.07448858962 0)
(0.00455844655 -0.07443584629 0)
(0.004535645838 -0.07572235411 0)
(0.005951123979 -0.07578059331 0)
(0.01295318381 -0.08009105337 0)
(0.01298110611 -0.07878918674 0)
(0.01159732701 -0.07871970792 0)
(0.01706665275 -0.08023457864 0)
(0.01712946055 -0.07764295768 0)
(0.01435591886 -0.07884326206 0)
(0.0143243982 -0.08013896093 0)
(0.01715242929 -0.0749087111 3.584771369e-13)
(0.02424336136 -0.07992527311 3.453071162e-13)
(0.02593698818 -0.06470650117 2.792904796e-13)
(0.02616844197 -0.0710480864 3.066574772e-13)
(0.02659904487 -0.07462423545 3.123196146e-13)
(0.02481898714 -0.06296264612 2.901151541e-13)
(0.02487937372 -0.05739970294 2.478295347e-13)
(0.01743722522 -0.03277348246 1.418865025e-13)
(0.02050815637 -0.0410962869 1.777189507e-13)
(0.0211785567 -0.04380833015 1.836725216e-13)
(0.01843106175 -0.03458131893 1.595945598e-13)
(0.01401734195 -0.02479908117 1.074834666e-13)
(0.004061251975 -0.006101804624 2.653433029e-14)
(0.007067646935 -0.01118229876 4.858613512e-14)
(0.007530931719 -0.01229203775 5.177802631e-14)
(0.00570757649 -0.008462753046 3.924638392e-14)
(-0.006908840076 -0.01207374507 4.680977828e-14)
(-0.003872955318 -0.006439520486 2.493838469e-14)
(-0.0175612439 -0.03626296443 1.410815909e-13)
(-0.01402914532 -0.02731089066 1.061373212e-13)
(-0.01431088686 -0.0286263874 1.082328671e-13)
(-0.01328063773 -0.02442641086 1.005584505e-13)
(-0.02074168745 -0.04561223704 1.776634395e-13)
(-0.02637485721 -0.0721863139 2.816913369e-13)
(-0.02527824318 -0.06395137899 2.494532358e-13)
(-0.02552619431 -0.06630058045 2.515626596e-13)
(-0.02462155813 -0.05894731369 2.436384428e-13)
(-0.02660979034 -0.0793380007 3.09613446e-13)
(-0.02458418889 -0.08927551727 3.481798183e-13)
(-0.0247088129 -0.09199010577 3.489430966e-13)
(-0.02427927095 -0.08367951365 3.4584835e-13)
(-0.02239452419 -0.08898341887 3.568534357e-13)
(-0.01979681458 -0.08962336442 0)
(-0.01706073184 -0.08970251546 0)
(-0.01702064616 -0.08839758484 0)
(-0.01698046246 -0.08709338986 0)
(-0.01689679336 -0.08448104702 0)
(-0.01693995154 -0.08579029773 0)
(-0.01151177587 -0.08725154544 0)
(-0.01014516582 -0.08728878682 0)
(-0.008778279197 -0.08732281747 0)
(-0.008756097268 -0.08666611635 0)
(-0.008731517594 -0.08600356564 0)
(-0.008684042931 -0.08468656753 0)
(0.01269511702 -0.09055117634 0)
(0.01273079315 -0.08924509235 0)
(0.01679460195 -0.09068239649 0)
(0.01683241475 -0.08938115717 0)
(0.01546447671 -0.08933414074 0)
(0.01542779837 -0.09063760019 0)
(0.01693964875 -0.08546805762 0)
(0.01557077672 -0.08542014473 0)
(0.01553748562 -0.08673080278 0)
(0.01690590224 -0.08677788162 0)
(0.02456106273 -0.09218866101 3.539113447e-13)
(0.02745234828 -0.07763162685 2.977201818e-13)
(0.02730053886 -0.08412937916 3.226724443e-13)
(0.02732530845 -0.08674762371 3.237549118e-13)
(0.02683040635 -0.07772313255 3.157196726e-13)
(0.02673137704 -0.06982554845 2.678551825e-13)
(0.01981976908 -0.04206212762 1.617039835e-13)
(0.02281090914 -0.05165442635 1.983968545e-13)
(0.02293250027 -0.05343177551 1.99673611e-13)
(0.02158317199 -0.04604677938 1.873640132e-13)
(0.01636630565 -0.03267117187 1.257327575e-13)
(0.005628328699 -0.00952799924 3.679001548e-14)
(0.009004101062 -0.01605769207 6.195044477e-14)
(0.009112903886 -0.01671008561 6.27137231e-14)
(0.008197930958 -0.01379476293 5.637157408e-14)
(-0.007598710827 -0.01475202461 5.145883719e-14)
(-0.004423239754 -0.008172477776 2.847722058e-14)
(-0.01843484656 -0.04222113457 1.47742929e-13)
(-0.01487861331 -0.03214657781 1.123684479e-13)
(-0.01505072574 -0.03331958685 1.136174488e-13)
(-0.01452413019 -0.02983027421 1.098010571e-13)
(-0.02160760675 -0.05266039488 1.844496778e-13)
(-0.02707681249 -0.0818688224 2.872146965e-13)
(-0.02605292706 -0.07290134333 2.556704848e-13)
(-0.02621479735 -0.07509607375 2.569056079e-13)
(-0.025720564 -0.06853410046 2.531308496e-13)
(-0.02722792301 -0.08956424114 3.142208715e-13)
(-0.02502088058 -0.09993939474 3.504002644e-13)
(-0.0251200691 -0.1025797609 3.50816598e-13)
(-0.02481837633 -0.0946562387 3.495120859e-13)
(-0.02275667134 -0.09957104678 3.579081476e-13)
(-0.02009628143 -0.09998418985 0)
(-0.017361531 -0.1000657092 0)
(-0.01732457732 -0.09877308016 0)
(-0.01728756003 -0.09748033297 0)
(-0.01721288094 -0.09489137466 0)
(-0.01725033031 -0.09618651114 0)
(-0.0118241104 -0.09764288959 0)
(-0.01045982171 -0.09768343644 0)
(-0.009096256648 -0.09772408168 0)
(-0.009077119153 -0.09707676606 0)
(-0.009057988864 -0.09642969045 0)
(-0.009019588463 -0.09513488281 0)
(-0.009038787763 -0.09578225663 0)
(0.01238495777 -0.1009740795 0)
(0.01242558384 -0.09967315284 0)
(0.01106179318 -0.09963202038 0)
(0.01647856424 -0.1010970635 0)
(0.01651977412 -0.09979669492 0)
(0.01515472341 -0.09975552462 0)
(0.01511368814 -0.1010560786 0)
(0.01664038452 -0.09589213531 0)
(0.01527475721 -0.09585016696 0)
(0.01523524416 -0.09715202787 0)
(0.01660070047 -0.0971936908 0)
(0.02431624117 -0.1027539865 3.550354455e-13)
(0.02752022125 -0.08719788897 3.010092176e-13)
(0.02725690848 -0.09425094065 3.253786129e-13)
(0.02709027276 -0.09625771602 3.242406343e-13)
(0.02738120289 -0.08949406674 3.252120795e-13)
(0.02690789926 -0.07864842643 2.71546674e-13)
(0.02023062732 -0.04788884417 1.656730308e-13)
(0.02316580284 -0.05856652156 2.024352908e-13)
(0.02291502046 -0.05944773781 2.004785227e-13)
(0.02318793433 -0.05555567479 2.021299794e-13)
(0.01680656124 -0.03739317488 1.294797602e-13)
(0.005974354279 -0.01125475815 3.909372825e-14)
(0.009411128513 -0.01868442143 6.483702464e-14)
(0.00918948309 -0.01870786544 6.333822355e-14)
(0.009384706788 -0.01768303211 6.460110225e-14)
(-0.008267795797 -0.01764671047 5.595524044e-14)
(-0.00496697136 -0.01009296493 3.196054532e-14)
(-0.01926638865 -0.0484289071 1.539879335e-13)
(-0.01568974511 -0.03723093135 1.182665077e-13)
(-0.01590134827 -0.03857381174 1.198069421e-13)
(-0.01525950421 -0.03459238835 1.151440054e-13)
(-0.02243052217 -0.05994819964 1.907918268e-13)
(-0.02774422971 -0.09170270647 2.922384557e-13)
(-0.02678913966 -0.08204114337 2.613881334e-13)
(-0.02697850958 -0.08438760022 2.628591789e-13)
(-0.02640364298 -0.07738424099 2.583766534e-13)
(-0.0278156333 -0.0998959871 3.183564523e-13)
(-0.02543398747 -0.1106021079 3.522598879e-13)
(-0.02553646879 -0.1132792137 3.527039771e-13)
(-0.02522495825 -0.1052481412 3.513023206e-13)
(-0.02308560673 -0.1100530461 3.585187702e-13)
(-0.02038796783 -0.1103159113 0)
(-0.01765411383 -0.1103972836 0)
(-0.0176177218 -0.1091053584 0)
(-0.01758127877 -0.107813735 0)
(-0.01750831595 -0.105231932 0)
(-0.01754484835 -0.1065225317 0)
(-0.01212225491 -0.1079756783 0)
(-0.01075982089 -0.1080159893 0)
(-0.01074121206 -0.1073702793 0)
(-0.01006029506 -0.1073904258 0)
(-0.01007902209 -0.1080360722 0)
(-0.0100040954 -0.1054548686 0)
(-0.0100227918 -0.1060994949 0)
(0.01204442946 -0.1113643308 0)
(0.01208765529 -0.1100688273 0)
(0.01613416712 -0.1114821539 0)
(0.01617768755 -0.1101868394 0)
(0.01481371743 -0.1101476834 0)
(0.0147702588 -0.1114429397 0)
(0.01630894382 -0.1062957518 0)
(0.0149446353 -0.106255865 0)
(0.01490148084 -0.1075529922 0)
(0.01626567295 -0.1075927554 0)
(0.02378932249 -0.1121124695 3.522460101e-13)
(0.02653357901 -0.09324560712 2.927796894e-13)
(0.02641941561 -0.1014907793 3.186895192e-13)
(0.02610795545 -0.1028155254 3.157196726e-13)
(0.02693964197 -0.09829993686 3.232691892e-13)
(0.02578743487 -0.08347417794 2.621652895e-13)
(0.01888541995 -0.04933582351 1.552369344e-13)
(0.02185647654 -0.061039594 1.919020498e-13)
(0.02134296877 -0.0610158959 1.875999356e-13)
(0.02275961877 -0.06054992423 1.993682996e-13)
(0.01547297345 -0.03796134536 1.19557142e-13)
(0.005025825428 -0.01042532078 3.293199047e-14)
(0.008274173045 -0.01809431452 5.709321904e-14)
(0.007836595985 -0.01753078179 5.409561687e-14)
(0.009092797977 -0.01896956274 6.269984532e-14)
(-0.009124494778 -0.02122804332 6.168676681e-14)
(-0.005681054798 -0.01258808065 3.655409309e-14)
(-0.02027110713 -0.0554372649 1.615374501e-13)
(-0.01668857142 -0.04311647145 1.255245907e-13)
(-0.0168365853 -0.04438356677 1.265654248e-13)
(-0.01612364268 -0.03996378472 1.214167655e-13)
(-0.02340470266 -0.06799821799 1.982858322e-13)
(-0.02847513343 -0.1019992019 2.977895708e-13)
(-0.02761941952 -0.09176822433 2.678690603e-13)
(-0.02779384033 -0.09413879568 2.691458167e-13)
(-0.02717508441 -0.08677437522 2.643718577e-13)
(-0.02843822287 -0.1105525131 3.22755711e-13)
(-0.02583974396 -0.1213215062 3.539668558e-13)
(-0.02594890711 -0.1240471676 3.544942118e-13)
(-0.02563954788 -0.1159643807 3.531619441e-13)
(-0.02340123152 -0.1205122903 3.589351039e-13)
(-0.02067536775 -0.1206508844 0)
(-0.01794133554 -0.1207323221 0)
(-0.01790579255 -0.1194406717 0)
(-0.01787012055 -0.1181487249 0)
(-0.01779848553 -0.1155651403 0)
(-0.01783433034 -0.1168568417 0)
(-0.01241546966 -0.1183102966 0)
(-0.01105543213 -0.1183504155 0)
(-0.01103717611 -0.1177044547 0)
(-0.01035775557 -0.1177244362 0)
(-0.01037607159 -0.1183703951 0)
(-0.0103024637 -0.11578711 0)
(-0.01032089252 -0.1164328254 0)
(0.01167912116 -0.121717804 0)
(0.01172661851 -0.1204240503 0)
(0.01576792832 -0.1218306145 0)
(0.01581454239 -0.1205382756 0)
(0.01445107626 -0.1205003359 0)
(0.01440359692 -0.1217934896 0)
(0.01595414172 -0.1166573479 0)
(0.01459063721 -0.1166186864 0)
(0.01454476172 -0.1179124288 0)
(0.01590845886 -0.1179506757 0)
(0.02294467662 -0.1196054228 3.44668738e-13)
(0.02476325115 -0.09564414846 2.755157213e-13)
(0.0249502599 -0.105536804 3.039790641e-13)
(0.02436231796 -0.1054137328 2.974981372e-13)
(0.02566601805 -0.1035627083 3.111538804e-13)
(0.02374731074 -0.08434531161 2.430278201e-13)
(0.01642167483 -0.04690903708 1.354055756e-13)
(0.01945237971 -0.05946025666 1.715155795e-13)
(0.01880350017 -0.05871427532 1.659367088e-13)
(0.02086039583 -0.06101768003 1.835753771e-13)
(0.01305426508 -0.03499538275 1.010996842e-13)
(0.003434354115 -0.007775861852 2.250977182e-14)
(0.006289707961 -0.01501594022 4.345135363e-14)
(0.005881675378 -0.0143369609 4.064804049e-14)
(0.007512217251 -0.01718281253 5.187517083e-14)
(-0.01015994443 -0.02557574754 6.861178292e-14)
(-0.006556275685 -0.01572645197 4.214684157e-14)
(-0.02147102453 -0.06340589381 1.70502501e-13)
(-0.01788341737 -0.04993030536 1.34142697e-13)
(-0.01773771333 -0.05045724724 1.329908406e-13)
(-0.0171093926 -0.04599648845 1.285360707e-13)
(-0.02456663644 -0.07700432081 2.07195372e-13)
(-0.02933415031 -0.1130200865 3.044370311e-13)
(-0.02860352059 -0.10233307 2.756128659e-13)
(-0.02878081915 -0.1047870532 2.768618668e-13)
(-0.02802346805 -0.09671001132 2.709360514e-13)
(-0.02915826871 -0.1217850507 3.280431482e-13)
(-0.02627066264 -0.1322187921 3.559097461e-13)
(-0.02637555658 -0.1349354626 3.563260798e-13)
(-0.02605448749 -0.126760864 3.549521788e-13)
(-0.02369997388 -0.1309001205 0)
(-0.02096005603 -0.1309815548 0)
(-0.02092428024 -0.1296901516 0)
(-0.01822355832 -0.1310628863 0)
(-0.01818825894 -0.1297713487 0)
(-0.01955572956 -0.1297307664 0)
(-0.01959126715 -0.1310222367 0)
(-0.01808267703 -0.125897267 0)
(-0.0195203882 -0.1284398306 0)
(-0.01815310119 -0.1284805275 0)
(-0.01811791821 -0.1271888663 0)
(-0.01269975414 -0.1286415196 0)
(-0.01134229852 -0.1286816211 0)
(-0.01132464072 -0.1280355822 0)
(-0.01064707485 -0.1280553278 0)
(-0.01066479445 -0.1287014248 0)
(-0.01059345765 -0.1261177712 0)
(-0.01061133924 -0.1267632628 0)
(0.01127996493 -0.1320464785 0)
(0.0113326944 -0.1307564853 0)
(0.01537000457 -0.132158245 0)
(0.01547371082 -0.1295786263 0)
(0.01274640232 -0.1295032761 0)
(0.01269443487 -0.1307938927 0)
(0.01264183081 -0.1320837096 0)
(0.0155743 -0.126996812 0)
(0.01284735512 -0.1269213526 0)
(0.0127966843 -0.1282127889 0)
(0.0216860188 -0.1241078866 3.303191054e-13)
(0.02213748436 -0.0931815363 2.480099459e-13)
(0.02277838407 -0.1052296102 2.800398802e-13)
(0.02225040325 -0.1049665841 2.741140648e-13)
(0.02397979863 -0.106112588 2.935429677e-13)
(0.02096457642 -0.08103229805 2.157440893e-13)
(0.01327458399 -0.04113278639 1.097039126e-13)
(0.01630600447 -0.05410952731 1.442179709e-13)
(0.01530960994 -0.0517904987 1.354610868e-13)
(0.01786838674 -0.05695983263 1.578043252e-13)
(0.01005260047 -0.02921765508 7.799316748e-14)
(0.001768194453 -0.004338449443 1.160183061e-14)
(0.00402908109 -0.0104236474 2.785272013e-14)
(0.003332701153 -0.00878726462 2.303712776e-14)
(0.00506049391 -0.0125865697 3.497202528e-14)
(-0.0114557789 -0.03107380411 7.736866703e-14)
(-0.007674509327 -0.01984547831 4.937716902e-14)
(-0.02291266431 -0.07277153526 1.816047313e-13)
(-0.01933777781 -0.05810801703 1.449118603e-13)
(-0.01951234163 -0.05985243713 1.466604616e-13)
(-0.01849574245 -0.05355120759 1.385419557e-13)
(-0.0259421003 -0.08738806674 2.182143355e-13)
(-0.03027225312 -0.1250383535 3.125139036e-13)
(-0.02971821723 -0.114075135 2.850775171e-13)
(-0.02975546425 -0.1166267339 2.863681514e-13)
(-0.02896957405 -0.1072945521 2.782080122e-13)
(-0.02990180488 -0.1337841843 3.343436639e-13)
(-0.02660992383 -0.1432736981 3.577971253e-13)
(-0.02650182005 -0.1458772775 3.579359031e-13)
(-0.02648302357 -0.1376638618 3.567562912e-13)
(-0.02399770034 -0.1412389875 0)
(-0.02125407352 -0.1413129059 0)
(-0.0212160434 -0.1400204294 0)
(-0.01851384484 -0.1413939891 0)
(-0.01847612375 -0.1401018036 0)
(-0.01984563265 -0.1400611 0)
(-0.01988353376 -0.1413532801 0)
(-0.01836613409 -0.1362289352 0)
(-0.01973486296 -0.136188255 0)
(-0.01977140798 -0.1374792748 0)
(-0.01840237909 -0.137519964 0)
(-0.01297850217 -0.1389723684 0)
(-0.01229925623 -0.1389921644 0)
(-0.01228162006 -0.1383468456 0)
(-0.01296074419 -0.1383269932 0)
(-0.01092737935 -0.1383860097 0)
(-0.01094501372 -0.1390312685 0)
(-0.01087466939 -0.1364486661 0)
(-0.01089204393 -0.1370932721 0)
(-0.0006046028708 -0.1394767805 0)
(-0.0005676832106 -0.1388358844 0)
(0.001406705507 -0.13951952 0)
(0.001443040747 -0.1388784862 0)
(0.0007706523592 -0.1388635205 0)
(0.0007350401409 -0.1395048762 0)
(0.0008404949712 -0.1375796264 0)
(0.001511805116 -0.1375944997 0)
(0.01204940747 -0.1449465531 0)
(0.01870089363 -0.1328176476 3.285982597e-13)
(0.01694851313 -0.1396555142 3.456540609e-13)
(0.01668390644 -0.1405722871 3.418515471e-13)
(0.01744703564 -0.1371342523 3.518713099e-13)
(0.01988578974 -0.1241000401 3.069766663e-13)
(0.01912923407 -0.08710779469 2.154942891e-13)
(0.02014523715 -0.1008582264 2.494671136e-13)
(0.01926026362 -0.09825082199 2.388089726e-13)
(0.02153286748 -0.1036595995 2.657596365e-13)
(0.01741630767 -0.07269671447 1.799116411e-13)
(0.009425732861 -0.03145579777 7.797928969e-14)
(0.01237563815 -0.0442484788 1.096345237e-13)
(0.01157176007 -0.04212142104 1.025429741e-13)
(0.01451016482 -0.05002668068 1.284528039e-13)
(0.0064860955 -0.0202974018 5.034861417e-14)
(0.0005020662641 -0.00132717859 3.302913498e-15)
(0.001940900821 -0.005407659968 1.34336986e-14)
(0.001375722283 -0.003901372944 9.520162436e-15)
(0.002933896081 -0.007882315007 2.028932578e-14)
(-0.01008711744 -0.02941155592 6.832034938e-14)
(-0.006564170962 -0.01824643872 4.235500839e-14)
(-0.02109770258 -0.07197870884 1.6756041e-13)
(-0.01760622393 -0.05684932652 1.322553178e-13)
(-0.01645391842 -0.05404421221 1.236372116e-13)
(-0.01915155453 -0.05976081809 1.43884904e-13)
(-0.02411855168 -0.08723401804 2.031985691e-13)
(-0.02888871039 -0.1278643235 2.980948821e-13)
(-0.0281120882 -0.1157225866 2.697564394e-13)
(-0.02702429811 -0.1131085432 2.592648318e-13)
(-0.02947152727 -0.1174074811 2.832734047e-13)
(-0.02880918218 -0.1380001457 3.21714877e-13)
(-0.02626595319 -0.1510824319 3.520517211e-13)
(-0.02589774922 -0.1511936893 3.464728504e-13)
(-0.02651829868 -0.1481329468 3.571726248e-13)
(-0.02399642096 -0.1515917097 3.590877595e-13)
(-0.02124733842 -0.1516806139 0)
(-0.01849724537 -0.1517631945 0)
(-0.01845845324 -0.1504713414 0)
(-0.0184196611 -0.1491794883 0)
(-0.01979473763 -0.1491381971 0)
(-0.01834209485 -0.1465963821 0)
(-0.01971717138 -0.1465550909 0)
(-0.01975596351 -0.147846944 0)
(-0.01838088699 -0.1478882352 0)
(-0.01291941501 -0.1493446512 0)
(-0.01154439848 -0.1493859406 0)
(-0.01152501142 -0.1487403141 0)
(-0.01016932196 -0.1494272318 0)
(-0.0101499349 -0.1487816053 0)
(-0.01083744316 -0.1487609606 0)
(-0.01085683022 -0.1494065871 0)
(-0.01077926397 -0.1468234809 0)
(-0.01079865103 -0.1474691075 0)
(-0.01011114276 -0.1474897522 0)
(-0.0006215085526 -0.1522999722 0)
(-0.0005827164184 -0.1510081191 0)
(0.003503661021 -0.152423844 0)
(0.003542453156 -0.1511319909 0)
(0.002167394631 -0.1510907002 0)
(0.002128602497 -0.1523825533 0)
(0.002244960882 -0.148507594 0)
(0.003620019406 -0.1485488847 0)
(0.01150753519 -0.1526367876 3.530509218e-13)
(0.01693550021 -0.130307972 3.011063621e-13)
(0.0156506127 -0.1402359668 3.24129612e-13)
(0.01519628923 -0.1386298135 3.151923167e-13)
(0.01631664551 -0.140635036 3.361894096e-13)
(0.01756149547 -0.1182711753 2.732675197e-13)
(0.01520870459 -0.07428480091 1.717237463e-13)
(0.01667556233 -0.08970062528 2.072925165e-13)
(0.01585238054 -0.08666125268 1.970229535e-13)
(0.01856219036 -0.09648834218 2.305378111e-13)
(0.01345281228 -0.06019179129 1.391942117e-13)
(0.006028520298 -0.02155124113 4.991840274e-14)
(0.008616602186 -0.03300597321 7.639722188e-14)
(0.007374213261 -0.02868439025 6.532274721e-14)
(0.01041088898 -0.03855157749 9.227341113e-14)
(0.003610665504 -0.01210020127 2.803313137e-14)
(0 0 0)
(0.0003828207702 -0.001143220865 2.650657471e-15)
(0.0001787021134 -0.0005426753523 1.235123115e-15)
(0.001037478745 -0.002994149424 7.174816297e-15)
(-0.005692126725 -0.01775546288 3.862188347e-14)
(-0.00312094243 -0.00927502224 2.016442568e-14)
(-0.01492859906 -0.05454941182 1.188771304e-13)
(-0.01182282732 -0.0408776109 8.903988657e-14)
(-0.01003025806 -0.03527652252 7.562006576e-14)
(-0.01508128632 -0.05039015919 1.133676486e-13)
(-0.01779048675 -0.06891855448 1.502686864e-13)
(-0.02344000526 -0.1109595267 2.421673972e-13)
(-0.02215472366 -0.0976144659 2.130101651e-13)
(-0.02005852622 -0.08995713329 1.931926841e-13)
(-0.02566179966 -0.1092305397 2.462474669e-13)
(-0.02405327062 -0.1230870643 2.68673972e-13)
(-0.02202138615 -0.1497032827 3.266414916e-13)
(-0.0232917305 -0.1425924386 3.111955138e-13)
(-0.0218550471 -0.1361263014 2.924188669e-13)
(-0.0253015419 -0.1499807877 3.380767888e-13)
(-0.02027289257 -0.1550773476 3.382572e-13)
(-0.01319856256 -0.1628446873 3.547440119e-13)
(-0.01576177688 -0.161364458 3.516908986e-13)
(-0.01523578691 -0.1583545054 3.397560011e-13)
(-0.01597988711 -0.1595962936 0)
(-0.0105349806 -0.1636215644 3.562566908e-13)
(-0.002334765257 -0.1632793011 3.549799343e-13)
(-0.005080374171 -0.1638309771 3.563677131e-13)
(-0.00497299185 -0.1620986114 3.47152862e-13)
(-0.004901828646 -0.1573429128 0)
(-0.004979412914 -0.159926619 0)
(0.0003959972686 -0.1620493984 3.521349878e-13)
(0.008029510161 -0.1512351526 3.281819261e-13)
(0.00564597771 -0.1563250191 3.393674231e-13)
(0.005402726477 -0.1515469065 3.239492008e-13)
(0.005991294519 -0.1591253053 3.565758799e-13)
(0.01013367294 -0.1443835149 3.13207793e-13)
(0.0138354171 -0.1132061334 2.454147996e-13)
(0.01311967605 -0.1252484044 2.71546674e-13)
(0.01218046118 -0.1176857595 2.51271226e-13)
(0.01462713489 -0.1356758817 3.035349749e-13)
(0.01396073577 -0.09987406789 2.165073676e-13)
(0.01088915643 -0.0564629573 1.224714774e-13)
(0.01243521152 -0.07100305902 1.539740557e-13)
(0.01104153322 -0.06386479068 1.363908986e-13)
(0.01486161579 -0.08249981473 1.845745778e-13)
(0.008964778221 -0.0425778484 9.238443344e-14)
(0.002669092191 -0.01014602131 2.203792704e-14)
(0.004651057715 -0.01892978358 4.110600749e-14)
(0.00366134484 -0.01511655876 3.233524559e-14)
(0.006544202891 -0.02585423685 5.79397641e-14)
(0.001100794313 -0.003928015326 8.534839502e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(1.712931302e-05 -5.28644801e-05 1.110223025e-16)
(-0.001195908141 -0.003979121498 8.132383655e-15)
(-0.0002282643105 -0.0007225153529 1.471045508e-15)
(-0.006860601608 -0.02685689962 5.499767308e-14)
(-0.004701358671 -0.01739028507 3.561040351e-14)
(-0.003164253187 -0.011897212 2.399469512e-14)
(-0.008202621107 -0.02934282795 6.19226892e-14)
(-0.009053289306 -0.03762130922 7.707723348e-14)
(-0.01440171123 -0.07334259284 1.503797087e-13)
(-0.0129407165 -0.06129192309 1.256494908e-13)
(-0.01050390347 -0.05067587137 1.023348073e-13)
(-0.01778587647 -0.08121280299 1.716959908e-13)
(-0.01543452133 -0.08501831628 1.743466482e-13)
(-0.01568845316 -0.1148437864 2.355199369e-13)
(-0.01607790038 -0.1059995786 2.17395546e-13)
(-0.0138334383 -0.09308672931 1.880717804e-13)
(-0.02014688454 -0.1277803957 2.702282842e-13)
(-0.01486283634 -0.1223956557 2.509659147e-13)
(-0.01030486673 -0.136837772 2.803590693e-13)
(-0.01210966635 -0.1333960635 2.733924198e-13)
(-0.01068526176 -0.1205055892 2.433331314e-13)
(-0.01443169852 -0.1526025837 3.223948886e-13)
(-0.008300690362 -0.1389380703 2.84564039e-13)
(-0.001721613887 -0.1373467987 2.809974475e-13)
(-0.003947096239 -0.1391943871 2.848832281e-13)
(-0.003439754279 -0.1264869775 2.551014955e-13)
(-0.004738129229 -0.1573074783 3.317623953e-13)
(0.0004527458208 -0.1341498451 2.743499872e-13)
(0.006003849879 -0.1162196108 2.374628272e-13)
(0.004383751086 -0.1235901688 2.525896159e-13)
(0.003949420462 -0.1104332836 2.224470608e-13)
(0.005111338923 -0.1444162587 3.040484531e-13)
(0.007305206753 -0.107519931 2.196298698e-13)
(0.008798409832 -0.07502548429 1.532246552e-13)
(0.008735603396 -0.08669558864 1.770666946e-13)
(0.007447333236 -0.07438638592 1.497552082e-13)
(0.01112598351 -0.1086211658 2.284561429e-13)
(0.008421839728 -0.06293238172 1.285360707e-13)
(0.005156650179 -0.02810927306 5.744016374e-14)
(0.006517986245 -0.039042931 7.976952432e-14)
(0.005037199096 -0.03050171168 6.142308884e-14)
(0.009565187315 -0.05600574043 1.178224185e-13)
(0.003685301284 -0.01843810975 3.769207169e-14)
(0.0002407425647 -0.0009695605118 1.984523657e-15)
(0.001050390183 -0.00452104343 9.24260668e-15)
(0.0004629744966 -0.002020271595 4.066191828e-15)
(0.002699317594 -0.011302241 2.381428388e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0008749418199 -0.003654782036 7.063793994e-15)
(-0.0002224698963 -0.0008759834133 1.693090113e-15)
(0 0 0)
(-0.001862223848 -0.00711413724 1.414146578e-14)
(-0.001817074635 -0.008077404969 1.55986335e-14)
(-0.005109512266 -0.02805420019 5.423439475e-14)
(-0.004046986297 -0.02061072557 3.98431288e-14)
(-0.002425811759 -0.0125670174 2.395306176e-14)
(-0.008158546106 -0.04008953579 7.976952432e-14)
(-0.006017837703 -0.03583691611 6.929179452e-14)
(-0.007286785301 -0.05821331956 1.125766147e-13)
(-0.007138755244 -0.05118713367 9.897638265e-14)
(-0.005171832114 -0.03786994109 7.220612996e-14)
(-0.0115443929 -0.07932945335 1.579292253e-13)
(-0.007148931973 -0.06450760293 1.247474346e-13)
(-0.005212349137 -0.07743323502 1.496996971e-13)
(-0.006079997451 -0.07423662612 1.435379593e-13)
(-0.004638941013 -0.05824425974 1.11050058e-13)
(-0.009163529699 -0.1059860857 2.108868635e-13)
(-0.004180396444 -0.07941450066 1.535022109e-13)
(-0.0006285444788 -0.07778329219 1.502686864e-13)
(-0.001832452251 -0.079592422 1.537936445e-13)
(-0.001360066057 -0.06307972257 1.201955202e-13)
(-0.002898028676 -0.1119391062 2.225025719e-13)
(0.0005193184045 -0.07474745584 1.443706266e-13)
(0.003101870045 -0.05908582983 1.140754158e-13)
(0.002431455252 -0.06528423729 1.260658244e-13)
(0.001897163145 -0.05020128264 9.5617958e-14)
(0.003473088665 -0.09598506993 1.905975378e-13)
(0.003534519217 -0.05212534013 1.006278394e-13)
(0.003302408399 -0.02898798493 5.596911823e-14)
(0.003626961551 -0.03680737281 7.105427358e-14)
(0.002511189384 -0.02562410131 4.879430193e-14)
(0.006139907858 -0.06167257219 1.224020885e-13)
(0.00277617649 -0.02147239899 4.145295218e-14)
(0.0007161167325 -0.004091288928 7.896461263e-15)
(0.001389210446 -0.008689457735 1.677824546e-14)
(0.0006142571644 -0.003886468159 7.410738689e-15)
(0.003653112541 -0.022358472 4.43950432e-14)
(0.0002101853966 -0.001105811912 2.137179322e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(9.933366949e-05 -0.0004394981443 8.743006319e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001559607396 -0.0009148468722 1.679212325e-15)
(-1.119634452e-05 -6.070741183e-05 1.110223025e-16)
(0 0 0)
(-0.001180117357 -0.006213826162 1.168509733e-14)
(-0.0004067591152 -0.002597642041 4.74620343e-15)
(-0.001185322257 -0.01029711157 1.884603584e-14)
(-0.0009687523293 -0.007514197619 1.375288772e-14)
(-0.0002841214122 -0.00223992708 4.05231404e-15)
(-0.003452524055 -0.02579977124 4.851674618e-14)
(-0.001319084303 -0.01302227609 2.384203945e-14)
(-0.001147184402 -0.01922070763 3.518019209e-14)
(-0.001296526148 -0.01761810948 3.225197887e-14)
(-0.0006154479254 -0.008552428615 1.544597783e-14)
(-0.00333548827 -0.04305104307 8.094913628e-14)
(-0.0009253891462 -0.02023363137 3.702593787e-14)
(-6.971349699e-05 -0.01937325056 3.544387006e-14)
(-0.0003593575475 -0.02031205495 3.716471575e-14)
(-0.0001745116878 -0.01042609847 1.883215806e-14)
(-0.0009521713979 -0.04725216114 8.881784197e-14)
(0.0001879725137 -0.01783632917 3.264055692e-14)
(0.0005645625727 -0.01062355866 1.944278072e-14)
(0.000518817075 -0.01333082667 2.439715097e-14)
(0.0002221484363 -0.005699757375 1.029731855e-14)
(0.001382804928 -0.03611963228 6.786238238e-14)
(0.0005279609219 -0.007836341097 1.433575481e-14)
(0.0001179212645 -0.001072486395 1.970645869e-15)
(0.0002717444551 -0.002836744074 5.19029264e-15)
(2.054228554e-05 -0.0002168123584 4.024558464e-16)
(0.00155161183 -0.01593202015 2.99343883e-14)
(1.364272725e-05 -0.0001099801167 1.942890293e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0.0001397948253 -0.0008952922435 1.679212325e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-5.830481191e-06 -4.662598725e-05 8.326672685e-17)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001820721907 -0.002579203692 4.607425552e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-5.804498124e-05 -0.003623020479 6.467049118e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(4.54434469e-05 -0.001170890362 2.081668171e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.00900030754 -0.09448679077 0)
(-0.008980817781 -0.09383774409 0)
(-0.008941694834 -0.0925388743 0)
(-0.01030622714 -0.09249844024 0)
(-0.008961398834 -0.09318905562 0)
(-0.01167130488 -0.09245816997 0)
(0.01125569844 -0.0931166003 0)
(0.009891148825 -0.0930727425 0)
(0.009872780381 -0.0937264472 0)
(0.009190771983 -0.09370464642 0)
(0.009209080424 -0.09305093991 0)
(0.009134077385 -0.0956586862 0)
(0.00915300261 -0.09500643957 0)
(0.008721730778 -0.08516262617 0)
(0.008709744991 -0.08582577606 0)
(0.008696190268 -0.08648517454 0)
(0.00934932266 -0.0878246022 0)
(0.01003216569 -0.08784660822 0)
(0.008679882629 -0.08713825048 0)
(0.01139932334 -0.08789561311 0)
(-0.009304485606 -0.1048305087 0)
(-0.009985460806 -0.1048103005 0)
(-0.009247944498 -0.1028935805 0)
(-0.009929099705 -0.1028733668 0)
(-0.009947890342 -0.1035191313 0)
(-0.009266795138 -0.1035393432 0)
(-0.01197393637 -0.1028123842 0)
(-0.01062922556 -0.1034989122 0)
(-0.01061049312 -0.1028530859 0)
(0.01093894233 -0.1035351915 0)
(0.01025775775 -0.1035139559 0)
(0.009576628308 -0.1034948841 0)
(0.009555766243 -0.1041456312 0)
(0.008875029251 -0.1041254901 0)
(0.008895767708 -0.1034748594 0)
(0.008811935466 -0.1060766352 0)
(0.008833077724 -0.1054265571 0)
(0.009115077742 -0.09631141105 0)
(0.009056998226 -0.09826757128 0)
(0.009076505459 -0.09761594269 0)
(0.01110166624 -0.09833017028 0)
(0.00975794266 -0.09763676542 0)
(0.009738371821 -0.09828851221 0)
(0.01041995119 -0.0983106004 0)
(-0.01028398389 -0.1151416965 0)
(-0.01022836678 -0.1132035393 0)
(-0.01024699003 -0.1138497293 0)
(-0.01226980493 -0.1131433795 0)
(-0.01092700879 -0.1138296699 0)
(-0.01090850735 -0.1131835363 0)
(0.01059336929 -0.113915442 0)
(0.009232126852 -0.1138774489 0)
(0.009209876435 -0.1145244309 0)
(0.007849779449 -0.114486292 0)
(0.008529714243 -0.1145051478 0)
(0.008552081061 -0.1138582895 0)
(0.007782512144 -0.1164284234 0)
(0.008462722983 -0.1164460864 0)
(0.008485131786 -0.1157998299 0)
(0.007805429794 -0.1157812213 0)
(0.008790671402 -0.1067267697 0)
(0.008726643516 -0.1086730221 0)
(0.008748505804 -0.1080229657 0)
(0.01076894098 -0.1087305652 0)
(0.009428946386 -0.1080429777 0)
(0.009407034907 -0.1086926724 0)
(-0.01057558146 -0.1254724597 0)
(-0.01052162406 -0.1235355739 0)
(-0.01053951466 -0.1241813655 0)
(-0.01255875104 -0.1234758439 0)
(-0.01121791696 -0.1241614747 0)
(-0.01120002816 -0.1235157431 0)
(0.01022244849 -0.1242638221 0)
(0.008861962662 -0.1242266325 0)
(0.007502422458 -0.1241899517 0)
(0.00745353009 -0.1254821622 0)
(0.007402835846 -0.1267743786 0)
(0.007760045684 -0.1170766 0)
(0.007737039202 -0.1177247603 0)
(0.00769105092 -0.1190182591 0)
(0.009050389495 -0.1190556545 0)
(0.007714194166 -0.1183715442 0)
(0.01041188816 -0.1190931147 0)
(-0.01085738782 -0.1358031565 0)
(-0.01080506545 -0.1338647203 0)
(-0.01082254684 -0.1345108845 0)
(-0.01283849209 -0.133805762 0)
(-0.01285591168 -0.134451868 0)
(-0.01217696576 -0.134471655 0)
(-0.01215960437 -0.1338254872 0)
(-0.001436073245 -0.1362455727 0)
(-0.001774368404 -0.1362372761 0)
(-0.001787818092 -0.1365601567 0)
(-0.001801456177 -0.1368826113 0)
(0.000202459362 -0.1369228467 0)
(0.0002343508664 -0.1362799979 0)
(0.0002658067495 -0.1356372561 0)
(-0.0004027781106 -0.1356234255 0)
(0.008504754733 -0.1332623475 0)
(0.009864247547 -0.1332986064 0)
(0.004426272637 -0.1331554924 0)
(0.005782998182 -0.1331901068 0)
(0.005610387739 -0.1370543684 0)
(0.005669327376 -0.1357675645 0)
(0.007353790497 -0.1280656835 0)
(0.00730216324 -0.1293569711 0)
(0.008663036111 -0.1293932714 0)
(0.01002303057 -0.1294288248 0)
(-0.01075979889 -0.1461772562 0)
(-0.01095556033 -0.144274491 0)
(-0.01072096477 -0.1448860049 0)
(-0.01299884955 -0.1442139753 0)
(-0.01278366956 -0.1448240654 0)
(-0.0120961613 -0.1448447101 0)
(-0.01231708765 -0.1442319851 0)
(-0.002315915245 -0.1452014535 0)
(-0.001673778454 -0.145199716 0)
(-0.004269118913 -0.1451986548 0)
(-0.003607345761 -0.1452203284 0)
(-0.003904145351 -0.1470299289 0)
(-0.003884920282 -0.146383697 0)
(-0.002151199347 -0.1371974356 0)
(-0.00219194319 -0.1381646843 0)
(-0.002177606082 -0.1378424309 0)
(-0.001197698353 -0.1381815676 0)
(-0.001496029405 -0.1375331269 0)
(-0.001829208748 -0.1375269056 0)
(-0.001844714686 -0.1378484633 0)
(-0.001860150427 -0.1381702634 0)
(0.000908694491 -0.1471744503 0)
(0.0009474866253 -0.1458825972 0)
(0.001059238547 -0.144621642 0)
(-0.0003029615336 -0.1445837403 0)
(-0.0003627994677 -0.1452144592 0)
(-0.001025472946 -0.1452029682 0)
(-0.0009721392282 -0.1445702522 0)
(0.009446656365 -0.1423032006 0)
(0.008084645249 -0.142266806 0)
(0.0080173258 -0.1435486739 0)
(0.00937927331 -0.1435851867 0)
(0.005281472986 -0.143471866 0)
(0.005354318611 -0.1421919657 0)
(0.005033846064 -0.1472983215 0)
(0.005121383659 -0.1460271502 0)
(0.005550704105 -0.1383399489 0)
(0.005423921757 -0.1409100463 0)
(0.009510898928 -0.141019799 0)
(0.00814936603 -0.1409834788 0)
(-0.006602647242 -0.084068064 0)
(-0.007123665654 -0.08072098525 0)
(-0.01127353249 -0.08067958024 0)
(-0.009888492916 -0.08068708249 0)
(4.897817995e-06 -0.08390905117 0)
(-0.0004712979276 -0.08391918885 0)
(-0.0004295718815 -0.08432021077 0)
(1.308445844e-05 -0.0842220482 0)
(-0.0008975103734 -0.08394196793 0)
(-0.0009750616026 -0.0842881739 0)
(-0.003954443601 -0.07547575914 0)
(-0.003868295056 -0.07418304592 0)
(-0.004083061769 -0.07805799294 0)
(-0.001238111622 -0.0781080486 0)
(-0.001337339022 -0.07940451299 0)
(0.0009238057399 -0.08399721746 0)
(0.0004906938742 -0.08394464058 0)
(0.0004780754982 -0.08426809691 0)
(0.0008625690012 -0.08441631933 0)
(0.01151645304 -0.08263896747 0)
(0.01014425716 -0.08258574546 0)
(0.008764645808 -0.08251947269 0)
(0.008743822207 -0.08383893886 0)
(0.008732471179 -0.08449895003 0)
(0.007372677754 -0.0758467022 0)
(0.007392081884 -0.07455450713 0)
(0.007379080418 -0.07846548105 0)
(0.01020483818 -0.07864228032 0)
(0.005539089727 -0.08965453092 0)
(0.005191414552 -0.08964418692 0)
(0.005181002771 -0.08997411935 0)
(0.005170433489 -0.0903038969 0)
(0.004597793416 -0.08497651935 0)
(0.004590653549 -0.08564469074 0)
(0.005270986252 -0.08634609541 0)
(0.004587575743 -0.08598358763 0)
(0.005955841673 -0.0863712848 0)
(0.01668015254 -0.09459178348 0)
(0.01531433801 -0.09455004973 0)
(0.01539072471 -0.09194222488 0)
(0.01675698682 -0.09198505308 0)
(0.01265866429 -0.0918571229 0)
(0.0222378918 -0.0907489777 3.586714259e-13)
(0.01952909563 -0.09077046626 0)
(0.01671800119 -0.09328735022 0)
(0.01686966104 -0.08808078366 0)
(-0.01747184174 -0.1039412704 0)
(-0.01743516231 -0.1026497743 0)
(-0.01739840485 -0.1013576799 0)
(-0.01326381012 -0.1001876757 0)
(-0.01330098399 -0.1014796374 0)
(-0.01603195787 -0.1013983516 0)
(-0.01599502401 -0.1001063827 0)
(-0.01614216898 -0.1052725947 0)
(-0.01610557657 -0.1039819968 0)
(-0.01588346511 -0.09622725548 0)
(-0.01584595394 -0.0949320608 0)
(-0.01595794853 -0.09881369729 0)
(-0.01322643462 -0.09889499929 0)
(0.005521156015 -0.100116958 0)
(0.00513510193 -0.100105906 0)
(0.005355172027 -0.09619694605 0)
(0.005701955093 -0.09620699901 0)
(0.01635195611 -0.1049973592 0)
(0.01498753841 -0.1049571087 0)
(0.01507209843 -0.1023570964 0)
(0.01643680173 -0.1023978359 0)
(0.0109803778 -0.1022353101 0)
(0.01234377186 -0.1022756499 0)
(0.02194313611 -0.1012599015 3.591016373e-13)
(0.01920989093 -0.1011786001 0)
(0.01639464623 -0.1036976957 0)
(0.0165604674 -0.09849553008 0)
(-0.01776258432 -0.1142735607 0)
(-0.0177264905 -0.1129815665 0)
(-0.01769034028 -0.1116896942 0)
(-0.01355926226 -0.1105188036 0)
(-0.01359591053 -0.1118112616 0)
(-0.01632461332 -0.1117303443 0)
(-0.01628826508 -0.1104378773 0)
(-0.01643293678 -0.115605725 0)
(-0.01639697738 -0.1143142072 0)
(-0.01617875778 -0.1065630726 0)
(-0.01625181124 -0.1091458939 0)
(-0.01352251021 -0.1092268892 0)
(-0.01013515399 -0.109973373 0)
(-0.01015389363 -0.1106194394 0)
(-0.01009775272 -0.1086818385 0)
(-0.01077848972 -0.1086616974 0)
(-0.007396946524 -0.1094077665 0)
(-0.008076307062 -0.1093877869 0)
(-0.008095097699 -0.1100335514 0)
(-0.008113897345 -0.110679616 0)
(-0.007962246245 -0.105515341 0)
(-0.007981239054 -0.1061598383 0)
(-0.008000253485 -0.1068050556 0)
(-0.007320296526 -0.1068251733 0)
(-0.006630404226 -0.1065224249 0)
(0.004912120462 -0.1105136202 0)
(0.004560468833 -0.1105020998 0)
(0.004560930628 -0.1108285211 0)
(0.004558125314 -0.1111539435 0)
(0.005011654239 -0.1066139529 0)
(0.005370577554 -0.106626112 0)
(0.01599988819 -0.115363902 0)
(0.01463627809 -0.1153247568 0)
(0.01472578374 -0.1127380454 0)
(0.01608951205 -0.1127772542 0)
(0.0120001854 -0.1126597437 0)
(0.02158291873 -0.1115622578 3.588657149e-13)
(0.01886451052 -0.1115584361 0)
(0.0160443602 -0.1140708982 0)
(0.01622263254 -0.1088880844 0)
(-0.01804738666 -0.1246060294 0)
(-0.01801209089 -0.1233146118 0)
(-0.01797667691 -0.1220232578 0)
(-0.01384870046 -0.1208536554 0)
(-0.01388415643 -0.1221444075 0)
(-0.01661118456 -0.1220637207 0)
(-0.016575845 -0.1207728449 0)
(-0.01671694467 -0.125937737 0)
(-0.01668177431 -0.1246464959 0)
(-0.01646883979 -0.1168973646 0)
(-0.01654030201 -0.1194811946 0)
(-0.01381297746 -0.1195620104 0)
(-0.01043102326 -0.1203083921 0)
(-0.01044921748 -0.1209542947 0)
(-0.01039444942 -0.1190164123 0)
(-0.01107368815 -0.1189963763 0)
(-0.007358942253 -0.1197521506 0)
(-0.007369059403 -0.1200750712 0)
(-0.008378162167 -0.1197221457 0)
(-0.008397018212 -0.1203680885 0)
(-0.00771951775 -0.1203880123 0)
(-0.007709578805 -0.1200650262 0)
(-0.007700059878 -0.1197420275 0)
(-0.008415872455 -0.1210139712 0)
(-0.007738973819 -0.121033937 0)
(-0.007729096679 -0.1207110091 0)
(-0.008266003955 -0.1158470603 0)
(-0.008284790988 -0.1164927049 0)
(-0.008303401618 -0.1171384748 0)
(-0.007625539339 -0.1171583494 0)
(0.004931527664 -0.1202383226 0)
(0.004253658127 -0.1202204897 0)
(0.003552765298 -0.120851177 0)
(0.00403525447 -0.1166497542 0)
(0.004046818325 -0.1163252554 0)
(0.004004325059 -0.1176233634 0)
(0.004014474029 -0.117299783 0)
(0.005022655815 -0.1176505789 0)
(0.004355033649 -0.1173092888 0)
(0.004344406461 -0.1176327947 0)
(-0.01833034748 -0.134937172 0)
(-0.01969889815 -0.1348965573 0)
(-0.01962686114 -0.1323135853 0)
(-0.01825891229 -0.1323542421 0)
(-0.02099583002 -0.1322728979 0)
(-0.01412952877 -0.1311837811 0)
(-0.01416422271 -0.1324751567 0)
(-0.01280387797 -0.1325150446 0)
(-0.0168922181 -0.132394681 0)
(-0.01685716413 -0.1311033162 0)
(-0.01699860166 -0.1362694594 0)
(-0.01696305506 -0.134977689 0)
(-0.01675206585 -0.12722934 0)
(-0.01682204656 -0.1298118332 0)
(-0.01273447926 -0.1299319334 0)
(-0.01409477121 -0.1298922873 0)
(-0.01071769217 -0.1306370211 0)
(-0.01073522996 -0.1312830636 0)
(-0.01068249603 -0.1293469218 0)
(-0.01205540972 -0.129951604 0)
(-0.01137725644 -0.1299717876 0)
(-0.01135982009 -0.1293271234 0)
(-0.007667219797 -0.1300783891 0)
(-0.007669358421 -0.1304016094 0)
(-0.008674955273 -0.1300499302 0)
(-0.008692475048 -0.1306953726 0)
(-0.008354110329 -0.1307051728 0)
(-0.008014307352 -0.1307150762 0)
(-0.008007903148 -0.1303918038 0)
(-0.008002351591 -0.1300689262 0)
(-0.008710136449 -0.1313415314 0)
(-0.00837129171 -0.131351346 0)
(-0.008362551013 -0.1310282639 0)
(-0.008700975735 -0.1310184619 0)
(-0.008562800121 -0.1261769467 0)
(-0.008581876356 -0.1268222222 0)
(-0.007905205118 -0.1268417608 0)
(-0.007894256942 -0.1265191654 0)
(-0.007884694229 -0.1261967085 0)
(-0.008600970609 -0.1274680978 0)
(-0.007925859435 -0.1274875895 0)
(-0.00791514226 -0.1271646869 0)
(-0.007574981071 -0.1271746611 0)
(-0.007586658285 -0.1274975349 0)
(-0.0002355119501 -0.1317541388 0)
(-0.000226288225 -0.1314307709 0)
(-0.0002189377497 -0.1311063859 0)
(-0.0005636465146 -0.1310958547 0)
(0.00388639259 -0.1299139426 0)
(0.004562723683 -0.1299310086 0)
(0.002536331484 -0.1298807895 0)
(0.00245484135 -0.1318169686 0)
(0.002482527939 -0.1311719516 0)
(0.003339215137 -0.1266688105 0)
(0.00331372882 -0.1273145542 0)
(0.003288411682 -0.1279612638 0)
(0.003963708337 -0.1279781787 0)
(0.00463982762 -0.1279952984 0)
(-0.01830330272 -0.145304529 0)
(-0.01967837925 -0.1452632378 0)
(-0.01992209992 -0.142653608 0)
(-0.0185523492 -0.1426942588 0)
(-0.02129288276 -0.1426153285 0)
(-0.01441333863 -0.1415151985 0)
(-0.01445149198 -0.142815779 0)
(-0.01308854048 -0.1428468568 0)
(-0.01718374394 -0.1427350554 0)
(-0.01714535237 -0.1414345421 0)
(-0.01696701833 -0.1466376733 0)
(-0.01692822619 -0.1453458202 0)
(-0.01703454665 -0.1375604971 0)
(-0.01710781128 -0.1401423512 0)
(-0.01301461276 -0.1402629207 0)
(-0.01437627576 -0.1402229331 0)
(-0.01099903112 -0.1409681524 0)
(-0.01101745273 -0.1416136278 0)
(-0.0109627681 -0.1396765237 0)
(-0.01299637656 -0.1396176199 0)
(-0.01231707062 -0.1396374178 0)
(-0.007913628074 -0.1410602613 0)
(-0.00827438687 -0.1410482272 0)
(-0.008286466083 -0.1413704884 0)
(-0.008303394686 -0.1416922436 0)
(-0.008160271143 -0.1365279528 0)
(-0.008172443335 -0.1368493103 0)
(-0.008186293794 -0.1371705574 0)
(-0.007835115573 -0.1371816432 0)
(-0.007651945695 -0.1572603315 0)
(-0.007613153561 -0.1559684784 0)
(-0.008988188085 -0.1559271885 0)
(-0.009026980219 -0.1572190416 0)
(-0.008910621834 -0.1533440823 0)
(-0.00753558731 -0.1533853722 0)
(-0.01303579141 -0.1532202105 0)
(-0.01166077488 -0.1532614999 0)
(-0.003410417736 -0.153509244 0)
(-0.002035359213 -0.1535505347 0)
(-0.006160528785 -0.1534266629 0)
(-0.00627688717 -0.1573016222 0)
(-0.006238095036 -0.1560097691 0)
(-0.004611070672 -0.1476549099 0)
(-0.003923436405 -0.1476755584 0)
(-0.004669099858 -0.149592394 0)
(-0.003981567596 -0.1496130395 0)
(-0.003962186538 -0.1489674127 0)
(-0.0046497188 -0.1489467673 0)
(-0.001918982874 -0.1496749753 0)
(-0.002567740955 -0.1483630768 0)
(-0.003255267217 -0.1483424316 0)
(-0.003274654275 -0.1489880581 0)
(-0.003294041334 -0.1496336847 0)
(-0.00617399144 -0.09131899633 0)
(-0.005491427977 -0.09133931237 0)
(-0.005480882328 -0.09101352186 0)
(-0.005137690419 -0.09102376727 0)
(-0.005148279871 -0.09134961652 0)
(-0.005108973066 -0.09004822387 0)
(-0.005118277694 -0.09037228598 0)
(-0.005249879923 -0.09492329476 0)
(-0.005257554395 -0.09524706951 0)
(-0.005231091969 -0.09394781955 0)
(-0.005237700232 -0.0942728875 0)
(-0.006253838838 -0.09391806912 0)
(-0.005580515928 -0.09426271345 0)
(-0.005572233001 -0.09393787595 0)
(-0.00599702138 -0.08606775099 0)
(-0.005312827825 -0.08608158183 0)
(-0.004629436586 -0.08609833134 0)
(-0.004598327872 -0.08542355099 0)
(-0.00456575423 -0.08475058569 0)
(-0.004747189174 -0.08940372029 0)
(-0.005408974219 -0.08873064273 0)
(-0.006091804736 -0.08871182009 0)
(0.005727563868 -0.09490117725 0)
(0.00536871667 -0.09489208327 0)
(0.005161905225 -0.09063250459 0)
(0.005156477103 -0.09095927155 0)
(0.005505266069 -0.09096872412 0)
(0.009263073279 -0.0910908734 0)
(0.009280495557 -0.09043667784 0)
(0.009227627617 -0.09239928249 0)
(0.009909706829 -0.09242072506 0)
(0.006516641871 -0.09165635311 0)
(0.007199092451 -0.09167942836 0)
(0.007216529684 -0.09102473479 0)
(0.007233649247 -0.09037062023 0)
(0.007089005567 -0.09559553456 0)
(0.00710758339 -0.0949428571 0)
(0.006423885914 -0.09492130587 0)
(0.00641394986 -0.09524819571 0)
(0.006405586482 -0.09557471237 0)
(0.007126828992 -0.09429194133 0)
(0.006444395171 -0.09427030794 0)
(0.006433622142 -0.09459507066 0)
(0.006089755213 -0.0945845047 0)
(0.006101615494 -0.0942595344 0)
(-0.007205380716 -0.1029542545 0)
(-0.007224347757 -0.1035998937 0)
(-0.006542592525 -0.1036201254 0)
(-0.008585939943 -0.1035595479 0)
(-0.008567029301 -0.102913787 0)
(-0.008623808617 -0.104850648 0)
(-0.009172269498 -0.1003094566 0)
(-0.009191176537 -0.1009550976 0)
(-0.008510021329 -0.1009753113 0)
(-0.00849105609 -0.1003297321 0)
(-0.008547813241 -0.102267855 0)
(-0.009228906644 -0.1022475831 0)
(-0.00650579849 -0.1023288129 0)
(-0.007186586475 -0.10230837 0)
(-0.01059163527 -0.1022070831 0)
(-0.009910181856 -0.1022273658 0)
(-0.009891431402 -0.1015809394 0)
(-0.009210092584 -0.1016010385 0)
(-0.006487751849 -0.1016818248 0)
(-0.00580917374 -0.1017016609 0)
(-0.005800998256 -0.1013782015 0)
(-0.00546511944 -0.101387987 0)
(-0.005472717099 -0.1017114037 0)
(-0.005434148197 -0.1004203847 0)
(-0.00544505857 -0.1007429212 0)
(-0.005549044741 -0.1052656619 0)
(-0.005561768361 -0.105587183 0)
(-0.00551162563 -0.1042981331 0)
(-0.005523887264 -0.1046208692 0)
(-0.006561923184 -0.1042658738 0)
(-0.006571438508 -0.1045887524 0)
(-0.006228398406 -0.1045990533 0)
(-0.00621833706 -0.1042761911 0)
(-0.006330784326 -0.09651050271 0)
(-0.005646439997 -0.09653111246 0)
(-0.005635293779 -0.09620732185 0)
(-0.005288166915 -0.09621792564 0)
(-0.005299595144 -0.09654170778 0)
(-0.005266646114 -0.09557044136 0)
(-0.005423161012 -0.1000974902 0)
(-0.005389704392 -0.09912732004 0)
(-0.005400890197 -0.099450629 0)
(-0.006410085957 -0.09909740041 0)
(-0.005740131548 -0.09944062234 0)
(-0.005729679574 -0.09911735139 0)
(0.005432064049 -0.1053268928 0)
(0.005091430641 -0.1053168444 0)
(0.005097644588 -0.101407108 0)
(0.005482793808 -0.1014190937 0)
(0.00895713043 -0.1015233621 0)
(0.008977421298 -0.1008716369 0)
(0.008916315346 -0.1028245833 0)
(0.01095971736 -0.1028853426 0)
(0.01027838755 -0.1028649435 0)
(0.005854934675 -0.1020824828 0)
(0.005854630671 -0.1017566068 0)
(0.006893764585 -0.1021134369 0)
(0.006902991964 -0.1017881473 0)
(0.006559657851 -0.1017778376 0)
(0.006550801297 -0.102102778 0)
(0.006932488047 -0.1008098707 0)
(0.00658759387 -0.1007995141 0)
(0.006577794036 -0.1011258675 0)
(0.006922268196 -0.1011362115 0)
(0.006770901118 -0.106017028 0)
(0.006792528801 -0.1053667843 0)
(0.006112744641 -0.1053469121 0)
(0.006100993555 -0.105672246 0)
(0.006089678701 -0.1059970525 0)
(0.006813980079 -0.1047164153 0)
(0.00613539597 -0.104696579 0)
(0.006124195716 -0.1050215692 0)
(0.005785294578 -0.1050116328 0)
(0.005797691277 -0.1046867987 0)
(0.006032826229 -0.09687034999 0)
(0.006039745944 -0.09654391009 0)
(0.007052611934 -0.09690151292 0)
(0.007070838752 -0.09624852464 0)
(0.006388865131 -0.09622756569 0)
(0.006380614551 -0.09655432596 0)
(0.006372312977 -0.09688078443 0)
(0.00639680669 -0.09590109641 0)
(0.006942144453 -0.1004842937 0)
(0.00659761029 -0.1004739479 0)
(0.006973414127 -0.09950895308 0)
(0.006630182001 -0.09949924697 0)
(0.006619223559 -0.0998241843 0)
(0.006962679479 -0.09983443763 0)
(0.005913292738 -0.09980304646 0)
(0.005933403987 -0.09947730296 0)
(0.010400078 -0.0989604163 0)
(0.01108176422 -0.09898094622 0)
(0.009037259992 -0.09891889265 0)
(0.008997439725 -0.1002209846 0)
(-0.007549616578 -0.1145759746 0)
(-0.00822807708 -0.114556022 0)
(-0.008247045922 -0.1152017212 0)
(-0.008132771408 -0.1113261588 0)
(-0.008151818271 -0.1119724562 0)
(-0.007471381291 -0.1119925882 0)
(-0.01089001853 -0.1125378227 0)
(-0.01020981976 -0.1125578876 0)
(-0.01017258589 -0.1112659276 0)
(-0.006420677822 -0.1113773298 0)
(-0.006062710925 -0.1113887396 0)
(-0.006054398031 -0.1110651041 0)
(-0.006049856895 -0.1107414755 0)
(-0.00624327935 -0.1159058174 0)
(-0.006230350498 -0.1155834616 0)
(-0.006217257243 -0.1152612309 0)
(-0.006554133901 -0.1152514754 0)
(-0.006289508609 -0.1065325413 0)
(-0.005600832101 -0.1065532811 0)
(-0.005574653987 -0.1059086993 0)
(-0.006048827705 -0.1104178015 0)
(-0.006049108371 -0.1100941482 0)
(-0.006393234517 -0.1100838147 0)
(0.005111976208 -0.1150586371 0)
(0.004771569008 -0.1150486554 0)
(0.004429355717 -0.1150392201 0)
(0.004419300932 -0.1153634639 0)
(0.00407653023 -0.1153535915 0)
(0.004083530294 -0.1150290758 0)
(0.004058319747 -0.1160018358 0)
(0.004548238537 -0.1114781923 0)
(0.004533303784 -0.1118011485 0)
(0.004877659741 -0.1118114288 0)
(0.008618003087 -0.1119169585 0)
(0.008639682308 -0.1112689986 0)
(0.008573842449 -0.1132115932 0)
(0.009254188252 -0.1132307616 0)
(0.005877369583 -0.1124873568 0)
(0.006557237168 -0.1125064508 0)
(0.006579014772 -0.1118592145 0)
(0.006600750391 -0.1112113763 0)
(0.007126149622 -0.1157625653 0)
(0.00710328837 -0.1164098892 0)
(0.007170426661 -0.1144680543 0)
(0.005133666188 -0.1144121188 0)
(0.00581258995 -0.1144306439 0)
(0.005701383384 -0.1072860378 0)
(0.00571070194 -0.1069617119 0)
(0.006728474432 -0.1073159187 0)
(0.006749329834 -0.1066673935 0)
(0.006066896557 -0.106647742 0)
(0.006055652517 -0.1069721903 0)
(0.00604627576 -0.1072964544 0)
(0.006077809411 -0.1063223228 0)
(0.006622207619 -0.1105628091 0)
(0.006644035673 -0.1099138927 0)
(0.005964173494 -0.1098946187 0)
(0.005953162256 -0.1102193142 0)
(0.00561203382 -0.1102095512 0)
(0.005622926854 -0.109884792 0)
(0.009385801473 -0.1093417868 0)
(0.008705413686 -0.1093220165 0)
(0.008661804968 -0.1106202712 0)
(-0.007503153047 -0.124916649 0)
(-0.007510382872 -0.1252394161 0)
(-0.008525969506 -0.124886416 0)
(-0.008544085702 -0.1255317204 0)
(-0.007864965173 -0.1255516928 0)
(-0.007855035238 -0.1252290067 0)
(-0.007847387198 -0.1249063122 0)
(-0.007873875067 -0.1258744095 0)
(-0.00843465048 -0.1216593158 0)
(-0.007758293668 -0.1216793253 0)
(-0.007748547344 -0.1213567539 0)
(-0.00845340328 -0.1223038203 0)
(-0.007777572076 -0.1223233336 0)
(-0.007767963774 -0.1220013586 0)
(-0.007430080876 -0.1220112043 0)
(-0.007440167396 -0.122333105 0)
(-0.01118207576 -0.1228698933 0)
(-0.01050355165 -0.1228897278 0)
(-0.01046733728 -0.1215997191 0)
(-0.007080887408 -0.1216991862 0)
(-0.006740590014 -0.1217092246 0)
(-0.006382428574 -0.1213973557 0)
(-0.006365975776 -0.1210750457 0)
(-0.006798318783 -0.1255857042 0)
(-0.007164656006 -0.1255734426 0)
(-0.006597038567 -0.1165418838 0)
(-0.006266280954 -0.1165512153 0)
(-0.006255613583 -0.1162283712 0)
(-0.006349543375 -0.1207526149 0)
(-0.006333116974 -0.120430184 0)
(-0.006687529328 -0.1204190011 0)
(-0.007035958246 -0.1204083582 0)
(0.004740706682 -0.1254110305 0)
(0.004064362398 -0.1253936037 0)
(0.003388545523 -0.1253766132 0)
(0.003363417419 -0.1260224277 0)
(0.003518642056 -0.121821147 0)
(0.00350705663 -0.1221445641 0)
(0.003483409992 -0.1227902429 0)
(0.004160621303 -0.122807996 0)
(0.004837557198 -0.1228259209 0)
(-0.007787734791 -0.1358937715 0)
(-0.008145200659 -0.1358820765 0)
(-0.00815076663 -0.1362054341 0)
(-0.008718997151 -0.1316646099 0)
(-0.008380454226 -0.1316744755 0)
(-0.008399961289 -0.1323200985 0)
(-0.008737665981 -0.1323103181 0)
(-0.007712933047 -0.1323407287 0)
(-0.01214225559 -0.1331797394 0)
(-0.01282120332 -0.1331600124 0)
(-0.01078759667 -0.1332189761 0)
(-0.01075276595 -0.131929046 0)
(-0.007343368759 -0.1320299229 0)
(-0.006982462353 -0.1320418413 0)
(-0.00721652261 -0.1268625008 0)
(-0.006863496313 -0.1268736421 0)
(-0.006967857163 -0.1307474602 0)
(-0.007321121667 -0.1307362517 0)
(0.004369138429 -0.134443972 0)
(0.003692090314 -0.1344265842 0)
(0.003015998007 -0.1344103662 0)
(0.002986022349 -0.1350544136 0)
(0.002311494899 -0.1350384827 0)
(0.002341009132 -0.1343946017 0)
(0.002217835856 -0.13696751 0)
(0.002249788553 -0.1363250234 0)
(0.002427698999 -0.1324614614 0)
(0.00237064038 -0.1337504238 0)
(0.0043970422 -0.1337999225 0)
(0.003720333091 -0.1337828451 0)
(-0.0005979877406 -0.132390484 0)
(-0.0002599553975 -0.1323989529 0)
(-0.0002471123508 -0.1320766546 0)
(-0.007653317737 -0.1459360234 0)
(-0.007315149684 -0.1459407729 0)
(-0.008685186426 -0.1459146472 0)
(-0.008340478205 -0.1459231965 0)
(-0.00871636115 -0.1468848258 0)
(-0.008351767834 -0.1462471629 0)
(-0.008696158025 -0.1462380226 0)
(-0.008322592572 -0.1420135703 0)
(-0.01241286165 -0.1435234445 0)
(-0.0130929087 -0.143506327 0)
(-0.01105766811 -0.1435628774 0)
(-0.01103622355 -0.1422587323 0)
(-0.002743647058 -0.1420048905 0)
(-0.002785509647 -0.1426429957 0)
(-0.002827428651 -0.1432815797 0)
(-0.002179387795 -0.1432862653 0)
(-0.001525960576 -0.1432932147 0)
(-0.005968680167 -0.1469661328 0)
(-0.005952665163 -0.1463174022 0)
(-0.006299083318 -0.146303997 0)
(-0.006295857919 -0.145976185 0)
(-0.005948785754 -0.1459902104 0)
(-0.006981523884 -0.1459477883 0)
(-0.001347288652 -0.1407443739 0)
(-0.002007626278 -0.1407345145 0)
(-0.002683142822 -0.1410459824 0)
(-0.002703256298 -0.1413656001 0)
(-0.0171750793 -0.09359450712 0)
(-0.01713707964 -0.09229704496 0)
(-0.01709879078 -0.09099995182 0)
(-0.01295972308 -0.0898229892 0)
(-0.01299832655 -0.09112055935 0)
(-0.01573148755 -0.09104010874 0)
(-0.01569330915 -0.08974269399 0)
(-0.01580802689 -0.09363501685 0)
(-0.01557218 -0.08583085909 0)
(-0.01552916482 -0.0845223704 0)
(-0.01565303463 -0.08843747476 0)
(-0.01291919379 -0.08851728517 0)
(-0.00886234764 -0.08993845924 0)
(-0.008841790816 -0.08928587724 0)
(-0.008821229127 -0.08863313323 0)
(-0.008799729748 -0.08797716232 0)
(-0.006729557696 -0.08737642762 0)
(-0.006752221983 -0.08803519221 0)
(-0.008117169619 -0.08799658942 0)
(-0.008095462482 -0.08734169976 0)
(-0.008179967338 -0.08995787494 0)
(-0.008159418623 -0.08930556295 0)
(-0.008048309153 -0.0860214027 0)
(-0.00736402572 -0.08603544042 0)
(-0.007339175763 -0.08537388877 0)
(-0.0073117534 -0.08470867104 0)
(-0.008073295869 -0.08668550866 0)
(-0.006704964148 -0.08671341489 0)
(0.002817360989 -0.08557676398 0)
(0.003179371361 -0.08558511816 0)
(-0.009153286241 -0.09966327743 0)
(-0.009134290372 -0.09901667824 0)
(-0.009115314322 -0.09837073907 0)
(-0.007052070997 -0.09778474439 0)
(-0.007071488686 -0.09843139097 0)
(-0.008433860904 -0.09839102178 0)
(-0.008414743228 -0.09774436619 0)
(-0.008472012831 -0.09968355473 0)
(-0.008357090732 -0.09580242654 0)
(-0.008337833231 -0.09515511453 0)
(-0.008395542127 -0.09709693237 0)
(-0.007032568082 -0.09713725958 0)
(0.0156721015 -0.124413833 0)
(0.01430772632 -0.1243761663 0)
(0.01294465678 -0.1243390192 0)
(0.01289644246 -0.1256306494 0)
(0.01435663545 -0.1230853977 0)
(0.0157202378 -0.123122801 0)
(0.01163186507 -0.1230095231 0)
(0.02108651659 -0.1211176698 3.565620021e-13)
(0.01849821892 -0.1219066549 0)
(0.01586183992 -0.1192451765 0)
(0.001260734835 -0.127910826 0)
(0.001248079581 -0.1282336705 0)
(0.0009058627028 -0.1282237546 0)
(0.000873647539 -0.1291937819 0)
(0.000884671933 -0.1288706482 0)
(0.001312312322 -0.1266183959 0)
(0.00130037589 -0.1269415022 0)
(0.001287112809 -0.1272643884 0)
(0.001626749003 -0.127273446 0)
(0.001249342638 -0.142076808 0)
(0.001291205227 -0.1414387028 0)
(0.0006176383942 -0.1414235815 0)
(0.0005759654167 -0.1420615723 0)
(0.0006973698719 -0.1401449691 0)
(0.001369826064 -0.1401598768 0)
(-0.0006438794041 -0.140116765 0)
(0.00411963041 -0.1395874718 0)
(0.002758452105 -0.1395519429 0)
(0.001330790153 -0.1407994482 0)
(0.002185221331 -0.1376100368 0)
(0.002151972003 -0.1382517038 0)
(0.001477310134 -0.1382362494 0)
(-0.006896051106 -0.09259898023 0)
(-0.006915942321 -0.09324939615 0)
(-0.008279401791 -0.09320923454 0)
(-0.008259694187 -0.09255893321 0)
(-0.008318492305 -0.09450702428 0)
(-0.008882171825 -0.09058864296 0)
(-0.008199922159 -0.09060840907 0)
(-0.008239880993 -0.09190911551 0)
(-0.008921943444 -0.09188911479 0)
(-0.006876056102 -0.09194910793 0)
(-0.00890218845 -0.09123923529 0)
(-0.003223626882 -0.08544074822 0)
(-0.002879518152 -0.08544526173 0)
(-0.002513013364 -0.08510014319 0)
(-0.002489213768 -0.08475197061 0)
(-0.002933572793 -0.08680598583 0)
(-0.003281800989 -0.08680125854 0)
(0.006628555215 -0.08706142229 0)
(0.007996784093 -0.08711475339 0)
(0.008035074353 -0.08513161367 0)
(0.008023117286 -0.08579380711 0)
(0.007250493842 -0.08971566262 0)
(0.007267065996 -0.08906177786 0)
(0.006583744203 -0.08903571566 0)
(0.01001609842 -0.08850367913 0)
(0.009332769609 -0.08847985082 0)
(0.009297888286 -0.08978346633 0)
(0.001674374163 -0.1259796361 0)
(0.001333408328 -0.1259700581 0)
(0.001323015728 -0.1262943518 0)
(0.00136773482 -0.1243475195 0)
(0.001361176377 -0.1246719284 0)
(0.001710924721 -0.1246836318 0)
(0.002056181905 -0.1246942996 0)
(0.007597721868 -0.121606297 0)
(0.007573512991 -0.1222524995 0)
(0.007550396771 -0.1228983143 0)
(0.005466669958 -0.1241364488 0)
(0.005490831445 -0.1234898245 0)
(0.006870987585 -0.1228799547 0)
(0.006192585828 -0.1228620458 0)
(0.006168505965 -0.1235079518 0)
(0.006144351686 -0.1241543361 0)
(0.0069186763 -0.1215878283 0)
(0.006894642026 -0.1222342161 0)
(0.006095339313 -0.1254465429 0)
(0.006071194042 -0.1260926271 0)
(0.006045430506 -0.1267386027 0)
(0.006120441019 -0.1248006075 0)
(0.00544258469 -0.1247825348 0)
(0.005655056065 -0.118962827 0)
(0.005677839296 -0.1183161013 0)
(0.007034919399 -0.1183527082 0)
(0.00701207076 -0.1189996121 0)
(0.007080892724 -0.1170577076 0)
(0.007620857908 -0.1209598222 0)
(0.006941930543 -0.120941417 0)
(0.006989112926 -0.1196461524 0)
(0.007668031282 -0.1196648576 0)
(0.005632463651 -0.1196091981 0)
(0.00764457541 -0.1203119835 0)
(-0.001712715838 -0.1346243864 0)
(-0.001720883545 -0.1349486868 0)
(-0.001380924538 -0.1349577541 0)
(-0.001043425607 -0.1349658467 0)
(-0.003268877025 -0.1394262647 0)
(-0.003250013997 -0.1391064894 0)
(-0.001877148629 -0.1384918964 0)
(-0.00220847338 -0.1384865716 0)
(-0.002261116171 -0.1394484784 0)
(-0.002243133378 -0.1391286166 0)
(-0.002752003162 -0.07937996594 0)
(-0.002784147876 -0.08002704712 0)
(-0.002085001509 -0.08004072039 0)
(-0.002060910435 -0.079397241 0)
(-0.002140522712 -0.08133068384 0)
(-0.002872941279 -0.0813348392 0)
(0.0001094940634 -0.08134927786 0)
(-0.0006554567243 -0.08133631313 0)
(-0.005804525997 -0.08205748236 0)
(-0.005113934853 -0.08206706111 0)
(-0.005075599989 -0.08140123598 0)
(-0.005774221879 -0.08140049663 0)
(-0.003631202448 -0.08136440321 0)
(-0.003691308654 -0.08204185616 0)
(-0.003454428111 -0.0793678758 0)
(-0.003508807267 -0.08002660692 0)
(-0.003136676045 -0.08406891714 0)
(-0.003827951966 -0.08406314282 0)
(-0.003878906897 -0.08476084057 0)
(-0.003748387339 -0.08272448681 0)
(-0.005837079747 -0.08271938523 0)
(-0.005143967753 -0.08272381476 0)
(0.005990811307 -0.0837135284 0)
(0.0053014643 -0.08368111746 0)
(0.004605940936 -0.08364019121 0)
(0.00460285763 -0.08430787124 0)
(0.003144516408 -0.07956265562 0)
(0.003136314371 -0.08020999932 0)
(0.003832199079 -0.08023789214 0)
(0.003844072693 -0.07959187783 0)
(0.003857892263 -0.08156325937 0)
(0.003133736357 -0.08151385216 0)
(0.006002793119 -0.0817209109 0)
(0.005299106617 -0.0816748329 0)
(0.0009142823595 -0.08138216449 0)
(0.002418641452 -0.08147429605 0)
(0.002441155984 -0.0795327186 0)
(0.002428385556 -0.08017719856 0)
(0.0048911533 -0.08798646758 0)
(0.00489972412 -0.08765524271 0)
(0.004870761886 -0.08864814111 0)
(0.005218759381 -0.08865895121 0)
(0.005210386042 -0.08898759959 0)
(0.003531052828 -0.08593784486 0)
(0.004241087206 -0.08597012629 0)
(0.003900741141 -0.08493510877 0)
(0.003894474656 -0.08526979484 0)
(0.00389272635 -0.08561061683 0)
(0.004244795453 -0.08563143451 0)
(0.003849114205 -0.0872891856 0)
(0.003857866076 -0.08695713138 0)
(0.003494945148 -0.08695150044 0)
(0.00456702505 -0.08697976547 0)
(0.00491629391 -0.08700003663 0)
(0.004908562812 -0.08732749715 0)
(0.005307078326 -0.09880435931 0)
(0.005636316041 -0.09881490637 0)
(0.005684583499 -0.09751150665 0)
(0.005355735205 -0.09750079111 0)
(0.00496097574 -0.1092174449 0)
(0.005304130458 -0.1092273288 0)
(0.005342147047 -0.1079253029 0)
(0.004996920459 -0.1079148162 0)
(0.003596704607 -0.1195537131 0)
(0.003959074212 -0.1189167041 0)
(0.002558136345 -0.1195214456 0)
(0.002907024868 -0.1195325828 0)
(0.002912308267 -0.1192078354 0)
(0.002915685984 -0.1188831509 0)
(0.002848588634 -0.1214782224 0)
(0.002859244022 -0.1211547774 0)
(0.002868199537 -0.1208313414 0)
(0.002520402464 -0.1208200568 0)
(0.002923391664 -0.1185591368 0)
(0.002939107639 -0.1182365645 0)
(0.002580775373 -0.1182235222 0)
(0.004333278261 -0.1179559853 0)
(0.00399342067 -0.1179465006 0)
(0.003970374617 -0.1185935788 0)
(-0.008639048119 -0.1287601525 0)
(-0.008657526131 -0.1294055061 0)
(-0.007986556929 -0.1294249335 0)
(-0.007977232424 -0.1291024094 0)
(-0.007967057073 -0.1287795505 0)
(-0.007995261591 -0.1297468155 0)
(-0.007661989874 -0.1297562225 0)
(-0.01002380117 -0.1300111083 0)
(-0.009348749997 -0.1300305982 0)
(0.001836213315 -0.1305104791 0)
(0.001163368926 -0.1304948991 0)
(0.0004625757213 -0.1311248687 0)
(0.0008254709851 -0.1304865543 0)
(0.0008624575348 -0.1295170307 0)
(0.0008384982547 -0.130163721 0)
(0.001176295398 -0.1301718226 0)
(-0.008271729065 -0.1391057172 0)
(-0.008280993568 -0.139428243 0)
(-0.008284214037 -0.1397514909 0)
(-0.007960935706 -0.139759697 0)
(-0.01030642054 -0.1403408799 0)
(-0.009634109659 -0.1403596269 0)
(-0.008947355348 -0.1397333796 0)
(-0.009297414198 -0.1403690166 0)
(-0.009324434338 -0.1413388395 0)
(-0.009334478873 -0.141661342 0)
(-0.009306118315 -0.1406928805 0)
(-0.009642810172 -0.1406833708 0)
(-0.01023501418 -0.13775891 0)
(-0.009562234089 -0.1377780314 0)
(-0.008870692738 -0.1371503664 0)
(-0.008911744602 -0.1384434729 0)
(-0.007913533303 -0.1384711053 0)
(-0.008245373969 -0.1384620415 0)
(-0.008259244248 -0.1387839486 0)
(-0.005181310575 -0.09232340286 0)
(-0.005192447835 -0.09264869516 0)
(-0.005159183121 -0.09167491584 0)
(-0.005501691003 -0.09166469097 0)
(-0.004068532843 -0.09007615138 0)
(-0.004065213737 -0.09040501873 0)
(-0.004064807185 -0.09073287976 0)
(-0.003693151992 -0.09074704276 0)
(-0.005563235466 -0.09361384065 0)
(-0.005223128278 -0.09362381326 0)
(-0.005203434511 -0.09297477271 0)
(-0.004668296459 -0.08709704028 0)
(-0.004656109636 -0.08676539549 0)
(-0.003601153886 -0.0861175279 0)
(-0.003615234037 -0.08645582416 0)
(-0.004314752935 -0.0867767569 0)
(-0.00397155013 -0.08678363946 0)
(-0.003958574127 -0.08644891345 0)
(-0.003945475252 -0.0861146956 0)
(-0.004326404135 -0.0871069644 0)
(-0.003912964038 -0.08543560926 0)
(-0.003895401422 -0.08509634016 0)
(-0.003930106905 -0.08577629989 0)
(-0.003586437023 -0.08578042788 0)
(-0.003716340914 -0.08943027876 0)
(-0.004059825139 -0.08942156803 0)
(-0.00406784153 -0.08974832933 0)
(-0.00399330345 -0.0874484671 0)
(-0.004001752049 -0.08777982177 0)
(-0.00400909293 -0.08810868732 0)
(-0.003654685893 -0.08811904729 0)
(-0.00470243251 -0.08808923681 0)
(0.005439113751 -0.09358532427 0)
(0.005781086948 -0.09359775518 0)
(0.005814234498 -0.09228987764 0)
(0.005467974695 -0.09227839903 0)
(0.005117819508 -0.09226764425 0)
(0.005105036922 -0.09259492906 0)
(-0.005477562163 -0.1026831537 0)
(-0.005478116721 -0.1030064216 0)
(-0.005477110642 -0.1020355172 0)
(-0.006164296253 -0.1023391277 0)
(-0.00582231279 -0.1023492167 0)
(-0.005816345992 -0.1020255108 0)
(-0.006208347717 -0.1039533266 0)
(-0.006551867838 -0.1039430113 0)
(-0.005499988021 -0.1039753782 0)
(-0.005482093222 -0.1033296468 0)
(-0.005333663789 -0.09751185956 0)
(-0.005345029619 -0.09783576369 0)
(-0.005310899153 -0.09686495314 0)
(-0.005656371751 -0.09685445908 0)
(-0.005719297818 -0.09879461884 0)
(-0.005378558208 -0.09880473056 0)
(-0.005356244831 -0.09815925195 0)
(0.005165286058 -0.1040175161 0)
(0.005490692658 -0.1040264467 0)
(0.005519536077 -0.1027239051 0)
(0.005191898592 -0.1027146673 0)
(0.006855658621 -0.1034144392 0)
(0.006874831608 -0.1027639417 0)
(0.006194518237 -0.1027436932 0)
(0.006187516354 -0.1030688694 0)
(0.006178339968 -0.1033944608 0)
(0.006205649092 -0.1020930142 0)
(0.006199780048 -0.1024184647 0)
(0.005856084118 -0.1024082041 0)
(0.008255949589 -0.1021540407 0)
(0.007575096196 -0.102133776 0)
(0.006912833783 -0.1014623957 0)
(0.008173662998 -0.1047563434 0)
(0.007493580628 -0.1047364021 0)
(0.006835152967 -0.1040653171 0)
(0.00580998599 -0.104361361 0)
(0.006157588899 -0.1040455116 0)
(0.00614691065 -0.1043711179 0)
(0.006168678157 -0.1037202178 0)
(0.007014781301 -0.09820534615 0)
(0.007034055732 -0.09755347035 0)
(0.006355084036 -0.09753254148 0)
(0.006346433258 -0.09785862912 0)
(0.006336402424 -0.09818467532 0)
(0.006364029421 -0.09720664286 0)
(0.006025624519 -0.09719618086 0)
(0.008414582697 -0.09694325136 0)
(0.007733447309 -0.09692237764 0)
(0.008336315557 -0.0995496985 0)
(0.007655171161 -0.09952912479 0)
(0.006952681076 -0.1001594038 0)
(0.006994195826 -0.09885688231 0)
(0.005954313286 -0.09915098286 0)
(0.006313124044 -0.09883589038 0)
(0.006298542031 -0.09916149963 0)
(0.006284654823 -0.09948797054 0)
(0.006325838774 -0.09851046529 0)
(-0.006138064592 -0.1133245624 0)
(-0.00612481052 -0.1130019762 0)
(-0.006111637459 -0.1126796878 0)
(-0.006463821325 -0.1126686919 0)
(-0.006509051112 -0.1139599313 0)
(-0.006164596754 -0.1139703347 0)
(-0.006151330069 -0.1136473285 0)
(-0.006003136077 -0.1081561819 0)
(-0.005991866284 -0.107833476 0)
(-0.005980560491 -0.1075107712 0)
(-0.006320407866 -0.1075007463 0)
(-0.006361292268 -0.108791876 0)
(-0.006025087637 -0.1088016113 0)
(-0.006014297864 -0.108478891 0)
(0.004114346228 -0.1140580456 0)
(0.00409189901 -0.1147047814 0)
(0.005122705995 -0.1147353144 0)
(0.004782255587 -0.1147255717 0)
(0.004831093599 -0.1131061714 0)
(0.004481929064 -0.113095026 0)
(0.004476380465 -0.1134194051 0)
(0.004469831014 -0.1137441145 0)
(-0.006793276221 -0.1229971772 0)
(-0.007125433694 -0.1229878637 0)
(-0.007149862462 -0.1242809889 0)
(-0.006805834121 -0.1242913796 0)
(-0.006248541524 -0.1184944579 0)
(-0.00624814836 -0.1181707648 0)
(-0.006255754715 -0.1178464711 0)
(-0.006610809095 -0.117835269 0)
(-0.006959214012 -0.1178246268 0)
(-0.006991713094 -0.1191169091 0)
(-0.006635856483 -0.1191281954 0)
(-0.006269351847 -0.1191402819 0)
(-0.006256580192 -0.1188175611 0)
(0.002462441558 -0.1227618671 0)
(0.002471677879 -0.1224386798 0)
(0.003167562046 -0.1221353906 0)
(0.002826032188 -0.1221257957 0)
(0.002814783388 -0.1224488025 0)
(0.002804848642 -0.1227718487 0)
(0.003179201474 -0.1218119752 0)
(0.003436231859 -0.124083766 0)
(0.003460126955 -0.1234364131 0)
(0.002782237616 -0.1234186396 0)
(0.002770282555 -0.1237427663 0)
(0.00275944835 -0.1240665663 0)
(0.002793275829 -0.1230948458 0)
(0.002451513168 -0.1230850036 0)
(0.002092451674 -0.1233974461 0)
(0.001737287539 -0.123384499 0)
(0.00177165518 -0.1220893901 0)
(0.00212893679 -0.1221028212 0)
(-0.008116283394 -0.1339410757 0)
(-0.008126640554 -0.1342639891 0)
(-0.008135144845 -0.1345871985 0)
(-0.007804802438 -0.1345961572 0)
(-0.01016443704 -0.1351765548 0)
(-0.009491118733 -0.1351957525 0)
(-0.00880283373 -0.1345685302 0)
(-0.008834145376 -0.1358612686 0)
(-0.01009462552 -0.1325936962 0)
(-0.009420290776 -0.1326130445 0)
(-0.008728516078 -0.1319876086 0)
(-0.008766018074 -0.1332764976 0)
(-0.007755709699 -0.133305274 0)
(-0.008093477997 -0.1332956118 0)
(-0.008105026198 -0.1336181893 0)
(-0.0009932467909 -0.1336738551 0)
(-0.001338343765 -0.133663072 0)
(-0.006935253752 -0.1281627036 0)
(-0.007272646431 -0.1281529326 0)
(-0.007324864687 -0.1294433015 0)
(-0.007001641564 -0.1294517462 0)
(0.0003260850702 -0.1343494714 0)
(0.0003549393109 -0.1337043694 0)
(-0.0003158896415 -0.1336904714 0)
(-0.0003298673467 -0.1340131561 0)
(-0.000343972247 -0.1343354765 0)
(-0.0002872267968 -0.1330449433 0)
(-0.0003018441318 -0.1333677288 0)
(-0.0006389038569 -0.1333600698 0)
(0.001726228412 -0.1330897892 0)
(0.001054994485 -0.1330743776 0)
(0.0004116823474 -0.1324143165 0)
(-0.01038063566 -0.142924387 0)
(-0.009709752227 -0.1429426707 0)
(-0.00970047331 -0.1426196648 0)
(-0.009365877935 -0.1426289915 0)
(-0.00937557687 -0.1429519848 0)
(-0.009344759814 -0.1419837172 0)
(-0.009341086356 -0.1439333839 0)
(-0.009263282893 -0.144294378 0)
(-0.009381795661 -0.1432750825 0)
(-0.009715851013 -0.1432657721 0)
(-0.004483021523 -0.1439118255 0)
(-0.004815230703 -0.143906234 0)
(-0.004843580614 -0.1442219409 0)
(-0.00488914265 -0.1445306448 0)
(-0.004417116246 -0.1426268523 0)
(-0.00408549747 -0.1426317054 0)
(-0.00402717047 -0.1413453035 0)
(-0.004367015482 -0.1413366 0)
(-0.002628327363 -0.1400849216 0)
(-0.00363945976 -0.1400627868 0)
(-0.003298097297 -0.1400719563 0)
(-0.003283666565 -0.139748985 0)
(-0.003031510159 -0.1413616888 0)
(-0.003359795824 -0.1413578366 0)
(-0.003377502623 -0.1416783072 0)
(-0.003394906401 -0.1419984867 0)
(-0.003011429676 -0.1410417698 0)
(-0.003676502658 -0.1410303869 0)
(-0.01865239589 -0.1569300069 0)
(-0.01857482964 -0.1543469007 0)
(-0.0143720758 -0.1518870662 0)
(-0.01441086793 -0.1531789193 0)
(-0.01578594446 -0.1531376281 0)
(-0.01574715232 -0.151845775 0)
(-0.01712216885 -0.1518044857 0)
(-0.01700581046 -0.1479295264 0)
(-0.01708337671 -0.1505126326 0)
(-0.01433328366 -0.1505952131 0)
(-0.01024690623 -0.152010938 0)
(-0.01020811409 -0.1507190849 0)
(-0.007419216908 -0.1495098127 0)
(-0.00810673717 -0.1494891677 0)
(-0.008794245431 -0.149468523 0)
(-0.009481813695 -0.1494478765 0)
(-0.0094235745 -0.1475103986 0)
(-0.009462426637 -0.14880225 0)
(-0.007399859851 -0.1488641853 0)
(-0.008087350111 -0.1488435411 0)
(0.003348510502 -0.1575906564 0)
(0.003426076753 -0.1550075502 0)
(0.0007535439719 -0.1523412627 0)
(0.0007147518376 -0.1536331158 0)
(-0.0006603006868 -0.1535918253 0)
(0.009003865119 -0.1525890057 0)
(0.00625377207 -0.1525064251 0)
(0.00499505393 -0.1485901746 0)
(0.004956279813 -0.1498814277 0)
(0.00358124529 -0.1498401378 0)
(0.001606799188 -0.1356664134 0)
(0.0009358376521 -0.1356517307 0)
(0.000295594598 -0.1349932631 0)
(-0.0003734084946 -0.1349799605 0)
(-0.0007079601336 -0.1349729774 0)
(-0.0003580909495 -0.1346578566 0)
(0.00383835637 -0.1447128414 0)
(0.002449737407 -0.1446669396 0)
(0.001159512269 -0.143350733 0)
(-0.0009171002337 -0.1439373472 0)
(-0.0001949470174 -0.1433174479 0)
(-0.0002464224943 -0.1439514809 0)
(-9.967148404e-05 -0.1420457883 0)
(-0.0001459748162 -0.1426823789 0)
(-0.001465805219 -0.08198728586 0)
(-0.001523563453 -0.08264514679 0)
(-0.001143169543 -0.08263769359 0)
(-0.001160104774 -0.08296046957 0)
(-0.001553732043 -0.08297581921 0)
(6.291344831e-05 -0.08295232645 0)
(-0.0003450185835 -0.08294584238 0)
(-0.003088722448 -0.08338996961 0)
(-0.002723207239 -0.08337180596 0)
(-0.002352503694 -0.08335226065 0)
(-0.002328794381 -0.08301969467 0)
(-0.001966039231 -0.08301224631 0)
(-0.001994821883 -0.08334716431 0)
(-0.001944367167 -0.08268332464 0)
(-0.002097638937 -0.08437897111 0)
(-0.00201838685 -0.08367832329 0)
(-0.003114883774 -0.08373139237 0)
(-0.002756309039 -0.08371895991 0)
(0.003199543714 -0.08421613981 0)
(0.002846768115 -0.08419624981 0)
(0.002486256114 -0.08416919697 0)
(0.002485493226 -0.08451540259 0)
(0.001690138153 -0.08208206544 0)
(0.001694435125 -0.08273556792 0)
(0.002063077512 -0.08276106321 0)
(0.002068777206 -0.08309245235 0)
(0.00169090234 -0.0830610165 0)
(0.002451366243 -0.08313189718 0)
(0.002468890718 -0.08347729827 0)
(0.0005034104987 -0.08297253239 0)
(0.001317452495 -0.08303541889 0)
(0.001323520162 -0.08271155385 0)
(0.004574407769 -0.1098527062 0)
(0.004563190739 -0.1101768551 0)
(0.004204251034 -0.1104898417 0)
(-0.008340510079 -0.1184302584 0)
(-0.008359306122 -0.1190762029 0)
(-0.007680725616 -0.1190961592 0)
(-0.007670848475 -0.1187732313 0)
(-0.007661809568 -0.1184502182 0)
(-0.007690122736 -0.1194191014 0)
(-0.0073487651 -0.1194292317 0)
(-0.009734124932 -0.1196823293 0)
(-0.009055964443 -0.1197022729 0)
(-0.009660202616 -0.1170985732 0)
(-0.008981562107 -0.1171185312 0)
(-0.008321954047 -0.1177843066 0)
(-0.007643551746 -0.1178041974 0)
(-0.007302374118 -0.1178143223 0)
(-0.007652350644 -0.1181272177 0)
(-0.009952327598 -0.1274289002 0)
(-0.009276319991 -0.1274485389 0)
(-0.008620070267 -0.1281141534 0)
(-0.007598215494 -0.1278204123 0)
(-0.007946517356 -0.1281335382 0)
(-0.007936038389 -0.1278105684 0)
(-0.007956876317 -0.1284565117 0)
(-0.008273812302 -0.140399093 0)
(-0.008270184739 -0.1407242881 0)
(-0.008974828638 -0.1410262933 0)
(-0.008628679813 -0.1410368677 0)
(-0.006731696646 -0.1495304578 0)
(-0.006712357589 -0.1488848298 0)
(-0.005337269064 -0.1489261214 0)
(-0.005356632121 -0.1495717486 0)
(-0.005298824944 -0.1476342578 0)
(-0.004746678127 -0.1521761004 0)
(-0.004707885992 -0.1508842473 0)
(-0.006044164383 -0.1495511032 0)
(0.007163748233 -0.0929864592 0)
(0.007181664227 -0.09233382193 0)
(0.006499490236 -0.09231153571 0)
(0.006490474038 -0.09263779255 0)
(0.006481803441 -0.09296454021 0)
(0.006157701773 -0.09230175284 0)
(0.00856359882 -0.09172472622 0)
(0.007881479426 -0.09170262182 0)
(0.00849038739 -0.09433480846 0)
(0.007808724592 -0.09431349851 0)
(0.007145672594 -0.09364041293 0)
(0.006112875751 -0.09393454608 0)
(0.006464115388 -0.09361958659 0)
(0.006454397178 -0.09394522178 0)
(0.006473042211 -0.09329230612 0)
(-0.008189868754 -0.1132636109 0)
(-0.008208972016 -0.1139097864 0)
(-0.00958595632 -0.114516028 0)
(-0.008906837593 -0.1145360604 0)
(-0.005881646637 -0.1152709484 0)
(-0.006190988514 -0.1146162314 0)
(-0.006204136383 -0.1149388809 0)
(0.004186627533 -0.1117907384 0)
(0.004501211789 -0.112446874 0)
(0.00451661757 -0.1121236317 0)
(0.006513543937 -0.1138015199 0)
(0.006535321541 -0.1131542836 0)
(0.007916245101 -0.1125448573 0)
(0.007236681132 -0.1125256522 0)
(0.006687412845 -0.108613349 0)
(0.006707942466 -0.1079636729 0)
(0.006027460442 -0.1079450409 0)
(0.00601807828 -0.108269485 0)
(0.006008018073 -0.1085945094 0)
(0.006036475383 -0.1076208259 0)
(0.005693375874 -0.1076107034 0)
(0.008089255412 -0.1073552792 0)
(0.007409045831 -0.1073355744 0)
(0.008003534436 -0.1099519535 0)
(0.007323732259 -0.1099326813 0)
(0.006665763541 -0.1092643127 0)
(0.005634221888 -0.1095606456 0)
(0.005986179753 -0.1092457677 0)
(0.005974993913 -0.1095702778 0)
(0.005997274416 -0.108920294 0)
(-0.008490553726 -0.123595002 0)
(-0.008508327925 -0.1242409172 0)
(-0.007831847505 -0.1242608104 0)
(-0.007823828639 -0.1239377666 0)
(-0.007815387955 -0.1236146755 0)
(-0.007839140935 -0.1245836957 0)
(-0.007497363282 -0.1245938386 0)
(-0.009880075798 -0.1248467755 0)
(-0.009203053554 -0.1248666248 0)
(-0.009807391369 -0.1222642434 0)
(-0.00913000911 -0.1222841036 0)
(-0.008472059498 -0.1229491085 0)
(-0.007450328333 -0.1226554838 0)
(-0.007796886519 -0.1229685419 0)
(-0.007787312995 -0.1226457251 0)
(-0.007806405446 -0.1232915406 0)
(-0.006273655535 -0.1171978031 0)
(-0.006273271975 -0.1168742298 0)
(-0.005941662782 -0.1165600021 0)
(-0.005975594096 -0.1204415804 0)
(-0.006300388376 -0.1197852584 0)
(-0.006316706772 -0.1201076925 0)
(0.003412257586 -0.1247301556 0)
(0.002374799517 -0.1253509166 0)
(0.002386369339 -0.1250276192 0)
(0.002736627927 -0.1247129305 0)
(0.002724750886 -0.125036459 0)
(0.002712965055 -0.1253597499 0)
(0.002747861734 -0.124389623 0)
(-0.007995728733 -0.144684372 0)
(-0.007942412365 -0.1449628338 0)
(-0.007585541356 -0.1449615387 0)
(-0.007118856285 -0.1448380229 0)
(-0.01005248355 -0.1455522869 0)
(-0.009363937231 -0.1455723622 0)
(-0.008649943602 -0.144946993 0)
(-0.008998113949 -0.1449377391 0)
(-0.009050751762 -0.1446406802 0)
(-0.009019363535 -0.1423153915 0)
(-0.008681835246 -0.1423250465 0)
(-0.003797624204 -0.1432761687 0)
(-0.003776302265 -0.1429561069 0)
(-0.003432610258 -0.1426380981 0)
(-0.003452494535 -0.142958083 0)
(-0.003473089237 -0.1432779264 0)
(-0.003415275474 -0.1423176163 0)
(-0.002911775543 -0.1445608943 0)
(-0.002871414733 -0.1439198013 0)
(-0.00455470352 -0.1457161747 0)
(-0.005246207878 -0.1456930077 0)
(-0.005596250165 -0.1456788932 0)
(-0.005353371199 -0.1448021537 0)
(-0.005592166782 -0.1453529086 0)
(-0.004788863937 -0.1451001696 0)
(-0.005136254454 -0.145098146 0)
(-0.005240618467 -0.1453682695 0)
(-0.006686462768 -0.1449308822 0)
(-0.006591244184 -0.1446977191 0)
(-0.006865700482 -0.1446546449 0)
(-0.007064827281 -0.1447411526 0)
(0.0005491851084 -0.1285362086 0)
(0.0001981545312 -0.128523806 0)
(0.001008154313 -0.1246596461 0)
(0.001349837333 -0.1253219405 0)
(0.001354873532 -0.1249968253 0)
(-0.002061833788 -0.1349394096 0)
(-0.00174417375 -0.1355937157 0)
(-0.001730823096 -0.1352719131 0)
(-0.002499658473 -0.1375125986 0)
(-0.002837096809 -0.1375047481 0)
(-0.002558080967 -0.1388021807 0)
(-0.00289138877 -0.1387957754 0)
(0.004529409421 -0.08830643866 0)
(0.004173268966 -0.08829840488 0)
(0.004215625574 -0.08696744788 0)
(0.003880923666 -0.08629246902 0)
(0.003869712238 -0.08662643126 0)
(0.004593299099 -0.1095293884 0)
(0.002885964812 -0.1201827234 0)
(0.002897136272 -0.1198574922 0)
(0.003253762906 -0.1195435352 0)
(0.003679519441 -0.1169648189 0)
(0.003329564659 -0.1169541902 0)
(0.003639237954 -0.1182598703 0)
(0.003292137505 -0.1182487869 0)
(0.002959064564 -0.1179149602 0)
(-0.0002080049032 -0.130455701 0)
(-0.0001991495729 -0.1301316013 0)
(0.00050907343 -0.1298312051 0)
(0.0001629174158 -0.1298202701 0)
(-0.008614438241 -0.1397425958 0)
(-0.008280472419 -0.1400748878 0)
(-0.008215953887 -0.1378162959 0)
(-0.00823076204 -0.138139436 0)
(-0.008578231074 -0.1384528271 0)
(-0.004087654753 -0.09138434799 0)
(-0.004107147331 -0.09170848854 0)
(-0.004826291412 -0.09200957783 0)
(-0.004479180152 -0.09202030127 0)
(-0.004780838137 -0.09070849586 0)
(-0.004427384633 -0.09072001032 0)
(-0.004072461327 -0.0910591775 0)
(-0.004892943077 -0.0946094072 0)
(-0.004535510203 -0.09462080092 0)
(-0.004875259607 -0.09330971345 0)
(-0.004539409586 -0.09331925794 0)
(-0.004031689593 -0.08876739989 0)
(-0.004046590227 -0.08909541986 0)
(-0.00440420131 -0.08941316082 0)
(0.005145838201 -0.09161236757 0)
(0.005133562016 -0.09194038826 0)
(0.004763948349 -0.0922574385 0)
(-0.005133048258 -0.1023699742 0)
(-0.004790464176 -0.1023802614 0)
(-0.005124939516 -0.1010747374 0)
(-0.004800794769 -0.1010836901 0)
(-0.005172971987 -0.1049551115 0)
(-0.004804657674 -0.1049671323 0)
(-0.005118197626 -0.1036648194 0)
(-0.004737989634 -0.1036775576 0)
(-0.004972304183 -0.09719888554 0)
(-0.004616597578 -0.09721016737 0)
(-0.004919916034 -0.09590545884 0)
(-0.004552232954 -0.09591770086 0)
(-0.005075672175 -0.0997840396 0)
(-0.00474180764 -0.09979370464 0)
(-0.005024415726 -0.09849250072 0)
(-0.004679895366 -0.09850290614 0)
(-0.005235337765 -0.1062418126 0)
(-0.004880625399 -0.1062530045 0)
(0.003750182144 -0.1143696142 0)
(0.003393372735 -0.1143568579 0)
(0.003725521611 -0.1156682577 0)
(0.003383335925 -0.1156587031 0)
(-0.005895667335 -0.1178580647 0)
(-0.0062666096 -0.1175219598 0)
(-0.006284405993 -0.1194628141 0)
(-0.005896189947 -0.1191528686 0)
(-0.009042561691 -0.143609935 0)
(-0.008710380829 -0.1436196696 0)
(-0.004782812435 -0.143265443 0)
(-0.004767113288 -0.142943831 0)
(0.01697277808 -0.08415878683 0)
(0.01560325006 -0.08411071971 0)
(0.01428878224 -0.08143304142 0)
(0.01425763368 -0.0827383485 0)
(0.01563407697 -0.08280012399 0)
(0.01700363382 -0.08284723107 0)
(0.01291873564 -0.08138624394 0)
(0.02215018802 -0.07902075304 3.528843884e-13)
(0.01978148212 -0.08022509659 3.586575481e-13)
(0.01514929047 -0.1372737514 3.590044928e-13)
(0.01526418868 -0.1347361188 0)
(0.01253459108 -0.1346610001 0)
(0.01247860833 -0.1359493341 0)
(0.01258834294 -0.1333729593 0)
(0.01122623344 -0.1333358411 0)
(0.02031662626 -0.1287894246 3.495814749e-13)
(0.01802283736 -0.131603945 3.574085472e-13)
(-0.001759581279 -0.1359150962 0)
(-0.002117823127 -0.1362271429 0)
(0.005266181542 -0.1293031009 0)
(0.00529197445 -0.1286581471 0)
(0.005995612332 -0.1280296443 0)
(0.005969908799 -0.1286756216 0)
(0.005944041474 -0.1293210536 0)
(0.006021121444 -0.1273841415 0)
(0.007197057115 -0.1319372083 0)
(0.00725008299 -0.1306473441 0)
(-0.0007991368068 -0.08327813784 0)
(-0.0008386686512 -0.08360602474 0)
(-0.001684675885 -0.08400090248 0)
(-0.001300917044 -0.08397259057 0)
(0.001731713533 -0.08408652481 0)
(0.001337587003 -0.0840417008 0)
(0.0008930089743 -0.08332180935 0)
(0.000895869957 -0.08365293308 0)
(0.006700508299 -0.08243124546 0)
(0.007386428035 -0.08245679112 0)
(0.008786088182 -0.08120540017 0)
(0.008799854734 -0.07988494735 0)
(0.0080447488 -0.08446743588 0)
(0.007376455439 -0.08311489784 0)
(0.00736986876 -0.08378024697 0)
(0.008058011481 -0.08381176294 0)
(0.006688845176 -0.08308564999 0)
(0.005201101584 -0.08931559001 0)
(0.004838646072 -0.08963565983 0)
(-0.008038367575 -0.1080963285 0)
(-0.00805739642 -0.1087420259 0)
(-0.00943610458 -0.1093476752 0)
(-0.008756085816 -0.1093677346 0)
(-0.009360831035 -0.1067649205 0)
(-0.008680392254 -0.1067849926 0)
(-0.008019340531 -0.1074506912 0)
(0.0001232905336 -0.1311161219 0)
(-0.0002133927199 -0.1307809257 0)
(0.002613761847 -0.1279446086 0)
(0.003236635626 -0.1292523066 0)
(0.003262711752 -0.1286071212 0)
(-0.008531187972 -0.1371602008 0)
(-0.008201022125 -0.1374930393 0)
(0.004802003489 -0.09095012873 0)
(0.005152379917 -0.09128531575 0)
(-0.009511253972 -0.1119322953 0)
(-0.00883147702 -0.1119524075 0)
(-0.008170843512 -0.1126180335 0)
(-0.006085776152 -0.1120348562 0)
(-0.006073558916 -0.1117119986 0)
(-0.005692609746 -0.1114010542 0)
(-0.005703227756 -0.1101046545 0)
(-0.006042924235 -0.1094474045 0)
(-0.006047670569 -0.1097706666 0)
(-0.008142567445 -0.1352343854 0)
(-0.008143285829 -0.135558309 0)
(-0.008493145953 -0.135871328 0)
(-0.0002734428843 -0.1327217123 0)
(7.63488915e-05 -0.1324067694 0)
(0.0009443817121 -0.1272543971 0)
(0.001273568907 -0.1275876266 0)
(0.008632629346 -0.08910787618 0)
(0.007949931008 -0.08908505173 0)
(0.00728252314 -0.08840302506 0)
(0.00729842193 -0.08774756461 0)
(0.001342974679 -0.1256462801 0)
(0.0009900874052 -0.1259601091 0)
(0.004597129997 -0.08229581254 0)
(0.004605152152 -0.08297105926 0)
(0.003901848409 -0.08358943462 0)
(0.00390396165 -0.0842620596 0)
(0.003902319627 -0.08459774214 0)
(0.00355212176 -0.0842390087 0)
(0.003212055672 -0.1208416668 0)
(0.002876411634 -0.1205074627 0)
(-0.004357893285 -0.08809881401 0)
(-0.004018687399 -0.08843800168 0)
(-0.00575161428 -0.1126912193 0)
(-0.006098572403 -0.1123573961 0)
(-0.006177817238 -0.1142934024 0)
(-0.005816935868 -0.1139809546 0)
(-0.005640497107 -0.1075208025 0)
(-0.005957962706 -0.1068654212 0)
(-0.005969254697 -0.1071880664 0)
(-0.006034967174 -0.109124419 0)
(-0.005692317544 -0.1088111234 0)
(0.004489368336 -0.1127708839 0)
(0.004125384855 -0.113082638 0)
(-0.00846830016 -0.1345779151 0)
(-0.008140472608 -0.1349106233 0)
(-0.00807036844 -0.1326520189 0)
(-0.008081886011 -0.1329735763 0)
(-0.008430046246 -0.1332859857 0)
(-0.00479777413 -0.1435862963 0)
(-0.005168113521 -0.1438925146 0)
(-0.003326323263 -0.1407153355 0)
(-0.00331206958 -0.1403938603 0)
(-0.002961726989 -0.1400791742 0)
(0.002476648749 -0.08381894082 0)
(0.002115461474 -0.08413177588 0)
(-0.008298173108 -0.1449563549 0)
(-0.007981072114 -0.1456042782 0)
(-0.007962624174 -0.1452799262 0)
(-0.006647798696 -0.1456226938 0)
(-0.006663593603 -0.1452774948 0)
(-0.005851309848 -0.1450766741 0)
(-0.006324690796 -0.1449735756 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-1.078391988e-06 -1.539404891e-06 2.775557562e-17)
(-2.498092391e-05 -4.145914687e-05 5.273559367e-16)
(0 0 0)
(-8.61122499e-05 -0.0002119069438 2.706168623e-15)
(-9.362637053e-05 -0.0003037346548 3.885780586e-15)
(-7.996618879e-05 -0.0003805745188 4.857225733e-15)
(-2.655607679e-06 -1.143486877e-05 1.665334537e-16)
(-6.339265646e-06 -0.0004487295136 5.731526365e-15)
(3.611148917e-05 -0.0004313434782 5.50948176e-15)
(6.932889655e-05 -0.0003820396973 4.871103521e-15)
(2.313737718e-06 -1.16453955e-05 1.665334537e-16)
(8.063462375e-05 -0.0002140139528 2.733924198e-15)
(5.702586881e-05 -0.0001202013463 1.540434447e-15)
(2.448823887e-05 -4.280611319e-05 5.412337245e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.00044672827 -0.0005128763196 4.801714582e-15)
(-0.0009159530068 -0.001146483285 1.072752998e-14)
(-0.001424451967 -0.001960647513 1.836031327e-14)
(-0.0005829110751 -0.0007477130811 7.494005416e-15)
(-0.0001034943393 -0.0001231485361 1.33226763e-15)
(-0.00226728366 -0.003902014104 3.656797087e-14)
(-0.002500010599 -0.004920283653 4.612976667e-14)
(-0.002569643563 -0.005906205416 5.537237335e-14)
(-0.001588860318 -0.003389536139 3.40283357e-14)
(-0.0008156260501 -0.001608228453 1.738886812e-14)
(-0.002200910701 -0.00761015389 7.134570712e-14)
(-0.001788623119 -0.008261160068 7.742417818e-14)
(-0.001259900041 -0.00874704095 8.193445922e-14)
(-0.0008672805551 -0.005496843925 5.516420654e-14)
(-0.0005270617917 -0.003042501809 3.28903571e-14)
(1.995787613e-07 -0.009154398385 8.568146193e-14)
(0.0006485749312 -0.009061487826 8.476552793e-14)
(0.001253188943 -0.008774756159 8.204548152e-14)
(0.0008248584824 -0.005512229137 5.524747326e-14)
(0.000481706382 -0.003050391455 3.294586826e-14)
(0.002177899354 -0.007655882355 7.152611836e-14)
(0.002436365858 -0.006863246828 6.410150188e-14)
(0.002533179945 -0.005955296037 5.560829575e-14)
(0.001548667899 -0.003415999806 3.420874695e-14)
(0.0007881744324 -0.001621328207 1.749989043e-14)
(0.002231750372 -0.003942717592 3.681777105e-14)
(0.001865827095 -0.002931385551 2.738087534e-14)
(0.001405721449 -0.001988007764 1.856848009e-14)
(0.0005761058556 -0.0007612501768 7.632783294e-15)
(0.0001041153189 -0.0001278103561 1.387778781e-15)
(0.0004471433034 -0.0005266770278 4.926614672e-15)
(0.0001115362735 -0.0001211942663 1.1379786e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0005928495291 -0.0006492717353 4.801714582e-15)
(-0.001551002176 -0.001811021189 1.336430966e-14)
(-0.002771726665 -0.003466978574 2.561839629e-14)
(-0.001589412742 -0.00188232347 1.466882171e-14)
(-0.0006997320041 -0.0007822312671 6.453171331e-15)
(-0.005396531622 -0.007882529922 5.834221994e-14)
(-0.006542610496 -0.01043899098 7.732703367e-14)
(-0.007445728268 -0.01309444994 9.706124793e-14)
(-0.005655669326 -0.00940128167 7.351064202e-14)
(-0.004015401866 -0.006289384341 5.202782649e-14)
(-0.00828254461 -0.01832777079 1.359606872e-13)
(-0.008163272814 -0.02074523051 1.539046668e-13)
(-0.007690194461 -0.02294560112 1.701971897e-13)
(-0.006322203769 -0.01776780479 1.39041556e-13)
(-0.004982323947 -0.0131420064 1.08829612e-13)
(-0.00580332486 -0.02650418013 1.963984531e-13)
(-0.0044822629 -0.02779926524 2.058353488e-13)
(-0.00298448049 -0.02874762315 2.126632204e-13)
(-0.002561340713 -0.02289795183 1.787875403e-13)
(-0.002124014941 -0.01752768095 1.448979825e-13)
(0.00029558367 -0.02955657246 2.182143355e-13)
(0.001951969959 -0.02940673441 2.168820679e-13)
(0.003536061094 -0.02888763408 2.128575094e-13)
(0.002921047631 -0.0230005683 1.78940196e-13)
(0.002319451445 -0.01759870168 1.450367604e-13)
(0.006245569213 -0.02674872005 1.9673152e-13)
(0.007259039431 -0.02515154774 1.848660114e-13)
(0.007981374686 -0.02323453036 1.706829122e-13)
(0.006482787771 -0.01797192967 1.394717675e-13)
(0.0050423787 -0.0132779697 1.092043123e-13)
(0.008422697884 -0.01859647414 1.365435542e-13)
(0.008116835337 -0.01599149219 1.174338404e-13)
(0.007477205661 -0.01329781134 9.767187059e-14)
(0.005648926525 -0.00953597857 7.402412017e-14)
(0.00398997823 -0.006373724596 5.244416013e-14)
(0.005383620575 -0.00800845267 5.889733146e-14)
(0.004083757993 -0.005611945838 4.130029652e-14)
(0.002757586855 -0.003519226464 2.592370762e-14)
(0.00158899995 -0.001922564113 1.496025526e-14)
(0.0007044072475 -0.0008050906516 6.633582572e-15)
(0.0006982123949 -0.0007779294566 5.717648577e-15)
(0.0001116302964 -0.0001170520425 8.604228441e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0003297124478 -0.0003685208833 2.234323837e-15)
(-0.001418403347 -0.001671989593 1.015854068e-14)
(-0.0007204724386 -0.0008121720283 5.162537065e-15)
(-0.0001713100995 -0.0001843923643 1.221245327e-15)
(-0.005090487702 -0.006740039185 4.105049634e-14)
(-0.007264452805 -0.01025743068 6.258882301e-14)
(-0.009162448269 -0.01387678352 8.484879466e-14)
(-0.007461163303 -0.01082147608 6.916689443e-14)
(-0.005774532937 -0.007993139711 5.3498872e-14)
(-0.01292099422 -0.0229313804 1.405819905e-13)
(-0.01418285058 -0.02753665053 1.689481888e-13)
(-0.01493218336 -0.03200244996 1.964539642e-13)
(-0.01311918466 -0.02686608197 1.72334369e-13)
(-0.01123392152 -0.02192523731 1.472572064e-13)
(-0.01480234892 -0.04003948221 2.45845011e-13)
(-0.01395757832 -0.04343591516 2.666200594e-13)
(-0.01265752828 -0.04634778935 2.843558722e-13)
(-0.01155813919 -0.04041535598 2.591676873e-13)
(-0.01034427118 -0.03442598263 2.312039449e-13)
(-0.008982217809 -0.05066269738 3.103073354e-13)
(-0.006760523648 -0.05210268238 3.187866637e-13)
(-0.004379784014 -0.05311331829 3.24587579e-13)
(-0.00408692729 -0.04730824562 3.022720962e-13)
(-0.003753393273 -0.04116250033 2.755295991e-13)
(0.0006144802785 -0.05398522422 3.290978601e-13)
(0.003121797158 -0.05388254722 3.280431482e-13)
(0.005567916022 -0.05341142871 3.247541125e-13)
(0.005177723723 -0.04757161368 3.024525075e-13)
(0.004692637489 -0.04138582652 2.757238882e-13)
(0.01004897057 -0.0512118802 3.106404023e-13)
(0.01195238051 -0.04938573344 2.992467385e-13)
(0.01352572979 -0.04703039113 2.847166947e-13)
(0.01229781731 -0.04101755184 2.59708921e-13)
(0.01093956469 -0.0349221608 2.317729342e-13)
(0.01554185654 -0.04106656391 2.482875017e-13)
(0.01576372475 -0.0372107389 2.249034292e-13)
(0.01544910501 -0.032920375 1.989103326e-13)
(0.01334662393 -0.02732358245 1.728339694e-13)
(0.01139208372 -0.02231564282 1.479927292e-13)
(0.01344263676 -0.02399561744 1.448424714e-13)
(0.01180056685 -0.01949555793 1.177391518e-13)
(0.009828037112 -0.01510663637 9.131584378e-14)
(0.007902981157 -0.01162470973 7.353839759e-14)
(0.006043714942 -0.008490561512 5.637157408e-14)
(0.00545551126 -0.00735318058 4.454769886e-14)
(0.003391645779 -0.004304193542 2.609024108e-14)
(0.001662947935 -0.00199335616 1.210143097e-14)
(0.00089805628 -0.001029701174 6.536438057e-15)
(0.0003381865661 -0.0003701451201 2.47024623e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001866941307 -0.0002301779135 1.151856388e-15)
(-0.000394194834 -0.0005033458314 2.414735079e-15)
(-1.622088227e-06 -1.856984557e-06 0)
(-0.0008469514406 -0.001056414988 5.467848396e-15)
(-0.002757244145 -0.003616569997 1.870725796e-14)
(-0.005184523047 -0.007171369436 3.715083796e-14)
(-0.004202260185 -0.005598221225 3.010092176e-14)
(-0.003213337195 -0.004116673581 2.302324997e-14)
(-0.01097712813 -0.01705768163 8.858191958e-14)
(-0.01386169774 -0.02296976036 1.194461197e-13)
(-0.01645506856 -0.02921832385 1.521144322e-13)
(-0.01485795974 -0.02541371847 1.373484659e-13)
(-0.0131232817 -0.02158649805 1.212918654e-13)
(-0.02013240024 -0.04177031915 2.178257574e-13)
(-0.02101086268 -0.04762372061 2.484956685e-13)
(-0.02118525504 -0.05292110002 2.762512441e-13)
(-0.01999928746 -0.04817710515 2.613742556e-13)
(-0.01837899618 -0.04266836387 2.409739075e-13)
(-0.01961865491 -0.06166037744 3.221312106e-13)
(-0.01785635268 -0.06450317639 3.370081991e-13)
(-0.0157384151 -0.06672476194 3.484434963e-13)
(-0.01519402434 -0.06240916023 3.386180225e-13)
(-0.01445821129 -0.05739124112 3.23935323e-13)
(-0.01061141478 -0.06877161002 3.585742814e-13)
(-0.007831245869 -0.06893677563 0)
(-0.005048976779 -0.06900903177 0)
(-0.004959061934 -0.06635499896 3.586297925e-13)
(-0.004821712706 -0.06282816116 3.531896997e-13)
(0.0004579502932 -0.06916808941 0)
(0.003216703962 -0.06925147056 0)
(0.006007204984 -0.06933838747 0)
(0.006052069908 -0.0666878787 3.586575481e-13)
(0.006006528396 -0.06316308819 3.532729664e-13)
(0.01159630012 -0.06944883856 3.586575481e-13)
(0.0142558237 -0.06896003778 3.55590557e-13)
(0.01668980182 -0.06774310182 3.487349298e-13)
(0.01618114603 -0.0633850484 3.391037451e-13)
(0.01552303989 -0.05847527018 3.254480019e-13)
(0.0204425841 -0.06299593819 3.231859225e-13)
(0.02152440977 -0.05931823154 3.040762087e-13)
(0.0219680258 -0.05477175813 2.806921362e-13)
(0.02063703127 -0.04952229385 2.63636335e-13)
(0.01907760442 -0.04401942765 2.439021207e-13)
(0.02080719007 -0.04357317107 2.233768726e-13)
(0.01922611108 -0.03726922053 1.911804048e-13)
(0.01706763865 -0.0307874046 1.580680031e-13)
(0.01542931354 -0.02679637661 1.429412144e-13)
(0.01364558688 -0.02278695526 1.265099137e-13)
(0.0115461668 -0.01827018208 9.398037903e-14)
(0.008541876422 -0.01272856823 6.55586696e-14)
(0.005428472505 -0.007642218828 3.939903959e-14)
(0.00462991813 -0.006274795598 3.362587986e-14)
(0.003584020865 -0.004669917255 2.603472993e-14)
(0.0004191211669 -0.0005244162722 2.609024108e-15)
(0 0 0)
(0 0 0)
(1.328594677e-05 -1.643344713e-05 8.326672685e-17)
(0 0 0)
(-6.400924091e-05 -8.617201802e-05 3.885780586e-16)
(-0.001048758305 -0.001477827625 6.439293543e-15)
(-0.001189174483 -0.001728129399 7.299716387e-15)
(-0.0006281125061 -0.0008296608455 3.858025011e-15)
(-0.002711904539 -0.003882529793 1.748601264e-14)
(-0.00534890778 -0.008051322957 3.629041512e-14)
(-0.008500885042 -0.01349039729 6.086797733e-14)
(-0.00774697912 -0.01189978244 5.548339566e-14)
(-0.006856930729 -0.01018390962 4.912736884e-14)
(-0.01526674367 -0.0271985667 1.230543445e-13)
(-0.01837572639 -0.0348937256 1.580680031e-13)
(-0.02101627082 -0.04273809023 1.937894289e-13)
(-0.01998339502 -0.0393560114 1.844358e-13)
(-0.01911425354 -0.03641488668 1.765670943e-13)
(-0.02429719228 -0.05763628282 2.617073225e-13)
(-0.0247708487 -0.06411705128 2.912114994e-13)
(-0.02454107767 -0.06990261359 3.175376628e-13)
(-0.02398432857 -0.06624919047 3.110567359e-13)
(-0.02324840087 -0.06219169745 3.021333184e-13)
(-0.02171789841 -0.07735897992 3.510941537e-13)
(-0.01940714602 -0.07896505808 3.581024366e-13)
(-0.01671993136 -0.07925920033 0)
(-0.01662058268 -0.07665152317 3.591016373e-13)
(-0.01646631002 -0.07385005786 3.582550923e-13)
(0.0002293487983 -0.07686059737 0)
(0.001649056377 -0.07690256813 0)
(0.00310035798 -0.07695521677 0)
(0.003121377197 -0.0756694362 0)
(0.003140430117 -0.07438413709 0)
(0.02395413931 -0.0763080195 3.404776461e-13)
(0.02507711222 -0.07218044108 3.217981437e-13)
(0.02460345556 -0.06841106341 3.153172168e-13)
(0.02394255124 -0.06425664406 3.064493104e-13)
(0.0251719198 -0.06074588144 2.70700129e-13)
(0.02402711038 -0.05363791511 2.391142839e-13)
(0.0221339288 -0.04595568101 2.050026815e-13)
(0.02098070673 -0.04212433131 1.942335182e-13)
(0.01958526517 -0.03798468753 1.812994199e-13)
(0.01654340703 -0.03010644855 1.345729084e-13)
(0.01318355866 -0.02258637034 1.010858064e-13)
(0.009736787823 -0.01575385567 7.059630658e-14)
(0.008828537568 -0.01381999618 6.400435737e-14)
(0.007782338725 -0.01177359846 5.644096301e-14)
(0.001725257139 -0.002467682876 1.074140776e-14)
(0.0001970629652 -0.0002605691969 1.165734176e-15)
(0.000314429575 -0.0004291798072 1.873501354e-15)
(0.0004161888591 -0.000585915637 2.47024623e-15)
(8.718883152e-05 -0.000111564002 5.134781489e-16)
(-0.0002340034319 -0.0003545965047 1.373900993e-15)
(-0.001564781605 -0.002481355252 9.603429163e-15)
(-0.001684626831 -0.002745784359 1.033895192e-14)
(-0.001262936642 -0.001891021991 7.757683385e-15)
(-0.003804996628 -0.006150386946 2.450817327e-14)
(-0.006813508101 -0.01157566294 4.617140004e-14)
(-0.01027273367 -0.01839425377 7.345513087e-14)
(-0.009699763672 -0.0168744764 6.937506125e-14)
(-0.009493145598 -0.01603231255 6.793177132e-14)
(-0.01741331797 -0.03497014607 1.399852456e-13)
(-0.02058346971 -0.0440300453 1.764421942e-13)
(-0.02320196205 -0.05310795651 2.130240428e-13)
(-0.02264790637 -0.0503949762 2.081390615e-13)
(-0.02235384698 -0.04831235265 2.056549375e-13)
(-0.02621247999 -0.06984208457 2.804284582e-13)
(-0.02645601408 -0.07681721429 3.084615896e-13)
(-0.02585259586 -0.08247369533 3.311101393e-13)
(-0.02559520867 -0.07947754362 3.286260153e-13)
(-0.02537463098 -0.07662618923 3.266137361e-13)
(0.01276645685 -0.08794142226 0)
(0.01413367522 -0.08798640519 0)
(0.01416671663 -0.08667606214 0)
(0.01420002334 -0.08536688436 0)
(0.02452217558 -0.08920942805 3.522737657e-13)
(0.02618461312 -0.08593327114 3.391176229e-13)
(0.02605391043 -0.08283552383 3.365779877e-13)
(0.02590014723 -0.0797221798 3.337607968e-13)
(0.02717844349 -0.07457400001 2.94181346e-13)
(0.02640083902 -0.06693412077 2.641081798e-13)
(0.02478670453 -0.05838660172 2.304961777e-13)
(0.0240744649 -0.05500666963 2.236266727e-13)
(0.02368787276 -0.05246396634 2.197825255e-13)
(0.01941923663 -0.04002941932 1.583039255e-13)
(0.01597909902 -0.03098876214 1.22693522e-13)
(0.01232038751 -0.02255405313 8.940070906e-14)
(0.01137395991 -0.02021176209 8.250344852e-14)
(0.01102933249 -0.01901087347 7.999156892e-14)
(0.00282860439 -0.004557231738 1.761091273e-14)
(0.0007812241432 -0.001167215552 4.635181128e-15)
(0.0008771232304 -0.001348226944 5.218048216e-15)
(0.0009126230307 -0.001442065509 5.426215033e-15)
(0.0006364186039 -0.0009234432372 3.774758284e-15)
(-0.0003933003751 -0.000662384118 2.303712776e-15)
(-0.001932321461 -0.003405224373 1.185163079e-14)
(-0.002010823223 -0.003632260578 1.233735336e-14)
(-0.001776158611 -0.002973340596 1.090794122e-14)
(-0.004308695089 -0.007761876982 2.774169783e-14)
(-0.007456122333 -0.01411452778 5.050126983e-14)
(-0.01101486976 -0.02196726557 7.868705687e-14)
(-0.01084871955 -0.02108460845 7.752132269e-14)
(-0.01065060721 -0.02015752766 7.611966613e-14)
(-0.01825402368 -0.04078204212 1.463829058e-13)
(-0.02142728856 -0.05095079648 1.83061899e-13)
(-0.02402287444 -0.06106769647 2.195743587e-13)
(-0.02384464953 -0.05911326098 2.181865799e-13)
(-0.02363607537 -0.0571030077 2.165351232e-13)
(-0.02692557127 -0.07949484487 2.861044734e-13)
(-0.02709234132 -0.08704852651 3.133049375e-13)
(-0.0264022491 -0.09306577272 3.348848976e-13)
(-0.02628192597 -0.09046079146 3.341632526e-13)
(-0.02614944363 -0.08782236649 3.33288952e-13)
(0.01246569691 -0.09837130996 0)
(0.0138305604 -0.09841271486 0)
(0.01387032968 -0.09711032114 0)
(0.01390960812 -0.09580827303 0)
(0.02440773627 -0.1002204336 3.551603456e-13)
(0.02625518195 -0.09709058237 3.438777041e-13)
(0.02630420123 -0.09450211243 3.435168816e-13)
(0.02630050632 -0.09174123901 3.425038031e-13)
(0.02762029398 -0.08514429709 3.014533068e-13)
(0.02700760262 -0.07682775833 2.720462744e-13)
(0.02553146639 -0.06740276369 2.38781217e-13)
(0.02547935577 -0.06544177959 2.37934672e-13)
(0.02526447928 -0.06308796802 2.355893258e-13)
(0.02032203119 -0.04685729316 1.662558979e-13)
(0.01689270898 -0.03661734209 1.300487495e-13)
(0.01319342649 -0.02697712834 9.592326933e-14)
(0.01309214326 -0.02606692757 9.513223542e-14)
(0.01279893317 -0.02479615866 9.295342274e-14)
(0.003088215506 -0.005535217029 1.924849169e-14)
(0.001055565643 -0.001759097358 6.272760089e-15)
(0.001029206721 -0.001759607505 6.133982211e-15)
(0.0009449292418 -0.00165626351 5.63438185e-15)
(0.001016801527 -0.001650573071 6.050715484e-15)
(-0.0005797744445 -0.001074213427 3.400058013e-15)
(-0.002314783865 -0.004487434102 1.421085472e-14)
(-0.002418715678 -0.00479547919 1.483535517e-14)
(-0.002108342531 -0.003901361961 1.293409824e-14)
(-0.004824258518 -0.009580724312 3.105848911e-14)
(-0.008093226691 -0.01688403048 5.478950627e-14)
(-0.01173851244 -0.0257880305 8.375244942e-14)
(-0.0115325557 -0.0247527921 8.230915949e-14)
(-0.01133754814 -0.02376064921 8.094913628e-14)
(-0.01905144876 -0.04682796965 1.523781101e-13)
(-0.02221824154 -0.05807758829 1.891542478e-13)
(-0.02478383683 -0.0691931785 2.255140519e-13)
(-0.02457175861 -0.06707394965 2.238487173e-13)
(-0.02436892808 -0.06500122506 2.22238894e-13)
(-0.02757370473 -0.08920885243 2.909616992e-13)
(-0.02766624977 -0.09728532743 3.173156182e-13)
(-0.02689559299 -0.1036117487 3.378824998e-13)
(-0.02676518233 -0.100935521 3.370637103e-13)
(-0.02663747784 -0.09827940395 3.362587986e-13)
(0.01213183826 -0.1087694488 0)
(0.01349513394 -0.108809065 0)
(0.01353801236 -0.1075131306 0)
(0.01358105222 -0.1062158198 0)
(0.02394189525 -0.1098870429 3.532590886e-13)
(0.02567914187 -0.1059408182 3.404221349e-13)
(0.0258831065 -0.1039895698 3.420735917e-13)
(0.02601941284 -0.1017513397 3.4283687e-13)
(0.02669100367 -0.09147439651 2.938621568e-13)
(0.02594662087 -0.08193915744 2.632893903e-13)
(0.02461770643 -0.07205676213 2.316341563e-13)
(0.02503627605 -0.0714851425 2.352285033e-13)
(0.02519706762 -0.0701344791 2.363803597e-13)
(0.01941712769 -0.04953433727 1.594557819e-13)
(0.01603254989 -0.03841934147 1.237898672e-13)
(0.01240682747 -0.02802732133 9.039990978e-14)
(0.0127538003 -0.02812921517 9.287015601e-14)
(0.0128691134 -0.02769396024 9.366118991e-14)
(0.00238771942 -0.00471154384 1.489086632e-14)
(0.0008240199011 -0.001515343371 4.898859096e-15)
(0.0006316035645 -0.001188732561 3.747002708e-15)
(0.0004998962443 -0.0009623699985 2.969846591e-15)
(0.0009154735709 -0.001644083031 5.440092821e-15)
(-0.0008681953076 -0.001755013951 5.093148125e-15)
(-0.002838306247 -0.006001841601 1.74166237e-14)
(-0.002899438665 -0.006258728958 1.779132397e-14)
(-0.002529928089 -0.005127380627 1.551536677e-14)
(-0.005419611734 -0.01176062236 3.487488076e-14)
(-0.008816863271 -0.02009073354 5.961897642e-14)
(-0.01255170741 -0.03010378826 8.942846463e-14)
(-0.01234331993 -0.02898362983 8.797129691e-14)
(-0.01213410991 -0.02788155826 8.651412919e-14)
(-0.01993432314 -0.05342143778 1.589839371e-13)
(-0.02308804447 -0.0657447268 1.958017082e-13)
(-0.02561432468 -0.0778291974 2.319255898e-13)
(-0.02540332179 -0.07562994142 2.303157665e-13)
(-0.0251908743 -0.07344701071 2.286643097e-13)
(-0.02826650724 -0.09931257198 2.961519918e-13)
(-0.02827029534 -0.1078248947 3.215344657e-13)
(-0.02740399295 -0.114360382 3.409494909e-13)
(-0.02727674926 -0.1116599626 3.401862125e-13)
(-0.02714829326 -0.1089629657 3.394090564e-13)
(0.01177337241 -0.119131055 0)
(0.01313574949 -0.1191692623 0)
(0.01318131595 -0.1178758109 0)
(0.0132279493 -0.1165808301 0)
(0.02317396678 -0.117878894 3.468614285e-13)
(0.02461115641 -0.1122631233 3.302358387e-13)
(0.02490731315 -0.1108831938 3.332056853e-13)
(0.02523264963 -0.1095747709 3.365363543e-13)
(0.02513709281 -0.09489110651 2.791100684e-13)
(0.02414517411 -0.08385112244 2.466915561e-13)
(0.02235155528 -0.07183992784 2.114558528e-13)
(0.02323948765 -0.07304023862 2.196021143e-13)
(0.02372125046 -0.07284543691 2.238348396e-13)
(0.01717665099 -0.04802299113 1.415395579e-13)
(0.01385178057 -0.03635100098 1.072197886e-13)
(0.01038107341 -0.02566777955 7.577272143e-14)
(0.01097099383 -0.02654138653 8.004708008e-14)
(0.01135726795 -0.02686894636 8.283651542e-14)
(0.001299820788 -0.002799462902 8.10462808e-15)
(0.0003120852827 -0.0006277118661 1.859623566e-15)
(0.0001425122413 -0.0002927929171 8.465450563e-16)
(8.78818055e-05 -0.0001843484983 5.273559367e-16)
(0.000421645094 -0.0008298990504 2.511879593e-15)
(-0.001266451247 -0.002773211138 7.424616477e-15)
(-0.003499823498 -0.008014540989 2.145505995e-14)
(-0.003563217667 -0.008316169216 2.184363801e-14)
(-0.003046393719 -0.006709690464 1.869338018e-14)
(-0.005883833291 -0.01384835418 3.783084956e-14)
(-0.009369482572 -0.02314706831 6.329659019e-14)
(-0.01355364812 -0.03521657184 9.639511411e-14)
(-0.01327663384 -0.03383568685 9.446610161e-14)
(-0.01301720033 -0.03252447173 9.266198919e-14)
(-0.0209998658 -0.06088155062 1.669220318e-13)
(-0.02412652359 -0.07425910951 2.037536806e-13)
(-0.02659366151 -0.08725823078 2.395444954e-13)
(-0.02632799708 -0.08480062972 2.37476705e-13)
(-0.02607593886 -0.08241009529 2.355199369e-13)
(-0.02905569908 -0.1100045957 3.021610739e-13)
(-0.02894115117 -0.1188108053 3.263361803e-13)
(-0.02794949125 -0.1253939911 3.443356711e-13)
(-0.02780783579 -0.1226014644 3.434474927e-13)
(-0.02766942714 -0.1198301576 3.425870698e-13)
(0.01138460365 -0.1294658068 0)
(0.02205670066 -0.1234065388 3.348432642e-13)
(0.02312187813 -0.1156971106 3.138600491e-13)
(0.02355876236 -0.1152678605 3.188838082e-13)
(0.02389062392 -0.1142358673 3.224226441e-13)
(0.02292367091 -0.09451809962 2.564337631e-13)
(0.0216262254 -0.0818929165 2.222527717e-13)
(0.01960075244 -0.06860391712 1.86267668e-13)
(0.020452975 -0.07013421555 1.94178007e-13)
(0.02129309511 -0.07149852437 2.019495682e-13)
(0.01389287159 -0.04220461194 1.147415496e-13)
(0.01060674266 -0.03022741555 8.225364834e-14)
(0.007349812124 -0.01972693372 5.370703882e-14)
(0.008149707346 -0.02144439102 5.954958748e-14)
(0.00908996827 -0.0234401934 6.640521466e-14)
(0.0003599626863 -0.0008403260347 2.248201625e-15)
(1.512376323e-06 -3.303324073e-06 1.387778781e-17)
(0 0 0)
(0 0 0)
(3.365573422e-05 -7.205368847e-05 1.942890293e-16)
(-0.00183879801 -0.004344010149 1.079691891e-14)
(-0.004375293752 -0.0108055633 2.68673972e-14)
(-0.004525528695 -0.01140721252 2.786659792e-14)
(-0.003926970698 -0.009335824499 2.407796185e-14)
(-0.0074076116 -0.01877893397 4.758693439e-14)
(-0.01114557891 -0.02963999055 7.516209877e-14)
(-0.01509618794 -0.04220438729 1.071087663e-13)
(-0.01464889651 -0.04023441788 1.040001418e-13)
(-0.013956587 -0.03765289931 9.917067167e-14)
(-0.02256161526 -0.07026955671 1.786210069e-13)
(-0.02560640846 -0.0845954367 2.151751e-13)
(-0.02794459937 -0.09832355484 2.502165142e-13)
(-0.02743222063 -0.09491849228 2.460531778e-13)
(-0.02716731708 -0.09238810368 2.440270208e-13)
(-0.03005637653 -0.1217771048 3.100297796e-13)
(-0.02974579379 -0.130543999 3.323175068e-13)
(-0.02856074343 -0.1368366886 3.482492072e-13)
(-0.02839209552 -0.1338914515 3.471251064e-13)
(-0.02824238375 -0.1310429245 3.461814169e-13)
(-0.01226395145 -0.1377004468 0)
(-0.01158614197 -0.1377200796 0)
(-0.01156853696 -0.137073799 0)
(-0.01155122062 -0.1364291312 0)
(-0.0005321843851 -0.1381941048 0)
(0.0001356330553 -0.138207492 0)
(0.000169696632 -0.137565309 0)
(0.01218114173 -0.1423795471 0)
(0.01485980652 -0.1418337199 3.575473251e-13)
(0.0150146032 -0.1396412155 3.584771369e-13)
(0.01912958436 -0.1329270165 3.347877531e-13)
(0.02040060192 -0.1246665903 3.139016824e-13)
(0.02096244066 -0.1142013263 2.875338856e-13)
(0.0215220275 -0.1148541948 2.944589017e-13)
(0.02215214007 -0.1157717715 3.023414852e-13)
(0.01977731845 -0.08834219678 2.224886941e-13)
(0.01808097604 -0.0740599619 1.865729793e-13)
(0.01613455323 -0.06102349908 1.538075223e-13)
(0.01716443065 -0.06372347907 1.635358515e-13)
(0.01798826656 -0.06551161793 1.712519015e-13)
(0.01061688101 -0.03480653827 8.783251904e-14)
(0.00764132067 -0.02349287599 5.931366509e-14)
(0.004835158466 -0.0139979317 3.537448112e-14)
(0.005486260094 -0.01559431937 4.012068455e-14)
(0.006022587971 -0.01680027207 4.403422071e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.001334048581 -0.003386745404 7.854827899e-15)
(-0.003557663619 -0.009443958691 2.191302695e-14)
(-0.003017611102 -0.008146542097 1.859623566e-14)
(-0.004333293776 -0.01111493193 2.668698595e-14)
(-0.007165011311 -0.01957869537 4.622691119e-14)
(-0.01081920841 -0.03101013407 7.327471963e-14)
(-0.01469057877 -0.04425706264 1.046523979e-13)
(-0.0152851342 -0.04526349956 1.088990009e-13)
(-0.015623841 -0.04547478645 1.113414916e-13)
(-0.02203788728 -0.07391892349 1.750405376e-13)
(-0.02505503636 -0.08910538867 2.111227859e-13)
(-0.02739204804 -0.1037041049 2.45845011e-13)
(-0.02800265979 -0.1042718398 2.514932707e-13)
(-0.02833047437 -0.1037627984 2.547129174e-13)
(-0.02958753987 -0.1288609282 3.055888875e-13)
(-0.02936169918 -0.1384483885 3.28320704e-13)
(-0.02828784848 -0.1455529257 3.450850716e-13)
(-0.02849748286 -0.1444224099 3.483602296e-13)
(-0.02857045254 -0.1426089452 3.500810752e-13)
(-0.0005439242842 -0.149716266 0)
(0.0008311282403 -0.1497575565 0)
(0.0008699023568 -0.1484663034 0)
(0.01167061726 -0.1514175118 3.561595463e-13)
(0.01405331655 -0.1474287365 3.466255061e-13)
(0.0142402337 -0.1462466177 3.497480083e-13)
(0.01446102016 -0.1453714355 3.537309334e-13)
(0.01737988516 -0.1313055789 3.085171008e-13)
(0.01809098862 -0.1197004535 2.812194921e-13)
(0.01825794467 -0.1074192382 2.523536935e-13)
(0.01906126056 -0.1100874038 2.630118345e-13)
(0.0197022927 -0.1116752137 2.714217739e-13)
(0.01643317152 -0.07901108922 1.856848009e-13)
(0.01454929817 -0.06401729085 1.505046088e-13)
(0.01221514346 -0.04957834265 1.166011732e-13)
(0.01311279994 -0.05231093664 1.251360127e-13)
(0.01425099538 -0.05587837871 1.359606872e-13)
(0.006862436199 -0.02412578812 5.68017855e-14)
(0.004285788492 -0.01412692572 3.327893516e-14)
(0.002118309472 -0.006575819374 1.550148898e-14)
(0.002799785692 -0.008545068593 2.04836148e-14)
(0.003344452726 -0.01003196927 2.446653991e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001365420507 -0.0003700586221 8.049116929e-16)
(-0.001193382992 -0.003384473827 7.355227538e-15)
(-0.000664389445 -0.001914449909 4.093947403e-15)
(-0.002416659857 -0.006633751726 1.489086632e-14)
(-0.004058977385 -0.01186599074 2.621514117e-14)
(-0.006932694837 -0.02126730081 4.701794509e-14)
(-0.01016831049 -0.0327962526 7.255307466e-14)
(-0.01156030328 -0.03665812588 8.243405958e-14)
(-0.01280205685 -0.03990993783 9.123257705e-14)
(-0.01677178302 -0.06023587685 1.334071742e-13)
(-0.01971122138 -0.07504463023 1.662975313e-13)
(-0.02217414088 -0.08983070277 1.99146255e-13)
(-0.02387638326 -0.0950770871 2.142730438e-13)
(-0.02532339533 -0.09913911115 2.271655086e-13)
(-0.02520376971 -0.117260062 2.600974991e-13)
(-0.02564974546 -0.1290253525 2.862154957e-13)
(-0.02537868406 -0.1390585041 3.084477118e-13)
(-0.02648330765 -0.1427657472 3.218814104e-13)
(-0.02731773969 -0.14495107 3.322481179e-13)
(-0.02291815182 -0.1533371028 3.399502901e-13)
(-0.02092261394 -0.1576293534 3.493455525e-13)
(-0.01857636936 -0.1602887863 3.550909566e-13)
(-0.01871574937 -0.159403473 3.588657149e-13)
(-0.01330238446 -0.1622095668 3.58990615e-13)
(-0.01055720726 -0.1623445628 0)
(-0.007807096214 -0.1624271439 0)
(-0.007729529964 -0.1598440377 0)
(-0.002305995538 -0.1625584787 3.590322484e-13)
(0.0004469888615 -0.1622518378 3.581718255e-13)
(0.00318029072 -0.1611455932 3.555628014e-13)
(0.003270385207 -0.160114866 3.589767372e-13)
(0.008351209211 -0.1548153381 3.412548022e-13)
(0.01060848229 -0.1489524535 3.282096817e-13)
(0.01250490544 -0.1410856502 3.107791802e-13)
(0.01303784058 -0.1447836688 3.240185897e-13)
(0.01346615052 -0.1469347085 3.341910082e-13)
(0.01481401334 -0.1195916162 2.633171459e-13)
(0.01507839007 -0.1064280497 2.343264471e-13)
(0.01470587435 -0.09215414164 2.029210133e-13)
(0.01578579153 -0.09749911258 2.180894354e-13)
(0.01671189647 -0.1016376045 2.310374114e-13)
(0.01217843292 -0.06227744137 1.371958103e-13)
(0.01020562204 -0.04779144238 1.053185317e-13)
(0.007956374167 -0.03437068669 7.578659922e-14)
(0.009007601241 -0.03833735283 8.587575095e-14)
(0.009943813044 -0.04167476217 9.485467967e-14)
(0.003432597807 -0.01285452002 2.836619828e-14)
(0.001612167831 -0.005665643778 1.250388681e-14)
(0.0003967916446 -0.001314560081 2.900457652e-15)
(0.0006750524496 -0.002201439811 4.94049246e-15)
(0.00118790961 -0.003813072036 8.687495168e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0002588206684 -0.000757521762 1.595945598e-15)
(-0.0007077802265 -0.002206390436 4.579669977e-15)
(-0.00212940773 -0.006974759015 1.448841047e-14)
(-0.004095832452 -0.01412296726 2.933764343e-14)
(-0.005573933644 -0.0189063318 3.988476216e-14)
(-0.007120015637 -0.02375174068 5.090372568e-14)
(-0.00885777568 -0.0340875891 7.087386233e-14)
(-0.01127519584 -0.04603983339 9.575673587e-14)
(-0.01349714152 -0.05868867601 1.221245327e-13)
(-0.01585061654 -0.06769781989 1.430661145e-13)
(-0.01811870022 -0.07601925428 1.632027846e-13)
(-0.01686037357 -0.0842675906 1.754429935e-13)
(-0.01783535408 -0.09638256143 2.007005673e-13)
(-0.01828397335 -0.1075989554 2.240707619e-13)
(-0.02041254363 -0.1178831056 2.49314458e-13)
(-0.02232893236 -0.1266266312 2.720323966e-13)
(-0.01762056628 -0.1264222869 2.632338791e-13)
(-0.01657950737 -0.1337694022 2.784855679e-13)
(-0.01514180366 -0.1396876774 2.907396546e-13)
(-0.01641556347 -0.1485569642 3.139571936e-13)
(-0.01742812983 -0.1549842105 3.326505738e-13)
(-0.01135276013 -0.1473991181 3.065742105e-13)
(-0.009139420988 -0.1493282844 3.10459991e-13)
(-0.006798751819 -0.1500518782 3.11833892e-13)
(-0.007304509698 -0.1576769269 3.326922071e-13)
(-0.00765073325 -0.1623454277 3.478467514e-13)
(-0.00196688356 -0.1479216158 3.071570776e-13)
(0.0004098452932 -0.1449887401 3.009398286e-13)
(0.002678679046 -0.1407146814 2.919608999e-13)
(0.002826173059 -0.1495977046 3.150812944e-13)
(0.002957556242 -0.1560040524 3.336220189e-13)
(0.006616564736 -0.127885317 2.651628916e-13)
(0.00814088167 -0.1193003302 2.473021787e-13)
(0.009277292724 -0.1093554405 2.266381527e-13)
(0.01024038119 -0.1197514525 2.519096043e-13)
(0.01110485834 -0.1285793705 2.745859096e-13)
(0.01018677944 -0.08611855361 1.784544734e-13)
(0.009916059989 -0.07339324488 1.521005544e-13)
(0.009182092256 -0.06042389031 1.25247035e-13)
(0.01069422001 -0.06960441176 1.464106614e-13)
(0.01213881411 -0.078082912 1.667277427e-13)
(0.006594578422 -0.03552360772 7.366329768e-14)
(0.004964334487 -0.0245280732 5.08759701e-14)
(0.003310474299 -0.01511336415 3.136380045e-14)
(0.004453958229 -0.02006466601 4.225786387e-14)
(0.005639944258 -0.02506432411 5.358213873e-14)
(0.0006623657103 -0.002629765804 5.453970608e-15)
(5.205677433e-05 -0.0001942518819 4.024558464e-16)
(0 0 0)
(0 0 0)
(2.679038363e-05 -9.154446482e-05 1.942890293e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001722880546 -0.0006321660992 1.235123115e-15)
(-0.0007255912931 -0.002623182586 5.218048216e-15)
(-0.00160547805 -0.005715721032 1.151856388e-14)
(-0.001931881779 -0.007945883009 1.557087792e-14)
(-0.00323332349 -0.01414242366 2.771394225e-14)
(-0.00462463217 -0.02158905535 4.232725281e-14)
(-0.006612014197 -0.03033416156 6.03267436e-14)
(-0.008803259022 -0.03967732381 8.010259123e-14)
(-0.007196734359 -0.0387902876 7.607803276e-14)
(-0.008189106906 -0.04783255456 9.381384558e-14)
(-0.008898120409 -0.05672840884 1.112859804e-13)
(-0.01122842128 -0.07013961555 1.396105453e-13)
(-0.01362058889 -0.08337564058 1.684347106e-13)
(-0.009340115681 -0.07296323764 1.431355034e-13)
(-0.009061993979 -0.07985061889 1.566524688e-13)
(-0.008473102632 -0.08568983311 1.680877659e-13)
(-0.01024933846 -0.1011155286 2.01241801e-13)
(-0.01199766894 -0.1155840192 2.334521465e-13)
(-0.006508655599 -0.0937820669 1.838945662e-13)
(-0.005228546227 -0.09589596366 1.880023914e-13)
(-0.003823370064 -0.09667198705 1.894873147e-13)
(-0.004633002581 -0.1125198319 2.23737695e-13)
(-0.005425542789 -0.1270525084 2.563227408e-13)
(-0.0008779839076 -0.09418051444 1.845051889e-13)
(0.0005392278918 -0.09094466724 1.781214065e-13)
(0.001838486903 -0.08643975509 1.692812557e-13)
(0.002093054293 -0.1019555168 2.024908019e-13)
(0.002316628141 -0.1165041521 2.347427808e-13)
(0.003860841129 -0.07397305373 1.44800838e-13)
(0.004491248142 -0.06628133067 1.297434382e-13)
(0.004825379531 -0.05787030062 1.132705041e-13)
(0.005974739663 -0.07144938137 1.418171136e-13)
(0.007120344422 -0.08484709176 1.708216901e-13)
(0.004579452432 -0.03991695629 7.813194536e-14)
(0.004040901741 -0.03098813827 6.065981051e-14)
(0.003293393396 -0.02254980604 4.414524302e-14)
(0.004644866447 -0.03149754618 6.253331186e-14)
(0.006110751035 -0.04103843217 8.262834861e-14)
(0.001522772233 -0.008596073423 1.683375661e-14)
(0.0007288085176 -0.0037852684 7.410738689e-15)
(0.0001747533149 -0.0008410269468 1.651456749e-15)
(0.0006402883946 -0.003040611545 6.036837696e-15)
(0.001351510694 -0.006334180098 1.276756478e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-7.460756206e-05 -0.0003709470849 6.938893904e-16)
(-0.0005858513415 -0.002871086114 5.398459457e-15)
(-0.001548684224 -0.007473482707 1.423861029e-14)
(-0.00077635518 -0.004486648053 8.326672685e-15)
(-0.001236637556 -0.007773465023 1.441902153e-14)
(-0.001674155862 -0.01153279296 2.138567101e-14)
(-0.003034941898 -0.02053081925 3.860800568e-14)
(-0.004731659733 -0.03140131189 5.98687766e-14)
(-0.002285605051 -0.01947721121 3.612388166e-14)
(-0.002400788631 -0.02321484364 4.306277557e-14)
(-0.00237410539 -0.02654070878 4.923839114e-14)
(-0.003636630364 -0.03968484785 7.463474283e-14)
(-0.00510669984 -0.05434387289 1.036115638e-13)
(-0.001925912614 -0.03137582685 5.820344207e-14)
(-0.001544440801 -0.03267692936 6.060429936e-14)
(-0.001096811754 -0.03315134636 6.147859999e-14)
(-0.001649825322 -0.04769508704 8.966438703e-14)
(-0.002302027114 -0.0635820919 1.211808431e-13)
(-0.0001434612358 -0.03157673447 5.855038676e-14)
(0.0002904244508 -0.02959117413 5.487277299e-14)
(0.0006517538043 -0.02690599993 4.989064717e-14)
(0.0009468504362 -0.0401456408 7.543965452e-14)
(0.001254338658 -0.05490144817 1.045691311e-13)
(0.001059869529 -0.01993782622 3.697042672e-14)
(0.00108167889 -0.01598641609 2.964295476e-14)
(0.0009855491273 -0.01199399559 2.223221607e-14)
(0.001747842517 -0.02116116667 3.975986207e-14)
(0.002669953753 -0.03220185375 6.132594432e-14)
(0.0005375635061 -0.004837264636 8.965050924e-15)
(0.0002741697051 -0.002183889165 4.05231404e-15)
(6.903016445e-05 -0.0004934892963 9.159339953e-16)
(0.0004536732525 -0.003204749484 6.022959909e-15)
(0.001147676238 -0.008018377646 1.527944438e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001338778641 -0.0009522973621 1.720845688e-15)
(0 0 0)
(0 0 0)
(-1.593489118e-08 -1.92001945e-07 0)
(-0.0001552038794 -0.001843299334 3.28903571e-15)
(-0.0006109204159 -0.007128973364 1.287858709e-14)
(-1.028574319e-05 -0.0001835775803 3.191891196e-16)
(-1.217418253e-05 -0.000286125958 4.996003611e-16)
(-9.546086619e-06 -0.0003284661881 5.828670879e-16)
(-0.0001111280979 -0.003742632658 6.675215936e-15)
(-0.0003253003735 -0.01063275197 1.920685833e-14)
(-4.096558377e-07 -0.0001974280092 3.469446952e-16)
(8.834537137e-07 -7.734038001e-05 1.387778781e-16)
(5.092378941e-08 -2.043696852e-06 0)
(4.848543875e-05 -0.001932316686 3.441691376e-15)
(0.0001828150578 -0.00730818707 1.319777621e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(8.736902398e-05 -0.001080743693 1.956768081e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.01153393905 -0.1357836216 0)
(-0.01151652127 -0.1351375756 0)
(-0.01219444895 -0.1351178792 0)
(0.009809039418 -0.1345871439 0)
(0.00844876477 -0.1345509216 0)
(0.007088463096 -0.1345155993 0)
(0.007032576922 -0.135804717 0)
(0.006973877295 -0.1370915281 0)
(-0.01144736715 -0.1461566097 0)
(-0.01142798009 -0.1455109831 0)
(-0.01211554836 -0.1454903366 0)
(-0.002359434723 -0.1458685763 0)
(-0.003177838955 -0.1457587207 0)
(-0.00319715401 -0.1464043494 0)
(-0.003216511084 -0.1470505774 0)
(-0.001814955054 -0.13720501 0)
(0.006914197265 -0.1383769885 0)
(0.006851951543 -0.1396618915 0)
(0.008213539038 -0.1396983935 0)
(-0.008634058722 -0.0833699967 0)
(-0.008576254157 -0.08204299286 0)
(-0.009951515523 -0.08201985723 0)
(-0.01132558567 -0.08199505176 0)
(-0.002458662277 -0.07421714702 0)
(-0.002517295239 -0.07550173806 0)
(-0.002580042619 -0.07678794719 0)
(-0.001165649826 -0.07682153061 0)
(0.01394895071 -0.09450808859 0)
(0.01398621861 -0.0932009954 0)
(0.0126203549 -0.09315889984 0)
(-0.01333816326 -0.1027717792 0)
(-0.01470311018 -0.1027311525 0)
(-0.01473996963 -0.1040226433 0)
(-0.01477668024 -0.1053131776 0)
(-0.01447950335 -0.09497261251 0)
(-0.01451719634 -0.09626786179 0)
(-0.01455466787 -0.09756173642 0)
(-0.01318905912 -0.09760232291 0)
(0.01362378253 -0.1049168181 0)
(0.01366612704 -0.1036166638 0)
(0.01230214016 -0.1035760659 0)
(-0.01363235896 -0.1131030649 0)
(-0.01499611124 -0.1130626543 0)
(-0.01503232687 -0.1143547049 0)
(-0.01506840628 -0.115646219 0)
(-0.01481338904 -0.1066036519 0)
(-0.01485011947 -0.1078948462 0)
(-0.01348570897 -0.1079353367 0)
(0.0132734372 -0.115285995 0)
(0.01331796921 -0.1139929931 0)
(0.01195549014 -0.1139541821 0)
(-0.01391963041 -0.1234357597 0)
(-0.01528230624 -0.1233955015 0)
(-0.01531754201 -0.1246869209 0)
(-0.01535265057 -0.1259781039 0)
(-0.01510436929 -0.1169378568 0)
(-0.0151402195 -0.1182297382 0)
(-0.01377712545 -0.118270069 0)
(-0.007379298359 -0.1203980483 0)
(-0.01419896766 -0.1337662305 0)
(-0.01556219072 -0.1337261961 0)
(-0.0155973209 -0.1350180991 0)
(-0.01563268569 -0.1363098149 0)
(-0.01538770994 -0.1272696487 0)
(-0.01542265291 -0.1285613171 0)
(-0.01406003528 -0.1286015135 0)
(-0.007670373214 -0.130725404 0)
(-0.008020713358 -0.1310384086 0)
(-0.008028375812 -0.1313615831 0)
(-0.007563487467 -0.1268519019 0)
(0.003859822046 -0.1305589931 0)
(0.003184291977 -0.1305422514 0)
(0.003156665968 -0.1311880509 0)
(0.003129801413 -0.1318330926 0)
(-0.01436598882 -0.1441683582 0)
(-0.01573471103 -0.1441254561 0)
(-0.01555320967 -0.1453871095 0)
(-0.01559200181 -0.1466789627 0)
(-0.01566833067 -0.1376008616 0)
(-0.01570427566 -0.1388918994 0)
(-0.01433985615 -0.1389320898 0)
(-0.01169388757 -0.1415942165 0)
(-0.01167540595 -0.1409487429 0)
(-0.01165725372 -0.1403022385 0)
(-0.01233524501 -0.1402826603 0)
(0.006078569918 -0.09491099668 0)
(-0.007243496607 -0.1042455875 0)
(-0.007924233598 -0.1042254464 0)
(-0.007943253435 -0.1048708437 0)
(-0.007810080891 -0.1003499404 0)
(-0.007829166135 -0.1009955159 0)
(-0.007848203989 -0.1016415133 0)
(-0.007167708809 -0.1016617072 0)
(-0.005913169798 -0.1055763308 0)
(-0.005902158645 -0.1052546381 0)
(-0.005891165476 -0.1049323443 0)
(-0.006238570153 -0.1049217922 0)
(0.005857273995 -0.101430579 0)
(0.006218185228 -0.1014415366 0)
(0.006226299587 -0.1011153128 0)
(0.006235619401 -0.1007889449 0)
(0.005772583451 -0.1053369379 0)
(0.006046492859 -0.09621722478 0)
(0.006245995836 -0.1004633896 0)
(0.006257610702 -0.1001385921 0)
(0.005896272245 -0.1001278618 0)
(-0.006279250462 -0.1062099252 0)
(-0.005935448329 -0.1062202489 0)
(-0.005924263152 -0.1058979609 0)
(0.006424546418 -0.1163913095 0)
(0.006446865846 -0.1157440294 0)
(0.006469310684 -0.1150965728 0)
(0.005790635942 -0.1150777549 0)
(0.005721824174 -0.10663732 0)
(-0.007519474575 -0.1255621874 0)
(-0.007419932552 -0.1216892455 0)
(-0.008037658333 -0.131684709 0)
(-0.008048015492 -0.1320076225 0)
(-0.007699590178 -0.1320183854 0)
(-0.01212499204 -0.1325348298 0)
(-0.01144700616 -0.132554588 0)
(-0.0114297336 -0.1319093784 0)
(-0.01141225941 -0.1312634542 0)
(0.003102055433 -0.1324776874 0)
(0.003072769804 -0.1331217555 0)
(0.003749267714 -0.1331384662 0)
(-0.01240904012 -0.14286618 0)
(-0.01173092882 -0.1428857618 0)
(-0.01171253838 -0.1422393246 0)
(-0.01303698444 -0.09241794169 0)
(-0.01440320222 -0.09237763719 0)
(-0.0144414545 -0.09367551217 0)
(-0.01415839273 -0.08455100754 0)
(-0.01420428485 -0.08586930415 0)
(-0.01424534373 -0.08717264408 0)
(-0.0128783861 -0.08721231017 0)
(-0.006774113449 -0.08869222036 0)
(-0.007456425459 -0.08867253045 0)
(-0.007477169137 -0.08932533506 0)
(-0.007497778216 -0.08997765724 0)
(-0.006680332219 -0.086051124 0)
(-0.007090822949 -0.09907725932 0)
(-0.007771739948 -0.09905711284 0)
(-0.007790977629 -0.09970376482 0)
(-0.007656076198 -0.09517528624 0)
(-0.007675453703 -0.09582259465 0)
(-0.007694776611 -0.09647008487 0)
(-0.00701307958 -0.09649025478 0)
(0.01158322352 -0.1243013807 0)
(-5.607303927e-05 -0.1414082758 0)
(-1.422783942e-05 -0.1407697497 0)
(-0.0006827575075 -0.1407562811 0)
(-0.006935481272 -0.09389808102 0)
(-0.007617180105 -0.09387797111 0)
(-0.007636735272 -0.094527196 0)
(-0.007517796102 -0.09062829158 0)
(-0.007537938137 -0.09127906031 0)
(-0.006855993889 -0.09129899742 0)
(0.006640756363 -0.08639910045 0)
(0.007327076308 -0.08643131839 0)
(0.007338166415 -0.08576599639 0)
(0.007350426092 -0.08510572544 0)
(0.005514791303 -0.1228439149 0)
(0.006216311082 -0.122215949 0)
(0.00624010895 -0.1215694339 0)
(0.005417655784 -0.1254287156 0)
(0.005700876952 -0.1176689028 0)
(0.006379262493 -0.1176873518 0)
(0.006402154375 -0.1170390078 0)
(0.0062635432 -0.1209230281 0)
(0.006287206106 -0.1202750075 0)
(0.00560923878 -0.1202566312 0)
(-0.001368263168 -0.08004954686 0)
(-0.00139124555 -0.08069210465 0)
(-0.0006171233721 -0.08069213834 0)
(0.0001323276651 -0.08070794076 0)
(-0.004520333244 -0.084059979 0)
(-0.004482511583 -0.0833884445 0)
(-0.005180985547 -0.08339337893 0)
(-0.005882303468 -0.08340742262 0)
(0.0009191316701 -0.08073787308 0)
(0.001670617057 -0.0807761557 0)
(0.001674297938 -0.08012977526 0)
(0.003539328612 -0.08559824524 0)
(-0.007653703428 -0.1294342679 0)
(-0.003627585777 -0.08679276099 0)
(-0.00398316691 -0.08711670069 0)
(-0.003569663863 -0.0854408492 0)
(-0.005833390714 -0.1029953329 0)
(-0.005827663348 -0.1026724006 0)
(-0.00619870819 -0.1036305117 0)
(-0.005849085224 -0.1036411905 0)
(-0.005840451936 -0.1033182853 0)
(0.005855438893 -0.1027336914 0)
(0.005821864288 -0.1040357907 0)
(0.00601800099 -0.09752205912 0)
(0.005973277281 -0.09882544514 0)
(0.004460591056 -0.114068623 0)
(0.004449888262 -0.1143922467 0)
(0.004792991969 -0.1144024294 0)
(0.002480518795 -0.1221150602 0)
(0.002837176604 -0.1218020651 0)
(0.002440078939 -0.1234087856 0)
(-0.0006528791654 -0.1336828746 0)
(-0.003691202178 -0.1413525094 0)
(-0.01563079394 -0.1479708158 0)
(-0.01566956806 -0.1492620688 0)
(-0.01429449153 -0.14930336 0)
(-0.008736006236 -0.1475310451 0)
(-0.008755453297 -0.1481766699 0)
(-0.008067945036 -0.1481973146 0)
(-0.007380556779 -0.1482179557 0)
(-0.0008651423403 -0.1433034489 0)
(-0.002459993 -0.08440086251 0)
(-0.002425655466 -0.08404875617 0)
(-0.0027862839 -0.08406518078 0)
(-0.007338827958 -0.1191063056 0)
(-0.007609770901 -0.1281432297 0)
(-0.006693138521 -0.1482385977 0)
(-0.006005564257 -0.1482592443 0)
(-0.005986663202 -0.1476130026 0)
(0.006122892171 -0.09360897991 0)
(0.005685786578 -0.1079354416 0)
(0.005645818736 -0.1092364481 0)
(-0.007491988129 -0.1242708356 0)
(-0.007460321874 -0.1229782881 0)
(0.002397627759 -0.124703892 0)
(-0.00375753881 -0.1426352475 0)
(-0.00490478193 -0.1448570631 0)
(0.01422941085 -0.08405222343 0)
(0.01288582646 -0.08268618315 0)
(0.005316827138 -0.1280125046 0)
(0.007359069485 -0.08443988374 0)
(0.006682283903 -0.08375015308 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.000285493302 -0.000517861733 6.064593272e-15)
(-5.966727857e-05 -0.0001182656237 1.512678871e-15)
(-0.0002589019634 -0.001358425576 1.590394483e-14)
(-4.8260033e-05 -0.00043055202 5.495603972e-15)
(0.0002291790369 -0.001362107799 1.594557819e-14)
(8.532926085e-05 -0.0003056740326 3.899658374e-15)
(0.0002749134166 -0.0005235723169 6.133982211e-15)
(1.239189278e-06 -1.849915976e-06 2.775557562e-17)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001561605956 -0.0001642348133 1.443289932e-15)
(-0.0001079119085 -0.0001144474462 1.068589661e-15)
(-0.002585803424 -0.003803677506 3.341771304e-14)
(-0.001894435363 -0.00289713693 2.714495295e-14)
(-0.003715967517 -0.009166548343 8.061606938e-14)
(-0.002467310959 -0.006813966414 6.387945728e-14)
(-0.001684957432 -0.01277697069 1.122157922e-13)
(-0.0006500820224 -0.009046893044 8.471001678e-14)
(0.001756563364 -0.01282310641 1.123406923e-13)
(0.001774221484 -0.008299639899 7.757683385e-14)
(0.003710653672 -0.009251198477 8.090750292e-14)
(0.002461798197 -0.004966311429 4.637956685e-14)
(0.002558299022 -0.003853319957 3.372302437e-14)
(0.0009079033867 -0.001167068623 1.090794122e-14)
(0.0001613263976 -0.0001735382404 1.526556659e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-3.089491304e-06 -3.169464768e-06 2.775557562e-17)
(-5.880764477e-05 -6.065152188e-05 4.579669977e-16)
(-0.004187634867 -0.005517241808 3.874678356e-14)
(-0.00409977869 -0.005523765612 4.085620731e-14)
(-0.009324668763 -0.01729922551 1.219302437e-13)
(-0.008038412135 -0.01575171004 1.168232178e-13)
(-0.009043714928 -0.02854810573 2.012556788e-13)
(-0.006889536342 -0.0248764164 1.844358e-13)
(-0.003384122028 -0.03490279605 2.453037773e-13)
(-0.001370925285 -0.02933439132 2.167988011e-13)
(0.004136250509 -0.03508373324 2.454980663e-13)
(0.004986490185 -0.02799782959 2.060851489e-13)
(0.009484692039 -0.02893600994 2.017830347e-13)
(0.008376042991 -0.02103151503 1.544459005e-13)
(0.009413029947 -0.01759023556 1.226241331e-13)
(0.006543962208 -0.01060343399 7.792377854e-14)
(0.004135097845 -0.005544134007 3.874678356e-14)
(0.001528592143 -0.001818633237 1.340594302e-14)
(3.738839345e-05 -3.897381295e-05 2.775557562e-16)
(0 0 0)
(0 0 0)
(-0.002267736601 -0.0027893185 1.623701174e-14)
(-0.003074916135 -0.003834624314 2.331468352e-14)
(-0.01128298745 -0.017815381 1.043054532e-13)
(-0.01120621262 -0.01830937958 1.121047699e-13)
(-0.01663225876 -0.037181731 2.187972026e-13)
(-0.01513758797 -0.03620245834 2.222944051e-13)
(-0.0136241692 -0.05205750031 3.060884879e-13)
(-0.01097345907 -0.04875306147 2.988720382e-13)
(-0.004626713239 -0.05835540179 3.417544026e-13)
(-0.001903006211 -0.05373105577 3.279598815e-13)
(0.005846144865 -0.05867865775 3.418931804e-13)
(0.007897219872 -0.05253656564 3.190503417e-13)
(0.01466791147 -0.05306278616 3.077260669e-13)
(0.01480843336 -0.04443283142 2.687849943e-13)
(0.01729948964 -0.03835654439 2.21711538e-13)
(0.01464537496 -0.02843597469 1.717098685e-13)
(0.01176110525 -0.01885766744 1.091349233e-13)
(0.007660341269 -0.01100429394 6.65856259e-14)
(0.002576887891 -0.003223200434 1.873501354e-14)
(9.350427262e-07 -1.008584833e-06 1.387778781e-17)
(0.0004677619555 -0.0005311553048 3.219646771e-15)
(-0.005865346538 -0.008412507779 4.202194148e-14)
(-0.008006798567 -0.01171698113 6.077083281e-14)
(-0.01788277334 -0.03291376883 1.65270575e-13)
(-0.01858712504 -0.03556220427 1.853239784e-13)
(-0.0223196021 -0.05774173861 2.905731211e-13)
(-0.0207789606 -0.05782588593 3.019945405e-13)
(-0.01618751976 -0.07057889867 3.550215677e-13)
(-0.01328298051 -0.06810439522 3.55396268e-13)
(-0.00519048995 -0.07286029409 0)
(-0.005137283013 -0.07157560018 0)
(-0.002292807742 -0.06908687016 0)
(-0.002371412716 -0.07165156785 0)
(-0.0009963163538 -0.07169159844 0)
(0.0003789034711 -0.07173241349 0)
(-0.003748917012 -0.07161272613 0)
(-0.003794861203 -0.07289595655 0)
(0.005972626866 -0.07319790562 0)
(0.004576202262 -0.07314894676 0)
(0.003160838155 -0.07181570999 0)
(0.004603333299 -0.07186443074 0)
(0.005997525846 -0.07191212144 0)
(0.001758567305 -0.07177384243 0)
(0.008818072406 -0.0694342638 0)
(0.01701838126 -0.07160654387 3.551048344e-13)
(0.01878554078 -0.06574326057 3.378131108e-13)
(0.02306870848 -0.05970114279 2.949446243e-13)
(0.02173204648 -0.04947156308 2.535333055e-13)
(0.01852458894 -0.03466605247 1.715017017e-13)
(0.01445330455 -0.02437035337 1.25247035e-13)
(0.006634943138 -0.009689505173 4.812816812e-14)
(0.00120608073 -0.001528073392 7.882583475e-15)
(0.003035523233 -0.004048625306 2.088607065e-14)
(-0.00908853098 -0.01488660051 6.505906924e-14)
(-0.01189461702 -0.01996374493 9.020562075e-14)
(-0.02181042759 -0.04574932713 2.008809785e-13)
(-0.02302678791 -0.05041834541 2.288030876e-13)
(-0.02499249431 -0.07332586895 3.225336664e-13)
(-0.02347093787 -0.07430811948 3.374522883e-13)
(-0.01680591343 -0.08185656948 0)
(-0.01260606842 -0.0793596048 0)
(-0.01265299384 -0.08066431201 0)
(-0.01406500637 -0.08192506121 0)
(-0.01402359305 -0.08062991764 0)
(-0.01397858086 -0.07932892453 0)
(-0.01410837363 -0.08322727482 0)
(-0.005416186189 -0.07673761547 0)
(-0.006810440505 -0.07670998181 0)
(-0.008358765339 -0.07805019449 0)
(-0.008446258492 -0.07938788574 0)
(0.003111184826 -0.07825066183 0)
(0.005950633069 -0.07707894157 0)
(0.004524766902 -0.0770132437 0)
(0.02558447817 -0.07618273799 3.289174488e-13)
(0.0255196603 -0.06699865909 2.985806047e-13)
(0.02303745846 -0.04941892542 2.135236432e-13)
(0.01959018729 -0.03800371461 1.696698337e-13)
(0.01047607521 -0.01750179853 7.595313267e-14)
(0.003596185494 -0.005233520733 2.350897255e-14)
(0.006453055635 -0.009888839546 4.436728762e-14)
(-0.01038849369 -0.01913218667 7.427392035e-14)
(-0.01389549967 -0.02630374137 1.05165876e-13)
(-0.023366247 -0.05497047881 2.142869215e-13)
(-0.02511245818 -0.06183065745 2.481626016e-13)
(-0.02599247758 -0.08511371769 3.320954622e-13)
(-0.02446346292 -0.08658372181 3.474581733e-13)
(0.01406155608 -0.09059411196 0)
(0.01409721437 -0.08928862199 0)
(0.01550193634 -0.08803466248 0)
(0.02630933099 -0.08904816562 3.416433803e-13)
(0.02709630619 -0.0809923584 3.195083087e-13)
(0.0251584473 -0.06104131067 2.34270936e-13)
(0.02241546177 -0.04929159683 1.947469963e-13)
(0.01267610399 -0.02388165777 9.202361095e-14)
(0.005381095735 -0.008853511582 3.516631431e-14)
(0.008695653447 -0.01507039432 5.981326545e-14)
(-0.0111775491 -0.02285889235 7.982503547e-14)
(-0.01470328883 -0.03098370261 1.111055692e-13)
(-0.02419736381 -0.06302979918 2.209343819e-13)
(-0.02588842297 -0.07071456301 2.544214839e-13)
(-0.02652065029 -0.09567158344 3.355926648e-13)
(-0.02492041541 -0.09729844457 3.499700529e-13)
(0.01374935386 -0.10101505 0)
(0.01379021273 -0.09971437053 0)
(0.01519524209 -0.09845417437 0)
(0.02615905798 -0.09950878328 3.436417817e-13)
(0.0273558319 -0.09199481642 3.257255576e-13)
(0.02543332257 -0.06896761817 2.382261055e-13)
(0.02326132474 -0.05726891478 2.030181578e-13)
(0.01311351692 -0.02751730885 9.539591339e-14)
(0.006032440337 -0.01107597049 3.946842853e-14)
(0.009480863696 -0.01834371464 6.529499164e-14)
(-0.01193545798 -0.02682329396 8.512635041e-14)
(-0.01547952091 -0.03591213164 1.16739951e-13)
(-0.02498698778 -0.07130896759 2.270961197e-13)
(-0.02660031457 -0.07971472859 2.599309656e-13)
(-0.02702214852 -0.1062836187 3.386596559e-13)
(-0.02533078242 -0.107927352 3.518019209e-13)
(-0.01004156803 -0.1067447794 0)
(0.01340719593 -0.1114035707 0)
(0.01345053635 -0.1101082508 0)
(0.01485848782 -0.108848743 0)
(0.02547724957 -0.1078667829 3.387706782e-13)
(0.02666933428 -0.09987880376 3.208544541e-13)
(0.02420230566 -0.07258361943 2.280675648e-13)
(0.02233767326 -0.0609032622 1.958988527e-13)
(0.0118491913 -0.02740077546 8.637535132e-14)
(0.005475501624 -0.01109767983 3.58602037e-14)
(0.008796319003 -0.01879380223 6.06736883e-14)
(-0.01288636033 -0.0315506614 9.175993299e-14)
(-0.01634482167 -0.04137268999 1.230127111e-13)
(-0.02590069419 -0.08027733502 2.342293026e-13)
(-0.02737021366 -0.08917476255 2.658706588e-13)
(-0.02753421513 -0.1170806482 3.417544026e-13)
(-0.02574142588 -0.1186489084 3.535921556e-13)
(-0.01033932314 -0.1170786008 0)
(0.01304066541 -0.1217557461 0)
(0.01308821556 -0.1204622342 0)
(0.0243230524 -0.1136269842 3.27335381e-13)
(0.02528734542 -0.1044933395 3.07323611e-13)
(0.02194413857 -0.07211280891 2.078753836e-13)
(0.01985545301 -0.05937607558 1.74887882e-13)
(0.009589349025 -0.02421745041 7.002731728e-14)
(0.00403757885 -0.008950672559 2.646494135e-14)
(0.007017826956 -0.01640402016 4.847511281e-14)
(-0.01402774298 -0.03714075487 9.969802761e-14)
(-0.01739980847 -0.04768310997 1.306316166e-13)
(-0.02698828565 -0.09016101603 2.427363865e-13)
(-0.02826435814 -0.09934018275 2.728095527e-13)
(-0.02810904281 -0.1282714136 3.454181385e-13)
(-0.02616084809 -0.1294807012 3.554101458e-13)
(-0.01062923524 -0.1274092344 0)
(0.02261638058 -0.1156760479 3.078370892e-13)
(0.02342529723 -0.105943893 2.873951077e-13)
(0.01892801874 -0.06760093696 1.80050419e-13)
(0.01696519498 -0.0551850416 1.499356195e-13)
(0.006881520799 -0.01883565678 5.032085859e-14)
(0.002267964848 -0.005457593132 1.487698853e-14)
(0.004392625051 -0.01114406835 3.036459972e-14)
(-0.01543498249 -0.04401095978 1.096622793e-13)
(-0.0189855379 -0.05594023884 1.420807916e-13)
(-0.02825191822 -0.101349343 2.532141163e-13)
(-0.02945135529 -0.1108891611 2.82274204e-13)
(-0.02864980946 -0.1399487563 3.496508638e-13)
(-0.02659299836 -0.1404074614 3.571865026e-13)
(-0.01162132675 -0.1390118008 0)
(-0.01160375057 -0.1383664802 0)
(-0.01090971074 -0.1377396109 0)
(6.36249831e-05 -0.1394903001 0)
(9.996382619e-05 -0.1388491463 0)
(0.0008061151832 -0.1382217398 0)
(0.01467281691 -0.1437313586 3.559097461e-13)
(0.01723244671 -0.1387303736 3.495398415e-13)
(0.02030783811 -0.1128721536 2.791655795e-13)
(0.02075593388 -0.1019094028 2.565864188e-13)
(0.0151086152 -0.05819042245 1.44079193e-13)
(0.01351729423 -0.04747093548 1.197097976e-13)
(0.004097936731 -0.01207821646 2.997602166e-14)
(0.0007787514201 -0.002021557944 5.107025913e-15)
(0.002459899937 -0.00673131264 1.701416785e-14)
(-0.01385532135 -0.04246197012 9.869882689e-14)
(-0.01851198247 -0.05876130079 1.390554338e-13)
(-0.02649794626 -0.1020069459 2.377126274e-13)
(-0.02892612078 -0.1171314535 2.777500452e-13)
(-0.02790737499 -0.1458048583 3.398531456e-13)
(-0.02645527407 -0.1499575538 3.55396268e-13)
(-0.0108180561 -0.148115334 0)
(-0.01013054784 -0.1481359787 0)
(0.0007923361061 -0.1510494096 0)
(0.002206186765 -0.1497988471 0)
(0.01380009386 -0.1477375788 3.415739913e-13)
(0.01600043554 -0.1406593203 3.305827834e-13)
(0.01747618131 -0.1045599686 2.415845302e-13)
(0.01768596384 -0.093609019 2.199351812e-13)
(0.01116148646 -0.04606410679 1.065814104e-13)
(0.009581922581 -0.03609669272 8.494593917e-14)
(0.001656982009 -0.005231328911 1.212918654e-14)
(4.582459935e-06 -1.27706386e-05 2.775557562e-17)
(0.0006178454353 -0.001813947579 4.274358645e-15)
(-0.008670611232 -0.02844256764 6.19226892e-14)
(-0.01352359696 -0.04596516529 1.017380624e-13)
(-0.0202422325 -0.08344527437 1.820210649e-13)
(-0.02403282226 -0.1040620593 2.307737335e-13)
(-0.02399184387 -0.1336958614 2.91822122e-13)
(-0.02444004805 -0.1471782004 3.264055692e-13)
(-0.01815121688 -0.1588785766 3.464173393e-13)
(-0.01600111822 -0.1616711337 3.579775365e-13)
(-0.007819647732 -0.163920632 3.567285356e-13)
(-0.005056979165 -0.1625097252 0)
(0.003075455087 -0.1598380977 3.471667398e-13)
(0.005841781938 -0.1587929049 3.501920975e-13)
(0.01186090408 -0.1357019117 2.942784905e-13)
(0.01393607093 -0.1312426727 2.890188089e-13)
(0.01348399448 -0.08564868041 1.856848009e-13)
(0.01371672204 -0.07725583145 1.701416785e-13)
(0.006821291657 -0.02989429768 6.489253579e-14)
(0.005625232815 -0.02256122283 4.976574708e-14)
(0.0001682382596 -0.0005661059663 1.235123115e-15)
(0 0 0)
(0 0 0)
(-0.002750702654 -0.009639320567 1.972033647e-14)
(-0.006404114275 -0.02329813213 4.841960166e-14)
(-0.01112367711 -0.04924549707 1.009192729e-13)
(-0.01539218171 -0.07157510977 1.489919299e-13)
(-0.01599751784 -0.09599228352 1.968702978e-13)
(-0.01820409516 -0.1176684401 2.450400993e-13)
(-0.01365024206 -0.1285862781 2.635947016e-13)
(-0.01337611332 -0.1442094251 3.000377724e-13)
(-0.006160710806 -0.139720835 2.860628401e-13)
(-0.00438908326 -0.1495901385 3.107514246e-13)
(0.002510514264 -0.129570901 2.648992137e-13)
(0.00477164576 -0.135027369 2.80053758e-13)
(0.008230230797 -0.097614528 1.993682996e-13)
(0.00997097324 -0.0982133169 2.03531636e-13)
(0.007639539564 -0.05079795969 1.037642194e-13)
(0.008043379453 -0.04764573233 9.876821583e-14)
(0.002258936339 -0.01044930365 2.137179322e-14)
(0.001812634931 -0.00769541131 1.597333377e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0008610626823 -0.003340605771 6.550315845e-15)
(-0.002914777379 -0.01383903442 2.674249711e-14)
(-0.005980879717 -0.02992592446 5.867528685e-14)
(-0.00670840205 -0.04364392494 8.440470545e-14)
(-0.009286863033 -0.06518794318 1.278838146e-13)
(-0.00673790313 -0.06989430784 1.351557755e-13)
(-0.00760731939 -0.09036166076 1.772193503e-13)
(-0.003035400527 -0.08013935147 1.548761119e-13)
(-0.002352738021 -0.0960981461 1.883077028e-13)
(0.001556167499 -0.07054897474 1.362382429e-13)
(0.002962705383 -0.08074439667 1.580957587e-13)
(0.003710245762 -0.0446153677 8.612555114e-14)
(0.004851756653 -0.04898600735 9.588163596e-14)
(0.00211043165 -0.01459337143 2.817190925e-14)
(0.002419002041 -0.01496521815 2.930988785e-14)
(3.616707911e-07 -1.764554013e-06 1.387778781e-17)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0003615067246 -0.001932741508 3.580469254e-15)
(-0.0006958026275 -0.004874535122 8.92341756e-15)
(-0.002036144514 -0.01551246472 2.876865413e-14)
(-0.001356674777 -0.01551237657 2.839395385e-14)
(-0.00221057569 -0.02930130856 5.434541706e-14)
(-0.0006539212761 -0.02060381736 3.770594947e-14)
(-0.0006177105203 -0.03277972187 6.07847106e-14)
(0.0003900783019 -0.01578379813 2.887967643e-14)
(0.0009142045261 -0.02363816751 4.38260539e-14)
(0.0004216979049 -0.005168115999 9.450773497e-15)
(0.0007920794187 -0.008194026391 1.519617765e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-4.499152501e-06 -6.472715514e-05 1.249000903e-16)
(0 0 0)
(-4.588881351e-06 -0.0002947040283 5.134781489e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0.009172106586 -0.09435624023 0)
(0.00885410358 -0.1047763554 0)
(0.009095898092 -0.09696413049 0)
(-0.01026549506 -0.1144959829 0)
(0.007827572819 -0.1151338158 0)
(0.008507205799 -0.1151527226 0)
(0.008769521393 -0.1073751059 0)
(-0.01055763987 -0.1248269699 0)
(-0.01083985183 -0.1351571741 0)
(-0.01148173668 -0.1338451818 0)
(-0.01149909807 -0.1344913496 0)
(0.007143989255 -0.1332264707 0)
(0.005726813797 -0.1344791555 0)
(-0.01074035183 -0.1455316314 0)
(-0.01163577586 -0.1442529843 0)
(-0.01140859304 -0.1448653566 0)
(-0.00296273855 -0.1452144611 0)
(-0.003865809236 -0.1457380621 0)
(-0.002163370978 -0.1375201744 0)
(0.005203752203 -0.1447501184 0)
(0.006651565159 -0.1435111457 0)
(0.006720132047 -0.1422297357 0)
(0.00548856938 -0.1396251554 0)
(0.006787000305 -0.1409468934 0)
(-0.006494092271 -0.08204697347 0)
(-0.006529274354 -0.08271460489 0)
(-0.007262591919 -0.08339749861 0)
(-0.007226339899 -0.08272023622 0)
(-0.00718908477 -0.08204556837 0)
(-0.007287113298 -0.08405210799 0)
(-0.008510132326 -0.08070900796 0)
(-0.004017694509 -0.07676573671 0)
(-0.002668657299 -0.07808178749 0)
(0.007368764187 -0.07714903153 0)
(0.008785309863 -0.07722531976 0)
(0.008778530718 -0.07591107842 0)
(0.008798075045 -0.07855421447 0)
(0.01020278587 -0.07731262628 0)
(0.0153518261 -0.09324362378 0)
(0.01402481541 -0.09189964749 0)
(-0.01462905705 -0.10014704 0)
(-0.01466617092 -0.1014390035 0)
(-0.01606883713 -0.1026905024 0)
(-0.01459192156 -0.0988543564 0)
(0.01503005753 -0.1036571398 0)
(0.01370799515 -0.102316375 0)
(-0.01492331455 -0.1104783839 0)
(-0.01495978281 -0.1117708473 0)
(-0.01636082175 -0.1130221548 0)
(-0.01621531001 -0.1078543323 0)
(-0.01488674071 -0.1091864042 0)
(-0.01011648336 -0.1093276049 0)
(0.01468074288 -0.114031993 0)
(0.01336283546 -0.11269886 0)
(-0.0152115545 -0.1208133318 0)
(-0.01524695227 -0.1221041457 0)
(-0.01664654034 -0.1233551365 0)
(-0.01650463 -0.1181892478 0)
(-0.01517595151 -0.1195216832 0)
(-0.01041270544 -0.1196623731 0)
(0.004024555228 -0.1169750596 0)
(-0.01549238821 -0.1311436375 0)
(-0.01552720216 -0.1324350095 0)
(-0.01829443907 -0.1336453524 0)
(-0.01692750666 -0.1336858586 0)
(-0.01678712882 -0.1285210048 0)
(-0.01545745065 -0.1298521491 0)
(-0.01069999058 -0.1299915242 0)
(-0.01139483982 -0.1306173482 0)
(0.00321061651 -0.1298971935 0)
(0.002509519129 -0.1305258928 0)
(-0.01577829816 -0.1414749919 0)
(-0.01581657512 -0.1427756887 0)
(-0.01847551866 -0.1440416529 0)
(-0.01710466212 -0.144083478 0)
(-0.01843898411 -0.1388109819 0)
(-0.01707085165 -0.1388515241 0)
(-0.01574099528 -0.1401827337 0)
(-0.01098087889 -0.140321648 0)
(-0.01163908112 -0.1396570559 0)
(-0.01028569836 -0.1533027911 0)
(-0.01032449049 -0.1545946442 0)
(-0.008949413968 -0.1546359354 0)
(-0.007574379444 -0.1546772253 0)
(-0.01169956702 -0.154553353 0)
(-0.004785470261 -0.1534679535 0)
(-0.004824262395 -0.1547598066 0)
(-0.00344920987 -0.1548010971 0)
(-0.00619932092 -0.154718516 0)
(-0.004630367744 -0.1483011397 0)
(-0.00394281148 -0.1483217858 0)
(-0.003235874142 -0.1476962047 0)
(-0.005127733389 -0.09069777891 0)
(-0.005243688685 -0.09459851457 0)
(0.009245674428 -0.0917462888 0)
(-0.00788623591 -0.1029340499 0)
(-0.007905204753 -0.103579749 0)
(-0.009285703978 -0.1041850442 0)
(-0.008604908786 -0.1042052471 0)
(-0.008529057382 -0.1016212486 0)
(-0.007867259861 -0.1022881107 0)
(-0.005455495517 -0.1010652918 0)
(-0.005536409306 -0.1049434775 0)
(-0.005869398122 -0.1042868493 0)
(-0.005880215499 -0.1046096889 0)
(-0.005277161099 -0.0958940107 0)
(-0.00541203701 -0.09977423943 0)
(0.00893680118 -0.1021743654 0)
(0.009617772776 -0.1021946937 0)
(0.009638220229 -0.101543754 0)
(0.009658509296 -0.1008920888 0)
(0.009597228741 -0.1028448498 0)
(0.006211401733 -0.1017674401 0)
(0.006568597831 -0.101452119 0)
(0.006608266918 -0.1001490616 0)
(0.00627061103 -0.099813656 0)
(0.009017459954 -0.09957027221 0)
(0.009698722553 -0.09959090953 0)
(0.009718580792 -0.09893959177 0)
(0.009678645926 -0.1002415001 0)
(-0.01019121273 -0.1119122376 0)
(-0.005946688715 -0.1065427755 0)
(-0.005587697439 -0.1062308715 0)
(0.004068570721 -0.1156782585 0)
(0.008596109082 -0.1125640713 0)
(0.007148290844 -0.1151152198 0)
(0.006491384697 -0.1144494655 0)
(0.008683507612 -0.1099715312 0)
(-0.01048543546 -0.1222444234 0)
(-0.008390093158 -0.1319974706 0)
(-0.008059081871 -0.1323301543 0)
(-0.0114643261 -0.1331993758 0)
(-0.01077021672 -0.1325741901 0)
(0.002280584426 -0.1356816613 0)
(0.002398787781 -0.1331056609 0)
(0.003044830014 -0.1337664046 0)
(-0.007995913956 -0.1459305403 0)
(-0.01173439214 -0.1435430971 0)
(-0.01105461399 -0.1429051695 0)
(-0.00664146599 -0.1459610024 0)
(-0.01432630665 -0.0897828659 0)
(-0.01436466794 -0.09108037126 0)
(-0.01428590474 -0.08847740427 0)
(-0.007412753521 -0.08736017043 0)
(-0.007434672196 -0.08801610473 0)
(-0.008138736028 -0.08865279254 0)
(-0.007389738228 -0.08670171665 0)
(-0.007733408014 -0.09776458529 0)
(-0.007752585692 -0.09841123908 0)
(-0.008452895155 -0.09903689914 0)
(-0.008376353638 -0.09644991856 0)
(-0.007714085106 -0.09711709507 0)
(0.01299358933 -0.1230474706 0)
(0.0008956075302 -0.1285472717 0)
(0.0006585025622 -0.1407847257 0)
(2.391944066e-05 -0.1401299714 0)
(-0.007577813545 -0.09257898852 0)
(-0.007597642956 -0.09322934625 0)
(-0.00829893894 -0.0938578594 0)
(-0.00822000239 -0.0912591196 0)
(-0.007557938546 -0.09192911262 0)
(0.007313408247 -0.08709049126 0)
(0.008011747347 -0.08645844808 0)
(0.009315866088 -0.08913277073 0)
(0.006333507013 -0.1189810978 0)
(0.00635599744 -0.1183341231 0)
(0.007057942641 -0.1177059897 0)
(0.006965651649 -0.1202934583 0)
(0.006310610983 -0.1196275798 0)
(-0.002225433174 -0.1388079656 0)
(-0.002826436278 -0.08067913271 0)
(-0.002109517466 -0.08068434918 0)
(-0.001418446626 -0.08133595309 0)
(-0.003580757192 -0.08069987862 0)
(-0.004359281781 -0.08138445372 0)
(-0.00441144721 -0.08206246341 0)
(-0.003790102677 -0.08339428827 0)
(-0.004451247681 -0.08272989609 0)
(0.003127324625 -0.08085717524 0)
(0.003837348848 -0.08089419484 0)
(0.004583372633 -0.08162015938 0)
(0.001687868349 -0.08143125431 0)
(0.00241639071 -0.08082205014 0)
(0.004881318607 -0.08831698187 0)
(0.003887172641 -0.08595016606 0)
(0.003981937249 -0.1182699208 0)
(0.0008504820932 -0.129840436 0)
(-0.009314991629 -0.1410163791 0)
(-0.005170223748 -0.09199919007 0)
(-0.005213786333 -0.09329990841 0)
(-0.005478240646 -0.1023595486 0)
(-0.005858900559 -0.1039640601 0)
(-0.005489748469 -0.1036525813 0)
(-0.005322331564 -0.09718807454 0)
(-0.005367437827 -0.09848220036 0)
(0.004102684601 -0.1143814004 0)
(0.004439292282 -0.1147155133 0)
(-0.009355337164 -0.1423059634 0)
(-0.009376188017 -0.1436003371 0)
(-0.003342495818 -0.1410365129 0)
(-0.01704458458 -0.1492207794 0)
(-0.01570836019 -0.1505539219 0)
(-0.009442979576 -0.1481566252 0)
(-0.008774858373 -0.1488228964 0)
(-0.0007780920722 -0.08295570747 0)
(-0.002053922431 -0.08402192689 0)
(-0.002384173787 -0.08369353601 0)
(0.0009015888508 -0.08299708287 0)
(-0.006024819327 -0.1489054754 0)
(-0.005317941991 -0.1482798925 0)
(-0.005487454857 -0.1450863989 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0.0001629138187 -0.0001965541025 1.01307851e-15)
(0.001428295603 -0.001978938314 8.895661985e-15)
(0.00265338292 -0.004155112921 1.651456749e-14)
(0.003131811256 -0.005471352211 1.951216966e-14)
(0.00272693879 -0.005257670725 1.700029006e-14)
(0.001715168356 -0.003616687634 1.06997744e-14)
(0.0006337468063 -0.001450869719 3.955169525e-15)
(2.178639571e-05 -5.38238572e-05 1.387778781e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.01036326461 -0.1558858973 0)
(-0.004863036511 -0.1560510597 0)
(0.01029898618 -0.1022149692 0)
(0.01038016696 -0.09961149225 0)
(0.01117192895 -0.1346242856 0)
(-0.002411623645 -0.07293406958 0)
(0.003138395163 -0.07309850504 0)
(-0.0126960519 -0.08196222885 0)
(0.0144983864 -0.1192068168 0)
(-0.01980825301 -0.1387702855 0)
(-0.009966679178 -0.1041648359 0)
(-0.006573330277 -0.08340375235 0)
(-0.01592081484 -0.0975210737 0)
(-0.01966262973 -0.1336047485 0)
(-0.01984711144 -0.1440003462 0)
(-0.01576990002 -0.09233731828 0)
(-0.01561266137 -0.08713296717 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-4.25492585e-05 -5.058659714e-05 2.636779683e-16)
(-0.0008555927697 -0.001167828041 5.259681579e-15)
(-0.001522066251 -0.002346318441 9.339751195e-15)
(-0.001853448056 -0.003184423779 1.1379786e-14)
(-0.002213138272 -0.00419283591 1.358635426e-14)
(-0.002642306228 -0.005471420918 1.620925616e-14)
(-0.002988333884 -0.006713572028 1.833255769e-14)
(-0.004165681631 -0.01008531361 2.553512957e-14)
(-0.004004708757 -0.01045086695 2.466082893e-14)
(-0.001793876931 -0.005005787911 1.106059688e-14)
(-3.070106245e-05 -9.123611889e-05 1.804112415e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.007084980283 -0.1417458866 0)
(-0.007049528969 -0.1414264892 0)
(-0.006912036159 -0.1417647126 0)
(-0.006876583044 -0.1414452553 0)
(-0.006779006186 -0.1417791571 0)
(-0.00674354707 -0.1414597 0)
(-0.007118833746 -0.1420658724 0)
(-0.006945914829 -0.1420849379 0)
(-0.006812896262 -0.1420995622 0)
(-0.003001062351 -0.09305411861 0)
(-0.002965772943 -0.09273111304 0)
(-0.002828031198 -0.09307204643 0)
(-0.002792879234 -0.09275041803 0)
(-0.002694929205 -0.09308589254 0)
(-0.002659891875 -0.09276528165 0)
(0.002575969609 -0.08735996393 0)
(0.002674634875 -0.08762301968 0)
(0.002413193106 -0.08742133645 0)
(0.002510703832 -0.08768124059 0)
(0.002287980678 -0.08746855255 0)
(0.002384603436 -0.08772602776 0)
(0.001609280411 -0.1184429841 0)
(0.001547957426 -0.1187123581 0)
(0.001439650785 -0.1184043788 0)
(0.001378333801 -0.1186737531 0)
(0.00130916835 -0.1183746964 0)
(0.001247851365 -0.1186440706 0)
(-0.002928697908 -0.09240984267 0)
(-0.002755907428 -0.09242998535 0)
(-0.00262298789 -0.09244550756 0)
(-0.001172606473 -0.1289871196 0)
(-0.001307420448 -0.1294393812 0)
(-0.001339335926 -0.128937491 0)
(-0.001473943274 -0.1293890381 0)
(-0.001467588967 -0.1288992874 0)
(-0.001602036753 -0.1293502988 0)
(-0.00449617917 -0.1389752007 0)
(-0.004590853753 -0.1392374475 0)
(-0.004659707753 -0.1389158189 0)
(-0.004754116507 -0.1391774131 0)
(-0.004785501141 -0.1388701822 0)
(-0.004879699869 -0.139131182 0)
(-0.00725655053 -0.1442813077 0)
(-0.007287917078 -0.1439922745 0)
(-0.007144455978 -0.1442937423 0)
(-0.007140854364 -0.1440084015 0)
(-0.00705822543 -0.1443032982 0)
(-0.007027731968 -0.1440208069 0)
(0.002828061001 -0.08808203283 0)
(0.00266238121 -0.08813509041 0)
(0.00253494077 -0.08817590365 0)
(0.001195793378 -0.08495030285 0)
(0.001539919566 -0.08533623497 0)
(0.001078413053 -0.08507869478 0)
(0.001403155634 -0.08544373851 0)
(0.0009881131214 -0.08517745721 0)
(0.001297945603 -0.08552643611 0)
(-0.005564951346 -0.1262831822 0)
(-0.005537266103 -0.1259618101 0)
(-0.005391659106 -0.1262984154 0)
(-0.005363948655 -0.1259768037 0)
(-0.005258348243 -0.1263101057 0)
(-0.005230626386 -0.1259883142 0)
(-0.005482213697 -0.1253214585 0)
(-0.005456067406 -0.1250173364 0)
(-0.005308884844 -0.1253362723 0)
(-0.005282722948 -0.1250320306 0)
(-0.005175554773 -0.125347723 0)
(-0.005149387473 -0.1250433013 0)
(-0.005593612216 -0.1266040447 0)
(-0.005420337381 -0.1266194574 0)
(-0.005287043924 -0.1266313274 0)
(-0.005679663258 -0.1275677109 0)
(-0.005650995776 -0.1272464282 0)
(-0.005506382424 -0.1275831238 0)
(-0.005477722744 -0.127261901 0)
(-0.005373088967 -0.1275949938 0)
(-0.005344435287 -0.1272737708 0)
(-0.005936178644 -0.1304277694 0)
(-0.005908131719 -0.1301323526 0)
(-0.005762994442 -0.1304442004 0)
(-0.005734937913 -0.1301486638 0)
(-0.00562977841 -0.1304568488 0)
(-0.005601708079 -0.1301612525 0)
(-0.002270603741 -0.132525833 0)
(-0.002418104471 -0.1329766926 0)
(-0.00243618038 -0.1324724554 0)
(-0.002583451281 -0.1329226613 0)
(-0.002563546563 -0.1324313957 0)
(-0.002710645242 -0.1328810663 0)
(-0.006984074413 -0.1408033259 0)
(-0.006954184952 -0.140534149 0)
(-0.006811105081 -0.1408219125 0)
(-0.006781289442 -0.140553394 0)
(-0.006678051702 -0.1408361775 0)
(-0.00664828828 -0.140568198 0)
(-0.007144151611 -0.1447766062 0)
(-0.007110705863 -0.1447643981 0)
(-0.007225238152 -0.143026345 0)
(-0.007191548481 -0.1427058137 0)
(-0.00705267325 -0.1430453999 0)
(-0.00701869317 -0.1427249975 0)
(-0.006919926496 -0.1430600761 0)
(-0.00688572801 -0.1427398004 0)
(-0.005965990296 -0.142827355 0)
(-0.006067575175 -0.143082728 0)
(-0.006127444443 -0.1427626904 0)
(-0.006228888919 -0.1430181878 0)
(-0.006251643448 -0.1427129576 0)
(-0.006352977523 -0.1429685784 0)
(0.004067296808 -0.09521268266 0)
(0.004089791712 -0.09553255882 0)
(0.003893811167 -0.09522549016 0)
(0.0039162203 -0.09554422266 0)
(0.003760351489 -0.09523535566 0)
(0.003782703645 -0.09555318561 0)
(0.004110605256 -0.09585562754 0)
(0.003936955875 -0.09586608791 0)
(0.003803380441 -0.0958742083 0)
(0.004145407632 -0.09650264107 0)
(0.004158063798 -0.09682696626 0)
(0.003971619718 -0.09651051485 0)
(0.003984223717 -0.09683357728 0)
(0.003837937538 -0.09651659011 0)
(0.003850500164 -0.09683863033 0)
(0.003849675666 -0.1055884876 0)
(0.003815415954 -0.1059096023 0)
(0.003676665522 -0.1055702601 0)
(0.003642454424 -0.1058909559 0)
(0.003543579133 -0.1055562944 0)
(0.003509410649 -0.105876571 0)
(0.003943393324 -0.1046215083 0)
(0.003913703981 -0.1049434208 0)
(0.003770139499 -0.1046057958 0)
(0.00374049277 -0.1049272893 0)
(0.003636863448 -0.1045937462 0)
(0.003607253332 -0.1049148203 0)
(0.003781057213 -0.1062316148 0)
(0.003608202515 -0.1062120107 0)
(0.003475240363 -0.1061969076 0)
(0.003703731331 -0.1068699163 0)
(0.003666537379 -0.1071739469 0)
(0.003531055484 -0.1068487561 0)
(0.003493914344 -0.1071524279 0)
(0.00339822957 -0.106832516 0)
(0.00336112144 -0.1071358885 0)
(-0.003124026865 -0.0943122748 0)
(-0.003095352276 -0.09401555555 0)
(-0.002950815653 -0.09432840634 0)
(-0.002922202886 -0.09403234584 0)
(-0.002817574414 -0.09434081526 0)
(-0.002789007864 -0.09404529389 0)
(-0.003063939163 -0.0936972381 0)
(-0.002890807179 -0.09371420804 0)
(-0.002757635562 -0.09372733556 0)
(-0.002838900218 -0.1342468052 0)
(-0.0029290627 -0.1345121903 0)
(-0.003003769966 -0.1341912868 0)
(-0.003093807633 -0.1344563153 0)
(-0.003130587679 -0.134148562 0)
(-0.003220540136 -0.1344133528 0)
(-0.004040438411 -0.1377211517 0)
(-0.004133389666 -0.1379814083 0)
(-0.004204238229 -0.1376626026 0)
(-0.004296983656 -0.1379222047 0)
(-0.004330239841 -0.1376175 0)
(-0.004422830452 -0.1378767465 0)
(0.001877927023 -0.1172419321 0)
(0.001814273003 -0.1175303342 0)
(0.001708054957 -0.1172044006 0)
(0.001644408738 -0.1174927428 0)
(0.00157737929 -0.1171755532 0)
(0.001513752873 -0.1174638359 0)
(0.001746297649 -0.117838245 0)
(0.001576520397 -0.117800356 0)
(0.001445913741 -0.1177712103 0)
(0.0002402138392 -0.1239821497 0)
(0.0001653995125 -0.1242648116 0)
(7.205264156e-05 -0.123937643 0)
(-2.712476303e-06 -0.1242200661 0)
(-5.730701729e-05 -0.1239033699 0)
(-0.0001320325301 -0.1241856741 0)
(-0.002813453915 -0.09144879472 0)
(-0.002772263408 -0.09113107115 0)
(-0.00264086389 -0.09147061297 0)
(-0.002599806018 -0.09115390639 0)
(-0.002508102194 -0.09148739163 0)
(-0.00246715355 -0.09117152255 0)
(-0.002852893624 -0.09176921335 0)
(-0.002680186569 -0.09179013427 0)
(-0.002547337249 -0.09180619488 0)
(-0.004936546678 -0.1185510911 0)
(-0.004912717672 -0.1182465391 0)
(-0.004763107985 -0.118564647 0)
(-0.004739284979 -0.1182600948 0)
(-0.004629699282 -0.1185750791 0)
(-0.004605876276 -0.1182705269 0)
(-0.005136817158 -0.1211228855 0)
(-0.005111853018 -0.1208011313 0)
(-0.00496337486 -0.1211363214 0)
(-0.004938410721 -0.1208145673 0)
(-0.004829958356 -0.1211466937 0)
(-0.004804994216 -0.1208249395 0)
(-0.005061844933 -0.1201575654 0)
(-0.005036754788 -0.119835815 0)
(-0.004888404438 -0.1201710613 0)
(-0.004863314292 -0.1198493109 0)
(-0.004754995735 -0.1201814934 0)
(-0.00472990559 -0.119859743 0)
(-0.004961486154 -0.1188706239 0)
(-0.004788051659 -0.1188841196 0)
(-0.004654636957 -0.1188945519 0)
(-0.005011664643 -0.1195140646 0)
(-0.004838231949 -0.1195276204 0)
(-0.004704815445 -0.1195379927 0)
(-0.005433554662 -0.1247484185 0)
(-0.005260198799 -0.1247629328 0)
(-0.005126847719 -0.1247740839 0)
(-0.005372408696 -0.1240123395 0)
(-0.005345951786 -0.1236938732 0)
(-0.005199043229 -0.124026734 0)
(-0.005172588121 -0.1237083277 0)
(-0.005065684347 -0.1240378252 0)
(-0.005039235239 -0.1237194188 0)
(-0.005161779496 -0.1214445797 0)
(-0.004988339 -0.1214580756 0)
(-0.004854920694 -0.1214683878 0)
(-0.005238243929 -0.1224079932 0)
(-0.005211640549 -0.1220872492 0)
(-0.005064878462 -0.1224223877 0)
(-0.005038236667 -0.1221011644 0)
(-0.004931517779 -0.1224334189 0)
(-0.004904848974 -0.1221118962 0)
(-0.005319075369 -0.1233722365 0)
(-0.005145717704 -0.1233866909 0)
(-0.005012368426 -0.1233979019 0)
(-0.005265173736 -0.1227292079 0)
(-0.005091817873 -0.1227437222 0)
(-0.004958468595 -0.1227549333 0)
(-0.005793560361 -0.1288531047 0)
(-0.005765207289 -0.1285316926 0)
(-0.005620268121 -0.1288683378 0)
(-0.00559191685 -0.1285469857 0)
(-0.00548696506 -0.128880088 0)
(-0.005458621592 -0.1285587957 0)
(-0.005708176536 -0.1278890582 0)
(-0.005534893899 -0.1279044111 0)
(-0.005401600442 -0.1279162811 0)
(-0.001479912276 -0.1300030574 0)
(-0.001561275403 -0.1302689469 0)
(-0.001646238413 -0.1299520596 0)
(-0.001727507928 -0.1302176516 0)
(-0.001774182473 -0.1299128443 0)
(-0.001855378778 -0.1301781984 0)
(-0.005821749625 -0.1291744618 0)
(-0.005648457385 -0.1291896949 0)
(-0.005515146522 -0.1292013852 0)
(-0.005878038098 -0.1298153768 0)
(-0.005704793877 -0.1298312091 0)
(-0.00557153343 -0.1298433783 0)
(-0.002508215636 -0.1332521688 0)
(-0.002673455632 -0.1331977804 0)
(-0.002800564383 -0.1331559477 0)
(-0.002689372663 -0.1337980483 0)
(-0.002854414633 -0.1337430652 0)
(-0.002981370964 -0.1337007567 0)
(-0.007258575594 -0.1433463463 0)
(-0.007087595964 -0.1433655938 0)
(-0.006956072665 -0.1433804134 0)
(0.003976226006 -0.09417871659 0)
(0.004019651408 -0.09463236667 0)
(0.003803073269 -0.09419543776 0)
(0.003846395494 -0.09464812383 0)
(0.003669871516 -0.09420831383 0)
(0.003713127161 -0.09466021717 0)
(0.003837476793 -0.09292573386 0)
(0.00387701731 -0.09324215813 0)
(0.003664925729 -0.09294781813 0)
(0.003704324671 -0.09326315713 0)
(0.003532193679 -0.09296485221 0)
(0.003571481642 -0.09327928703 0)
(0.003947183559 -0.09388248628 0)
(0.003774080608 -0.09389974945 0)
(0.003640926246 -0.09391304735 0)
(0.003797485306 -0.09262172775 0)
(0.003625075818 -0.09264489729 0)
(0.003492450548 -0.09266277537 0)
(0.004187064306 -0.0978003932 0)
(0.004193213791 -0.09812500345 0)
(0.004013134307 -0.09780399869 0)
(0.004019270023 -0.09812746746 0)
(0.003879347216 -0.09780676769 0)
(0.003885458353 -0.09812945498 0)
(0.004169539122 -0.09715101576 0)
(0.003995666066 -0.09715672494 0)
(0.00386192033 -0.09716111671 0)
(0.004196328919 -0.09845066366 0)
(0.004022370176 -0.09845222637 0)
(0.00388855973 -0.09845337314 0)
(0.004047411301 -0.1033259084 0)
(0.004023335095 -0.1036512926 0)
(0.003873857956 -0.1033139706 0)
(0.003849856185 -0.103638276 0)
(0.003740351414 -0.1033047967 0)
(0.003716416869 -0.1036282634 0)
(0.003972946514 -0.1042977299 0)
(0.003799602056 -0.1042830357 0)
(0.003666262382 -0.1042717048 0)
(0.004067686307 -0.1030019115 0)
(0.003894066331 -0.1029909926 0)
(0.003760514167 -0.102982538 0)
(0.003632507714 -0.1074442005 0)
(0.003459948897 -0.107422143 0)
(0.003327216607 -0.1074051851 0)
(0.003535112235 -0.1081870584 0)
(0.003491923 -0.1085063435 0)
(0.003362701657 -0.1081638642 0)
(0.003319719473 -0.1084816541 0)
(0.003230080397 -0.1081460088 0)
(0.003187252452 -0.1084626622 0)
(0.003296927532 -0.1097762698 0)
(0.003247611926 -0.1100783749 0)
(0.003125150702 -0.1097487706 0)
(0.003075909512 -0.1100503975 0)
(0.002993018556 -0.1097276267 0)
(0.002943830178 -0.1100288949 0)
(0.003443383942 -0.108825588 0)
(0.003271360456 -0.1087997029 0)
(0.003139036268 -0.1087797544 0)
(0.003346728325 -0.1094612071 0)
(0.003174826068 -0.1094344848 0)
(0.003042599702 -0.1094138786 0)
(0.0003599592463 -0.123529796 0)
(0.0001917662457 -0.1234853483 0)
(6.238498256e-05 -0.1234511947 0)
(-0.00178529708 -0.1309865022 0)
(-0.001867783362 -0.131249115 0)
(-0.001951277572 -0.1309344337 0)
(-0.002033745252 -0.131196987 0)
(-0.002078955797 -0.1308943857 0)
(-0.002161408473 -0.1311568193 0)
(-0.006538804041 -0.136596161 0)
(-0.006507357322 -0.1362777245 0)
(-0.006365697264 -0.1366133704 0)
(-0.006334242744 -0.1362948741 0)
(-0.006232537053 -0.1366266778 0)
(-0.006201072929 -0.1363080616 0)
(-0.006477151261 -0.1359736042 0)
(-0.006304038484 -0.1359908138 0)
(-0.006170876472 -0.1360040611 0)
(-0.006570364797 -0.1369157953 0)
(-0.006397319842 -0.1369336635 0)
(-0.006264208245 -0.1369473898 0)
(-0.006604769093 -0.1372361249 0)
(-0.006431791959 -0.1372546517 0)
(-0.006298730778 -0.1372688569 0)
(-0.007015047316 -0.1411077835 0)
(-0.006842052777 -0.1411261306 0)
(-0.006708983793 -0.141140276 0)
(-0.007155027305 -0.1423857879 0)
(-0.006982155201 -0.1424052124 0)
(-0.006849183445 -0.1424201956 0)
(-0.003032308171 -0.09337646487 0)
(-0.002859191791 -0.09339355446 0)
(-0.002726021976 -0.09340674198 0)
(-0.00378860996 -0.137010377 0)
(-0.003946321817 -0.137457687 0)
(-0.003952723014 -0.1369526593 0)
(-0.004110264451 -0.1373994939 0)
(-0.004078968256 -0.1369082701 0)
(-0.004236372877 -0.1373547485 0)
(0.002476508476 -0.0870988121 0)
(0.002314897017 -0.0871631864 0)
(0.002190576341 -0.08721270542 0)
(0.001676783224 -0.1181464098 0)
(0.00150710439 -0.1181080433 0)
(0.001376586547 -0.11807854 0)
(-0.002625057405 -0.09010462647 0)
(-0.002577959555 -0.08980897692 0)
(-0.002453147166 -0.09013128289 0)
(-0.0024062497 -0.08983690652 0)
(-0.002320905917 -0.09015179344 0)
(-0.002274169645 -0.08985838515 0)
(-0.002525416146 -0.08949317975 0)
(-0.002353954803 -0.08952258529 0)
(-0.002222059168 -0.08954520547 0)
(-0.002692692153 -0.09055579441 0)
(-0.002520534176 -0.0905808007 0)
(-0.002388104544 -0.09060003771 0)
(-0.002731022893 -0.09082728221 0)
(-0.002558719741 -0.09085125389 0)
(-0.0024261687 -0.09086964775 0)
(-0.002890435454 -0.09208962891 0)
(-0.002717685785 -0.09211013071 0)
(-0.002584795654 -0.09212583221 0)
(-0.001392604151 -0.1297177679 0)
(-0.001558986095 -0.1296669486 0)
(-0.00168697216 -0.1296278522 0)
(-0.006804357 -0.1391587883 0)
(-0.006770947572 -0.1388393898 0)
(-0.006631354658 -0.1391770756 0)
(-0.006597900815 -0.1388571979 0)
(-0.006498270071 -0.1391911014 0)
(-0.006464781416 -0.1388708644 0)
(-0.00673870277 -0.1385191755 0)
(-0.006565630805 -0.1385367442 0)
(-0.006432494001 -0.138550231 0)
(-0.004396078733 -0.1386978625 0)
(-0.004559561711 -0.138638362 0)
(-0.004685323296 -0.1385926661 0)
(-0.006838760089 -0.1394788777 0)
(-0.006665771549 -0.1394972247 0)
(-0.006532696566 -0.1395113703 0)
(-0.006872281668 -0.1397964112 0)
(-0.006699293129 -0.1398147581 0)
(-0.006566224146 -0.1398289035 0)
(-0.004758265545 -0.1396821841 0)
(-0.004856248627 -0.1399430103 0)
(-0.004921167655 -0.1396211395 0)
(-0.005019164539 -0.1398820254 0)
(-0.005046477386 -0.139574196 0)
(-0.00514448627 -0.1398350815 0)
(-0.007284577232 -0.1436700511 0)
(-0.007119704035 -0.1436884547 0)
(-0.006992874713 -0.1437025929 0)
(0.002749945709 -0.1129212228 0)
(0.002666566046 -0.1133729269 0)
(0.002578887226 -0.1128896012 0)
(0.002495609584 -0.1133407078 0)
(0.002447302394 -0.1128652307 0)
(0.002364109367 -0.1133159195 0)
(0.001444951517 -0.1191648542 0)
(0.001275369299 -0.1191260702 0)
(0.001144914467 -0.1190962685 0)
(0.001379165591 -0.1194538528 0)
(0.001209756801 -0.1194142933 0)
(0.001079439992 -0.1193838952 0)
(-0.001351280981 -0.08552620709 0)
(-0.00120145398 -0.08527967809 0)
(-0.00120042588 -0.08561284035 0)
(-0.001059585061 -0.0853803686 0)
(-0.001084379594 -0.08567947451 0)
(-0.0009504638518 -0.08545782119 0)
(-0.005509644465 -0.1256405561 0)
(-0.005336317414 -0.12565543 0)
(-0.005202995145 -0.1256669405 0)
(-0.005622298293 -0.1269251465 0)
(-0.005449025261 -0.1269406193 0)
(-0.005315739606 -0.1269525491 0)
(-0.00170115878 -0.130718654 0)
(-0.001867209482 -0.1306668237 0)
(-0.001994939913 -0.1306268942 0)
(-0.005978156299 -0.1308699066 0)
(-0.005804964295 -0.1308862778 0)
(-0.005671742263 -0.1308989263 0)
(-0.006450346522 -0.1357041545 0)
(-0.006277239745 -0.1357213639 0)
(-0.006144077733 -0.1357346113 0)
(-0.006406241158 -0.1352613606 0)
(-0.006233134382 -0.13527857 0)
(-0.006099980171 -0.1352918772 0)
(-0.006673262085 -0.137877274 0)
(-0.006639665409 -0.1375564397 0)
(-0.006500226734 -0.1378952621 0)
(-0.006466680473 -0.1375749067 0)
(-0.00636712474 -0.1379091082 0)
(-0.00633361149 -0.1375890521 0)
(-0.00568650273 -0.1421252783 0)
(-0.005861173613 -0.1425695566 0)
(-0.005848661353 -0.1420622742 0)
(-0.006022766972 -0.1425051281 0)
(-0.005973404018 -0.1420138463 0)
(-0.006147067387 -0.1424555724 0)
(0.004044015464 -0.09490719647 0)
(0.003870646786 -0.09492150889 0)
(0.003737283077 -0.0949325784 0)
(0.00412876069 -0.09617861645 0)
(0.003955043538 -0.09618793371 0)
(0.003821420732 -0.09619503171 0)
(0.003883918006 -0.1052663514 0)
(0.003710805229 -0.1052491418 0)
(0.003577643217 -0.1052358945 0)
(0.00374263095 -0.1065518837 0)
(0.003569904688 -0.1065312024 0)
(0.003437039764 -0.1065152615 0)
(-0.003017656586 -0.1347729381 0)
(-0.003182375716 -0.1347170038 0)
(-0.003309080614 -0.1346739221 0)
(0.001815871258 -0.0857513097 0)
(0.001668560362 -0.08584384754 0)
(0.001555246177 -0.08591502916 0)
(0.001952617164 -0.08598100644 0)
(0.002177961365 -0.08641180856 0)
(0.001801235171 -0.08606671972 0)
(0.002021919164 -0.08648871574 0)
(0.001684787442 -0.0861326544 0)
(0.001901891277 -0.08654787663 0)
(0.002293122912 -0.08665470621 0)
(0.00213444454 -0.08672600302 0)
(0.002012378129 -0.08678085069 0)
(8.80876727e-05 -0.1245548454 0)
(-7.988809521e-05 -0.1245095635 0)
(-0.0002090995327 -0.1244747543 0)
(1.50630337e-05 -0.1248229072 0)
(-0.0001081445158 -0.1252751569 0)
(-0.0001528119199 -0.1247772679 0)
(-0.0002759798643 -0.1252293988 0)
(-0.0002819423455 -0.1247421609 0)
(-0.0004050904875 -0.1251942323 0)
(-0.002469686936 -0.08917428925 0)
(-0.00240908404 -0.08886029557 0)
(-0.002298615912 -0.08920589315 0)
(-0.002238517591 -0.08889450278 0)
(-0.002167023278 -0.08923020383 0)
(-0.002107309509 -0.08892081981 0)
(-0.002288085712 -0.08828661714 0)
(-0.002181909664 -0.08782894931 0)
(-0.002118247431 -0.08832427376 0)
(-0.002012871373 -0.08787004718 0)
(-0.001987599368 -0.08835324048 0)
(-0.001882837511 -0.08790166798 0)
(-0.002345442384 -0.0885593053 0)
(-0.00217524128 -0.08859527922 0)
(-0.002044314109 -0.0886229511 0)
(-0.004891711602 -0.1179779963 0)
(-0.004718278909 -0.1179915521 0)
(-0.004584864206 -0.1180019843 0)
(-0.005086887076 -0.1204793172 0)
(-0.004913446581 -0.1204928131 0)
(-0.004780030076 -0.1205031854 0)
(-0.0049865763 -0.1191923743 0)
(-0.004813141804 -0.11920587 0)
(-0.004679727102 -0.1192163023 0)
(-0.005396984486 -0.1243081609 0)
(-0.005223619019 -0.1243225554 0)
(-0.005090260138 -0.1243336466 0)
(-0.005186734032 -0.121766214 0)
(-0.005013301338 -0.1217797697 0)
(-0.004879884834 -0.121790142 0)
(-0.005292122751 -0.1230506622 0)
(-0.00511876869 -0.1230652366 0)
(-0.00498541761 -0.1230763876 0)
(-0.005736688011 -0.1282103454 0)
(-0.005563405375 -0.1282256984 0)
(-0.005430110116 -0.1282375084 0)
(-0.005849919682 -0.1294955791 0)
(-0.005676631045 -0.1295109323 0)
(-0.005543333984 -0.1295226822 0)
(-0.002601558724 -0.1335342742 0)
(-0.002766679905 -0.133479529 0)
(-0.002893701644 -0.1334373987 0)
(-0.006706151939 -0.1381983698 0)
(-0.006533089578 -0.1382160583 0)
(-0.006399962377 -0.138229665 0)
(-0.004297483389 -0.1384286468 0)
(-0.004460881156 -0.1383689086 0)
(-0.004586569531 -0.1383229747 0)
(-0.00690309588 -0.1400907841 0)
(-0.00673016736 -0.1401097298 0)
(-0.00659714099 -0.1401242943 0)
(-0.004952294751 -0.140201132 0)
(-0.005115165057 -0.1401400284 0)
(-0.005240454986 -0.1400930254 0)
(0.003915685871 -0.09356282024 0)
(0.003742764678 -0.09358183051 0)
(0.003609744684 -0.09359645368 0)
(0.003760077904 -0.09234686662 0)
(0.003587859183 -0.09237148325 0)
(0.00345538929 -0.09239038696 0)
(0.004179632587 -0.09747508382 0)
(0.004005730159 -0.09747977116 0)
(0.003871964043 -0.09748344163 0)
(0.004198728946 -0.0987717381 0)
(0.004024765427 -0.09877245987 0)
(0.003890948997 -0.09877300589 0)
(0.004199027714 -0.09907058857 0)
(0.004025061815 -0.09907058959 0)
(0.003891245402 -0.09907053505 0)
(0.003998168715 -0.1039741818 0)
(0.003824745625 -0.1039605062 0)
(0.003691338725 -0.1039500141 0)
(0.004087713995 -0.1026817507 0)
(0.003914058001 -0.1026714313 0)
(0.003780479422 -0.1026634564 0)
(0.004104823745 -0.1023833629 0)
(0.00393112993 -0.102373703 0)
(0.003797517135 -0.1023662676 0)
(0.003573842607 -0.1078916621 0)
(0.003401360009 -0.1078690663 0)
(0.003268678135 -0.1078516294 0)
(0.003203404619 -0.1103491638 0)
(0.003031731612 -0.1103210071 0)
(0.002899673882 -0.110299385 0)
(0.003395077738 -0.1091432781 0)
(0.003223107064 -0.1091170343 0)
(0.003090820084 -0.1090968466 0)
(0.00123426294 -0.1200543914 0)
(0.001168492583 -0.1203232716 0)
(0.001065258615 -0.1200131625 0)
(0.0009995080594 -0.1202819832 0)
(0.0009352514563 -0.1199814524 0)
(0.0008695225053 -0.1202501536 0)
(0.001306537122 -0.1197589213 0)
(0.001137396576 -0.1197182288 0)
(0.001007286801 -0.119686936 0)
(-0.0003398721525 -0.1261143356 0)
(-0.0004675360835 -0.1265663915 0)
(-0.0005073282448 -0.1260671474 0)
(-0.0006349399702 -0.1265190848 0)
(-0.0006361394251 -0.126030909 0)
(-0.0007637133455 -0.1264827274 0)
(-0.0005472532066 -0.1268487259 0)
(-0.0007145832818 -0.1268011212 0)
(-0.000843299048 -0.1267645252 0)
(-0.0008493741745 -0.08485553936 0)
(-0.0003477311416 -0.08453103578 0)
(-0.0007349310676 -0.08498656247 0)
(-0.0002847772384 -0.084693209 0)
(-0.0006469057466 -0.08508734897 0)
(-0.0002363508707 -0.08481795726 0)
(2.83886003e-05 -0.08444768266 0)
(4.016102542e-05 -0.08462124772 0)
(4.921674546e-05 -0.08475475912 0)
(0.0004245015735 -0.08448781225 0)
(0.0003832909923 -0.08465682433 0)
(0.0003515910562 -0.08478683354 0)
(-0.003211853706 -0.09532987854 0)
(-0.003186601435 -0.09502512904 0)
(-0.003038496041 -0.09534433288 0)
(-0.003013255175 -0.09503976322 0)
(-0.002905144961 -0.09535548392 0)
(-0.002879913699 -0.09505103408 0)
(-0.003238697062 -0.09564941422 0)
(-0.003065331595 -0.09566380875 0)
(-0.002931980515 -0.09567495978 0)
(-0.003413394504 -0.097903977 0)
(-0.003390398428 -0.09758156318 0)
(-0.003239873574 -0.09791639432 0)
(-0.003216908111 -0.09759439998 0)
(-0.003106395844 -0.09792592764 0)
(-0.003083459192 -0.09760429277 0)
(-0.001093632035 -0.128720858 0)
(-0.001260415135 -0.1286714079 0)
(-0.001388708142 -0.1286333233 0)
(-0.003605172855 -0.1364863666 0)
(-0.003697422183 -0.1367502476 0)
(-0.003769418527 -0.1364290652 0)
(-0.003861608447 -0.1366927679 0)
(-0.003895762782 -0.1363849733 0)
(-0.003987911295 -0.1366484971 0)
(0.002164446104 -0.1159092924 0)
(0.002100889839 -0.116220639 0)
(0.00199402674 -0.115874387 0)
(0.001930604299 -0.116185077 0)
(0.001862929798 -0.1158475688 0)
(0.001799621379 -0.1161576616 0)
(0.002037504351 -0.1165188984 0)
(0.001867463054 -0.1164822026 0)
(0.001736655364 -0.1164539518 0)
(-0.003593219287 -0.1004814902 0)
(-0.003571459873 -0.1001594596 0)
(-0.003419654537 -0.1004932482 0)
(-0.003397889123 -0.1001712178 0)
(-0.003286144391 -0.100502302 0)
(-0.003264377176 -0.1001802116 0)
(-0.003436192571 -0.09822639676 0)
(-0.003262658435 -0.09823857426 0)
(-0.003129169298 -0.09824792774 0)
(-0.003944747221 -0.1056474504 0)
(-0.0039226752 -0.1053256094 0)
(-0.003771234094 -0.1056599276 0)
(-0.003749123657 -0.1053376073 0)
(-0.003637758165 -0.1056695209 0)
(-0.003615623116 -0.1053467809 0)
(-0.003791571559 -0.1033956046 0)
(-0.00377103249 -0.1030910138 0)
(-0.003618006809 -0.1034073626 0)
(-0.003597459938 -0.103102712 0)
(-0.003484488862 -0.1034163566 0)
(-0.00346394199 -0.103111706 0)
(-0.003615132904 -0.100803456 0)
(-0.003441575957 -0.1008152739 0)
(-0.003308067613 -0.1008243877 0)
(-0.003752959962 -0.1028231637 0)
(-0.003579383807 -0.1028347419 0)
(-0.003445862256 -0.1028436159 0)
(-0.003968913906 -0.1059684478 0)
(-0.003795433194 -0.1059814044 0)
(-0.003661986076 -0.1059913572 0)
(-0.004140528343 -0.1082203405 0)
(-0.00411571001 -0.1078986421 0)
(-0.003967078243 -0.1082337166 0)
(-0.003942258109 -0.1079119582 0)
(-0.003833658135 -0.1082439689 0)
(-0.003808832001 -0.1079222106 0)
(-0.004165352675 -0.1085420388 0)
(-0.003991904378 -0.1085554749 0)
(-0.00385848427 -0.1085657272 0)
(-0.006486314483 -0.1440289571 0)
(-0.006734461618 -0.1444155368 0)
(-0.006628839245 -0.1439717074 0)
(-0.006831682597 -0.1443765835 0)
(-0.006738472201 -0.143927697 0)
(-0.006906471287 -0.1443465916 0)
(0.003319896596 -0.08993135588 0)
(0.003421648805 -0.09039421043 0)
(0.003150214093 -0.08996971153 0)
(0.003251380994 -0.09042985798 0)
(0.003019684083 -0.08999921342 0)
(0.003120402764 -0.09045728647 0)
(0.002610667846 -0.1136650451 0)
(0.00255027553 -0.1139758261 0)
(0.002439831406 -0.1136322291 0)
(0.0023794961 -0.1139427115 0)
(0.002308417606 -0.1136069629 0)
(0.00224813151 -0.1139172065 0)
(-0.001690749949 -0.08623698054 0)
(-0.001576334596 -0.0859725279 0)
(-0.001529934817 -0.08630332549 0)
(-0.001418626714 -0.0860459503 0)
(-0.001406231469 -0.08635436467 0)
(-0.00129730886 -0.08610243104 0)
(-0.000716805134 -0.1274366331 0)
(-0.0007944955258 -0.1277031735 0)
(-0.00088384177 -0.1273880763 0)
(-0.0009614967552 -0.1276544375 0)
(-0.001012329503 -0.1273506464 0)
(-0.001089958685 -0.1276169484 0)
(-0.002009423035 -0.1316996101 0)
(-0.002175371723 -0.1316474225 0)
(-0.002303022943 -0.1316072551 0)
(-0.006032213177 -0.1314435052 0)
(-0.006003533574 -0.131139219 0)
(-0.005859013371 -0.1314598165 0)
(-0.005830341571 -0.1311555901 0)
(-0.005725783537 -0.1314724053 0)
(-0.005697115935 -0.1311681187 0)
(-0.002096462703 -0.1319761995 0)
(-0.002262385588 -0.1319239526 0)
(-0.002390017006 -0.1318837257 0)
(-0.006062262449 -0.1317624041 0)
(-0.005889062643 -0.1317787155 0)
(-0.005755829206 -0.1317911842 0)
(-0.006152135615 -0.1327247544 0)
(-0.006122259109 -0.1324044089 0)
(-0.005978970621 -0.132741425 0)
(-0.005949051501 -0.1324206605 0)
(-0.005845764193 -0.1327541933 0)
(-0.005815818063 -0.1324331292 0)
(-0.005488124569 -0.1416073017 0)
(-0.005587684492 -0.1418672397 0)
(-0.005650582627 -0.1415450693 0)
(-0.005750090944 -0.1418048888 0)
(-0.005775547318 -0.1414972353 0)
(-0.005875014228 -0.1417568759 0)
(-0.006944794834 -0.1446204398 0)
(-0.007005631233 -0.1445938097 0)
(0.004183454768 -0.1004043978 0)
(0.004176260894 -0.1007289677 0)
(0.004009526774 -0.1004007365 0)
(0.004002353926 -0.1007244062 0)
(0.00387573924 -0.1003979202 0)
(0.003868582014 -0.1007208697 0)
(0.004198628299 -0.09950928982 0)
(0.004024671443 -0.0995077897 0)
(0.003890857461 -0.09950665421 0)
(0.004194497932 -0.09977803906 0)
(0.004020547705 -0.09977551818 0)
(0.003886745145 -0.0997736023 0)
(0.004167082213 -0.1010508355 0)
(0.003993220885 -0.1010449541 0)
(0.003859479602 -0.1010403976 0)
(0.004127919661 -0.1019464242 0)
(0.003954184423 -0.1019375438 0)
(0.003820541609 -0.1019307081 0)
(0.00414149197 -0.1016796401 0)
(0.003967713506 -0.1016715992 0)
(0.003834038872 -0.1016654231 0)
(0.0006559505482 -0.122380313 0)
(0.0005837246567 -0.1226655749 0)
(0.0004873134785 -0.1223376537 0)
(0.0004151031909 -0.122622796 0)
(0.0003575865638 -0.1223048109 0)
(0.0002853960788 -0.1225898938 0)
(-0.001797160386 -0.08650845395 0)
(-0.001633768258 -0.08656817997 0)
(-0.001508080063 -0.08661411989 0)
(-0.002108872464 -0.08754106926 0)
(-0.00203121154 -0.08724501021 0)
(-0.00194045569 -0.08758466483 0)
(-0.001863760367 -0.08729216216 0)
(-0.001810911683 -0.08761819874 0)
(-0.001734947087 -0.08732843073 0)
(-0.003316493618 -0.09661519005 0)
(-0.003291483873 -0.09629331715 0)
(-0.003143041717 -0.09662850615 0)
(-0.003118062585 -0.09630705272 0)
(-0.003009623411 -0.09663881841 0)
(-0.002984663486 -0.09631760464 0)
(-0.003340816938 -0.09693720367 0)
(-0.003167355434 -0.09695039994 0)
(-0.003033921523 -0.09696059256 0)
(-0.0009262600253 -0.1281551063 0)
(-0.001093179045 -0.1281061326 0)
(-0.001221577125 -0.1280684051 0)
(0.002378921221 -0.1148576561 0)
(0.002286797974 -0.1153099384 0)
(0.002208293021 -0.1148237053 0)
(0.002116323402 -0.1152752715 0)
(0.00207704065 -0.1147976632 0)
(0.001985191053 -0.1152486325 0)
(-0.003527484994 -0.09951421105 0)
(-0.003504102506 -0.09919192895 0)
(-0.003353952659 -0.09952644855 0)
(-0.003330583378 -0.09920440628 0)
(-0.003220467127 -0.09953592204 0)
(-0.003197111648 -0.09921393941 0)
(-0.003480912042 -0.09887024165 0)
(-0.003307387509 -0.09888253897 0)
(-0.003173901977 -0.09889201246 0)
(-0.003878819765 -0.1046817386 0)
(-0.003856924742 -0.104359592 0)
(-0.003705256817 -0.1046935566 0)
(-0.003683361794 -0.10437141 0)
(-0.003571746671 -0.1047026104 0)
(-0.003549851649 -0.1043804638 0)
(-0.003835039324 -0.1040375652 0)
(-0.003661474574 -0.1040493232 0)
(-0.003527964429 -0.1040583771 0)
(-0.003682703221 -0.1017688783 0)
(-0.003659824754 -0.1014465811 0)
(-0.003509159481 -0.101780936 0)
(-0.003486292419 -0.1014588186 0)
(-0.003375662543 -0.1017902296 0)
(-0.003352805084 -0.1014682321 0)
(-0.003704676791 -0.1020890407 0)
(-0.003531110239 -0.1021007387 0)
(-0.003397592292 -0.1021097327 0)
(-0.004041859237 -0.1069334684 0)
(-0.004017340917 -0.106611761 0)
(-0.003868399534 -0.1069467247 0)
(-0.00384387161 -0.1066248974 0)
(-0.003734969822 -0.1069568572 0)
(-0.003710441899 -0.1066350298 0)
(-0.004066439361 -0.1072552341 0)
(-0.003892985658 -0.1072684902 0)
(-0.003759557748 -0.1072786827 0)
(-0.004265038729 -0.1098255773 0)
(-0.004240237888 -0.1095070613 0)
(-0.004091606036 -0.109839133 0)
(-0.004066797392 -0.1095205572 0)
(-0.003958189531 -0.1098495053 0)
(-0.003933380888 -0.1095309295 0)
(-0.004215191546 -0.1091853697 0)
(-0.004041749249 -0.1091988056 0)
(-0.003908332744 -0.1092091779 0)
(-0.006312852646 -0.1343273425 0)
(-0.006280657631 -0.1340065862 0)
(-0.006139755473 -0.1343446717 0)
(-0.00610756826 -0.1340239752 0)
(-0.006006609065 -0.1343580387 0)
(-0.005974417653 -0.1340374024 0)
(-0.006376742769 -0.1349658072 0)
(-0.006203637794 -0.1349830766 0)
(-0.006070483584 -0.1349963837 0)
(-0.006248414614 -0.1336858313 0)
(-0.006075327045 -0.1337032804 0)
(-0.005942182438 -0.1337167074 0)
(-0.006183620187 -0.1330450516 0)
(-0.006010507411 -0.1330622612 0)
(-0.005877343596 -0.1330754485 0)
(-0.00512025797 -0.1406460322 0)
(-0.005219782504 -0.1409063917 0)
(-0.005282886448 -0.1405842752 0)
(-0.005382286166 -0.1408442781 0)
(-0.005407987955 -0.1405367974 0)
(-0.005507288661 -0.140796503 0)
(0.002990753302 -0.0886200644 0)
(0.003115842864 -0.08908173997 0)
(0.002823478554 -0.08866783716 0)
(0.002947464064 -0.0891254798 0)
(0.002694802777 -0.0887045895 0)
(0.002817950679 -0.0891591261 0)
(0.003183545919 -0.08935369723 0)
(0.003014614678 -0.08939523442 0)
(0.002884665723 -0.08942718605 0)
(0.002431620695 -0.1145864616 0)
(0.002260884475 -0.1145531081 0)
(0.002129541488 -0.1145274837 0)
(0.0009877765228 -0.121062066 0)
(0.0009130156213 -0.1213651487 0)
(0.000818861011 -0.1210204794 0)
(0.0007442381321 -0.1213229656 0)
(0.0006889228639 -0.1209884711 0)
(0.0006144086014 -0.1212905402 0)
(0.0005071180929 -0.1229681217 0)
(0.0003386190458 -0.122924866 0)
(0.0002090085494 -0.1228915463 0)
(0.0008384739749 -0.1216595297 0)
(0.0006698111023 -0.1216169297 0)
(0.0005400703854 -0.1215841466 0)
(-0.0002642608123 -0.1258465317 0)
(-0.0004318669277 -0.1257999396 0)
(-0.0005607939229 -0.125764058 0)
(-0.0006322941966 -0.1271467554 0)
(-0.0007994544495 -0.1270986153 0)
(-0.0009280393968 -0.1270615428 0)
(-0.003163775471 -0.0947559803 0)
(-0.002990467627 -0.09477109377 0)
(-0.002857156764 -0.09478278411 0)
(-0.003265419869 -0.0959709354 0)
(-0.003092035195 -0.09598509027 0)
(-0.002958658907 -0.09599600184 0)
(-0.003365532671 -0.09725908539 0)
(-0.003192072968 -0.09727234167 0)
(-0.003058645058 -0.09728253411 0)
(-0.001008674776 -0.1284344169 0)
(-0.001175506182 -0.1283850855 0)
(-0.001303839095 -0.1283471798 0)
(-0.003449221467 -0.1360388836 0)
(-0.003613597954 -0.1359819386 0)
(-0.00374004542 -0.1359380839 0)
(0.002227614698 -0.115599856 0)
(0.00205716173 -0.1155650697 0)
(0.001926044985 -0.1155383109 0)
(0.001977763595 -0.1167895811 0)
(0.001807856122 -0.1167522287 0)
(0.00167715885 -0.1167235008 0)
(-0.003549767653 -0.09983706669 0)
(-0.003376206506 -0.09984894471 0)
(-0.003242705965 -0.09985811837 0)
(-0.003458585614 -0.0985485284 0)
(-0.003285043675 -0.09856064608 0)
(-0.003151546737 -0.09856993974 0)
(-0.003900753185 -0.1050037639 0)
(-0.003727190237 -0.1050155819 0)
(-0.003593681893 -0.1050246958 0)
(-0.003813158104 -0.1037154783 0)
(-0.003639593354 -0.1037272363 0)
(-0.003506083209 -0.1037362901 0)
(-0.003637033315 -0.1011251821 0)
(-0.003463483574 -0.1011372399 0)
(-0.003329990835 -0.1011464734 0)
(-0.003724160786 -0.1023854954 0)
(-0.003550575027 -0.1023969538 0)
(-0.003417045674 -0.102405768 0)
(-0.00399312261 -0.1062900445 0)
(-0.003819651501 -0.1063031209 0)
(-0.003686213987 -0.1063131935 0)
(-0.004091017683 -0.1075769398 0)
(-0.003917565782 -0.1075902559 0)
(-0.003784137872 -0.1076004483 0)
(-0.004322574927 -0.110561044 0)
(-0.004288088656 -0.1101213844 0)
(-0.004149144035 -0.1105746597 0)
(-0.004114649962 -0.1101349404 0)
(-0.004015729333 -0.110585092 0)
(-0.003981241259 -0.1101453724 0)
(-0.004343642801 -0.110829645 0)
(-0.00417021191 -0.1108432607 0)
(-0.004036797207 -0.110853693 0)
(-0.004190171007 -0.1088637373 0)
(-0.00401672271 -0.1088771734 0)
(-0.003883304404 -0.1088874857 0)
(-0.004734417942 -0.1159588132 0)
(-0.004709462811 -0.115637359 0)
(-0.004560977447 -0.1159723091 0)
(-0.004536009109 -0.1156506151 0)
(-0.004427559141 -0.1159826213 0)
(-0.004402583 -0.1156608675 0)
(-0.004685073505 -0.1153159479 0)
(-0.004511602397 -0.1153290244 0)
(-0.004378166685 -0.115339157 0)
(-0.004563497121 -0.1137064191 0)
(-0.004538609182 -0.1133846026 0)
(-0.004390047021 -0.1137197952 0)
(-0.004365160885 -0.1133980387 0)
(-0.004256628715 -0.1137301075 0)
(-0.004231742578 -0.113408351 0)
(-0.004588402465 -0.1140284153 0)
(-0.004414942762 -0.1140416715 0)
(-0.004281514852 -0.114051864 0)
(-0.004367543215 -0.111134375 0)
(-0.00419410272 -0.1111478709 0)
(-0.004060686215 -0.1111582432 0)
(-0.004392251079 -0.1114537946 0)
(-0.004218791376 -0.1114670509 0)
(-0.004085361664 -0.1114771833 0)
(-0.004513724847 -0.1130629061 0)
(-0.004340280748 -0.1130762821 0)
(-0.004206856442 -0.1130865945 0)
(-0.004488863918 -0.1127413891 0)
(-0.004315404215 -0.1127546454 0)
(-0.004181976305 -0.1127648378 0)
(-0.004759394083 -0.1162805669 0)
(-0.004585951786 -0.1162940029 0)
(-0.004452535281 -0.1163043751 0)
(-0.004784368421 -0.1166022607 0)
(-0.004610927926 -0.1166157567 0)
(-0.004477511421 -0.1166261289 0)
(-0.006359076289 -0.143779279 0)
(-0.006514623847 -0.1437167137 0)
(-0.006634275906 -0.1436685588 0)
(0.002909593696 -0.08834903632 0)
(0.002743076047 -0.08839939622 0)
(0.002614989198 -0.08843813611 0)
(0.003253636747 -0.08964573704 0)
(0.003084310316 -0.08968563483 0)
(0.002954063004 -0.08971632232 0)
(0.003476806069 -0.09066776683 0)
(0.00330609874 -0.09070125115 0)
(0.003174780403 -0.09072700586 0)
(0.003533397382 -0.09096716659 0)
(0.003362301116 -0.09099860331 0)
(0.003230680709 -0.09102281751 0)
(0.003129775985 -0.1108001397 0)
(0.003078376712 -0.111094435 0)
(0.00295826201 -0.1107710869 0)
(0.002906995966 -0.1110645454 0)
(0.002826323708 -0.1107486877 0)
(0.002775165685 -0.1110415488 0)
(0.002489790796 -0.1142870847 0)
(0.002319019169 -0.1142539103 0)
(0.002187660578 -0.1142284055 0)
(0.003023379774 -0.1114069394 0)
(0.002852042236 -0.1113768109 0)
(0.002720247362 -0.1113536352 0)
(0.002967931542 -0.1117220728 0)
(0.002796615609 -0.1116918248 0)
(0.002664836338 -0.1116685295 0)
(0.0007569838258 -0.08461630996 0)
(0.0006757621627 -0.08477014848 0)
(0.0006132817932 -0.08488848567 0)
(-0.000184921501 -0.1255569791 0)
(-0.0003527034423 -0.1255110424 0)
(-0.0004817666584 -0.1254756972 0)
(-0.002186019703 -0.1322608209 0)
(-0.002351815971 -0.1322081574 0)
(-0.002479348377 -0.1321676332 0)
(-0.006092322583 -0.1320834647 0)
(-0.005919113174 -0.1320996563 0)
(-0.005785873736 -0.1321121252 0)
(-0.005318175897 -0.1411634821 0)
(-0.005480647757 -0.1411013094 0)
(-0.005605624448 -0.141053475 0)
(0.004189784487 -0.1000840059 0)
(0.004015846278 -0.1000808848 0)
(0.00388205033 -0.1000785487 0)
(0.00415396375 -0.1013733057 0)
(0.003980144457 -0.1013662245 0)
(0.0038464344 -0.1013608281 0)
(-0.001950494197 -0.08697196654 0)
(-0.001784406171 -0.08702371392 0)
(-0.001656641956 -0.08706351834 0)
(-0.003262907882 -0.1354950808 0)
(-0.00335843144 -0.1357764 0)
(-0.003427605408 -0.135439027 0)
(-0.003522984348 -0.1357199303 0)
(-0.003554298306 -0.1353959457 0)
(-0.003649566233 -0.1356765519 0)
(-0.003170091864 -0.1352217277 0)
(-0.003334816994 -0.1351657933 0)
(-0.003461521893 -0.1351227116 0)
(-0.004660939201 -0.1149942289 0)
(-0.004636801294 -0.1146723899 0)
(-0.004487466291 -0.1150072454 0)
(-0.004463322383 -0.1146854065 0)
(-0.004354020975 -0.1150172582 0)
(-0.004329883067 -0.1146954191 0)
(-0.004612655584 -0.1143504911 0)
(-0.004439184475 -0.1143635675 0)
(-0.00430573916 -0.1143735803 0)
(-0.004440503505 -0.1120978938 0)
(-0.004416387796 -0.111775994 0)
(-0.004267030594 -0.1121109102 0)
(-0.004242914886 -0.1117890105 0)
(-0.004133585279 -0.112120923 0)
(-0.00410946957 -0.1117990233 0)
(-0.004464607808 -0.1124196137 0)
(-0.004291136699 -0.1124326901 0)
(-0.004157693185 -0.1124427629 0)
(-0.004834171801 -0.1172424096 0)
(-0.00480934276 -0.1169239545 0)
(-0.004660739108 -0.1172559654 0)
(-0.004635902265 -0.1169374505 0)
(-0.004527322603 -0.1172663376 0)
(-0.00450249176 -0.1169478225 0)
(-0.004857319533 -0.1175382739 0)
(-0.004683880839 -0.1175518298 0)
(-0.004550472137 -0.1175622619 0)
(-0.00634503566 -0.1346480991 0)
(-0.006171932487 -0.1346654285 0)
(-0.006038780079 -0.1346787957 0)
(-0.006215989193 -0.1333652021 0)
(-0.006042907624 -0.1333826509 0)
(-0.005909763017 -0.1333960779 0)
(-0.006247464981 -0.1435236066 0)
(-0.00640722767 -0.1434594132 0)
(-0.00653012763 -0.1434100197 0)
(0.003588691079 -0.09127937949 0)
(0.003642256722 -0.09159093994 0)
(0.003417332042 -0.09130936697 0)
(0.003470693711 -0.09161972016 0)
(0.00328551786 -0.09133243427 0)
(0.003338722349 -0.09164182183 0)
(0.003691039454 -0.09188518058 0)
(0.003519207077 -0.09191233118 0)
(0.003387025741 -0.09193322543 0)
(0.002912369288 -0.1120378034 0)
(0.002855301058 -0.1123504858 0)
(0.002741139773 -0.1120070775 0)
(0.002684179564 -0.1123191627 0)
(0.002609425315 -0.1119834238 0)
(0.002552543721 -0.1122950909 0)
(0.002799879648 -0.112650726 0)
(0.002628801362 -0.1126191639 0)
(0.002497200926 -0.1125949131 0)
(0.001057832756 -0.1207756579 0)
(0.0008888560346 -0.1207343097 0)
(0.0007588764807 -0.1207024803 0)
(0.000431034417 -0.1232612553 0)
(0.0002627328001 -0.1232172248 0)
(0.0001332705251 -0.123183369 0)
(0.0007704865344 -0.121928043 0)
(0.0006018452662 -0.1218853236 0)
(0.0004721183515 -0.1218524808 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-7.345013664e-07 -2.160155576e-06 -2.775557562e-17)
(0 0 0)
(0 0 0)
(-4.04960391e-07 -2.41981963e-05 -3.330669074e-16)
(1.871390952e-06 -2.05685371e-05 -2.775557562e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-4.575806356e-05 -4.900363275e-05 -4.996003611e-16)
(-0.000263288688 -0.0003072845081 -3.080868893e-15)
(-3.443578896e-06 -3.729851743e-06 -2.775557562e-17)
(-0.0004996078661 -0.0007411356987 -8.021361353e-15)
(-0.00123917076 -0.001984347961 -1.990074772e-14)
(-0.001468890894 -0.002686976383 -2.69784195e-14)
(-0.0006861704769 -0.001161600972 -1.254552018e-14)
(-0.0008320480836 -0.002447050686 -2.645106356e-14)
(-0.001452785385 -0.00464151332 -4.660161146e-14)
(-0.001206976054 -0.005129549756 -5.148659277e-14)
(-0.0007145124737 -0.002784927892 -3.011479954e-14)
(-2.346723846e-05 -0.003259289749 -3.522182546e-14)
(-2.038342586e-05 -0.005804680951 -5.820344207e-14)
(0.0004195924719 -0.005732036746 -5.74817971e-14)
(0.0002420065403 -0.003206666117 -3.463895837e-14)
(0.0007926099063 -0.002459718468 -2.656208586e-14)
(0.001408401557 -0.004666591348 -4.674038934e-14)
(0.001539977977 -0.0040779776 -4.082845173e-14)
(0.0008323406538 -0.002059162324 -2.223221607e-14)
(0.0004883911596 -0.0007512619174 -8.10462808e-15)
(0.001213162387 -0.0020057675 -2.009503675e-14)
(0.000912052382 -0.001339801013 -1.34336986e-14)
(0.0002852030908 -0.0003894734931 -4.191091918e-15)
(0 0 0)
(4.800503228e-05 -5.277781172e-05 -5.273559367e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001277939879 -0.0001325578888 -1.026956298e-15)
(-0.0006979225051 -0.0007717378125 -6.022959909e-15)
(-0.0001653599578 -0.0001726344286 -1.415534356e-15)
(-0.002355489111 -0.003070734034 -2.536859611e-14)
(-0.003763770547 -0.005201596609 -4.060640713e-14)
(-0.004795098732 -0.007235454011 -5.653810753e-14)
(-0.003234789576 -0.004602022318 -3.805289417e-14)
(-0.005001868526 -0.009828347217 -8.137934771e-14)
(-0.006601721358 -0.01378832767 -1.078859224e-13)
(-0.0066181261 -0.01585972576 -1.241229342e-13)
(-0.005125031234 -0.01154237259 -9.559020242e-14)
(-0.003946160813 -0.01580491854 -1.308120279e-13)
(-0.004876327589 -0.02089818749 -1.633970736e-13)
(-0.003802596425 -0.02205044287 -1.723066134e-13)
(-0.003112071795 -0.01679573776 -1.389444115e-13)
(0.0001092331573 -0.0181455651 -1.49769086e-13)
(0.0001957522779 -0.02361702325 -1.840749775e-13)
(0.001592110924 -0.02347510638 -1.82798221e-13)
(0.001244659425 -0.0180166718 -1.486033518e-13)
(0.004081112546 -0.01592547678 -1.310895836e-13)
(0.005150184277 -0.02107500008 -1.637301406e-13)
(0.005948969566 -0.01965630321 -1.526001547e-13)
(0.004678660874 -0.01470798936 -1.210143097e-13)
(0.005001449248 -0.009947280745 -8.179568134e-14)
(0.006658104438 -0.01397240634 -1.084132784e-13)
(0.006291340626 -0.0117725911 -9.134359935e-14)
(0.004603512929 -0.00815724605 -6.708522626e-14)
(0.002340144622 -0.003120414991 -2.570166302e-14)
(0.003745256554 -0.005283219384 -4.105049634e-14)
(0.002645292948 -0.00344642658 -2.678413047e-14)
(0.001467923129 -0.001807086019 -1.487698853e-14)
(0 0 0)
(0.0001268788886 -0.000134056449 -1.026956298e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-5.49834752e-05 -5.877791219e-05 -3.60822483e-16)
(0 0 0)
(-0.002338528999 -0.002831334872 -1.890154699e-14)
(-0.003474619433 -0.004402970458 -2.806088695e-14)
(-0.005432671644 -0.00734621823 -4.687916721e-14)
(-0.003990766175 -0.005153931948 -3.444466934e-14)
(-0.00908416767 -0.01470146678 -9.858780459e-14)
(-0.01101509856 -0.01869358316 -1.197375532e-13)
(-0.01229098809 -0.02280903112 -1.462441279e-13)
(-0.01035018999 -0.01831097443 -1.229016888e-13)
(-0.01167499229 -0.02873139008 -1.93067784e-13)
(-0.01329155806 -0.03434255462 -2.203792704e-13)
(-0.01264475229 -0.03758361961 -2.411126854e-13)
(-0.01121871495 -0.03174877261 -2.133015986e-13)
(-0.007541509203 -0.03861371752 -2.589872761e-13)
(-0.008308146087 -0.04474476197 -2.864930515e-13)
(-0.006283951966 -0.0462396808 -2.957634138e-13)
(-0.005737418217 -0.04009310403 -2.686462164e-13)
(0.0004935094424 -0.04208325515 -2.810252031e-13)
(0.0005686056874 -0.04823055985 -3.074207555e-13)
(0.002907981092 -0.04810114102 -3.061995102e-13)
(0.00263005722 -0.04193822727 -2.797206911e-13)
(0.008343077811 -0.0390153569 -2.593758541e-13)
(0.00926170967 -0.04522577921 -2.868816296e-13)
(0.01094461858 -0.04336130265 -2.747801986e-13)
(0.009803507013 -0.03718219971 -2.469691118e-13)
(0.01203730668 -0.02921803421 -1.937616734e-13)
(0.01377200327 -0.03493297548 -2.209621375e-13)
(0.01380578717 -0.03128967834 -1.978972541e-13)
(0.01193546889 -0.02587839852 -1.71612724e-13)
(0.00907497519 -0.01485659294 -9.861556016e-14)
(0.0113162377 -0.0193469785 -1.223188217e-13)
(0.009743795271 -0.01540750316 -9.739431484e-14)
(0.007719574057 -0.01166558752 -7.741030039e-14)
(0.002670296413 -0.003287420379 -2.184363801e-14)
(0.003991778616 -0.005147286699 -3.261280135e-14)
(0.002251547565 -0.002733323944 -1.734723476e-14)
(0.001286452599 -0.00149087276 -9.908740495e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.000254122501 -0.0002935067578 -1.637578961e-15)
(-0.0005778879304 -0.000694118273 -3.719247132e-15)
(-0.002052105952 -0.002592225432 -1.393329896e-14)
(-0.001379740488 -0.001676021166 -9.353628982e-15)
(-0.008096080538 -0.01165340207 -6.530886942e-14)
(-0.009575990766 -0.01433260821 -7.727152251e-14)
(-0.01233296711 -0.01968507564 -1.06276099e-13)
(-0.0106945453 -0.01641606277 -9.212075547e-14)
(-0.01681850115 -0.03233549666 -1.821875983e-13)
(-0.01857016079 -0.03712081099 -2.010058786e-13)
(-0.0195395297 -0.04267795984 -2.312872116e-13)
(-0.01786343979 -0.03754596033 -2.117750419e-13)
(-0.01752560295 -0.05138061978 -2.902955654e-13)
(-0.01861365903 -0.05655308618 -3.07059933e-13)
(-0.01712860946 -0.05987052156 -3.250177905e-13)
(-0.01618298058 -0.05457100944 -3.081979116e-13)
(-0.01000562143 -0.06110755304 -3.443079155e-13)
(-0.01035991544 -0.06532351609 -3.538280779e-13)
(-0.00768701959 -0.06601420108 -3.571865026e-13)
(-0.007465975389 -0.06216328182 -3.498590306e-13)
(0.000598070633 -0.06338213096 -3.554101458e-13)
(0.0005364786976 -0.06660169261 -3.591016373e-13)
(0.003288858409 -0.06667596451 -3.590461262e-13)
(0.003314565941 -0.06337707221 -3.54938301e-13)
(0.01119545457 -0.06184770647 -3.450295605e-13)
(0.011483157 -0.06606039039 -3.542999227e-13)
(0.01396608371 -0.06505614488 -3.484712519e-13)
(0.01351420709 -0.06046651464 -3.368971768e-13)
(0.01831577821 -0.05237674256 -2.90906188e-13)
(0.01946849059 -0.05777428854 -3.081424005e-13)
(0.02037140066 -0.05402955827 -2.87769808e-13)
(0.01896512613 -0.0483925683 -2.683964162e-13)
(0.01743723955 -0.03380173846 -1.873501354e-13)
(0.01921767644 -0.03874282613 -2.063627047e-13)
(0.01758303497 -0.03281444047 -1.74887882e-13)
(0.01576962025 -0.02829845567 -1.569577801e-13)
(0.008566471705 -0.0125482904 -6.983302825e-14)
(0.01009857909 -0.01538501707 -8.226752612e-14)
(0.007276252208 -0.01043885605 -5.587197371e-14)
(0.005960901211 -0.008222233337 -4.579669977e-14)
(0.0003931526595 -0.0004610024494 -2.581268532e-15)
(0.0006754255383 -0.0008238737492 -4.413136523e-15)
(1.714519717e-05 -1.991707448e-05 -1.110223025e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-2.418841108e-05 -3.154207603e-05 -1.387778781e-16)
(-6.600361623e-07 -8.328593351e-07 0)
(0 0 0)
(-0.001814046972 -0.002429893435 -1.168509733e-14)
(-0.002289566626 -0.00317228919 -1.476596623e-14)
(-0.004748779381 -0.006918211252 -3.222422329e-14)
(-0.004051605663 -0.005706710535 -2.750577544e-14)
(-0.01313712349 -0.02191254694 -1.059707877e-13)
(-0.01429952633 -0.02466400633 -1.153244167e-13)
(-0.01735631412 -0.03191277918 -1.49380508e-13)
(-0.01644270789 -0.02924040378 -1.416089468e-13)
(-0.02265455957 -0.05039604602 -2.447486658e-13)
(-0.02359586405 -0.05423676294 -2.545741395e-13)
(-0.02418747041 -0.06068817215 -2.849387393e-13)
(-0.02333450738 -0.05668022296 -2.753353101e-13)
(-0.02094235719 -0.07022363229 -3.409772464e-13)
(-0.02139700343 -0.07399178232 -3.471389842e-13)
(-0.01921257918 -0.07595983685 -3.561317907e-13)
(-0.01892482018 -0.07264274925 -3.526068326e-13)
(-0.01090263276 -0.07406190167 0)
(-0.01109241267 -0.07672793956 0)
(-0.009705098561 -0.07674569571 0)
(-0.008241450614 -0.07670538718 0)
(-0.008135229273 -0.07538601103 0)
(-0.008083852293 -0.0740970582 0)
(0.000302756755 -0.07429658442 0)
(0.0002641636856 -0.07557865428 0)
(0.001668753653 -0.07561981075 0)
(0.001699736186 -0.07433763247 0)
(0.01159402589 -0.07474164172 0)
(0.01159630774 -0.07605965169 0)
(0.0116079374 -0.07739836158 0)
(0.01300394224 -0.07748069929 0)
(0.0143804284 -0.07753704695 0)
(0.01439922817 -0.07489097846 0)
(0.02165430892 -0.07191471509 -3.433642259e-13)
(0.02197110901 -0.07566146829 -3.491928968e-13)
(0.02362581352 -0.07268257498 -3.352040867e-13)
(0.02313052883 -0.06865642113 -3.275713034e-13)
(0.02332741474 -0.0525408913 -2.505495811e-13)
(0.02415894035 -0.0563523727 -2.596256543e-13)
(0.0229229261 -0.04947370853 -2.279842981e-13)
(0.02188846276 -0.04562380107 -2.17659224e-13)
(0.0141039719 -0.02399055242 -1.14713794e-13)
(0.01542435001 -0.02715221234 -1.254552018e-13)
(0.0121491012 -0.02013575107 -9.314771177e-14)
(0.01094219739 -0.01752558682 -8.390510509e-14)
(0.002434743827 -0.003313923697 -1.590394483e-14)
(0.003043390839 -0.004285653218 -1.990074772e-14)
(0.001090209648 -0.001461684971 -6.800116026e-15)
(0.0007417557624 -0.0009612946527 -4.635181128e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0002179493368 -0.0003210552004 -1.276756478e-15)
(-0.0001242033042 -0.0001777030484 -7.21644966e-16)
(-0.0001016091326 -0.0001410841549 -5.828670879e-16)
(-0.003289775782 -0.005013934703 -2.120525977e-14)
(-0.003411895694 -0.005357513921 -2.198241589e-14)
(-0.006316300872 -0.01042552586 -4.282685317e-14)
(-0.006149225936 -0.009852149924 -4.168887457e-14)
(-0.01652475951 -0.03131315872 -1.330047184e-13)
(-0.0167913923 -0.03276846332 -1.350586309e-13)
(-0.01998378405 -0.04154695749 -1.714461906e-13)
(-0.01969805894 -0.03977053304 -1.691424778e-13)
(-0.02552045611 -0.06427583969 -2.739197758e-13)
(-0.02579620825 -0.06685403254 -2.764177776e-13)
(-0.02611956228 -0.07379215156 -3.051725539e-13)
(-0.02586743325 -0.07104437801 -3.028410855e-13)
(-0.02214093757 -0.0834362039 -3.552713679e-13)
(-0.02227335121 -0.08622458265 -3.561317907e-13)
(-0.01971770722 -0.0870169365 0)
(-0.01963564308 -0.08440651971 -3.591016373e-13)
(-0.01142204541 -0.0846233477 0)
(-0.01146945028 -0.08594602146 0)
(-0.01010127585 -0.08597916591 0)
(-0.01005405357 -0.08465857244 0)
(0.01146263658 -0.08527115998 0)
(0.01143109767 -0.08658146647 0)
(0.01279851155 -0.08662793866 0)
(0.01283143228 -0.0853196147 0)
(0.02230610655 -0.0852372169 -3.573530361e-13)
(0.02228492891 -0.08803374592 -3.582134589e-13)
(0.02450138929 -0.08631779001 -3.509137425e-13)
(0.0244328256 -0.08329930983 -3.489430966e-13)
(0.02646450618 -0.06820137646 -2.854383396e-13)
(0.02676241304 -0.07119011202 -2.891853423e-13)
(0.02583175386 -0.06350981554 -2.580435865e-13)
(0.02548135678 -0.06071183638 -2.541855615e-13)
(0.01809810976 -0.03510602421 -1.473543509e-13)
(0.01850172178 -0.03700829857 -1.507405312e-13)
(0.01502111115 -0.02827290279 -1.152966611e-13)
(0.01463749638 -0.02672127449 -1.122990589e-13)
(0.004415599712 -0.006843232638 -2.883804306e-14)
(0.00498617493 -0.007966068661 -3.258504577e-14)
(0.002377856875 -0.003616047604 -1.47937218e-14)
(0.001957492501 -0.00288787451 -1.21846977e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0003577790035 -0.0005874724591 -2.109423747e-15)
(-0.000323145241 -0.0005169730689 -1.887379142e-15)
(-0.0002834896633 -0.0004415632116 -1.665334537e-15)
(-0.004054235062 -0.006928550355 -2.611799665e-14)
(-0.004192371601 -0.007358569916 -2.700617507e-14)
(-0.00731077967 -0.01348534959 -4.95159469e-14)
(-0.007137677692 -0.01281999789 -4.835021272e-14)
(-0.01784974831 -0.03786741622 -1.433297925e-13)
(-0.01806910635 -0.03935198574 -1.44995127e-13)
(-0.02124306159 -0.04925016747 -1.816324868e-13)
(-0.02102570699 -0.04749306567 -1.799393967e-13)
(-0.02659536671 -0.0747082223 -2.835509605e-13)
(-0.02677145882 -0.07712569755 -2.849387393e-13)
(-0.02695436671 -0.08453599619 -3.123334924e-13)
(-0.02679932487 -0.08198153065 -3.111677582e-13)
(-0.02258536685 -0.09431174159 -3.575195695e-13)
(-0.02267279233 -0.09694812521 -3.577416141e-13)
(-0.02002247966 -0.09739844825 0)
(-0.01994810058 -0.09480948093 0)
(-0.01174834045 -0.09505360369 0)
(-0.01178633705 -0.09634896397 0)
(-0.01042180475 -0.09638939802 0)
(-0.01038362814 -0.09509404315 0)
(0.01117980617 -0.09572395955 0)
(0.01114098072 -0.09702692212 0)
(0.01250523338 -0.09706866902 0)
(0.01254427902 -0.09576637368 0)
(0.02210412654 -0.0960471367 -3.590738817e-13)
(0.02202557691 -0.09865809055 -3.591016373e-13)
(0.02447622352 -0.09759797423 -3.549660565e-13)
(0.02451828325 -0.09488321999 -3.544387006e-13)
(0.02750851309 -0.0801103607 -2.98955305e-13)
(0.02761961581 -0.08278163599 -3.007871729e-13)
(0.02698036514 -0.07464693043 -2.712829961e-13)
(0.02681489944 -0.07210811381 -2.691458167e-13)
(0.01994933191 -0.04355171396 -1.628974733e-13)
(0.02023240365 -0.0454087463 -1.653677195e-13)
(0.0167935568 -0.03544042075 -1.292022045e-13)
(0.01649648655 -0.0338695035 -1.26815225e-13)
(0.005716910754 -0.009949982573 -3.738676035e-14)
(0.005949023034 -0.01063837475 -3.891331701e-14)
(0.003067859997 -0.005220444446 -1.91235916e-14)
(0.002892248998 -0.004790425165 -1.801336857e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0005277817859 -0.0009556091104 -3.080868893e-15)
(-0.0004758278338 -0.0008414724148 -2.775557562e-15)
(-0.0004295710739 -0.0007415765389 -2.525757381e-15)
(-0.004536446086 -0.008590958833 -2.919886555e-14)
(-0.004675826577 -0.00907047163 -3.011479954e-14)
(-0.007911031151 -0.01612242759 -5.354050536e-14)
(-0.007739140146 -0.01539862912 -5.240252676e-14)
(-0.01861246272 -0.04367075724 -1.490751966e-13)
(-0.01882643866 -0.04522490707 -1.5068502e-13)
(-0.0219963449 -0.05620447088 -1.874334021e-13)
(-0.02178469132 -0.05437974524 -1.857958232e-13)
(-0.02722578799 -0.08424909645 -2.882971639e-13)
(-0.02739664359 -0.08671072889 -2.89601676e-13)
(-0.0275117045 -0.094670306 -3.161915174e-13)
(-0.02736160186 -0.09208416497 -3.1510905e-13)
(-0.02292093196 -0.1048064743 -3.582134589e-13)
(-0.02300354967 -0.1074294086 -3.583522368e-13)
(-0.02031538179 -0.1077326556 0)
(-0.02024258816 -0.1051504871 0)
(-0.01204816105 -0.1053942095 0)
(-0.01208522627 -0.106684553 0)
(-0.01072254503 -0.1067246311 0)
(-0.01070389061 -0.106079403 0)
(-0.01068525241 -0.1054347149 0)
(0.01085454429 -0.1061358092 0)
(0.01081190643 -0.1074337326 0)
(0.01217466388 -0.1074732726 0)
(0.01221746915 -0.1061757746 0)
(0.02177042373 -0.1064439059 -3.590738817e-13)
(0.02167997285 -0.1090141571 -3.590183706e-13)
(0.0240870866 -0.1076053983 -3.541333893e-13)
(0.02420327686 -0.1051924061 -3.546052341e-13)
(0.02732744679 -0.08893736099 -2.995659276e-13)
(0.027168131 -0.09076445432 -2.984557046e-13)
(0.02652896882 -0.08170101701 -2.687294831e-13)
(0.02669150046 -0.0801062821 -2.698674617e-13)
(0.01997286695 -0.04850360656 -1.63702385e-13)
(0.019828089 -0.04936876207 -1.626754287e-13)
(0.01641848886 -0.03840743081 -1.266764471e-13)
(0.01655014605 -0.03776883478 -1.275923811e-13)
(0.005787123793 -0.01117800276 -3.788636072e-14)
(0.005711153829 -0.01130346646 -3.738676035e-14)
(0.002893540626 -0.005448121997 -1.804112415e-14)
(0.002947054039 -0.005415600468 -1.837419106e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0007558509268 -0.001496100372 -4.413136523e-15)
(-0.000694066983 -0.001344538677 -4.080069615e-15)
(-0.0006343109846 -0.001202022754 -3.719247132e-15)
(-0.005111802008 -0.01062259728 -3.28903571e-14)
(-0.005265462905 -0.01118411129 -3.388955783e-14)
(-0.008630702311 -0.01925195495 -5.836997552e-14)
(-0.008444316975 -0.01843009559 -5.714873019e-14)
(-0.01948254636 -0.05005449782 -1.556255125e-13)
(-0.01970914922 -0.0517287299 -1.57290847e-13)
(-0.02286661679 -0.06378471376 -1.941224959e-13)
(-0.02264371747 -0.06184250055 -1.924294057e-13)
(-0.02791499553 -0.09421294848 -2.935152121e-13)
(-0.02809143129 -0.09675748973 -2.948474798e-13)
(-0.02811825428 -0.1051682545 -3.204936316e-13)
(-0.02796494644 -0.1025188113 -3.194111642e-13)
(-0.02324547537 -0.11528868 -3.587408148e-13)
(-0.02332399272 -0.1179028586 -3.588518371e-13)
(-0.02060397635 -0.1180674126 0)
(-0.02053227773 -0.1154837098 0)
(-0.01234288001 -0.1157269209 0)
(-0.01237920123 -0.1170184878 0)
(-0.01101886189 -0.1170585557 0)
(-0.01100055127 -0.1164127768 0)
(-0.01098218425 -0.1157671196 0)
(0.01050374778 -0.1165040117 0)
(0.01045744381 -0.1178000233 0)
(0.01181892266 -0.1178381436 0)
(0.01186551583 -0.116542501 0)
(0.02136205458 -0.1165060186 -3.581579477e-13)
(0.02122903247 -0.1188458582 -3.574640584e-13)
(0.02339014927 -0.116045522 -3.488320743e-13)
(0.02361063553 -0.1141942742 -3.508582314e-13)
(0.0261577671 -0.09419620204 -2.892408535e-13)
(0.02559542868 -0.09439324417 -2.836064716e-13)
(0.02489102137 -0.08449670442 -2.539357613e-13)
(0.02535386468 -0.0840652262 -2.5821012e-13)
(0.01835696536 -0.04907775264 -1.510180869e-13)
(0.01788994549 -0.04892519386 -1.472988398e-13)
(0.01451563941 -0.03726698364 -1.122990589e-13)
(0.01494987218 -0.03752860787 -1.155742169e-13)
(0.004667570764 -0.009903817199 -3.058664433e-14)
(0.004416875218 -0.009581856348 -2.894906537e-14)
(0.001964121012 -0.004052958833 -1.224020885e-14)
(0.002132233083 -0.004303609794 -1.329492072e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0009553474355 -0.002052039794 -5.606626274e-15)
(-0.0009879809712 -0.002080430402 -5.800915304e-15)
(-0.0009018691528 -0.00186112458 -5.301314943e-15)
(-0.00576796193 -0.01304572506 -3.71092046e-14)
(-0.005964499644 -0.01376336625 -3.83582055e-14)
(-0.009468961696 -0.02293665129 -6.397660179e-14)
(-0.009234820105 -0.02192808995 -6.242228956e-14)
(-0.02043267755 -0.05700478267 -1.626754287e-13)
(-0.02070782326 -0.05890586947 -1.647570969e-13)
(-0.02384324485 -0.07202279415 -2.015887457e-13)
(-0.02357543117 -0.06985855109 -1.995348331e-13)
(-0.02864288646 -0.1045601519 -2.990108161e-13)
(-0.0288449713 -0.1072582265 -3.005373728e-13)
(-0.02876410332 -0.1160094792 -3.25045546e-13)
(-0.02859297458 -0.1132436032 -3.238243007e-13)
(-0.0235528931 -0.1257189283 -3.590738817e-13)
(-0.02362709624 -0.1283141657 -3.591016373e-13)
(-0.02088869886 -0.128399223 0)
(-0.02081755828 -0.1258161041 0)
(-0.01262951179 -0.1260583136 0)
(-0.01266468936 -0.1273497948 0)
(-0.01130692112 -0.1273894852 0)
(-0.01128920512 -0.1267435082 0)
(-0.01127144353 -0.1260980131 0)
(0.01012411058 -0.1268466649 0)
(0.01007415438 -0.1281383029 0)
(0.01143518564 -0.1281753287 0)
(0.01148556185 -0.1268837033 0)
(0.02073986538 -0.1252499996 -3.537448112e-13)
(0.0205285392 -0.1270416756 -3.516908986e-13)
(0.02233385698 -0.1220959568 -3.37868622e-13)
(0.02264976586 -0.1209410802 -3.414490912e-13)
(0.02401322839 -0.09481855085 -2.676470157e-13)
(0.02359300962 -0.09523089758 -2.634559237e-13)
(0.02239751469 -0.08306293588 -2.298716772e-13)
(0.02311721989 -0.08392154548 -2.36949349e-13)
(0.01579905812 -0.04609267886 -1.303679387e-13)
(0.01480718682 -0.0440900025 -1.22235555e-13)
(0.01148818292 -0.03209422385 -8.906764215e-14)
(0.01248285804 -0.03417247936 -9.672818102e-14)
(0.003133634764 -0.007243857795 -2.053912596e-14)
(0.002736744728 -0.006456100758 -1.795785742e-14)
(0.000889018249 -0.001995057466 -5.551115123e-15)
(0.001118967691 -0.002460545502 -6.994405055e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.001698707959 -0.003933873081 -9.964251646e-15)
(-0.001548647347 -0.003521170828 -9.076073226e-15)
(-0.001325337725 -0.00295796011 -7.771561172e-15)
(-0.00659641497 -0.01612518127 -4.241051954e-14)
(-0.007088075682 -0.01764702229 -4.554689959e-14)
(-0.01075567075 -0.02809526044 -7.255307466e-14)
(-0.01015325371 -0.02604564785 -6.852851619e-14)
(-0.02163748873 -0.0650756018 -1.716682352e-13)
(-0.02204595917 -0.06748787172 -1.747491041e-13)
(-0.02508290113 -0.08146814244 -2.110811526e-13)
(-0.02474185384 -0.07896540519 -2.084443729e-13)
(-0.02950354953 -0.1156485619 -3.056166431e-13)
(-0.02962464068 -0.1181012676 -3.062827769e-13)
(-0.02950585454 -0.1274262307 -3.304301277e-13)
(-0.02931310775 -0.1245233796 -3.290423489e-13)
(-0.023846319 -0.1360656959 0)
(-0.02392099252 -0.1386484686 0)
(-0.02117848014 -0.1387295003 0)
(-0.02114139691 -0.1374385567 0)
(-0.02110467008 -0.1361474824 0)
(-0.01290803423 -0.1363896496 0)
(-0.01292541778 -0.1370345556 0)
(-0.01224634645 -0.1370541662 0)
(-0.0122290283 -0.1364094384 0)
(-0.001131475061 -0.1368965439 0)
(-0.001148616062 -0.1372179324 0)
(-0.001163596376 -0.1375394458 0)
(-0.0004985270234 -0.1375518496 0)
(-0.0004653940799 -0.1369094584 0)
(0.009694804623 -0.1371633836 0)
(0.009635050176 -0.1384493223 0)
(0.009574766518 -0.1397348847 0)
(0.01230484234 -0.1398100778 0)
(0.01242197816 -0.1372372284 0)
(0.01105889781 -0.1372004413 0)
(0.01976453874 -0.1312937378 -3.43031159e-13)
(0.01940342789 -0.1318472523 -3.381739333e-13)
(0.02073578273 -0.1239885661 -3.179123631e-13)
(0.021299714 -0.1246395725 -3.255451464e-13)
(0.02156232835 -0.09263514351 -2.419453526e-13)
(0.02078060856 -0.09106320619 -2.335076577e-13)
(0.01929918496 -0.07759224125 -1.990352327e-13)
(0.02011637232 -0.07931576919 -2.072231275e-13)
(0.01226999009 -0.03875344889 -1.014188733e-13)
(0.01153110526 -0.03711490899 -9.536815782e-14)
(0.0084407648 -0.02547889687 -6.550315845e-14)
(0.009091658278 -0.02693175442 -7.052691764e-14)
(0.001294230291 -0.003236684332 -8.493206138e-15)
(0.001052108644 -0.002681187863 -6.911138328e-15)
(8.342677698e-05 -0.000202317969 -5.273559367e-16)
(0.0001593907364 -0.0003793045938 -9.992007222e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.001611000303 -0.004020981311 -9.464651285e-15)
(-0.001820602199 -0.004466564827 -1.071365219e-14)
(-0.001945431617 -0.004690223835 -1.146305273e-14)
(-0.007852554007 -0.02072606214 -5.06539255e-14)
(-0.007600379758 -0.02041293626 -4.904410211e-14)
(-0.0113445858 -0.03196015524 -7.68274333e-14)
(-0.01164641633 -0.03224596335 -7.890910148e-14)
(-0.02306255039 -0.0747745693 -1.833533325e-13)
(-0.02269588224 -0.07484495254 -1.803279748e-13)
(-0.02570346731 -0.08988849803 -2.167155344e-13)
(-0.02605912418 -0.08961692272 -2.1987967e-13)
(-0.03026779009 -0.1276769452 -3.135269822e-13)
(-0.03004231287 -0.1287632873 -3.106959134e-13)
(-0.02970332212 -0.1378864296 -3.326783293e-13)
(-0.02985771956 -0.1364581367 -3.350653088e-13)
(-0.02384234095 -0.1464312191 0)
(-0.0239199072 -0.1490143253 0)
(-0.02116975415 -0.1490969077 0)
(-0.02113098004 -0.1478056546 0)
(-0.0210921879 -0.1465138015 0)
(-0.01284184875 -0.146761545 0)
(-0.01288064089 -0.1480533981 0)
(-0.01150562437 -0.1480946875 0)
(-0.01148621929 -0.147448461 0)
(-0.01146683223 -0.1468028344 0)
(-0.01215434049 -0.1467821897 0)
(-0.001841418531 -0.1470918691 0)
(-0.001860804439 -0.1477374957 0)
(-0.00188020894 -0.1483837223 0)
(-0.0005051501676 -0.1484250129 0)
(-0.0004663580334 -0.1471331598 0)
(0.009159015638 -0.1474221933 0)
(0.009081449387 -0.1500052995 0)
(0.01179212409 -0.1495126216 -3.577416141e-13)
(0.01190088634 -0.1473878616 -3.588240816e-13)
(0.01835010186 -0.1332273516 -3.238798119e-13)
(0.01788362138 -0.1326371458 -3.169686735e-13)
(0.01882582981 -0.1224049016 -2.924605003e-13)
(0.01938396624 -0.1235053024 -3.002043059e-13)
(0.01808410453 -0.08386561266 -2.03920214e-13)
(0.01735127167 -0.08196107781 -1.958710971e-13)
(0.0154903385 -0.0670069423 -1.602051825e-13)
(0.01654979383 -0.07034916634 -1.710853681e-13)
(0.008704206558 -0.02957029853 -7.202571872e-14)
(0.007586585653 -0.02621794415 -6.278311204e-14)
(0.005157899785 -0.01671792045 -4.005129561e-14)
(0.005877064425 -0.01872152265 -4.563016631e-14)
(0.0002166301861 -0.0005829550634 -1.415534356e-15)
(9.785139735e-05 -0.0002680030696 -6.383782392e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0003762338559 -0.001003556959 -2.220446049e-15)
(-0.0006827035925 -0.001791729624 -4.024558464e-15)
(-0.001014316635 -0.002618500387 -5.967448757e-15)
(-0.005823365636 -0.01646407957 -3.758104938e-14)
(-0.004974955007 -0.01430382651 -3.211320099e-14)
(-0.008108191387 -0.0244584753 -5.495603972e-14)
(-0.009172934199 -0.02720555404 -6.21447338e-14)
(-0.01989071026 -0.06902779204 -1.58012492e-13)
(-0.0184384737 -0.06509310195 -1.465494393e-13)
(-0.02142650978 -0.0801819227 -1.806055305e-13)
(-0.02290387798 -0.08425797703 -1.929845173e-13)
(-0.02793112479 -0.1256619066 -2.880751193e-13)
(-0.02670350413 -0.1221509222 -2.754185768e-13)
(-0.02697137113 -0.1334302193 -3.008704397e-13)
(-0.02802003997 -0.1363799372 -3.126665593e-13)
(-0.02387353902 -0.1550793985 -3.552436123e-13)
(-0.02352574104 -0.1550444932 -3.493594303e-13)
(-0.02128312756 -0.1580861686 -3.560762796e-13)
(-0.02138874138 -0.1567545079 -3.589073483e-13)
(-0.01315214979 -0.1570951698 0)
(-0.01322973406 -0.159678876 0)
(-0.01047964101 -0.1597614566 0)
(-0.01040205674 -0.1571777504 0)
(-0.01177713327 -0.1571364592 0)
(-0.002151717596 -0.1574254939 0)
(-0.002229301865 -0.1600092001 0)
(0.0005208091843 -0.1600917813 0)
(0.0005983934527 -0.1575080751 0)
(0.00878522565 -0.1563470978 -3.559097461e-13)
(0.008600934576 -0.1564322508 -3.50358631e-13)
(0.01098998647 -0.1517048203 -3.396172232e-13)
(0.01128580363 -0.1528407976 -3.477496069e-13)
(0.016363204 -0.1280893182 -2.911837438e-13)
(0.01565692618 -0.1245421437 -2.785827125e-13)
(0.01605458392 -0.1116797045 -2.498001805e-13)
(0.0168831247 -0.1156180391 -2.628175455e-13)
(0.01435888483 -0.07126701437 -1.62064806e-13)
(0.01334261454 -0.06724374245 -1.50490731e-13)
(0.01133907551 -0.05232420981 -1.171562847e-13)
(0.01233768827 -0.05606626298 -1.275646255e-13)
(0.004857045726 -0.01763404596 -4.016231792e-14)
(0.004173620159 -0.0153922702 -3.450018049e-14)
(0.002136533979 -0.007392717392 -1.657007864e-14)
(0.002901798896 -0.009885352871 -2.25375274e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-9.24089185e-06 -2.543889665e-05 -5.551115123e-17)
(-0.002212537075 -0.006682845337 -1.429412144e-14)
(-0.00138870669 -0.004261945795 -8.965050924e-15)
(-0.003231334845 -0.01041575572 -2.195466031e-14)
(-0.004439407278 -0.01407841904 -3.014255512e-14)
(-0.01295721354 -0.04817174717 -1.03334008e-13)
(-0.01091237686 -0.04127718411 -8.715250743e-14)
(-0.01351573717 -0.05422633708 -1.145472606e-13)
(-0.01570815911 -0.06192498495 -1.32893696e-13)
(-0.02143527938 -0.1032835035 -2.218503159e-13)
(-0.0192250828 -0.09432761959 -1.994793219e-13)
(-0.02010852032 -0.1066556601 -2.25569563e-13)
(-0.02219653547 -0.115608873 -2.483568906e-13)
(-0.02082780467 -0.1440030391 -3.092803791e-13)
(-0.01934981953 -0.1362099873 -2.880196082e-13)
(-0.01808139027 -0.1431245198 -3.025635298e-13)
(-0.01932262416 -0.1502571292 -3.22630811e-13)
(-0.01283048848 -0.1605777167 -3.443634267e-13)
(-0.01220702179 -0.1553905307 -3.281541705e-13)
(-0.009811339923 -0.157050033 -3.315125952e-13)
(-0.01028375829 -0.1618578587 -3.469724508e-13)
(-0.002285572329 -0.161067151 -3.447797603e-13)
(-0.002159942365 -0.1559079084 -3.286537709e-13)
(0.0003803734153 -0.1533824584 -3.231859225e-13)
(0.0003739436227 -0.1591045219 -3.404221349e-13)
(0.007632973192 -0.1455490133 -3.110012248e-13)
(0.00716116801 -0.13773168 -2.898792317e-13)
(0.008896544056 -0.1294979557 -2.724764858e-13)
(0.009562717291 -0.1378981688 -2.94569924e-13)
(0.01272838414 -0.1054201261 -2.250699627e-13)
(0.01150541733 -0.09633120118 -2.025879464e-13)
(0.01135747717 -0.08319568064 -1.749711487e-13)
(0.01271440372 -0.09208826814 -1.966204977e-13)
(0.009504532749 -0.04994032117 -1.066924327e-13)
(0.008059100524 -0.0428858667 -9.02611319e-14)
(0.006302245075 -0.03074319563 -6.472600234e-14)
(0.007650762855 -0.0368342301 -7.871481245e-14)
(0.001923438386 -0.007419712877 -1.587618925e-14)
(0.001238995513 -0.004849134984 -1.021405183e-14)
(0.0002777307897 -0.001021144455 -2.164934898e-15)
(0.0006419761046 -0.002325505137 -4.968248035e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-8.112791543e-06 -2.606242284e-05 -5.551115123e-17)
(0 0 0)
(-8.354473123e-05 -0.0002864758978 -5.828670879e-16)
(-0.0004937865432 -0.001668295107 -3.358424649e-15)
(-0.004992721558 -0.01987705847 -4.010680676e-14)
(-0.003326642392 -0.01346458051 -2.675637489e-14)
(-0.00495875985 -0.02132977249 -4.241051954e-14)
(-0.00692290403 -0.02927303874 -5.909162049e-14)
(-0.01192027743 -0.0618663415 -1.249556014e-13)
(-0.009492903773 -0.0502118496 -9.992007222e-14)
(-0.01053453443 -0.06033826764 -1.200983757e-13)
(-0.01297548495 -0.07287620189 -1.472155731e-13)
(-0.01361615768 -0.1017901769 -2.056410597e-13)
(-0.01147527199 -0.0876711992 -1.745270595e-13)
(-0.01103384586 -0.09497910461 -1.890432255e-13)
(-0.01299133522 -0.1093250527 -2.208511152e-13)
(-0.009111384455 -0.1240615918 -2.504385588e-13)
(-0.007827135062 -0.1095307805 -2.179090242e-13)
(-0.006296870636 -0.1117146623 -2.221833828e-13)
(-0.007337236658 -0.126243853 -2.547684286e-13)
(-0.001443956646 -0.1245428159 -2.51076937e-13)
(-0.001155766836 -0.1099739452 -2.185196468e-13)
(0.0005293237263 -0.1066364931 -2.118583087e-13)
(0.000496828465 -0.1212145571 -2.443045766e-13)
(0.005331346524 -0.103057019 -2.075284389e-13)
(0.004611465223 -0.08881405908 -1.763311719e-13)
(0.00545807114 -0.08057465631 -1.599553823e-13)
(0.006404279311 -0.09447607022 -1.902367153e-13)
(0.007373863591 -0.06337005793 -1.275923811e-13)
(0.005952897605 -0.05152918812 -1.022792961e-13)
(0.005437606329 -0.04134948252 -8.20732371e-14)
(0.006914035782 -0.05212926354 -1.049438314e-13)
(0.003796292307 -0.02093640997 -4.218847494e-14)
(0.002567149149 -0.014322855 -2.844946501e-14)
(0.001514564726 -0.007767998439 -1.543210004e-14)
(0.002517490407 -0.01275257581 -2.570166302e-14)
(2.118045848e-05 -8.653179248e-05 -1.665334537e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0002143812938 -0.0009088336258 -1.720845688e-15)
(0 0 0)
(-0.0001558364569 -0.0007139357102 -1.33226763e-15)
(-0.0007727898347 -0.003488891532 -6.633582572e-15)
(-0.00330214174 -0.01845882935 -3.519406988e-14)
(-0.001839760571 -0.01046202837 -1.967870311e-14)
(-0.002480588692 -0.01532860145 -2.881028749e-14)
(-0.004092802135 -0.02483726906 -4.7351012e-14)
(-0.005385343575 -0.0439905147 -8.387734951e-14)
(-0.003700424452 -0.03088895395 -5.809241976e-14)
(-0.003762236388 -0.03557973299 -6.691869281e-14)
(-0.005361825783 -0.0495433183 -9.445222382e-14)
(-0.003988640712 -0.06113174511 -1.16545662e-13)
(-0.002881738608 -0.04555931001 -8.568146193e-14)
(-0.002307125696 -0.04712451737 -8.859579737e-14)
(-0.00319462948 -0.06292690483 -1.199318422e-13)
(-0.0004198925457 -0.06143191024 -1.170452624e-13)
(-0.0002583084213 -0.04580951967 -8.609779556e-14)
(0.0003881999186 -0.04341388667 -8.157363673e-14)
(0.0004676464595 -0.05868106418 -1.117994586e-13)
(0.002361096493 -0.04472465122 -8.518186156e-14)
(0.001669600958 -0.03148555798 -5.914713164e-14)
(0.001791863267 -0.026427238 -4.965472478e-14)
(0.002622081 -0.03865232358 -7.360778653e-14)
(0.002171009588 -0.01919853442 -3.655409309e-14)
(0.001234593618 -0.01100715272 -2.067790383e-14)
(0.0008462630015 -0.006669018434 -1.254552018e-14)
(0.001694699018 -0.01322608019 -2.520206266e-14)
(0.0001949670909 -0.00112785226 -2.137179322e-15)
(5.474476801e-07 -3.208654965e-06 0)
(0 0 0)
(2.279691975e-06 -1.21548943e-05 -2.775557562e-17)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-2.409869833e-05 -0.000156118345 -2.775557562e-16)
(-0.0004320373811 -0.003819106209 -6.911138328e-15)
(-4.861617938e-05 -0.000436348159 -7.771561172e-16)
(-0.0001061778134 -0.001085624555 -1.942890293e-15)
(-0.0005471786585 -0.005504094295 -9.93649607e-15)
(-0.0005623064561 -0.009661023609 -1.745825706e-14)
(-0.0001816363135 -0.003187963782 -5.689893001e-15)
(-0.000155682244 -0.003591814395 -6.411537967e-15)
(-0.0004606597574 -0.01037155076 -1.873501354e-14)
(-2.781707495e-05 -0.009766154826 -1.762479052e-14)
(-7.567365331e-06 -0.003246734755 -5.800915304e-15)
(3.024004857e-05 -0.00265837205 -4.74620343e-15)
(9.632414364e-05 -0.008700351711 -1.57096558e-14)
(0.0002124751674 -0.004013430845 -7.244205236e-15)
(2.634522468e-05 -0.0005015913307 -8.881784197e-16)
(4.856074239e-06 -7.333485235e-05 -1.387778781e-16)
(0.0001613975087 -0.002412470725 -4.357625372e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.01034509026 -0.09379665721 0)
(-0.01170998438 -0.09375627234 0)
(0.01121833035 -0.09442302985 0)
(0.009854049576 -0.09437821922 0)
(0.009834780008 -0.09502793313 0)
(0.009815803788 -0.09567987795 0)
(0.01009113096 -0.08521495047 0)
(0.01006272987 -0.08653076167 0)
(-0.01066661421 -0.1047900268 0)
(-0.01064795439 -0.1041446186 0)
(-0.01201109403 -0.104103806 0)
(0.010896989 -0.1048363185 0)
(0.009534784173 -0.1047963747 0)
(0.009513760119 -0.1054465164 0)
(0.009492561462 -0.1060964727 0)
(0.009796691348 -0.09633235919 0)
(0.009777453497 -0.09698501683 0)
(-0.01096382264 -0.1151216424 0)
(-0.01094545202 -0.1144758653 0)
(-0.01230644238 -0.1144354775 0)
(0.01054851565 -0.115209155 0)
(0.009187198794 -0.1151716402 0)
(0.009165061175 -0.1158188657 0)
(0.009142637958 -0.1164656022 0)
(0.009471240999 -0.1067464853 0)
(0.009450030987 -0.1073948197 0)
(-0.01125368555 -0.1254526379 0)
(-0.01123586396 -0.1248071445 0)
(-0.01259422502 -0.124767196 0)
(0.01017405056 -0.1255555669 0)
(0.008813548512 -0.1255189173 0)
(0.008762803274 -0.1268108319 0)
(0.009096497782 -0.1177621593 0)
(-0.01221174673 -0.1357639288 0)
(-0.01289069266 -0.1357441418 0)
(-0.001116140118 -0.1365745606 0)
(-0.001450727767 -0.1365678767 0)
(-0.001465390684 -0.1368899402 0)
(-0.0004336879712 -0.1362661837 0)
(-0.001100555566 -0.1362525849 0)
(0.009751538583 -0.135876033 0)
(0.008391676745 -0.1358400633 0)
(0.008334406367 -0.1371272776 0)
(0.008714765355 -0.1281025876 0)
(-0.01213493542 -0.1461359632 0)
(-0.01282244368 -0.1461153185 0)
(-0.001822016651 -0.1464456424 0)
(-0.002509561745 -0.1464249966 0)
(-0.002528954821 -0.1470712236 0)
(-0.001481097035 -0.137211672 0)
(-0.0004275658992 -0.1458413067 0)
(-0.001066148727 -0.1458425504 0)
(-0.001710730889 -0.1458538235 0)
(0.00930877373 -0.1448669591 0)
(0.007948407906 -0.1448297731 0)
(0.006579908773 -0.144791442 0)
(0.006510374638 -0.1460730632 0)
(0.006449693672 -0.1473618568 0)
(0.008274477318 -0.1384130309 0)
(-0.01000312634 -0.08333659721 0)
(-0.01137146276 -0.08330084745 0)
(-0.001075623952 -0.07425609486 0)
(-0.001118092776 -0.07553858885 0)
(0.01149040021 -0.08395457713 0)
(0.0101188339 -0.0839003891 0)
(0.01019360378 -0.07467640761 0)
(0.0101911319 -0.07598472583 0)
(0.00586619351 -0.09032334202 0)
(0.005874307414 -0.08999413334 0)
(0.005530001206 -0.08998359623 0)
(0.005520944598 -0.09031299881 0)
(0.005976450837 -0.0850439598 0)
(0.005289408037 -0.08501361433 0)
(0.005281172789 -0.08568046401 0)
(0.005967322252 -0.08570895934 0)
(0.0125832688 -0.09446593843 0)
(0.02217961447 -0.09343092266 -3.589628594e-13)
(0.01945259956 -0.0933779335 0)
(0.01937305217 -0.0959770153 0)
(0.01967818057 -0.08556364942 0)
(0.01960480393 -0.08816723338 0)
(-0.02016960733 -0.102568084 0)
(-0.02283931435 -0.1021903027 -3.58074681e-13)
(-0.01337514271 -0.1040632663 0)
(-0.01341203153 -0.1053537352 0)
(-0.01311359279 -0.09501314801 0)
(-0.01315146578 -0.09630839189 0)
(0.005493691299 -0.1007667862 0)
(0.005505002566 -0.1004414991 0)
(0.005117290016 -0.1004302772 0)
(0.005106099961 -0.1007553277 0)
(0.005710330678 -0.09555467582 0)
(0.005353576376 -0.09554528435 0)
(0.005353673974 -0.09587103412 0)
(0.005705685668 -0.09588076363 0)
(0.01226002485 -0.1048765875 0)
(0.02185818096 -0.1038573371 -3.591016373e-13)
(0.01912558894 -0.1037780196 0)
(0.01903965318 -0.1063738467 0)
(0.01929242709 -0.09857798654 0)
(-0.02046027369 -0.1128998361 0)
(-0.02316612625 -0.112672306 -3.586297925e-13)
(-0.0136687546 -0.1143951101 0)
(-0.01370501402 -0.1156866189 0)
(-0.01344885854 -0.1066441459 0)
(-0.01219623002 -0.1105591926 0)
(-0.01083439242 -0.1105993656 0)
(-0.01081571278 -0.1099532974 0)
(-0.01079710035 -0.1093074674 0)
(-0.01215929616 -0.1092672236 0)
(-0.006750929895 -0.1107197628 0)
(-0.00674245921 -0.1103966726 0)
(-0.006735046369 -0.1100736107 0)
(-0.007415318945 -0.1100536037 0)
(-0.007433458564 -0.1106996881 0)
(-0.006601012271 -0.105555616 0)
(-0.007281869268 -0.1055354713 0)
(-0.007301040283 -0.1061799032 0)
(-0.006620656099 -0.1061997934 0)
(-0.006610676972 -0.1058774692 0)
(0.005240998428 -0.1111729476 0)
(0.005249463759 -0.1108482357 0)
(0.004906324033 -0.1108386525 0)
(0.004899772781 -0.1111634218 0)
(0.005400615781 -0.105976181 0)
(0.005050565607 -0.1059651291 0)
(0.005030309791 -0.1062894869 0)
(0.005385089349 -0.1063010412 0)
(0.01191076912 -0.1152474787 0)
(0.02147890931 -0.1140681559 -3.58602037e-13)
(0.01877491658 -0.1141480876 0)
(0.01868383104 -0.1167354122 0)
(0.01895285233 -0.1089644829 0)
(-0.02074648851 -0.1232333433 0)
(-0.02347587322 -0.1231106942 -3.58990615e-13)
(-0.01395492438 -0.1247271173 0)
(-0.01399003294 -0.1260183003 0)
(-0.01374109523 -0.116978193 0)
(-0.01248746469 -0.1208938704 0)
(-0.0111280962 -0.1209342695 0)
(-0.01111002379 -0.1202884233 0)
(-0.01109188597 -0.1196423989 0)
(-0.01245156168 -0.1196022308 0)
(-0.007058427034 -0.1210540123 0)
(-0.00704718964 -0.1207311854 0)
(-0.007389415509 -0.120720969 0)
(-0.007399652664 -0.121043886 0)
(-0.006912494083 -0.1158865628 0)
(-0.007588501691 -0.1158669241 0)
(-0.007607528734 -0.1165125614 0)
(-0.006932062951 -0.1165322439 0)
(-0.006922785835 -0.1162092981 0)
(0.00488409509 -0.1215329191 0)
(0.004908063362 -0.1208865293 0)
(0.004230605445 -0.1208685886 0)
(0.004207339797 -0.1215151797 0)
(0.005067585742 -0.1163539254 0)
(0.004388495181 -0.116335155 0)
(0.004376897126 -0.1166595927 0)
(0.004366103087 -0.1169846551 0)
(0.005045217088 -0.1170020449 0)
(-0.02106840526 -0.1348557936 0)
(-0.02103190043 -0.1335641121 0)
(-0.02377259831 -0.1334826544 0)
(-0.01287345488 -0.1350980904 0)
(-0.01423362142 -0.1350582679 0)
(-0.01426892621 -0.1363499855 0)
(-0.01402509231 -0.1273098451 0)
(-0.01276930943 -0.1312238454 0)
(-0.0120903653 -0.1312436924 0)
(-0.01207294391 -0.1305975264 0)
(-0.01275194984 -0.1305777376 0)
(-0.007318291665 -0.1313844072 0)
(-0.007315722808 -0.1310606593 0)
(-0.007672588056 -0.1310491625 0)
(-0.007678274032 -0.1313725165 0)
(-0.007189004044 -0.1262180793 0)
(-0.007540640086 -0.1262070399 0)
(-0.007551939267 -0.1265293245 0)
(-0.007202603717 -0.1265401748 0)
(-0.0009123086595 -0.1317369387 0)
(-0.0005742391149 -0.1317454088 0)
(-0.0005676578781 -0.1314212409 0)
(-0.0009089873329 -0.1314118321 0)
(0.004481852799 -0.1318663655 0)
(0.004508969977 -0.131220911 0)
(0.003831890637 -0.131204363 0)
(0.003805308688 -0.1318495934 0)
(0.004690868076 -0.1267031524 0)
(0.0040147158 -0.1266857315 0)
(0.003989651897 -0.1273316079 0)
(0.004666098185 -0.1273490377 0)
(-0.02105339577 -0.1452219484 0)
(-0.02121883989 -0.1439615578 0)
(-0.02396481007 -0.1438756778 0)
(-0.01280305662 -0.1454696919 0)
(-0.01417813315 -0.1454284007 0)
(-0.01421692528 -0.1467202538 0)
(-0.01430421117 -0.1376410431 0)
(-0.01294307919 -0.1376807144 0)
(-0.01305136301 -0.1415547751 0)
(-0.01237193706 -0.1415745765 0)
(-0.01235345544 -0.1409291029 0)
(-0.01303287959 -0.1409092415 0)
(-0.007608004514 -0.1417136054 0)
(-0.007577817202 -0.1413935095 0)
(-0.007929482038 -0.141382229 0)
(-0.00795233647 -0.1417033258 0)
(-0.007435595025 -0.1365522359 0)
(-0.007801187011 -0.1365397564 0)
(-0.007816832139 -0.1368607694 0)
(-0.00745652156 -0.13687273 0)
(-0.01173834114 -0.1558446061 0)
(-0.01311335766 -0.1558033167 0)
(-0.002112925462 -0.1561336408 0)
(-0.003487983987 -0.1560923502 0)
(-0.003526776121 -0.1573842033 0)
(-0.002548335879 -0.1477168503 0)
(-0.006133583942 -0.09001734846 0)
(-0.006153722193 -0.09066799119 0)
(-0.005470945101 -0.09068759297 0)
(-0.005460866101 -0.09036214278 0)
(-0.00545120654 -0.09003746073 0)
(-0.006291542089 -0.09521566029 0)
(-0.005606165717 -0.09523630103 0)
(-0.005596722974 -0.09491263944 0)
(-0.005589053279 -0.09458802375 0)
(-0.006272739383 -0.09456749383 0)
(-0.005943621049 -0.08474081669 0)
(-0.005971580587 -0.08540652337 0)
(-0.00528406244 -0.08541283886 0)
(-0.005256131226 -0.0847484754 0)
(-0.005430439636 -0.08938448266 0)
(-0.006112856174 -0.08936487369 0)
(0.005717188589 -0.09522829412 0)
(0.005357531357 -0.09521917582 0)
(0.005512544141 -0.09064155028 0)
(0.005857452967 -0.09065161903 0)
(0.0113293097 -0.0905072027 0)
(0.009963175337 -0.09046012032 0)
(0.009945434485 -0.091112925 0)
(0.009927922836 -0.0917680968 0)
(0.01129319843 -0.0918137781 0)
(0.005849815836 -0.09097895024 0)
(0.006533660888 -0.09100158692 0)
(0.006550670356 -0.09034713874 0)
(0.006060506891 -0.09556453039 0)
(0.006068750264 -0.09523801012 0)
(-0.006591051162 -0.1052338918 0)
(-0.00658149025 -0.1049114949 0)
(-0.007262698252 -0.1048910394 0)
(-0.006449568749 -0.1003902537 0)
(-0.007129463904 -0.1003700779 0)
(-0.007148669153 -0.1010156498 0)
(-0.006468952203 -0.1010357603 0)
(-0.01189916141 -0.1002282333 0)
(-0.01193657529 -0.1015201879 0)
(-0.01057294662 -0.1015607149 0)
(-0.01053535454 -0.1002688258 0)
(-0.005791100123 -0.1010555745 0)
(-0.005781513409 -0.1007331184 0)
(-0.00577097925 -0.1004105105 0)
(-0.006258840404 -0.1055658307 0)
(-0.006248693287 -0.1052441121 0)
(-0.006310919594 -0.09586296871 0)
(-0.005625642218 -0.09588330618 0)
(-0.005614833221 -0.09555974567 0)
(-0.005760952104 -0.1000875871 0)
(-0.005750402324 -0.09976425907 0)
(-0.006429865462 -0.09974409618 0)
(0.005416360006 -0.1056518678 0)
(0.005071109417 -0.1056413804 0)
(0.005098891656 -0.1010809782 0)
(0.005485970559 -0.1010929018 0)
(0.01102134352 -0.1009330724 0)
(0.0103398373 -0.1009125479 0)
(0.01031949184 -0.1015640913 0)
(0.01100088165 -0.1015844922 0)
(0.005863286466 -0.101104352 0)
(0.005871882647 -0.1007780826 0)
(0.005746822806 -0.1059868172 0)
(0.00575969412 -0.1056621775 0)
(0.006053232567 -0.09589077947 0)
(0.005882677298 -0.1004525998 0)
(0.01104159835 -0.1002825473 0)
(0.01036003213 -0.100262021 0)
(-0.006902387744 -0.1155640022 0)
(-0.006891984996 -0.1152415705 0)
(-0.007569125443 -0.1152216576 0)
(-0.007452154421 -0.1113462963 0)
(-0.006768792925 -0.1113666363 0)
(-0.006758713561 -0.111043174 0)
(-0.01223311829 -0.1118516434 0)
(-0.01087152971 -0.1118921091 0)
(-0.01085296467 -0.1112458574 0)
(-0.0064116587 -0.1110537756 0)
(-0.006404473257 -0.1107302865 0)
(-0.006576445459 -0.1158962934 0)
(-0.006565356881 -0.1155738223 0)
(-0.006268995323 -0.1058876092 0)
(-0.006398579074 -0.1104069988 0)
(0.00508965316 -0.1157066378 0)
(0.004410053172 -0.1156880322 0)
(0.004399298178 -0.1160115944 0)
(0.004889864993 -0.1114879703 0)
(0.005230529014 -0.1114975993 0)
(0.01068176859 -0.1113255744 0)
(0.009319968108 -0.1112881652 0)
(0.009298165279 -0.1119362416 0)
(0.009276273075 -0.1125832943 0)
(0.01063776633 -0.1126209346 0)
(0.005219474602 -0.1118213326 0)
(0.005899388999 -0.1118400677 0)
(0.005921186422 -0.1111921713 0)
(0.005746048079 -0.1163726169 0)
(0.005768305703 -0.115725395 0)
(0.005734055281 -0.1063120005 0)
(0.005942461841 -0.1105436587 0)
(0.005601402416 -0.1105335975 0)
(0.005258630507 -0.1105239652 0)
(0.01072500882 -0.1100295909 0)
(0.009363782601 -0.1099910578 0)
(0.00934208176 -0.1106397378 0)
(-0.0071760944 -0.1258959632 0)
(-0.007529642718 -0.1258848063 0)
(-0.00740976621 -0.1213666867 0)
(-0.007069656626 -0.1213767795 0)
(-0.01252315886 -0.1221845553 0)
(-0.01116407777 -0.1222245254 0)
(-0.01114615599 -0.1215796956 0)
(-0.00672730895 -0.1213869395 0)
(-0.006714044679 -0.1210644136 0)
(-0.006828388048 -0.1262298689 0)
(-0.006812159672 -0.1259080326 0)
(-0.006587241232 -0.1162190135 0)
(-0.006700781003 -0.1207417075 0)
(0.004716234406 -0.1260568046 0)
(0.004039566108 -0.1260393681 0)
(0.00418421875 -0.1221619553 0)
(0.004861208052 -0.1221797017 0)
(-0.007421775145 -0.1362302072 0)
(-0.007790546055 -0.136217392 0)
(-0.007687616555 -0.1316956406 0)
(-0.007328482619 -0.1317073857 0)
(-0.01278666361 -0.1318697732 0)
(-0.01210771949 -0.1318896202 0)
(-0.001244254402 -0.1317303942 0)
(-0.001258241682 -0.1320521777 0)
(-0.0009226544171 -0.1320597925 0)
(-0.006962851028 -0.1317197463 0)
(-0.006949983369 -0.1313970283 0)
(-0.007074672421 -0.1365642149 0)
(-0.00705418268 -0.1362428669 0)
(-0.006845718667 -0.1265516121 0)
(-0.006950559236 -0.1310730058 0)
(-0.001246615863 -0.1314034954 0)
(0.004249184855 -0.1370180581 0)
(0.004310129764 -0.1357316747 0)
(0.002955760498 -0.1356977918 0)
(0.002924602808 -0.1363412031 0)
(0.002892856517 -0.136983816 0)
(0.003777494904 -0.1324942462 0)
(0.004454007807 -0.1325112576 0)
(-0.0005847144779 -0.1320682586 0)
(-0.007342724599 -0.1469230709 0)
(-0.007324423416 -0.1462714061 0)
(-0.007665087471 -0.1462629782 0)
(-0.008008019652 -0.1462556834 0)
(-0.008028876856 -0.1469042686 0)
(-0.007977820201 -0.1420239833 0)
(-0.007639439878 -0.1420336638 0)
(-0.01307007923 -0.1422000614 0)
(-0.01239058967 -0.1422197446 0)
(-0.001433772151 -0.1420208018 0)
(-0.002090890074 -0.14201206 0)
(-0.00213440691 -0.1426493948 0)
(-0.001478199216 -0.142657809 0)
(-0.007343628279 -0.1420411653 0)
(-0.007309806024 -0.1417214187 0)
(-0.006656878406 -0.1469436657 0)
(-0.006642843398 -0.1462918728 0)
(-0.006985517434 -0.1462797812 0)
(-0.007102088809 -0.1368840337 0)
(-0.007274360711 -0.1414020212 0)
(-0.001388743248 -0.1413833322 0)
(-0.002047645025 -0.1413738762 0)
(-0.01987284057 -0.0922171769 0)
(-0.0224912397 -0.0916505542 -3.571865026e-13)
(-0.01307542033 -0.09371593127 0)
(-0.01279014341 -0.08458765794 0)
(-0.01283689207 -0.08590847884 0)
(-0.01159355359 -0.08986290189 0)
(-0.01022777403 -0.08990179991 0)
(-0.01018700274 -0.08859603708 0)
(-0.01155289943 -0.08855703945 0)
(-0.006794979834 -0.08934511136 0)
(-0.0068157109 -0.08999749595 0)
(-0.006627585842 -0.08472456764 0)
(-0.006656040838 -0.08539217404 0)
(0.003147379264 -0.08759631686 0)
(0.003132654886 -0.08727146713 0)
(0.002787578662 -0.08728017304 0)
(0.002887748195 -0.08754733378 0)
(0.003197028469 -0.0849025023 0)
(0.002838060623 -0.08488422613 0)
(0.002828026914 -0.08523116802 0)
(0.003189326059 -0.08524460745 0)
(-0.01049761542 -0.0989760402 0)
(-0.01186166591 -0.09893556056 0)
(-0.007110180635 -0.09972390771 0)
(-0.006974259162 -0.09519545975 0)
(-0.006993636667 -0.09584276816 0)
(0.002192954065 -0.1188547221 0)
(0.002189484939 -0.1185284507 0)
(0.001829803246 -0.118493147 0)
(0.001768466459 -0.1187625807 0)
(0.011534951 -0.1255929492 0)
(0.02092380128 -0.1232546749 -3.553546346e-13)
(0.01840221151 -0.1244868749 -3.591016373e-13)
(0.01829727719 -0.1270145954 -3.589351039e-13)
(0.01859154185 -0.1193228207 0)
(-0.0009558576024 -0.1290516428 0)
(-0.000535708158 -0.1291430534 0)
(-0.0005273106482 -0.1288190001 0)
(-0.0008768141551 -0.1287851431 0)
(0.001888220984 -0.1292193231 0)
(0.001913481689 -0.1285736928 0)
(0.001237077386 -0.1285568648 0)
(0.001224872745 -0.128879903 0)
(0.001213499742 -0.129202846 0)
(0.001989494839 -0.1266359079 0)
(0.001651590302 -0.1266273827 0)
(0.001639179256 -0.1269502946 0)
(0.001977105992 -0.1269588804 0)
(-0.0007697582076 -0.1420319727 0)
(-0.0007248487174 -0.1413947998 0)
(0.003984897259 -0.1421529463 0)
(0.00405368857 -0.1408710626 0)
(0.002686934897 -0.1408332043 0)
(0.002610657147 -0.1421124009 0)
(0.002860636206 -0.1376264147 0)
(0.002828132098 -0.1382684644 0)
(0.0041862959 -0.138303182 0)
(-0.006954976437 -0.09454730771 0)
(-0.00683579005 -0.09064817048 0)
(-0.01163246518 -0.09116073304 0)
(-0.01026707122 -0.09120047229 0)
(-0.003495779643 -0.09269796161 0)
(-0.003528261564 -0.09302207245 0)
(-0.00322601233 -0.09303078814 0)
(-0.003190532664 -0.09270604663 0)
(-0.003185761721 -0.08475956513 0)
(-0.00320692754 -0.08510342786 0)
(-0.002861332359 -0.08510483964 0)
(-0.002837677833 -0.08475629817 0)
(-0.003299752818 -0.08746708916 0)
(-0.002956583944 -0.0874729017 0)
(-0.002943512797 -0.08714100721 0)
(-0.003291673352 -0.08713562732 0)
(0.006652986524 -0.08573781245 0)
(0.006664985381 -0.08507822731 0)
(0.006567423774 -0.0896912175 0)
(0.005883133637 -0.08966600304 0)
(0.01136474131 -0.08920126151 0)
(0.009998895973 -0.08915655403 0)
(0.009981196202 -0.08980799067 0)
(0.002001293876 -0.1263123771 0)
(0.001663126536 -0.1263036038 0)
(0.002073930352 -0.124046642 0)
(0.001723779397 -0.1240347462 0)
(0.001717855773 -0.1243594144 0)
(0.002064688014 -0.1243704297 0)
(0.01031829333 -0.1216800036 0)
(0.008957332885 -0.1216426196 0)
(0.008909940579 -0.1229348751 0)
(0.01027067182 -0.1229718919 0)
(0.00553852016 -0.1221976981 0)
(0.005561959816 -0.1215511122 0)
(0.005367745175 -0.1267208354 0)
(0.005393395913 -0.1260746162 0)
(0.005723716039 -0.1170203171 0)
(0.005585574073 -0.1209047117 0)
(0.01036567248 -0.1203861863 0)
(0.009004473827 -0.120348735 0)
(-0.001018586104 -0.1343196632 0)
(-0.001361284803 -0.134309793 0)
(-0.001370476753 -0.1346340626 0)
(-0.001030803349 -0.1346428211 0)
(-0.003967588886 -0.1394031215 0)
(-0.003616494091 -0.1394149855 0)
(-0.003595161375 -0.1390957648 0)
(-0.003943482254 -0.1390839241 0)
(-0.001270006439 -0.1394644267 0)
(-0.001232675169 -0.1388237832 0)
(-0.001894424635 -0.1388132208 0)
(-0.001912735067 -0.1391339736 0)
(-0.001930729266 -0.1394540153 0)
(0.0001718644806 -0.07942493233 0)
(-0.0005757622889 -0.07940873427 0)
(-0.000594612089 -0.08005026907 0)
(0.0001520612393 -0.08006651057 0)
(-0.005586525219 -0.07935283472 0)
(-0.005730933651 -0.08072911486 0)
(-0.005031292527 -0.08073091179 0)
(-0.004309540024 -0.08071455696 0)
(-0.004236356136 -0.08003239191 0)
(-0.004164977421 -0.07936074261 0)
(-0.005222028603 -0.08407499208 0)
(-0.005916843713 -0.08408087958 0)
(0.005985250006 -0.08438033046 0)
(0.005296992758 -0.08434902846 0)
(0.005972013695 -0.0797057253 0)
(0.004539591026 -0.07961977166 0)
(0.004532470297 -0.08026910568 0)
(0.004560601617 -0.08094287828 0)
(0.005294834019 -0.08100811871 0)
(0.005998607923 -0.08105068602 0)
(0.0009326830348 -0.08009538642 0)
(0.0009474135652 -0.07945303127 0)
(0.003043435146 -0.08801305708 0)
(0.005929746239 -0.08769331323 0)
(0.005244945054 -0.08766831765 0)
(0.005236880237 -0.08799949166 0)
(0.005228867998 -0.08833011472 0)
(0.005915183747 -0.08835367239 0)
(0.003471871992 -0.08794828117 0)
(0.003487606902 -0.08761387823 0)
(0.003544915094 -0.08525680461 0)
(0.003549918446 -0.08491718331 0)
(0.003489452938 -0.08728060168 0)
(0.005944297509 -0.08703512779 0)
(0.005260375247 -0.08701206239 0)
(0.00525257784 -0.08733973112 0)
(0.005669563839 -0.09816369039 0)
(0.005346089369 -0.0981530161 0)
(0.005332868205 -0.09847890644 0)
(0.005656596487 -0.0984895283 0)
(0.005678156416 -0.09783754095 0)
(0.005352574058 -0.09782686342 0)
(0.005328509245 -0.1085774681 0)
(0.004990404321 -0.1085682162 0)
(0.004977115965 -0.1088937442 0)
(0.005317050964 -0.108903051 0)
(0.005337050829 -0.1082510168 0)
(0.004997468654 -0.1082413603 0)
(0.002152126254 -0.1214555672 0)
(0.002165997756 -0.1211328193 0)
(0.00182272543 -0.1211230519 0)
(0.001799373589 -0.1214437134 0)
(0.001894425728 -0.1191806933 0)
(0.002214341014 -0.1191854953 0)
(0.004977235142 -0.1189445752 0)
(0.004299318215 -0.1189263205 0)
(0.004276297387 -0.1195725586 0)
(0.004954574329 -0.1195908241 0)
(0.002560065028 -0.1191958168 0)
(0.002555446864 -0.1188692106 0)
(0.002502552625 -0.121467291 0)
(0.002513540423 -0.1211439761 0)
(0.002322255818 -0.1162669236 0)
(0.002258563077 -0.1165666151 0)
(0.002615126461 -0.1166011646 0)
(0.002643874343 -0.1162800045 0)
(0.002559242796 -0.1185445987 0)
(0.004999978174 -0.1182977883 0)
(0.00432209305 -0.1182794744 0)
(0.004310510021 -0.1186030117 0)
(-0.00730027363 -0.1287983718 0)
(-0.007632647111 -0.1287890518 0)
(-0.007643662496 -0.1291118854 0)
(-0.007313385498 -0.1291210223 0)
(-0.009988368628 -0.1287211362 0)
(-0.01000612841 -0.1293665713 0)
(-0.009331017239 -0.129386063 0)
(-0.009313019246 -0.1287406951 0)
(-0.01005928055 -0.1313026405 0)
(-0.00938440939 -0.131322125 0)
(-0.009366629786 -0.1306760298 0)
(-0.01004162276 -0.1306566017 0)
(0.001781960364 -0.1318012073 0)
(0.00180931694 -0.1311561804 0)
(0.001136584159 -0.1311404837 0)
(0.001110094015 -0.1317856567 0)
(0.001201200304 -0.1295256411 0)
(0.001189159471 -0.1298486241 0)
(0.001862673475 -0.1298647046 0)
(-0.000853559077 -0.129468024 0)
(-0.0005280233407 -0.1294723341 0)
(-0.007630678214 -0.1391214836 0)
(-0.007948390731 -0.1391139251 0)
(-0.00795986992 -0.1394362043 0)
(-0.007647845025 -0.1394431716 0)
(-0.01027067537 -0.1390504968 0)
(-0.01028836975 -0.1396957537 0)
(-0.00961636609 -0.1397147317 0)
(-0.009598973527 -0.1390695257 0)
(-0.01034311439 -0.1416328561 0)
(-0.009670990723 -0.1416518377 0)
(-0.009661184396 -0.141329268 0)
(-0.0096520999 -0.1410067367 0)
(-0.01032451457 -0.1409874461 0)
(-0.01019955461 -0.1364680378 0)
(-0.01021710916 -0.1371126384 0)
(-0.009543607244 -0.1371317214 0)
(-0.009525518074 -0.1364873171 0)
(-0.009580802734 -0.1384244032 0)
(-0.01025292279 -0.1384053016 0)
(-0.007608078206 -0.1388008595 0)
(-0.00793195476 -0.1387925754 0)
(-0.003378941289 -0.09009661841 0)
(-0.003340428945 -0.09043108283 0)
(-0.002916495884 -0.09052329168 0)
(-0.003068130375 -0.09010181363 0)
(-0.00315332559 -0.0923835791 0)
(-0.003461381279 -0.09237522956 0)
(-0.006214528677 -0.09261896472 0)
(-0.005533114848 -0.09263876579 0)
(-0.005522583613 -0.0923134553 0)
(-0.005512231212 -0.09198910034 0)
(-0.006194291862 -0.09196903963 0)
(-0.003804424984 -0.09236504866 0)
(-0.003832555503 -0.09268844937 0)
(-0.003719040025 -0.09008696435 0)
(-0.003702782096 -0.09041794386 0)
(-0.003437226829 -0.0953110396 0)
(-0.00341194935 -0.09500605064 0)
(-0.003774663632 -0.09497293802 0)
(-0.003770755843 -0.09529760107 0)
(-0.003858878181 -0.09301304545 0)
(-0.006234541699 -0.09326943705 0)
(-0.00555362351 -0.09328994391 0)
(-0.005543575898 -0.09296473901 0)
(-0.006046873511 -0.08739472338 0)
(-0.00536400175 -0.08741277253 0)
(-0.005338816381 -0.08674705101 0)
(-0.006021660013 -0.08672946514 0)
(-0.00363835133 -0.08712687474 0)
(-0.003646946348 -0.08745870546 0)
(-0.003537262116 -0.08477000835 0)
(-0.003552905997 -0.08510337986 0)
(-0.003393425252 -0.08976596243 0)
(-0.00372553937 -0.08975760513 0)
(-0.003651799646 -0.08778972967 0)
(-0.003300041244 -0.0877980943 0)
(-0.00606980478 -0.08805457899 0)
(-0.005386868349 -0.08807307451 0)
(-0.002954809724 -0.08780601671 0)
(-0.003078474781 -0.08977170235 0)
(0.005796711494 -0.09294342757 0)
(0.005450425871 -0.09293260881 0)
(0.005445365025 -0.09325934475 0)
(0.005789337528 -0.0932709949 0)
(0.005804963876 -0.09261660729 0)
(0.005457688212 -0.0926057588 0)
(-0.006523925496 -0.1029744773 0)
(-0.006180879395 -0.1029847783 0)
(-0.006172663728 -0.1026619807 0)
(-0.006514655588 -0.1026517714 0)
(-0.003818854721 -0.1004661867 0)
(-0.004120287922 -0.1004574955 0)
(-0.004141027888 -0.1007793765 0)
(-0.003840758735 -0.1007880327 0)
(-0.006532838993 -0.1032973139 0)
(-0.006189462878 -0.1033076249 0)
(-0.006370555776 -0.0978049689 0)
(-0.00568829773 -0.09782545594 0)
(-0.005677483922 -0.09750153523 0)
(-0.005667357747 -0.09717771399 0)
(-0.006350632843 -0.0971574967 0)
(-0.003638970513 -0.09788789457 0)
(-0.003615930617 -0.09756482145 0)
(-0.0039268532 -0.09755554503 0)
(-0.003949027259 -0.0978785841 0)
(-0.003786869041 -0.09562040174 0)
(-0.003464071987 -0.09563063529 0)
(-0.003797097109 -0.1001442161 0)
(-0.004099534748 -0.1001353747 0)
(-0.003970778292 -0.09820133558 0)
(-0.003661793789 -0.0982105538 0)
(-0.006390393481 -0.09845160287 0)
(-0.005709045671 -0.09847200252 0)
(-0.0056984869 -0.098148975 0)
(0.005514145639 -0.1033754171 0)
(0.005193083218 -0.1033666169 0)
(0.005180759694 -0.1036924141 0)
(0.005503460183 -0.1037012634 0)
(0.005520507315 -0.103049561 0)
(0.005198726665 -0.1030406792 0)
(0.005843275384 -0.1033847598 0)
(0.005851195322 -0.1030590105 0)
(0.008215212525 -0.1034546637 0)
(0.008235640159 -0.102804384 0)
(0.00755514678 -0.1027841301 0)
(0.007535015556 -0.1034345389 0)
(0.008296335103 -0.100851125 0)
(0.007615067098 -0.1008306677 0)
(0.007595070836 -0.1014825819 0)
(0.008276220638 -0.1015029756 0)
(0.008131551283 -0.1060567449 0)
(0.008152695342 -0.1054066068 0)
(0.00747255297 -0.1053866638 0)
(0.007451347106 -0.1060368601 0)
(0.007514451701 -0.104085355 0)
(0.008194530468 -0.1041054162 0)
(0.005833191754 -0.1037105641 0)
(0.006000399422 -0.09817422538 0)
(0.006009830232 -0.09784816117 0)
(0.008375799232 -0.09824681576 0)
(0.008395308267 -0.09759512716 0)
(0.007714351085 -0.09757431885 0)
(0.007694960253 -0.09822607105 0)
(0.008452527385 -0.09563761985 0)
(0.007770977385 -0.09561655351 0)
(0.00775227235 -0.09626946737 0)
(0.008433644144 -0.09629046831 0)
(0.008316355331 -0.1002004126 0)
(0.007635029125 -0.1001798935 0)
(0.007675158413 -0.09887751062 0)
(0.008356119199 -0.09889819893 0)
(0.005988693923 -0.09850004112 0)
(-0.006829881625 -0.1133036082 0)
(-0.006486389704 -0.1133138626 0)
(-0.006475023907 -0.1129911596 0)
(-0.006819012048 -0.1129808302 0)
(-0.006839904573 -0.1136265917 0)
(-0.006497678703 -0.1136368081 0)
(-0.00667988831 -0.1081363406 0)
(-0.006340993172 -0.1081462768 0)
(-0.00633070742 -0.1078235414 0)
(-0.006670014773 -0.1078135328 0)
(-0.00668982365 -0.1084592067 0)
(-0.006351240525 -0.1084691335 0)
(0.005155003395 -0.1137641485 0)
(0.004813712952 -0.1137543806 0)
(0.004803642563 -0.114078744 0)
(0.005144292781 -0.1140884327 0)
(0.002689367621 -0.1159625903 0)
(0.002386001117 -0.1159546818 0)
(0.005164792367 -0.1134399568 0)
(0.004822631293 -0.1134299826 0)
(-0.00714345511 -0.1236340117 0)
(-0.006811747656 -0.1236433117 0)
(-0.006804353411 -0.1233200691 0)
(-0.007135370837 -0.1233107898 0)
(-0.007148314854 -0.1239574506 0)
(-0.006812528439 -0.1239671133 0)
(-0.006972719043 -0.1184709705 0)
(-0.00661658042 -0.1184822653 0)
(-0.006611962488 -0.1181588792 0)
(-0.006965350601 -0.1181477871 0)
(-0.006981619945 -0.1187939877 0)
(-0.006624917299 -0.1188052994 0)
(0.002137817923 -0.1217786623 0)
(0.002490686378 -0.12179106 0)
(0.002418718921 -0.1240571155 0)
(0.002428988508 -0.1237331184 0)
(0.002082272074 -0.1237220465 0)
(0.004789562453 -0.1241186388 0)
(0.004813705344 -0.1234718338 0)
(0.004136957854 -0.1234540346 0)
(0.004112913958 -0.1241011428 0)
(0.001728364387 -0.1237092572 0)
(0.001778207622 -0.1217649811 0)
(-0.007453802111 -0.1339591672 0)
(-0.00778396451 -0.1339502139 0)
(-0.007796179944 -0.1342730115 0)
(-0.007469730491 -0.134281613 0)
(-0.01012983066 -0.1338840956 0)
(-0.01014743386 -0.1345303162 0)
(-0.009473995552 -0.1345495174 0)
(-0.009456274149 -0.1339033604 0)
(-0.009508178307 -0.1358418693 0)
(-0.01018221484 -0.13582259 0)
(-0.01007699475 -0.1319485575 0)
(-0.009402363596 -0.1319680348 0)
(-0.009438325348 -0.1332576306 0)
(-0.01011218368 -0.1332384168 0)
(-0.007435588843 -0.1336370301 0)
(-0.007770134414 -0.1336276449 0)
(-0.001006679074 -0.1339965561 0)
(-0.001351862453 -0.1339858305 0)
(-0.007126364419 -0.1339678585 0)
(-0.007102257719 -0.1336462587 0)
(-0.007148172429 -0.1342897074 0)
(-0.006970570853 -0.1288074314 0)
(-0.006953064408 -0.1284850329 0)
(-0.007286582135 -0.1284756185 0)
(-0.00698722766 -0.1291297353 0)
(-0.001090940276 -0.1295047972 0)
(-0.0006798853301 -0.1343280321 0)
(-0.0006666612592 -0.134005445 0)
(0.001668223539 -0.1343792636 0)
(0.001697855398 -0.1337346654 0)
(0.001026289656 -0.133719304 0)
(0.0009964705823 -0.1343641368 0)
(0.00108199584 -0.1324295803 0)
(0.001754437006 -0.1324453884 0)
(-0.01036206341 -0.1422778952 0)
(-0.009690592566 -0.142296617 0)
(-0.009680551635 -0.1419742345 0)
(-0.0102771274 -0.1442933618 0)
(-0.009601975909 -0.1442875108 0)
(-0.009677150618 -0.1439249741 0)
(-0.009710788797 -0.1435911905 0)
(-0.01038314074 -0.1435818111 0)
(-0.007570563526 -0.144345748 0)
(-0.007686179234 -0.1439797748 0)
(-0.008006518159 -0.1439756808 0)
(-0.007899070213 -0.1443494563 0)
(-0.007402281189 -0.1442652206 0)
(-0.007479095306 -0.1439712793 0)
(-0.004203505853 -0.1445508129 0)
(-0.004188629352 -0.1442295966 0)
(-0.004513043089 -0.1442270018 0)
(-0.004528124194 -0.1445480317 0)
(-0.004054324193 -0.141988775 0)
(-0.00438894724 -0.1419819699 0)
(-0.004402963327 -0.1423039327 0)
(-0.004069522311 -0.1423101018 0)
(-0.00731666304 -0.1391285707 0)
(-0.007287068562 -0.1388088173 0)
(-0.004283588831 -0.1390523311 0)
(-0.004378618057 -0.1393155882 0)
(-0.004039876106 -0.1416674258 0)
(-0.004376922029 -0.1416597071 0)
(-0.004299543339 -0.1397260471 0)
(-0.00397318734 -0.1397293609 0)
(-0.007343414624 -0.1394492502 0)
(-0.001968523754 -0.1400945848 0)
(-0.001307766124 -0.1401049373 0)
(-0.003628023729 -0.1397389448 0)
(-0.00372314765 -0.1419941554 0)
(-0.003706558699 -0.1416737112 0)
(0.00177034063 -0.08479576772 0)
(0.001348394406 -0.08478339336 0)
(0.001717721793 -0.08519647679 0)
(0.0005653519039 -0.127888023 0)
(0.0005781343702 -0.1275649422 0)
(0.0002195189202 -0.1275509305 0)
(0.0002072278792 -0.127873846 0)
(0.000630772453 -0.1265997922 0)
(0.0002964014333 -0.1265923941 0)
(0.0002808114804 -0.1269143697 0)
(0.0006183548119 -0.1269225237 0)
(-0.02132492269 -0.1542643201 0)
(-0.02400955476 -0.1537904945 -3.581857033e-13)
(-0.01307458354 -0.1545120636 0)
(-0.01444966007 -0.1544707724 0)
(-0.01582473659 -0.1544294813 0)
(-0.01590230284 -0.1570125874 0)
(-0.01425571741 -0.1480121069 0)
(-0.01299699927 -0.1519283574 0)
(-0.01162198275 -0.1519696468 0)
(-0.01158319062 -0.1506777937 0)
(-0.01295820714 -0.1506365043 0)
(-0.007496795176 -0.1520935191 0)
(-0.007458003042 -0.150801666 0)
(-0.008833037565 -0.1507603761 0)
(-0.0088718297 -0.1520522292 0)
(-0.00804853996 -0.147551088 0)
(-0.007361445698 -0.1475711197 0)
(0.0006759597034 -0.1549249689 0)
(-0.000699092821 -0.1548836784 0)
(-0.002074151346 -0.1548423878 0)
(0.008914524772 -0.1549211433 -3.585187702e-13)
(0.006176187802 -0.1550901313 0)
(0.006097571772 -0.1576352243 -3.590183706e-13)
(0.006370130455 -0.1486314658 0)
(0.006331356339 -0.1499227189 0)
(-0.001774694237 -0.08471168778 0)
(-0.001816820662 -0.08508597923 0)
(-0.001385872861 -0.08514878362 0)
(-0.001405820412 -0.08467267568 0)
(0.000636109259 -0.1262748662 0)
(0.0002914694885 -0.1262646374 0)
(0.0006640619188 -0.1253021886 0)
(0.0003445726158 -0.1252986005 0)
(0.0003288008538 -0.1256206307 0)
(0.0006599077563 -0.1256273302 0)
(0.001544697455 -0.1369519212 0)
(0.001576634548 -0.1363095542 0)
(0.0009052482012 -0.1362946186 0)
(0.0008734515109 -0.1369371099 0)
(0.0009668165411 -0.1350080737 0)
(0.001638427293 -0.1350231363 0)
(-0.0006934616137 -0.1346505486 0)
(0.00365881154 -0.1472570316 0)
(0.003751221268 -0.1459884089 0)
(0.002381490792 -0.1459532839 0)
(0.002283753016 -0.1472157409 0)
(0.002530041271 -0.1433896656 0)
(0.003915890551 -0.1434344032 0)
(-0.0008157453285 -0.1426686328 0)
(7.614561308e-05 -0.08199088177 0)
(-0.0007208052636 -0.08198734592 0)
(-0.0007630312391 -0.08263435259 0)
(-0.0003345685558 -0.08262561624 0)
(7.279130561e-05 -0.08263162069 0)
(-0.002950858359 -0.0820132287 0)
(-0.003028877258 -0.08270420901 0)
(-0.002307269352 -0.08268966955 0)
(-0.002205775118 -0.0819941152 0)
(-0.002810571978 -0.08440682075 0)
(-0.00315980148 -0.08441023889 0)
(0.003199750805 -0.08455844326 0)
(0.002843291593 -0.0845372247 0)
(0.003155776087 -0.08218388649 0)
(0.002426800446 -0.08213138577 0)
(0.002442807956 -0.08279670469 0)
(0.003181651379 -0.08286378919 0)
(0.0005098055495 -0.08265042483 0)
(0.0009098998007 -0.08267431216 0)
(0.0009017198831 -0.08202511925 0)
(0.005574963649 -0.09946665973 0)
(0.005211565306 -0.09945592767 0)
(0.005165488576 -0.09978137192 0)
(0.005544436567 -0.09979227062 0)
(0.004315434607 -0.09551741384 0)
(0.004336347112 -0.09584198695 0)
(0.004647658504 -0.09585151526 0)
(0.004632131229 -0.09552680358 0)
(0.00438404852 -0.09681843776 0)
(0.004688104407 -0.09682798844 0)
(0.00467682534 -0.09650220319 0)
(0.004371328799 -0.09649242909 0)
(0.005694361324 -0.09685988619 0)
(0.005698335513 -0.09653353801 0)
(0.005356635268 -0.09652321728 0)
(0.005357334082 -0.09684934544 0)
(0.005278938697 -0.1098750632 0)
(0.00493001475 -0.1098647058 0)
(0.004919164329 -0.1101890458 0)
(0.005267971263 -0.1101997 0)
(0.003847184623 -0.1098256441 0)
(0.003830112575 -0.1101487763 0)
(0.004199301055 -0.1101632856 0)
(0.004211932937 -0.1098394195 0)
(0.003890418955 -0.1111378571 0)
(0.004219264342 -0.1111452695 0)
(0.004216261451 -0.1108184716 0)
(0.003880553617 -0.110809592 0)
(0.004040266903 -0.1059338306 0)
(0.004005760518 -0.10625716 0)
(0.00431765815 -0.1062661654 0)
(0.004350089639 -0.1059431341 0)
(0.003890950803 -0.1072019456 0)
(0.004250854556 -0.1072354543 0)
(0.004257692613 -0.1069109338 0)
(0.003928207171 -0.1068974365 0)
(0.005350352773 -0.1072748364 0)
(0.005358575086 -0.1069504174 0)
(0.004997462887 -0.1069379523 0)
(0.00499092304 -0.1072625419 0)
(-0.007319851908 -0.1184603665 0)
(-0.007329070823 -0.1187833742 0)
(-0.009697191073 -0.1183903604 0)
(-0.009715688904 -0.1190363739 0)
(-0.009037406609 -0.1190562611 0)
(-0.009018790574 -0.1184103112 0)
(-0.009770876982 -0.1209742437 0)
(-0.009093134709 -0.1209941147 0)
(-0.009074580478 -0.1203482229 0)
(-0.009752502759 -0.1203283465 0)
(-0.009623164967 -0.1158071479 0)
(-0.009641711991 -0.1164527996 0)
(-0.008962951477 -0.1164727613 0)
(-0.008944284449 -0.1158271131 0)
(-0.009000234541 -0.1177643594 0)
(-0.009678755045 -0.117744405 0)
(-0.00731105301 -0.1181373462 0)
(-0.009916191789 -0.1261375078 0)
(-0.009934253387 -0.126782994 0)
(-0.009257885765 -0.1268026435 0)
(-0.009239525956 -0.1261572264 0)
(-0.00929469962 -0.1280946161 0)
(-0.009970409017 -0.1280750464 0)
(-0.007621268108 -0.128466109 0)
(-0.007580137605 -0.1404205835 0)
(-0.007925688802 -0.1404099069 0)
(-0.007911520624 -0.1407360792 0)
(-0.007551860469 -0.1407479001 0)
(-0.008959885909 -0.1403786715 0)
(-0.008966735355 -0.1407027713 0)
(-0.00862214119 -0.1407131189 0)
(-0.008619064692 -0.1403886656 0)
(-0.008995574131 -0.1416711584 0)
(-0.008652238216 -0.1416814081 0)
(-0.00863908076 -0.1413592393 0)
(-0.008984571358 -0.1413487447 0)
(-0.006674357454 -0.1475917518 0)
(-0.006121736651 -0.1521348098 0)
(-0.006082944517 -0.1508429567 0)
(-0.001996567083 -0.1522586815 0)
(-0.001957774965 -0.1509668284 0)
(-0.003332833468 -0.1509255378 0)
(-0.003371625602 -0.1522173909 0)
(0.005756564732 -0.09424839238 0)
(0.005409695284 -0.09423761615 0)
(0.005387711924 -0.09456450456 0)
(0.005741377289 -0.09457416362 0)
(0.004419096121 -0.09420228489 0)
(0.004244876835 -0.09461192417 0)
(0.004671463586 -0.09454636002 0)
(0.004727653876 -0.09421611465 0)
(0.004621839772 -0.09520212901 0)
(0.004292836543 -0.09519597311 0)
(0.006140040202 -0.09295391731 0)
(0.006148707196 -0.09262728965 0)
(0.008527183022 -0.09302944273 0)
(0.008545606607 -0.09237790172 0)
(0.00786371461 -0.09235622454 0)
(0.007845462024 -0.09300807097 0)
(0.008598137234 -0.09041453023 0)
(0.007915946667 -0.09039279604 0)
(0.00789881287 -0.09104738462 0)
(0.008580879468 -0.09106924721 0)
(0.008471334408 -0.09498530962 0)
(0.007789668007 -0.09496411966 0)
(0.007827273587 -0.09366178109 0)
(0.008508936385 -0.09368309104 0)
(0.00613175719 -0.09328175763 0)
(0.005462323078 -0.1046772086 0)
(0.005129951398 -0.1046678286 0)
(0.00511103724 -0.1049921067 0)
(0.00544741168 -0.105001787 0)
(0.004168623597 -0.1046419044 0)
(0.004138872433 -0.1049644757 0)
(0.004442693733 -0.1049732386 0)
(0.004470800251 -0.1046498371 0)
(0.0043822049 -0.1056206337 0)
(0.004074584833 -0.1056121772 0)
(0.005497323578 -0.1020716243 0)
(0.005486546747 -0.1017453136 0)
(0.005108686024 -0.1017336068 0)
(0.005134963889 -0.102060503 0)
(-0.007510450015 -0.1132836523 0)
(-0.007530033297 -0.1139298135 0)
(-0.006850636757 -0.1139497942 0)
(-0.009548588029 -0.1132235916 0)
(-0.009567331276 -0.113869778 0)
(-0.008888032542 -0.1138898158 0)
(-0.00886916929 -0.113243633 0)
(-0.008925566426 -0.1151817668 0)
(-0.009604565148 -0.1151617379 0)
(-0.005587041332 -0.1159240217 0)
(-0.005567205006 -0.1156022337 0)
(-0.005897766413 -0.1155929681 0)
(-0.005913712182 -0.115914993 0)
(-0.005507705021 -0.114636569 0)
(-0.005849366867 -0.1146263696 0)
(-0.005865511256 -0.114948809 0)
(-0.005527508354 -0.1149586583 0)
(-0.006871341489 -0.1145961018 0)
(-0.006881636845 -0.1149189571 0)
(-0.006542897714 -0.1149288886 0)
(-0.00653164412 -0.1146061222 0)
(0.003871836664 -0.1114602834 0)
(0.004207548101 -0.111469043 0)
(0.003775279886 -0.1124202109 0)
(0.004142119872 -0.1124345296 0)
(0.004162950454 -0.1121122309 0)
(0.003805293803 -0.1120996894 0)
(0.00519625274 -0.1124684655 0)
(0.005207410958 -0.1121446753 0)
(0.004864475258 -0.1121344976 0)
(0.004851826582 -0.112458123 0)
(0.005834330974 -0.1137826258 0)
(0.005855812169 -0.1131352604 0)
(0.005174989339 -0.1131163779 0)
(0.007872273479 -0.1138391973 0)
(0.007894096671 -0.1131924428 0)
(0.007214589101 -0.1131733596 0)
(0.007192815101 -0.1138204759 0)
(0.007959820128 -0.1112497245 0)
(0.007280197959 -0.1112304577 0)
(0.007258458736 -0.1118784159 0)
(0.007938080905 -0.1118976827 0)
(0.005668048245 -0.1085861624 0)
(0.005677648252 -0.1082604636 0)
(0.008046942783 -0.1086523716 0)
(0.008068310636 -0.1080027808 0)
(0.00738816466 -0.1079829577 0)
(0.007367160425 -0.1086324394 0)
(0.007430015832 -0.1066872328 0)
(0.008110343617 -0.1067070012 0)
(0.007981824586 -0.1106009335 0)
(0.007302020607 -0.1105817213 0)
(0.007345470938 -0.1092827413 0)
(0.00802539312 -0.1093020171 0)
(0.005657319002 -0.108911467 0)
(-0.0074786415 -0.1236243671 0)
(-0.007486005744 -0.1239476106 0)
(-0.009843821785 -0.1235554467 0)
(-0.009861712386 -0.1242012383 0)
(-0.009184931953 -0.1242211405 0)
(-0.009166799541 -0.1235752961 0)
(-0.009221231554 -0.1255119874 0)
(-0.009898137397 -0.1254922617 0)
(-0.009789176789 -0.1216196627 0)
(-0.009111614523 -0.1216395282 0)
(-0.009148425318 -0.1229293989 0)
(-0.009825629371 -0.1229096041 0)
(-0.007469900804 -0.1233012849 0)
(-0.007103324938 -0.1223427994 0)
(-0.006767264313 -0.1223525304 0)
(-0.006753895063 -0.1220309085 0)
(-0.007092089974 -0.1220210534 0)
(-0.005765858502 -0.1223809793 0)
(-0.005741072602 -0.1220603609 0)
(-0.006077505242 -0.1220506187 0)
(-0.006098506193 -0.1223715911 0)
(-0.005669953776 -0.1210963664 0)
(-0.006016212407 -0.1210858488 0)
(-0.006036541959 -0.1214078622 0)
(-0.005693573861 -0.1214181609 0)
(-0.00579024344 -0.1262634449 0)
(-0.005762579207 -0.1259423724 0)
(-0.006077196734 -0.1259327448 0)
(-0.006102702681 -0.1262539422 0)
(-0.00568141352 -0.124998198 0)
(-0.006040128646 -0.1249655057 0)
(-0.006036910256 -0.1252891271 0)
(-0.005707534603 -0.1253020806 0)
(-0.007151006985 -0.1249277038 0)
(-0.007155882316 -0.1252506617 0)
(-0.006789347085 -0.1252629293 0)
(-0.006788228503 -0.1249396784 0)
(-0.006947833067 -0.1171782193 0)
(-0.006609560153 -0.1171880768 0)
(-0.006604941626 -0.1168648709 0)
(-0.006940858245 -0.1168551442 0)
(-0.00562881977 -0.1172151245 0)
(-0.005633577214 -0.1168911566 0)
(-0.005948817612 -0.1168830718 0)
(-0.005944610389 -0.1172069631 0)
(-0.005928858729 -0.1162374023 0)
(-0.005606188836 -0.1162460706 0)
(-0.00564633189 -0.1207745119 0)
(-0.005995903251 -0.1207637146 0)
(-0.005575378624 -0.1198088309 0)
(-0.005935051987 -0.1197972498 0)
(-0.005955283139 -0.1201193863 0)
(-0.005599036512 -0.1201306843 0)
(-0.007013539856 -0.1197625825 0)
(-0.00702472505 -0.1200854711 0)
(-0.006674289653 -0.1200962943 0)
(-0.006661121981 -0.1197735854 0)
(0.004088147059 -0.1247473285 0)
(0.004765229373 -0.1247647774 0)
(0.002408008937 -0.1243803787 0)
(0.002664231685 -0.1266522654 0)
(0.002688367369 -0.1260057004 0)
(0.002013262128 -0.1259886112 0)
(-0.002203152839 -0.1330469874 0)
(-0.001965356984 -0.1330088454 0)
(-0.002055361072 -0.1325952356 0)
(-0.0009650177539 -0.1330279535 0)
(-0.0009526642849 -0.1327041391 0)
(-0.001297321466 -0.1326942701 0)
(-0.001307132044 -0.1330186413 0)
(-0.007378703215 -0.1326730286 0)
(-0.007028277422 -0.1326839717 0)
(-0.007004805575 -0.1323633138 0)
(-0.007360530776 -0.1323518513 0)
(-0.007463053297 -0.1352542495 0)
(-0.007438520892 -0.135580673 0)
(-0.007085324192 -0.1355919395 0)
(-0.007135207588 -0.1352629531 0)
(-0.00724459862 -0.1275076863 0)
(-0.006899408034 -0.1275181719 0)
(-0.006881435371 -0.1271958474 0)
(-0.007230538713 -0.1271850642 0)
(-0.005904922343 -0.1275476742 0)
(-0.005876253059 -0.1272263316 0)
(-0.006183074482 -0.1272174786 0)
(-0.006209999496 -0.1275389337 0)
(-0.006129263465 -0.1265748676 0)
(-0.005818875499 -0.1265839478 0)
(-0.006133280963 -0.130111058 0)
(-0.00639954869 -0.1301094885 0)
(-0.006369443246 -0.130435719 0)
(-0.006161320086 -0.1304064151 0)
(-0.007334772511 -0.1300876513 0)
(-0.00732966525 -0.1304115696 0)
(-0.00699252278 -0.130421273 0)
(-0.0070093029 -0.1300962835 0)
(-0.0009231129075 -0.1304274411 0)
(-0.0013451727 -0.1303356128 0)
(-0.001239211171 -0.1307530649 0)
(-0.0009110089459 -0.1307581758 0)
(-0.007631838267 -0.1447127154 0)
(-0.007187623873 -0.1447921167 0)
(-0.01003297649 -0.144906664 0)
(-0.009344268178 -0.1449273447 0)
(-0.00939484789 -0.144629747 0)
(-0.0100916957 -0.1468441274 0)
(-0.009403989417 -0.1468641775 0)
(-0.009384242344 -0.1462185618 0)
(-0.01007211062 -0.1461979063 0)
(-0.009007289727 -0.1419933103 0)
(-0.008666706718 -0.1420032372 0)
(-0.009042179743 -0.1429612154 0)
(-0.00870986266 -0.1429704135 0)
(-0.008696807191 -0.1426476412 0)
(-0.009031402565 -0.1426383145 0)
(-0.007734682041 -0.1429950121 0)
(-0.007705251337 -0.1426741128 0)
(-0.008030787563 -0.142665899 0)
(-0.008053720016 -0.142987594 0)
(-0.003740538833 -0.1423145154 0)
(-0.003562514105 -0.1445559475 0)
(-0.00351356701 -0.1439175145 0)
(-0.004157087938 -0.1439150065 0)
(-0.001624862626 -0.1445636243 0)
(-0.001575852013 -0.1439281961 0)
(-0.002227023778 -0.1439226957 0)
(-0.002269503191 -0.1445607223 0)
(-0.007449579063 -0.1430015314 0)
(-0.007416263804 -0.1426808688 0)
(-0.005459366167 -0.1432493912 0)
(-0.005436508827 -0.1429315976 0)
(-0.005756096667 -0.142911491 0)
(-0.005857864545 -0.1431665582 0)
(-0.004591953608 -0.1470086747 0)
(-0.004573160557 -0.1463624297 0)
(-0.005262414856 -0.1463405315 0)
(-0.00528013388 -0.1469874092 0)
(-0.004572278041 -0.1448592403 0)
(-0.004246890496 -0.1448630054 0)
(-0.007532798796 -0.1378365095 0)
(-0.007196030737 -0.1378460816 0)
(-0.007164708137 -0.1375245784 0)
(-0.007506851805 -0.1375144246 0)
(-0.007208927164 -0.1407791575 0)
(-0.007178944674 -0.1405090826 0)
(0.003158458715 -0.08626554972 0)
(0.002801830088 -0.08625297301 0)
(0.002793828673 -0.0865912356 0)
(0.003145808143 -0.08660743824 0)
(0.002104441598 -0.08518635905 0)
(0.002120507132 -0.08483514569 0)
(0.003170298248 -0.08592527037 0)
(0.002811732898 -0.08591559029 0)
(0.002316464498 -0.1175789858 0)
(0.002035089288 -0.1175791246 0)
(0.001967013716 -0.1178875729 0)
(0.002271450678 -0.117895033 0)
(0.002325660023 -0.117255557 0)
(0.002098763112 -0.1172906631 0)
(0.000529154783 -0.1291832572 0)
(0.0005390541393 -0.1288597895 0)
(0.0001872567373 -0.1288471236 0)
(0.0001782964111 -0.1291709198 0)
(0.0002044225653 -0.1281992683 0)
(0.0005574224133 -0.1282120904 0)
(-0.0007092675227 -0.1282188561 0)
(-0.0004717795315 -0.1281825065 0)
(-0.0005773950069 -0.1277665062 0)
(-0.003592470655 -0.09399155939 0)
(-0.003320449304 -0.09399372207 0)
(-0.003289009181 -0.09367510515 0)
(-0.003581672452 -0.09366775833 0)
(-0.003561321831 -0.09432004327 0)
(-0.003349203119 -0.09429127974 0)
(-0.003256932702 -0.08612169647 0)
(-0.00291409339 -0.08612848404 0)
(-0.002897002094 -0.08578671084 0)
(-0.003240715189 -0.0857808219 0)
(-0.001899811403 -0.08615073146 0)
(-0.001781360261 -0.08587707922 0)
(-0.002204769107 -0.08579221302 0)
(-0.002232503154 -0.08612921043 0)
(-0.002135256961 -0.0847373241 0)
(-0.0021656163 -0.0850951488 0)
(-0.002258828026 -0.08646567962 0)
(-0.002009567223 -0.08643081261 0)
(-0.003271194403 -0.08646363871 0)
(-0.002926694413 -0.0864687225 0)
(0.0006944160572 -0.1240047371 0)
(0.000682023012 -0.1243276495 0)
(0.001019719936 -0.1243362885 0)
(0.001020363376 -0.1240102607 0)
(0.00100415833 -0.1253113201 0)
(0.001003602928 -0.1249850161 0)
(0.0006516165093 -0.1249726448 0)
(0.002035603738 -0.1253419923 0)
(0.002046086325 -0.1250183019 0)
(0.001702588403 -0.1250080473 0)
(0.001694165686 -0.1253323401 0)
(0.0002333001147 -0.1248821901 0)
(0.0004588283747 -0.1240400627 0)
(0.0003839468385 -0.1243229628 0)
(-0.002378393372 -0.1342848362 0)
(-0.002390404203 -0.1346078201 0)
(-0.002054438912 -0.1346150859 0)
(-0.002052035595 -0.1342889308 0)
(-0.002422820927 -0.1355761597 0)
(-0.002083913152 -0.1355847751 0)
(-0.002069588666 -0.135263302 0)
(-0.002403584082 -0.1352563356 0)
(-0.001070906349 -0.1356094886 0)
(-0.001057232285 -0.1352878158 0)
(-0.00139274875 -0.1352803232 0)
(-0.001406593819 -0.1356019308 0)
(-0.002719005898 -0.1352556923 0)
(-0.002754531475 -0.1355701628 0)
(-0.002624570266 -0.1343190031 0)
(-0.002714889366 -0.1345848039 0)
(-0.002481506208 -0.1368648931 0)
(-0.002474480936 -0.136540138 0)
(-0.0028187919 -0.1365301592 0)
(-0.002823419487 -0.1368554668 0)
(-0.00280086642 -0.1358816061 0)
(-0.00245034345 -0.135893513 0)
(-0.003920714116 -0.138058301 0)
(-0.003523554387 -0.1381409136 0)
(-0.003507821618 -0.137818582 0)
(-0.00382749523 -0.1377973318 0)
(-0.002524819587 -0.1381587124 0)
(-0.002511272098 -0.1378359548 0)
(-0.002845797339 -0.1378290926 0)
(-0.002858371599 -0.1381522398 0)
(-0.002831534985 -0.1371795286 0)
(-0.002490372332 -0.1371887522 0)
(-0.002593126136 -0.1394426526 0)
(-0.002575225544 -0.1391227283 0)
(-0.0029104666 -0.1391153041 0)
(-0.002928264593 -0.1394354117 0)
(-0.002873147337 -0.1384749004 0)
(-0.002540200144 -0.1384811147 0)
(-0.003848399194 -0.1384656742 0)
(-0.003536310456 -0.1384641154 0)
(0.003334726995 -0.08902487493 0)
(0.003460421928 -0.08860519045 0)
(0.003208209581 -0.08855794958 0)
(0.004502289375 -0.08897058866 0)
(0.004516410963 -0.08863951245 0)
(0.004156946983 -0.08863095847 0)
(0.004137753062 -0.08896275319 0)
(0.004551284425 -0.0876437587 0)
(0.004198685285 -0.08763479228 0)
(0.004186557023 -0.08796648687 0)
(0.004540922234 -0.0879748397 0)
(0.004446342975 -0.090286712 0)
(0.004466260047 -0.08995703497 0)
(0.004110553244 -0.08994635971 0)
(0.00407782895 -0.09027974201 0)
(0.004126730643 -0.08929242105 0)
(0.004490745006 -0.08929983847 0)
(0.004560534194 -0.0873139235 0)
(0.004208038567 -0.08730250988 0)
(0.004582201185 -0.0863173708 0)
(0.004234799173 -0.08630592997 0)
(0.004225071458 -0.08663668169 0)
(0.004573283412 -0.08664714991 0)
(0.00350928842 -0.08661924177 0)
(0.003522144738 -0.08628170151 0)
(0.004419341772 -0.09812170418 0)
(0.004422477263 -0.09844868625 0)
(0.004711492928 -0.0984579054 0)
(0.004714580883 -0.09813147055 0)
(0.004424773533 -0.09951121599 0)
(0.004631733581 -0.09910904597 0)
(0.0044251808 -0.09907065322 0)
(0.00560792265 -0.09914046123 0)
(0.005263937518 -0.09912983166 0)
(0.00535709927 -0.09717496512 0)
(0.005689805128 -0.09718561633 0)
(0.004395569416 -0.09714356965 0)
(0.004697804219 -0.09715336592 0)
(0.004711606174 -0.09780533411 0)
(0.004413167725 -0.09779571189 0)
(0.00400882081 -0.1085444463 0)
(0.003969526262 -0.1088664308 0)
(0.004302199178 -0.108874979 0)
(0.004328742641 -0.1085512304 0)
(0.004238203941 -0.1095173442 0)
(0.003884155222 -0.1095054516 0)
(0.00529108036 -0.1095511223 0)
(0.004944550512 -0.1095408368 0)
(0.003570194118 -0.1094959638 0)
(0.00352023669 -0.1098120428 0)
(0.003715793887 -0.1085384098 0)
(0.003667020173 -0.1088592688 0)
(0.003572175003 -0.1108051965 0)
(0.00357768117 -0.1111330305 0)
(0.003470826865 -0.1101146856 0)
(0.004032403193 -0.1082191073 0)
(0.003759244786 -0.1082172108 0)
(0.004992416895 -0.1075883936 0)
(0.00534566039 -0.1075999018 0)
(0.003856833514 -0.1074729174 0)
(0.004277246374 -0.1075641557 0)
(0.004339515721 -0.1082246659 0)
(0.002173792647 -0.1201574344 0)
(0.001810234813 -0.1201426137 0)
(0.001810405009 -0.1204685458 0)
(0.002168659849 -0.1204823665 0)
(0.002193130374 -0.1198348507 0)
(0.001843053207 -0.1198234977 0)
(0.00253308915 -0.1201705657 0)
(0.002546176473 -0.1198459325 0)
(0.003574745126 -0.1202034063 0)
(0.003585551165 -0.1198783443 0)
(0.003243598298 -0.1198684363 0)
(0.003232617045 -0.1201937333 0)
(0.003616569322 -0.1189067796 0)
(0.003269552876 -0.1188956987 0)
(0.003261820204 -0.1192194116 0)
(0.003605906745 -0.1192298641 0)
(0.002637995635 -0.1175843768 0)
(0.002639984304 -0.1172593503 0)
(0.003662450195 -0.1176134578 0)
(0.003671338519 -0.1172896594 0)
(0.003325348098 -0.1172792099 0)
(0.003318618061 -0.1176031331 0)
(0.003701694337 -0.116314952 0)
(0.003351968159 -0.1163045104 0)
(0.003337239777 -0.116628794 0)
(0.003689302447 -0.1166394259 0)
(0.003627366914 -0.1185833989 0)
(0.003279203825 -0.1185721034 0)
(0.003306538831 -0.1179259949 0)
(0.003651439604 -0.1179365318 0)
(0.002612294111 -0.1179044873 0)
(-0.0005642916626 -0.1304419394 0)
(-0.000555837142 -0.1301175875 0)
(-0.000913954563 -0.1301032905 0)
(0.0004859445806 -0.1304780405 0)
(0.000497674607 -0.1301548079 0)
(0.0001522056126 -0.1301441939 0)
(0.0001420128392 -0.1304678329 0)
(0.0001714805528 -0.1294955011 0)
(0.0005196406324 -0.1295070968 0)
(-0.008931161033 -0.1390880776 0)
(-0.008940005519 -0.1394106161 0)
(-0.008608644872 -0.1394196654 0)
(-0.008599858587 -0.1390970651 0)
(-0.00861704247 -0.1400653217 0)
(-0.008952956097 -0.1400558954 0)
(-0.007625015011 -0.1400922879 0)
(-0.007946957089 -0.140084182 0)
(-0.007874534447 -0.1378263679 0)
(-0.007894191989 -0.1381490021 0)
(-0.007558431971 -0.1381585439 0)
(-0.008891248671 -0.1377969188 0)
(-0.008901383839 -0.1381204394 0)
(-0.008566552058 -0.1381298933 0)
(-0.008554738623 -0.1378064831 0)
(-0.008589408449 -0.1387750553 0)
(-0.008921725532 -0.1387658571 0)
(-0.003356519412 -0.09141032652 0)
(-0.003037820527 -0.09142043701 0)
(-0.002996450574 -0.09110133753 0)
(-0.003327299262 -0.09108743898 0)
(-0.003391067765 -0.0917324535 0)
(-0.003077412078 -0.09174211227 0)
(-0.003720834536 -0.09139752501 0)
(-0.00374731378 -0.09172073508 0)
(-0.004801510625 -0.09136032969 0)
(-0.004813676324 -0.09168547099 0)
(-0.00446335194 -0.09169659119 0)
(-0.004448555142 -0.09137182919 0)
(-0.004851806626 -0.0926586838 0)
(-0.004511303422 -0.0926686683 0)
(-0.004495324575 -0.09234394179 0)
(-0.004839058903 -0.09233355998 0)
(-0.004765128772 -0.0900571436 0)
(-0.004772761707 -0.09038253512 0)
(-0.00442222982 -0.09039314507 0)
(-0.004418284715 -0.09006616542 0)
(-0.004436117018 -0.09104621562 0)
(-0.004790382952 -0.09103455666 0)
(-0.003700370513 -0.09107323346 0)
(-0.003896808639 -0.09398500307 0)
(-0.003865007589 -0.0943135666 0)
(-0.00488995454 -0.09395788315 0)
(-0.004892344036 -0.09428325796 0)
(-0.004545113365 -0.09429380481 0)
(-0.004550551778 -0.0939677145 0)
(-0.004899733306 -0.09525853494 0)
(-0.004530015547 -0.09527101824 0)
(-0.004528840532 -0.09494668798 0)
(-0.004894629337 -0.0949345629 0)
(-0.004864133753 -0.09298460099 0)
(-0.004526429061 -0.09299438134 0)
(-0.004548349515 -0.09364317486 0)
(-0.004884235537 -0.09363362929 0)
(-0.003896966869 -0.09366027245 0)
(-0.0033175413 -0.08878828001 0)
(-0.003677015377 -0.08877606228 0)
(-0.003697558695 -0.0891035945 0)
(-0.003348256913 -0.08911396933 0)
(-0.004724889059 -0.08874768334 0)
(-0.004736094514 -0.08907624667 0)
(-0.004392828674 -0.08908623005 0)
(-0.004380402106 -0.08875760129 0)
(-0.004412884503 -0.08973972794 0)
(-0.00475644666 -0.08973061249 0)
(-0.002956385458 -0.0888020917 0)
(-0.002927874836 -0.08847703283 0)
(-0.003297623467 -0.08846137762 0)
(-0.003001952623 -0.08912456644 0)
(0.004386789683 -0.09290295178 0)
(0.004411026988 -0.09322540264 0)
(0.004754527902 -0.09323595761 0)
(0.004744651057 -0.09291147565 0)
(0.004760767727 -0.09388835934 0)
(0.004448531804 -0.09387501969 0)
(0.0057704105 -0.09392330153 0)
(0.00542791586 -0.09391163571 0)
(0.004172218236 -0.09385999613 0)
(0.004201333264 -0.09415700936 0)
(0.004061788618 -0.09289691607 0)
(0.004101522299 -0.09321490761 0)
(0.004466703445 -0.09158626894 0)
(0.004457885618 -0.09126271964 0)
(0.004117120851 -0.0912510457 0)
(0.004146560437 -0.0915712505 0)
(0.004062599999 -0.09060929557 0)
(0.004435628585 -0.09061512192 0)
(0.004381332029 -0.09257830225 0)
(0.004021614761 -0.09259158324 0)
(0.004137906022 -0.09189865927 0)
(0.004450202474 -0.09191458317 0)
(0.005833278641 -0.09163367085 0)
(0.005490207348 -0.09162300866 0)
(0.005479772627 -0.09195150505 0)
(0.005823648548 -0.09196237157 0)
(0.004787722264 -0.09192772114 0)
(0.004802504138 -0.09160025614 0)
(0.004746102117 -0.09258595256 0)
(-0.003908309844 -0.1017532154 0)
(-0.004197479765 -0.1017457332 0)
(-0.004199347817 -0.1020703429 0)
(-0.003930321829 -0.102073857 0)
(-0.005141345063 -0.1017208738 0)
(-0.005140951617 -0.1020453713 0)
(-0.004812624103 -0.1020546298 0)
(-0.004818352364 -0.101729792 0)
(-0.005112384911 -0.1030182447 0)
(-0.004737039515 -0.1030307168 0)
(-0.004759966897 -0.102705843 0)
(-0.005121131924 -0.1026943372 0)
(-0.005100917887 -0.1004299707 0)
(-0.005113256318 -0.1007524643 0)
(-0.004786857281 -0.1007615448 0)
(-0.004772082154 -0.1004393045 0)
(-0.004812417369 -0.1014061452 0)
(-0.005134991853 -0.1013972996 0)
(-0.003885418169 -0.1014306783 0)
(-0.004181416966 -0.1014228109 0)
(-0.005143293316 -0.1043101544 0)
(-0.005157945445 -0.1046326986 0)
(-0.004786514608 -0.1046449331 0)
(-0.004768744151 -0.1043225425 0)
(-0.005203613655 -0.1055985384 0)
(-0.0048416962 -0.1056101869 0)
(-0.004823023939 -0.1052889644 0)
(-0.005188191726 -0.1052771583 0)
(-0.005111516816 -0.1033417355 0)
(-0.004730812605 -0.1033545487 0)
(-0.004751993737 -0.1040001213 0)
(-0.005129599424 -0.1039875213 0)
(-0.003541981987 -0.096597789 0)
(-0.003857049533 -0.0965881479 0)
(-0.003880318017 -0.09691043342 0)
(-0.003566310712 -0.09691998263 0)
(-0.004945793014 -0.09655281231 0)
(-0.004959049499 -0.09687587893 0)
(-0.004600316373 -0.09688737175 0)
(-0.004584003365 -0.09656451702 0)
(-0.004998608982 -0.09784628622 0)
(-0.004648683606 -0.09785709416 0)
(-0.004632768994 -0.0975335068 0)
(-0.004985510882 -0.09752249417 0)
(-0.004908519013 -0.09558191598 0)
(-0.004538789254 -0.09559439964 0)
(-0.004567777947 -0.09624117921 0)
(-0.004932604315 -0.09622920314 0)
(-0.003516927826 -0.09627543699 0)
(-0.003833395827 -0.09626563371 0)
(-0.003729674912 -0.09917572652 0)
(-0.004035475698 -0.09916708435 0)
(-0.004057389333 -0.09948965079 0)
(-0.003753072409 -0.09949830845 0)
(-0.005050037024 -0.0991373395 0)
(-0.005062883096 -0.09946053855 0)
(-0.004726410256 -0.09947034197 0)
(-0.004710879677 -0.09914734364 0)
(-0.004757026207 -0.1001167123 0)
(-0.00508835624 -0.1001072435 0)
(-0.005011562464 -0.09816966222 0)
(-0.004664361795 -0.09818020818 0)
(-0.004695364719 -0.09882506552 0)
(-0.005037220375 -0.09881492029 0)
(-0.003706503656 -0.09885427887 0)
(-0.004013633488 -0.09884529651 0)
(0.004273035329 -0.1033413917 0)
(0.004248855879 -0.1036682142 0)
(0.004546031931 -0.1036758767 0)
(0.004566944221 -0.1033498569 0)
(0.004498054768 -0.104325209 0)
(0.004198294429 -0.1043168083 0)
(0.005476896082 -0.1043518994 0)
(0.005148179147 -0.1043428093 0)
(0.005167900821 -0.1023878395 0)
(0.005510646315 -0.1023979514 0)
(0.004330626064 -0.1023959088 0)
(0.004537999092 -0.1023701858 0)
(0.004353782612 -0.101957951 0)
(0.004581560434 -0.1030243088 0)
(0.004293390175 -0.103016136 0)
(-0.005348138294 -0.1120592884 0)
(-0.005367507808 -0.1123813306 0)
(-0.005005166136 -0.1123930519 0)
(-0.004982452089 -0.1120712302 0)
(-0.005427535814 -0.1133469794 0)
(-0.005075069937 -0.1133579837 0)
(-0.005051563858 -0.1130361858 0)
(-0.005407356268 -0.1130249614 0)
(-0.005309130117 -0.1107662406 0)
(-0.005304857503 -0.1110905543 0)
(-0.004925436155 -0.1111036893 0)
(-0.004930775012 -0.1107792836 0)
(-0.004960234855 -0.1117491533 0)
(-0.005329749813 -0.1117369164 0)
(-0.005190999512 -0.1149684628 0)
(-0.005168097655 -0.1146465867 0)
(-0.005260410681 -0.115932989 0)
(-0.005237039615 -0.1156114873 0)
(-0.005447746569 -0.1136692366 0)
(-0.005098599423 -0.1136799611 0)
(-0.00514515259 -0.1143244716 0)
(-0.005487858479 -0.1143142408 0)
(-0.005267697934 -0.1068862688 0)
(-0.005283982726 -0.1072085839 0)
(-0.004940442802 -0.1072188397 0)
(-0.004920403063 -0.1068968777 0)
(-0.005332919302 -0.1081754665 0)
(-0.005000783434 -0.1081848995 0)
(-0.00498066389 -0.1078628798 0)
(-0.005316634511 -0.1078531515 0)
(-0.005219353597 -0.1059199089 0)
(-0.004860984684 -0.1059313307 0)
(-0.004900447327 -0.1065749131 0)
(-0.005251468947 -0.1065640121 0)
(-0.005384057513 -0.1094658679 0)
(-0.005379750087 -0.1097898223 0)
(-0.005062335204 -0.1097980925 0)
(-0.005067210851 -0.109474061 0)
(-0.004969321596 -0.1104525594 0)
(-0.005330313211 -0.1104408786 0)
(-0.005348953885 -0.1084978492 0)
(-0.005020694771 -0.1085069856 0)
(-0.005056689288 -0.1091512726 0)
(-0.005376926684 -0.1091427975 0)
(0.003732863302 -0.1150177652 0)
(0.003738125708 -0.1146927169 0)
(0.003377440156 -0.1146792436 0)
(0.003377569541 -0.1150055348 0)
(0.003775753077 -0.1137234527 0)
(0.003436290296 -0.1137142201 0)
(0.003418207232 -0.1140364211 0)
(0.003765530898 -0.114047271 0)
(0.003714944227 -0.115991705 0)
(0.003369993039 -0.115981647 0)
(0.003384390968 -0.1153331681 0)
(0.003730562008 -0.1153432027 0)
(0.002508415998 -0.1153550294 0)
(0.002733403013 -0.1153205265 0)
(0.002600739683 -0.1149016721 0)
(0.003449411423 -0.1120872612 0)
(0.003406506035 -0.1124052936 0)
(0.003543620707 -0.1114527098 0)
(0.003773144996 -0.1133969068 0)
(0.003428592832 -0.1133865605 0)
(0.00338433682 -0.1127267714 0)
(0.0037593923 -0.1127428982 0)
(-0.005859694401 -0.1236676963 0)
(-0.005839713457 -0.1233454922 0)
(-0.006158228188 -0.123337249 0)
(-0.00617005721 -0.1236601783 0)
(-0.006119605562 -0.1226930409 0)
(-0.005790970829 -0.1227020684 0)
(-0.007114541917 -0.1226651465 0)
(-0.006780551973 -0.1226746351 0)
(-0.005490540859 -0.1227103691 0)
(-0.005463626656 -0.1223892741 0)
(-0.005571326711 -0.1236750943 0)
(-0.00554444069 -0.1233533378 0)
(-0.005387260063 -0.1214271188 0)
(-0.005362295923 -0.1211053646 0)
(-0.005437071295 -0.1220691292 0)
(-0.005866112407 -0.1239910283 0)
(-0.005597783621 -0.1239935606 0)
(-0.006795347648 -0.1246157597 0)
(-0.0071497702 -0.1246045165 0)
(-0.005658921785 -0.1247295797 0)
(-0.00607685056 -0.1246390165 0)
(-0.006166559222 -0.1239842886 0)
(-0.00549302956 -0.1185204477 0)
(-0.005498237618 -0.1181962862 0)
(-0.005874706249 -0.11818342 0)
(-0.005870594435 -0.1185074886 0)
(-0.005924269725 -0.1175321796 0)
(-0.005592834084 -0.1175415315 0)
(-0.006953087621 -0.1175014061 0)
(-0.006610891752 -0.1175116216 0)
(-0.005292292472 -0.1175485143 0)
(-0.005328672372 -0.1172220354 0)
(-0.005162011641 -0.1185335106 0)
(-0.005138186833 -0.1182288984 0)
(-0.005283560945 -0.1162547376 0)
(-0.005323891838 -0.1168988344 0)
(-0.005287315896 -0.1201399847 0)
(-0.005262225751 -0.1198182343 0)
(-0.005337331783 -0.1207836105 0)
(-0.005507579685 -0.1188429951 0)
(-0.005186955316 -0.1188529832 0)
(-0.005237135606 -0.119496484 0)
(-0.005551846741 -0.1194869737 0)
(-0.00664818412 -0.1194509296 0)
(-0.007002464468 -0.1194397506 0)
(-0.005915132848 -0.1194751039 0)
(-0.005879979555 -0.1188304312 0)
(0.0005786151886 -0.1235875301 0)
(0.002115969333 -0.1227508626 0)
(0.00176675321 -0.1227392351 0)
(0.001752074088 -0.1230614783 0)
(0.002104542327 -0.123073804 0)
(0.0008029236808 -0.1227212233 0)
(0.0007261610936 -0.123024366 0)
(0.001043727071 -0.1230366045 0)
(0.001090052515 -0.1227216776 0)
(0.001003939225 -0.1236798167 0)
(0.001106765703 -0.1224000961 0)
(0.0008751891773 -0.1224358424 0)
(0.002123436193 -0.1224272017 0)
(0.001772300603 -0.1224150962 0)
(-0.002474817081 -0.1338695323 0)
(-0.001321115155 -0.133341506 0)
(-0.000978652262 -0.133351249 0)
(-0.002293402622 -0.1333228798 0)
(-0.001997352675 -0.1333255238 0)
(-0.002056812104 -0.1339601578 0)
(-0.007397472669 -0.1329938878 0)
(-0.007052592294 -0.133004304 0)
(-0.007164609184 -0.1349360832 0)
(-0.007479459583 -0.1349286106 0)
(-0.006018842852 -0.1288332476 0)
(-0.005990480176 -0.1285117156 0)
(-0.006290401927 -0.1285034902 0)
(-0.00631696033 -0.1288251364 0)
(-0.006236842308 -0.1278604512 0)
(-0.005933441621 -0.1278690213 0)
(-0.007258634526 -0.1278303091 0)
(-0.006917354894 -0.127840437 0)
(-0.007010756639 -0.1297734958 0)
(-0.007332907519 -0.1297651434 0)
(-0.006103249164 -0.129794741 0)
(-0.006389795193 -0.1297878782 0)
(-0.006343099312 -0.129146615 0)
(-0.00604704172 -0.1291547244 0)
(-0.001263686076 -0.1300693066 0)
(-0.008067613718 -0.1433102811 0)
(-0.007754428958 -0.1433166227 0)
(-0.009048880355 -0.1432843587 0)
(-0.008717645119 -0.1432935845 0)
(-0.008923464958 -0.1443057833 0)
(-0.008581901002 -0.1443190427 0)
(-0.008669509378 -0.1439545712 0)
(-0.009005137951 -0.143943652 0)
(-0.005578603354 -0.1445086202 0)
(-0.005527569162 -0.1442024829 0)
(-0.005912466559 -0.1441759109 0)
(-0.006061902011 -0.1444442006 0)
(-0.005795136097 -0.1435693795 0)
(-0.005471271968 -0.1435714774 0)
(-0.007480857213 -0.1433213543 0)
(-0.005376557124 -0.1419482899 0)
(-0.005475694599 -0.1422071596 0)
(-0.005077822643 -0.1422898537 0)
(-0.005057835138 -0.1419690311 0)
(-0.005120540584 -0.1432576438 0)
(-0.005103081002 -0.1429374059 0)
(-0.004122008569 -0.1432745957 0)
(-0.004103128696 -0.1429532594 0)
(-0.004433398046 -0.1429494678 0)
(-0.004449852629 -0.1432712372 0)
(-0.007226795313 -0.1381676015 0)
(-0.00408506947 -0.1385062523 0)
(-0.004003321013 -0.1406992705 0)
(-0.00434290023 -0.1406911154 0)
(-0.004353199206 -0.1410146912 0)
(-0.004014196013 -0.141022829 0)
(-0.005032635306 -0.1416514279 0)
(-0.005276925794 -0.1416881738 0)
(-0.003995061509 -0.140375213 0)
(-0.00433792162 -0.1403655181 0)
(-0.007332864089 -0.140097097 0)
(0.01285917451 -0.08400174479 0)
(0.02225101845 -0.08218511188 -3.553823902e-13)
(0.01974441779 -0.08294444715 -3.591016373e-13)
(0.01962023527 -0.07398892142 -3.535782778e-13)
(0.01975663818 -0.0772971591 -3.570754803e-13)
(-9.977815093e-05 -0.1272209408 0)
(-4.467744036e-05 -0.1269095805 0)
(-0.0003297236276 -0.1269105701 0)
(-0.0004149800486 -0.1272093738 0)
(-1.779390134e-05 -0.1265907066 0)
(-0.0002499134922 -0.1266279381 0)
(0.01111473894 -0.1359128237 0)
(0.02006283604 -0.1302223192 -3.467226506e-13)
(0.01787099127 -0.1337824863 -3.563815909e-13)
(0.01766330237 -0.1355095272 -3.54216656e-13)
(0.0181733229 -0.1294120767 -3.584355035e-13)
(-0.0001221745497 -0.1261755842 0)
(-0.001421248921 -0.1359235141 0)
(-0.001086465676 -0.1359306243 0)
(-0.002102519383 -0.1359050386 0)
(-0.002139906744 -0.13687437 0)
(-0.002129151749 -0.1365508079 0)
(0.005343247097 -0.1273666688 0)
(0.005837675298 -0.131901253 0)
(0.005891483007 -0.1306113522 0)
(0.004536262351 -0.1305758221 0)
(0.00991827905 -0.1320092529 0)
(0.009971244923 -0.1307193869 0)
(0.008611741298 -0.1306834879 0)
(0.008558840833 -0.1319731757 0)
(4.646591653e-05 -0.08327299107 0)
(-0.0003745875761 -0.08326828704 0)
(-0.0004328091315 -0.08359641747 0)
(1.832733248e-05 -0.08359301036 0)
(-0.001610135176 -0.08332355267 0)
(-0.001646136067 -0.08366045198 0)
(-0.001234526441 -0.08362305505 0)
(-0.00119382854 -0.0832899362 0)
(-0.001357519716 -0.08432096905 0)
(-0.001726697419 -0.08434850085 0)
(0.00175742952 -0.08444553266 0)
(0.001374725976 -0.08439690115 0)
(0.001695549326 -0.08339326287 0)
(0.001310089625 -0.0833610167 0)
(0.001309222167 -0.08369230474 0)
(0.001702351111 -0.08373015025 0)
(0.0004847462135 -0.08361876919 0)
(0.0004933897215 -0.08329514365 0)
(0.0115770227 -0.08003388068 0)
(0.01019319784 -0.07996392604 0)
(0.01017166736 -0.08127893281 0)
(0.01154807244 -0.08133798058 0)
(0.007396284687 -0.08113054555 0)
(0.007392690322 -0.07979624487 0)
(0.006673898282 -0.08441341047 0)
(0.005900081912 -0.08901119269 0)
(0.005556551861 -0.08899980806 0)
(0.005547868073 -0.08932619499 0)
(0.005891487697 -0.0893379967 0)
(0.004849216582 -0.0893070414 0)
(0.004859820337 -0.08897831587 0)
(0.004812307979 -0.09029556929 0)
(0.004826000092 -0.08996579543 0)
(-0.007358828831 -0.1081163736 0)
(-0.007378037683 -0.1087620655 0)
(-0.006699457177 -0.1087820218 0)
(-0.009398525107 -0.108056206 0)
(-0.009417313943 -0.1087019106 0)
(-0.008737175174 -0.1087219737 0)
(-0.008718266334 -0.1080762727 0)
(-0.009473694863 -0.1106395043 0)
(-0.008793736102 -0.1106595619 0)
(-0.008774876453 -0.1100134992 0)
(-0.009454895217 -0.1099934397 0)
(-0.009323240208 -0.1054750733 0)
(-0.009342054812 -0.106119636 0)
(-0.008661497828 -0.1061397717 0)
(-0.008642623221 -0.1054952107 0)
(-0.008699359295 -0.1074306317 0)
(-0.00937967627 -0.1074105033 0)
(-0.006660141237 -0.1074907249 0)
(-0.007339561777 -0.1074707434 0)
(0.0004386146734 -0.131770418 0)
(0.000450876903 -0.131447862 0)
(0.0001131793669 -0.1314396433 0)
(0.0001020679778 -0.1317624741 0)
(0.0001327452936 -0.1307918601 0)
(0.0004736787305 -0.130801317 0)
(-0.000563523872 -0.1307689705 0)
(0.001964574941 -0.1272817887 0)
(0.002638637958 -0.127298186 0)
(0.002562222198 -0.1292357787 0)
(0.002588089522 -0.1285903467 0)
(0.004588954015 -0.1292858878 0)
(0.004614832728 -0.1286408766 0)
(0.003938051616 -0.1286237971 0)
(0.003912507114 -0.1292688784 0)
(-0.008851370544 -0.1365069 0)
(-0.008860131604 -0.1368286602 0)
(-0.008519910411 -0.1368386362 0)
(-0.008509712896 -0.1365170392 0)
(-0.008542861582 -0.1374829546 0)
(-0.008880509876 -0.1374732961 0)
(-0.007854693294 -0.1375036191 0)
(0.004803278397 -0.09062407184 0)
(0.004804589422 -0.09127481214 0)
(0.005841503452 -0.09130576872 0)
(0.005498250945 -0.09129534132 0)
(-0.009492508923 -0.1112860489 0)
(-0.008812610164 -0.1113061047 0)
(-0.008850322254 -0.1125979903 0)
(-0.009529921001 -0.1125779434 0)
(-0.006809199721 -0.1126582607 0)
(-0.007490884751 -0.1126380912 0)
(-0.006788683426 -0.1120130284 0)
(-0.006441556562 -0.1120236322 0)
(-0.006430687579 -0.1117006741 0)
(-0.006777772442 -0.1116900715 0)
(-0.005705142003 -0.1117242026 0)
(-0.00571989374 -0.112046864 0)
(-0.005684430502 -0.1107534696 0)
(-0.00568471267 -0.1110774663 0)
(-0.005692185062 -0.1104291114 0)
(-0.005710004136 -0.1094569211 0)
(-0.005710363695 -0.1097804951 0)
(-0.006718246012 -0.1094277263 0)
(-0.006726923103 -0.1097506902 0)
(-0.006387165732 -0.1097607124 0)
(-0.00637972289 -0.1094376514 0)
(-0.007801868035 -0.1352444358 0)
(-0.007793184049 -0.1355692423 0)
(-0.008818818666 -0.1352148595 0)
(-0.008826062904 -0.1355381066 0)
(-0.008487219967 -0.1355479812 0)
(-0.008481712196 -0.1352245618 0)
(-0.008500508395 -0.1361945116 0)
(-0.008841687825 -0.1361844467 0)
(-0.001557984741 -0.1317295615 0)
(-0.001586620909 -0.1320468813 0)
(-0.001627450103 -0.1323611324 0)
(-0.001281826895 -0.1323715109 0)
(-0.0009384657655 -0.132381281 0)
(-0.00676384285 -0.1365737888 0)
(-0.006732409934 -0.1362554119 0)
(-0.006702196071 -0.1359512318 0)
(-0.007053335894 -0.1359190673 0)
(-0.007421628586 -0.1359063265 0)
(-0.000907037644 -0.1310860237 0)
(-0.001243760749 -0.1310781346 0)
(-0.001569523341 -0.1310542392 0)
(-0.001652034226 -0.1313169113 0)
(-0.0006248115351 -0.1330369682 0)
(-0.0006115406351 -0.1327134216 0)
(0.0003844955804 -0.1330592885 0)
(0.0003985254861 -0.1327366655 0)
(6.307262019e-05 -0.1327292949 0)
(4.881110158e-05 -0.1330520311 0)
(8.95345472e-05 -0.1320846616 0)
(0.0004257812304 -0.1320925964 0)
(-0.007672413701 -0.142353556 0)
(-0.007379755818 -0.1423604822 0)
(-0.007480998439 -0.1371930575 0)
(-0.007132886939 -0.137203871 0)
(-0.006829635646 -0.1372120162 0)
(-0.00679532438 -0.1368925846 0)
(-0.007554705949 -0.1410720601 0)
(-0.007239940879 -0.1410839743 0)
(0.003127197446 -0.08694561046 0)
(0.002686607136 -0.08701512023 0)
(0.002221301276 -0.1182099052 0)
(0.001897367268 -0.1181963344 0)
(-0.0001780803519 -0.1291571555 0)
(-0.0001697626471 -0.1288331599 0)
(-0.0001524830384 -0.1285117155 0)
(-0.0004927630603 -0.1285026986 0)
(-0.0007917938884 -0.1284985237 0)
(0.0009596824632 -0.1269320525 0)
(0.0009715270893 -0.1266090035 0)
(0.0009164124824 -0.1279004265 0)
(0.00092910435 -0.1275771628 0)
(0.001939416223 -0.1279280226 0)
(0.001952080487 -0.1276048782 0)
(0.001613811125 -0.1275967024 0)
(0.001600976458 -0.1279197216 0)
(-0.003557119915 -0.09334551136 0)
(-0.003257368585 -0.0933542121 0)
(0.008615206885 -0.08976007785 0)
(0.007932905321 -0.08973804005 0)
(0.008664825679 -0.08779567604 0)
(0.007981674528 -0.08777193114 0)
(0.007965262922 -0.08842646933 0)
(0.008648388128 -0.08845107827 0)
(0.006598952689 -0.08837724366 0)
(0.006613735212 -0.08771895706 0)
(0.001684775143 -0.1256560633 0)
(0.002024189328 -0.1256651143 0)
(0.001000063575 -0.1256362833 0)
(0.0009805474348 -0.1262846086 0)
(-0.003160151 -0.1368478777 0)
(-0.003145045877 -0.1365262479 0)
(-0.003391651203 -0.1365608824 0)
(-0.00348397374 -0.1368250015 0)
(-0.003235529393 -0.1361129241 0)
(-0.003733200413 -0.1375333319 0)
(-0.003489194368 -0.1374976585 0)
(-0.00357526653 -0.137085428 0)
(-0.003171550659 -0.1374983084 0)
(-0.003171058993 -0.137171135 0)
(0.006008127884 -0.0823960529 0)
(0.005307452408 -0.08235070191 0)
(0.005308010426 -0.08301971884 0)
(0.00599954075 -0.08305402106 0)
(0.003893690629 -0.08291490451 0)
(0.003880631007 -0.0822402152 0)
(0.003552641381 -0.0845781043 0)
(0.003126063569 -0.08828357075 0)
(0.003464946624 -0.08827730934 0)
(0.003816300691 -0.08828913911 0)
(0.003828948669 -0.08795833695 0)
(0.003842088808 -0.08762474492 0)
(0.003643003722 -0.09034786342 0)
(0.003778742443 -0.08993150139 0)
(0.00354048016 -0.08988149642 0)
(0.003777829678 -0.08960689825 0)
(0.003473764289 -0.08959386401 0)
(0.002170534116 -0.1208083498 0)
(0.001827234797 -0.1207982813 0)
(0.001508013126 -0.1207939806 0)
(0.001493632809 -0.121116473 0)
(0.001449139226 -0.1214319954 0)
(0.001665411341 -0.1192153155 0)
(0.00159940638 -0.1195052084 0)
(0.001884819143 -0.1195056112 0)
(0.002213917765 -0.1195121903 0)
(0.003530422498 -0.1214974355 0)
(0.003541488299 -0.1211741229 0)
(0.003201699107 -0.1211647604 0)
(0.003190739509 -0.1214881363 0)
(0.003222009031 -0.1205182007 0)
(0.003563250877 -0.120527787 0)
(0.002525058234 -0.1204954107 0)
(0.00219864109 -0.1168381332 0)
(0.002619550781 -0.1169290261 0)
(0.002975316743 -0.1169419312 0)
(0.00297892371 -0.1166158123 0)
(0.002998649074 -0.1162925195 0)
(-0.0008773555095 -0.1297877112 0)
(-0.0005372890845 -0.1297963013 0)
(-0.0001874105376 -0.1298080688 0)
(-0.0001803540575 -0.1294830743 0)
(-0.003317324843 -0.09076187154 0)
(-0.002955030612 -0.09079617268 0)
(-0.002848538262 -0.0900699714 0)
(-0.003426080516 -0.09205384585 0)
(-0.003115016324 -0.09206300641 0)
(-0.003775652472 -0.09204286835 0)
(-0.004128359549 -0.09203149643 0)
(-0.004150021786 -0.09235449081 0)
(-0.004171316239 -0.09267863731 0)
(-0.003389069367 -0.09473630294 0)
(-0.003811469499 -0.0946446446 0)
(-0.00417300593 -0.09463270726 0)
(-0.004153365545 -0.09495964444 0)
(-0.004150371595 -0.0952843401 0)
(-0.004191213264 -0.09300384673 0)
(-0.004207912735 -0.09332837143 0)
(-0.003881435083 -0.09333703392 0)
(-0.004680303221 -0.08742888867 0)
(-0.004691390234 -0.08775970767 0)
(-0.004348112394 -0.08776969141 0)
(-0.004337639551 -0.08743832547 0)
(-0.004368399125 -0.08842787879 0)
(-0.004712967018 -0.08841785632 0)
(-0.003661764746 -0.08844798677 0)
(-0.003294942275 -0.08813088875 0)
(-0.002933793983 -0.08814435188 0)
(-0.002508872952 -0.0882376594 0)
(-0.002633754428 -0.08781005417 0)
(-0.002624442226 -0.08747913983 0)
(-0.002801180854 -0.08977267809 0)
(-0.002748315418 -0.08945495677 0)
(-0.003047121446 -0.08944757564 0)
(-0.003377759268 -0.08943945485 0)
(-0.003949819031 -0.1023705516 0)
(-0.004158938759 -0.1023972431 0)
(-0.003978614604 -0.1028080999 0)
(-0.004459159945 -0.1023897895 0)
(-0.004399880111 -0.1027172563 0)
(-0.004358701799 -0.1030433388 0)
(-0.003996671528 -0.1030758303 0)
(-0.00444648715 -0.1004483609 0)
(-0.004464404603 -0.1007704468 0)
(-0.004481624822 -0.1010923134 0)
(-0.004161550639 -0.1011010238 0)
(-0.003862638136 -0.1011094591 0)
(-0.004442000386 -0.1049787429 0)
(-0.004462962957 -0.1053004371 0)
(-0.004148291427 -0.1053100663 0)
(-0.004126380817 -0.1049884006 0)
(-0.004484269326 -0.1056215804 0)
(-0.004170319627 -0.105631248 0)
(-0.004350522412 -0.1033673494 0)
(-0.004017214795 -0.1033803609 0)
(-0.004362070017 -0.103690107 0)
(-0.00403879534 -0.1037002348 0)
(-0.003591026446 -0.09724186436 0)
(-0.003903652503 -0.09723271696 0)
(-0.004257982655 -0.09722159658 0)
(-0.004277850818 -0.09754464483 0)
(-0.004297198166 -0.09786794895 0)
(-0.00416088777 -0.09560754907 0)
(-0.004178092418 -0.09593049713 0)
(-0.003809493102 -0.09594282672 0)
(-0.003490817605 -0.09595251612 0)
(-0.003775393483 -0.09982164339 0)
(-0.004078693356 -0.09981271598 0)
(-0.004410045589 -0.09980318644 0)
(-0.00442834648 -0.1001260415 0)
(-0.004316190888 -0.09819084332 0)
(-0.004334959186 -0.09851326398 0)
(-0.003992219097 -0.09852355588 0)
(-0.003684188633 -0.09853274545 0)
(-0.005767869665 -0.1130133551 0)
(-0.00578421446 -0.1133356684 0)
(-0.005735566507 -0.1123691974 0)
(-0.006798232949 -0.112335846 0)
(-0.006452542541 -0.1123462866 0)
(-0.00652034312 -0.114283177 0)
(-0.00686082472 -0.1142730731 0)
(-0.005833187071 -0.1143037511 0)
(-0.00580058866 -0.1136581609 0)
(-0.005653743377 -0.107843329 0)
(-0.005666949447 -0.1081659166 0)
(-0.005614022567 -0.1068757492 0)
(-0.005627250836 -0.1071982761 0)
(-0.006640395965 -0.1068451692 0)
(-0.006650209499 -0.1071679788 0)
(-0.006310098113 -0.1071780116 0)
(-0.006299804559 -0.1068552164 0)
(-0.004622321235 -0.1075507761 0)
(-0.004645705509 -0.1078725176 0)
(-0.004341194181 -0.1078813012 0)
(-0.004316509656 -0.1075596588 0)
(-0.004669151586 -0.1081943173 0)
(-0.004366010711 -0.1082029397 0)
(-0.004506762537 -0.1059424478 0)
(-0.004194436491 -0.1059515862 0)
(-0.004529595977 -0.1062638456 0)
(-0.004218635591 -0.1062730631 0)
(-0.004724013832 -0.1101315362 0)
(-0.004548032088 -0.1105434037 0)
(-0.004513553618 -0.1101038039 0)
(-0.004692535859 -0.1085160589 0)
(-0.004390835044 -0.108524638 0)
(-0.004715621922 -0.1088378694 0)
(-0.004415645574 -0.1088462766 0)
(-0.006370949795 -0.1091146903 0)
(-0.006709150706 -0.109104835 0)
(-0.005703005312 -0.1091338467 0)
(-0.005679957509 -0.1084885103 0)
(0.003035356086 -0.114343705 0)
(0.0030771406 -0.1140265999 0)
(0.002772283026 -0.1140189469 0)
(0.002711792292 -0.1143302054 0)
(0.003113668337 -0.1137079555 0)
(0.002832759957 -0.1137077481 0)
(0.003026997931 -0.1159716477 0)
(0.003048786121 -0.1156504588 0)
(0.002729499076 -0.1156451352 0)
(0.002449197316 -0.1156451261 0)
(0.003112482314 -0.1133814524 0)
(0.002888801585 -0.1134148534 0)
(0.002972324676 -0.1129623729 0)
(0.004840567549 -0.1127822706 0)
(0.005184731499 -0.1127925452 0)
(0.00412914839 -0.112757905 0)
(0.004123022758 -0.1137337004 0)
(0.004125512455 -0.1134083887 0)
(-0.008784810513 -0.1339223222 0)
(-0.008794091232 -0.1342453881 0)
(-0.008459617664 -0.1342547711 0)
(-0.008450096935 -0.1339317125 0)
(-0.008475664404 -0.1349011586 0)
(-0.008811036207 -0.1348916885 0)
(-0.00780701728 -0.1349199157 0)
(-0.00772691252 -0.1326622722 0)
(-0.007741184798 -0.1329835667 0)
(-0.008747217884 -0.1326324149 0)
(-0.008756460766 -0.1329542208 0)
(-0.008419892517 -0.1329638469 0)
(-0.008409931407 -0.1326421227 0)
(-0.008440157991 -0.1336087264 0)
(-0.008775409789 -0.1335992599 0)
(-0.006801243416 -0.1339763001 0)
(-0.006771527098 -0.1336552892 0)
(-0.006741445972 -0.1333345295 0)
(-0.007077415998 -0.1333249814 0)
(-0.007416566749 -0.1333151576 0)
(-0.007480089453 -0.1346045865 0)
(-0.007163830798 -0.1346121614 0)
(-0.006854720222 -0.1346189811 0)
(-0.006829835292 -0.1342974648 0)
(-0.001176305941 -0.129783779 0)
(-0.007745129989 -0.143642949 0)
(-0.008058574579 -0.1436372603 0)
(-0.008381374693 -0.1436291287 0)
(-0.008335571685 -0.1439657999 0)
(-0.008239136453 -0.1443343201 0)
(-0.006415273296 -0.1444321481 0)
(-0.006301041413 -0.1441034054 0)
(-0.006608069548 -0.1444662363 0)
(-0.007498909749 -0.1436461386 0)
(-0.004466373776 -0.1435916234 0)
(-0.00413975137 -0.1435950653 0)
(-0.005134178638 -0.1435790173 0)
(-0.005229263656 -0.1445213324 0)
(-0.005181860174 -0.1442137047 0)
(-0.007029260166 -0.1391350989 0)
(-0.006995907154 -0.1388161791 0)
(-0.006963697164 -0.1384963241 0)
(-0.007257141657 -0.1384885935 0)
(-0.007583628914 -0.1384800508 0)
(-0.003891621184 -0.1387762501 0)
(-0.004183539999 -0.1387751114 0)
(-0.004546491902 -0.139761512 0)
(-0.004644456983 -0.1400223388 0)
(-0.004321728073 -0.1400446416 0)
(-0.003982948096 -0.1400530129 0)
(-0.007650887289 -0.1397664848 0)
(-0.007357463721 -0.1397715123 0)
(-0.007097171627 -0.139772482 0)
(-0.00706365185 -0.1394550085 0)
(-0.003662923978 -0.1407079906 0)
(-0.003651450177 -0.1403852908 0)
(-0.002664205989 -0.1407261492 0)
(-0.002646554994 -0.140405737 0)
(-0.002977136322 -0.1404007348 0)
(-0.002994195095 -0.1407212249 0)
(-0.002944812783 -0.1397572984 0)
(-0.002611843985 -0.1397633932 0)
(-0.0001540474479 -0.1278586134 0)
(-0.0001440982879 -0.1275350871 0)
(-0.00049966201 -0.127499847 0)
(0.00024812453 -0.1272321084 0)
(0.0005977336777 -0.1272434473 0)
(-0.001846195871 -0.08543583052 0)
(-0.001547401067 -0.08541358541 0)
(-0.0009981423988 -0.08468520907 0)
(0.0006448025996 -0.1259501612 0)
(0.0002983411678 -0.1259393972 0)
(-4.638138332e-05 -0.1259071251 0)
(0.0001100511585 -0.1253346188 0)
(3.319316136e-05 -0.1256167388 0)
(0.003198388999 -0.08354399404 0)
(0.002838101254 -0.08351387303 0)
(0.002844200838 -0.08385474511 0)
(0.003200064068 -0.08388021099 0)
(0.002100892785 -0.0837799414 0)
(0.002091652136 -0.08343887291 0)
(0.002125018576 -0.08448730588 0)
(0.004750620505 -0.1000950814 0)
(0.004784513096 -0.0997705925 0)
(0.004420627527 -0.09978128601 0)
(0.004415902661 -0.1000880332 0)
(0.004850203443 -0.09944537687 0)
(0.004725537309 -0.1007442003 0)
(0.004735105496 -0.1004191612 0)
(0.004409555518 -0.1004092053 0)
(0.004402335213 -0.1007348555 0)
(0.004354593706 -0.09616654006 0)
(0.004662920562 -0.09617645921 0)
(0.005007572928 -0.09618686859 0)
(0.004999076769 -0.09586140713 0)
(0.004991883258 -0.09553616496 0)
(0.005022026513 -0.09683873622 0)
(0.005015544652 -0.09651279475 0)
(0.003967171008 -0.1065788653 0)
(0.004284680655 -0.1065885798 0)
(0.004647009102 -0.1066011415 0)
(0.004672083099 -0.1062775288 0)
(0.004698639157 -0.1059539607 0)
(0.004623042581 -0.107249273 0)
(0.004628235976 -0.1069245229 0)
(0.004269402847 -0.09488856053 0)
(0.004630560156 -0.09487592335 0)
(0.005001830313 -0.09488370879 0)
(0.005029592557 -0.09455537238 0)
(0.005063985072 -0.09422723506 0)
(0.004990428397 -0.09521061466 0)
(0.004108964617 -0.1052886638 0)
(0.004413717162 -0.1052972145 0)
(0.004751449459 -0.1053068755 0)
(0.004776267264 -0.1049825946 0)
(0.004800134616 -0.1046587656 0)
(0.004725296607 -0.1056308161 0)
(0.004714105235 -0.1013951105 0)
(0.004717628199 -0.101068989 0)
(0.004393102479 -0.1010585234 0)
(0.004379932971 -0.1013824934 0)
(0.004774459483 -0.1020491972 0)
(0.004728955026 -0.1017217837 0)
(0.004367407155 -0.1016900273 0)
(-0.005717237137 -0.1217395938 0)
(-0.006056940507 -0.1217295733 0)
(-0.006398926366 -0.1217193641 0)
(-0.006415508145 -0.1220407694 0)
(-0.006432280129 -0.1223621089 0)
(-0.005734965371 -0.1256211782 0)
(-0.006053663662 -0.1256112479 0)
(-0.00642388364 -0.1255986895 0)
(-0.006441821491 -0.1259206547 0)
(-0.006462670651 -0.126242172 0)
(-0.006415685835 -0.1249524868 0)
(-0.006412905463 -0.125276095 0)
(-0.001880761574 -0.1320441745 0)
(-0.001970482395 -0.1323292715 0)
(-0.001793688901 -0.1317674661 0)
(-0.001645649226 -0.1330108184 0)
(-0.00164304908 -0.1326839486 0)
(-0.00662670535 -0.1320532448 0)
(-0.006654169774 -0.1323742632 0)
(-0.006347419759 -0.1323832942 0)
(-0.006317491035 -0.1320624098 0)
(-0.006682270802 -0.1326944818 0)
(-0.00637725185 -0.1327031606 0)
(-0.006581813079 -0.1314096453 0)
(-0.006600982187 -0.1317318137 0)
(-0.006287423099 -0.1317412894 0)
(-0.006257366025 -0.1314223307 0)
(-0.006838188087 -0.135268629 0)
(-0.00667538953 -0.1356817221 0)
(-0.006631278166 -0.1352389284 0)
(-0.005847555576 -0.1269050499 0)
(-0.006156127269 -0.1268960843 0)
(-0.006507403296 -0.1268850556 0)
(-0.006530171345 -0.1272068757 0)
(-0.006552951395 -0.1275286955 0)
(-0.006484798459 -0.1265634709 0)
(-0.0066156709 -0.1307585763 0)
(-0.006582348746 -0.1310856841 0)
(-0.006228690621 -0.1311179842 0)
(-0.006203305544 -0.1308486121 0)
(-0.006696784795 -0.1301036259 0)
(-0.006666213134 -0.1304299304 0)
(-0.001485294429 -0.1307860935 0)
(-0.008703751549 -0.1446529017 0)
(-0.008352587199 -0.1446664494 0)
(-0.00867379481 -0.1455912843 0)
(-0.008327508507 -0.1455992804 0)
(-0.008312756753 -0.1452760185 0)
(-0.00866092115 -0.1452685665 0)
(-0.007303097718 -0.1456060191 0)
(-0.00727958523 -0.1452698078 0)
(-0.007615095548 -0.1452783505 0)
(-0.00763768376 -0.1456061817 0)
(-0.008004502179 -0.1423445448 0)
(-0.008342748696 -0.1423348082 0)
(-0.008362570029 -0.142656897 0)
(-0.008379638456 -0.1429793086 0)
(-0.005406732047 -0.1426155732 0)
(-0.005651099365 -0.1426532777 0)
(-0.006984406346 -0.1456059798 0)
(-0.006997722778 -0.1452476428 0)
(-0.005946676418 -0.1456629654 0)
(-0.005949469215 -0.145333171 0)
(-0.006309489607 -0.1453079466 0)
(-0.006299082649 -0.1456433748 0)
(-0.006080511226 -0.1447851235 0)
(-0.005710097812 -0.1447896401 0)
(-0.006898206063 -0.1378539438 0)
(-0.006864549368 -0.1375325107 0)
(0.002380813861 -0.08631182796 0)
(0.002499407886 -0.08656201745 0)
(0.002007376532 -0.08563101354 0)
(0.002452375018 -0.08556890299 0)
(0.002464054013 -0.08521376984 0)
(0.002475982668 -0.08486092256 0)
(0.002458791713 -0.08589921463 0)
(0.00214941141 -0.08586957731 0)
(-0.0001449375636 -0.1281876366 0)
(-0.002188945781 -0.08544606566 0)
(-0.002534513821 -0.08544755002 0)
(-0.002552635065 -0.08579162248 0)
(-0.00257215832 -0.08613118464 0)
(-0.002585205686 -0.08681268716 0)
(-0.002595525215 -0.08715014745 0)
(-0.002248895701 -0.08718371395 0)
(-0.002166407395 -0.08690469378 0)
(-0.002327806308 -0.08748438986 0)
(-0.00258502808 -0.08646877254 0)
(0.0006545706395 -0.1246468666 0)
(0.0003064591728 -0.1246136519 0)
(-0.002399733536 -0.1349313049 0)
(-0.002803522857 -0.1348456706 0)
(-0.002955950333 -0.1352944004 0)
(-0.003048799956 -0.1355678726 0)
(-0.002467318848 -0.1362150266 0)
(-0.002819946086 -0.1362023959 0)
(-0.003144515539 -0.1358497866 0)
(-0.003192273426 -0.1381458167 0)
(-0.003179046347 -0.1378229293 0)
(-0.003562266914 -0.1387815157 0)
(-0.003226853041 -0.1387885847 0)
(-0.003206436544 -0.1384686759 0)
(0.003770533595 -0.08895567194 0)
(0.003799077461 -0.08861990598 0)
(0.004481072027 -0.08962796736 0)
(0.004124131591 -0.08961877449 0)
(0.003761254671 -0.08928527804 0)
(0.003403154859 -0.08929969463 0)
(0.004424882662 -0.09877078181 0)
(0.004693326966 -0.09878346709 0)
(0.004992169812 -0.09879382213 0)
(0.00501937155 -0.0984683516 0)
(0.005029708398 -0.09814231459 0)
(0.004931714077 -0.09911931506 0)
(0.004405701245 -0.09746896011 0)
(0.004705892957 -0.09747899531 0)
(0.005030740276 -0.09748995105 0)
(0.00502714093 -0.09716421624 0)
(0.005032093116 -0.09781609885 0)
(0.003926634031 -0.109186025 0)
(0.004270125953 -0.1091962795 0)
(0.00461590696 -0.1092069029 0)
(0.00463830602 -0.1088841709 0)
(0.004656057949 -0.1085591973 0)
(0.003618641354 -0.1091773771 0)
(0.003847380415 -0.1104773238 0)
(0.003426574547 -0.1103857734 0)
(0.003352749674 -0.1108378845 0)
(0.003301173963 -0.1111332555 0)
(0.004014280327 -0.1078902339 0)
(0.003798074783 -0.1079210968 0)
(0.004319532183 -0.1078955564 0)
(0.004653284532 -0.1079045575 0)
(0.004634721828 -0.1075763314 0)
(0.004662734067 -0.1082322697 0)
(0.001453967243 -0.1201080131 0)
(0.001388169281 -0.1203770125 0)
(0.001277495651 -0.1208294585 0)
(0.001207378209 -0.121116105 0)
(0.001132425878 -0.1214199626 0)
(0.001526426855 -0.1198117678 0)
(0.00297493833 -0.1175929331 0)
(0.002978920865 -0.117268507 0)
(-0.004217262656 -0.09397694186 0)
(-0.004199649164 -0.09430417851 0)
(-0.004218409125 -0.0936521215 0)
(-0.002630816807 -0.08881582569 0)
(-0.002566709946 -0.08851254322 0)
(-0.002401655554 -0.0877755126 0)
(-0.002692073886 -0.08913320494 0)
(0.004437261134 -0.09354935481 0)
(0.004764472517 -0.09356158267 0)
(0.005099107429 -0.09357319265 0)
(0.005099909884 -0.09324686935 0)
(0.005099736084 -0.09292105723 0)
(0.005089147968 -0.09390026195 0)
(0.004140487201 -0.09353810099 0)
(0.004442195078 -0.09094004497 0)
(0.004081424775 -0.09093179409 0)
(0.00375582547 -0.09092628092 0)
(0.003811459328 -0.09124036579 0)
(0.003865296138 -0.09155349585 0)
(0.00369873087 -0.09062424158 0)
(0.004409374533 -0.09224823261 0)
(0.0039839614 -0.09231491303 0)
(0.003914416023 -0.09184990865 0)
(-0.004505359662 -0.1017379295 0)
(-0.004498274751 -0.1020629882 0)
(-0.004496681959 -0.1014145452 0)
(-0.004400507841 -0.1043345609 0)
(-0.004421159011 -0.1046566848 0)
(-0.004104447397 -0.1046663753 0)
(-0.004082560177 -0.1043442885 0)
(-0.004380376892 -0.1040123614 0)
(-0.004060672956 -0.1040222017 0)
(-0.004217852744 -0.09657659291 0)
(-0.004237938701 -0.09689909412 0)
(-0.004197710372 -0.09625361295 0)
(-0.004372562365 -0.09915732256 0)
(-0.004391447677 -0.09948003998 0)
(-0.004353684872 -0.09883526552 0)
(0.004223622272 -0.1039919421 0)
(0.004522678781 -0.1040003817 0)
(0.004844276431 -0.1040089578 0)
(0.004863664625 -0.1036840934 0)
(0.004879561899 -0.1033582834 0)
(0.004823050955 -0.1043340072 0)
(0.004313471287 -0.1026951961 0)
(0.004581396833 -0.102698557 0)
(0.004878772694 -0.1027061655 0)
(0.004836936207 -0.1023782014 0)
(0.004887523244 -0.1030323552 0)
(-0.005387290131 -0.1127031203 0)
(-0.005028168791 -0.1127146848 0)
(-0.004714357692 -0.1127241681 0)
(-0.004690120789 -0.1124026323 0)
(-0.004666024288 -0.1120809722 0)
(-0.004764089749 -0.1133671418 0)
(-0.004739207216 -0.1130455053 0)
(-0.005313993026 -0.1114139849 0)
(-0.004939697079 -0.1114266056 0)
(-0.004617752655 -0.1114366334 0)
(-0.00459301598 -0.1111168543 0)
(-0.004569105962 -0.1108120044 0)
(-0.00464190858 -0.1117590725 0)
(-0.005547324282 -0.1152805671 0)
(-0.005213930163 -0.1152900979 0)
(-0.004910578685 -0.1152989067 0)
(-0.004886459985 -0.1149773074 0)
(-0.004862322077 -0.1146554683 0)
(-0.004959898509 -0.1159413523 0)
(-0.004934954784 -0.115620078 0)
(-0.005467890726 -0.113991676 0)
(-0.005122058113 -0.1140021809 0)
(-0.004813898041 -0.1140112542 0)
(-0.004788979489 -0.1136890183 0)
(-0.004838168566 -0.1143335097 0)
(-0.004575754895 -0.1069072268 0)
(-0.004599020966 -0.107229032 0)
(-0.004291937334 -0.1072379529 0)
(-0.004267360813 -0.1069163072 0)
(-0.005300303519 -0.1075308979 0)
(-0.004960532345 -0.1075408604 0)
(-0.004552576432 -0.1065855392 0)
(-0.004242844295 -0.1065946597 0)
(-0.004755991214 -0.1094818449 0)
(-0.004760683546 -0.1098051087 0)
(-0.004490511494 -0.1098080566 0)
(-0.004465708851 -0.1094894806 0)
(-0.005359209614 -0.1101149848 0)
(-0.005026067506 -0.110124508 0)
(-0.005364122631 -0.1088201978 0)
(-0.005039842275 -0.1088290345 0)
(-0.004737698141 -0.1091596502 0)
(-0.004440662509 -0.109167789 0)
(0.003021242547 -0.1149929131 0)
(0.003011391012 -0.1146645883 0)
(0.002653586784 -0.1146297614 0)
(0.003046145625 -0.1153243925 0)
(0.003840104297 -0.1117800326 0)
(0.003497442806 -0.1117699232 0)
(0.003190636375 -0.111761371 0)
(0.0031349661 -0.1120776988 0)
(0.003077760442 -0.1123911579 0)
(0.003246112211 -0.1114461183 0)
(0.003762150405 -0.113068848 0)
(0.003397540709 -0.1130546563 0)
(0.00302228022 -0.1126917567 0)
(-0.005815887562 -0.1230236438 0)
(-0.006140071319 -0.1230149902 0)
(-0.006464931302 -0.1230062561 0)
(-0.00647854119 -0.1233288917 0)
(-0.006486493458 -0.1236521176 0)
(-0.006448982524 -0.122683931 0)
(-0.005517483874 -0.1230318236 0)
(-0.005412204995 -0.1217486333 0)
(-0.005831501985 -0.1243176343 0)
(-0.005622361213 -0.1242894419 0)
(-0.0061319668 -0.124310894 0)
(-0.006463506248 -0.124301599 0)
(-0.006435664086 -0.1246274012 0)
(-0.006483055473 -0.1239762261 0)
(-0.005536515993 -0.1178696301 0)
(-0.005117174763 -0.1179603558 0)
(-0.005082784496 -0.1175206934 0)
(-0.005059642764 -0.1172248289 0)
(-0.005623037651 -0.1165683687 0)
(-0.005305624569 -0.116576699 0)
(-0.005009847186 -0.1165847399 0)
(-0.004984866848 -0.1162630463 0)
(-0.005034815525 -0.1169064338 0)
(-0.005622708202 -0.1204525974 0)
(-0.005312359841 -0.1204617965 0)
(-0.005528817077 -0.1191650413 0)
(-0.005212047263 -0.1191747936 0)
(0.0006498247785 -0.1233185129 0)
(0.00100720117 -0.1233539877 0)
(0.001374353118 -0.1233701174 0)
(0.001396485125 -0.1230488788 0)
(0.001421178608 -0.122728738 0)
(0.001369681504 -0.1240218912 0)
(0.001367458645 -0.1236951167 0)
(0.001412373107 -0.1220751782 0)
(0.001414138577 -0.1217497847 0)
(0.001057740208 -0.1217149399 0)
(0.0009897209651 -0.1219835123 0)
(0.001427489833 -0.122404562 0)
(-0.00238689813 -0.1336054611 0)
(-0.002040887939 -0.1336382523 0)
(-0.001688344707 -0.1336509406 0)
(-0.00166310644 -0.1333321975 0)
(-0.001707571025 -0.1342989141 0)
(-0.001702978832 -0.1339733652 0)
(-0.006473426413 -0.1336631596 0)
(-0.006441006993 -0.1333425302 0)
(-0.006505677233 -0.1339839743 0)
(-0.006711490867 -0.1330143665 0)
(-0.006408664997 -0.1330226791 0)
(-0.006866451438 -0.1349418533 0)
(-0.006601777975 -0.1349433149 0)
(-0.006570064866 -0.134625607 0)
(-0.006537874049 -0.1343047906 0)
(-0.005961960898 -0.1281903684 0)
(-0.006263649118 -0.1281819699 0)
(-0.006598377093 -0.1281724591 0)
(-0.006620966937 -0.1284943446 0)
(-0.006643270571 -0.1288162988 0)
(-0.006575685245 -0.1278505766 0)
(-0.00607519437 -0.1294756621 0)
(-0.006368173836 -0.1294676452 0)
(-0.006684073666 -0.1294597207 0)
(-0.006697510108 -0.1297809803 0)
(-0.006664774371 -0.1291382169 0)
(-0.008389641007 -0.1433024129 0)
(-0.005507229512 -0.1438841332 0)
(-0.005841064742 -0.1438778923 0)
(-0.006156863503 -0.143860602 0)
(-0.006039771624 -0.1436070159 0)
(-0.005088504479 -0.1426149795 0)
(-0.00475250554 -0.1426205647 0)
(-0.004740370471 -0.1422964435 0)
(-0.004725123739 -0.1419746978 0)
(-0.006931136729 -0.1381753986 0)
(-0.004706600088 -0.1413280244 0)
(-0.00468810367 -0.1410080579 0)
(-0.00500852432 -0.1409870855 0)
(-0.005106969319 -0.1412442944 0)
(-0.004663949665 -0.1406898828 0)
(-0.004908844971 -0.1407263703 0)
(-0.004713649344 -0.1416521782 0)
(-0.004740554712 -0.1402805791 0)
(-0.007127912017 -0.1400661964 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-8.441095034e-05 -0.0001154115859 -1.360023205e-15)
(-1.061850441e-05 -1.29299929e-05 -1.387778781e-16)
(-0.0002891319996 -0.0003817504256 -4.135580767e-15)
(0 0 0)
(0 0 0)
(-0.0001883012737 -0.0002935617142 -3.441691376e-15)
(-0.0003684949516 -0.0009935976692 -1.162958618e-14)
(-0.0003500117841 -0.0007590600654 -8.881784197e-15)
(-0.0008665528066 -0.002045713336 -2.212119377e-14)
(0 0 0)
(0 0 0)
(-0.0003363885597 -0.001198396204 -1.404432126e-14)
(-1.618996058e-05 -0.001494848023 -1.751376821e-14)
(-0.0001468311331 -0.001459007257 -1.7069679e-14)
(-0.000288583514 -0.003202492667 -3.461120279e-14)
(0 0 0)
(-2.543014772e-06 -2.04268031e-05 -2.775557562e-16)
(0.0001151138354 -0.001460963128 -1.709743458e-14)
(0.0003465719353 -0.000999414148 -1.168509733e-14)
(0.000309967336 -0.001203421026 -1.407207684e-14)
(0.0006714190592 -0.002795696553 -3.017031069e-14)
(0 0 0)
(7.043737487e-07 -2.298939301e-06 -2.775557562e-17)
(0.0003335456912 -0.0007651260304 -8.965050924e-15)
(8.354432248e-05 -0.0001187395166 -1.387778781e-15)
(0.0001832870217 -0.0002983689384 -3.497202528e-15)
(0.0006666936423 -0.001173587951 -1.265654248e-14)
(0 0 0)
(0 0 0)
(1.123904903e-05 -1.417136128e-05 -1.665334537e-16)
(0 0 0)
(0 0 0)
(4.160046722e-06 -4.63683049e-06 -5.551115123e-17)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.001231739638 -0.00150968318 -1.323940957e-14)
(-0.000606068666 -0.0006859741233 -6.022959909e-15)
(-0.001472151862 -0.001771616303 -1.462718835e-14)
(0 0 0)
(-0.001922828737 -0.002570600782 -2.256528298e-14)
(-0.003538712163 -0.006519331804 -5.731526365e-14)
(-0.003142951277 -0.005140493122 -4.51860771e-14)
(-0.004621497631 -0.008054666363 -6.666889263e-14)
(-0.000928311162 -0.00132208995 -1.326716514e-14)
(-0.003735139347 -0.007878168561 -6.927791674e-14)
(-0.003043355059 -0.01134679038 -9.975353876e-14)
(-0.003480011306 -0.01033458311 -9.087175457e-14)
(-0.004581191731 -0.01457510285 -1.206812428e-13)
(-0.001583445229 -0.004051241598 -4.068967385e-14)
(-0.002432513981 -0.01216780983 -1.069144773e-13)
(4.303138234e-05 -0.01328914456 -1.165734176e-13)
(-0.0008438078463 -0.01315302339 -1.154631946e-13)
(-0.001032163664 -0.01797975217 -1.485200851e-13)
(-0.0004608533018 -0.005723891958 -5.742628595e-14)
(0.0009260743967 -0.01317703812 -1.155187057e-13)
(0.003078551475 -0.01142384399 -9.997558337e-14)
(0.002487663093 -0.01223195983 -1.071087663e-13)
(0.003280700042 -0.01689535894 -1.391387006e-13)
(0.001163210416 -0.005150826711 -5.159761507e-14)
(0.003494099835 -0.01041852427 -9.114931032e-14)
(0.00350903646 -0.006591315322 -5.764833055e-14)
(0.003714621055 -0.007958562843 -6.961098364e-14)
(0.00515131801 -0.01167312873 -9.597878048e-14)
(0.001434594399 -0.002711489862 -2.717270853e-14)
(0.003111084811 -0.005201775299 -4.549138843e-14)
(0.001224543918 -0.001537860549 -1.346145417e-14)
(0.001904616848 -0.00260914418 -2.284283873e-14)
(0.003211084568 -0.0046682073 -3.841371665e-14)
(0.0002634636478 -0.0003162516171 -3.16413562e-15)
(0.0006080295787 -0.0007046884286 -6.161737787e-15)
(0 0 0)
(0 0 0)
(0.0001718716672 -0.0001832586375 -1.498801083e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.001350404862 -0.00155715321 -1.090794122e-14)
(-0.0004022911589 -0.0004367790348 -3.053113318e-15)
(-0.0009968192592 -0.001135794418 -7.577272143e-15)
(0 0 0)
(-0.00266947293 -0.003282412827 -2.303712776e-14)
(-0.007190952425 -0.01107039273 -7.790990075e-14)
(-0.00574214474 -0.008151247553 -5.731526365e-14)
(-0.007519762757 -0.0112181043 -7.516209877e-14)
(-0.00265586727 -0.003386937146 -2.642330799e-14)
(-0.008414762411 -0.01415647319 -9.969802761e-14)
(-0.009990388822 -0.02334862814 -1.646460746e-13)
(-0.009859768255 -0.02039290694 -1.437738817e-13)
(-0.01168218794 -0.02542999109 -1.708633235e-13)
(-0.006272972059 -0.01161105338 -9.084399899e-14)
(-0.009711734484 -0.02608639064 -1.839639552e-13)
(-0.006699705958 -0.03246886667 -2.286226763e-13)
(-0.008022798746 -0.03068501921 -2.16215934e-13)
(-0.009098708586 -0.03672078397 -2.46497267e-13)
(-0.005730540615 -0.01945945696 -1.522393323e-13)
(-0.005132431345 -0.03387707162 -2.383371278e-13)
(0.0003986989507 -0.03578206825 -2.509381591e-13)
(-0.001518930038 -0.03553752165 -2.494948692e-13)
(-0.001655120287 -0.04182371163 -2.796374243e-13)
(-0.001208780353 -0.0234218174 -1.827149543e-13)
(0.002304818378 -0.0356307374 -2.496058915e-13)
(0.00732426043 -0.03278977236 -2.289834988e-13)
(0.005829834103 -0.03413562697 -2.386146836e-13)
(0.006618129652 -0.04041382381 -2.689515277e-13)
(0.004124749316 -0.02219525336 -1.725564136e-13)
(0.008560129248 -0.03104987278 -2.166600233e-13)
(0.0102356717 -0.02372005233 -1.653122084e-13)
(0.01005312716 -0.02647611543 -1.845468223e-13)
(0.01169762962 -0.03225204797 -2.139399768e-13)
(0.006723146442 -0.01605901509 -1.245947789e-13)
(0.0100189108 -0.02073003511 -1.444677711e-13)
(0.007187198581 -0.01123827848 -7.840950111e-14)
(0.008450560818 -0.01439344074 -1.003641614e-13)
(0.01042500835 -0.01860963741 -1.234845559e-13)
(0.004776649638 -0.007342694186 -5.703770789e-14)
(0.005705682102 -0.008238308333 -5.753730825e-14)
(0.001551481645 -0.001819318326 -1.271205363e-14)
(0.002862133625 -0.003579049737 -2.500777363e-14)
(0.0043118142 -0.005658909981 -3.758104938e-14)
(0.0007010536415 -0.0007912090657 -6.161737787e-15)
(0.0005547466081 -0.0006123313329 -4.274358645e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0007886129351 -0.0009197132324 -5.356826094e-15)
(-4.848525897e-05 -5.376159553e-05 -3.053113318e-16)
(-0.006584191352 -0.009098524955 -5.309641615e-14)
(-0.00427275019 -0.005560363871 -3.241851232e-14)
(-0.005528533045 -0.007493632847 -4.193867476e-14)
(-0.0019960043 -0.002380458548 -1.515454429e-14)
(-0.008987628048 -0.01324365652 -7.741030039e-14)
(-0.01474021849 -0.02725145345 -1.601219157e-13)
(-0.0133069933 -0.02264744505 -1.328104293e-13)
(-0.01521133734 -0.0269624412 -1.516842207e-13)
(-0.009367043556 -0.01464805513 -9.373057885e-14)
(-0.01597368796 -0.03232619553 -1.90125693e-13)
(-0.01618269899 -0.04566832421 -2.687849943e-13)
(-0.01669557656 -0.04165678235 -2.45192755e-13)
(-0.01825644684 -0.0473124462 -2.673139488e-13)
(-0.01345579872 -0.03074328219 -1.972588759e-13)
(-0.01513784469 -0.04914565272 -2.891298312e-13)
(-0.009549885387 -0.0561750542 -3.297084827e-13)
(-0.01173337358 -0.05438779165 -3.195499421e-13)
(-0.01236925899 -0.05954693315 -3.358147094e-13)
(-0.0100898653 -0.04280470388 -2.743083538e-13)
(-0.007157197118 -0.05747382489 -3.369804435e-13)
(0.0006249523212 -0.05911033125 -3.453071162e-13)
(-0.002017065074 -0.05888444192 -3.444189378e-13)
(-0.002122219109 -0.06320828069 -3.549105454e-13)
(-0.001782430225 -0.04796658721 -3.061162435e-13)
(0.003259323353 -0.059047941 -3.445022045e-13)
(0.01069180912 -0.0567685115 -3.299305273e-13)
(0.008341903462 -0.05794527735 -3.371747326e-13)
(0.00864963427 -0.06265262308 -3.499700529e-13)
(0.007316958191 -0.0466206957 -2.960409695e-13)
(0.01281081234 -0.05507061469 -3.196887199e-13)
(0.017014984 -0.0468186647 -2.71088707e-13)
(0.0160784851 -0.05025063994 -2.911559882e-13)
(0.01715045835 -0.05579212631 -3.102240687e-13)
(0.01325883901 -0.03819126327 -2.416677969e-13)
(0.0174222312 -0.04278104522 -2.475242233e-13)
(0.01549956466 -0.02885257798 -1.666999871e-13)
(0.01668050015 -0.03375309122 -1.949829187e-13)
(0.01855861934 -0.03910254138 -2.166322677e-13)
(0.01239824978 -0.02311055193 -1.461886168e-13)
(0.01382608821 -0.02382412 -1.377509218e-13)
(0.007000252263 -0.009844316067 -5.709321904e-14)
(0.009432514519 -0.01413611977 -8.190670364e-14)
(0.01119074549 -0.01746815192 -9.70890035e-14)
(0.005933274572 -0.0081552008 -5.165312622e-14)
(0.004647525943 -0.006154149881 -3.572142582e-14)
(0.0001169349754 -0.0001316185242 -7.771561172e-16)
(0.0009974310796 -0.001181880478 -6.855627177e-15)
(0.00165480709 -0.002042650801 -1.140754158e-14)
(0.0001182324458 -0.0001284174688 -8.049116929e-16)
(-0.003292854028 -0.004478735426 -2.234323837e-14)
(-0.001320123946 -0.001707483159 -8.520961714e-15)
(-0.01225710649 -0.01974627565 -9.889311592e-14)
(-0.00913502745 -0.0138600292 -6.933342789e-14)
(-0.00996987128 -0.01566323311 -7.563394355e-14)
(-0.006789756482 -0.009569837557 -5.151434834e-14)
(-0.01524226343 -0.02618298881 -1.313116282e-13)
(-0.02149761998 -0.04621910466 -2.324529458e-13)
(-0.02000870419 -0.03967590984 -1.994238108e-13)
(-0.02122503817 -0.04355730157 -2.113864639e-13)
(-0.01698063166 -0.031297988 -1.693367668e-13)
(-0.02227606533 -0.05230943818 -2.632061236e-13)
(-0.02038223392 -0.06619776864 -3.331501741e-13)
(-0.02164824342 -0.06234347338 -3.137490268e-13)
(-0.02242733336 -0.06674979354 -3.242128788e-13)
(-0.01965256891 -0.05279022162 -2.865208071e-13)
(-0.01849949582 -0.06888427988 -3.466393839e-13)
(-0.01075274845 -0.07145646399 0)
(-0.01354247774 -0.07133436603 -3.587130593e-13)
(-0.01371733898 -0.07404506462 0)
(-0.01289177731 -0.06411340079 -3.475830734e-13)
(-0.007956480935 -0.0715133456 0)
(0.0003398073993 -0.0730145283 0)
(-0.001035768244 -0.07297382269 0)
(-0.002213410161 -0.06650997541 -3.590461262e-13)
(0.001723132589 -0.07305588701 0)
(0.01159539581 -0.07212802091 0)
(0.008793141645 -0.07201450635 0)
(0.008786714013 -0.07461055889 0)
(0.008819336982 -0.06654812428 -3.574085472e-13)
(0.01439212963 -0.07220853461 -3.588795927e-13)
(0.021157835 -0.06770762116 -3.348155087e-13)
(0.01931747293 -0.07016945022 -3.473610288e-13)
(0.01804428402 -0.06093351549 -3.255451464e-13)
(0.02243775541 -0.06420104937 -3.173017404e-13)
(0.02218150617 -0.04819857259 -2.381705944e-13)
(0.02298994926 -0.05431227483 -2.683131495e-13)
(0.02401754435 -0.05882537733 -2.805256027e-13)
(0.02024954129 -0.04437256569 -2.362554596e-13)
(0.02066835262 -0.04156734165 -2.055022819e-13)
(0.01261088333 -0.02070224402 -1.026123631e-13)
(0.01586863671 -0.02775729421 -1.374456104e-13)
(0.01704679902 -0.03090065371 -1.476041511e-13)
(0.0128803291 -0.02091026448 -1.116606807e-13)
(0.009596114736 -0.01483475228 -7.360778653e-14)
(0.001808083463 -0.002375897039 -1.182387521e-14)
(0.003958255239 -0.005476011463 -2.722821968e-14)
(0.00486329127 -0.006969418402 -3.344546862e-14)
(0.00238790926 -0.003065996913 -1.643130076e-14)
(-0.005821492891 -0.009045209246 -3.94961841e-14)
(-0.00305124213 -0.004509528065 -1.967870311e-14)
(-0.01601360602 -0.02943859735 -1.289801599e-13)
(-0.01257487112 -0.02178141623 -9.531264666e-14)
(-0.01304140074 -0.02328829549 -9.880984919e-14)
(-0.01101685795 -0.01789941949 -8.357203818e-14)
(-0.01916095277 -0.03753811749 -1.646738301e-13)
(-0.0250220733 -0.06119095306 -2.690347944e-13)
(-0.02380042513 -0.05373939289 -2.361721929e-13)
(-0.0243315011 -0.05659436091 -2.410849298e-13)
(-0.02201866814 -0.04670059062 -2.190470028e-13)
(-0.025420033 -0.06780609704 -2.982059044e-13)
(-0.02193221364 -0.08038831733 -3.532729664e-13)
(-0.02379747092 -0.07757000925 -3.410882687e-13)
(-0.02409911173 -0.08081098124 -3.443079155e-13)
(-0.02302689477 -0.0707302879 -3.320121955e-13)
(-0.01953308638 -0.08172810699 -3.588518371e-13)
(-0.0127397662 -0.08326399963 0)
(-0.01386108081 -0.07669194561 0)
(-0.01121536575 -0.07935651497 0)
(-0.009830962397 -0.07937120491 0)
(-0.009773979093 -0.07806355066 0)
(-0.0111536565 -0.07803947766 0)
(-0.005479433 -0.07803125662 0)
(-0.006909226232 -0.07802573762 0)
(-0.007031415564 -0.07937487878 0)
(-0.005290643156 -0.07415558961 0)
(-0.006701323223 -0.07413016526 0)
(-0.006749942436 -0.07541727909 0)
(-0.005364649632 -0.07544974846 0)
(0.001686008522 -0.07948599016 0)
(0.001663552008 -0.07818983555 0)
(0.0002025207929 -0.07814229983 0)
(0.005959067262 -0.0783868666 0)
(0.004536072391 -0.07831494901 0)
(0.005962901184 -0.07448858962 0)
(0.00455844655 -0.07443584629 0)
(0.004535645838 -0.07572235411 0)
(0.005951123979 -0.07578059331 0)
(0.01295318381 -0.08009105337 0)
(0.01298110611 -0.07878918674 0)
(0.01159732701 -0.07871970792 0)
(0.01706665275 -0.08023457864 0)
(0.01712946055 -0.07764295768 0)
(0.01435591886 -0.07884326206 0)
(0.0143243982 -0.08013896093 0)
(0.01715242929 -0.0749087111 -3.584910147e-13)
(0.02424336136 -0.07992527311 -3.453071162e-13)
(0.02593698818 -0.06470650117 -2.793043574e-13)
(0.02616844197 -0.0710480864 -3.06671355e-13)
(0.02659904487 -0.07462423545 -3.123334924e-13)
(0.02481898714 -0.06296264612 -2.901012763e-13)
(0.02487937372 -0.05739970294 -2.478295347e-13)
(0.01743722522 -0.03277348246 -1.418865025e-13)
(0.02050815637 -0.0410962869 -1.777189507e-13)
(0.0211785567 -0.04380833015 -1.836863994e-13)
(0.01843106175 -0.03458131893 -1.595945598e-13)
(0.01401734195 -0.02479908117 -1.074973444e-13)
(0.004061251975 -0.006101804624 -2.653433029e-14)
(0.007067646935 -0.01118229876 -4.86000129e-14)
(0.007530931719 -0.01229203775 -5.176414852e-14)
(0.00570757649 -0.008462753046 -3.924638392e-14)
(-0.006908840076 -0.01207374507 -4.682365606e-14)
(-0.003872955318 -0.006439520486 -2.495226248e-14)
(-0.0175612439 -0.03626296443 -1.410815909e-13)
(-0.01402914532 -0.02731089066 -1.061373212e-13)
(-0.01431088686 -0.0286263874 -1.082189893e-13)
(-0.01328063773 -0.02442641086 -1.005584505e-13)
(-0.02074168745 -0.04561223704 -1.776634395e-13)
(-0.02637485721 -0.0721863139 -2.816913369e-13)
(-0.02527824318 -0.06395137899 -2.494393581e-13)
(-0.02552619431 -0.06630058045 -2.515487818e-13)
(-0.02462155813 -0.05894731369 -2.436384428e-13)
(-0.02660979034 -0.0793380007 -3.09613446e-13)
(-0.02458418889 -0.08927551727 -3.481659405e-13)
(-0.0247088129 -0.09199010577 -3.489430966e-13)
(-0.02427927095 -0.08367951365 -3.458622277e-13)
(-0.02239452419 -0.08898341887 -3.568534357e-13)
(-0.01979681458 -0.08962336442 0)
(-0.01706073184 -0.08970251546 0)
(-0.01702064616 -0.08839758484 0)
(-0.01698046246 -0.08709338986 0)
(-0.01689679336 -0.08448104702 0)
(-0.01693995154 -0.08579029773 0)
(-0.01151177587 -0.08725154544 0)
(-0.01014516582 -0.08728878682 0)
(-0.008778279197 -0.08732281747 0)
(-0.008756097268 -0.08666611635 0)
(-0.008731517594 -0.08600356564 0)
(-0.008684042931 -0.08468656753 0)
(0.01269511702 -0.09055117634 0)
(0.01273079315 -0.08924509235 0)
(0.01679460195 -0.09068239649 0)
(0.01683241475 -0.08938115717 0)
(0.01546447671 -0.08933414074 0)
(0.01542779837 -0.09063760019 0)
(0.01693964875 -0.08546805762 0)
(0.01557077672 -0.08542014473 0)
(0.01553748562 -0.08673080278 0)
(0.01690590224 -0.08677788162 0)
(0.02456106273 -0.09218866101 -3.539113447e-13)
(0.02745234828 -0.07763162685 -2.977340596e-13)
(0.02730053886 -0.08412937916 -3.226585665e-13)
(0.02732530845 -0.08674762371 -3.23741034e-13)
(0.02683040635 -0.07772313255 -3.157196726e-13)
(0.02673137704 -0.06982554845 -2.678690603e-13)
(0.01981976908 -0.04206212762 -1.617039835e-13)
(0.02281090914 -0.05165442635 -1.983968545e-13)
(0.02293250027 -0.05343177551 -1.99673611e-13)
(0.02158317199 -0.04604677938 -1.87377891e-13)
(0.01636630565 -0.03267117187 -1.257327575e-13)
(0.005628328699 -0.00952799924 -3.680389327e-14)
(0.009004101062 -0.01605769207 -6.195044477e-14)
(0.009112903886 -0.01671008561 -6.272760089e-14)
(0.008197930958 -0.01379476293 -5.637157408e-14)
(-0.007598710827 -0.01475202461 -5.145883719e-14)
(-0.004423239754 -0.008172477776 -2.847722058e-14)
(-0.01843484656 -0.04222113457 -1.47742929e-13)
(-0.01487861331 -0.03214657781 -1.123823257e-13)
(-0.01505072574 -0.03331958685 -1.136313266e-13)
(-0.01452413019 -0.02983027421 -1.098010571e-13)
(-0.02160760675 -0.05266039488 -1.844358e-13)
(-0.02707681249 -0.0818688224 -2.872146965e-13)
(-0.02605292706 -0.07290134333 -2.55656607e-13)
(-0.02621479735 -0.07509607375 -2.569056079e-13)
(-0.025720564 -0.06853410046 -2.531308496e-13)
(-0.02722792301 -0.08956424114 -3.142208715e-13)
(-0.02502088058 -0.09993939474 -3.504141421e-13)
(-0.0251200691 -0.1025797609 -3.508304758e-13)
(-0.02481837633 -0.0946562387 -3.495259637e-13)
(-0.02275667134 -0.09957104678 -3.579081476e-13)
(-0.02009628143 -0.09998418985 0)
(-0.017361531 -0.1000657092 0)
(-0.01732457732 -0.09877308016 0)
(-0.01728756003 -0.09748033297 0)
(-0.01721288094 -0.09489137466 0)
(-0.01725033031 -0.09618651114 0)
(-0.0118241104 -0.09764288959 0)
(-0.01045982171 -0.09768343644 0)
(-0.009096256648 -0.09772408168 0)
(-0.009077119153 -0.09707676606 0)
(-0.009057988864 -0.09642969045 0)
(-0.009019588463 -0.09513488281 0)
(-0.009038787763 -0.09578225663 0)
(0.01238495777 -0.1009740795 0)
(0.01242558384 -0.09967315284 0)
(0.01106179318 -0.09963202038 0)
(0.01647856424 -0.1010970635 0)
(0.01651977412 -0.09979669492 0)
(0.01515472341 -0.09975552462 0)
(0.01511368814 -0.1010560786 0)
(0.01664038452 -0.09589213531 0)
(0.01527475721 -0.09585016696 0)
(0.01523524416 -0.09715202787 0)
(0.01660070047 -0.0971936908 0)
(0.02431624117 -0.1027539865 -3.550215677e-13)
(0.02752022125 -0.08719788897 -3.010092176e-13)
(0.02725690848 -0.09425094065 -3.253786129e-13)
(0.02709027276 -0.09625771602 -3.242406343e-13)
(0.02738120289 -0.08949406674 -3.252120795e-13)
(0.02690789926 -0.07864842643 -2.715605518e-13)
(0.02023062732 -0.04788884417 -1.656730308e-13)
(0.02316580284 -0.05856652156 -2.02421413e-13)
(0.02291502046 -0.05944773781 -2.004785227e-13)
(0.02318793433 -0.05555567479 -2.021438572e-13)
(0.01680656124 -0.03739317488 -1.294797602e-13)
(0.005974354279 -0.01125475815 -3.910760604e-14)
(0.009411128513 -0.01868442143 -6.483702464e-14)
(0.00918948309 -0.01870786544 -6.333822355e-14)
(0.009384706788 -0.01768303211 -6.461498003e-14)
(-0.008267795797 -0.01764671047 -5.595524044e-14)
(-0.00496697136 -0.01009296493 -3.197442311e-14)
(-0.01926638865 -0.0484289071 -1.539879335e-13)
(-0.01568974511 -0.03723093135 -1.182665077e-13)
(-0.01590134827 -0.03857381174 -1.198208199e-13)
(-0.01525950421 -0.03459238835 -1.151301277e-13)
(-0.02243052217 -0.05994819964 -1.907918268e-13)
(-0.02774422971 -0.09170270647 -2.922384557e-13)
(-0.02678913966 -0.08204114337 -2.614020111e-13)
(-0.02697850958 -0.08438760022 -2.628453011e-13)
(-0.02640364298 -0.07738424099 -2.583766534e-13)
(-0.0278156333 -0.0998959871 -3.183564523e-13)
(-0.02543398747 -0.1106021079 -3.522460101e-13)
(-0.02553646879 -0.1132792137 -3.526900993e-13)
(-0.02522495825 -0.1052481412 -3.513023206e-13)
(-0.02308560673 -0.1100530461 -3.585187702e-13)
(-0.02038796783 -0.1103159113 0)
(-0.01765411383 -0.1103972836 0)
(-0.0176177218 -0.1091053584 0)
(-0.01758127877 -0.107813735 0)
(-0.01750831595 -0.105231932 0)
(-0.01754484835 -0.1065225317 0)
(-0.01212225491 -0.1079756783 0)
(-0.01075982089 -0.1080159893 0)
(-0.01074121206 -0.1073702793 0)
(-0.01006029506 -0.1073904258 0)
(-0.01007902209 -0.1080360722 0)
(-0.0100040954 -0.1054548686 0)
(-0.0100227918 -0.1060994949 0)
(0.01204442946 -0.1113643308 0)
(0.01208765529 -0.1100688273 0)
(0.01613416712 -0.1114821539 0)
(0.01617768755 -0.1101868394 0)
(0.01481371743 -0.1101476834 0)
(0.0147702588 -0.1114429397 0)
(0.01630894382 -0.1062957518 0)
(0.0149446353 -0.106255865 0)
(0.01490148084 -0.1075529922 0)
(0.01626567295 -0.1075927554 0)
(0.02378932249 -0.1121124695 -3.522460101e-13)
(0.02653357901 -0.09324560712 -2.927935672e-13)
(0.02641941561 -0.1014907793 -3.186895192e-13)
(0.02610795545 -0.1028155254 -3.157196726e-13)
(0.02693964197 -0.09829993686 -3.232691892e-13)
(0.02578743487 -0.08347417794 -2.621514117e-13)
(0.01888541995 -0.04933582351 -1.552369344e-13)
(0.02185647654 -0.061039594 -1.919020498e-13)
(0.02134296877 -0.0610158959 -1.875999356e-13)
(0.02275961877 -0.06054992423 -1.993682996e-13)
(0.01547297345 -0.03796134536 -1.195432642e-13)
(0.005025825428 -0.01042532078 -3.291811268e-14)
(0.008274173045 -0.01809431452 -5.709321904e-14)
(0.007836595985 -0.01753078179 -5.409561687e-14)
(0.009092797977 -0.01896956274 -6.269984532e-14)
(-0.009124494778 -0.02122804332 -6.170064459e-14)
(-0.005681054798 -0.01258808065 -3.655409309e-14)
(-0.02027110713 -0.0554372649 -1.615374501e-13)
(-0.01668857142 -0.04311647145 -1.255384685e-13)
(-0.0168365853 -0.04438356677 -1.265654248e-13)
(-0.01612364268 -0.03996378472 -1.214306433e-13)
(-0.02340470266 -0.06799821799 -1.982858322e-13)
(-0.02847513343 -0.1019992019 -2.977895708e-13)
(-0.02761941952 -0.09176822433 -2.678690603e-13)
(-0.02779384033 -0.09413879568 -2.691458167e-13)
(-0.02717508441 -0.08677437522 -2.643718577e-13)
(-0.02843822287 -0.1105525131 -3.227695888e-13)
(-0.02583974396 -0.1213215062 -3.539668558e-13)
(-0.02594890711 -0.1240471676 -3.544942118e-13)
(-0.02563954788 -0.1159643807 -3.531619441e-13)
(-0.02340123152 -0.1205122903 -3.589351039e-13)
(-0.02067536775 -0.1206508844 0)
(-0.01794133554 -0.1207323221 0)
(-0.01790579255 -0.1194406717 0)
(-0.01787012055 -0.1181487249 0)
(-0.01779848553 -0.1155651403 0)
(-0.01783433034 -0.1168568417 0)
(-0.01241546966 -0.1183102966 0)
(-0.01105543213 -0.1183504155 0)
(-0.01103717611 -0.1177044547 0)
(-0.01035775557 -0.1177244362 0)
(-0.01037607159 -0.1183703951 0)
(-0.0103024637 -0.11578711 0)
(-0.01032089252 -0.1164328254 0)
(0.01167912116 -0.121717804 0)
(0.01172661851 -0.1204240503 0)
(0.01576792832 -0.1218306145 0)
(0.01581454239 -0.1205382756 0)
(0.01445107626 -0.1205003359 0)
(0.01440359692 -0.1217934896 0)
(0.01595414172 -0.1166573479 0)
(0.01459063721 -0.1166186864 0)
(0.01454476172 -0.1179124288 0)
(0.01590845886 -0.1179506757 0)
(0.02294467662 -0.1196054228 -3.44668738e-13)
(0.02476325115 -0.09564414846 -2.755018436e-13)
(0.0249502599 -0.105536804 -3.039790641e-13)
(0.02436231796 -0.1054137328 -2.97512015e-13)
(0.02566601805 -0.1035627083 -3.111677582e-13)
(0.02374731074 -0.08434531161 -2.430278201e-13)
(0.01642167483 -0.04690903708 -1.354194534e-13)
(0.01945237971 -0.05946025666 -1.715017017e-13)
(0.01880350017 -0.05871427532 -1.659505866e-13)
(0.02086039583 -0.06101768003 -1.835753771e-13)
(0.01305426508 -0.03499538275 -1.01113562e-13)
(0.003434354115 -0.007775861852 -2.250977182e-14)
(0.006289707961 -0.01501594022 -4.343747584e-14)
(0.005881675378 -0.0143369609 -4.066191828e-14)
(0.007512217251 -0.01718281253 -5.187517083e-14)
(-0.01015994443 -0.02557574754 -6.861178292e-14)
(-0.006556275685 -0.01572645197 -4.216071936e-14)
(-0.02147102453 -0.06340589381 -1.70502501e-13)
(-0.01788341737 -0.04993030536 -1.34142697e-13)
(-0.01773771333 -0.05045724724 -1.330047184e-13)
(-0.0171093926 -0.04599648845 -1.285360707e-13)
(-0.02456663644 -0.07700432081 -2.07195372e-13)
(-0.02933415031 -0.1130200865 -3.044509089e-13)
(-0.02860352059 -0.10233307 -2.756128659e-13)
(-0.02878081915 -0.1047870532 -2.768618668e-13)
(-0.02802346805 -0.09671001132 -2.709221736e-13)
(-0.02915826871 -0.1217850507 -3.280431482e-13)
(-0.02627066264 -0.1322187921 -3.559097461e-13)
(-0.02637555658 -0.1349354626 -3.563260798e-13)
(-0.02605448749 -0.126760864 -3.549660565e-13)
(-0.02369997388 -0.1309001205 0)
(-0.02096005603 -0.1309815548 0)
(-0.02092428024 -0.1296901516 0)
(-0.01822355832 -0.1310628863 0)
(-0.01818825894 -0.1297713487 0)
(-0.01955572956 -0.1297307664 0)
(-0.01959126715 -0.1310222367 0)
(-0.01808267703 -0.125897267 0)
(-0.0195203882 -0.1284398306 0)
(-0.01815310119 -0.1284805275 0)
(-0.01811791821 -0.1271888663 0)
(-0.01269975414 -0.1286415196 0)
(-0.01134229852 -0.1286816211 0)
(-0.01132464072 -0.1280355822 0)
(-0.01064707485 -0.1280553278 0)
(-0.01066479445 -0.1287014248 0)
(-0.01059345765 -0.1261177712 0)
(-0.01061133924 -0.1267632628 0)
(0.01127996493 -0.1320464785 0)
(0.0113326944 -0.1307564853 0)
(0.01537000457 -0.132158245 0)
(0.01547371082 -0.1295786263 0)
(0.01274640232 -0.1295032761 0)
(0.01269443487 -0.1307938927 0)
(0.01264183081 -0.1320837096 0)
(0.0155743 -0.126996812 0)
(0.01284735512 -0.1269213526 0)
(0.0127966843 -0.1282127889 0)
(0.0216860188 -0.1241078866 -3.303191054e-13)
(0.02213748436 -0.0931815363 -2.479960681e-13)
(0.02277838407 -0.1052296102 -2.800260024e-13)
(0.02225040325 -0.1049665841 -2.741140648e-13)
(0.02397979863 -0.106112588 -2.935429677e-13)
(0.02096457642 -0.08103229805 -2.157440893e-13)
(0.01327458399 -0.04113278639 -1.097177904e-13)
(0.01630600447 -0.05410952731 -1.442179709e-13)
(0.01530960994 -0.0517904987 -1.354749646e-13)
(0.01786838674 -0.05695983263 -1.577904474e-13)
(0.01005260047 -0.02921765508 -7.799316748e-14)
(0.001768194453 -0.004338449443 -1.160183061e-14)
(0.00402908109 -0.0104236474 -2.783884234e-14)
(0.003332701153 -0.00878726462 -2.303712776e-14)
(0.00506049391 -0.0125865697 -3.497202528e-14)
(-0.0114557789 -0.03107380411 -7.735478924e-14)
(-0.007674509327 -0.01984547831 -4.937716902e-14)
(-0.02291266431 -0.07277153526 -1.816047313e-13)
(-0.01933777781 -0.05810801703 -1.449118603e-13)
(-0.01951234163 -0.05985243713 -1.466604616e-13)
(-0.01849574245 -0.05355120759 -1.385558335e-13)
(-0.0259421003 -0.08738806674 -2.182143355e-13)
(-0.03027225312 -0.1250383535 -3.125000259e-13)
(-0.02971821723 -0.114075135 -2.850775171e-13)
(-0.02975546425 -0.1166267339 -2.863542736e-13)
(-0.02896957405 -0.1072945521 -2.781941344e-13)
(-0.02990180488 -0.1337841843 -3.343436639e-13)
(-0.02660992383 -0.1432736981 -3.577971253e-13)
(-0.02650182005 -0.1458772775 -3.579359031e-13)
(-0.02648302357 -0.1376638618 -3.567424134e-13)
(-0.02399770034 -0.1412389875 0)
(-0.02125407352 -0.1413129059 0)
(-0.0212160434 -0.1400204294 0)
(-0.01851384484 -0.1413939891 0)
(-0.01847612375 -0.1401018036 0)
(-0.01984563265 -0.1400611 0)
(-0.01988353376 -0.1413532801 0)
(-0.01836613409 -0.1362289352 0)
(-0.01973486296 -0.136188255 0)
(-0.01977140798 -0.1374792748 0)
(-0.01840237909 -0.137519964 0)
(-0.01297850217 -0.1389723684 0)
(-0.01229925623 -0.1389921644 0)
(-0.01228162006 -0.1383468456 0)
(-0.01296074419 -0.1383269932 0)
(-0.01092737935 -0.1383860097 0)
(-0.01094501372 -0.1390312685 0)
(-0.01087466939 -0.1364486661 0)
(-0.01089204393 -0.1370932721 0)
(-0.0006046028708 -0.1394767805 0)
(-0.0005676832106 -0.1388358844 0)
(0.001406705507 -0.13951952 0)
(0.001443040747 -0.1388784862 0)
(0.0007706523592 -0.1388635205 0)
(0.0007350401409 -0.1395048762 0)
(0.0008404949712 -0.1375796264 0)
(0.001511805116 -0.1375944997 0)
(0.01204940747 -0.1449465531 0)
(0.01870089363 -0.1328176476 -3.285982597e-13)
(0.01694851313 -0.1396555142 -3.456401831e-13)
(0.01668390644 -0.1405722871 -3.418654249e-13)
(0.01744703564 -0.1371342523 -3.518574321e-13)
(0.01988578974 -0.1241000401 -3.069766663e-13)
(0.01912923407 -0.08710779469 -2.154942891e-13)
(0.02014523715 -0.1008582264 -2.494671136e-13)
(0.01926026362 -0.09825082199 -2.388089726e-13)
(0.02153286748 -0.1036595995 -2.657596365e-13)
(0.01741630767 -0.07269671447 -1.799116411e-13)
(0.009425732861 -0.03145579777 -7.799316748e-14)
(0.01237563815 -0.0442484788 -1.096345237e-13)
(0.01157176007 -0.04212142104 -1.025568519e-13)
(0.01451016482 -0.05002668068 -1.284528039e-13)
(0.0064860955 -0.0202974018 -5.034861417e-14)
(0.0005020662641 -0.00132717859 -3.302913498e-15)
(0.001940900821 -0.005407659968 -1.34336986e-14)
(0.001375722283 -0.003901372944 -9.520162436e-15)
(0.002933896081 -0.007882315007 -2.028932578e-14)
(-0.01008711744 -0.02941155592 -6.833422717e-14)
(-0.006564170962 -0.01824643872 -4.235500839e-14)
(-0.02109770258 -0.07197870884 -1.6756041e-13)
(-0.01760622393 -0.05684932652 -1.322553178e-13)
(-0.01645391842 -0.05404421221 -1.236233338e-13)
(-0.01915155453 -0.05976081809 -1.43884904e-13)
(-0.02411855168 -0.08723401804 -2.031985691e-13)
(-0.02888871039 -0.1278643235 -2.980948821e-13)
(-0.0281120882 -0.1157225866 -2.697564394e-13)
(-0.02702429811 -0.1131085432 -2.592648318e-13)
(-0.02947152727 -0.1174074811 -2.832734047e-13)
(-0.02880918218 -0.1380001457 -3.21714877e-13)
(-0.02626595319 -0.1510824319 -3.520517211e-13)
(-0.02589774922 -0.1511936893 -3.464728504e-13)
(-0.02651829868 -0.1481329468 -3.57158747e-13)
(-0.02399642096 -0.1515917097 -3.591016373e-13)
(-0.02124733842 -0.1516806139 0)
(-0.01849724537 -0.1517631945 0)
(-0.01845845324 -0.1504713414 0)
(-0.0184196611 -0.1491794883 0)
(-0.01979473763 -0.1491381971 0)
(-0.01834209485 -0.1465963821 0)
(-0.01971717138 -0.1465550909 0)
(-0.01975596351 -0.147846944 0)
(-0.01838088699 -0.1478882352 0)
(-0.01291941501 -0.1493446512 0)
(-0.01154439848 -0.1493859406 0)
(-0.01152501142 -0.1487403141 0)
(-0.01016932196 -0.1494272318 0)
(-0.0101499349 -0.1487816053 0)
(-0.01083744316 -0.1487609606 0)
(-0.01085683022 -0.1494065871 0)
(-0.01077926397 -0.1468234809 0)
(-0.01079865103 -0.1474691075 0)
(-0.01011114276 -0.1474897522 0)
(-0.0006215085526 -0.1522999722 0)
(-0.0005827164184 -0.1510081191 0)
(0.003503661021 -0.152423844 0)
(0.003542453156 -0.1511319909 0)
(0.002167394631 -0.1510907002 0)
(0.002128602497 -0.1523825533 0)
(0.002244960882 -0.148507594 0)
(0.003620019406 -0.1485488847 0)
(0.01150753519 -0.1526367876 -3.530509218e-13)
(0.01693550021 -0.130307972 -3.011202399e-13)
(0.0156506127 -0.1402359668 -3.24129612e-13)
(0.01519628923 -0.1386298135 -3.151923167e-13)
(0.01631664551 -0.140635036 -3.362032874e-13)
(0.01756149547 -0.1182711753 -2.732536419e-13)
(0.01520870459 -0.07428480091 -1.717237463e-13)
(0.01667556233 -0.08970062528 -2.073063943e-13)
(0.01585238054 -0.08666125268 -1.970368313e-13)
(0.01856219036 -0.09648834218 -2.305378111e-13)
(0.01345281228 -0.06019179129 -1.391942117e-13)
(0.006028520298 -0.02155124113 -4.990452496e-14)
(0.008616602186 -0.03300597321 -7.641109967e-14)
(0.007374213261 -0.02868439025 -6.530886942e-14)
(0.01041088898 -0.03855157749 -9.225953335e-14)
(0.003610665504 -0.01210020127 -2.803313137e-14)
(0 0 0)
(0.0003828207702 -0.001143220865 -2.636779683e-15)
(0.0001787021134 -0.0005426753523 -1.249000903e-15)
(0.001037478745 -0.002994149424 -7.188694084e-15)
(-0.005692126725 -0.01775546288 -3.863576126e-14)
(-0.00312094243 -0.00927502224 -2.017830347e-14)
(-0.01492859906 -0.05454941182 -1.188771304e-13)
(-0.01182282732 -0.0408776109 -8.903988657e-14)
(-0.01003025806 -0.03527652252 -7.563394355e-14)
(-0.01508128632 -0.05039015919 -1.133815264e-13)
(-0.01779048675 -0.06891855448 -1.502686864e-13)
(-0.02344000526 -0.1109595267 -2.421673972e-13)
(-0.02215472366 -0.0976144659 -2.129962873e-13)
(-0.02005852622 -0.08995713329 -1.931788063e-13)
(-0.02566179966 -0.1092305397 -2.462474669e-13)
(-0.02405327062 -0.1230870643 -2.68673972e-13)
(-0.02202138615 -0.1497032827 -3.266276138e-13)
(-0.0232917305 -0.1425924386 -3.111955138e-13)
(-0.0218550471 -0.1361263014 -2.924327447e-13)
(-0.0253015419 -0.1499807877 -3.38062911e-13)
(-0.02027289257 -0.1550773476 -3.382572e-13)
(-0.01319856256 -0.1628446873 -3.547440119e-13)
(-0.01576177688 -0.161364458 -3.516908986e-13)
(-0.01523578691 -0.1583545054 -3.397560011e-13)
(-0.01597988711 -0.1595962936 0)
(-0.0105349806 -0.1636215644 -3.56242813e-13)
(-0.002334765257 -0.1632793011 -3.549660565e-13)
(-0.005080374171 -0.1638309771 -3.563538353e-13)
(-0.00497299185 -0.1620986114 -3.471389842e-13)
(-0.004901828646 -0.1573429128 0)
(-0.004979412914 -0.159926619 0)
(0.0003959972686 -0.1620493984 -3.521349878e-13)
(0.008029510161 -0.1512351526 -3.281819261e-13)
(0.00564597771 -0.1563250191 -3.393674231e-13)
(0.005402726477 -0.1515469065 -3.239630786e-13)
(0.005991294519 -0.1591253053 -3.565758799e-13)
(0.01013367294 -0.1443835149 -3.131939152e-13)
(0.0138354171 -0.1132061334 -2.454147996e-13)
(0.01311967605 -0.1252484044 -2.715327962e-13)
(0.01218046118 -0.1176857595 -2.51271226e-13)
(0.01462713489 -0.1356758817 -3.035349749e-13)
(0.01396073577 -0.09987406789 -2.165212454e-13)
(0.01088915643 -0.0564629573 -1.224853552e-13)
(0.01243521152 -0.07100305902 -1.539601779e-13)
(0.01104153322 -0.06386479068 -1.363908986e-13)
(0.01486161579 -0.08249981473 -1.845745778e-13)
(0.008964778221 -0.0425778484 -9.239831122e-14)
(0.002669092191 -0.01014602131 -2.203792704e-14)
(0.004651057715 -0.01892978358 -4.110600749e-14)
(0.00366134484 -0.01511655876 -3.233524559e-14)
(0.006544202891 -0.02585423685 -5.792588631e-14)
(0.001100794313 -0.003928015326 -8.520961714e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(1.712931302e-05 -5.28644801e-05 -1.110223025e-16)
(-0.001195908141 -0.003979121498 -8.132383655e-15)
(-0.0002282643105 -0.0007225153529 -1.471045508e-15)
(-0.006860601608 -0.02685689962 -5.498379529e-14)
(-0.004701358671 -0.01739028507 -3.561040351e-14)
(-0.003164253187 -0.011897212 -2.398081733e-14)
(-0.008202621107 -0.02934282795 -6.19226892e-14)
(-0.009053289306 -0.03762130922 -7.707723348e-14)
(-0.01440171123 -0.07334259284 -1.503797087e-13)
(-0.0129407165 -0.06129192309 -1.256494908e-13)
(-0.01050390347 -0.05067587137 -1.023348073e-13)
(-0.01778587647 -0.08121280299 -1.716959908e-13)
(-0.01543452133 -0.08501831628 -1.74360526e-13)
(-0.01568845316 -0.1148437864 -2.355338147e-13)
(-0.01607790038 -0.1059995786 -2.174094238e-13)
(-0.0138334383 -0.09308672931 -1.880717804e-13)
(-0.02014688454 -0.1277803957 -2.702282842e-13)
(-0.01486283634 -0.1223956557 -2.509659147e-13)
(-0.01030486673 -0.136837772 -2.803590693e-13)
(-0.01210966635 -0.1333960635 -2.733924198e-13)
(-0.01068526176 -0.1205055892 -2.433331314e-13)
(-0.01443169852 -0.1526025837 -3.223810108e-13)
(-0.008300690362 -0.1389380703 -2.845779168e-13)
(-0.001721613887 -0.1373467987 -2.809974475e-13)
(-0.003947096239 -0.1391943871 -2.848832281e-13)
(-0.003439754279 -0.1264869775 -2.551014955e-13)
(-0.004738129229 -0.1573074783 -3.317623953e-13)
(0.0004527458208 -0.1341498451 -2.743361094e-13)
(0.006003849879 -0.1162196108 -2.374489494e-13)
(0.004383751086 -0.1235901688 -2.525757381e-13)
(0.003949420462 -0.1104332836 -2.224609386e-13)
(0.005111338923 -0.1444162587 -3.040623309e-13)
(0.007305206753 -0.107519931 -2.196298698e-13)
(0.008798409832 -0.07502548429 -1.53238533e-13)
(0.008735603396 -0.08669558864 -1.770528169e-13)
(0.007447333236 -0.07438638592 -1.497413304e-13)
(0.01112598351 -0.1086211658 -2.284561429e-13)
(0.008421839728 -0.06293238172 -1.285360707e-13)
(0.005156650179 -0.02810927306 -5.745404152e-14)
(0.006517986245 -0.039042931 -7.976952432e-14)
(0.005037199096 -0.03050171168 -6.142308884e-14)
(0.009565187315 -0.05600574043 -1.178224185e-13)
(0.003685301284 -0.01843810975 -3.769207169e-14)
(0.0002407425647 -0.0009695605118 -1.970645869e-15)
(0.001050390183 -0.00452104343 -9.24260668e-15)
(0.0004629744966 -0.002020271595 -4.080069615e-15)
(0.002699317594 -0.011302241 -2.381428388e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0008749418199 -0.003654782036 -7.049916206e-15)
(-0.0002224698963 -0.0008759834133 -1.693090113e-15)
(0 0 0)
(-0.001862223848 -0.00711413724 -1.412758799e-14)
(-0.001817074635 -0.008077404969 -1.55986335e-14)
(-0.005109512266 -0.02805420019 -5.423439475e-14)
(-0.004046986297 -0.02061072557 -3.982925101e-14)
(-0.002425811759 -0.0125670174 -2.395306176e-14)
(-0.008158546106 -0.04008953579 -7.976952432e-14)
(-0.006017837703 -0.03583691611 -6.930567231e-14)
(-0.007286785301 -0.05821331956 -1.125766147e-13)
(-0.007138755244 -0.05118713367 -9.897638265e-14)
(-0.005171832114 -0.03786994109 -7.222000775e-14)
(-0.0115443929 -0.07932945335 -1.579292253e-13)
(-0.007148931973 -0.06450760293 -1.247613124e-13)
(-0.005212349137 -0.07743323502 -1.496858193e-13)
(-0.006079997451 -0.07423662612 -1.435240815e-13)
(-0.004638941013 -0.05824425974 -1.11050058e-13)
(-0.009163529699 -0.1059860857 -2.108868635e-13)
(-0.004180396444 -0.07941450066 -1.534883332e-13)
(-0.0006285444788 -0.07778329219 -1.502686864e-13)
(-0.001832452251 -0.079592422 -1.537936445e-13)
(-0.001360066057 -0.06307972257 -1.20209398e-13)
(-0.002898028676 -0.1119391062 -2.225164497e-13)
(0.0005193184045 -0.07474745584 -1.443567488e-13)
(0.003101870045 -0.05908582983 -1.140754158e-13)
(0.002431455252 -0.06528423729 -1.260658244e-13)
(0.001897163145 -0.05020128264 -9.5617958e-14)
(0.003473088665 -0.09598506993 -1.905975378e-13)
(0.003534519217 -0.05212534013 -1.006139616e-13)
(0.003302408399 -0.02898798493 -5.598299602e-14)
(0.003626961551 -0.03680737281 -7.105427358e-14)
(0.002511189384 -0.02562410131 -4.879430193e-14)
(0.006139907858 -0.06167257219 -1.224020885e-13)
(0.00277617649 -0.02147239899 -4.146682997e-14)
(0.0007161167325 -0.004091288928 -7.91033905e-15)
(0.001389210446 -0.008689457735 -1.679212325e-14)
(0.0006142571644 -0.003886468159 -7.410738689e-15)
(0.003653112541 -0.022358472 -4.438116541e-14)
(0.0002101853966 -0.001105811912 -2.137179322e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(9.933366949e-05 -0.0004394981443 -8.604228441e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001559607396 -0.0009148468722 -1.665334537e-15)
(-1.119634452e-05 -6.070741183e-05 -1.110223025e-16)
(0 0 0)
(-0.001180117357 -0.006213826162 -1.168509733e-14)
(-0.0004067591152 -0.002597642041 -4.74620343e-15)
(-0.001185322257 -0.01029711157 -1.884603584e-14)
(-0.0009687523293 -0.007514197619 -1.373900993e-14)
(-0.0002841214122 -0.00223992708 -4.05231404e-15)
(-0.003452524055 -0.02579977124 -4.851674618e-14)
(-0.001319084303 -0.01302227609 -2.384203945e-14)
(-0.001147184402 -0.01922070763 -3.516631431e-14)
(-0.001296526148 -0.01761810948 -3.225197887e-14)
(-0.0006154479254 -0.008552428615 -1.545985562e-14)
(-0.00333548827 -0.04305104307 -8.096301407e-14)
(-0.0009253891462 -0.02023363137 -3.702593787e-14)
(-6.971349699e-05 -0.01937325056 -3.544387006e-14)
(-0.0003593575475 -0.02031205495 -3.716471575e-14)
(-0.0001745116878 -0.01042609847 -1.881828027e-14)
(-0.0009521713979 -0.04725216114 -8.881784197e-14)
(0.0001879725137 -0.01783632917 -3.264055692e-14)
(0.0005645625727 -0.01062355866 -1.945665851e-14)
(0.000518817075 -0.01333082667 -2.439715097e-14)
(0.0002221484363 -0.005699757375 -1.029731855e-14)
(0.001382804928 -0.03611963228 -6.786238238e-14)
(0.0005279609219 -0.007836341097 -1.434963259e-14)
(0.0001179212645 -0.001072486395 -1.970645869e-15)
(0.0002717444551 -0.002836744074 -5.19029264e-15)
(2.054228554e-05 -0.0002168123584 -3.885780586e-16)
(0.00155161183 -0.01593202015 -2.994826609e-14)
(1.364272725e-05 -0.0001099801167 -1.942890293e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0.0001397948253 -0.0008952922435 -1.693090113e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-5.830481191e-06 -4.662598725e-05 -8.326672685e-17)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001820721907 -0.002579203692 -4.607425552e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-5.804498124e-05 -0.003623020479 -6.467049118e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(4.54434469e-05 -0.001170890362 -2.081668171e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.00900030754 -0.09448679077 0)
(-0.008980817781 -0.09383774409 0)
(-0.008941694834 -0.0925388743 0)
(-0.01030622714 -0.09249844024 0)
(-0.008961398834 -0.09318905562 0)
(-0.01167130488 -0.09245816997 0)
(0.01125569844 -0.0931166003 0)
(0.009891148825 -0.0930727425 0)
(0.009872780381 -0.0937264472 0)
(0.009190771983 -0.09370464642 0)
(0.009209080424 -0.09305093991 0)
(0.009134077385 -0.0956586862 0)
(0.00915300261 -0.09500643957 0)
(0.008721730778 -0.08516262617 0)
(0.008709744991 -0.08582577606 0)
(0.008696190268 -0.08648517454 0)
(0.00934932266 -0.0878246022 0)
(0.01003216569 -0.08784660822 0)
(0.008679882629 -0.08713825048 0)
(0.01139932334 -0.08789561311 0)
(-0.009304485606 -0.1048305087 0)
(-0.009985460806 -0.1048103005 0)
(-0.009247944498 -0.1028935805 0)
(-0.009929099705 -0.1028733668 0)
(-0.009947890342 -0.1035191313 0)
(-0.009266795138 -0.1035393432 0)
(-0.01197393637 -0.1028123842 0)
(-0.01062922556 -0.1034989122 0)
(-0.01061049312 -0.1028530859 0)
(0.01093894233 -0.1035351915 0)
(0.01025775775 -0.1035139559 0)
(0.009576628308 -0.1034948841 0)
(0.009555766243 -0.1041456312 0)
(0.008875029251 -0.1041254901 0)
(0.008895767708 -0.1034748594 0)
(0.008811935466 -0.1060766352 0)
(0.008833077724 -0.1054265571 0)
(0.009115077742 -0.09631141105 0)
(0.009056998226 -0.09826757128 0)
(0.009076505459 -0.09761594269 0)
(0.01110166624 -0.09833017028 0)
(0.00975794266 -0.09763676542 0)
(0.009738371821 -0.09828851221 0)
(0.01041995119 -0.0983106004 0)
(-0.01028398389 -0.1151416965 0)
(-0.01022836678 -0.1132035393 0)
(-0.01024699003 -0.1138497293 0)
(-0.01226980493 -0.1131433795 0)
(-0.01092700879 -0.1138296699 0)
(-0.01090850735 -0.1131835363 0)
(0.01059336929 -0.113915442 0)
(0.009232126852 -0.1138774489 0)
(0.009209876435 -0.1145244309 0)
(0.007849779449 -0.114486292 0)
(0.008529714243 -0.1145051478 0)
(0.008552081061 -0.1138582895 0)
(0.007782512144 -0.1164284234 0)
(0.008462722983 -0.1164460864 0)
(0.008485131786 -0.1157998299 0)
(0.007805429794 -0.1157812213 0)
(0.008790671402 -0.1067267697 0)
(0.008726643516 -0.1086730221 0)
(0.008748505804 -0.1080229657 0)
(0.01076894098 -0.1087305652 0)
(0.009428946386 -0.1080429777 0)
(0.009407034907 -0.1086926724 0)
(-0.01057558146 -0.1254724597 0)
(-0.01052162406 -0.1235355739 0)
(-0.01053951466 -0.1241813655 0)
(-0.01255875104 -0.1234758439 0)
(-0.01121791696 -0.1241614747 0)
(-0.01120002816 -0.1235157431 0)
(0.01022244849 -0.1242638221 0)
(0.008861962662 -0.1242266325 0)
(0.007502422458 -0.1241899517 0)
(0.00745353009 -0.1254821622 0)
(0.007402835846 -0.1267743786 0)
(0.007760045684 -0.1170766 0)
(0.007737039202 -0.1177247603 0)
(0.00769105092 -0.1190182591 0)
(0.009050389495 -0.1190556545 0)
(0.007714194166 -0.1183715442 0)
(0.01041188816 -0.1190931147 0)
(-0.01085738782 -0.1358031565 0)
(-0.01080506545 -0.1338647203 0)
(-0.01082254684 -0.1345108845 0)
(-0.01283849209 -0.133805762 0)
(-0.01285591168 -0.134451868 0)
(-0.01217696576 -0.134471655 0)
(-0.01215960437 -0.1338254872 0)
(-0.001436073245 -0.1362455727 0)
(-0.001774368404 -0.1362372761 0)
(-0.001787818092 -0.1365601567 0)
(-0.001801456177 -0.1368826113 0)
(0.000202459362 -0.1369228467 0)
(0.0002343508664 -0.1362799979 0)
(0.0002658067495 -0.1356372561 0)
(-0.0004027781106 -0.1356234255 0)
(0.008504754733 -0.1332623475 0)
(0.009864247547 -0.1332986064 0)
(0.004426272637 -0.1331554924 0)
(0.005782998182 -0.1331901068 0)
(0.005610387739 -0.1370543684 0)
(0.005669327376 -0.1357675645 0)
(0.007353790497 -0.1280656835 0)
(0.00730216324 -0.1293569711 0)
(0.008663036111 -0.1293932714 0)
(0.01002303057 -0.1294288248 0)
(-0.01075979889 -0.1461772562 0)
(-0.01095556033 -0.144274491 0)
(-0.01072096477 -0.1448860049 0)
(-0.01299884955 -0.1442139753 0)
(-0.01278366956 -0.1448240654 0)
(-0.0120961613 -0.1448447101 0)
(-0.01231708765 -0.1442319851 0)
(-0.002315915245 -0.1452014535 0)
(-0.001673778454 -0.145199716 0)
(-0.004269118913 -0.1451986548 0)
(-0.003607345761 -0.1452203284 0)
(-0.003904145351 -0.1470299289 0)
(-0.003884920282 -0.146383697 0)
(-0.002151199347 -0.1371974356 0)
(-0.00219194319 -0.1381646843 0)
(-0.002177606082 -0.1378424309 0)
(-0.001197698353 -0.1381815676 0)
(-0.001496029405 -0.1375331269 0)
(-0.001829208748 -0.1375269056 0)
(-0.001844714686 -0.1378484633 0)
(-0.001860150427 -0.1381702634 0)
(0.000908694491 -0.1471744503 0)
(0.0009474866253 -0.1458825972 0)
(0.001059238547 -0.144621642 0)
(-0.0003029615336 -0.1445837403 0)
(-0.0003627994677 -0.1452144592 0)
(-0.001025472946 -0.1452029682 0)
(-0.0009721392282 -0.1445702522 0)
(0.009446656365 -0.1423032006 0)
(0.008084645249 -0.142266806 0)
(0.0080173258 -0.1435486739 0)
(0.00937927331 -0.1435851867 0)
(0.005281472986 -0.143471866 0)
(0.005354318611 -0.1421919657 0)
(0.005033846064 -0.1472983215 0)
(0.005121383659 -0.1460271502 0)
(0.005550704105 -0.1383399489 0)
(0.005423921757 -0.1409100463 0)
(0.009510898928 -0.141019799 0)
(0.00814936603 -0.1409834788 0)
(-0.006602647242 -0.084068064 0)
(-0.007123665654 -0.08072098525 0)
(-0.01127353249 -0.08067958024 0)
(-0.009888492916 -0.08068708249 0)
(4.897817995e-06 -0.08390905117 0)
(-0.0004712979276 -0.08391918885 0)
(-0.0004295718815 -0.08432021077 0)
(1.308445844e-05 -0.0842220482 0)
(-0.0008975103734 -0.08394196793 0)
(-0.0009750616026 -0.0842881739 0)
(-0.003954443601 -0.07547575914 0)
(-0.003868295056 -0.07418304592 0)
(-0.004083061769 -0.07805799294 0)
(-0.001238111622 -0.0781080486 0)
(-0.001337339022 -0.07940451299 0)
(0.0009238057399 -0.08399721746 0)
(0.0004906938742 -0.08394464058 0)
(0.0004780754982 -0.08426809691 0)
(0.0008625690012 -0.08441631933 0)
(0.01151645304 -0.08263896747 0)
(0.01014425716 -0.08258574546 0)
(0.008764645808 -0.08251947269 0)
(0.008743822207 -0.08383893886 0)
(0.008732471179 -0.08449895003 0)
(0.007372677754 -0.0758467022 0)
(0.007392081884 -0.07455450713 0)
(0.007379080418 -0.07846548105 0)
(0.01020483818 -0.07864228032 0)
(0.005539089727 -0.08965453092 0)
(0.005191414552 -0.08964418692 0)
(0.005181002771 -0.08997411935 0)
(0.005170433489 -0.0903038969 0)
(0.004597793416 -0.08497651935 0)
(0.004590653549 -0.08564469074 0)
(0.005270986252 -0.08634609541 0)
(0.004587575743 -0.08598358763 0)
(0.005955841673 -0.0863712848 0)
(0.01668015254 -0.09459178348 0)
(0.01531433801 -0.09455004973 0)
(0.01539072471 -0.09194222488 0)
(0.01675698682 -0.09198505308 0)
(0.01265866429 -0.0918571229 0)
(0.0222378918 -0.0907489777 -3.586575481e-13)
(0.01952909563 -0.09077046626 0)
(0.01671800119 -0.09328735022 0)
(0.01686966104 -0.08808078366 0)
(-0.01747184174 -0.1039412704 0)
(-0.01743516231 -0.1026497743 0)
(-0.01739840485 -0.1013576799 0)
(-0.01326381012 -0.1001876757 0)
(-0.01330098399 -0.1014796374 0)
(-0.01603195787 -0.1013983516 0)
(-0.01599502401 -0.1001063827 0)
(-0.01614216898 -0.1052725947 0)
(-0.01610557657 -0.1039819968 0)
(-0.01588346511 -0.09622725548 0)
(-0.01584595394 -0.0949320608 0)
(-0.01595794853 -0.09881369729 0)
(-0.01322643462 -0.09889499929 0)
(0.005521156015 -0.100116958 0)
(0.00513510193 -0.100105906 0)
(0.005355172027 -0.09619694605 0)
(0.005701955093 -0.09620699901 0)
(0.01635195611 -0.1049973592 0)
(0.01498753841 -0.1049571087 0)
(0.01507209843 -0.1023570964 0)
(0.01643680173 -0.1023978359 0)
(0.0109803778 -0.1022353101 0)
(0.01234377186 -0.1022756499 0)
(0.02194313611 -0.1012599015 -3.591016373e-13)
(0.01920989093 -0.1011786001 0)
(0.01639464623 -0.1036976957 0)
(0.0165604674 -0.09849553008 0)
(-0.01776258432 -0.1142735607 0)
(-0.0177264905 -0.1129815665 0)
(-0.01769034028 -0.1116896942 0)
(-0.01355926226 -0.1105188036 0)
(-0.01359591053 -0.1118112616 0)
(-0.01632461332 -0.1117303443 0)
(-0.01628826508 -0.1104378773 0)
(-0.01643293678 -0.115605725 0)
(-0.01639697738 -0.1143142072 0)
(-0.01617875778 -0.1065630726 0)
(-0.01625181124 -0.1091458939 0)
(-0.01352251021 -0.1092268892 0)
(-0.01013515399 -0.109973373 0)
(-0.01015389363 -0.1106194394 0)
(-0.01009775272 -0.1086818385 0)
(-0.01077848972 -0.1086616974 0)
(-0.007396946524 -0.1094077665 0)
(-0.008076307062 -0.1093877869 0)
(-0.008095097699 -0.1100335514 0)
(-0.008113897345 -0.110679616 0)
(-0.007962246245 -0.105515341 0)
(-0.007981239054 -0.1061598383 0)
(-0.008000253485 -0.1068050556 0)
(-0.007320296526 -0.1068251733 0)
(-0.006630404226 -0.1065224249 0)
(0.004912120462 -0.1105136202 0)
(0.004560468833 -0.1105020998 0)
(0.004560930628 -0.1108285211 0)
(0.004558125314 -0.1111539435 0)
(0.005011654239 -0.1066139529 0)
(0.005370577554 -0.106626112 0)
(0.01599988819 -0.115363902 0)
(0.01463627809 -0.1153247568 0)
(0.01472578374 -0.1127380454 0)
(0.01608951205 -0.1127772542 0)
(0.0120001854 -0.1126597437 0)
(0.02158291873 -0.1115622578 -3.588795927e-13)
(0.01886451052 -0.1115584361 0)
(0.0160443602 -0.1140708982 0)
(0.01622263254 -0.1088880844 0)
(-0.01804738666 -0.1246060294 0)
(-0.01801209089 -0.1233146118 0)
(-0.01797667691 -0.1220232578 0)
(-0.01384870046 -0.1208536554 0)
(-0.01388415643 -0.1221444075 0)
(-0.01661118456 -0.1220637207 0)
(-0.016575845 -0.1207728449 0)
(-0.01671694467 -0.125937737 0)
(-0.01668177431 -0.1246464959 0)
(-0.01646883979 -0.1168973646 0)
(-0.01654030201 -0.1194811946 0)
(-0.01381297746 -0.1195620104 0)
(-0.01043102326 -0.1203083921 0)
(-0.01044921748 -0.1209542947 0)
(-0.01039444942 -0.1190164123 0)
(-0.01107368815 -0.1189963763 0)
(-0.007358942253 -0.1197521506 0)
(-0.007369059403 -0.1200750712 0)
(-0.008378162167 -0.1197221457 0)
(-0.008397018212 -0.1203680885 0)
(-0.00771951775 -0.1203880123 0)
(-0.007709578805 -0.1200650262 0)
(-0.007700059878 -0.1197420275 0)
(-0.008415872455 -0.1210139712 0)
(-0.007738973819 -0.121033937 0)
(-0.007729096679 -0.1207110091 0)
(-0.008266003955 -0.1158470603 0)
(-0.008284790988 -0.1164927049 0)
(-0.008303401618 -0.1171384748 0)
(-0.007625539339 -0.1171583494 0)
(0.004931527664 -0.1202383226 0)
(0.004253658127 -0.1202204897 0)
(0.003552765298 -0.120851177 0)
(0.00403525447 -0.1166497542 0)
(0.004046818325 -0.1163252554 0)
(0.004004325059 -0.1176233634 0)
(0.004014474029 -0.117299783 0)
(0.005022655815 -0.1176505789 0)
(0.004355033649 -0.1173092888 0)
(0.004344406461 -0.1176327947 0)
(-0.01833034748 -0.134937172 0)
(-0.01969889815 -0.1348965573 0)
(-0.01962686114 -0.1323135853 0)
(-0.01825891229 -0.1323542421 0)
(-0.02099583002 -0.1322728979 0)
(-0.01412952877 -0.1311837811 0)
(-0.01416422271 -0.1324751567 0)
(-0.01280387797 -0.1325150446 0)
(-0.0168922181 -0.132394681 0)
(-0.01685716413 -0.1311033162 0)
(-0.01699860166 -0.1362694594 0)
(-0.01696305506 -0.134977689 0)
(-0.01675206585 -0.12722934 0)
(-0.01682204656 -0.1298118332 0)
(-0.01273447926 -0.1299319334 0)
(-0.01409477121 -0.1298922873 0)
(-0.01071769217 -0.1306370211 0)
(-0.01073522996 -0.1312830636 0)
(-0.01068249603 -0.1293469218 0)
(-0.01205540972 -0.129951604 0)
(-0.01137725644 -0.1299717876 0)
(-0.01135982009 -0.1293271234 0)
(-0.007667219797 -0.1300783891 0)
(-0.007669358421 -0.1304016094 0)
(-0.008674955273 -0.1300499302 0)
(-0.008692475048 -0.1306953726 0)
(-0.008354110329 -0.1307051728 0)
(-0.008014307352 -0.1307150762 0)
(-0.008007903148 -0.1303918038 0)
(-0.008002351591 -0.1300689262 0)
(-0.008710136449 -0.1313415314 0)
(-0.00837129171 -0.131351346 0)
(-0.008362551013 -0.1310282639 0)
(-0.008700975735 -0.1310184619 0)
(-0.008562800121 -0.1261769467 0)
(-0.008581876356 -0.1268222222 0)
(-0.007905205118 -0.1268417608 0)
(-0.007894256942 -0.1265191654 0)
(-0.007884694229 -0.1261967085 0)
(-0.008600970609 -0.1274680978 0)
(-0.007925859435 -0.1274875895 0)
(-0.00791514226 -0.1271646869 0)
(-0.007574981071 -0.1271746611 0)
(-0.007586658285 -0.1274975349 0)
(-0.0002355119501 -0.1317541388 0)
(-0.000226288225 -0.1314307709 0)
(-0.0002189377497 -0.1311063859 0)
(-0.0005636465146 -0.1310958547 0)
(0.00388639259 -0.1299139426 0)
(0.004562723683 -0.1299310086 0)
(0.002536331484 -0.1298807895 0)
(0.00245484135 -0.1318169686 0)
(0.002482527939 -0.1311719516 0)
(0.003339215137 -0.1266688105 0)
(0.00331372882 -0.1273145542 0)
(0.003288411682 -0.1279612638 0)
(0.003963708337 -0.1279781787 0)
(0.00463982762 -0.1279952984 0)
(-0.01830330272 -0.145304529 0)
(-0.01967837925 -0.1452632378 0)
(-0.01992209992 -0.142653608 0)
(-0.0185523492 -0.1426942588 0)
(-0.02129288276 -0.1426153285 0)
(-0.01441333863 -0.1415151985 0)
(-0.01445149198 -0.142815779 0)
(-0.01308854048 -0.1428468568 0)
(-0.01718374394 -0.1427350554 0)
(-0.01714535237 -0.1414345421 0)
(-0.01696701833 -0.1466376733 0)
(-0.01692822619 -0.1453458202 0)
(-0.01703454665 -0.1375604971 0)
(-0.01710781128 -0.1401423512 0)
(-0.01301461276 -0.1402629207 0)
(-0.01437627576 -0.1402229331 0)
(-0.01099903112 -0.1409681524 0)
(-0.01101745273 -0.1416136278 0)
(-0.0109627681 -0.1396765237 0)
(-0.01299637656 -0.1396176199 0)
(-0.01231707062 -0.1396374178 0)
(-0.007913628074 -0.1410602613 0)
(-0.00827438687 -0.1410482272 0)
(-0.008286466083 -0.1413704884 0)
(-0.008303394686 -0.1416922436 0)
(-0.008160271143 -0.1365279528 0)
(-0.008172443335 -0.1368493103 0)
(-0.008186293794 -0.1371705574 0)
(-0.007835115573 -0.1371816432 0)
(-0.007651945695 -0.1572603315 0)
(-0.007613153561 -0.1559684784 0)
(-0.008988188085 -0.1559271885 0)
(-0.009026980219 -0.1572190416 0)
(-0.008910621834 -0.1533440823 0)
(-0.00753558731 -0.1533853722 0)
(-0.01303579141 -0.1532202105 0)
(-0.01166077488 -0.1532614999 0)
(-0.003410417736 -0.153509244 0)
(-0.002035359213 -0.1535505347 0)
(-0.006160528785 -0.1534266629 0)
(-0.00627688717 -0.1573016222 0)
(-0.006238095036 -0.1560097691 0)
(-0.004611070672 -0.1476549099 0)
(-0.003923436405 -0.1476755584 0)
(-0.004669099858 -0.149592394 0)
(-0.003981567596 -0.1496130395 0)
(-0.003962186538 -0.1489674127 0)
(-0.0046497188 -0.1489467673 0)
(-0.001918982874 -0.1496749753 0)
(-0.002567740955 -0.1483630768 0)
(-0.003255267217 -0.1483424316 0)
(-0.003274654275 -0.1489880581 0)
(-0.003294041334 -0.1496336847 0)
(-0.00617399144 -0.09131899633 0)
(-0.005491427977 -0.09133931237 0)
(-0.005480882328 -0.09101352186 0)
(-0.005137690419 -0.09102376727 0)
(-0.005148279871 -0.09134961652 0)
(-0.005108973066 -0.09004822387 0)
(-0.005118277694 -0.09037228598 0)
(-0.005249879923 -0.09492329476 0)
(-0.005257554395 -0.09524706951 0)
(-0.005231091969 -0.09394781955 0)
(-0.005237700232 -0.0942728875 0)
(-0.006253838838 -0.09391806912 0)
(-0.005580515928 -0.09426271345 0)
(-0.005572233001 -0.09393787595 0)
(-0.00599702138 -0.08606775099 0)
(-0.005312827825 -0.08608158183 0)
(-0.004629436586 -0.08609833134 0)
(-0.004598327872 -0.08542355099 0)
(-0.00456575423 -0.08475058569 0)
(-0.004747189174 -0.08940372029 0)
(-0.005408974219 -0.08873064273 0)
(-0.006091804736 -0.08871182009 0)
(0.005727563868 -0.09490117725 0)
(0.00536871667 -0.09489208327 0)
(0.005161905225 -0.09063250459 0)
(0.005156477103 -0.09095927155 0)
(0.005505266069 -0.09096872412 0)
(0.009263073279 -0.0910908734 0)
(0.009280495557 -0.09043667784 0)
(0.009227627617 -0.09239928249 0)
(0.009909706829 -0.09242072506 0)
(0.006516641871 -0.09165635311 0)
(0.007199092451 -0.09167942836 0)
(0.007216529684 -0.09102473479 0)
(0.007233649247 -0.09037062023 0)
(0.007089005567 -0.09559553456 0)
(0.00710758339 -0.0949428571 0)
(0.006423885914 -0.09492130587 0)
(0.00641394986 -0.09524819571 0)
(0.006405586482 -0.09557471237 0)
(0.007126828992 -0.09429194133 0)
(0.006444395171 -0.09427030794 0)
(0.006433622142 -0.09459507066 0)
(0.006089755213 -0.0945845047 0)
(0.006101615494 -0.0942595344 0)
(-0.007205380716 -0.1029542545 0)
(-0.007224347757 -0.1035998937 0)
(-0.006542592525 -0.1036201254 0)
(-0.008585939943 -0.1035595479 0)
(-0.008567029301 -0.102913787 0)
(-0.008623808617 -0.104850648 0)
(-0.009172269498 -0.1003094566 0)
(-0.009191176537 -0.1009550976 0)
(-0.008510021329 -0.1009753113 0)
(-0.00849105609 -0.1003297321 0)
(-0.008547813241 -0.102267855 0)
(-0.009228906644 -0.1022475831 0)
(-0.00650579849 -0.1023288129 0)
(-0.007186586475 -0.10230837 0)
(-0.01059163527 -0.1022070831 0)
(-0.009910181856 -0.1022273658 0)
(-0.009891431402 -0.1015809394 0)
(-0.009210092584 -0.1016010385 0)
(-0.006487751849 -0.1016818248 0)
(-0.00580917374 -0.1017016609 0)
(-0.005800998256 -0.1013782015 0)
(-0.00546511944 -0.101387987 0)
(-0.005472717099 -0.1017114037 0)
(-0.005434148197 -0.1004203847 0)
(-0.00544505857 -0.1007429212 0)
(-0.005549044741 -0.1052656619 0)
(-0.005561768361 -0.105587183 0)
(-0.00551162563 -0.1042981331 0)
(-0.005523887264 -0.1046208692 0)
(-0.006561923184 -0.1042658738 0)
(-0.006571438508 -0.1045887524 0)
(-0.006228398406 -0.1045990533 0)
(-0.00621833706 -0.1042761911 0)
(-0.006330784326 -0.09651050271 0)
(-0.005646439997 -0.09653111246 0)
(-0.005635293779 -0.09620732185 0)
(-0.005288166915 -0.09621792564 0)
(-0.005299595144 -0.09654170778 0)
(-0.005266646114 -0.09557044136 0)
(-0.005423161012 -0.1000974902 0)
(-0.005389704392 -0.09912732004 0)
(-0.005400890197 -0.099450629 0)
(-0.006410085957 -0.09909740041 0)
(-0.005740131548 -0.09944062234 0)
(-0.005729679574 -0.09911735139 0)
(0.005432064049 -0.1053268928 0)
(0.005091430641 -0.1053168444 0)
(0.005097644588 -0.101407108 0)
(0.005482793808 -0.1014190937 0)
(0.00895713043 -0.1015233621 0)
(0.008977421298 -0.1008716369 0)
(0.008916315346 -0.1028245833 0)
(0.01095971736 -0.1028853426 0)
(0.01027838755 -0.1028649435 0)
(0.005854934675 -0.1020824828 0)
(0.005854630671 -0.1017566068 0)
(0.006893764585 -0.1021134369 0)
(0.006902991964 -0.1017881473 0)
(0.006559657851 -0.1017778376 0)
(0.006550801297 -0.102102778 0)
(0.006932488047 -0.1008098707 0)
(0.00658759387 -0.1007995141 0)
(0.006577794036 -0.1011258675 0)
(0.006922268196 -0.1011362115 0)
(0.006770901118 -0.106017028 0)
(0.006792528801 -0.1053667843 0)
(0.006112744641 -0.1053469121 0)
(0.006100993555 -0.105672246 0)
(0.006089678701 -0.1059970525 0)
(0.006813980079 -0.1047164153 0)
(0.00613539597 -0.104696579 0)
(0.006124195716 -0.1050215692 0)
(0.005785294578 -0.1050116328 0)
(0.005797691277 -0.1046867987 0)
(0.006032826229 -0.09687034999 0)
(0.006039745944 -0.09654391009 0)
(0.007052611934 -0.09690151292 0)
(0.007070838752 -0.09624852464 0)
(0.006388865131 -0.09622756569 0)
(0.006380614551 -0.09655432596 0)
(0.006372312977 -0.09688078443 0)
(0.00639680669 -0.09590109641 0)
(0.006942144453 -0.1004842937 0)
(0.00659761029 -0.1004739479 0)
(0.006973414127 -0.09950895308 0)
(0.006630182001 -0.09949924697 0)
(0.006619223559 -0.0998241843 0)
(0.006962679479 -0.09983443763 0)
(0.005913292738 -0.09980304646 0)
(0.005933403987 -0.09947730296 0)
(0.010400078 -0.0989604163 0)
(0.01108176422 -0.09898094622 0)
(0.009037259992 -0.09891889265 0)
(0.008997439725 -0.1002209846 0)
(-0.007549616578 -0.1145759746 0)
(-0.00822807708 -0.114556022 0)
(-0.008247045922 -0.1152017212 0)
(-0.008132771408 -0.1113261588 0)
(-0.008151818271 -0.1119724562 0)
(-0.007471381291 -0.1119925882 0)
(-0.01089001853 -0.1125378227 0)
(-0.01020981976 -0.1125578876 0)
(-0.01017258589 -0.1112659276 0)
(-0.006420677822 -0.1113773298 0)
(-0.006062710925 -0.1113887396 0)
(-0.006054398031 -0.1110651041 0)
(-0.006049856895 -0.1107414755 0)
(-0.00624327935 -0.1159058174 0)
(-0.006230350498 -0.1155834616 0)
(-0.006217257243 -0.1152612309 0)
(-0.006554133901 -0.1152514754 0)
(-0.006289508609 -0.1065325413 0)
(-0.005600832101 -0.1065532811 0)
(-0.005574653987 -0.1059086993 0)
(-0.006048827705 -0.1104178015 0)
(-0.006049108371 -0.1100941482 0)
(-0.006393234517 -0.1100838147 0)
(0.005111976208 -0.1150586371 0)
(0.004771569008 -0.1150486554 0)
(0.004429355717 -0.1150392201 0)
(0.004419300932 -0.1153634639 0)
(0.00407653023 -0.1153535915 0)
(0.004083530294 -0.1150290758 0)
(0.004058319747 -0.1160018358 0)
(0.004548238537 -0.1114781923 0)
(0.004533303784 -0.1118011485 0)
(0.004877659741 -0.1118114288 0)
(0.008618003087 -0.1119169585 0)
(0.008639682308 -0.1112689986 0)
(0.008573842449 -0.1132115932 0)
(0.009254188252 -0.1132307616 0)
(0.005877369583 -0.1124873568 0)
(0.006557237168 -0.1125064508 0)
(0.006579014772 -0.1118592145 0)
(0.006600750391 -0.1112113763 0)
(0.007126149622 -0.1157625653 0)
(0.00710328837 -0.1164098892 0)
(0.007170426661 -0.1144680543 0)
(0.005133666188 -0.1144121188 0)
(0.00581258995 -0.1144306439 0)
(0.005701383384 -0.1072860378 0)
(0.00571070194 -0.1069617119 0)
(0.006728474432 -0.1073159187 0)
(0.006749329834 -0.1066673935 0)
(0.006066896557 -0.106647742 0)
(0.006055652517 -0.1069721903 0)
(0.00604627576 -0.1072964544 0)
(0.006077809411 -0.1063223228 0)
(0.006622207619 -0.1105628091 0)
(0.006644035673 -0.1099138927 0)
(0.005964173494 -0.1098946187 0)
(0.005953162256 -0.1102193142 0)
(0.00561203382 -0.1102095512 0)
(0.005622926854 -0.109884792 0)
(0.009385801473 -0.1093417868 0)
(0.008705413686 -0.1093220165 0)
(0.008661804968 -0.1106202712 0)
(-0.007503153047 -0.124916649 0)
(-0.007510382872 -0.1252394161 0)
(-0.008525969506 -0.124886416 0)
(-0.008544085702 -0.1255317204 0)
(-0.007864965173 -0.1255516928 0)
(-0.007855035238 -0.1252290067 0)
(-0.007847387198 -0.1249063122 0)
(-0.007873875067 -0.1258744095 0)
(-0.00843465048 -0.1216593158 0)
(-0.007758293668 -0.1216793253 0)
(-0.007748547344 -0.1213567539 0)
(-0.00845340328 -0.1223038203 0)
(-0.007777572076 -0.1223233336 0)
(-0.007767963774 -0.1220013586 0)
(-0.007430080876 -0.1220112043 0)
(-0.007440167396 -0.122333105 0)
(-0.01118207576 -0.1228698933 0)
(-0.01050355165 -0.1228897278 0)
(-0.01046733728 -0.1215997191 0)
(-0.007080887408 -0.1216991862 0)
(-0.006740590014 -0.1217092246 0)
(-0.006382428574 -0.1213973557 0)
(-0.006365975776 -0.1210750457 0)
(-0.006798318783 -0.1255857042 0)
(-0.007164656006 -0.1255734426 0)
(-0.006597038567 -0.1165418838 0)
(-0.006266280954 -0.1165512153 0)
(-0.006255613583 -0.1162283712 0)
(-0.006349543375 -0.1207526149 0)
(-0.006333116974 -0.120430184 0)
(-0.006687529328 -0.1204190011 0)
(-0.007035958246 -0.1204083582 0)
(0.004740706682 -0.1254110305 0)
(0.004064362398 -0.1253936037 0)
(0.003388545523 -0.1253766132 0)
(0.003363417419 -0.1260224277 0)
(0.003518642056 -0.121821147 0)
(0.00350705663 -0.1221445641 0)
(0.003483409992 -0.1227902429 0)
(0.004160621303 -0.122807996 0)
(0.004837557198 -0.1228259209 0)
(-0.007787734791 -0.1358937715 0)
(-0.008145200659 -0.1358820765 0)
(-0.00815076663 -0.1362054341 0)
(-0.008718997151 -0.1316646099 0)
(-0.008380454226 -0.1316744755 0)
(-0.008399961289 -0.1323200985 0)
(-0.008737665981 -0.1323103181 0)
(-0.007712933047 -0.1323407287 0)
(-0.01214225559 -0.1331797394 0)
(-0.01282120332 -0.1331600124 0)
(-0.01078759667 -0.1332189761 0)
(-0.01075276595 -0.131929046 0)
(-0.007343368759 -0.1320299229 0)
(-0.006982462353 -0.1320418413 0)
(-0.00721652261 -0.1268625008 0)
(-0.006863496313 -0.1268736421 0)
(-0.006967857163 -0.1307474602 0)
(-0.007321121667 -0.1307362517 0)
(0.004369138429 -0.134443972 0)
(0.003692090314 -0.1344265842 0)
(0.003015998007 -0.1344103662 0)
(0.002986022349 -0.1350544136 0)
(0.002311494899 -0.1350384827 0)
(0.002341009132 -0.1343946017 0)
(0.002217835856 -0.13696751 0)
(0.002249788553 -0.1363250234 0)
(0.002427698999 -0.1324614614 0)
(0.00237064038 -0.1337504238 0)
(0.0043970422 -0.1337999225 0)
(0.003720333091 -0.1337828451 0)
(-0.0005979877406 -0.132390484 0)
(-0.0002599553975 -0.1323989529 0)
(-0.0002471123508 -0.1320766546 0)
(-0.007653317737 -0.1459360234 0)
(-0.007315149684 -0.1459407729 0)
(-0.008685186426 -0.1459146472 0)
(-0.008340478205 -0.1459231965 0)
(-0.00871636115 -0.1468848258 0)
(-0.008351767834 -0.1462471629 0)
(-0.008696158025 -0.1462380226 0)
(-0.008322592572 -0.1420135703 0)
(-0.01241286165 -0.1435234445 0)
(-0.0130929087 -0.143506327 0)
(-0.01105766811 -0.1435628774 0)
(-0.01103622355 -0.1422587323 0)
(-0.002743647058 -0.1420048905 0)
(-0.002785509647 -0.1426429957 0)
(-0.002827428651 -0.1432815797 0)
(-0.002179387795 -0.1432862653 0)
(-0.001525960576 -0.1432932147 0)
(-0.005968680167 -0.1469661328 0)
(-0.005952665163 -0.1463174022 0)
(-0.006299083318 -0.146303997 0)
(-0.006295857919 -0.145976185 0)
(-0.005948785754 -0.1459902104 0)
(-0.006981523884 -0.1459477883 0)
(-0.001347288652 -0.1407443739 0)
(-0.002007626278 -0.1407345145 0)
(-0.002683142822 -0.1410459824 0)
(-0.002703256298 -0.1413656001 0)
(-0.0171750793 -0.09359450712 0)
(-0.01713707964 -0.09229704496 0)
(-0.01709879078 -0.09099995182 0)
(-0.01295972308 -0.0898229892 0)
(-0.01299832655 -0.09112055935 0)
(-0.01573148755 -0.09104010874 0)
(-0.01569330915 -0.08974269399 0)
(-0.01580802689 -0.09363501685 0)
(-0.01557218 -0.08583085909 0)
(-0.01552916482 -0.0845223704 0)
(-0.01565303463 -0.08843747476 0)
(-0.01291919379 -0.08851728517 0)
(-0.00886234764 -0.08993845924 0)
(-0.008841790816 -0.08928587724 0)
(-0.008821229127 -0.08863313323 0)
(-0.008799729748 -0.08797716232 0)
(-0.006729557696 -0.08737642762 0)
(-0.006752221983 -0.08803519221 0)
(-0.008117169619 -0.08799658942 0)
(-0.008095462482 -0.08734169976 0)
(-0.008179967338 -0.08995787494 0)
(-0.008159418623 -0.08930556295 0)
(-0.008048309153 -0.0860214027 0)
(-0.00736402572 -0.08603544042 0)
(-0.007339175763 -0.08537388877 0)
(-0.0073117534 -0.08470867104 0)
(-0.008073295869 -0.08668550866 0)
(-0.006704964148 -0.08671341489 0)
(0.002817360989 -0.08557676398 0)
(0.003179371361 -0.08558511816 0)
(-0.009153286241 -0.09966327743 0)
(-0.009134290372 -0.09901667824 0)
(-0.009115314322 -0.09837073907 0)
(-0.007052070997 -0.09778474439 0)
(-0.007071488686 -0.09843139097 0)
(-0.008433860904 -0.09839102178 0)
(-0.008414743228 -0.09774436619 0)
(-0.008472012831 -0.09968355473 0)
(-0.008357090732 -0.09580242654 0)
(-0.008337833231 -0.09515511453 0)
(-0.008395542127 -0.09709693237 0)
(-0.007032568082 -0.09713725958 0)
(0.0156721015 -0.124413833 0)
(0.01430772632 -0.1243761663 0)
(0.01294465678 -0.1243390192 0)
(0.01289644246 -0.1256306494 0)
(0.01435663545 -0.1230853977 0)
(0.0157202378 -0.123122801 0)
(0.01163186507 -0.1230095231 0)
(0.02108651659 -0.1211176698 -3.565758799e-13)
(0.01849821892 -0.1219066549 0)
(0.01586183992 -0.1192451765 0)
(0.001260734835 -0.127910826 0)
(0.001248079581 -0.1282336705 0)
(0.0009058627028 -0.1282237546 0)
(0.000873647539 -0.1291937819 0)
(0.000884671933 -0.1288706482 0)
(0.001312312322 -0.1266183959 0)
(0.00130037589 -0.1269415022 0)
(0.001287112809 -0.1272643884 0)
(0.001626749003 -0.127273446 0)
(0.001249342638 -0.142076808 0)
(0.001291205227 -0.1414387028 0)
(0.0006176383942 -0.1414235815 0)
(0.0005759654167 -0.1420615723 0)
(0.0006973698719 -0.1401449691 0)
(0.001369826064 -0.1401598768 0)
(-0.0006438794041 -0.140116765 0)
(0.00411963041 -0.1395874718 0)
(0.002758452105 -0.1395519429 0)
(0.001330790153 -0.1407994482 0)
(0.002185221331 -0.1376100368 0)
(0.002151972003 -0.1382517038 0)
(0.001477310134 -0.1382362494 0)
(-0.006896051106 -0.09259898023 0)
(-0.006915942321 -0.09324939615 0)
(-0.008279401791 -0.09320923454 0)
(-0.008259694187 -0.09255893321 0)
(-0.008318492305 -0.09450702428 0)
(-0.008882171825 -0.09058864296 0)
(-0.008199922159 -0.09060840907 0)
(-0.008239880993 -0.09190911551 0)
(-0.008921943444 -0.09188911479 0)
(-0.006876056102 -0.09194910793 0)
(-0.00890218845 -0.09123923529 0)
(-0.003223626882 -0.08544074822 0)
(-0.002879518152 -0.08544526173 0)
(-0.002513013364 -0.08510014319 0)
(-0.002489213768 -0.08475197061 0)
(-0.002933572793 -0.08680598583 0)
(-0.003281800989 -0.08680125854 0)
(0.006628555215 -0.08706142229 0)
(0.007996784093 -0.08711475339 0)
(0.008035074353 -0.08513161367 0)
(0.008023117286 -0.08579380711 0)
(0.007250493842 -0.08971566262 0)
(0.007267065996 -0.08906177786 0)
(0.006583744203 -0.08903571566 0)
(0.01001609842 -0.08850367913 0)
(0.009332769609 -0.08847985082 0)
(0.009297888286 -0.08978346633 0)
(0.001674374163 -0.1259796361 0)
(0.001333408328 -0.1259700581 0)
(0.001323015728 -0.1262943518 0)
(0.00136773482 -0.1243475195 0)
(0.001361176377 -0.1246719284 0)
(0.001710924721 -0.1246836318 0)
(0.002056181905 -0.1246942996 0)
(0.007597721868 -0.121606297 0)
(0.007573512991 -0.1222524995 0)
(0.007550396771 -0.1228983143 0)
(0.005466669958 -0.1241364488 0)
(0.005490831445 -0.1234898245 0)
(0.006870987585 -0.1228799547 0)
(0.006192585828 -0.1228620458 0)
(0.006168505965 -0.1235079518 0)
(0.006144351686 -0.1241543361 0)
(0.0069186763 -0.1215878283 0)
(0.006894642026 -0.1222342161 0)
(0.006095339313 -0.1254465429 0)
(0.006071194042 -0.1260926271 0)
(0.006045430506 -0.1267386027 0)
(0.006120441019 -0.1248006075 0)
(0.00544258469 -0.1247825348 0)
(0.005655056065 -0.118962827 0)
(0.005677839296 -0.1183161013 0)
(0.007034919399 -0.1183527082 0)
(0.00701207076 -0.1189996121 0)
(0.007080892724 -0.1170577076 0)
(0.007620857908 -0.1209598222 0)
(0.006941930543 -0.120941417 0)
(0.006989112926 -0.1196461524 0)
(0.007668031282 -0.1196648576 0)
(0.005632463651 -0.1196091981 0)
(0.00764457541 -0.1203119835 0)
(-0.001712715838 -0.1346243864 0)
(-0.001720883545 -0.1349486868 0)
(-0.001380924538 -0.1349577541 0)
(-0.001043425607 -0.1349658467 0)
(-0.003268877025 -0.1394262647 0)
(-0.003250013997 -0.1391064894 0)
(-0.001877148629 -0.1384918964 0)
(-0.00220847338 -0.1384865716 0)
(-0.002261116171 -0.1394484784 0)
(-0.002243133378 -0.1391286166 0)
(-0.002752003162 -0.07937996594 0)
(-0.002784147876 -0.08002704712 0)
(-0.002085001509 -0.08004072039 0)
(-0.002060910435 -0.079397241 0)
(-0.002140522712 -0.08133068384 0)
(-0.002872941279 -0.0813348392 0)
(0.0001094940634 -0.08134927786 0)
(-0.0006554567243 -0.08133631313 0)
(-0.005804525997 -0.08205748236 0)
(-0.005113934853 -0.08206706111 0)
(-0.005075599989 -0.08140123598 0)
(-0.005774221879 -0.08140049663 0)
(-0.003631202448 -0.08136440321 0)
(-0.003691308654 -0.08204185616 0)
(-0.003454428111 -0.0793678758 0)
(-0.003508807267 -0.08002660692 0)
(-0.003136676045 -0.08406891714 0)
(-0.003827951966 -0.08406314282 0)
(-0.003878906897 -0.08476084057 0)
(-0.003748387339 -0.08272448681 0)
(-0.005837079747 -0.08271938523 0)
(-0.005143967753 -0.08272381476 0)
(0.005990811307 -0.0837135284 0)
(0.0053014643 -0.08368111746 0)
(0.004605940936 -0.08364019121 0)
(0.00460285763 -0.08430787124 0)
(0.003144516408 -0.07956265562 0)
(0.003136314371 -0.08020999932 0)
(0.003832199079 -0.08023789214 0)
(0.003844072693 -0.07959187783 0)
(0.003857892263 -0.08156325937 0)
(0.003133736357 -0.08151385216 0)
(0.006002793119 -0.0817209109 0)
(0.005299106617 -0.0816748329 0)
(0.0009142823595 -0.08138216449 0)
(0.002418641452 -0.08147429605 0)
(0.002441155984 -0.0795327186 0)
(0.002428385556 -0.08017719856 0)
(0.0048911533 -0.08798646758 0)
(0.00489972412 -0.08765524271 0)
(0.004870761886 -0.08864814111 0)
(0.005218759381 -0.08865895121 0)
(0.005210386042 -0.08898759959 0)
(0.003531052828 -0.08593784486 0)
(0.004241087206 -0.08597012629 0)
(0.003900741141 -0.08493510877 0)
(0.003894474656 -0.08526979484 0)
(0.00389272635 -0.08561061683 0)
(0.004244795453 -0.08563143451 0)
(0.003849114205 -0.0872891856 0)
(0.003857866076 -0.08695713138 0)
(0.003494945148 -0.08695150044 0)
(0.00456702505 -0.08697976547 0)
(0.00491629391 -0.08700003663 0)
(0.004908562812 -0.08732749715 0)
(0.005307078326 -0.09880435931 0)
(0.005636316041 -0.09881490637 0)
(0.005684583499 -0.09751150665 0)
(0.005355735205 -0.09750079111 0)
(0.00496097574 -0.1092174449 0)
(0.005304130458 -0.1092273288 0)
(0.005342147047 -0.1079253029 0)
(0.004996920459 -0.1079148162 0)
(0.003596704607 -0.1195537131 0)
(0.003959074212 -0.1189167041 0)
(0.002558136345 -0.1195214456 0)
(0.002907024868 -0.1195325828 0)
(0.002912308267 -0.1192078354 0)
(0.002915685984 -0.1188831509 0)
(0.002848588634 -0.1214782224 0)
(0.002859244022 -0.1211547774 0)
(0.002868199537 -0.1208313414 0)
(0.002520402464 -0.1208200568 0)
(0.002923391664 -0.1185591368 0)
(0.002939107639 -0.1182365645 0)
(0.002580775373 -0.1182235222 0)
(0.004333278261 -0.1179559853 0)
(0.00399342067 -0.1179465006 0)
(0.003970374617 -0.1185935788 0)
(-0.008639048119 -0.1287601525 0)
(-0.008657526131 -0.1294055061 0)
(-0.007986556929 -0.1294249335 0)
(-0.007977232424 -0.1291024094 0)
(-0.007967057073 -0.1287795505 0)
(-0.007995261591 -0.1297468155 0)
(-0.007661989874 -0.1297562225 0)
(-0.01002380117 -0.1300111083 0)
(-0.009348749997 -0.1300305982 0)
(0.001836213315 -0.1305104791 0)
(0.001163368926 -0.1304948991 0)
(0.0004625757213 -0.1311248687 0)
(0.0008254709851 -0.1304865543 0)
(0.0008624575348 -0.1295170307 0)
(0.0008384982547 -0.130163721 0)
(0.001176295398 -0.1301718226 0)
(-0.008271729065 -0.1391057172 0)
(-0.008280993568 -0.139428243 0)
(-0.008284214037 -0.1397514909 0)
(-0.007960935706 -0.139759697 0)
(-0.01030642054 -0.1403408799 0)
(-0.009634109659 -0.1403596269 0)
(-0.008947355348 -0.1397333796 0)
(-0.009297414198 -0.1403690166 0)
(-0.009324434338 -0.1413388395 0)
(-0.009334478873 -0.141661342 0)
(-0.009306118315 -0.1406928805 0)
(-0.009642810172 -0.1406833708 0)
(-0.01023501418 -0.13775891 0)
(-0.009562234089 -0.1377780314 0)
(-0.008870692738 -0.1371503664 0)
(-0.008911744602 -0.1384434729 0)
(-0.007913533303 -0.1384711053 0)
(-0.008245373969 -0.1384620415 0)
(-0.008259244248 -0.1387839486 0)
(-0.005181310575 -0.09232340286 0)
(-0.005192447835 -0.09264869516 0)
(-0.005159183121 -0.09167491584 0)
(-0.005501691003 -0.09166469097 0)
(-0.004068532843 -0.09007615138 0)
(-0.004065213737 -0.09040501873 0)
(-0.004064807185 -0.09073287976 0)
(-0.003693151992 -0.09074704276 0)
(-0.005563235466 -0.09361384065 0)
(-0.005223128278 -0.09362381326 0)
(-0.005203434511 -0.09297477271 0)
(-0.004668296459 -0.08709704028 0)
(-0.004656109636 -0.08676539549 0)
(-0.003601153886 -0.0861175279 0)
(-0.003615234037 -0.08645582416 0)
(-0.004314752935 -0.0867767569 0)
(-0.00397155013 -0.08678363946 0)
(-0.003958574127 -0.08644891345 0)
(-0.003945475252 -0.0861146956 0)
(-0.004326404135 -0.0871069644 0)
(-0.003912964038 -0.08543560926 0)
(-0.003895401422 -0.08509634016 0)
(-0.003930106905 -0.08577629989 0)
(-0.003586437023 -0.08578042788 0)
(-0.003716340914 -0.08943027876 0)
(-0.004059825139 -0.08942156803 0)
(-0.00406784153 -0.08974832933 0)
(-0.00399330345 -0.0874484671 0)
(-0.004001752049 -0.08777982177 0)
(-0.00400909293 -0.08810868732 0)
(-0.003654685893 -0.08811904729 0)
(-0.00470243251 -0.08808923681 0)
(0.005439113751 -0.09358532427 0)
(0.005781086948 -0.09359775518 0)
(0.005814234498 -0.09228987764 0)
(0.005467974695 -0.09227839903 0)
(0.005117819508 -0.09226764425 0)
(0.005105036922 -0.09259492906 0)
(-0.005477562163 -0.1026831537 0)
(-0.005478116721 -0.1030064216 0)
(-0.005477110642 -0.1020355172 0)
(-0.006164296253 -0.1023391277 0)
(-0.00582231279 -0.1023492167 0)
(-0.005816345992 -0.1020255108 0)
(-0.006208347717 -0.1039533266 0)
(-0.006551867838 -0.1039430113 0)
(-0.005499988021 -0.1039753782 0)
(-0.005482093222 -0.1033296468 0)
(-0.005333663789 -0.09751185956 0)
(-0.005345029619 -0.09783576369 0)
(-0.005310899153 -0.09686495314 0)
(-0.005656371751 -0.09685445908 0)
(-0.005719297818 -0.09879461884 0)
(-0.005378558208 -0.09880473056 0)
(-0.005356244831 -0.09815925195 0)
(0.005165286058 -0.1040175161 0)
(0.005490692658 -0.1040264467 0)
(0.005519536077 -0.1027239051 0)
(0.005191898592 -0.1027146673 0)
(0.006855658621 -0.1034144392 0)
(0.006874831608 -0.1027639417 0)
(0.006194518237 -0.1027436932 0)
(0.006187516354 -0.1030688694 0)
(0.006178339968 -0.1033944608 0)
(0.006205649092 -0.1020930142 0)
(0.006199780048 -0.1024184647 0)
(0.005856084118 -0.1024082041 0)
(0.008255949589 -0.1021540407 0)
(0.007575096196 -0.102133776 0)
(0.006912833783 -0.1014623957 0)
(0.008173662998 -0.1047563434 0)
(0.007493580628 -0.1047364021 0)
(0.006835152967 -0.1040653171 0)
(0.00580998599 -0.104361361 0)
(0.006157588899 -0.1040455116 0)
(0.00614691065 -0.1043711179 0)
(0.006168678157 -0.1037202178 0)
(0.007014781301 -0.09820534615 0)
(0.007034055732 -0.09755347035 0)
(0.006355084036 -0.09753254148 0)
(0.006346433258 -0.09785862912 0)
(0.006336402424 -0.09818467532 0)
(0.006364029421 -0.09720664286 0)
(0.006025624519 -0.09719618086 0)
(0.008414582697 -0.09694325136 0)
(0.007733447309 -0.09692237764 0)
(0.008336315557 -0.0995496985 0)
(0.007655171161 -0.09952912479 0)
(0.006952681076 -0.1001594038 0)
(0.006994195826 -0.09885688231 0)
(0.005954313286 -0.09915098286 0)
(0.006313124044 -0.09883589038 0)
(0.006298542031 -0.09916149963 0)
(0.006284654823 -0.09948797054 0)
(0.006325838774 -0.09851046529 0)
(-0.006138064592 -0.1133245624 0)
(-0.00612481052 -0.1130019762 0)
(-0.006111637459 -0.1126796878 0)
(-0.006463821325 -0.1126686919 0)
(-0.006509051112 -0.1139599313 0)
(-0.006164596754 -0.1139703347 0)
(-0.006151330069 -0.1136473285 0)
(-0.006003136077 -0.1081561819 0)
(-0.005991866284 -0.107833476 0)
(-0.005980560491 -0.1075107712 0)
(-0.006320407866 -0.1075007463 0)
(-0.006361292268 -0.108791876 0)
(-0.006025087637 -0.1088016113 0)
(-0.006014297864 -0.108478891 0)
(0.004114346228 -0.1140580456 0)
(0.00409189901 -0.1147047814 0)
(0.005122705995 -0.1147353144 0)
(0.004782255587 -0.1147255717 0)
(0.004831093599 -0.1131061714 0)
(0.004481929064 -0.113095026 0)
(0.004476380465 -0.1134194051 0)
(0.004469831014 -0.1137441145 0)
(-0.006793276221 -0.1229971772 0)
(-0.007125433694 -0.1229878637 0)
(-0.007149862462 -0.1242809889 0)
(-0.006805834121 -0.1242913796 0)
(-0.006248541524 -0.1184944579 0)
(-0.00624814836 -0.1181707648 0)
(-0.006255754715 -0.1178464711 0)
(-0.006610809095 -0.117835269 0)
(-0.006959214012 -0.1178246268 0)
(-0.006991713094 -0.1191169091 0)
(-0.006635856483 -0.1191281954 0)
(-0.006269351847 -0.1191402819 0)
(-0.006256580192 -0.1188175611 0)
(0.002462441558 -0.1227618671 0)
(0.002471677879 -0.1224386798 0)
(0.003167562046 -0.1221353906 0)
(0.002826032188 -0.1221257957 0)
(0.002814783388 -0.1224488025 0)
(0.002804848642 -0.1227718487 0)
(0.003179201474 -0.1218119752 0)
(0.003436231859 -0.124083766 0)
(0.003460126955 -0.1234364131 0)
(0.002782237616 -0.1234186396 0)
(0.002770282555 -0.1237427663 0)
(0.00275944835 -0.1240665663 0)
(0.002793275829 -0.1230948458 0)
(0.002451513168 -0.1230850036 0)
(0.002092451674 -0.1233974461 0)
(0.001737287539 -0.123384499 0)
(0.00177165518 -0.1220893901 0)
(0.00212893679 -0.1221028212 0)
(-0.008116283394 -0.1339410757 0)
(-0.008126640554 -0.1342639891 0)
(-0.008135144845 -0.1345871985 0)
(-0.007804802438 -0.1345961572 0)
(-0.01016443704 -0.1351765548 0)
(-0.009491118733 -0.1351957525 0)
(-0.00880283373 -0.1345685302 0)
(-0.008834145376 -0.1358612686 0)
(-0.01009462552 -0.1325936962 0)
(-0.009420290776 -0.1326130445 0)
(-0.008728516078 -0.1319876086 0)
(-0.008766018074 -0.1332764976 0)
(-0.007755709699 -0.133305274 0)
(-0.008093477997 -0.1332956118 0)
(-0.008105026198 -0.1336181893 0)
(-0.0009932467909 -0.1336738551 0)
(-0.001338343765 -0.133663072 0)
(-0.006935253752 -0.1281627036 0)
(-0.007272646431 -0.1281529326 0)
(-0.007324864687 -0.1294433015 0)
(-0.007001641564 -0.1294517462 0)
(0.0003260850702 -0.1343494714 0)
(0.0003549393109 -0.1337043694 0)
(-0.0003158896415 -0.1336904714 0)
(-0.0003298673467 -0.1340131561 0)
(-0.000343972247 -0.1343354765 0)
(-0.0002872267968 -0.1330449433 0)
(-0.0003018441318 -0.1333677288 0)
(-0.0006389038569 -0.1333600698 0)
(0.001726228412 -0.1330897892 0)
(0.001054994485 -0.1330743776 0)
(0.0004116823474 -0.1324143165 0)
(-0.01038063566 -0.142924387 0)
(-0.009709752227 -0.1429426707 0)
(-0.00970047331 -0.1426196648 0)
(-0.009365877935 -0.1426289915 0)
(-0.00937557687 -0.1429519848 0)
(-0.009344759814 -0.1419837172 0)
(-0.009341086356 -0.1439333839 0)
(-0.009263282893 -0.144294378 0)
(-0.009381795661 -0.1432750825 0)
(-0.009715851013 -0.1432657721 0)
(-0.004483021523 -0.1439118255 0)
(-0.004815230703 -0.143906234 0)
(-0.004843580614 -0.1442219409 0)
(-0.00488914265 -0.1445306448 0)
(-0.004417116246 -0.1426268523 0)
(-0.00408549747 -0.1426317054 0)
(-0.00402717047 -0.1413453035 0)
(-0.004367015482 -0.1413366 0)
(-0.002628327363 -0.1400849216 0)
(-0.00363945976 -0.1400627868 0)
(-0.003298097297 -0.1400719563 0)
(-0.003283666565 -0.139748985 0)
(-0.003031510159 -0.1413616888 0)
(-0.003359795824 -0.1413578366 0)
(-0.003377502623 -0.1416783072 0)
(-0.003394906401 -0.1419984867 0)
(-0.003011429676 -0.1410417698 0)
(-0.003676502658 -0.1410303869 0)
(-0.01865239589 -0.1569300069 0)
(-0.01857482964 -0.1543469007 0)
(-0.0143720758 -0.1518870662 0)
(-0.01441086793 -0.1531789193 0)
(-0.01578594446 -0.1531376281 0)
(-0.01574715232 -0.151845775 0)
(-0.01712216885 -0.1518044857 0)
(-0.01700581046 -0.1479295264 0)
(-0.01708337671 -0.1505126326 0)
(-0.01433328366 -0.1505952131 0)
(-0.01024690623 -0.152010938 0)
(-0.01020811409 -0.1507190849 0)
(-0.007419216908 -0.1495098127 0)
(-0.00810673717 -0.1494891677 0)
(-0.008794245431 -0.149468523 0)
(-0.009481813695 -0.1494478765 0)
(-0.0094235745 -0.1475103986 0)
(-0.009462426637 -0.14880225 0)
(-0.007399859851 -0.1488641853 0)
(-0.008087350111 -0.1488435411 0)
(0.003348510502 -0.1575906564 0)
(0.003426076753 -0.1550075502 0)
(0.0007535439719 -0.1523412627 0)
(0.0007147518376 -0.1536331158 0)
(-0.0006603006868 -0.1535918253 0)
(0.009003865119 -0.1525890057 0)
(0.00625377207 -0.1525064251 0)
(0.00499505393 -0.1485901746 0)
(0.004956279813 -0.1498814277 0)
(0.00358124529 -0.1498401378 0)
(0.001606799188 -0.1356664134 0)
(0.0009358376521 -0.1356517307 0)
(0.000295594598 -0.1349932631 0)
(-0.0003734084946 -0.1349799605 0)
(-0.0007079601336 -0.1349729774 0)
(-0.0003580909495 -0.1346578566 0)
(0.00383835637 -0.1447128414 0)
(0.002449737407 -0.1446669396 0)
(0.001159512269 -0.143350733 0)
(-0.0009171002337 -0.1439373472 0)
(-0.0001949470174 -0.1433174479 0)
(-0.0002464224943 -0.1439514809 0)
(-9.967148404e-05 -0.1420457883 0)
(-0.0001459748162 -0.1426823789 0)
(-0.001465805219 -0.08198728586 0)
(-0.001523563453 -0.08264514679 0)
(-0.001143169543 -0.08263769359 0)
(-0.001160104774 -0.08296046957 0)
(-0.001553732043 -0.08297581921 0)
(6.291344831e-05 -0.08295232645 0)
(-0.0003450185835 -0.08294584238 0)
(-0.003088722448 -0.08338996961 0)
(-0.002723207239 -0.08337180596 0)
(-0.002352503694 -0.08335226065 0)
(-0.002328794381 -0.08301969467 0)
(-0.001966039231 -0.08301224631 0)
(-0.001994821883 -0.08334716431 0)
(-0.001944367167 -0.08268332464 0)
(-0.002097638937 -0.08437897111 0)
(-0.00201838685 -0.08367832329 0)
(-0.003114883774 -0.08373139237 0)
(-0.002756309039 -0.08371895991 0)
(0.003199543714 -0.08421613981 0)
(0.002846768115 -0.08419624981 0)
(0.002486256114 -0.08416919697 0)
(0.002485493226 -0.08451540259 0)
(0.001690138153 -0.08208206544 0)
(0.001694435125 -0.08273556792 0)
(0.002063077512 -0.08276106321 0)
(0.002068777206 -0.08309245235 0)
(0.00169090234 -0.0830610165 0)
(0.002451366243 -0.08313189718 0)
(0.002468890718 -0.08347729827 0)
(0.0005034104987 -0.08297253239 0)
(0.001317452495 -0.08303541889 0)
(0.001323520162 -0.08271155385 0)
(0.004574407769 -0.1098527062 0)
(0.004563190739 -0.1101768551 0)
(0.004204251034 -0.1104898417 0)
(-0.008340510079 -0.1184302584 0)
(-0.008359306122 -0.1190762029 0)
(-0.007680725616 -0.1190961592 0)
(-0.007670848475 -0.1187732313 0)
(-0.007661809568 -0.1184502182 0)
(-0.007690122736 -0.1194191014 0)
(-0.0073487651 -0.1194292317 0)
(-0.009734124932 -0.1196823293 0)
(-0.009055964443 -0.1197022729 0)
(-0.009660202616 -0.1170985732 0)
(-0.008981562107 -0.1171185312 0)
(-0.008321954047 -0.1177843066 0)
(-0.007643551746 -0.1178041974 0)
(-0.007302374118 -0.1178143223 0)
(-0.007652350644 -0.1181272177 0)
(-0.009952327598 -0.1274289002 0)
(-0.009276319991 -0.1274485389 0)
(-0.008620070267 -0.1281141534 0)
(-0.007598215494 -0.1278204123 0)
(-0.007946517356 -0.1281335382 0)
(-0.007936038389 -0.1278105684 0)
(-0.007956876317 -0.1284565117 0)
(-0.008273812302 -0.140399093 0)
(-0.008270184739 -0.1407242881 0)
(-0.008974828638 -0.1410262933 0)
(-0.008628679813 -0.1410368677 0)
(-0.006731696646 -0.1495304578 0)
(-0.006712357589 -0.1488848298 0)
(-0.005337269064 -0.1489261214 0)
(-0.005356632121 -0.1495717486 0)
(-0.005298824944 -0.1476342578 0)
(-0.004746678127 -0.1521761004 0)
(-0.004707885992 -0.1508842473 0)
(-0.006044164383 -0.1495511032 0)
(0.007163748233 -0.0929864592 0)
(0.007181664227 -0.09233382193 0)
(0.006499490236 -0.09231153571 0)
(0.006490474038 -0.09263779255 0)
(0.006481803441 -0.09296454021 0)
(0.006157701773 -0.09230175284 0)
(0.00856359882 -0.09172472622 0)
(0.007881479426 -0.09170262182 0)
(0.00849038739 -0.09433480846 0)
(0.007808724592 -0.09431349851 0)
(0.007145672594 -0.09364041293 0)
(0.006112875751 -0.09393454608 0)
(0.006464115388 -0.09361958659 0)
(0.006454397178 -0.09394522178 0)
(0.006473042211 -0.09329230612 0)
(-0.008189868754 -0.1132636109 0)
(-0.008208972016 -0.1139097864 0)
(-0.00958595632 -0.114516028 0)
(-0.008906837593 -0.1145360604 0)
(-0.005881646637 -0.1152709484 0)
(-0.006190988514 -0.1146162314 0)
(-0.006204136383 -0.1149388809 0)
(0.004186627533 -0.1117907384 0)
(0.004501211789 -0.112446874 0)
(0.00451661757 -0.1121236317 0)
(0.006513543937 -0.1138015199 0)
(0.006535321541 -0.1131542836 0)
(0.007916245101 -0.1125448573 0)
(0.007236681132 -0.1125256522 0)
(0.006687412845 -0.108613349 0)
(0.006707942466 -0.1079636729 0)
(0.006027460442 -0.1079450409 0)
(0.00601807828 -0.108269485 0)
(0.006008018073 -0.1085945094 0)
(0.006036475383 -0.1076208259 0)
(0.005693375874 -0.1076107034 0)
(0.008089255412 -0.1073552792 0)
(0.007409045831 -0.1073355744 0)
(0.008003534436 -0.1099519535 0)
(0.007323732259 -0.1099326813 0)
(0.006665763541 -0.1092643127 0)
(0.005634221888 -0.1095606456 0)
(0.005986179753 -0.1092457677 0)
(0.005974993913 -0.1095702778 0)
(0.005997274416 -0.108920294 0)
(-0.008490553726 -0.123595002 0)
(-0.008508327925 -0.1242409172 0)
(-0.007831847505 -0.1242608104 0)
(-0.007823828639 -0.1239377666 0)
(-0.007815387955 -0.1236146755 0)
(-0.007839140935 -0.1245836957 0)
(-0.007497363282 -0.1245938386 0)
(-0.009880075798 -0.1248467755 0)
(-0.009203053554 -0.1248666248 0)
(-0.009807391369 -0.1222642434 0)
(-0.00913000911 -0.1222841036 0)
(-0.008472059498 -0.1229491085 0)
(-0.007450328333 -0.1226554838 0)
(-0.007796886519 -0.1229685419 0)
(-0.007787312995 -0.1226457251 0)
(-0.007806405446 -0.1232915406 0)
(-0.006273655535 -0.1171978031 0)
(-0.006273271975 -0.1168742298 0)
(-0.005941662782 -0.1165600021 0)
(-0.005975594096 -0.1204415804 0)
(-0.006300388376 -0.1197852584 0)
(-0.006316706772 -0.1201076925 0)
(0.003412257586 -0.1247301556 0)
(0.002374799517 -0.1253509166 0)
(0.002386369339 -0.1250276192 0)
(0.002736627927 -0.1247129305 0)
(0.002724750886 -0.125036459 0)
(0.002712965055 -0.1253597499 0)
(0.002747861734 -0.124389623 0)
(-0.007995728733 -0.144684372 0)
(-0.007942412365 -0.1449628338 0)
(-0.007585541356 -0.1449615387 0)
(-0.007118856285 -0.1448380229 0)
(-0.01005248355 -0.1455522869 0)
(-0.009363937231 -0.1455723622 0)
(-0.008649943602 -0.144946993 0)
(-0.008998113949 -0.1449377391 0)
(-0.009050751762 -0.1446406802 0)
(-0.009019363535 -0.1423153915 0)
(-0.008681835246 -0.1423250465 0)
(-0.003797624204 -0.1432761687 0)
(-0.003776302265 -0.1429561069 0)
(-0.003432610258 -0.1426380981 0)
(-0.003452494535 -0.142958083 0)
(-0.003473089237 -0.1432779264 0)
(-0.003415275474 -0.1423176163 0)
(-0.002911775543 -0.1445608943 0)
(-0.002871414733 -0.1439198013 0)
(-0.00455470352 -0.1457161747 0)
(-0.005246207878 -0.1456930077 0)
(-0.005596250165 -0.1456788932 0)
(-0.005353371199 -0.1448021537 0)
(-0.005592166782 -0.1453529086 0)
(-0.004788863937 -0.1451001696 0)
(-0.005136254454 -0.145098146 0)
(-0.005240618467 -0.1453682695 0)
(-0.006686462768 -0.1449308822 0)
(-0.006591244184 -0.1446977191 0)
(-0.006865700482 -0.1446546449 0)
(-0.007064827281 -0.1447411526 0)
(0.0005491851084 -0.1285362086 0)
(0.0001981545312 -0.128523806 0)
(0.001008154313 -0.1246596461 0)
(0.001349837333 -0.1253219405 0)
(0.001354873532 -0.1249968253 0)
(-0.002061833788 -0.1349394096 0)
(-0.00174417375 -0.1355937157 0)
(-0.001730823096 -0.1352719131 0)
(-0.002499658473 -0.1375125986 0)
(-0.002837096809 -0.1375047481 0)
(-0.002558080967 -0.1388021807 0)
(-0.00289138877 -0.1387957754 0)
(0.004529409421 -0.08830643866 0)
(0.004173268966 -0.08829840488 0)
(0.004215625574 -0.08696744788 0)
(0.003880923666 -0.08629246902 0)
(0.003869712238 -0.08662643126 0)
(0.004593299099 -0.1095293884 0)
(0.002885964812 -0.1201827234 0)
(0.002897136272 -0.1198574922 0)
(0.003253762906 -0.1195435352 0)
(0.003679519441 -0.1169648189 0)
(0.003329564659 -0.1169541902 0)
(0.003639237954 -0.1182598703 0)
(0.003292137505 -0.1182487869 0)
(0.002959064564 -0.1179149602 0)
(-0.0002080049032 -0.130455701 0)
(-0.0001991495729 -0.1301316013 0)
(0.00050907343 -0.1298312051 0)
(0.0001629174158 -0.1298202701 0)
(-0.008614438241 -0.1397425958 0)
(-0.008280472419 -0.1400748878 0)
(-0.008215953887 -0.1378162959 0)
(-0.00823076204 -0.138139436 0)
(-0.008578231074 -0.1384528271 0)
(-0.004087654753 -0.09138434799 0)
(-0.004107147331 -0.09170848854 0)
(-0.004826291412 -0.09200957783 0)
(-0.004479180152 -0.09202030127 0)
(-0.004780838137 -0.09070849586 0)
(-0.004427384633 -0.09072001032 0)
(-0.004072461327 -0.0910591775 0)
(-0.004892943077 -0.0946094072 0)
(-0.004535510203 -0.09462080092 0)
(-0.004875259607 -0.09330971345 0)
(-0.004539409586 -0.09331925794 0)
(-0.004031689593 -0.08876739989 0)
(-0.004046590227 -0.08909541986 0)
(-0.00440420131 -0.08941316082 0)
(0.005145838201 -0.09161236757 0)
(0.005133562016 -0.09194038826 0)
(0.004763948349 -0.0922574385 0)
(-0.005133048258 -0.1023699742 0)
(-0.004790464176 -0.1023802614 0)
(-0.005124939516 -0.1010747374 0)
(-0.004800794769 -0.1010836901 0)
(-0.005172971987 -0.1049551115 0)
(-0.004804657674 -0.1049671323 0)
(-0.005118197626 -0.1036648194 0)
(-0.004737989634 -0.1036775576 0)
(-0.004972304183 -0.09719888554 0)
(-0.004616597578 -0.09721016737 0)
(-0.004919916034 -0.09590545884 0)
(-0.004552232954 -0.09591770086 0)
(-0.005075672175 -0.0997840396 0)
(-0.00474180764 -0.09979370464 0)
(-0.005024415726 -0.09849250072 0)
(-0.004679895366 -0.09850290614 0)
(-0.005235337765 -0.1062418126 0)
(-0.004880625399 -0.1062530045 0)
(0.003750182144 -0.1143696142 0)
(0.003393372735 -0.1143568579 0)
(0.003725521611 -0.1156682577 0)
(0.003383335925 -0.1156587031 0)
(-0.005895667335 -0.1178580647 0)
(-0.0062666096 -0.1175219598 0)
(-0.006284405993 -0.1194628141 0)
(-0.005896189947 -0.1191528686 0)
(-0.009042561691 -0.143609935 0)
(-0.008710380829 -0.1436196696 0)
(-0.004782812435 -0.143265443 0)
(-0.004767113288 -0.142943831 0)
(0.01697277808 -0.08415878683 0)
(0.01560325006 -0.08411071971 0)
(0.01428878224 -0.08143304142 0)
(0.01425763368 -0.0827383485 0)
(0.01563407697 -0.08280012399 0)
(0.01700363382 -0.08284723107 0)
(0.01291873564 -0.08138624394 0)
(0.02215018802 -0.07902075304 -3.528843884e-13)
(0.01978148212 -0.08022509659 -3.586575481e-13)
(0.01514929047 -0.1372737514 -3.590183706e-13)
(0.01526418868 -0.1347361188 0)
(0.01253459108 -0.1346610001 0)
(0.01247860833 -0.1359493341 0)
(0.01258834294 -0.1333729593 0)
(0.01122623344 -0.1333358411 0)
(0.02031662626 -0.1287894246 -3.495814749e-13)
(0.01802283736 -0.131603945 -3.574085472e-13)
(-0.001759581279 -0.1359150962 0)
(-0.002117823127 -0.1362271429 0)
(0.005266181542 -0.1293031009 0)
(0.00529197445 -0.1286581471 0)
(0.005995612332 -0.1280296443 0)
(0.005969908799 -0.1286756216 0)
(0.005944041474 -0.1293210536 0)
(0.006021121444 -0.1273841415 0)
(0.007197057115 -0.1319372083 0)
(0.00725008299 -0.1306473441 0)
(-0.0007991368068 -0.08327813784 0)
(-0.0008386686512 -0.08360602474 0)
(-0.001684675885 -0.08400090248 0)
(-0.001300917044 -0.08397259057 0)
(0.001731713533 -0.08408652481 0)
(0.001337587003 -0.0840417008 0)
(0.0008930089743 -0.08332180935 0)
(0.000895869957 -0.08365293308 0)
(0.006700508299 -0.08243124546 0)
(0.007386428035 -0.08245679112 0)
(0.008786088182 -0.08120540017 0)
(0.008799854734 -0.07988494735 0)
(0.0080447488 -0.08446743588 0)
(0.007376455439 -0.08311489784 0)
(0.00736986876 -0.08378024697 0)
(0.008058011481 -0.08381176294 0)
(0.006688845176 -0.08308564999 0)
(0.005201101584 -0.08931559001 0)
(0.004838646072 -0.08963565983 0)
(-0.008038367575 -0.1080963285 0)
(-0.00805739642 -0.1087420259 0)
(-0.00943610458 -0.1093476752 0)
(-0.008756085816 -0.1093677346 0)
(-0.009360831035 -0.1067649205 0)
(-0.008680392254 -0.1067849926 0)
(-0.008019340531 -0.1074506912 0)
(0.0001232905336 -0.1311161219 0)
(-0.0002133927199 -0.1307809257 0)
(0.002613761847 -0.1279446086 0)
(0.003236635626 -0.1292523066 0)
(0.003262711752 -0.1286071212 0)
(-0.008531187972 -0.1371602008 0)
(-0.008201022125 -0.1374930393 0)
(0.004802003489 -0.09095012873 0)
(0.005152379917 -0.09128531575 0)
(-0.009511253972 -0.1119322953 0)
(-0.00883147702 -0.1119524075 0)
(-0.008170843512 -0.1126180335 0)
(-0.006085776152 -0.1120348562 0)
(-0.006073558916 -0.1117119986 0)
(-0.005692609746 -0.1114010542 0)
(-0.005703227756 -0.1101046545 0)
(-0.006042924235 -0.1094474045 0)
(-0.006047670569 -0.1097706666 0)
(-0.008142567445 -0.1352343854 0)
(-0.008143285829 -0.135558309 0)
(-0.008493145953 -0.135871328 0)
(-0.0002734428843 -0.1327217123 0)
(7.63488915e-05 -0.1324067694 0)
(0.0009443817121 -0.1272543971 0)
(0.001273568907 -0.1275876266 0)
(0.008632629346 -0.08910787618 0)
(0.007949931008 -0.08908505173 0)
(0.00728252314 -0.08840302506 0)
(0.00729842193 -0.08774756461 0)
(0.001342974679 -0.1256462801 0)
(0.0009900874052 -0.1259601091 0)
(0.004597129997 -0.08229581254 0)
(0.004605152152 -0.08297105926 0)
(0.003901848409 -0.08358943462 0)
(0.00390396165 -0.0842620596 0)
(0.003902319627 -0.08459774214 0)
(0.00355212176 -0.0842390087 0)
(0.003212055672 -0.1208416668 0)
(0.002876411634 -0.1205074627 0)
(-0.004357893285 -0.08809881401 0)
(-0.004018687399 -0.08843800168 0)
(-0.00575161428 -0.1126912193 0)
(-0.006098572403 -0.1123573961 0)
(-0.006177817238 -0.1142934024 0)
(-0.005816935868 -0.1139809546 0)
(-0.005640497107 -0.1075208025 0)
(-0.005957962706 -0.1068654212 0)
(-0.005969254697 -0.1071880664 0)
(-0.006034967174 -0.109124419 0)
(-0.005692317544 -0.1088111234 0)
(0.004489368336 -0.1127708839 0)
(0.004125384855 -0.113082638 0)
(-0.00846830016 -0.1345779151 0)
(-0.008140472608 -0.1349106233 0)
(-0.00807036844 -0.1326520189 0)
(-0.008081886011 -0.1329735763 0)
(-0.008430046246 -0.1332859857 0)
(-0.00479777413 -0.1435862963 0)
(-0.005168113521 -0.1438925146 0)
(-0.003326323263 -0.1407153355 0)
(-0.00331206958 -0.1403938603 0)
(-0.002961726989 -0.1400791742 0)
(0.002476648749 -0.08381894082 0)
(0.002115461474 -0.08413177588 0)
(-0.008298173108 -0.1449563549 0)
(-0.007981072114 -0.1456042782 0)
(-0.007962624174 -0.1452799262 0)
(-0.006647798696 -0.1456226938 0)
(-0.006663593603 -0.1452774948 0)
(-0.005851309848 -0.1450766741 0)
(-0.006324690796 -0.1449735756 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-1.078391988e-06 -1.539404891e-06 -2.775557562e-17)
(-2.498092391e-05 -4.145914687e-05 -5.273559367e-16)
(0 0 0)
(-8.61122499e-05 -0.0002119069438 -2.72004641e-15)
(-9.362637053e-05 -0.0003037346548 -3.885780586e-15)
(-7.996618879e-05 -0.0003805745188 -4.857225733e-15)
(-2.655607679e-06 -1.143486877e-05 -1.665334537e-16)
(-6.339265646e-06 -0.0004487295136 -5.745404152e-15)
(3.611148917e-05 -0.0004313434782 -5.523359548e-15)
(6.932889655e-05 -0.0003820396973 -4.884981308e-15)
(2.313737718e-06 -1.16453955e-05 -1.665334537e-16)
(8.063462375e-05 -0.0002140139528 -2.72004641e-15)
(5.702586881e-05 -0.0001202013463 -1.526556659e-15)
(2.448823887e-05 -4.280611319e-05 -5.551115123e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.00044672827 -0.0005128763196 -4.801714582e-15)
(-0.0009159530068 -0.001146483285 -1.074140776e-14)
(-0.001424451967 -0.001960647513 -1.837419106e-14)
(-0.0005829110751 -0.0007477130811 -7.494005416e-15)
(-0.0001034943393 -0.0001231485361 -1.33226763e-15)
(-0.00226728366 -0.003902014104 -3.658184866e-14)
(-0.002500010599 -0.004920283653 -4.612976667e-14)
(-0.002569643563 -0.005906205416 -5.537237335e-14)
(-0.001588860318 -0.003389536139 -3.40283357e-14)
(-0.0008156260501 -0.001608228453 -1.740274591e-14)
(-0.002200910701 -0.00761015389 -7.133182933e-14)
(-0.001788623119 -0.008261160068 -7.741030039e-14)
(-0.001259900041 -0.00874704095 -8.193445922e-14)
(-0.0008672805551 -0.005496843925 -5.515032875e-14)
(-0.0005270617917 -0.003042501809 -3.28903571e-14)
(1.995787613e-07 -0.009154398385 -8.568146193e-14)
(0.0006485749312 -0.009061487826 -8.476552793e-14)
(0.001253188943 -0.008774756159 -8.204548152e-14)
(0.0008248584824 -0.005512229137 -5.526135105e-14)
(0.000481706382 -0.003050391455 -3.294586826e-14)
(0.002177899354 -0.007655882355 -7.152611836e-14)
(0.002436365858 -0.006863246828 -6.40876241e-14)
(0.002533179945 -0.005955296037 -5.562217353e-14)
(0.001548667899 -0.003415999806 -3.422262473e-14)
(0.0007881744324 -0.001621328207 -1.751376821e-14)
(0.002231750372 -0.003942717592 -3.683164884e-14)
(0.001865827095 -0.002931385551 -2.739475313e-14)
(0.001405721449 -0.001988007764 -1.856848009e-14)
(0.0005761058556 -0.0007612501768 -7.632783294e-15)
(0.0001041153189 -0.0001278103561 -1.387778781e-15)
(0.0004471433034 -0.0005266770278 -4.912736884e-15)
(0.0001115362735 -0.0001211942663 -1.1379786e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0005928495291 -0.0006492717353 -4.801714582e-15)
(-0.001551002176 -0.001811021189 -1.335043187e-14)
(-0.002771726665 -0.003466978574 -2.561839629e-14)
(-0.001589412742 -0.00188232347 -1.46826995e-14)
(-0.0006997320041 -0.0007822312671 -6.467049118e-15)
(-0.005396531622 -0.007882529922 -5.834221994e-14)
(-0.006542610496 -0.01043899098 -7.732703367e-14)
(-0.007445728268 -0.01309444994 -9.706124793e-14)
(-0.005655669326 -0.00940128167 -7.349676423e-14)
(-0.004015401866 -0.006289384341 -5.204170428e-14)
(-0.00828254461 -0.01832777079 -1.359745649e-13)
(-0.008163272814 -0.02074523051 -1.539046668e-13)
(-0.007690194461 -0.02294560112 -1.701971897e-13)
(-0.006322203769 -0.01776780479 -1.390554338e-13)
(-0.004982323947 -0.0131420064 -1.08829612e-13)
(-0.00580332486 -0.02650418013 -1.963984531e-13)
(-0.0044822629 -0.02779926524 -2.058353488e-13)
(-0.00298448049 -0.02874762315 -2.126632204e-13)
(-0.002561340713 -0.02289795183 -1.788014181e-13)
(-0.002124014941 -0.01752768095 -1.449118603e-13)
(0.00029558367 -0.02955657246 -2.182143355e-13)
(0.001951969959 -0.02940673441 -2.168820679e-13)
(0.003536061094 -0.02888763408 -2.128575094e-13)
(0.002921047631 -0.0230005683 -1.78940196e-13)
(0.002319451445 -0.01759870168 -1.450506382e-13)
(0.006245569213 -0.02674872005 -1.9673152e-13)
(0.007259039431 -0.02515154774 -1.848521336e-13)
(0.007981374686 -0.02323453036 -1.706690345e-13)
(0.006482787771 -0.01797192967 -1.394717675e-13)
(0.0050423787 -0.0132779697 -1.091904345e-13)
(0.008422697884 -0.01859647414 -1.365296765e-13)
(0.008116835337 -0.01599149219 -1.174338404e-13)
(0.007477205661 -0.01329781134 -9.767187059e-14)
(0.005648926525 -0.00953597857 -7.402412017e-14)
(0.00398997823 -0.006373724596 -5.243028234e-14)
(0.005383620575 -0.00800845267 -5.889733146e-14)
(0.004083757993 -0.005611945838 -4.130029652e-14)
(0.002757586855 -0.003519226464 -2.592370762e-14)
(0.00158899995 -0.001922564113 -1.496025526e-14)
(0.0007044072475 -0.0008050906516 -6.633582572e-15)
(0.0006982123949 -0.0007779294566 -5.717648577e-15)
(0.0001116302964 -0.0001170520425 -8.604228441e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0003297124478 -0.0003685208833 -2.248201625e-15)
(-0.001418403347 -0.001671989593 -1.015854068e-14)
(-0.0007204724386 -0.0008121720283 -5.162537065e-15)
(-0.0001713100995 -0.0001843923643 -1.221245327e-15)
(-0.005090487702 -0.006740039185 -4.105049634e-14)
(-0.007264452805 -0.01025743068 -6.258882301e-14)
(-0.009162448269 -0.01387678352 -8.484879466e-14)
(-0.007461163303 -0.01082147608 -6.916689443e-14)
(-0.005774532937 -0.007993139711 -5.348499421e-14)
(-0.01292099422 -0.0229313804 -1.405819905e-13)
(-0.01418285058 -0.02753665053 -1.689481888e-13)
(-0.01493218336 -0.03200244996 -1.964539642e-13)
(-0.01311918466 -0.02686608197 -1.72334369e-13)
(-0.01123392152 -0.02192523731 -1.472433286e-13)
(-0.01480234892 -0.04003948221 -2.458588888e-13)
(-0.01395757832 -0.04343591516 -2.666200594e-13)
(-0.01265752828 -0.04634778935 -2.843558722e-13)
(-0.01155813919 -0.04041535598 -2.591815651e-13)
(-0.01034427118 -0.03442598263 -2.312039449e-13)
(-0.008982217809 -0.05066269738 -3.103073354e-13)
(-0.006760523648 -0.05210268238 -3.187727859e-13)
(-0.004379784014 -0.05311331829 -3.246014568e-13)
(-0.00408692729 -0.04730824562 -3.022582185e-13)
(-0.003753393273 -0.04116250033 -2.755295991e-13)
(0.0006144802785 -0.05398522422 -3.290978601e-13)
(0.003121797158 -0.05388254722 -3.280431482e-13)
(0.005567916022 -0.05341142871 -3.247679903e-13)
(0.005177723723 -0.04757161368 -3.024525075e-13)
(0.004692637489 -0.04138582652 -2.757238882e-13)
(0.01004897057 -0.0512118802 -3.106404023e-13)
(0.01195238051 -0.04938573344 -2.992328607e-13)
(0.01352572979 -0.04703039113 -2.847166947e-13)
(0.01229781731 -0.04101755184 -2.59708921e-13)
(0.01093956469 -0.0349221608 -2.31786812e-13)
(0.01554185654 -0.04106656391 -2.482736239e-13)
(0.01576372475 -0.0372107389 -2.249034292e-13)
(0.01544910501 -0.032920375 -1.989242104e-13)
(0.01334662393 -0.02732358245 -1.728339694e-13)
(0.01139208372 -0.02231564282 -1.479927292e-13)
(0.01344263676 -0.02399561744 -1.448563491e-13)
(0.01180056685 -0.01949555793 -1.177391518e-13)
(0.009828037112 -0.01510663637 -9.131584378e-14)
(0.007902981157 -0.01162470973 -7.352451981e-14)
(0.006043714942 -0.008490561512 -5.637157408e-14)
(0.00545551126 -0.00735318058 -4.454769886e-14)
(0.003391645779 -0.004304193542 -2.609024108e-14)
(0.001662947935 -0.00199335616 -1.210143097e-14)
(0.00089805628 -0.001029701174 -6.52256027e-15)
(0.0003381865661 -0.0003701451201 -2.47024623e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001866941307 -0.0002301779135 -1.1379786e-15)
(-0.000394194834 -0.0005033458314 -2.414735079e-15)
(-1.622088227e-06 -1.856984557e-06 0)
(-0.0008469514406 -0.001056414988 -5.467848396e-15)
(-0.002757244145 -0.003616569997 -1.870725796e-14)
(-0.005184523047 -0.007171369436 -3.713696017e-14)
(-0.004202260185 -0.005598221225 -3.011479954e-14)
(-0.003213337195 -0.004116673581 -2.300937219e-14)
(-0.01097712813 -0.01705768163 -8.859579737e-14)
(-0.01386169774 -0.02296976036 -1.194322419e-13)
(-0.01645506856 -0.02921832385 -1.521283099e-13)
(-0.01485795974 -0.02541371847 -1.373623437e-13)
(-0.0131232817 -0.02158649805 -1.212918654e-13)
(-0.02013240024 -0.04177031915 -2.178257574e-13)
(-0.02101086268 -0.04762372061 -2.484956685e-13)
(-0.02118525504 -0.05292110002 -2.762512441e-13)
(-0.01999928746 -0.04817710515 -2.613742556e-13)
(-0.01837899618 -0.04266836387 -2.409739075e-13)
(-0.01961865491 -0.06166037744 -3.221312106e-13)
(-0.01785635268 -0.06450317639 -3.370081991e-13)
(-0.0157384151 -0.06672476194 -3.484434963e-13)
(-0.01519402434 -0.06240916023 -3.386180225e-13)
(-0.01445821129 -0.05739124112 -3.23935323e-13)
(-0.01061141478 -0.06877161002 -3.585742814e-13)
(-0.007831245869 -0.06893677563 0)
(-0.005048976779 -0.06900903177 0)
(-0.004959061934 -0.06635499896 -3.586297925e-13)
(-0.004821712706 -0.06282816116 -3.531896997e-13)
(0.0004579502932 -0.06916808941 0)
(0.003216703962 -0.06925147056 0)
(0.006007204984 -0.06933838747 0)
(0.006052069908 -0.0666878787 -3.586575481e-13)
(0.006006528396 -0.06316308819 -3.532729664e-13)
(0.01159630012 -0.06944883856 -3.586575481e-13)
(0.0142558237 -0.06896003778 -3.556044348e-13)
(0.01668980182 -0.06774310182 -3.487488076e-13)
(0.01618114603 -0.0633850484 -3.390898673e-13)
(0.01552303989 -0.05847527018 -3.254341241e-13)
(0.0204425841 -0.06299593819 -3.231859225e-13)
(0.02152440977 -0.05931823154 -3.040623309e-13)
(0.0219680258 -0.05477175813 -2.806921362e-13)
(0.02063703127 -0.04952229385 -2.636502128e-13)
(0.01907760442 -0.04401942765 -2.439159985e-13)
(0.02080719007 -0.04357317107 -2.233768726e-13)
(0.01922611108 -0.03726922053 -1.911804048e-13)
(0.01706763865 -0.0307874046 -1.580680031e-13)
(0.01542931354 -0.02679637661 -1.429412144e-13)
(0.01364558688 -0.02278695526 -1.265099137e-13)
(0.0115461668 -0.01827018208 -9.398037903e-14)
(0.008541876422 -0.01272856823 -6.55586696e-14)
(0.005428472505 -0.007642218828 -3.941291737e-14)
(0.00462991813 -0.006274795598 -3.361200207e-14)
(0.003584020865 -0.004669917255 -2.603472993e-14)
(0.0004191211669 -0.0005244162722 -2.609024108e-15)
(0 0 0)
(0 0 0)
(1.328594677e-05 -1.643344713e-05 -8.326672685e-17)
(0 0 0)
(-6.400924091e-05 -8.617201802e-05 -3.885780586e-16)
(-0.001048758305 -0.001477827625 -6.439293543e-15)
(-0.001189174483 -0.001728129399 -7.299716387e-15)
(-0.0006281125061 -0.0008296608455 -3.858025011e-15)
(-0.002711904539 -0.003882529793 -1.748601264e-14)
(-0.00534890778 -0.008051322957 -3.627653733e-14)
(-0.008500885042 -0.01349039729 -6.086797733e-14)
(-0.00774697912 -0.01189978244 -5.548339566e-14)
(-0.006856930729 -0.01018390962 -4.912736884e-14)
(-0.01526674367 -0.0271985667 -1.230682223e-13)
(-0.01837572639 -0.0348937256 -1.580680031e-13)
(-0.02101627082 -0.04273809023 -1.937894289e-13)
(-0.01998339502 -0.0393560114 -1.844358e-13)
(-0.01911425354 -0.03641488668 -1.765532165e-13)
(-0.02429719228 -0.05763628282 -2.617073225e-13)
(-0.0247708487 -0.06411705128 -2.912114994e-13)
(-0.02454107767 -0.06990261359 -3.175515406e-13)
(-0.02398432857 -0.06624919047 -3.110567359e-13)
(-0.02324840087 -0.06219169745 -3.021194406e-13)
(-0.02171789841 -0.07735897992 -3.511080315e-13)
(-0.01940714602 -0.07896505808 -3.581024366e-13)
(-0.01671993136 -0.07925920033 0)
(-0.01662058268 -0.07665152317 -3.591016373e-13)
(-0.01646631002 -0.07385005786 -3.5826897e-13)
(0.0002293487983 -0.07686059737 0)
(0.001649056377 -0.07690256813 0)
(0.00310035798 -0.07695521677 0)
(0.003121377197 -0.0756694362 0)
(0.003140430117 -0.07438413709 0)
(0.02395413931 -0.0763080195 -3.404776461e-13)
(0.02507711222 -0.07218044108 -3.217981437e-13)
(0.02460345556 -0.06841106341 -3.15303339e-13)
(0.02394255124 -0.06425664406 -3.064493104e-13)
(0.0251719198 -0.06074588144 -2.70700129e-13)
(0.02402711038 -0.05363791511 -2.391142839e-13)
(0.0221339288 -0.04595568101 -2.050026815e-13)
(0.02098070673 -0.04212433131 -1.942335182e-13)
(0.01958526517 -0.03798468753 -1.812994199e-13)
(0.01654340703 -0.03010644855 -1.345590306e-13)
(0.01318355866 -0.02258637034 -1.010858064e-13)
(0.009736787823 -0.01575385567 -7.058242879e-14)
(0.008828537568 -0.01381999618 -6.400435737e-14)
(0.007782338725 -0.01177359846 -5.642708523e-14)
(0.001725257139 -0.002467682876 -1.074140776e-14)
(0.0001970629652 -0.0002605691969 -1.165734176e-15)
(0.000314429575 -0.0004291798072 -1.859623566e-15)
(0.0004161888591 -0.000585915637 -2.47024623e-15)
(8.718883152e-05 -0.000111564002 -5.273559367e-16)
(-0.0002340034319 -0.0003545965047 -1.360023205e-15)
(-0.001564781605 -0.002481355252 -9.603429163e-15)
(-0.001684626831 -0.002745784359 -1.03528297e-14)
(-0.001262936642 -0.001891021991 -7.743805597e-15)
(-0.003804996628 -0.006150386946 -2.450817327e-14)
(-0.006813508101 -0.01157566294 -4.615752225e-14)
(-0.01027273367 -0.01839425377 -7.346900865e-14)
(-0.009699763672 -0.0168744764 -6.938893904e-14)
(-0.009493145598 -0.01603231255 -6.791789353e-14)
(-0.01741331797 -0.03497014607 -1.399713678e-13)
(-0.02058346971 -0.0440300453 -1.764421942e-13)
(-0.02320196205 -0.05310795651 -2.130240428e-13)
(-0.02264790637 -0.0503949762 -2.081390615e-13)
(-0.02235384698 -0.04831235265 -2.056410597e-13)
(-0.02621247999 -0.06984208457 -2.804145804e-13)
(-0.02645601408 -0.07681721429 -3.084754674e-13)
(-0.02585259586 -0.08247369533 -3.310962615e-13)
(-0.02559520867 -0.07947754362 -3.286260153e-13)
(-0.02537463098 -0.07662618923 -3.265998583e-13)
(0.01276645685 -0.08794142226 0)
(0.01413367522 -0.08798640519 0)
(0.01416671663 -0.08667606214 0)
(0.01420002334 -0.08536688436 0)
(0.02452217558 -0.08920942805 -3.522737657e-13)
(0.02618461312 -0.08593327114 -3.391176229e-13)
(0.02605391043 -0.08283552383 -3.365918655e-13)
(0.02590014723 -0.0797221798 -3.337607968e-13)
(0.02717844349 -0.07457400001 -2.94181346e-13)
(0.02640083902 -0.06693412077 -2.64094302e-13)
(0.02478670453 -0.05838660172 -2.305100555e-13)
(0.0240744649 -0.05500666963 -2.236266727e-13)
(0.02368787276 -0.05246396634 -2.197686477e-13)
(0.01941923663 -0.04002941932 -1.583178033e-13)
(0.01597909902 -0.03098876214 -1.226796442e-13)
(0.01232038751 -0.02255405313 -8.940070906e-14)
(0.01137395991 -0.02021176209 -8.251732631e-14)
(0.01102933249 -0.01901087347 -7.999156892e-14)
(0.00282860439 -0.004557231738 -1.762479052e-14)
(0.0007812241432 -0.001167215552 -4.635181128e-15)
(0.0008771232304 -0.001348226944 -5.218048216e-15)
(0.0009126230307 -0.001442065509 -5.412337245e-15)
(0.0006364186039 -0.0009234432372 -3.774758284e-15)
(-0.0003933003751 -0.000662384118 -2.303712776e-15)
(-0.001932321461 -0.003405224373 -1.185163079e-14)
(-0.002010823223 -0.003632260578 -1.235123115e-14)
(-0.001776158611 -0.002973340596 -1.090794122e-14)
(-0.004308695089 -0.007761876982 -2.772782004e-14)
(-0.007456122333 -0.01411452778 -5.048739204e-14)
(-0.01101486976 -0.02196726557 -7.868705687e-14)
(-0.01084871955 -0.02108460845 -7.752132269e-14)
(-0.01065060721 -0.02015752766 -7.613354391e-14)
(-0.01825402368 -0.04078204212 -1.463829058e-13)
(-0.02142728856 -0.05095079648 -1.830757768e-13)
(-0.02402287444 -0.06106769647 -2.195743587e-13)
(-0.02384464953 -0.05911326098 -2.181865799e-13)
(-0.02363607537 -0.0571030077 -2.165212454e-13)
(-0.02692557127 -0.07949484487 -2.861044734e-13)
(-0.02709234132 -0.08704852651 -3.133049375e-13)
(-0.0264022491 -0.09306577272 -3.348710198e-13)
(-0.02628192597 -0.09046079146 -3.341771304e-13)
(-0.02614944363 -0.08782236649 -3.33288952e-13)
(0.01246569691 -0.09837130996 0)
(0.0138305604 -0.09841271486 0)
(0.01387032968 -0.09711032114 0)
(0.01390960812 -0.09580827303 0)
(0.02440773627 -0.1002204336 -3.551603456e-13)
(0.02625518195 -0.09709058237 -3.438638263e-13)
(0.02630420123 -0.09450211243 -3.435030038e-13)
(0.02630050632 -0.09174123901 -3.425038031e-13)
(0.02762029398 -0.08514429709 -3.014533068e-13)
(0.02700760262 -0.07682775833 -2.720323966e-13)
(0.02553146639 -0.06740276369 -2.38781217e-13)
(0.02547935577 -0.06544177959 -2.379485498e-13)
(0.02526447928 -0.06308796802 -2.355893258e-13)
(0.02032203119 -0.04685729316 -1.662558979e-13)
(0.01689270898 -0.03661734209 -1.300348718e-13)
(0.01319342649 -0.02697712834 -9.592326933e-14)
(0.01309214326 -0.02606692757 -9.511835763e-14)
(0.01279893317 -0.02479615866 -9.295342274e-14)
(0.003088215506 -0.005535217029 -1.92346139e-14)
(0.001055565643 -0.001759097358 -6.272760089e-15)
(0.001029206721 -0.001759607505 -6.133982211e-15)
(0.0009449292418 -0.00165626351 -5.63438185e-15)
(0.001016801527 -0.001650573071 -6.050715484e-15)
(-0.0005797744445 -0.001074213427 -3.413935801e-15)
(-0.002314783865 -0.004487434102 -1.421085472e-14)
(-0.002418715678 -0.00479547919 -1.484923295e-14)
(-0.002108342531 -0.003901361961 -1.293409824e-14)
(-0.004824258518 -0.009580724312 -3.105848911e-14)
(-0.008093226691 -0.01688403048 -5.478950627e-14)
(-0.01173851244 -0.0257880305 -8.373857163e-14)
(-0.0115325557 -0.0247527921 -8.22952817e-14)
(-0.01133754814 -0.02376064921 -8.09352585e-14)
(-0.01905144876 -0.04682796965 -1.523781101e-13)
(-0.02221824154 -0.05807758829 -1.891542478e-13)
(-0.02478383683 -0.0691931785 -2.255140519e-13)
(-0.02457175861 -0.06707394965 -2.238487173e-13)
(-0.02436892808 -0.06500122506 -2.22238894e-13)
(-0.02757370473 -0.08920885243 -2.909616992e-13)
(-0.02766624977 -0.09728532743 -3.17329496e-13)
(-0.02689559299 -0.1036117487 -3.37868622e-13)
(-0.02676518233 -0.100935521 -3.370637103e-13)
(-0.02663747784 -0.09827940395 -3.362587986e-13)
(0.01213183826 -0.1087694488 0)
(0.01349513394 -0.108809065 0)
(0.01353801236 -0.1075131306 0)
(0.01358105222 -0.1062158198 0)
(0.02394189525 -0.1098870429 -3.532729664e-13)
(0.02567914187 -0.1059408182 -3.404221349e-13)
(0.0258831065 -0.1039895698 -3.420874695e-13)
(0.02601941284 -0.1017513397 -3.4283687e-13)
(0.02669100367 -0.09147439651 -2.938760346e-13)
(0.02594662087 -0.08193915744 -2.632893903e-13)
(0.02461770643 -0.07205676213 -2.316202785e-13)
(0.02503627605 -0.0714851425 -2.352285033e-13)
(0.02519706762 -0.0701344791 -2.363664819e-13)
(0.01941712769 -0.04953433727 -1.594557819e-13)
(0.01603254989 -0.03841934147 -1.237898672e-13)
(0.01240682747 -0.02802732133 -9.039990978e-14)
(0.0127538003 -0.02812921517 -9.287015601e-14)
(0.0128691134 -0.02769396024 -9.364731213e-14)
(0.00238771942 -0.00471154384 -1.487698853e-14)
(0.0008240199011 -0.001515343371 -4.912736884e-15)
(0.0006316035645 -0.001188732561 -3.747002708e-15)
(0.0004998962443 -0.0009623699985 -2.969846591e-15)
(0.0009154735709 -0.001644083031 -5.440092821e-15)
(-0.0008681953076 -0.001755013951 -5.079270338e-15)
(-0.002838306247 -0.006001841601 -1.740274591e-14)
(-0.002899438665 -0.006258728958 -1.779132397e-14)
(-0.002529928089 -0.005127380627 -1.551536677e-14)
(-0.005419611734 -0.01176062236 -3.486100297e-14)
(-0.008816863271 -0.02009073354 -5.961897642e-14)
(-0.01255170741 -0.03010378826 -8.942846463e-14)
(-0.01234331993 -0.02898362983 -8.79851747e-14)
(-0.01213410991 -0.02788155826 -8.651412919e-14)
(-0.01993432314 -0.05342143778 -1.589839371e-13)
(-0.02308804447 -0.0657447268 -1.95815586e-13)
(-0.02561432468 -0.0778291974 -2.319255898e-13)
(-0.02540332179 -0.07562994142 -2.303157665e-13)
(-0.0251908743 -0.07344701071 -2.286781875e-13)
(-0.02826650724 -0.09931257198 -2.961519918e-13)
(-0.02827029534 -0.1078248947 -3.215483435e-13)
(-0.02740399295 -0.114360382 -3.409494909e-13)
(-0.02727674926 -0.1116599626 -3.402000903e-13)
(-0.02714829326 -0.1089629657 -3.394229342e-13)
(0.01177337241 -0.119131055 0)
(0.01313574949 -0.1191692623 0)
(0.01318131595 -0.1178758109 0)
(0.0132279493 -0.1165808301 0)
(0.02317396678 -0.117878894 -3.468614285e-13)
(0.02461115641 -0.1122631233 -3.302358387e-13)
(0.02490731315 -0.1108831938 -3.332056853e-13)
(0.02523264963 -0.1095747709 -3.365363543e-13)
(0.02513709281 -0.09489110651 -2.791100684e-13)
(0.02414517411 -0.08385112244 -2.466915561e-13)
(0.02235155528 -0.07183992784 -2.114697306e-13)
(0.02323948765 -0.07304023862 -2.196021143e-13)
(0.02372125046 -0.07284543691 -2.238487173e-13)
(0.01717665099 -0.04802299113 -1.415256801e-13)
(0.01385178057 -0.03635100098 -1.072197886e-13)
(0.01038107341 -0.02566777955 -7.577272143e-14)
(0.01097099383 -0.02654138653 -8.004708008e-14)
(0.01135726795 -0.02686894636 -8.282263764e-14)
(0.001299820788 -0.002799462902 -8.10462808e-15)
(0.0003120852827 -0.0006277118661 -1.859623566e-15)
(0.0001425122413 -0.0002927929171 -8.604228441e-16)
(8.78818055e-05 -0.0001843484983 -5.273559367e-16)
(0.000421645094 -0.0008298990504 -2.525757381e-15)
(-0.001266451247 -0.002773211138 -7.410738689e-15)
(-0.003499823498 -0.008014540989 -2.145505995e-14)
(-0.003563217667 -0.008316169216 -2.184363801e-14)
(-0.003046393719 -0.006709690464 -1.867950239e-14)
(-0.005883833291 -0.01384835418 -3.783084956e-14)
(-0.009369482572 -0.02314706831 -6.331046798e-14)
(-0.01355364812 -0.03521657184 -9.639511411e-14)
(-0.01327663384 -0.03383568685 -9.445222382e-14)
(-0.01301720033 -0.03252447173 -9.267586698e-14)
(-0.0209998658 -0.06088155062 -1.669220318e-13)
(-0.02412652359 -0.07425910951 -2.037536806e-13)
(-0.02659366151 -0.08725823078 -2.395583731e-13)
(-0.02632799708 -0.08480062972 -2.37476705e-13)
(-0.02607593886 -0.08241009529 -2.355060591e-13)
(-0.02905569908 -0.1100045957 -3.021749517e-13)
(-0.02894115117 -0.1188108053 -3.263223025e-13)
(-0.02794949125 -0.1253939911 -3.443356711e-13)
(-0.02780783579 -0.1226014644 -3.434474927e-13)
(-0.02766942714 -0.1198301576 -3.425870698e-13)
(0.01138460365 -0.1294658068 0)
(0.02205670066 -0.1234065388 -3.348432642e-13)
(0.02312187813 -0.1156971106 -3.138600491e-13)
(0.02355876236 -0.1152678605 -3.188838082e-13)
(0.02389062392 -0.1142358673 -3.224365219e-13)
(0.02292367091 -0.09451809962 -2.564337631e-13)
(0.0216262254 -0.0818929165 -2.22238894e-13)
(0.01960075244 -0.06860391712 -1.86267668e-13)
(0.020452975 -0.07013421555 -1.94178007e-13)
(0.02129309511 -0.07149852437 -2.019495682e-13)
(0.01389287159 -0.04220461194 -1.147415496e-13)
(0.01060674266 -0.03022741555 -8.223977055e-14)
(0.007349812124 -0.01972693372 -5.370703882e-14)
(0.008149707346 -0.02144439102 -5.95357097e-14)
(0.00908996827 -0.0234401934 -6.639133687e-14)
(0.0003599626863 -0.0008403260347 -2.248201625e-15)
(1.512376323e-06 -3.303324073e-06 -2.775557562e-17)
(0 0 0)
(0 0 0)
(3.365573422e-05 -7.205368847e-05 -1.942890293e-16)
(-0.00183879801 -0.004344010149 -1.079691891e-14)
(-0.004375293752 -0.0108055633 -2.68673972e-14)
(-0.004525528695 -0.01140721252 -2.786659792e-14)
(-0.003926970698 -0.009335824499 -2.406408406e-14)
(-0.0074076116 -0.01877893397 -4.760081218e-14)
(-0.01114557891 -0.02963999055 -7.516209877e-14)
(-0.01509618794 -0.04220438729 -1.071087663e-13)
(-0.01464889651 -0.04023441788 -1.040001418e-13)
(-0.013956587 -0.03765289931 -9.917067167e-14)
(-0.02256161526 -0.07026955671 -1.786071291e-13)
(-0.02560640846 -0.0845954367 -2.151889777e-13)
(-0.02794459937 -0.09832355484 -2.502165142e-13)
(-0.02743222063 -0.09491849228 -2.460531778e-13)
(-0.02716731708 -0.09238810368 -2.440270208e-13)
(-0.03005637653 -0.1217771048 -3.100297796e-13)
(-0.02974579379 -0.130543999 -3.323175068e-13)
(-0.02856074343 -0.1368366886 -3.482492072e-13)
(-0.02839209552 -0.1338914515 -3.471389842e-13)
(-0.02824238375 -0.1310429245 -3.461952947e-13)
(-0.01226395145 -0.1377004468 0)
(-0.01158614197 -0.1377200796 0)
(-0.01156853696 -0.137073799 0)
(-0.01155122062 -0.1364291312 0)
(-0.0005321843851 -0.1381941048 0)
(0.0001356330553 -0.138207492 0)
(0.000169696632 -0.137565309 0)
(0.01218114173 -0.1423795471 0)
(0.01485980652 -0.1418337199 -3.575473251e-13)
(0.0150146032 -0.1396412155 -3.584910147e-13)
(0.01912958436 -0.1329270165 -3.347877531e-13)
(0.02040060192 -0.1246665903 -3.139155602e-13)
(0.02096244066 -0.1142013263 -2.875200078e-13)
(0.0215220275 -0.1148541948 -2.944589017e-13)
(0.02215214007 -0.1157717715 -3.023414852e-13)
(0.01977731845 -0.08834219678 -2.224886941e-13)
(0.01808097604 -0.0740599619 -1.865729793e-13)
(0.01613455323 -0.06102349908 -1.538214001e-13)
(0.01716443065 -0.06372347907 -1.635358515e-13)
(0.01798826656 -0.06551161793 -1.712519015e-13)
(0.01061688101 -0.03480653827 -8.784639682e-14)
(0.00764132067 -0.02349287599 -5.931366509e-14)
(0.004835158466 -0.0139979317 -3.536060333e-14)
(0.005486260094 -0.01559431937 -4.013456234e-14)
(0.006022587971 -0.01680027207 -4.402034293e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.001334048581 -0.003386745404 -7.854827899e-15)
(-0.003557663619 -0.009443958691 -2.189914916e-14)
(-0.003017611102 -0.008146542097 -1.859623566e-14)
(-0.004333293776 -0.01111493193 -2.667310817e-14)
(-0.007165011311 -0.01957869537 -4.624078898e-14)
(-0.01081920841 -0.03101013407 -7.327471963e-14)
(-0.01469057877 -0.04425706264 -1.046662756e-13)
(-0.0152851342 -0.04526349956 -1.088851231e-13)
(-0.015623841 -0.04547478645 -1.113276138e-13)
(-0.02203788728 -0.07391892349 -1.750544154e-13)
(-0.02505503636 -0.08910538867 -2.111366637e-13)
(-0.02739204804 -0.1037041049 -2.458311332e-13)
(-0.02800265979 -0.1042718398 -2.514932707e-13)
(-0.02833047437 -0.1037627984 -2.547129174e-13)
(-0.02958753987 -0.1288609282 -3.055888875e-13)
(-0.02936169918 -0.1384483885 -3.28320704e-13)
(-0.02828784848 -0.1455529257 -3.450850716e-13)
(-0.02849748286 -0.1444224099 -3.483602296e-13)
(-0.02857045254 -0.1426089452 -3.500810752e-13)
(-0.0005439242842 -0.149716266 0)
(0.0008311282403 -0.1497575565 0)
(0.0008699023568 -0.1484663034 0)
(0.01167061726 -0.1514175118 -3.561595463e-13)
(0.01405331655 -0.1474287365 -3.466393839e-13)
(0.0142402337 -0.1462466177 -3.497480083e-13)
(0.01446102016 -0.1453714355 -3.537170556e-13)
(0.01737988516 -0.1313055789 -3.085309785e-13)
(0.01809098862 -0.1197004535 -2.812194921e-13)
(0.01825794467 -0.1074192382 -2.523536935e-13)
(0.01906126056 -0.1100874038 -2.630118345e-13)
(0.0197022927 -0.1116752137 -2.714217739e-13)
(0.01643317152 -0.07901108922 -1.856848009e-13)
(0.01454929817 -0.06401729085 -1.50490731e-13)
(0.01221514346 -0.04957834265 -1.166011732e-13)
(0.01311279994 -0.05231093664 -1.251221349e-13)
(0.01425099538 -0.05587837871 -1.359745649e-13)
(0.006862436199 -0.02412578812 -5.681566329e-14)
(0.004285788492 -0.01412692572 -3.327893516e-14)
(0.002118309472 -0.006575819374 -1.548761119e-14)
(0.002799785692 -0.008545068593 -2.04836148e-14)
(0.003344452726 -0.01003196927 -2.445266212e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001365420507 -0.0003700586221 -8.049116929e-16)
(-0.001193382992 -0.003384473827 -7.355227538e-15)
(-0.000664389445 -0.001914449909 -4.107825191e-15)
(-0.002416659857 -0.006633751726 -1.487698853e-14)
(-0.004058977385 -0.01186599074 -2.622901896e-14)
(-0.006932694837 -0.02126730081 -4.701794509e-14)
(-0.01016831049 -0.0327962526 -7.255307466e-14)
(-0.01156030328 -0.03665812588 -8.243405958e-14)
(-0.01280205685 -0.03990993783 -9.123257705e-14)
(-0.01677178302 -0.06023587685 -1.33421052e-13)
(-0.01971122138 -0.07504463023 -1.662836535e-13)
(-0.02217414088 -0.08983070277 -1.99146255e-13)
(-0.02387638326 -0.0950770871 -2.142730438e-13)
(-0.02532339533 -0.09913911115 -2.271793864e-13)
(-0.02520376971 -0.117260062 -2.600974991e-13)
(-0.02564974546 -0.1290253525 -2.862154957e-13)
(-0.02537868406 -0.1390585041 -3.084477118e-13)
(-0.02648330765 -0.1427657472 -3.218814104e-13)
(-0.02731773969 -0.14495107 -3.322619957e-13)
(-0.02291815182 -0.1533371028 -3.399502901e-13)
(-0.02092261394 -0.1576293534 -3.493594303e-13)
(-0.01857636936 -0.1602887863 -3.550770789e-13)
(-0.01871574937 -0.159403473 -3.588518371e-13)
(-0.01330238446 -0.1622095668 -3.58990615e-13)
(-0.01055720726 -0.1623445628 0)
(-0.007807096214 -0.1624271439 0)
(-0.007729529964 -0.1598440377 0)
(-0.002305995538 -0.1625584787 -3.590461262e-13)
(0.0004469888615 -0.1622518378 -3.581857033e-13)
(0.00318029072 -0.1611455932 -3.555489236e-13)
(0.003270385207 -0.160114866 -3.589628594e-13)
(0.008351209211 -0.1548153381 -3.412548022e-13)
(0.01060848229 -0.1489524535 -3.282096817e-13)
(0.01250490544 -0.1410856502 -3.107791802e-13)
(0.01303784058 -0.1447836688 -3.240185897e-13)
(0.01346615052 -0.1469347085 -3.341771304e-13)
(0.01481401334 -0.1195916162 -2.633171459e-13)
(0.01507839007 -0.1064280497 -2.343125693e-13)
(0.01470587435 -0.09215414164 -2.029210133e-13)
(0.01578579153 -0.09749911258 -2.180755576e-13)
(0.01671189647 -0.1016376045 -2.310374114e-13)
(0.01217843292 -0.06227744137 -1.371958103e-13)
(0.01020562204 -0.04779144238 -1.053324095e-13)
(0.007956374167 -0.03437068669 -7.577272143e-14)
(0.009007601241 -0.03833735283 -8.587575095e-14)
(0.009943813044 -0.04167476217 -9.484080188e-14)
(0.003432597807 -0.01285452002 -2.836619828e-14)
(0.001612167831 -0.005665643778 -1.25177646e-14)
(0.0003967916446 -0.001314560081 -2.91433544e-15)
(0.0006750524496 -0.002201439811 -4.94049246e-15)
(0.00118790961 -0.003813072036 -8.687495168e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0002588206684 -0.000757521762 -1.58206781e-15)
(-0.0007077802265 -0.002206390436 -4.579669977e-15)
(-0.00212940773 -0.006974759015 -1.448841047e-14)
(-0.004095832452 -0.01412296726 -2.933764343e-14)
(-0.005573933644 -0.0189063318 -3.988476216e-14)
(-0.007120015637 -0.02375174068 -5.090372568e-14)
(-0.00885777568 -0.0340875891 -7.088774012e-14)
(-0.01127519584 -0.04603983339 -9.575673587e-14)
(-0.01349714152 -0.05868867601 -1.221245327e-13)
(-0.01585061654 -0.06769781989 -1.430799923e-13)
(-0.01811870022 -0.07601925428 -1.632027846e-13)
(-0.01686037357 -0.0842675906 -1.754429935e-13)
(-0.01783535408 -0.09638256143 -2.007005673e-13)
(-0.01828397335 -0.1075989554 -2.240707619e-13)
(-0.02041254363 -0.1178831056 -2.493283358e-13)
(-0.02232893236 -0.1266266312 -2.720323966e-13)
(-0.01762056628 -0.1264222869 -2.632338791e-13)
(-0.01657950737 -0.1337694022 -2.784716902e-13)
(-0.01514180366 -0.1396876774 -2.907396546e-13)
(-0.01641556347 -0.1485569642 -3.139433158e-13)
(-0.01742812983 -0.1549842105 -3.326505738e-13)
(-0.01135276013 -0.1473991181 -3.065603327e-13)
(-0.009139420988 -0.1493282844 -3.104461133e-13)
(-0.006798751819 -0.1500518782 -3.11833892e-13)
(-0.007304509698 -0.1576769269 -3.326783293e-13)
(-0.00765073325 -0.1623454277 -3.478328736e-13)
(-0.00196688356 -0.1479216158 -3.071709553e-13)
(0.0004098452932 -0.1449887401 -3.009537064e-13)
(0.002678679046 -0.1407146814 -2.919608999e-13)
(0.002826173059 -0.1495977046 -3.150812944e-13)
(0.002957556242 -0.1560040524 -3.336220189e-13)
(0.006616564736 -0.127885317 -2.651767694e-13)
(0.00814088167 -0.1193003302 -2.473021787e-13)
(0.009277292724 -0.1093554405 -2.266520305e-13)
(0.01024038119 -0.1197514525 -2.519096043e-13)
(0.01110485834 -0.1285793705 -2.745859096e-13)
(0.01018677944 -0.08611855361 -1.784405956e-13)
(0.009916059989 -0.07339324488 -1.521005544e-13)
(0.009182092256 -0.06042389031 -1.252331572e-13)
(0.01069422001 -0.06960441176 -1.464106614e-13)
(0.01213881411 -0.078082912 -1.667277427e-13)
(0.006594578422 -0.03552360772 -7.366329768e-14)
(0.004964334487 -0.0245280732 -5.08759701e-14)
(0.003310474299 -0.01511336415 -3.136380045e-14)
(0.004453958229 -0.02006466601 -4.227174166e-14)
(0.005639944258 -0.02506432411 -5.359601651e-14)
(0.0006623657103 -0.002629765804 -5.467848396e-15)
(5.205677433e-05 -0.0001942518819 -4.163336342e-16)
(0 0 0)
(0 0 0)
(2.679038363e-05 -9.154446482e-05 -1.942890293e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001722880546 -0.0006321660992 -1.249000903e-15)
(-0.0007255912931 -0.002623182586 -5.218048216e-15)
(-0.00160547805 -0.005715721032 -1.151856388e-14)
(-0.001931881779 -0.007945883009 -1.557087792e-14)
(-0.00323332349 -0.01414242366 -2.772782004e-14)
(-0.00462463217 -0.02158905535 -4.232725281e-14)
(-0.006612014197 -0.03033416156 -6.034062139e-14)
(-0.008803259022 -0.03967732381 -8.010259123e-14)
(-0.007196734359 -0.0387902876 -7.607803276e-14)
(-0.008189106906 -0.04783255456 -9.381384558e-14)
(-0.008898120409 -0.05672840884 -1.112721026e-13)
(-0.01122842128 -0.07013961555 -1.396105453e-13)
(-0.01362058889 -0.08337564058 -1.684485884e-13)
(-0.009340115681 -0.07296323764 -1.431355034e-13)
(-0.009061993979 -0.07985061889 -1.566524688e-13)
(-0.008473102632 -0.08568983311 -1.680877659e-13)
(-0.01024933846 -0.1011155286 -2.012279232e-13)
(-0.01199766894 -0.1155840192 -2.334521465e-13)
(-0.006508655599 -0.0937820669 -1.83908444e-13)
(-0.005228546227 -0.09589596366 -1.879885136e-13)
(-0.003823370064 -0.09667198705 -1.894873147e-13)
(-0.004633002581 -0.1125198319 -2.23737695e-13)
(-0.005425542789 -0.1270525084 -2.563227408e-13)
(-0.0008779839076 -0.09418051444 -1.844913111e-13)
(0.0005392278918 -0.09094466724 -1.781352843e-13)
(0.001838486903 -0.08643975509 -1.692812557e-13)
(0.002093054293 -0.1019555168 -2.025046797e-13)
(0.002316628141 -0.1165041521 -2.34728903e-13)
(0.003860841129 -0.07397305373 -1.44800838e-13)
(0.004491248142 -0.06628133067 -1.29757316e-13)
(0.004825379531 -0.05787030062 -1.132705041e-13)
(0.005974739663 -0.07144938137 -1.418309914e-13)
(0.007120344422 -0.08484709176 -1.708355679e-13)
(0.004579452432 -0.03991695629 -7.813194536e-14)
(0.004040901741 -0.03098813827 -6.06736883e-14)
(0.003293393396 -0.02254980604 -4.41591208e-14)
(0.004644866447 -0.03149754618 -6.253331186e-14)
(0.006110751035 -0.04103843217 -8.262834861e-14)
(0.001522772233 -0.008596073423 -1.68476344e-14)
(0.0007288085176 -0.0037852684 -7.410738689e-15)
(0.0001747533149 -0.0008410269468 -1.637578961e-15)
(0.0006402883946 -0.003040611545 -6.050715484e-15)
(0.001351510694 -0.006334180098 -1.276756478e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-7.460756206e-05 -0.0003709470849 -6.938893904e-16)
(-0.0005858513415 -0.002871086114 -5.384581669e-15)
(-0.001548684224 -0.007473482707 -1.423861029e-14)
(-0.00077635518 -0.004486648053 -8.326672685e-15)
(-0.001236637556 -0.007773465023 -1.440514374e-14)
(-0.001674155862 -0.01153279296 -2.13995488e-14)
(-0.003034941898 -0.02053081925 -3.860800568e-14)
(-0.004731659733 -0.03140131189 -5.98687766e-14)
(-0.002285605051 -0.01947721121 -3.613775945e-14)
(-0.002400788631 -0.02321484364 -4.304889778e-14)
(-0.00237410539 -0.02654070878 -4.923839114e-14)
(-0.003636630364 -0.03968484785 -7.463474283e-14)
(-0.00510669984 -0.05434387289 -1.036115638e-13)
(-0.001925912614 -0.03137582685 -5.820344207e-14)
(-0.001544440801 -0.03267692936 -6.061817714e-14)
(-0.001096811754 -0.03315134636 -6.147859999e-14)
(-0.001649825322 -0.04769508704 -8.967826481e-14)
(-0.002302027114 -0.0635820919 -1.211808431e-13)
(-0.0001434612358 -0.03157673447 -5.856426455e-14)
(0.0002904244508 -0.02959117413 -5.487277299e-14)
(0.0006517538043 -0.02690599993 -4.987676938e-14)
(0.0009468504362 -0.0401456408 -7.543965452e-14)
(0.001254338658 -0.05490144817 -1.045830089e-13)
(0.001059869529 -0.01993782622 -3.697042672e-14)
(0.00108167889 -0.01598641609 -2.964295476e-14)
(0.0009855491273 -0.01199399559 -2.223221607e-14)
(0.001747842517 -0.02116116667 -3.974598428e-14)
(0.002669953753 -0.03220185375 -6.133982211e-14)
(0.0005375635061 -0.004837264636 -8.965050924e-15)
(0.0002741697051 -0.002183889165 -4.05231404e-15)
(6.903016445e-05 -0.0004934892963 -9.159339953e-16)
(0.0004536732525 -0.003204749484 -6.022959909e-15)
(0.001147676238 -0.008018377646 -1.526556659e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001338778641 -0.0009522973621 -1.720845688e-15)
(0 0 0)
(0 0 0)
(-1.593489118e-08 -1.92001945e-07 0)
(-0.0001552038794 -0.001843299334 -3.275157923e-15)
(-0.0006109204159 -0.007128973364 -1.287858709e-14)
(-1.028574319e-05 -0.0001835775803 -3.330669074e-16)
(-1.217418253e-05 -0.000286125958 -4.996003611e-16)
(-9.546086619e-06 -0.0003284661881 -5.828670879e-16)
(-0.0001111280979 -0.003742632658 -6.661338148e-15)
(-0.0003253003735 -0.01063275197 -1.920685833e-14)
(-4.096558377e-07 -0.0001974280092 -3.60822483e-16)
(8.834537137e-07 -7.734038001e-05 -1.387778781e-16)
(5.092378941e-08 -2.043696852e-06 0)
(4.848543875e-05 -0.001932316686 -3.441691376e-15)
(0.0001828150578 -0.00730818707 -1.321165399e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(8.736902398e-05 -0.001080743693 -1.942890293e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.01153393905 -0.1357836216 0)
(-0.01151652127 -0.1351375756 0)
(-0.01219444895 -0.1351178792 0)
(0.009809039418 -0.1345871439 0)
(0.00844876477 -0.1345509216 0)
(0.007088463096 -0.1345155993 0)
(0.007032576922 -0.135804717 0)
(0.006973877295 -0.1370915281 0)
(-0.01144736715 -0.1461566097 0)
(-0.01142798009 -0.1455109831 0)
(-0.01211554836 -0.1454903366 0)
(-0.002359434723 -0.1458685763 0)
(-0.003177838955 -0.1457587207 0)
(-0.00319715401 -0.1464043494 0)
(-0.003216511084 -0.1470505774 0)
(-0.001814955054 -0.13720501 0)
(0.006914197265 -0.1383769885 0)
(0.006851951543 -0.1396618915 0)
(0.008213539038 -0.1396983935 0)
(-0.008634058722 -0.0833699967 0)
(-0.008576254157 -0.08204299286 0)
(-0.009951515523 -0.08201985723 0)
(-0.01132558567 -0.08199505176 0)
(-0.002458662277 -0.07421714702 0)
(-0.002517295239 -0.07550173806 0)
(-0.002580042619 -0.07678794719 0)
(-0.001165649826 -0.07682153061 0)
(0.01394895071 -0.09450808859 0)
(0.01398621861 -0.0932009954 0)
(0.0126203549 -0.09315889984 0)
(-0.01333816326 -0.1027717792 0)
(-0.01470311018 -0.1027311525 0)
(-0.01473996963 -0.1040226433 0)
(-0.01477668024 -0.1053131776 0)
(-0.01447950335 -0.09497261251 0)
(-0.01451719634 -0.09626786179 0)
(-0.01455466787 -0.09756173642 0)
(-0.01318905912 -0.09760232291 0)
(0.01362378253 -0.1049168181 0)
(0.01366612704 -0.1036166638 0)
(0.01230214016 -0.1035760659 0)
(-0.01363235896 -0.1131030649 0)
(-0.01499611124 -0.1130626543 0)
(-0.01503232687 -0.1143547049 0)
(-0.01506840628 -0.115646219 0)
(-0.01481338904 -0.1066036519 0)
(-0.01485011947 -0.1078948462 0)
(-0.01348570897 -0.1079353367 0)
(0.0132734372 -0.115285995 0)
(0.01331796921 -0.1139929931 0)
(0.01195549014 -0.1139541821 0)
(-0.01391963041 -0.1234357597 0)
(-0.01528230624 -0.1233955015 0)
(-0.01531754201 -0.1246869209 0)
(-0.01535265057 -0.1259781039 0)
(-0.01510436929 -0.1169378568 0)
(-0.0151402195 -0.1182297382 0)
(-0.01377712545 -0.118270069 0)
(-0.007379298359 -0.1203980483 0)
(-0.01419896766 -0.1337662305 0)
(-0.01556219072 -0.1337261961 0)
(-0.0155973209 -0.1350180991 0)
(-0.01563268569 -0.1363098149 0)
(-0.01538770994 -0.1272696487 0)
(-0.01542265291 -0.1285613171 0)
(-0.01406003528 -0.1286015135 0)
(-0.007670373214 -0.130725404 0)
(-0.008020713358 -0.1310384086 0)
(-0.008028375812 -0.1313615831 0)
(-0.007563487467 -0.1268519019 0)
(0.003859822046 -0.1305589931 0)
(0.003184291977 -0.1305422514 0)
(0.003156665968 -0.1311880509 0)
(0.003129801413 -0.1318330926 0)
(-0.01436598882 -0.1441683582 0)
(-0.01573471103 -0.1441254561 0)
(-0.01555320967 -0.1453871095 0)
(-0.01559200181 -0.1466789627 0)
(-0.01566833067 -0.1376008616 0)
(-0.01570427566 -0.1388918994 0)
(-0.01433985615 -0.1389320898 0)
(-0.01169388757 -0.1415942165 0)
(-0.01167540595 -0.1409487429 0)
(-0.01165725372 -0.1403022385 0)
(-0.01233524501 -0.1402826603 0)
(0.006078569918 -0.09491099668 0)
(-0.007243496607 -0.1042455875 0)
(-0.007924233598 -0.1042254464 0)
(-0.007943253435 -0.1048708437 0)
(-0.007810080891 -0.1003499404 0)
(-0.007829166135 -0.1009955159 0)
(-0.007848203989 -0.1016415133 0)
(-0.007167708809 -0.1016617072 0)
(-0.005913169798 -0.1055763308 0)
(-0.005902158645 -0.1052546381 0)
(-0.005891165476 -0.1049323443 0)
(-0.006238570153 -0.1049217922 0)
(0.005857273995 -0.101430579 0)
(0.006218185228 -0.1014415366 0)
(0.006226299587 -0.1011153128 0)
(0.006235619401 -0.1007889449 0)
(0.005772583451 -0.1053369379 0)
(0.006046492859 -0.09621722478 0)
(0.006245995836 -0.1004633896 0)
(0.006257610702 -0.1001385921 0)
(0.005896272245 -0.1001278618 0)
(-0.006279250462 -0.1062099252 0)
(-0.005935448329 -0.1062202489 0)
(-0.005924263152 -0.1058979609 0)
(0.006424546418 -0.1163913095 0)
(0.006446865846 -0.1157440294 0)
(0.006469310684 -0.1150965728 0)
(0.005790635942 -0.1150777549 0)
(0.005721824174 -0.10663732 0)
(-0.007519474575 -0.1255621874 0)
(-0.007419932552 -0.1216892455 0)
(-0.008037658333 -0.131684709 0)
(-0.008048015492 -0.1320076225 0)
(-0.007699590178 -0.1320183854 0)
(-0.01212499204 -0.1325348298 0)
(-0.01144700616 -0.132554588 0)
(-0.0114297336 -0.1319093784 0)
(-0.01141225941 -0.1312634542 0)
(0.003102055433 -0.1324776874 0)
(0.003072769804 -0.1331217555 0)
(0.003749267714 -0.1331384662 0)
(-0.01240904012 -0.14286618 0)
(-0.01173092882 -0.1428857618 0)
(-0.01171253838 -0.1422393246 0)
(-0.01303698444 -0.09241794169 0)
(-0.01440320222 -0.09237763719 0)
(-0.0144414545 -0.09367551217 0)
(-0.01415839273 -0.08455100754 0)
(-0.01420428485 -0.08586930415 0)
(-0.01424534373 -0.08717264408 0)
(-0.0128783861 -0.08721231017 0)
(-0.006774113449 -0.08869222036 0)
(-0.007456425459 -0.08867253045 0)
(-0.007477169137 -0.08932533506 0)
(-0.007497778216 -0.08997765724 0)
(-0.006680332219 -0.086051124 0)
(-0.007090822949 -0.09907725932 0)
(-0.007771739948 -0.09905711284 0)
(-0.007790977629 -0.09970376482 0)
(-0.007656076198 -0.09517528624 0)
(-0.007675453703 -0.09582259465 0)
(-0.007694776611 -0.09647008487 0)
(-0.00701307958 -0.09649025478 0)
(0.01158322352 -0.1243013807 0)
(-5.607303927e-05 -0.1414082758 0)
(-1.422783942e-05 -0.1407697497 0)
(-0.0006827575075 -0.1407562811 0)
(-0.006935481272 -0.09389808102 0)
(-0.007617180105 -0.09387797111 0)
(-0.007636735272 -0.094527196 0)
(-0.007517796102 -0.09062829158 0)
(-0.007537938137 -0.09127906031 0)
(-0.006855993889 -0.09129899742 0)
(0.006640756363 -0.08639910045 0)
(0.007327076308 -0.08643131839 0)
(0.007338166415 -0.08576599639 0)
(0.007350426092 -0.08510572544 0)
(0.005514791303 -0.1228439149 0)
(0.006216311082 -0.122215949 0)
(0.00624010895 -0.1215694339 0)
(0.005417655784 -0.1254287156 0)
(0.005700876952 -0.1176689028 0)
(0.006379262493 -0.1176873518 0)
(0.006402154375 -0.1170390078 0)
(0.0062635432 -0.1209230281 0)
(0.006287206106 -0.1202750075 0)
(0.00560923878 -0.1202566312 0)
(-0.001368263168 -0.08004954686 0)
(-0.00139124555 -0.08069210465 0)
(-0.0006171233721 -0.08069213834 0)
(0.0001323276651 -0.08070794076 0)
(-0.004520333244 -0.084059979 0)
(-0.004482511583 -0.0833884445 0)
(-0.005180985547 -0.08339337893 0)
(-0.005882303468 -0.08340742262 0)
(0.0009191316701 -0.08073787308 0)
(0.001670617057 -0.0807761557 0)
(0.001674297938 -0.08012977526 0)
(0.003539328612 -0.08559824524 0)
(-0.007653703428 -0.1294342679 0)
(-0.003627585777 -0.08679276099 0)
(-0.00398316691 -0.08711670069 0)
(-0.003569663863 -0.0854408492 0)
(-0.005833390714 -0.1029953329 0)
(-0.005827663348 -0.1026724006 0)
(-0.00619870819 -0.1036305117 0)
(-0.005849085224 -0.1036411905 0)
(-0.005840451936 -0.1033182853 0)
(0.005855438893 -0.1027336914 0)
(0.005821864288 -0.1040357907 0)
(0.00601800099 -0.09752205912 0)
(0.005973277281 -0.09882544514 0)
(0.004460591056 -0.114068623 0)
(0.004449888262 -0.1143922467 0)
(0.004792991969 -0.1144024294 0)
(0.002480518795 -0.1221150602 0)
(0.002837176604 -0.1218020651 0)
(0.002440078939 -0.1234087856 0)
(-0.0006528791654 -0.1336828746 0)
(-0.003691202178 -0.1413525094 0)
(-0.01563079394 -0.1479708158 0)
(-0.01566956806 -0.1492620688 0)
(-0.01429449153 -0.14930336 0)
(-0.008736006236 -0.1475310451 0)
(-0.008755453297 -0.1481766699 0)
(-0.008067945036 -0.1481973146 0)
(-0.007380556779 -0.1482179557 0)
(-0.0008651423403 -0.1433034489 0)
(-0.002459993 -0.08440086251 0)
(-0.002425655466 -0.08404875617 0)
(-0.0027862839 -0.08406518078 0)
(-0.007338827958 -0.1191063056 0)
(-0.007609770901 -0.1281432297 0)
(-0.006693138521 -0.1482385977 0)
(-0.006005564257 -0.1482592443 0)
(-0.005986663202 -0.1476130026 0)
(0.006122892171 -0.09360897991 0)
(0.005685786578 -0.1079354416 0)
(0.005645818736 -0.1092364481 0)
(-0.007491988129 -0.1242708356 0)
(-0.007460321874 -0.1229782881 0)
(0.002397627759 -0.124703892 0)
(-0.00375753881 -0.1426352475 0)
(-0.00490478193 -0.1448570631 0)
(0.01422941085 -0.08405222343 0)
(0.01288582646 -0.08268618315 0)
(0.005316827138 -0.1280125046 0)
(0.007359069485 -0.08443988374 0)
(0.006682283903 -0.08375015308 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.000285493302 -0.000517861733 -6.050715484e-15)
(-5.966727857e-05 -0.0001182656237 -1.498801083e-15)
(-0.0002589019634 -0.001358425576 -1.590394483e-14)
(-4.8260033e-05 -0.00043055202 -5.495603972e-15)
(0.0002291790369 -0.001362107799 -1.59317004e-14)
(8.532926085e-05 -0.0003056740326 -3.913536162e-15)
(0.0002749134166 -0.0005235723169 -6.133982211e-15)
(1.239189278e-06 -1.849915976e-06 -2.775557562e-17)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0001561605956 -0.0001642348133 -1.443289932e-15)
(-0.0001079119085 -0.0001144474462 -1.082467449e-15)
(-0.002585803424 -0.003803677506 -3.341771304e-14)
(-0.001894435363 -0.00289713693 -2.714495295e-14)
(-0.003715967517 -0.009166548343 -8.062994716e-14)
(-0.002467310959 -0.006813966414 -6.389333507e-14)
(-0.001684957432 -0.01277697069 -1.122157922e-13)
(-0.0006500820224 -0.009046893044 -8.471001678e-14)
(0.001756563364 -0.01282310641 -1.123268145e-13)
(0.001774221484 -0.008299639899 -7.757683385e-14)
(0.003710653672 -0.009251198477 -8.090750292e-14)
(0.002461798197 -0.004966311429 -4.637956685e-14)
(0.002558299022 -0.003853319957 -3.372302437e-14)
(0.0009079033867 -0.001167068623 -1.090794122e-14)
(0.0001613263976 -0.0001735382404 -1.526556659e-15)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-3.089491304e-06 -3.169464768e-06 -2.775557562e-17)
(-5.880764477e-05 -6.065152188e-05 -4.440892099e-16)
(-0.004187634867 -0.005517241808 -3.874678356e-14)
(-0.00409977869 -0.005523765612 -4.085620731e-14)
(-0.009324668763 -0.01729922551 -1.219302437e-13)
(-0.008038412135 -0.01575171004 -1.168232178e-13)
(-0.009043714928 -0.02854810573 -2.012556788e-13)
(-0.006889536342 -0.0248764164 -1.844358e-13)
(-0.003384122028 -0.03490279605 -2.453037773e-13)
(-0.001370925285 -0.02933439132 -2.167988011e-13)
(0.004136250509 -0.03508373324 -2.454980663e-13)
(0.004986490185 -0.02799782959 -2.060851489e-13)
(0.009484692039 -0.02893600994 -2.017830347e-13)
(0.008376042991 -0.02103151503 -1.544597783e-13)
(0.009413029947 -0.01759023556 -1.226241331e-13)
(0.006543962208 -0.01060343399 -7.790990075e-14)
(0.004135097845 -0.005544134007 -3.874678356e-14)
(0.001528592143 -0.001818633237 -1.340594302e-14)
(3.738839345e-05 -3.897381295e-05 -2.775557562e-16)
(0 0 0)
(0 0 0)
(-0.002267736601 -0.0027893185 -1.623701174e-14)
(-0.003074916135 -0.003834624314 -2.331468352e-14)
(-0.01128298745 -0.017815381 -1.043054532e-13)
(-0.01120621262 -0.01830937958 -1.121047699e-13)
(-0.01663225876 -0.037181731 -2.187972026e-13)
(-0.01513758797 -0.03620245834 -2.222944051e-13)
(-0.0136241692 -0.05205750031 -3.060884879e-13)
(-0.01097345907 -0.04875306147 -2.988720382e-13)
(-0.004626713239 -0.05835540179 -3.417544026e-13)
(-0.001903006211 -0.05373105577 -3.279598815e-13)
(0.005846144865 -0.05867865775 -3.418931804e-13)
(0.007897219872 -0.05253656564 -3.190503417e-13)
(0.01466791147 -0.05306278616 -3.077260669e-13)
(0.01480843336 -0.04443283142 -2.687849943e-13)
(0.01729948964 -0.03835654439 -2.21711538e-13)
(0.01464537496 -0.02843597469 -1.717237463e-13)
(0.01176110525 -0.01885766744 -1.091349233e-13)
(0.007660341269 -0.01100429394 -6.65856259e-14)
(0.002576887891 -0.003223200434 -1.873501354e-14)
(9.350427262e-07 -1.008584833e-06 0)
(0.0004677619555 -0.0005311553048 -3.219646771e-15)
(-0.005865346538 -0.008412507779 -4.202194148e-14)
(-0.008006798567 -0.01171698113 -6.075695502e-14)
(-0.01788277334 -0.03291376883 -1.652566972e-13)
(-0.01858712504 -0.03556220427 -1.853239784e-13)
(-0.0223196021 -0.05774173861 -2.905731211e-13)
(-0.0207789606 -0.05782588593 -3.019806627e-13)
(-0.01618751976 -0.07057889867 -3.550215677e-13)
(-0.01328298051 -0.06810439522 -3.554101458e-13)
(-0.00519048995 -0.07286029409 0)
(-0.005137283013 -0.07157560018 0)
(-0.002292807742 -0.06908687016 0)
(-0.002371412716 -0.07165156785 0)
(-0.0009963163538 -0.07169159844 0)
(0.0003789034711 -0.07173241349 0)
(-0.003748917012 -0.07161272613 0)
(-0.003794861203 -0.07289595655 0)
(0.005972626866 -0.07319790562 0)
(0.004576202262 -0.07314894676 0)
(0.003160838155 -0.07181570999 0)
(0.004603333299 -0.07186443074 0)
(0.005997525846 -0.07191212144 0)
(0.001758567305 -0.07177384243 0)
(0.008818072406 -0.0694342638 0)
(0.01701838126 -0.07160654387 -3.551048344e-13)
(0.01878554078 -0.06574326057 -3.378131108e-13)
(0.02306870848 -0.05970114279 -2.949585021e-13)
(0.02173204648 -0.04947156308 -2.535471832e-13)
(0.01852458894 -0.03466605247 -1.715017017e-13)
(0.01445330455 -0.02437035337 -1.252331572e-13)
(0.006634943138 -0.009689505173 -4.812816812e-14)
(0.00120608073 -0.001528073392 -7.882583475e-15)
(0.003035523233 -0.004048625306 -2.089994844e-14)
(-0.00908853098 -0.01488660051 -6.505906924e-14)
(-0.01189461702 -0.01996374493 -9.020562075e-14)
(-0.02181042759 -0.04574932713 -2.008948563e-13)
(-0.02302678791 -0.05041834541 -2.288169654e-13)
(-0.02499249431 -0.07332586895 -3.225197887e-13)
(-0.02347093787 -0.07430811948 -3.374522883e-13)
(-0.01680591343 -0.08185656948 0)
(-0.01260606842 -0.0793596048 0)
(-0.01265299384 -0.08066431201 0)
(-0.01406500637 -0.08192506121 0)
(-0.01402359305 -0.08062991764 0)
(-0.01397858086 -0.07932892453 0)
(-0.01410837363 -0.08322727482 0)
(-0.005416186189 -0.07673761547 0)
(-0.006810440505 -0.07670998181 0)
(-0.008358765339 -0.07805019449 0)
(-0.008446258492 -0.07938788574 0)
(0.003111184826 -0.07825066183 0)
(0.005950633069 -0.07707894157 0)
(0.004524766902 -0.0770132437 0)
(0.02558447817 -0.07618273799 -3.289313266e-13)
(0.0255196603 -0.06699865909 -2.985667269e-13)
(0.02303745846 -0.04941892542 -2.135236432e-13)
(0.01959018729 -0.03800371461 -1.696698337e-13)
(0.01047607521 -0.01750179853 -7.596701046e-14)
(0.003596185494 -0.005233520733 -2.350897255e-14)
(0.006453055635 -0.009888839546 -4.435340983e-14)
(-0.01038849369 -0.01913218667 -7.427392035e-14)
(-0.01389549967 -0.02630374137 -1.05165876e-13)
(-0.023366247 -0.05497047881 -2.143007993e-13)
(-0.02511245818 -0.06183065745 -2.481626016e-13)
(-0.02599247758 -0.08511371769 -3.320954622e-13)
(-0.02446346292 -0.08658372181 -3.474720511e-13)
(0.01406155608 -0.09059411196 0)
(0.01409721437 -0.08928862199 0)
(0.01550193634 -0.08803466248 0)
(0.02630933099 -0.08904816562 -3.416433803e-13)
(0.02709630619 -0.0809923584 -3.195221865e-13)
(0.0251584473 -0.06104131067 -2.342848138e-13)
(0.02241546177 -0.04929159683 -1.947331185e-13)
(0.01267610399 -0.02388165777 -9.200973317e-14)
(0.005381095735 -0.008853511582 -3.516631431e-14)
(0.008695653447 -0.01507039432 -5.981326545e-14)
(-0.0111775491 -0.02285889235 -7.982503547e-14)
(-0.01470328883 -0.03098370261 -1.111055692e-13)
(-0.02419736381 -0.06302979918 -2.209343819e-13)
(-0.02588842297 -0.07071456301 -2.544076061e-13)
(-0.02652065029 -0.09567158344 -3.355926648e-13)
(-0.02492041541 -0.09729844457 -3.499700529e-13)
(0.01374935386 -0.10101505 0)
(0.01379021273 -0.09971437053 0)
(0.01519524209 -0.09845417437 0)
(0.02615905798 -0.09950878328 -3.436417817e-13)
(0.0273558319 -0.09199481642 -3.257116798e-13)
(0.02543332257 -0.06896761817 -2.382261055e-13)
(0.02326132474 -0.05726891478 -2.030042801e-13)
(0.01311351692 -0.02751730885 -9.539591339e-14)
(0.006032440337 -0.01107597049 -3.946842853e-14)
(0.009480863696 -0.01834371464 -6.528111385e-14)
(-0.01193545798 -0.02682329396 -8.512635041e-14)
(-0.01547952091 -0.03591213164 -1.16739951e-13)
(-0.02498698778 -0.07130896759 -2.270961197e-13)
(-0.02660031457 -0.07971472859 -2.599309656e-13)
(-0.02702214852 -0.1062836187 -3.386457781e-13)
(-0.02533078242 -0.107927352 -3.518019209e-13)
(-0.01004156803 -0.1067447794 0)
(0.01340719593 -0.1114035707 0)
(0.01345053635 -0.1101082508 0)
(0.01485848782 -0.108848743 0)
(0.02547724957 -0.1078667829 -3.38784556e-13)
(0.02666933428 -0.09987880376 -3.208544541e-13)
(0.02420230566 -0.07258361943 -2.280675648e-13)
(0.02233767326 -0.0609032622 -1.958988527e-13)
(0.0118491913 -0.02740077546 -8.637535132e-14)
(0.005475501624 -0.01109767983 -3.58602037e-14)
(0.008796319003 -0.01879380223 -6.06736883e-14)
(-0.01288636033 -0.0315506614 -9.175993299e-14)
(-0.01634482167 -0.04137268999 -1.230127111e-13)
(-0.02590069419 -0.08027733502 -2.342293026e-13)
(-0.02737021366 -0.08917476255 -2.658706588e-13)
(-0.02753421513 -0.1170806482 -3.417544026e-13)
(-0.02574142588 -0.1186489084 -3.535782778e-13)
(-0.01033932314 -0.1170786008 0)
(0.01304066541 -0.1217557461 0)
(0.01308821556 -0.1204622342 0)
(0.0243230524 -0.1136269842 -3.273215032e-13)
(0.02528734542 -0.1044933395 -3.073374888e-13)
(0.02194413857 -0.07211280891 -2.078615058e-13)
(0.01985545301 -0.05937607558 -1.74887882e-13)
(0.009589349025 -0.02421745041 -7.002731728e-14)
(0.00403757885 -0.008950672559 -2.645106356e-14)
(0.007017826956 -0.01640402016 -4.84889906e-14)
(-0.01402774298 -0.03714075487 -9.969802761e-14)
(-0.01739980847 -0.04768310997 -1.306177388e-13)
(-0.02698828565 -0.09016101603 -2.427502643e-13)
(-0.02826435814 -0.09934018275 -2.728095527e-13)
(-0.02810904281 -0.1282714136 -3.454181385e-13)
(-0.02616084809 -0.1294807012 -3.554101458e-13)
(-0.01062923524 -0.1274092344 0)
(0.02261638058 -0.1156760479 -3.078370892e-13)
(0.02342529723 -0.105943893 -2.873812299e-13)
(0.01892801874 -0.06760093696 -1.80050419e-13)
(0.01696519498 -0.0551850416 -1.499356195e-13)
(0.006881520799 -0.01883565678 -5.032085859e-14)
(0.002267964848 -0.005457593132 -1.487698853e-14)
(0.004392625051 -0.01114406835 -3.036459972e-14)
(-0.01543498249 -0.04401095978 -1.096622793e-13)
(-0.0189855379 -0.05594023884 -1.420807916e-13)
(-0.02825191822 -0.101349343 -2.532141163e-13)
(-0.02945135529 -0.1108891611 -2.82274204e-13)
(-0.02864980946 -0.1399487563 -3.496647416e-13)
(-0.02659299836 -0.1404074614 -3.571865026e-13)
(-0.01162132675 -0.1390118008 0)
(-0.01160375057 -0.1383664802 0)
(-0.01090971074 -0.1377396109 0)
(6.36249831e-05 -0.1394903001 0)
(9.996382619e-05 -0.1388491463 0)
(0.0008061151832 -0.1382217398 0)
(0.01467281691 -0.1437313586 -3.559097461e-13)
(0.01723244671 -0.1387303736 -3.495259637e-13)
(0.02030783811 -0.1128721536 -2.791655795e-13)
(0.02075593388 -0.1019094028 -2.566002966e-13)
(0.0151086152 -0.05819042245 -1.44079193e-13)
(0.01351729423 -0.04747093548 -1.197097976e-13)
(0.004097936731 -0.01207821646 -2.997602166e-14)
(0.0007787514201 -0.002021557944 -5.107025913e-15)
(0.002459899937 -0.00673131264 -1.701416785e-14)
(-0.01385532135 -0.04246197012 -9.869882689e-14)
(-0.01851198247 -0.05876130079 -1.390554338e-13)
(-0.02649794626 -0.1020069459 -2.377265051e-13)
(-0.02892612078 -0.1171314535 -2.777500452e-13)
(-0.02790737499 -0.1458048583 -3.398670234e-13)
(-0.02645527407 -0.1499575538 -3.553823902e-13)
(-0.0108180561 -0.148115334 0)
(-0.01013054784 -0.1481359787 0)
(0.0007923361061 -0.1510494096 0)
(0.002206186765 -0.1497988471 0)
(0.01380009386 -0.1477375788 -3.415878691e-13)
(0.01600043554 -0.1406593203 -3.305689056e-13)
(0.01747618131 -0.1045599686 -2.415845302e-13)
(0.01768596384 -0.093609019 -2.199351812e-13)
(0.01116148646 -0.04606410679 -1.065814104e-13)
(0.009581922581 -0.03609669272 -8.493206138e-14)
(0.001656982009 -0.005231328911 -1.212918654e-14)
(4.582459935e-06 -1.27706386e-05 -2.775557562e-17)
(0.0006178454353 -0.001813947579 -4.274358645e-15)
(-0.008670611232 -0.02844256764 -6.19226892e-14)
(-0.01352359696 -0.04596516529 -1.017241846e-13)
(-0.0202422325 -0.08344527437 -1.820210649e-13)
(-0.02403282226 -0.1040620593 -2.307876112e-13)
(-0.02399184387 -0.1336958614 -2.91822122e-13)
(-0.02444004805 -0.1471782004 -3.264055692e-13)
(-0.01815121688 -0.1588785766 -3.464173393e-13)
(-0.01600111822 -0.1616711337 -3.579636587e-13)
(-0.007819647732 -0.163920632 -3.567424134e-13)
(-0.005056979165 -0.1625097252 0)
(0.003075455087 -0.1598380977 -3.471667398e-13)
(0.005841781938 -0.1587929049 -3.501920975e-13)
(0.01186090408 -0.1357019117 -2.942923683e-13)
(0.01393607093 -0.1312426727 -2.890188089e-13)
(0.01348399448 -0.08564868041 -1.856848009e-13)
(0.01371672204 -0.07725583145 -1.701416785e-13)
(0.006821291657 -0.02989429768 -6.489253579e-14)
(0.005625232815 -0.02256122283 -4.976574708e-14)
(0.0001682382596 -0.0005661059663 -1.249000903e-15)
(0 0 0)
(0 0 0)
(-0.002750702654 -0.009639320567 -1.973421426e-14)
(-0.006404114275 -0.02329813213 -4.843347945e-14)
(-0.01112367711 -0.04924549707 -1.009192729e-13)
(-0.01539218171 -0.07157510977 -1.489919299e-13)
(-0.01599751784 -0.09599228352 -1.968702978e-13)
(-0.01820409516 -0.1176684401 -2.450539771e-13)
(-0.01365024206 -0.1285862781 -2.635947016e-13)
(-0.01337611332 -0.1442094251 -3.000377724e-13)
(-0.006160710806 -0.139720835 -2.860767179e-13)
(-0.00438908326 -0.1495901385 -3.107514246e-13)
(0.002510514264 -0.129570901 -2.648992137e-13)
(0.00477164576 -0.135027369 -2.80053758e-13)
(0.008230230797 -0.097614528 -1.993682996e-13)
(0.00997097324 -0.0982133169 -2.03531636e-13)
(0.007639539564 -0.05079795969 -1.037780972e-13)
(0.008043379453 -0.04764573233 -9.878209362e-14)
(0.002258936339 -0.01044930365 -2.137179322e-14)
(0.001812634931 -0.00769541131 -1.595945598e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0008610626823 -0.003340605771 -6.550315845e-15)
(-0.002914777379 -0.01383903442 -2.672861932e-14)
(-0.005980879717 -0.02992592446 -5.867528685e-14)
(-0.00670840205 -0.04364392494 -8.440470545e-14)
(-0.009286863033 -0.06518794318 -1.278699369e-13)
(-0.00673790313 -0.06989430784 -1.351418977e-13)
(-0.00760731939 -0.09036166076 -1.772193503e-13)
(-0.003035400527 -0.08013935147 -1.548761119e-13)
(-0.002352738021 -0.0960981461 -1.883215806e-13)
(0.001556167499 -0.07054897474 -1.362521207e-13)
(0.002962705383 -0.08074439667 -1.580957587e-13)
(0.003710245762 -0.0446153677 -8.612555114e-14)
(0.004851756653 -0.04898600735 -9.586775818e-14)
(0.00211043165 -0.01459337143 -2.817190925e-14)
(0.002419002041 -0.01496521815 -2.930988785e-14)
(3.616707911e-07 -1.764554013e-06 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.0003615067246 -0.001932741508 -3.580469254e-15)
(-0.0006958026275 -0.004874535122 -8.909539773e-15)
(-0.002036144514 -0.01551246472 -2.878253191e-14)
(-0.001356674777 -0.01551237657 -2.839395385e-14)
(-0.00221057569 -0.02930130856 -5.434541706e-14)
(-0.0006539212761 -0.02060381736 -3.771982726e-14)
(-0.0006177105203 -0.03277972187 -6.07847106e-14)
(0.0003900783019 -0.01578379813 -2.889355422e-14)
(0.0009142045261 -0.02363816751 -4.38260539e-14)
(0.0004216979049 -0.005168115999 -9.464651285e-15)
(0.0007920794187 -0.008194026391 -1.518229986e-14)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-4.499152501e-06 -6.472715514e-05 -1.110223025e-16)
(0 0 0)
(-4.588881351e-06 -0.0002947040283 -5.273559367e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0.009172106586 -0.09435624023 0)
(0.00885410358 -0.1047763554 0)
(0.009095898092 -0.09696413049 0)
(-0.01026549506 -0.1144959829 0)
(0.007827572819 -0.1151338158 0)
(0.008507205799 -0.1151527226 0)
(0.008769521393 -0.1073751059 0)
(-0.01055763987 -0.1248269699 0)
(-0.01083985183 -0.1351571741 0)
(-0.01148173668 -0.1338451818 0)
(-0.01149909807 -0.1344913496 0)
(0.007143989255 -0.1332264707 0)
(0.005726813797 -0.1344791555 0)
(-0.01074035183 -0.1455316314 0)
(-0.01163577586 -0.1442529843 0)
(-0.01140859304 -0.1448653566 0)
(-0.00296273855 -0.1452144611 0)
(-0.003865809236 -0.1457380621 0)
(-0.002163370978 -0.1375201744 0)
(0.005203752203 -0.1447501184 0)
(0.006651565159 -0.1435111457 0)
(0.006720132047 -0.1422297357 0)
(0.00548856938 -0.1396251554 0)
(0.006787000305 -0.1409468934 0)
(-0.006494092271 -0.08204697347 0)
(-0.006529274354 -0.08271460489 0)
(-0.007262591919 -0.08339749861 0)
(-0.007226339899 -0.08272023622 0)
(-0.00718908477 -0.08204556837 0)
(-0.007287113298 -0.08405210799 0)
(-0.008510132326 -0.08070900796 0)
(-0.004017694509 -0.07676573671 0)
(-0.002668657299 -0.07808178749 0)
(0.007368764187 -0.07714903153 0)
(0.008785309863 -0.07722531976 0)
(0.008778530718 -0.07591107842 0)
(0.008798075045 -0.07855421447 0)
(0.01020278587 -0.07731262628 0)
(0.0153518261 -0.09324362378 0)
(0.01402481541 -0.09189964749 0)
(-0.01462905705 -0.10014704 0)
(-0.01466617092 -0.1014390035 0)
(-0.01606883713 -0.1026905024 0)
(-0.01459192156 -0.0988543564 0)
(0.01503005753 -0.1036571398 0)
(0.01370799515 -0.102316375 0)
(-0.01492331455 -0.1104783839 0)
(-0.01495978281 -0.1117708473 0)
(-0.01636082175 -0.1130221548 0)
(-0.01621531001 -0.1078543323 0)
(-0.01488674071 -0.1091864042 0)
(-0.01011648336 -0.1093276049 0)
(0.01468074288 -0.114031993 0)
(0.01336283546 -0.11269886 0)
(-0.0152115545 -0.1208133318 0)
(-0.01524695227 -0.1221041457 0)
(-0.01664654034 -0.1233551365 0)
(-0.01650463 -0.1181892478 0)
(-0.01517595151 -0.1195216832 0)
(-0.01041270544 -0.1196623731 0)
(0.004024555228 -0.1169750596 0)
(-0.01549238821 -0.1311436375 0)
(-0.01552720216 -0.1324350095 0)
(-0.01829443907 -0.1336453524 0)
(-0.01692750666 -0.1336858586 0)
(-0.01678712882 -0.1285210048 0)
(-0.01545745065 -0.1298521491 0)
(-0.01069999058 -0.1299915242 0)
(-0.01139483982 -0.1306173482 0)
(0.00321061651 -0.1298971935 0)
(0.002509519129 -0.1305258928 0)
(-0.01577829816 -0.1414749919 0)
(-0.01581657512 -0.1427756887 0)
(-0.01847551866 -0.1440416529 0)
(-0.01710466212 -0.144083478 0)
(-0.01843898411 -0.1388109819 0)
(-0.01707085165 -0.1388515241 0)
(-0.01574099528 -0.1401827337 0)
(-0.01098087889 -0.140321648 0)
(-0.01163908112 -0.1396570559 0)
(-0.01028569836 -0.1533027911 0)
(-0.01032449049 -0.1545946442 0)
(-0.008949413968 -0.1546359354 0)
(-0.007574379444 -0.1546772253 0)
(-0.01169956702 -0.154553353 0)
(-0.004785470261 -0.1534679535 0)
(-0.004824262395 -0.1547598066 0)
(-0.00344920987 -0.1548010971 0)
(-0.00619932092 -0.154718516 0)
(-0.004630367744 -0.1483011397 0)
(-0.00394281148 -0.1483217858 0)
(-0.003235874142 -0.1476962047 0)
(-0.005127733389 -0.09069777891 0)
(-0.005243688685 -0.09459851457 0)
(0.009245674428 -0.0917462888 0)
(-0.00788623591 -0.1029340499 0)
(-0.007905204753 -0.103579749 0)
(-0.009285703978 -0.1041850442 0)
(-0.008604908786 -0.1042052471 0)
(-0.008529057382 -0.1016212486 0)
(-0.007867259861 -0.1022881107 0)
(-0.005455495517 -0.1010652918 0)
(-0.005536409306 -0.1049434775 0)
(-0.005869398122 -0.1042868493 0)
(-0.005880215499 -0.1046096889 0)
(-0.005277161099 -0.0958940107 0)
(-0.00541203701 -0.09977423943 0)
(0.00893680118 -0.1021743654 0)
(0.009617772776 -0.1021946937 0)
(0.009638220229 -0.101543754 0)
(0.009658509296 -0.1008920888 0)
(0.009597228741 -0.1028448498 0)
(0.006211401733 -0.1017674401 0)
(0.006568597831 -0.101452119 0)
(0.006608266918 -0.1001490616 0)
(0.00627061103 -0.099813656 0)
(0.009017459954 -0.09957027221 0)
(0.009698722553 -0.09959090953 0)
(0.009718580792 -0.09893959177 0)
(0.009678645926 -0.1002415001 0)
(-0.01019121273 -0.1119122376 0)
(-0.005946688715 -0.1065427755 0)
(-0.005587697439 -0.1062308715 0)
(0.004068570721 -0.1156782585 0)
(0.008596109082 -0.1125640713 0)
(0.007148290844 -0.1151152198 0)
(0.006491384697 -0.1144494655 0)
(0.008683507612 -0.1099715312 0)
(-0.01048543546 -0.1222444234 0)
(-0.008390093158 -0.1319974706 0)
(-0.008059081871 -0.1323301543 0)
(-0.0114643261 -0.1331993758 0)
(-0.01077021672 -0.1325741901 0)
(0.002280584426 -0.1356816613 0)
(0.002398787781 -0.1331056609 0)
(0.003044830014 -0.1337664046 0)
(-0.007995913956 -0.1459305403 0)
(-0.01173439214 -0.1435430971 0)
(-0.01105461399 -0.1429051695 0)
(-0.00664146599 -0.1459610024 0)
(-0.01432630665 -0.0897828659 0)
(-0.01436466794 -0.09108037126 0)
(-0.01428590474 -0.08847740427 0)
(-0.007412753521 -0.08736017043 0)
(-0.007434672196 -0.08801610473 0)
(-0.008138736028 -0.08865279254 0)
(-0.007389738228 -0.08670171665 0)
(-0.007733408014 -0.09776458529 0)
(-0.007752585692 -0.09841123908 0)
(-0.008452895155 -0.09903689914 0)
(-0.008376353638 -0.09644991856 0)
(-0.007714085106 -0.09711709507 0)
(0.01299358933 -0.1230474706 0)
(0.0008956075302 -0.1285472717 0)
(0.0006585025622 -0.1407847257 0)
(2.391944066e-05 -0.1401299714 0)
(-0.007577813545 -0.09257898852 0)
(-0.007597642956 -0.09322934625 0)
(-0.00829893894 -0.0938578594 0)
(-0.00822000239 -0.0912591196 0)
(-0.007557938546 -0.09192911262 0)
(0.007313408247 -0.08709049126 0)
(0.008011747347 -0.08645844808 0)
(0.009315866088 -0.08913277073 0)
(0.006333507013 -0.1189810978 0)
(0.00635599744 -0.1183341231 0)
(0.007057942641 -0.1177059897 0)
(0.006965651649 -0.1202934583 0)
(0.006310610983 -0.1196275798 0)
(-0.002225433174 -0.1388079656 0)
(-0.002826436278 -0.08067913271 0)
(-0.002109517466 -0.08068434918 0)
(-0.001418446626 -0.08133595309 0)
(-0.003580757192 -0.08069987862 0)
(-0.004359281781 -0.08138445372 0)
(-0.00441144721 -0.08206246341 0)
(-0.003790102677 -0.08339428827 0)
(-0.004451247681 -0.08272989609 0)
(0.003127324625 -0.08085717524 0)
(0.003837348848 -0.08089419484 0)
(0.004583372633 -0.08162015938 0)
(0.001687868349 -0.08143125431 0)
(0.00241639071 -0.08082205014 0)
(0.004881318607 -0.08831698187 0)
(0.003887172641 -0.08595016606 0)
(0.003981937249 -0.1182699208 0)
(0.0008504820932 -0.129840436 0)
(-0.009314991629 -0.1410163791 0)
(-0.005170223748 -0.09199919007 0)
(-0.005213786333 -0.09329990841 0)
(-0.005478240646 -0.1023595486 0)
(-0.005858900559 -0.1039640601 0)
(-0.005489748469 -0.1036525813 0)
(-0.005322331564 -0.09718807454 0)
(-0.005367437827 -0.09848220036 0)
(0.004102684601 -0.1143814004 0)
(0.004439292282 -0.1147155133 0)
(-0.009355337164 -0.1423059634 0)
(-0.009376188017 -0.1436003371 0)
(-0.003342495818 -0.1410365129 0)
(-0.01704458458 -0.1492207794 0)
(-0.01570836019 -0.1505539219 0)
(-0.009442979576 -0.1481566252 0)
(-0.008774858373 -0.1488228964 0)
(-0.0007780920722 -0.08295570747 0)
(-0.002053922431 -0.08402192689 0)
(-0.002384173787 -0.08369353601 0)
(0.0009015888508 -0.08299708287 0)
(-0.006024819327 -0.1489054754 0)
(-0.005317941991 -0.1482798925 0)
(-0.005487454857 -0.1450863989 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0.0001629138187 -0.0001965541025 -1.026956298e-15)
(0.001428295603 -0.001978938314 -8.881784197e-15)
(0.00265338292 -0.004155112921 -1.651456749e-14)
(0.003131811256 -0.005471352211 -1.951216966e-14)
(0.00272693879 -0.005257670725 -1.701416785e-14)
(0.001715168356 -0.003616687634 -1.071365219e-14)
(0.0006337468063 -0.001450869719 -3.969047313e-15)
(2.178639571e-05 -5.38238572e-05 -1.387778781e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.01036326461 -0.1558858973 0)
(-0.004863036511 -0.1560510597 0)
(0.01029898618 -0.1022149692 0)
(0.01038016696 -0.09961149225 0)
(0.01117192895 -0.1346242856 0)
(-0.002411623645 -0.07293406958 0)
(0.003138395163 -0.07309850504 0)
(-0.0126960519 -0.08196222885 0)
(0.0144983864 -0.1192068168 0)
(-0.01980825301 -0.1387702855 0)
(-0.009966679178 -0.1041648359 0)
(-0.006573330277 -0.08340375235 0)
(-0.01592081484 -0.0975210737 0)
(-0.01966262973 -0.1336047485 0)
(-0.01984711144 -0.1440003462 0)
(-0.01576990002 -0.09233731828 0)
(-0.01561266137 -0.08713296717 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-4.25492585e-05 -5.058659714e-05 -2.498001805e-16)
(-0.0008555927697 -0.001167828041 -5.245803791e-15)
(-0.001522066251 -0.002346318441 -9.353628982e-15)
(-0.001853448056 -0.003184423779 -1.1379786e-14)
(-0.002213138272 -0.00419283591 -1.357247648e-14)
(-0.002642306228 -0.005471420918 -1.620925616e-14)
(-0.002988333884 -0.006713572028 -1.831867991e-14)
(-0.004165681631 -0.01008531361 -2.553512957e-14)
(-0.004004708757 -0.01045086695 -2.467470672e-14)
(-0.001793876931 -0.005005787911 -1.107447467e-14)
(-3.070106245e-05 -9.123611889e-05 -1.942890293e-16)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(-0.007084980283 -0.1417458866 0)
(-0.007049528969 -0.1414264892 0)
(-0.006912036159 -0.1417647126 0)
(-0.006876583044 -0.1414452553 0)
(-0.006779006186 -0.1417791571 0)
(-0.00674354707 -0.1414597 0)
(-0.007118833746 -0.1420658724 0)
(-0.006945914829 -0.1420849379 0)
(-0.006812896262 -0.1420995622 0)
(-0.003001062351 -0.09305411861 0)
(-0.002965772943 -0.09273111304 0)
(-0.002828031198 -0.09307204643 0)
(-0.002792879234 -0.09275041803 0)
(-0.002694929205 -0.09308589254 0)
(-0.002659891875 -0.09276528165 0)
(0.002575969609 -0.08735996393 0)
(0.002674634875 -0.08762301968 0)
(0.002413193106 -0.08742133645 0)
(0.002510703832 -0.08768124059 0)
(0.002287980678 -0.08746855255 0)
(0.002384603436 -0.08772602776 0)
(0.001609280411 -0.1184429841 0)
(0.001547957426 -0.1187123581 0)
(0.001439650785 -0.1184043788 0)
(0.001378333801 -0.1186737531 0)
(0.00130916835 -0.1183746964 0)
(0.001247851365 -0.1186440706 0)
(-0.002928697908 -0.09240984267 0)
(-0.002755907428 -0.09242998535 0)
(-0.00262298789 -0.09244550756 0)
(-0.001172606473 -0.1289871196 0)
(-0.001307420448 -0.1294393812 0)
(-0.001339335926 -0.128937491 0)
(-0.001473943274 -0.1293890381 0)
(-0.001467588967 -0.1288992874 0)
(-0.001602036753 -0.1293502988 0)
(-0.00449617917 -0.1389752007 0)
(-0.004590853753 -0.1392374475 0)
(-0.004659707753 -0.1389158189 0)
(-0.004754116507 -0.1391774131 0)
(-0.004785501141 -0.1388701822 0)
(-0.004879699869 -0.139131182 0)
(-0.00725655053 -0.1442813077 0)
(-0.007287917078 -0.1439922745 0)
(-0.007144455978 -0.1442937423 0)
(-0.007140854364 -0.1440084015 0)
(-0.00705822543 -0.1443032982 0)
(-0.007027731968 -0.1440208069 0)
(0.002828061001 -0.08808203283 0)
(0.00266238121 -0.08813509041 0)
(0.00253494077 -0.08817590365 0)
(0.001195793378 -0.08495030285 0)
(0.001539919566 -0.08533623497 0)
(0.001078413053 -0.08507869478 0)
(0.001403155634 -0.08544373851 0)
(0.0009881131214 -0.08517745721 0)
(0.001297945603 -0.08552643611 0)
(-0.005564951346 -0.1262831822 0)
(-0.005537266103 -0.1259618101 0)
(-0.005391659106 -0.1262984154 0)
(-0.005363948655 -0.1259768037 0)
(-0.005258348243 -0.1263101057 0)
(-0.005230626386 -0.1259883142 0)
(-0.005482213697 -0.1253214585 0)
(-0.005456067406 -0.1250173364 0)
(-0.005308884844 -0.1253362723 0)
(-0.005282722948 -0.1250320306 0)
(-0.005175554773 -0.125347723 0)
(-0.005149387473 -0.1250433013 0)
(-0.005593612216 -0.1266040447 0)
(-0.005420337381 -0.1266194574 0)
(-0.005287043924 -0.1266313274 0)
(-0.005679663258 -0.1275677109 0)
(-0.005650995776 -0.1272464282 0)
(-0.005506382424 -0.1275831238 0)
(-0.005477722744 -0.127261901 0)
(-0.005373088967 -0.1275949938 0)
(-0.005344435287 -0.1272737708 0)
(-0.005936178644 -0.1304277694 0)
(-0.005908131719 -0.1301323526 0)
(-0.005762994442 -0.1304442004 0)
(-0.005734937913 -0.1301486638 0)
(-0.00562977841 -0.1304568488 0)
(-0.005601708079 -0.1301612525 0)
(-0.002270603741 -0.132525833 0)
(-0.002418104471 -0.1329766926 0)
(-0.00243618038 -0.1324724554 0)
(-0.002583451281 -0.1329226613 0)
(-0.002563546563 -0.1324313957 0)
(-0.002710645242 -0.1328810663 0)
(-0.006984074413 -0.1408033259 0)
(-0.006954184952 -0.140534149 0)
(-0.006811105081 -0.1408219125 0)
(-0.006781289442 -0.140553394 0)
(-0.006678051702 -0.1408361775 0)
(-0.00664828828 -0.140568198 0)
(-0.007144151611 -0.1447766062 0)
(-0.007110705863 -0.1447643981 0)
(-0.007225238152 -0.143026345 0)
(-0.007191548481 -0.1427058137 0)
(-0.00705267325 -0.1430453999 0)
(-0.00701869317 -0.1427249975 0)
(-0.006919926496 -0.1430600761 0)
(-0.00688572801 -0.1427398004 0)
(-0.005965990296 -0.142827355 0)
(-0.006067575175 -0.143082728 0)
(-0.006127444443 -0.1427626904 0)
(-0.006228888919 -0.1430181878 0)
(-0.006251643448 -0.1427129576 0)
(-0.006352977523 -0.1429685784 0)
(0.004067296808 -0.09521268266 0)
(0.004089791712 -0.09553255882 0)
(0.003893811167 -0.09522549016 0)
(0.0039162203 -0.09554422266 0)
(0.003760351489 -0.09523535566 0)
(0.003782703645 -0.09555318561 0)
(0.004110605256 -0.09585562754 0)
(0.003936955875 -0.09586608791 0)
(0.003803380441 -0.0958742083 0)
(0.004145407632 -0.09650264107 0)
(0.004158063798 -0.09682696626 0)
(0.003971619718 -0.09651051485 0)
(0.003984223717 -0.09683357728 0)
(0.003837937538 -0.09651659011 0)
(0.003850500164 -0.09683863033 0)
(0.003849675666 -0.1055884876 0)
(0.003815415954 -0.1059096023 0)
(0.003676665522 -0.1055702601 0)
(0.003642454424 -0.1058909559 0)
(0.003543579133 -0.1055562944 0)
(0.003509410649 -0.105876571 0)
(0.003943393324 -0.1046215083 0)
(0.003913703981 -0.1049434208 0)
(0.003770139499 -0.1046057958 0)
(0.00374049277 -0.1049272893 0)
(0.003636863448 -0.1045937462 0)
(0.003607253332 -0.1049148203 0)
(0.003781057213 -0.1062316148 0)
(0.003608202515 -0.1062120107 0)
(0.003475240363 -0.1061969076 0)
(0.003703731331 -0.1068699163 0)
(0.003666537379 -0.1071739469 0)
(0.003531055484 -0.1068487561 0)
(0.003493914344 -0.1071524279 0)
(0.00339822957 -0.106832516 0)
(0.00336112144 -0.1071358885 0)
(-0.003124026865 -0.0943122748 0)
(-0.003095352276 -0.09401555555 0)
(-0.002950815653 -0.09432840634 0)
(-0.002922202886 -0.09403234584 0)
(-0.002817574414 -0.09434081526 0)
(-0.002789007864 -0.09404529389 0)
(-0.003063939163 -0.0936972381 0)
(-0.002890807179 -0.09371420804 0)
(-0.002757635562 -0.09372733556 0)
(-0.002838900218 -0.1342468052 0)
(-0.0029290627 -0.1345121903 0)
(-0.003003769966 -0.1341912868 0)
(-0.003093807633 -0.1344563153 0)
(-0.003130587679 -0.134148562 0)
(-0.003220540136 -0.1344133528 0)
(-0.004040438411 -0.1377211517 0)
(-0.004133389666 -0.1379814083 0)
(-0.004204238229 -0.1376626026 0)
(-0.004296983656 -0.1379222047 0)
(-0.004330239841 -0.1376175 0)
(-0.004422830452 -0.1378767465 0)
(0.001877927023 -0.1172419321 0)
(0.001814273003 -0.1175303342 0)
(0.001708054957 -0.1172044006 0)
(0.001644408738 -0.1174927428 0)
(0.00157737929 -0.1171755532 0)
(0.001513752873 -0.1174638359 0)
(0.001746297649 -0.117838245 0)
(0.001576520397 -0.117800356 0)
(0.001445913741 -0.1177712103 0)
(0.0002402138392 -0.1239821497 0)
(0.0001653995125 -0.1242648116 0)
(7.205264156e-05 -0.123937643 0)
(-2.712476303e-06 -0.1242200661 0)
(-5.730701729e-05 -0.1239033699 0)
(-0.0001320325301 -0.1241856741 0)
(-0.002813453915 -0.09144879472 0)
(-0.002772263408 -0.09113107115 0)
(-0.00264086389 -0.09147061297 0)
(-0.002599806018 -0.09115390639 0)
(-0.002508102194 -0.09148739163 0)
(-0.00246715355 -0.09117152255 0)
(-0.002852893624 -0.09176921335 0)
(-0.002680186569 -0.09179013427 0)
(-0.002547337249 -0.09180619488 0)
(-0.004936546678 -0.1185510911 0)
(-0.004912717672 -0.1182465391 0)
(-0.004763107985 -0.118564647 0)
(-0.004739284979 -0.1182600948 0)
(-0.004629699282 -0.1185750791 0)
(-0.004605876276 -0.1182705269 0)
(-0.005136817158 -0.1211228855 0)
(-0.005111853018 -0.1208011313 0)
(-0.00496337486 -0.1211363214 0)
(-0.004938410721 -0.1208145673 0)
(-0.004829958356 -0.1211466937 0)
(-0.004804994216 -0.1208249395 0)
(-0.005061844933 -0.1201575654 0)
(-0.005036754788 -0.119835815 0)
(-0.004888404438 -0.1201710613 0)
(-0.004863314292 -0.1198493109 0)
(-0.004754995735 -0.1201814934 0)
(-0.00472990559 -0.119859743 0)
(-0.004961486154 -0.1188706239 0)
(-0.004788051659 -0.1188841196 0)
(-0.004654636957 -0.1188945519 0)
(-0.005011664643 -0.1195140646 0)
(-0.004838231949 -0.1195276204 0)
(-0.004704815445 -0.1195379927 0)
(-0.005433554662 -0.1247484185 0)
(-0.005260198799 -0.1247629328 0)
(-0.005126847719 -0.1247740839 0)
(-0.005372408696 -0.1240123395 0)
(-0.005345951786 -0.1236938732 0)
(-0.005199043229 -0.124026734 0)
(-0.005172588121 -0.1237083277 0)
(-0.005065684347 -0.1240378252 0)
(-0.005039235239 -0.1237194188 0)
(-0.005161779496 -0.1214445797 0)
(-0.004988339 -0.1214580756 0)
(-0.004854920694 -0.1214683878 0)
(-0.005238243929 -0.1224079932 0)
(-0.005211640549 -0.1220872492 0)
(-0.005064878462 -0.1224223877 0)
(-0.005038236667 -0.1221011644 0)
(-0.004931517779 -0.1224334189 0)
(-0.004904848974 -0.1221118962 0)
(-0.005319075369 -0.1233722365 0)
(-0.005145717704 -0.1233866909 0)
(-0.005012368426 -0.1233979019 0)
(-0.005265173736 -0.1227292079 0)
(-0.005091817873 -0.1227437222 0)
(-0.004958468595 -0.1227549333 0)
(-0.005793560361 -0.1288531047 0)
(-0.005765207289 -0.1285316926 0)
(-0.005620268121 -0.1288683378 0)
(-0.00559191685 -0.1285469857 0)
(-0.00548696506 -0.128880088 0)
(-0.005458621592 -0.1285587957 0)
(-0.005708176536 -0.1278890582 0)
(-0.005534893899 -0.1279044111 0)
(-0.005401600442 -0.1279162811 0)
(-0.001479912276 -0.1300030574 0)
(-0.001561275403 -0.1302689469 0)
(-0.001646238413 -0.1299520596 0)
(-0.001727507928 -0.1302176516 0)
(-0.001774182473 -0.1299128443 0)
(-0.001855378778 -0.1301781984 0)
(-0.005821749625 -0.1291744618 0)
(-0.005648457385 -0.1291896949 0)
(-0.005515146522 -0.1292013852 0)
(-0.005878038098 -0.1298153768 0)
(-0.005704793877 -0.1298312091 0)
(-0.00557153343 -0.1298433783 0)
(-0.002508215636 -0.1332521688 0)
(-0.002673455632 -0.1331977804 0)
(-0.002800564383 -0.1331559477 0)
(-0.002689372663 -0.1337980483 0)
(-0.002854414633 -0.1337430652 0)
(-0.002981370964 -0.1337007567 0)
(-0.007258575594 -0.1433463463 0)
(-0.007087595964 -0.1433655938 0)
(-0.006956072665 -0.1433804134 0)
(0.003976226006 -0.09417871659 0)
(0.004019651408 -0.09463236667 0)
(0.003803073269 -0.09419543776 0)
(0.003846395494 -0.09464812383 0)
(0.003669871516 -0.09420831383 0)
(0.003713127161 -0.09466021717 0)
(0.003837476793 -0.09292573386 0)
(0.00387701731 -0.09324215813 0)
(0.003664925729 -0.09294781813 0)
(0.003704324671 -0.09326315713 0)
(0.003532193679 -0.09296485221 0)
(0.003571481642 -0.09327928703 0)
(0.003947183559 -0.09388248628 0)
(0.003774080608 -0.09389974945 0)
(0.003640926246 -0.09391304735 0)
(0.003797485306 -0.09262172775 0)
(0.003625075818 -0.09264489729 0)
(0.003492450548 -0.09266277537 0)
(0.004187064306 -0.0978003932 0)
(0.004193213791 -0.09812500345 0)
(0.004013134307 -0.09780399869 0)
(0.004019270023 -0.09812746746 0)
(0.003879347216 -0.09780676769 0)
(0.003885458353 -0.09812945498 0)
(0.004169539122 -0.09715101576 0)
(0.003995666066 -0.09715672494 0)
(0.00386192033 -0.09716111671 0)
(0.004196328919 -0.09845066366 0)
(0.004022370176 -0.09845222637 0)
(0.00388855973 -0.09845337314 0)
(0.004047411301 -0.1033259084 0)
(0.004023335095 -0.1036512926 0)
(0.003873857956 -0.1033139706 0)
(0.003849856185 -0.103638276 0)
(0.003740351414 -0.1033047967 0)
(0.003716416869 -0.1036282634 0)
(0.003972946514 -0.1042977299 0)
(0.003799602056 -0.1042830357 0)
(0.003666262382 -0.1042717048 0)
(0.004067686307 -0.1030019115 0)
(0.003894066331 -0.1029909926 0)
(0.003760514167 -0.102982538 0)
(0.003632507714 -0.1074442005 0)
(0.003459948897 -0.107422143 0)
(0.003327216607 -0.1074051851 0)
(0.003535112235 -0.1081870584 0)
(0.003491923 -0.1085063435 0)
(0.003362701657 -0.1081638642 0)
(0.003319719473 -0.1084816541 0)
(0.003230080397 -0.1081460088 0)
(0.003187252452 -0.1084626622 0)
(0.003296927532 -0.1097762698 0)
(0.003247611926 -0.1100783749 0)
(0.003125150702 -0.1097487706 0)
(0.003075909512 -0.1100503975 0)
(0.002993018556 -0.1097276267 0)
(0.002943830178 -0.1100288949 0)
(0.003443383942 -0.108825588 0)
(0.003271360456 -0.1087997029 0)
(0.003139036268 -0.1087797544 0)
(0.003346728325 -0.1094612071 0)
(0.003174826068 -0.1094344848 0)
(0.003042599702 -0.1094138786 0)
(0.0003599592463 -0.123529796 0)
(0.0001917662457 -0.1234853483 0)
(6.238498256e-05 -0.1234511947 0)
(-0.00178529708 -0.1309865022 0)
(-0.001867783362 -0.131249115 0)
(-0.001951277572 -0.1309344337 0)
(-0.002033745252 -0.131196987 0)
(-0.002078955797 -0.1308943857 0)
(-0.002161408473 -0.1311568193 0)
(-0.006538804041 -0.136596161 0)
(-0.006507357322 -0.1362777245 0)
(-0.006365697264 -0.1366133704 0)
(-0.006334242744 -0.1362948741 0)
(-0.006232537053 -0.1366266778 0)
(-0.006201072929 -0.1363080616 0)
(-0.006477151261 -0.1359736042 0)
(-0.006304038484 -0.1359908138 0)
(-0.006170876472 -0.1360040611 0)
(-0.006570364797 -0.1369157953 0)
(-0.006397319842 -0.1369336635 0)
(-0.006264208245 -0.1369473898 0)
(-0.006604769093 -0.1372361249 0)
(-0.006431791959 -0.1372546517 0)
(-0.006298730778 -0.1372688569 0)
(-0.007015047316 -0.1411077835 0)
(-0.006842052777 -0.1411261306 0)
(-0.006708983793 -0.141140276 0)
(-0.007155027305 -0.1423857879 0)
(-0.006982155201 -0.1424052124 0)
(-0.006849183445 -0.1424201956 0)
(-0.003032308171 -0.09337646487 0)
(-0.002859191791 -0.09339355446 0)
(-0.002726021976 -0.09340674198 0)
(-0.00378860996 -0.137010377 0)
(-0.003946321817 -0.137457687 0)
(-0.003952723014 -0.1369526593 0)
(-0.004110264451 -0.1373994939 0)
(-0.004078968256 -0.1369082701 0)
(-0.004236372877 -0.1373547485 0)
(0.002476508476 -0.0870988121 0)
(0.002314897017 -0.0871631864 0)
(0.002190576341 -0.08721270542 0)
(0.001676783224 -0.1181464098 0)
(0.00150710439 -0.1181080433 0)
(0.001376586547 -0.11807854 0)
(-0.002625057405 -0.09010462647 0)
(-0.002577959555 -0.08980897692 0)
(-0.002453147166 -0.09013128289 0)
(-0.0024062497 -0.08983690652 0)
(-0.002320905917 -0.09015179344 0)
(-0.002274169645 -0.08985838515 0)
(-0.002525416146 -0.08949317975 0)
(-0.002353954803 -0.08952258529 0)
(-0.002222059168 -0.08954520547 0)
(-0.002692692153 -0.09055579441 0)
(-0.002520534176 -0.0905808007 0)
(-0.002388104544 -0.09060003771 0)
(-0.002731022893 -0.09082728221 0)
(-0.002558719741 -0.09085125389 0)
(-0.0024261687 -0.09086964775 0)
(-0.002890435454 -0.09208962891 0)
(-0.002717685785 -0.09211013071 0)
(-0.002584795654 -0.09212583221 0)
(-0.001392604151 -0.1297177679 0)
(-0.001558986095 -0.1296669486 0)
(-0.00168697216 -0.1296278522 0)
(-0.006804357 -0.1391587883 0)
(-0.006770947572 -0.1388393898 0)
(-0.006631354658 -0.1391770756 0)
(-0.006597900815 -0.1388571979 0)
(-0.006498270071 -0.1391911014 0)
(-0.006464781416 -0.1388708644 0)
(-0.00673870277 -0.1385191755 0)
(-0.006565630805 -0.1385367442 0)
(-0.006432494001 -0.138550231 0)
(-0.004396078733 -0.1386978625 0)
(-0.004559561711 -0.138638362 0)
(-0.004685323296 -0.1385926661 0)
(-0.006838760089 -0.1394788777 0)
(-0.006665771549 -0.1394972247 0)
(-0.006532696566 -0.1395113703 0)
(-0.006872281668 -0.1397964112 0)
(-0.006699293129 -0.1398147581 0)
(-0.006566224146 -0.1398289035 0)
(-0.004758265545 -0.1396821841 0)
(-0.004856248627 -0.1399430103 0)
(-0.004921167655 -0.1396211395 0)
(-0.005019164539 -0.1398820254 0)
(-0.005046477386 -0.139574196 0)
(-0.00514448627 -0.1398350815 0)
(-0.007284577232 -0.1436700511 0)
(-0.007119704035 -0.1436884547 0)
(-0.006992874713 -0.1437025929 0)
(0.002749945709 -0.1129212228 0)
(0.002666566046 -0.1133729269 0)
(0.002578887226 -0.1128896012 0)
(0.002495609584 -0.1133407078 0)
(0.002447302394 -0.1128652307 0)
(0.002364109367 -0.1133159195 0)
(0.001444951517 -0.1191648542 0)
(0.001275369299 -0.1191260702 0)
(0.001144914467 -0.1190962685 0)
(0.001379165591 -0.1194538528 0)
(0.001209756801 -0.1194142933 0)
(0.001079439992 -0.1193838952 0)
(-0.001351280981 -0.08552620709 0)
(-0.00120145398 -0.08527967809 0)
(-0.00120042588 -0.08561284035 0)
(-0.001059585061 -0.0853803686 0)
(-0.001084379594 -0.08567947451 0)
(-0.0009504638518 -0.08545782119 0)
(-0.005509644465 -0.1256405561 0)
(-0.005336317414 -0.12565543 0)
(-0.005202995145 -0.1256669405 0)
(-0.005622298293 -0.1269251465 0)
(-0.005449025261 -0.1269406193 0)
(-0.005315739606 -0.1269525491 0)
(-0.00170115878 -0.130718654 0)
(-0.001867209482 -0.1306668237 0)
(-0.001994939913 -0.1306268942 0)
(-0.005978156299 -0.1308699066 0)
(-0.005804964295 -0.1308862778 0)
(-0.005671742263 -0.1308989263 0)
(-0.006450346522 -0.1357041545 0)
(-0.006277239745 -0.1357213639 0)
(-0.006144077733 -0.1357346113 0)
(-0.006406241158 -0.1352613606 0)
(-0.006233134382 -0.13527857 0)
(-0.006099980171 -0.1352918772 0)
(-0.006673262085 -0.137877274 0)
(-0.006639665409 -0.1375564397 0)
(-0.006500226734 -0.1378952621 0)
(-0.006466680473 -0.1375749067 0)
(-0.00636712474 -0.1379091082 0)
(-0.00633361149 -0.1375890521 0)
(-0.00568650273 -0.1421252783 0)
(-0.005861173613 -0.1425695566 0)
(-0.005848661353 -0.1420622742 0)
(-0.006022766972 -0.1425051281 0)
(-0.005973404018 -0.1420138463 0)
(-0.006147067387 -0.1424555724 0)
(0.004044015464 -0.09490719647 0)
(0.003870646786 -0.09492150889 0)
(0.003737283077 -0.0949325784 0)
(0.00412876069 -0.09617861645 0)
(0.003955043538 -0.09618793371 0)
(0.003821420732 -0.09619503171 0)
(0.003883918006 -0.1052663514 0)
(0.003710805229 -0.1052491418 0)
(0.003577643217 -0.1052358945 0)
(0.00374263095 -0.1065518837 0)
(0.003569904688 -0.1065312024 0)
(0.003437039764 -0.1065152615 0)
(-0.003017656586 -0.1347729381 0)
(-0.003182375716 -0.1347170038 0)
(-0.003309080614 -0.1346739221 0)
(0.001815871258 -0.0857513097 0)
(0.001668560362 -0.08584384754 0)
(0.001555246177 -0.08591502916 0)
(0.001952617164 -0.08598100644 0)
(0.002177961365 -0.08641180856 0)
(0.001801235171 -0.08606671972 0)
(0.002021919164 -0.08648871574 0)
(0.001684787442 -0.0861326544 0)
(0.001901891277 -0.08654787663 0)
(0.002293122912 -0.08665470621 0)
(0.00213444454 -0.08672600302 0)
(0.002012378129 -0.08678085069 0)
(8.80876727e-05 -0.1245548454 0)
(-7.988809521e-05 -0.1245095635 0)
(-0.0002090995327 -0.1244747543 0)
(1.50630337e-05 -0.1248229072 0)
(-0.0001081445158 -0.1252751569 0)
(-0.0001528119199 -0.1247772679 0)
(-0.0002759798643 -0.1252293988 0)
(-0.0002819423455 -0.1247421609 0)
(-0.0004050904875 -0.1251942323 0)
(-0.002469686936 -0.08917428925 0)
(-0.00240908404 -0.08886029557 0)
(-0.002298615912 -0.08920589315 0)
(-0.002238517591 -0.08889450278 0)
(-0.002167023278 -0.08923020383 0)
(-0.002107309509 -0.08892081981 0)
(-0.002288085712 -0.08828661714 0)
(-0.002181909664 -0.08782894931 0)
(-0.002118247431 -0.08832427376 0)
(-0.002012871373 -0.08787004718 0)
(-0.001987599368 -0.08835324048 0)
(-0.001882837511 -0.08790166798 0)
(-0.002345442384 -0.0885593053 0)
(-0.00217524128 -0.08859527922 0)
(-0.002044314109 -0.0886229511 0)
(-0.004891711602 -0.1179779963 0)
(-0.004718278909 -0.1179915521 0)
(-0.004584864206 -0.1180019843 0)
(-0.005086887076 -0.1204793172 0)
(-0.004913446581 -0.1204928131 0)
(-0.004780030076 -0.1205031854 0)
(-0.0049865763 -0.1191923743 0)
(-0.004813141804 -0.11920587 0)
(-0.004679727102 -0.1192163023 0)
(-0.005396984486 -0.1243081609 0)
(-0.005223619019 -0.1243225554 0)
(-0.005090260138 -0.1243336466 0)
(-0.005186734032 -0.121766214 0)
(-0.005013301338 -0.1217797697 0)
(-0.004879884834 -0.121790142 0)
(-0.005292122751 -0.1230506622 0)
(-0.00511876869 -0.1230652366 0)
(-0.00498541761 -0.1230763876 0)
(-0.005736688011 -0.1282103454 0)
(-0.005563405375 -0.1282256984 0)
(-0.005430110116 -0.1282375084 0)
(-0.005849919682 -0.1294955791 0)
(-0.005676631045 -0.1295109323 0)
(-0.005543333984 -0.1295226822 0)
(-0.002601558724 -0.1335342742 0)
(-0.002766679905 -0.133479529 0)
(-0.002893701644 -0.1334373987 0)
(-0.006706151939 -0.1381983698 0)
(-0.006533089578 -0.1382160583 0)
(-0.006399962377 -0.138229665 0)
(-0.004297483389 -0.1384286468 0)
(-0.004460881156 -0.1383689086 0)
(-0.004586569531 -0.1383229747 0)
(-0.00690309588 -0.1400907841 0)
(-0.00673016736 -0.1401097298 0)
(-0.00659714099 -0.1401242943 0)
(-0.004952294751 -0.140201132 0)
(-0.005115165057 -0.1401400284 0)
(-0.005240454986 -0.1400930254 0)
(0.003915685871 -0.09356282024 0)
(0.003742764678 -0.09358183051 0)
(0.003609744684 -0.09359645368 0)
(0.003760077904 -0.09234686662 0)
(0.003587859183 -0.09237148325 0)
(0.00345538929 -0.09239038696 0)
(0.004179632587 -0.09747508382 0)
(0.004005730159 -0.09747977116 0)
(0.003871964043 -0.09748344163 0)
(0.004198728946 -0.0987717381 0)
(0.004024765427 -0.09877245987 0)
(0.003890948997 -0.09877300589 0)
(0.004199027714 -0.09907058857 0)
(0.004025061815 -0.09907058959 0)
(0.003891245402 -0.09907053505 0)
(0.003998168715 -0.1039741818 0)
(0.003824745625 -0.1039605062 0)
(0.003691338725 -0.1039500141 0)
(0.004087713995 -0.1026817507 0)
(0.003914058001 -0.1026714313 0)
(0.003780479422 -0.1026634564 0)
(0.004104823745 -0.1023833629 0)
(0.00393112993 -0.102373703 0)
(0.003797517135 -0.1023662676 0)
(0.003573842607 -0.1078916621 0)
(0.003401360009 -0.1078690663 0)
(0.003268678135 -0.1078516294 0)
(0.003203404619 -0.1103491638 0)
(0.003031731612 -0.1103210071 0)
(0.002899673882 -0.110299385 0)
(0.003395077738 -0.1091432781 0)
(0.003223107064 -0.1091170343 0)
(0.003090820084 -0.1090968466 0)
(0.00123426294 -0.1200543914 0)
(0.001168492583 -0.1203232716 0)
(0.001065258615 -0.1200131625 0)
(0.0009995080594 -0.1202819832 0)
(0.0009352514563 -0.1199814524 0)
(0.0008695225053 -0.1202501536 0)
(0.001306537122 -0.1197589213 0)
(0.001137396576 -0.1197182288 0)
(0.001007286801 -0.119686936 0)
(-0.0003398721525 -0.1261143356 0)
(-0.0004675360835 -0.1265663915 0)
(-0.0005073282448 -0.1260671474 0)
(-0.0006349399702 -0.1265190848 0)
(-0.0006361394251 -0.126030909 0)
(-0.0007637133455 -0.1264827274 0)
(-0.0005472532066 -0.1268487259 0)
(-0.0007145832818 -0.1268011212 0)
(-0.000843299048 -0.1267645252 0)
(-0.0008493741745 -0.08485553936 0)
(-0.0003477311416 -0.08453103578 0)
(-0.0007349310676 -0.08498656247 0)
(-0.0002847772384 -0.084693209 0)
(-0.0006469057466 -0.08508734897 0)
(-0.0002363508707 -0.08481795726 0)
(2.83886003e-05 -0.08444768266 0)
(4.016102542e-05 -0.08462124772 0)
(4.921674546e-05 -0.08475475912 0)
(0.0004245015735 -0.08448781225 0)
(0.0003832909923 -0.08465682433 0)
(0.0003515910562 -0.08478683354 0)
(-0.003211853706 -0.09532987854 0)
(-0.003186601435 -0.09502512904 0)
(-0.003038496041 -0.09534433288 0)
(-0.003013255175 -0.09503976322 0)
(-0.002905144961 -0.09535548392 0)
(-0.002879913699 -0.09505103408 0)
(-0.003238697062 -0.09564941422 0)
(-0.003065331595 -0.09566380875 0)
(-0.002931980515 -0.09567495978 0)
(-0.003413394504 -0.097903977 0)
(-0.003390398428 -0.09758156318 0)
(-0.003239873574 -0.09791639432 0)
(-0.003216908111 -0.09759439998 0)
(-0.003106395844 -0.09792592764 0)
(-0.003083459192 -0.09760429277 0)
(-0.001093632035 -0.128720858 0)
(-0.001260415135 -0.1286714079 0)
(-0.001388708142 -0.1286333233 0)
(-0.003605172855 -0.1364863666 0)
(-0.003697422183 -0.1367502476 0)
(-0.003769418527 -0.1364290652 0)
(-0.003861608447 -0.1366927679 0)
(-0.003895762782 -0.1363849733 0)
(-0.003987911295 -0.1366484971 0)
(0.002164446104 -0.1159092924 0)
(0.002100889839 -0.116220639 0)
(0.00199402674 -0.115874387 0)
(0.001930604299 -0.116185077 0)
(0.001862929798 -0.1158475688 0)
(0.001799621379 -0.1161576616 0)
(0.002037504351 -0.1165188984 0)
(0.001867463054 -0.1164822026 0)
(0.001736655364 -0.1164539518 0)
(-0.003593219287 -0.1004814902 0)
(-0.003571459873 -0.1001594596 0)
(-0.003419654537 -0.1004932482 0)
(-0.003397889123 -0.1001712178 0)
(-0.003286144391 -0.100502302 0)
(-0.003264377176 -0.1001802116 0)
(-0.003436192571 -0.09822639676 0)
(-0.003262658435 -0.09823857426 0)
(-0.003129169298 -0.09824792774 0)
(-0.003944747221 -0.1056474504 0)
(-0.0039226752 -0.1053256094 0)
(-0.003771234094 -0.1056599276 0)
(-0.003749123657 -0.1053376073 0)
(-0.003637758165 -0.1056695209 0)
(-0.003615623116 -0.1053467809 0)
(-0.003791571559 -0.1033956046 0)
(-0.00377103249 -0.1030910138 0)
(-0.003618006809 -0.1034073626 0)
(-0.003597459938 -0.103102712 0)
(-0.003484488862 -0.1034163566 0)
(-0.00346394199 -0.103111706 0)
(-0.003615132904 -0.100803456 0)
(-0.003441575957 -0.1008152739 0)
(-0.003308067613 -0.1008243877 0)
(-0.003752959962 -0.1028231637 0)
(-0.003579383807 -0.1028347419 0)
(-0.003445862256 -0.1028436159 0)
(-0.003968913906 -0.1059684478 0)
(-0.003795433194 -0.1059814044 0)
(-0.003661986076 -0.1059913572 0)
(-0.004140528343 -0.1082203405 0)
(-0.00411571001 -0.1078986421 0)
(-0.003967078243 -0.1082337166 0)
(-0.003942258109 -0.1079119582 0)
(-0.003833658135 -0.1082439689 0)
(-0.003808832001 -0.1079222106 0)
(-0.004165352675 -0.1085420388 0)
(-0.003991904378 -0.1085554749 0)
(-0.00385848427 -0.1085657272 0)
(-0.006486314483 -0.1440289571 0)
(-0.006734461618 -0.1444155368 0)
(-0.006628839245 -0.1439717074 0)
(-0.006831682597 -0.1443765835 0)
(-0.006738472201 -0.143927697 0)
(-0.006906471287 -0.1443465916 0)
(0.003319896596 -0.08993135588 0)
(0.003421648805 -0.09039421043 0)
(0.003150214093 -0.08996971153 0)
(0.003251380994 -0.09042985798 0)
(0.003019684083 -0.08999921342 0)
(0.003120402764 -0.09045728647 0)
(0.002610667846 -0.1136650451 0)
(0.00255027553 -0.1139758261 0)
(0.002439831406 -0.1136322291 0)
(0.0023794961 -0.1139427115 0)
(0.002308417606 -0.1136069629 0)
(0.00224813151 -0.1139172065 0)
(-0.001690749949 -0.08623698054 0)
(-0.001576334596 -0.0859725279 0)
(-0.001529934817 -0.08630332549 0)
(-0.001418626714 -0.0860459503 0)
(-0.001406231469 -0.08635436467 0)
(-0.00129730886 -0.08610243104 0)
(-0.000716805134 -0.1274366331 0)
(-0.0007944955258 -0.1277031735 0)
(-0.00088384177 -0.1273880763 0)
(-0.0009614967552 -0.1276544375 0)
(-0.001012329503 -0.1273506464 0)
(-0.001089958685 -0.1276169484 0)
(-0.002009423035 -0.1316996101 0)
(-0.002175371723 -0.1316474225 0)
(-0.002303022943 -0.1316072551 0)
(-0.006032213177 -0.1314435052 0)
(-0.006003533574 -0.131139219 0)
(-0.005859013371 -0.1314598165 0)
(-0.005830341571 -0.1311555901 0)
(-0.005725783537 -0.1314724053 0)
(-0.005697115935 -0.1311681187 0)
(-0.002096462703 -0.1319761995 0)
(-0.002262385588 -0.1319239526 0)
(-0.002390017006 -0.1318837257 0)
(-0.006062262449 -0.1317624041 0)
(-0.005889062643 -0.1317787155 0)
(-0.005755829206 -0.1317911842 0)
(-0.006152135615 -0.1327247544 0)
(-0.006122259109 -0.1324044089 0)
(-0.005978970621 -0.132741425 0)
(-0.005949051501 -0.1324206605 0)
(-0.005845764193 -0.1327541933 0)
(-0.005815818063 -0.1324331292 0)
(-0.005488124569 -0.1416073017 0)
(-0.005587684492 -0.1418672397 0)
(-0.005650582627 -0.1415450693 0)
(-0.005750090944 -0.1418048888 0)
(-0.005775547318 -0.1414972353 0)
(-0.005875014228 -0.1417568759 0)
(-0.006944794834 -0.1446204398 0)
(-0.007005631233 -0.1445938097 0)
(0.004183454768 -0.1004043978 0)
(0.004176260894 -0.1007289677 0)
(0.004009526774 -0.1004007365 0)
(0.004002353926 -0.1007244062 0)
(0.00387573924 -0.1003979202 0)
(0.003868582014 -0.1007208697 0)
(0.004198628299 -0.09950928982 0)
(0.004024671443 -0.0995077897 0)
(0.003890857461 -0.09950665421 0)
(0.004194497932 -0.09977803906 0)
(0.004020547705 -0.09977551818 0)
(0.003886745145 -0.0997736023 0)
(0.004167082213 -0.1010508355 0)
(0.003993220885 -0.1010449541 0)
(0.003859479602 -0.1010403976 0)
(0.004127919661 -0.1019464242 0)
(0.003954184423 -0.1019375438 0)
(0.003820541609 -0.1019307081 0)
(0.00414149197 -0.1016796401 0)
(0.003967713506 -0.1016715992 0)
(0.003834038872 -0.1016654231 0)
(0.0006559505482 -0.122380313 0)
(0.0005837246567 -0.1226655749 0)
(0.0004873134785 -0.1223376537 0)
(0.0004151031909 -0.122622796 0)
(0.0003575865638 -0.1223048109 0)
(0.0002853960788 -0.1225898938 0)
(-0.001797160386 -0.08650845395 0)
(-0.001633768258 -0.08656817997 0)
(-0.001508080063 -0.08661411989 0)
(-0.002108872464 -0.08754106926 0)
(-0.00203121154 -0.08724501021 0)
(-0.00194045569 -0.08758466483 0)
(-0.001863760367 -0.08729216216 0)
(-0.001810911683 -0.08761819874 0)
(-0.001734947087 -0.08732843073 0)
(-0.003316493618 -0.09661519005 0)
(-0.003291483873 -0.09629331715 0)
(-0.003143041717 -0.09662850615 0)
(-0.003118062585 -0.09630705272 0)
(-0.003009623411 -0.09663881841 0)
(-0.002984663486 -0.09631760464 0)
(-0.003340816938 -0.09693720367 0)
(-0.003167355434 -0.09695039994 0)
(-0.003033921523 -0.09696059256 0)
(-0.0009262600253 -0.1281551063 0)
(-0.001093179045 -0.1281061326 0)
(-0.001221577125 -0.1280684051 0)
(0.002378921221 -0.1148576561 0)
(0.002286797974 -0.1153099384 0)
(0.002208293021 -0.1148237053 0)
(0.002116323402 -0.1152752715 0)
(0.00207704065 -0.1147976632 0)
(0.001985191053 -0.1152486325 0)
(-0.003527484994 -0.09951421105 0)
(-0.003504102506 -0.09919192895 0)
(-0.003353952659 -0.09952644855 0)
(-0.003330583378 -0.09920440628 0)
(-0.003220467127 -0.09953592204 0)
(-0.003197111648 -0.09921393941 0)
(-0.003480912042 -0.09887024165 0)
(-0.003307387509 -0.09888253897 0)
(-0.003173901977 -0.09889201246 0)
(-0.003878819765 -0.1046817386 0)
(-0.003856924742 -0.104359592 0)
(-0.003705256817 -0.1046935566 0)
(-0.003683361794 -0.10437141 0)
(-0.003571746671 -0.1047026104 0)
(-0.003549851649 -0.1043804638 0)
(-0.003835039324 -0.1040375652 0)
(-0.003661474574 -0.1040493232 0)
(-0.003527964429 -0.1040583771 0)
(-0.003682703221 -0.1017688783 0)
(-0.003659824754 -0.1014465811 0)
(-0.003509159481 -0.101780936 0)
(-0.003486292419 -0.1014588186 0)
(-0.003375662543 -0.1017902296 0)
(-0.003352805084 -0.1014682321 0)
(-0.003704676791 -0.1020890407 0)
(-0.003531110239 -0.1021007387 0)
(-0.003397592292 -0.1021097327 0)
(-0.004041859237 -0.1069334684 0)
(-0.004017340917 -0.106611761 0)
(-0.003868399534 -0.1069467247 0)
(-0.00384387161 -0.1066248974 0)
(-0.003734969822 -0.1069568572 0)
(-0.003710441899 -0.1066350298 0)
(-0.004066439361 -0.1072552341 0)
(-0.003892985658 -0.1072684902 0)
(-0.003759557748 -0.1072786827 0)
(-0.004265038729 -0.1098255773 0)
(-0.004240237888 -0.1095070613 0)
(-0.004091606036 -0.109839133 0)
(-0.004066797392 -0.1095205572 0)
(-0.003958189531 -0.1098495053 0)
(-0.003933380888 -0.1095309295 0)
(-0.004215191546 -0.1091853697 0)
(-0.004041749249 -0.1091988056 0)
(-0.003908332744 -0.1092091779 0)
(-0.006312852646 -0.1343273425 0)
(-0.006280657631 -0.1340065862 0)
(-0.006139755473 -0.1343446717 0)
(-0.00610756826 -0.1340239752 0)
(-0.006006609065 -0.1343580387 0)
(-0.005974417653 -0.1340374024 0)
(-0.006376742769 -0.1349658072 0)
(-0.006203637794 -0.1349830766 0)
(-0.006070483584 -0.1349963837 0)
(-0.006248414614 -0.1336858313 0)
(-0.006075327045 -0.1337032804 0)
(-0.005942182438 -0.1337167074 0)
(-0.006183620187 -0.1330450516 0)
(-0.006010507411 -0.1330622612 0)
(-0.005877343596 -0.1330754485 0)
(-0.00512025797 -0.1406460322 0)
(-0.005219782504 -0.1409063917 0)
(-0.005282886448 -0.1405842752 0)
(-0.005382286166 -0.1408442781 0)
(-0.005407987955 -0.1405367974 0)
(-0.005507288661 -0.140796503 0)
(0.002990753302 -0.0886200644 0)
(0.003115842864 -0.08908173997 0)
(0.002823478554 -0.08866783716 0)
(0.002947464064 -0.0891254798 0)
(0.002694802777 -0.0887045895 0)
(0.002817950679 -0.0891591261 0)
(0.003183545919 -0.08935369723 0)
(0.003014614678 -0.08939523442 0)
(0.002884665723 -0.08942718605 0)
(0.002431620695 -0.1145864616 0)
(0.002260884475 -0.1145531081 0)
(0.002129541488 -0.1145274837 0)
(0.0009877765228 -0.121062066 0)
(0.0009130156213 -0.1213651487 0)
(0.000818861011 -0.1210204794 0)
(0.0007442381321 -0.1213229656 0)
(0.0006889228639 -0.1209884711 0)
(0.0006144086014 -0.1212905402 0)
(0.0005071180929 -0.1229681217 0)
(0.0003386190458 -0.122924866 0)
(0.0002090085494 -0.1228915463 0)
(0.0008384739749 -0.1216595297 0)
(0.0006698111023 -0.1216169297 0)
(0.0005400703854 -0.1215841466 0)
(-0.0002642608123 -0.1258465317 0)
(-0.0004318669277 -0.1257999396 0)
(-0.0005607939229 -0.125764058 0)
(-0.0006322941966 -0.1271467554 0)
(-0.0007994544495 -0.1270986153 0)
(-0.0009280393968 -0.1270615428 0)
(-0.003163775471 -0.0947559803 0)
(-0.002990467627 -0.09477109377 0)
(-0.002857156764 -0.09478278411 0)
(-0.003265419869 -0.0959709354 0)
(-0.003092035195 -0.09598509027 0)
(-0.002958658907 -0.09599600184 0)
(-0.003365532671 -0.09725908539 0)
(-0.003192072968 -0.09727234167 0)
(-0.003058645058 -0.09728253411 0)
(-0.001008674776 -0.1284344169 0)
(-0.001175506182 -0.1283850855 0)
(-0.001303839095 -0.1283471798 0)
(-0.003449221467 -0.1360388836 0)
(-0.003613597954 -0.1359819386 0)
(-0.00374004542 -0.1359380839 0)
(0.002227614698 -0.115599856 0)
(0.00205716173 -0.1155650697 0)
(0.001926044985 -0.1155383109 0)
(0.001977763595 -0.1167895811 0)
(0.001807856122 -0.1167522287 0)
(0.00167715885 -0.1167235008 0)
(-0.003549767653 -0.09983706669 0)
(-0.003376206506 -0.09984894471 0)
(-0.003242705965 -0.09985811837 0)
(-0.003458585614 -0.0985485284 0)
(-0.003285043675 -0.09856064608 0)
(-0.003151546737 -0.09856993974 0)
(-0.003900753185 -0.1050037639 0)
(-0.003727190237 -0.1050155819 0)
(-0.003593681893 -0.1050246958 0)
(-0.003813158104 -0.1037154783 0)
(-0.003639593354 -0.1037272363 0)
(-0.003506083209 -0.1037362901 0)
(-0.003637033315 -0.1011251821 0)
(-0.003463483574 -0.1011372399 0)
(-0.003329990835 -0.1011464734 0)
(-0.003724160786 -0.1023854954 0)
(-0.003550575027 -0.1023969538 0)
(-0.003417045674 -0.102405768 0)
(-0.00399312261 -0.1062900445 0)
(-0.003819651501 -0.1063031209 0)
(-0.003686213987 -0.1063131935 0)
(-0.004091017683 -0.1075769398 0)
(-0.003917565782 -0.1075902559 0)
(-0.003784137872 -0.1076004483 0)
(-0.004322574927 -0.110561044 0)
(-0.004288088656 -0.1101213844 0)
(-0.004149144035 -0.1105746597 0)
(-0.004114649962 -0.1101349404 0)
(-0.004015729333 -0.110585092 0)
(-0.003981241259 -0.1101453724 0)
(-0.004343642801 -0.110829645 0)
(-0.00417021191 -0.1108432607 0)
(-0.004036797207 -0.110853693 0)
(-0.004190171007 -0.1088637373 0)
(-0.00401672271 -0.1088771734 0)
(-0.003883304404 -0.1088874857 0)
(-0.004734417942 -0.1159588132 0)
(-0.004709462811 -0.115637359 0)
(-0.004560977447 -0.1159723091 0)
(-0.004536009109 -0.1156506151 0)
(-0.004427559141 -0.1159826213 0)
(-0.004402583 -0.1156608675 0)
(-0.004685073505 -0.1153159479 0)
(-0.004511602397 -0.1153290244 0)
(-0.004378166685 -0.115339157 0)
(-0.004563497121 -0.1137064191 0)
(-0.004538609182 -0.1133846026 0)
(-0.004390047021 -0.1137197952 0)
(-0.004365160885 -0.1133980387 0)
(-0.004256628715 -0.1137301075 0)
(-0.004231742578 -0.113408351 0)
(-0.004588402465 -0.1140284153 0)
(-0.004414942762 -0.1140416715 0)
(-0.004281514852 -0.114051864 0)
(-0.004367543215 -0.111134375 0)
(-0.00419410272 -0.1111478709 0)
(-0.004060686215 -0.1111582432 0)
(-0.004392251079 -0.1114537946 0)
(-0.004218791376 -0.1114670509 0)
(-0.004085361664 -0.1114771833 0)
(-0.004513724847 -0.1130629061 0)
(-0.004340280748 -0.1130762821 0)
(-0.004206856442 -0.1130865945 0)
(-0.004488863918 -0.1127413891 0)
(-0.004315404215 -0.1127546454 0)
(-0.004181976305 -0.1127648378 0)
(-0.004759394083 -0.1162805669 0)
(-0.004585951786 -0.1162940029 0)
(-0.004452535281 -0.1163043751 0)
(-0.004784368421 -0.1166022607 0)
(-0.004610927926 -0.1166157567 0)
(-0.004477511421 -0.1166261289 0)
(-0.006359076289 -0.143779279 0)
(-0.006514623847 -0.1437167137 0)
(-0.006634275906 -0.1436685588 0)
(0.002909593696 -0.08834903632 0)
(0.002743076047 -0.08839939622 0)
(0.002614989198 -0.08843813611 0)
(0.003253636747 -0.08964573704 0)
(0.003084310316 -0.08968563483 0)
(0.002954063004 -0.08971632232 0)
(0.003476806069 -0.09066776683 0)
(0.00330609874 -0.09070125115 0)
(0.003174780403 -0.09072700586 0)
(0.003533397382 -0.09096716659 0)
(0.003362301116 -0.09099860331 0)
(0.003230680709 -0.09102281751 0)
(0.003129775985 -0.1108001397 0)
(0.003078376712 -0.111094435 0)
(0.00295826201 -0.1107710869 0)
(0.002906995966 -0.1110645454 0)
(0.002826323708 -0.1107486877 0)
(0.002775165685 -0.1110415488 0)
(0.002489790796 -0.1142870847 0)
(0.002319019169 -0.1142539103 0)
(0.002187660578 -0.1142284055 0)
(0.003023379774 -0.1114069394 0)
(0.002852042236 -0.1113768109 0)
(0.002720247362 -0.1113536352 0)
(0.002967931542 -0.1117220728 0)
(0.002796615609 -0.1116918248 0)
(0.002664836338 -0.1116685295 0)
(0.0007569838258 -0.08461630996 0)
(0.0006757621627 -0.08477014848 0)
(0.0006132817932 -0.08488848567 0)
(-0.000184921501 -0.1255569791 0)
(-0.0003527034423 -0.1255110424 0)
(-0.0004817666584 -0.1254756972 0)
(-0.002186019703 -0.1322608209 0)
(-0.002351815971 -0.1322081574 0)
(-0.002479348377 -0.1321676332 0)
(-0.006092322583 -0.1320834647 0)
(-0.005919113174 -0.1320996563 0)
(-0.005785873736 -0.1321121252 0)
(-0.005318175897 -0.1411634821 0)
(-0.005480647757 -0.1411013094 0)
(-0.005605624448 -0.141053475 0)
(0.004189784487 -0.1000840059 0)
(0.004015846278 -0.1000808848 0)
(0.00388205033 -0.1000785487 0)
(0.00415396375 -0.1013733057 0)
(0.003980144457 -0.1013662245 0)
(0.0038464344 -0.1013608281 0)
(-0.001950494197 -0.08697196654 0)
(-0.001784406171 -0.08702371392 0)
(-0.001656641956 -0.08706351834 0)
(-0.003262907882 -0.1354950808 0)
(-0.00335843144 -0.1357764 0)
(-0.003427605408 -0.135439027 0)
(-0.003522984348 -0.1357199303 0)
(-0.003554298306 -0.1353959457 0)
(-0.003649566233 -0.1356765519 0)
(-0.003170091864 -0.1352217277 0)
(-0.003334816994 -0.1351657933 0)
(-0.003461521893 -0.1351227116 0)
(-0.004660939201 -0.1149942289 0)
(-0.004636801294 -0.1146723899 0)
(-0.004487466291 -0.1150072454 0)
(-0.004463322383 -0.1146854065 0)
(-0.004354020975 -0.1150172582 0)
(-0.004329883067 -0.1146954191 0)
(-0.004612655584 -0.1143504911 0)
(-0.004439184475 -0.1143635675 0)
(-0.00430573916 -0.1143735803 0)
(-0.004440503505 -0.1120978938 0)
(-0.004416387796 -0.111775994 0)
(-0.004267030594 -0.1121109102 0)
(-0.004242914886 -0.1117890105 0)
(-0.004133585279 -0.112120923 0)
(-0.00410946957 -0.1117990233 0)
(-0.004464607808 -0.1124196137 0)
(-0.004291136699 -0.1124326901 0)
(-0.004157693185 -0.1124427629 0)
(-0.004834171801 -0.1172424096 0)
(-0.00480934276 -0.1169239545 0)
(-0.004660739108 -0.1172559654 0)
(-0.004635902265 -0.1169374505 0)
(-0.004527322603 -0.1172663376 0)
(-0.00450249176 -0.1169478225 0)
(-0.004857319533 -0.1175382739 0)
(-0.004683880839 -0.1175518298 0)
(-0.004550472137 -0.1175622619 0)
(-0.00634503566 -0.1346480991 0)
(-0.006171932487 -0.1346654285 0)
(-0.006038780079 -0.1346787957 0)
(-0.006215989193 -0.1333652021 0)
(-0.006042907624 -0.1333826509 0)
(-0.005909763017 -0.1333960779 0)
(-0.006247464981 -0.1435236066 0)
(-0.00640722767 -0.1434594132 0)
(-0.00653012763 -0.1434100197 0)
(0.003588691079 -0.09127937949 0)
(0.003642256722 -0.09159093994 0)
(0.003417332042 -0.09130936697 0)
(0.003470693711 -0.09161972016 0)
(0.00328551786 -0.09133243427 0)
(0.003338722349 -0.09164182183 0)
(0.003691039454 -0.09188518058 0)
(0.003519207077 -0.09191233118 0)
(0.003387025741 -0.09193322543 0)
(0.002912369288 -0.1120378034 0)
(0.002855301058 -0.1123504858 0)
(0.002741139773 -0.1120070775 0)
(0.002684179564 -0.1123191627 0)
(0.002609425315 -0.1119834238 0)
(0.002552543721 -0.1122950909 0)
(0.002799879648 -0.112650726 0)
(0.002628801362 -0.1126191639 0)
(0.002497200926 -0.1125949131 0)
(0.001057832756 -0.1207756579 0)
(0.0008888560346 -0.1207343097 0)
(0.0007588764807 -0.1207024803 0)
(0.000431034417 -0.1232612553 0)
(0.0002627328001 -0.1232172248 0)
(0.0001332705251 -0.123183369 0)
(0.0007704865344 -0.121928043 0)
(0.0006018452662 -0.1218853236 0)
(0.0004721183515 -0.1218524808 0)
)
;
boundaryField
{
topAndBottom
{
type fixedValue;
value uniform (0 0 0);
}
inlet
{
type fixedValue;
value uniform (0 0 0);
}
outlet
{
type fixedValue;
value uniform (0 0 0);
}
wing
{
type calculated;
}
front
{
type empty;
}
back
{
type empty;
}
}
// ************************************************************************* //
| |
043b339de88deae10ad7cb30015a8c6e3d8700bf | 407c9c51f97a58dba7bbc7788a0b405ebe138c37 | /addonfunctions.h | 8d8bfae3e7c71b82be04f0cfa4c3e4c72dcf4b57 | [] | no_license | taljacob2/ElectionSystem | 0b2b0254f7f253433d1830e336570702df6c8581 | fa8a1eca0c0f0e59c6930e6619f91178f4405e22 | refs/heads/master | 2023-04-03T17:52:37.535898 | 2021-04-16T17:30:34 | 2021-04-16T17:30:34 | 358,651,706 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,171 | h | addonfunctions.h | #pragma once
#include "Election.h"
#include <iostream>
#include <ctime>
// ALL MAIN FUNCTIONS
using namespace elc;
using namespace std;
class Input {
public:
constexpr static int zero = 0;
constexpr static int one = 1;
constexpr static int two = 2;
constexpr static int three = 3;
constexpr static int four = 4;
constexpr static int five = 5;
constexpr static int six = 6;
constexpr static int seven = 7;
constexpr static int eight = 8;
constexpr static int nine = 9;
constexpr static int ten = 10;
constexpr static int eleven = 11;
};
void insertDistrict(Election &elc);
void printStatus(Election &elc);
void insertParty(Election &elc);
void insertCitizen(Election &elc);
void pressChar();
void insertElector(Election &elc);
void addVote(Election &elc);
void getDate(int &day, int &month, int &year); // return current date of the user computer
void printMenu(); // prints the Main Menu interface
void saveElection(Election &elc);
void electionLoad(Election **elc);
void printSelectElectionMenu();
void printStartNewElectionMenu();
Election *startNewElection(int year, int month, int day);
Election *createElection();
|
20134242c4c229ccc2f434a8faf3c8120f8bcf24 | 3d4fab30c2ed5d8bb6a2b511ae1efb7d9b2d8fae | /services/core/jni/com_android_server_am_ActivityManagerService.cpp | 50e4502a9a3a24b7364e2d532c0d1e573cbfd090 | [
"LicenseRef-scancode-unicode",
"Apache-2.0"
] | permissive | AquariOS/frameworks_base | 74af3ab21ec331577b5fdb067970b9c431d0a5bc | 82224174b35c98bbe6566389db3b9646a50096da | refs/heads/a7.1.2 | 2021-12-01T06:00:53.850285 | 2017-03-16T14:26:27 | 2017-08-18T02:21:55 | 111,934,139 | 5 | 35 | NOASSERTION | 2019-04-08T07:59:24 | 2017-11-24T15:45:59 | Java | UTF-8 | C++ | false | false | 4,467 | cpp | com_android_server_am_ActivityManagerService.cpp | /*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define LOG_TAG "ActivityManagerService"
//#define LOG_NDEBUG 0
#include <android_runtime/AndroidRuntime.h>
#include <jni.h>
#include <ScopedLocalRef.h>
#include <ScopedPrimitiveArray.h>
#include <cutils/log.h>
#include <utils/misc.h>
#include <utils/Log.h>
#include <stdio.h>
#include <errno.h>
#include <fcntl.h>
#include <semaphore.h>
#include <stddef.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
namespace android
{
// migrate from foreground to foreground_boost
static jint migrateToBoost(JNIEnv *env, jobject _this)
{
#ifdef USE_SCHED_BOOST
// File descriptors open to /dev/cpuset/../tasks, setup by initialize, or -1 on error
FILE* fg_cpuset_file = NULL;
int boost_cpuset_fd = 0;
if (!access("/dev/cpuset/tasks", F_OK)) {
fg_cpuset_file = fopen("/dev/cpuset/foreground/tasks", "r+");
if (ferror(fg_cpuset_file)) {
return 0;
}
boost_cpuset_fd = open("/dev/cpuset/foreground/boost/tasks", O_WRONLY);
if (boost_cpuset_fd < 0) {
fclose(fg_cpuset_file);
return 0;
}
}
if (!fg_cpuset_file || !boost_cpuset_fd) {
fclose(fg_cpuset_file);
close(boost_cpuset_fd);
return 0;
}
char buf[17];
while (fgets(buf, 16, fg_cpuset_file)) {
int i = 0;
for (; i < 16; i++) {
if (buf[i] == '\n') {
buf[i] = 0;
break;
}
}
if (write(boost_cpuset_fd, buf, i) < 0) {
// ignore error
}
if (feof(fg_cpuset_file))
break;
}
fclose(fg_cpuset_file);
close(boost_cpuset_fd);
#endif
return 0;
}
// migrate from foreground_boost to foreground
static jint migrateFromBoost(JNIEnv *env, jobject _this)
{
#ifdef USE_SCHED_BOOST
// File descriptors open to /dev/cpuset/../tasks, setup by initialize, or -1 on error
int fg_cpuset_fd = 0;
FILE* boost_cpuset_file = NULL;
if (!access("/dev/cpuset/tasks", F_OK)) {
boost_cpuset_file = fopen("/dev/cpuset/foreground/boost/tasks", "r+");
if (ferror(boost_cpuset_file)) {
return 0;
}
fg_cpuset_fd = open("/dev/cpuset/foreground/tasks", O_WRONLY);
if (fg_cpuset_fd < 0) {
fclose(boost_cpuset_file);
return 0;
}
}
if (!boost_cpuset_file || !fg_cpuset_fd) {
fclose(boost_cpuset_file);
close(fg_cpuset_fd);
return 0;
}
char buf[17];
while (fgets(buf, 16, boost_cpuset_file)) {
//ALOGE("Appending FD %s to fg", buf);
int i = 0;
for (; i < 16; i++) {
if (buf[i] == '\n') {
buf[i] = 0;
break;
}
}
if (write(fg_cpuset_fd, buf, i) < 0) {
//ALOGE("Appending FD %s to fg ERROR", buf);
// handle error?
}
if (feof(boost_cpuset_file))
break;
}
close(fg_cpuset_fd);
fclose(boost_cpuset_file);
#endif
return 0;
}
static JNINativeMethod method_table[] = {
{ "nativeMigrateToBoost", "()I", (void*)migrateToBoost },
{ "nativeMigrateFromBoost", "()I", (void*)migrateFromBoost },
};
int register_android_server_ActivityManagerService(JNIEnv *env)
{
return jniRegisterNativeMethods(env, "com/android/server/am/ActivityManagerService",
method_table, NELEM(method_table));
}
}
|
3acd8621eca643c06a64a6f4c6129b74aee20997 | ca862caa6b6a4868a654de487c11675c51ea3708 | /class/Railway.cpp | 8bffddc3cd562cab51edb414e186941079afe7a6 | [] | no_license | cadisrmz/Shortest_Route | 7fe7161f589313483cc331fc7ed203f4b1e5f9e7 | 963d805586e3d8976500b480d236e061eafdb942 | refs/heads/master | 2021-01-17T07:39:51.238315 | 2012-12-05T03:22:33 | 2012-12-05T03:22:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,771 | cpp | Railway.cpp | #include "Railway.h"
void showRail(Rail *&r, int i)
{
std::string j = "\t(";
if (i <= 9) {
j += '0';
}
std::cout
<< j << i
<< " - " << &r
<< ") " << r->depart()->name()
<< " -> " << r->arrival()->name()
<< " [" << r->train()
<< "]\t= " << r->duration()
<< "min for " << r->price()
<< " start " << r->start()->h()
<< ':' << r->start()->min()
<< std::endl;
}
/**
* Reads data from a formatted input fil and creates the hierarchy to represent
* a graph in which :
* - Stations are nodes ;
* - Rails are edges.
* When creating nodes, we maintain an adjacency list as well.
* A Rail links two Stations, having a start time, a cost and a duration.
*
* @param ifstream railway data file
* @param ifstream city transports data file
*/
Railway::Railway(std::ifstream &f, std::ifstream &g)
{
// - Data holders for input stream
std::string data = "";
// input price and time
int price = 0, time = 0, train = 0;
// Depart and arrival time
Time depart, arrival;
// Stations and Rail holder
Station *station = NULL, *last = NULL;
Rail *inbound = NULL;
// Stations traversed during a single trip using rails
std::vector<Station*> trip;
std::vector<Rail*> rails;
// Counters
unsigned int i = 0;
// - Parse "rails" file
while (!f.eof()) {
f >> data;
if (data.compare("Feuille") == 0) {
// Skip ":"
f >> data;
} else if (data.compare("prixh") == 0) {
f >> data; // Skip ":"
f >> price;
++train;
i = 0;
while (i < rails.size()) {
_rails.push_back(rails[i]);
_rails.back()->setPrice(price);
_rails.back()->setTrain(train);
++i;
}
// Clear holders
trip.clear();
rails.clear();
} else {
// data = departure
if (data.compare("25:00") != 0) {
depart.set(data);
// Trips are reversed compared to data
rails.push_back(new Rail(arrival, depart));
}
// data = arrival
f >> data;
arrival.set(data);
// data = city
f >> data;
// data = station
f >> data;
// New node
station = _stations.add(data);
// As soon as we already have a station, it means we are
// starting a trip.
if (!trip.empty()) {
last = trip.back();
inbound = rails.back();
// Set stations for last Rail we have, i.e :
// - last inserted as departure ;
// - new one as destination.
inbound->setTrip(last, station);
// Outbound edge for departure
last->addOut(data, inbound);
}
trip.push_back(station);
}
}
std::map<std::string, Station*>::iterator it = _stations.begin();
std::cout << "Gares : ";
while (it != _stations.end()) {
std::cout << it->second->name() << " ; ";
it++;
}
std::cout << std::endl;
// delete it;
while (!g.eof()) {
g >> data;
if (data.compare("Ville") == 0) {
// Skip ":"
g >> data;
// Skip city's name
g >> data;
} else {
// Add edge between two stations belonging to a same city :
// - with a time
// - cost = 0
station = _stations.get(data);
g >> data;
last = _stations.get(data);
// Time actually
g >> time;
// - Add trip both ways
// Station->Last
inbound = new Rail(station, last, time);
_rails.push_back(inbound);
station->addOut(last->name(), inbound);
// Last->Station
inbound = new Rail(last, station, time);
_rails.push_back(inbound);
last->addOut(station->name(), inbound);
}
}
_chemins = new Chemin*[5];
i = 0;
std::cout << "Rails : " << std::endl;
while (i < _rails.size()) {
showRail(_rails[i], i);
++i;
}
}
// - Methods
void Railway::Pluscourt_cout(Station* depart, Station* arrive, std::set<Rail*> interdit)
{
std::map<std::string, Station*> temp = _stations.list();
std::map<std::string, Station*>::iterator it;
std::set<std::string> a_traite;
std::map<std::string, Rail*> listerails;
std::map<std::string, Rail*>::iterator iter2;
std::map<std::string, Vertex*> dijkstra;
std::map<std::string, Vertex*>::iterator iter;
for(it= temp.begin(); it!= temp.end(); it++){
dijkstra.insert ( std::pair<std::string, Vertex*>( (*it).first , new Vertex() ) );
a_traite.insert( (*it).first );
}
// début algo
double min_choix;
std::string gare_traitee;
bool fini = false;
Station* en_cours;
listerails.clear();
while(!fini){
min_choix = DBL_MAX;
for(iter = dijkstra.begin(); iter!= dijkstra.end(); iter++){
if(((*iter).second->cost() < min_choix) && (a_traite.find((*iter).first) != a_traite.end() )){
min_choix = (*iter).second->cost();
gare_traitee = (*iter).first;
}
}
en_cours = get(gare_traitee);
if(gare_traitee == arrive->name()){
fini = true;
}else{
a_traite.erase(gare_traitee);
//en_cours = this.get(gare_traitee);
listerails = en_cours->rails();
for(iter2 = listerails.begin() ; iter2 != listerails.end(); iter2++){
if( (interdit.find((*iter2).second) == interdit.end()) && ( (*iter2).second->price() + dijkstra[gare_traitee]->cost() < dijkstra[(*iter2).second->arrival()->name()]->cost() ) ){
dijkstra[(*iter2).second->arrival()->name()]->set( (*iter2).second->price() + dijkstra[gare_traitee]->cost() , (*iter2).second );
}
}
}
}
Chemin* solution_trouve = new Chemin();
while(en_cours != depart){
solution_trouve->add(dijkstra[en_cours->name()]);
en_cours = dijkstra[en_cours->name()]->prec()->depart();
}
int i = 0;
while(i < 5){
if(solution_trouve->cost() < _chemins[i]->cost() ){
for(int j = i+1; j < 5 ; j++){
_chemins[j]= _chemins[j-1];
}
_chemins[i] = solution_trouve;
i = 5;
}else{
i++;
}
}
}
Station* Railway::get(const std::string &name)
{
return _stations.find(name);
}
|
41cfb6a0accbe29628579cd69570c1d5d412ca3c | b4e5fc44a46931bd95b257e1358088497ee2af20 | /testir.ino | a156242abd61314997d43b0941725f29b769feb6 | [] | no_license | nickmhnk/arduino-robot-v1 | 9d9efcf4f77800cdaa312094a8e75e899b9991dd | 71e28ee93c40d80fbb270db4f620982e2bfbcbb5 | refs/heads/master | 2023-03-13T12:32:21.789617 | 2021-03-28T16:33:53 | 2021-03-28T16:33:53 | 352,369,758 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,351 | ino | testir.ino | #include <IRremote.h>
#include <Servo.h>
#include <NewPing.h>
#define ENABLE_LED_FEEDBACK true
#define USE_DEFAULT_FEEDBACK_LED_PIN 0
const int LeftMotorForward = 7;
const int LeftMotorBackward = 6;
const int RightMotorForward = 5;
const int RightMotorBackward = 4;
const int servoPin = 11;
const int IR_RECEIVE_PIN = 10;
#define TRIGGER_PIN 13
#define ECHO_PIN 12
#define MAX_DISTANCE 200
NewPing sonar(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE);
Servo servo_motor;
enum class DIRECTION {
FORWARD,
BACKWARD,
STOP
};
auto moveState = DIRECTION::STOP;
boolean state = false;
const int TURN_DELAY = 100;
void setup() {
Serial.begin(115200);
IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK, USE_DEFAULT_FEEDBACK_LED_PIN);
Serial.print(F("Ready to receive IR signals at pin "));
pinMode(LED_BUILTIN, OUTPUT);
servo_motor.attach(servoPin);
pinMode(RightMotorForward, OUTPUT);
pinMode(LeftMotorForward, OUTPUT);
pinMode(LeftMotorBackward, OUTPUT);
pinMode(RightMotorBackward, OUTPUT);
}
void loop() {
int dist = sonar.ping_cm();
if ((dist < 5) && (moveState == DIRECTION::FORWARD)) {
moveStop();
}
if (IrReceiver.decode()) {
IrReceiver.printIRResultShort(&Serial);
if (IrReceiver.decodedIRData.command == 0x52) {
moveBackward();
} else if (IrReceiver.decodedIRData.command == 0x18) {
moveForward();
} else if (IrReceiver.decodedIRData.command == 0x8) {
turnLeft();
} else if (IrReceiver.decodedIRData.command == 0x5A) {
turnRight();
} else if (IrReceiver.decodedIRData.command == 0x1C) {
moveStop();
}
IrReceiver.resume();
}
}
void moveStop() {
moveState = DIRECTION::STOP;
digitalWrite(RightMotorForward, LOW);
digitalWrite(LeftMotorForward, LOW);
digitalWrite(RightMotorBackward, LOW);
digitalWrite(LeftMotorBackward, LOW);
}
void moveForward() {
if (moveState != DIRECTION::FORWARD) {
moveStop();
delay(50);
}
moveState = DIRECTION::FORWARD;
digitalWrite(LeftMotorForward, HIGH);
digitalWrite(RightMotorForward, HIGH);
digitalWrite(LeftMotorBackward, LOW);
digitalWrite(RightMotorBackward, LOW);
}
void moveBackward() {
if (moveState != DIRECTION::BACKWARD) {
moveStop();
delay(50);
}
moveState = DIRECTION::BACKWARD;
digitalWrite(LeftMotorBackward, HIGH);
digitalWrite(RightMotorBackward, HIGH);
digitalWrite(LeftMotorForward, LOW);
digitalWrite(RightMotorForward, LOW);
}
void turnLeft() {
if (moveState == DIRECTION::FORWARD) {
// stop left motor
digitalWrite(LeftMotorForward, LOW);
// same as forward
digitalWrite(RightMotorForward, HIGH);
digitalWrite(LeftMotorBackward, LOW);
digitalWrite(RightMotorBackward, LOW);
delay(TURN_DELAY);
//activat left motro
digitalWrite(LeftMotorForward, HIGH);
} else if (moveState == DIRECTION::BACKWARD) {
// stop right motor
digitalWrite(RightMotorBackward, LOW);
// same as backward
digitalWrite(LeftMotorBackward, HIGH);
digitalWrite(LeftMotorForward, LOW);
digitalWrite(RightMotorForward, LOW);
delay(TURN_DELAY);
//activate back
digitalWrite(RightMotorBackward, HIGH);
} else {
digitalWrite(LeftMotorForward, LOW);
digitalWrite(RightMotorForward, HIGH);
digitalWrite(LeftMotorBackward, LOW);
digitalWrite(RightMotorBackward, LOW);
}
}
void turnRight() {
if (moveState == DIRECTION::FORWARD) {
digitalWrite(RightMotorForward, LOW);
// same as forward
digitalWrite(LeftMotorForward, HIGH);
digitalWrite(LeftMotorBackward, LOW);
digitalWrite(RightMotorBackward, LOW);
delay(TURN_DELAY);
digitalWrite(RightMotorForward, HIGH);
} else if (moveState == DIRECTION::BACKWARD) {
// stop right motor
digitalWrite(LeftMotorBackward, LOW);
// same as backward
digitalWrite(RightMotorBackward, HIGH);
digitalWrite(LeftMotorForward, LOW);
digitalWrite(RightMotorForward, LOW);
delay(TURN_DELAY);
//activate back
digitalWrite(LeftMotorBackward, HIGH);
} else {
digitalWrite(LeftMotorForward, HIGH);
digitalWrite(RightMotorForward, LOW);
digitalWrite(LeftMotorBackward, LOW);
digitalWrite(RightMotorBackward, LOW);
}
}
|
344a817e739f66dc7cd0e3876a1116af6ee8b4fe | badd6248da9dc48832a028694a34092bf478f8cb | /Common/CommonTests/IndexerTest.cpp | 3f216ef7b422651683b9d53503f47597f9e08b1d | [] | no_license | SergeyBakev/Common | 175d2cd6f22e6a158455ed6619a9cc918fd77f2f | 4738fa40aacf8000b78f9d0bb5f7454a8e480171 | refs/heads/main | 2023-04-21T11:00:48.905205 | 2021-05-15T03:35:26 | 2021-05-15T03:35:26 | 322,772,200 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 166 | cpp | IndexerTest.cpp | #include "pch.h"
#include "CppUnitTest.h"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace CommonTests
{
TEST_CLASS(FArrayBaseTest)
{
}
} |
5cd814adadf8862dc81619d1ccb0a54f10dbe831 | 26784bbd3825130f1fc14fc54a4558a5287c5254 | /Heap/LeftistHeap.hpp | 5579059c93763e5c3514bdf09d3805d48631847a | [] | no_license | takkyu2/purely-functional-data-structures | 3a6ca050351155ccd72db5a4396498c8a2ac88c9 | 0a29fd36f522a823e13c4164d27427bcc3b5d84b | refs/heads/master | 2023-04-07T15:01:10.994929 | 2021-04-20T09:12:09 | 2021-04-20T09:12:09 | 341,415,313 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,670 | hpp | LeftistHeap.hpp | #ifndef LEFTIESTHEAP
#define LEFTIESTHEAP
#include <iostream>
#include <concepts>
#include <variant>
#include <memory>
#include <functional>
#include <stack>
#include "../utils/utils.hpp"
using namespace std::placeholders;
template <Ordered Elem>
class LeftistHeap {
private:
struct SubLeftistHeap {
SubLeftistHeap(Elem x) : rank(1), elem(x) { }
SubLeftistHeap(int rk, Elem x, std::shared_ptr<LeftistHeap> l, std::shared_ptr<LeftistHeap> r)
: rank(rk), elem(x), left(l), right(r) { }
int rank;
Elem elem;
std::shared_ptr<LeftistHeap> left, right;
};
public:
LeftistHeap() = default;
LeftistHeap(Empty e) { }
LeftistHeap(SubLeftistHeap t) : m_heap(t) { }
LeftistHeap(const LeftistHeap& bst) = default;
static LeftistHeap Heapify(std::initializer_list<Elem> il) {
if (il.size() == 0) return {};
std::stack<LeftistHeap> now_st, next_st;
for (Elem e: il) now_st.push(e);
while (now_st.size() > 1) {
while (now_st.size() >= 2) {
LeftistHeap h1 = now_st.top(); now_st.pop();
LeftistHeap h2 = now_st.top(); now_st.pop();
next_st.push(h1.merge(h2));
}
if (now_st.size() == 1) {
LeftistHeap h1 = now_st.top(); now_st.pop();
next_st.push(h1);
}
swap(now_st, next_st);
}
return now_st.top();
}
LeftistHeap(Elem x)
: m_heap(SubLeftistHeap(
1,
x,
std::make_shared<LeftistHeap>(LeftistHeap::empty()),
std::make_shared<LeftistHeap>(LeftistHeap::empty())
)
) { }
LeftistHeap(int rank, Elem x, std::shared_ptr<LeftistHeap> l, std::shared_ptr<LeftistHeap> r)
: m_heap(SubLeftistHeap(rank, x, l, r)) { }
LeftistHeap(int rank, Elem x, LeftistHeap l, LeftistHeap r)
: m_heap(SubLeftistHeap(rank, x, std::make_shared<LeftistHeap>(l), std::make_shared<LeftistHeap>(r))) { }
static LeftistHeap empty() { return {};}
LeftistHeap merge(LeftistHeap h) const {
static auto visit_merge = overloaded{
[] (Empty e, Empty x) {
return LeftistHeap(x);
},
[] (Empty e, auto x) {
return LeftistHeap(x);
},
[] (auto x, Empty e) {
return LeftistHeap(x);
},
[] (SubLeftistHeap h1, SubLeftistHeap h2) {
if (h1.elem < h2.elem)
return makeT(h1.elem, h1.left, std::make_shared<LeftistHeap>(h1.right->merge(h2)));
else
return makeT(h2.elem, h2.left, std::make_shared<LeftistHeap>(h2.right->merge(h1)));
},
};
return std::visit(visit_merge, m_heap, h.m_heap);
}
LeftistHeap insert(Elem x) {
static auto visit_insert = overloaded {
[] (Empty e, Elem x) {
return LeftistHeap(x);
},
[] (SubLeftistHeap h, Elem x) {
if (h.elem < x) {
auto rheap = std::make_shared<LeftistHeap>(h.right->insert(x));
if (h.left->rank() >= rheap->rank())
return LeftistHeap(rheap->rank() + 1, h.elem, h.left, rheap);
else
return LeftistHeap(h.left->rank() + 1, h.elem, rheap, h.left);
}
else
return LeftistHeap(1, x, h, LeftistHeap::empty());
},
};
return std::visit(std::bind(visit_insert, _1, x), m_heap);
}
Elem findMin() {
static auto visit_findMin = overloaded {
[] (Empty e) {
throw std::runtime_error("No element");
return 0;
},
[] (SubLeftistHeap h) {
return h.elem;
},
};
return std::visit(visit_findMin, m_heap);
}
LeftistHeap deleteMin() {
static auto visit_deleteMin = overloaded {
[] (Empty e) {
throw std::runtime_error("No element");
return LeftistHeap();
},
[] (SubLeftistHeap h) {
return h.left->merge(*h.right);
},
};
return std::visit(visit_deleteMin, m_heap);
}
int rank() {
static auto visit_rank = overloaded{
[] (Empty e) {
return 0;
},
[] (SubLeftistHeap x) {
return x.rank;
},
};
return std::visit(visit_rank, m_heap);
}
void print() const {
static auto visit_print = overloaded {
[](Empty e) { },
[](SubLeftistHeap t) {
std::cout << t.elem << "(";
t.left->print();
std::cout << " ) : ( ";
t.right->print();
std::cout << ")";
}
};
std::visit(visit_print, m_heap);
}
Elem getElem(Elem x) const {
if (std::holds_alternative<Empty>(m_heap))
throw std::runtime_error("element not found, empty");
else
return getElem_helper(x, std::get<SubLeftistHeap>(m_heap).elem);
}
private:
static LeftistHeap makeT(Elem x, std::shared_ptr<LeftistHeap> a, std::shared_ptr<LeftistHeap> b) {
if (a->rank() >= b->rank())
return LeftistHeap(b->rank() + 1, x, a, b);
else
return LeftistHeap(a->rank() + 1, x, b, a);
}
std::variant<Empty, SubLeftistHeap> m_heap;
};
#endif
|
53b04b6a432182399e523594ad9100da922d1401 | 879a91d6f32c24ae6255aea84e2f4750d3903306 | /LRUCacheTest.cpp | 1291f5d324057225b7a52fc1837e0ee56b7d32bb | [] | no_license | bonty/tdd_bootcamp | c04c4f8aeadef2b393243c867e429eb7149aa232 | 9e4cd716978cbd0b81151a9f6c2ac790887dfb44 | refs/heads/master | 2020-06-07T02:48:23.030349 | 2012-02-14T05:40:13 | 2012-02-14T05:40:13 | 3,436,503 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 258 | cpp | LRUCacheTest.cpp | #include <cppunit/config/SourcePrefix.h>
#include "LRUCacheTest.hpp"
CPPUNIT_TEST_SUITE_REGISTRATION( LRUCacheTest );
void LRUCacheTest::test_put()
{
CPPUNIT_ASSERT(1 == lru->put("a", "dataA"));
}
void LRUCacheTest::setUp()
{
lru = new LRUCache();
}
|
27e4f748459101fd4d23f466e9eecbc38bb6821d | 624ea811498ae331bb7491ccb45177d3a154dd60 | /bloop2.cpp | cd6c4c294a0ae7de929f9177f96ea7bd1533f2ef | [] | no_license | RichardBanh/cpp | 363a6120f1b414b384994bb76d5c3dd504bc5d7b | 81eb00d9fd60f0ad43022d0f82e8ff72af251606 | refs/heads/master | 2022-12-16T11:44:28.093016 | 2020-09-10T07:38:59 | 2020-09-10T07:38:59 | 291,405,604 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 791 | cpp | bloop2.cpp | #include <iostream>
using namespace std;
int main() {
int dollars;
int cents;
int totalCents;
int quart;
int dimes;
int nickles;
int pennies;
cout << "Please enter number of dollars followed by a space then cents:";
cin >> dollars >> cents;
dollars = dollars * 100;
totalCents = dollars + cents;
quart = totalCents / 25;
totalCents = totalCents - (quart * 25);
dimes = totalCents / 10;
totalCents = totalCents - (dimes * 10);
nickles = totalCents / 5;
totalCents = totalCents - (nickles * 5);
pennies = totalCents;
cout << "Number of quarters: " << quart ;
cout << "\nNumber of dimes: " << dimes;
cout << "\nNumber of nickles: " << nickles;
cout << "\nNumber of pennies: " << pennies;
return 0;
}
|
b921c4ada8c3e73e9a60e8ba2900d6e01d3f2080 | 39827fa483eb7bbc978373b387cbd0e46e5481ef | /霍夫曼树与霍夫曼编码/greedy-huffman/main.cpp | 8463203486f5d7f6ebfe25de6e7fe86709c19f2c | [] | no_license | Justobe/ACM | fa3b7e2e529376d8e94b336d7e3f8bbd8d55d272 | 6ff8baa0363beb700c4ddc76c5eaf8fa9d438c3e | refs/heads/master | 2021-01-20T13:03:57.508198 | 2017-09-12T07:34:42 | 2017-09-12T07:34:42 | 101,731,496 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 588 | cpp | main.cpp | #include <iostream>
#include<queue>
using namespace std;
int main()
{
int arr[1002];
int b[1002];
int n;
while(cin>>n)
{
priority_queue<int, vector<int>, greater<int> > ht;
for(int i = 0 ; i <n; i++)
{
cin>>arr[i];
ht.push(arr[i]);
}
int sum = 0;
while(ht.size()>1)
{
int a = ht.top();
ht.pop();
int b = ht.top();
ht.pop();
sum = sum + a + b;
ht.push(a+b);
}
cout<<sum<<endl;
}
return 0;
}
|
9bbeb06ebe8dc58d1de7edd088851ceb1d6b06e5 | 041d5d32ecc483ec389c3832941a50650135ea7c | /include/temp_functions.h | 9e8ab9fde4a0c4a0045c88a12846d72ea1a11335 | [] | no_license | milton-pagan/iq-switch | a6f42545bb9886764b311fe4e26b9e8c4701d6a5 | a024348921319fc1d951cf902a420404ab4ae818 | refs/heads/master | 2020-06-17T08:22:19.859958 | 2019-07-11T01:33:52 | 2019-07-11T01:33:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 133 | h | temp_functions.h | #pragma once
#include <iostream>
#include <vector>
void print_2D_array(int **arr, int size);
void print_vector(std::vector<int> v);
|
2a26127a484e93fa4a43ada34d8e21f5e00c6407 | e3c1509da264714272ff431b351c538909d0b7d5 | /chapter 12/d22_p1/cow.cpp | 6877fb37ad48100505e8a4dccdaa79af6a12eb75 | [] | no_license | 61jing/C---Primer-Plus-Exercises-Solutions | dfec0878685a72f9301e9a8fe0b1158062c99222 | aca58ac30ed7c7aad1751a84e2f690dfb1d1221e | refs/heads/master | 2020-07-12T23:40:12.943799 | 2013-07-02T14:16:04 | 2013-07-02T14:16:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 954 | cpp | cow.cpp | #include "cow.h"
Cow::Cow() {
name[0] = '\0';
hobby = NULL;
weight = 0;
}
Cow::Cow (const char * nm, const char * ho, double wt) {
strcpy(name,nm);
hobby = new char [strlen(ho)+1];
strcpy(hobby,ho);
weight = wt;
}
Cow::Cow (const Cow & c) {
strcpy(name,c.name);
hobby = new char [strlen(c.hobby)+1];
strcpy(hobby,c.hobby);
weight = c.weight;
}
Cow::~Cow() {
delete [] hobby;
}
Cow & Cow::operator=(const Cow & c) {
if (this == &c) // object assigned to itself
return *this;
delete [] hobby;
strcpy(name,c.name);
hobby = new char[strlen(c.hobby)+1];
strcpy(hobby,c.hobby);
weight = c.weight;
return *this;
}
void Cow::ShowCow() const {
std::cout << "\nName: " << name;
if (hobby == NULL)
std::cout << "\nHobby: [empty - please initialize]";
else
std::cout << "\nHobby: " << hobby;
std::cout << "\nWeight: " << weight << std::endl;
} |
68e51dee1460e6987b738c76cd90d7629fcff484 | a7c1d71890b463ef57d3c56b6b6086d489aa798e | /GFG Code/DP/coin_change_problem_approach2.cpp | 13d81aabb61e1e84605d08327d0ec029d2415f3b | [] | no_license | anilchoudhary/DSA | 7016eb5172a6e4762384ab4e3906401085bd9f7a | 19b2816afe38ec95a736daeea99165259cb98a1c | refs/heads/master | 2020-12-26T10:05:24.678772 | 2020-10-26T06:25:01 | 2020-10-26T06:25:01 | 237,475,644 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 399 | cpp | coin_change_problem_approach2.cpp | #include<bits/stdc++.h>
using namespace std;
int count( int S[], int m, int n )
{
int table[n + 1];
memset(table, 0, sizeof(table));
table[0] = 1;
for (int i = 0; i < m; i++)
for (int j = S[i]; j <= n; j++)
table[j] += table[j - S[i]];
return table[n];
}
int main()
{
int arr[] = {1, 2, 3};
int m = sizeof(arr) / sizeof(arr[0]);
int n = 4;
cout << count(arr, m, n);
return 0;
} |
17b99b06df1e38bfef6316de4dbcf739f855b760 | d3b3e48e393ea3f5dadbc13161c6ecab6d0d977f | /lipovich/task#1/rabin_carp.cpp | b1479fe751b8c65011b1158036ee03d24cc9fbaf | [] | no_license | bioinf/bioalgo2013 | 7d6f7ae54273a22df93d18bc76d300610f3ea50e | 41051838bf24ec0b86bc708c596b719a8e7a0da9 | refs/heads/master | 2021-03-27T13:36:15.375247 | 2013-06-09T09:06:04 | 2013-06-09T09:06:04 | 8,815,477 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 880 | cpp | rabin_carp.cpp | #include "rabin_carp.h"
bool check(const std::string& p, const std::string& t, int pos, int n)
{
for (int i = pos; i < pos + n; ++i)
{
if (p[i - pos] != t[i])
{
return false;
}
}
return true;
}
TResult rabin_carp(const std::string& p, const std::string& t)
{
int n = p.size(), m = t.size();
long long hash_p = 0, hash_t = 0, g = 1;
TResult res;
//Calc initial hash of pattern and text
for (int i = 0; i < n; ++i)
{
hash_p = (a * hash_p + (int)p[i]) % 31;
hash_t = (a * hash_t + (int)t[i]) % 31;
g = (a * g) % 31;
}
for (int i = 0; i < m - n + 1; ++i)
{
if (hash_p == hash_t && check(p, t, i, n))
{
res.push_back(i);
}
hash_t = (a * hash_t - (g * (int)t[i]) % 31 + (int)t[i + n]) % 31;
}
return res;
}
|
9f1310148017600eda657cfcb81d7dca3f50f4a3 | 40ac7b3467018a97781409785d1bbfb162ee462e | /libraries/BaseLib/include/aex/SpriteAnimated.hpp | f585e0e1abedd28e0efbcc66d5c6d638bfcb16bb | [
"BSL-1.0"
] | permissive | aexol/AexolGL | 611c165f53cf3ad3ae9cd7106c18a8d61a6801ba | 7fcc93d43ad329ebddadabf6a5c18bac995b060a | refs/heads/master | 2020-03-21T05:40:06.912374 | 2018-06-21T13:23:19 | 2018-06-21T13:23:19 | 138,172,393 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,020 | hpp | SpriteAnimated.hpp | /*
* File: SpriteAnimated.hpp
* Author: mritke
*
* Created on November 14, 2014, 4:08 PM
*/
#ifndef SPRITEANIMATED_HPP
#define SPRITEANIMATED_HPP
#include <aex/AexolGL.hpp>
namespace aex
{
struct AEX_PUBLIC_API SpriteFrame
{
int frameNumber;
int pageNumber;
aex::math::Vector2 UvOffset;
aex::math::Vector2 UvSize;
SpriteFrame()
{
}
SpriteFrame(int frameNumber, int pageNumber, float sizeX, float sizeY, float offsetX, float offsetY);
};
struct AEX_PUBLIC_API AnimationTypeInfo
{
aex::string animationName = "";
int startFrame = 0;
int endFrame = 0;
int animationSize = 0;
float m_duration;
AnimationTypeInfo()
{
}
AnimationTypeInfo(aex::string animationName, int startFrame, int endFrame);
};
struct AEX_PUBLIC_API AnimationSequence
{
bool looped = true;
int sequenceProgress = 0;
std::vector<aex::string> sequence;
std::vector<int> repeats;
};
/*class AnimationInfo
{
protected:
int m_frames = 0;
int m_currenFrame = 0;
int m_currentPage = 0;
AnimationTypeInfo m_currentAnimationType;
bool m_mulitiTextureAtlas = false;
bool m_multiAnimationTypes = false;
std::vector<SpriteFrame> m_framesInfo;
std::map<aex::string, AnimationTypeInfo> m_animationsInfo;
std::vector<Texture*> m_textures;
public:
AnimationInfo();
void update(aexTimeUnit elpsedtime);
};*/
class AEX_PUBLIC_API SpriteAnimated : public Sprite
{
public:
SpriteAnimated();
~SpriteAnimated();
virtual void draw(AexRenderer* gl);
virtual void update(aexTimeUnit elpsedtime);
virtual void finishdraw(AexRenderer* gl);
void reset();
void calculateFrame();
void LoadAnimationsFromFile(const aex::string& filename);
void LoadSeqenceFromFile(const aex::string& filename);
void generateJson(const aex::string& filename, int pixelsX, int pixelsY, int framesX, int framesY);
bool setAnimationType(aex::string animationTypeName);
void setFramesInfo(std::vector<SpriteFrame> framesInfo);
std::vector<SpriteFrame> getFramesInfo() const;
void setFrameUniformSize(bool frameUniformSize);
bool isFrameUniformSize() const;
void setTime(float time);
float getTime() const;
void setFrameduration(float frameduration);
float getFrameduration() const;
void setDuration(float duration);
float getDuration() const;
void setCurrenFrame(int currenFrame);
int getCurrenFrame() const;
void setFrames(int frames);
int getFrames() const;
aex::string getAnimationType() const;
void setCurrentAnimationType(AnimationTypeInfo currentAnimationType);
AnimationTypeInfo getCurrentAnimationType() const;
void setSpeed(float speed);
float getSpeed() const;
private:
int m_fps = 24;
int m_frames = 0;
int m_currenFrame = 0;
int m_currentPage = 0;
AnimationTypeInfo m_currentAnimationType;
float m_duration = 0.0f;
float m_frameduration;
float m_speed = 1.0f;
bool m_rewind = false;
bool m_paused = false;
bool m_mulitiTextureAtlas = false;
aexTimeUnit m_time = 0.0;
UniformFloat2 m_UvOffsetUniform;
UniformFloat2 m_UvSizeUniform;
bool m_frameUniformSize = false;
bool m_isUniformSizeSet = false;
std::vector<SpriteFrame> m_framesInfo;
std::map<aex::string, AnimationTypeInfo> m_animationsInfo;
std::vector<Texture*> m_textures;
bool m_multiAnimationTypes = false;
aex::string m_animationType;
bool m_sequence;
};
typedef aex::shared_ptr<SpriteAnimated> SpriteAnimated_ptr;
}
#endif /* SPRITEANIMATED_HPP */
|
9b0bba753ecc434308a121deb081c2c33ca67946 | 9ffdd5eee217d4265b4679665524d489fbf74af1 | /Mac_Linux/main.cc | 4d8a3ccfe0d241de73eaa3aa3152a151088e6a9b | [] | no_license | natelowy/CS3560-GroupProject | d8e42f5b0570e0acb61dadd9b87a368b9ed66280 | 1574c6482f55bab07249ad47bd3df5ae5782975d | refs/heads/master | 2020-03-09T21:01:45.075914 | 2018-04-24T14:36:42 | 2018-04-24T14:36:42 | 128,999,120 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,617 | cc | main.cc | #include<iostream>
#include<iomanip>
#include <cstdlib>
#include<fstream>
#include"game.h"
#include"game2.h"
#include"othello.h"
#include"colors.h"
#include"checkers.h"
#include"connect4.h"
int MENU1 = 0;
using namespace std;
using namespace main_savitch_14;
void colormenu(string &c1, string &c2, string &ctext);///color menu for othello
int main(){
bool quit = 1;///used for playing again
char quit_choice;
while(quit){
char choice1;
cout << "Would you like to Play a game of "<<endl;
cout <<"Checkers (c) , Othello (o), or Connect4(4) ?"<<endl;
cout << "Choice : ";
cin >> choice1;
cout << endl;
if((choice1 == 'o') || (choice1 == 'O')){///if they choose othello
game::who winner;
int rowsize, columnsize;
string c1, c2, ctext;
char colorcheck;
ifstream ins;
//Othello mygame;
cout << "\nWelcome to Othello/Reversi!\n";
cout << "X (you) plays first. You can only place pieces adjacent (not diagonally) to an opponent's piece.\n";
cout << "Pieces can only be positioned such that they cause at least one opponent's piece to be enclosed on two sides by yours.\n";
cout << "\nChoose an even row size between 4 and 18 (8 is normal): ";
cin >> rowsize;
while (rowsize % 2 != 0 || rowsize < 4 || rowsize > 18){
cout << "Invalid size.\n";
cout << "Choose an even row size from 4-18: ";
cin >> rowsize;
}
cout << "Choose an even column size between 4 and 18 (8 is normal): ";
cin >> columnsize;
while (columnsize % 2 != 0 || columnsize < 4 || columnsize > 18){
cout << "Invalid size.\n";
cout << "Choose an even row size from 4-18: ";
cin >> columnsize;
}
cin.ignore();
cout << "Would you like to use colorblindness settings? (y/n): ";
cin >> colorcheck;
if (colorcheck == 'Y' || colorcheck == 'y'){
ins.open("cb.txt");
if (ins.fail()){
colormenu(c1, c2, ctext);
}
else{
if (ins.peek()== '\n' || ins.peek() == '\r')
ins.ignore();
getline(ins, c1);
getline(ins, c2);
getline(ins, ctext);
cin.ignore();
}
}
else{
c1 = "RED";
c2 = "CYAN";
ctext = "WHITE";
cin.ignore();
}
Othello mygame(rowsize, columnsize, c1, c2, ctext);
winner = mygame.play();
if(MENU1 == 0){
if(winner == game::HUMAN)
cout << "\n\nThe winner is P1!\n";
else if(winner == game::NEUTRAL)
cout << "\n\nThe game is a tie!\n";
else if (winner == game::COMPUTER)
cout << "\n\nThe winner is P2!\n";
else cout << "\n\nI have no idea what happened.\n";
}
else{
MENU1 = 0;
}
}
else if((choice1 == 'c') || (choice1 == 'C')){///if they choose checkers
Checkers game1;
int winner;
cout << "Player 1 is blue, player 2 is white" << endl;
cin.ignore();
winner = game1.play();
if(MENU1 == 0){
if(winner == main_savitch_14::game::HUMAN){
cout << "Game over. Player 1 wins" << endl;
}
else{
cout << "Game over. Player 2 wins" << endl;
}
}
else{
MENU1 = 0;
}
}
else if((choice1 == '4')){///if they choose connect 4
int choice;
string restart;
string colorSwap;
ifstream fin;
connectFour obj;
cin.ignore();
obj.play();
if(MENU1 == 1){
MENU1 = 0;
}
}
else{///invalid choice
cout << "Invalid Choice" << endl;
}
cout << "Would you like to keep playing? (y or n): ";
cin >> quit_choice;
cout << endl;
if((quit_choice == 'n') || (quit_choice == 'N')){
quit = 0;
}
else{///quit
quit = 1;
}
}
return 0;
}
void colormenu(string &c1, string &c2, string &ctext){
cout << "The following are your tile color options:\n\n";
cout << WHITE << B_BLACK << " BLACK " << B_BR_BLACK << " BR_BLACK " << B_RED << " RED " <<
B_GREEN << " GREEN " << RESET << endl << B_YELLOW << " YELLOW " << B_BLUE << " BLUE " << B_MAGENTA << " MAGENTA " <<
B_CYAN << " CYAN " << BLACK << B_WHITE << " WHITE " << RESET << endl;
cout << "\n\nPlease enter the first tile color you'd like (in capital letters, ex. 'BLUE'): ";
if (cin.peek() == '\n'||cin.peek()=='\r')
cin.ignore();
getline(cin, c1);
while (c1 != "BLACK" && c1 != "BR_BLACK" && c1 != "RED" && c1 != "GREEN" &&
c1 != "YELLOW" && c1 != "BLUE" && c1 != "MAGENTA" && c1 != "CYAN" && c1 != "WHITE"){
cout << "Invalid option. Please re-enter: ";
if (cin.peek() == '\n' || cin.peek() == '\r')
cin.ignore();
getline(cin, c1);
}
cout << "Please enter the second tile color you'd like: ";
if (cin.peek() == '\n' || cin.peek() == '\r')
cin.ignore();
getline(cin, c2);
while ((c2 != "BLACK" && c2 != "BR_BLACK" && c2 != "RED" && c2 != "GREEN" &&
c2 != "YELLOW" && c2 != "BLUE" && c2 != "MAGENTA" && c2 != "CYAN" && c2 != "WHITE") || (c2 == c1)){
cout << "Invalid option. Please re-enter: ";
if (cin.peek() == '\n' || cin.peek() == '\r')
cin.ignore();
getline(cin, c2);
}
cout << "Now choose a text color:\n";
cout << B_WHITE << BLACK << " BLACK " << RED << " RED " << GREEN << " GREEN " << YELLOW << "YELLOW" << BLUE << " BLUE " <<
MAGENTA << " MAGENTA " << CYAN << " CYAN " << BR_CYAN << " BR_CYAN " << B_BLACK << WHITE << " WHITE " << RESET << endl;
cout << "Your text color choice: ";
if (cin.peek() == '\n' || cin.peek() == '\r')
cin.ignore();
getline(cin, ctext);
while ((ctext != "BLACK" && ctext != "RED" && ctext != "GREEN" &&
ctext != "YELLOW" && ctext != "BLUE" && ctext != "MAGENTA" && ctext != "CYAN" && ctext != "BR_CYAN" && ctext != "WHITE") || (ctext == c1) || (ctext == c2)){
cout << "Invalid option. Please re-enter: ";
if (cin.peek() == '\n' || cin.peek() == '\r')
cin.ignore();
getline(cin, ctext);
}
cout << "Okay. A board will be created with " << c1 << " and " << c2 << " tiles using " << ctext << " text.\n";
}
|
2cab7150060c409f3e82979152382eb496c09763 | f4916f97b2ff6a246317fa4e6bc4fa8fc5e81836 | /include/io.h | d2ba3a03b8572600e9a4683b7fff15bcdcd25ec3 | [] | no_license | TedaLIEz/DES | 4b47458737ba304e4174e34c455eccada96dc8e9 | 3ebf3f580e5e45769ea84afe9977ebb9f8f0633b | refs/heads/master | 2021-03-27T16:31:06.649008 | 2017-06-06T09:02:33 | 2017-06-06T09:02:33 | 90,977,211 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,277 | h | io.h | //
// Created by aLIEzTed on 6/4/17.
//
#ifndef DES_IO_H
#define DES_IO_H
#include <iostream>
#include "pcap_encode.h"
#include <unordered_map>
#include "helper.h"
namespace IO {
inline int save_pcap(const std::string prefix,
PcapEncoder::pcap_hdr_t hdr,
const std::unordered_map<size_t, std::vector<PcapEncoder::Packet>> &map) {
for (auto it : map) {
if (!it.second.empty()) {
auto p = it.second[0];
std::ostringstream oss;
oss << prefix << "[";
if (p.src_addr < p.dst_addr) {
oss << p.src_addr << "][" << p.src_port << "][" << p.dst_addr << "][" << p.dst_port << "]";
} else {
oss << p.dst_addr << "][" << p.dst_port << "][" << p.src_addr << "][" << p.src_port << "]";
}
oss << ".pcap";
auto outputpath = oss.str();
if (std::ifstream(outputpath)) {
std::remove(outputpath.c_str());
}
std::ofstream out(oss.str(), std::ios::out | std::ios::binary);
if (!out) {
return FILE_CREATE_ERROR;
}
out.write(static_cast<char *>(static_cast<void *>(&hdr)), sizeof(hdr));
for (auto e : it.second) {
out.write(e.ori_data, e.ori_len);
}
out.close();
}
}
return 0;
}
}
#endif //DES_IO_H
|
aa66f41693f0cfa0595919ad6f819b786d5c014a | cb590ddd9f0009af8f69f05f73224ff49fd3b05e | /main_game.cpp | 8dae1ac87e922a8454a3b09b960448778974b852 | [] | no_license | Luca145D/warriors-battle | 5ff7dbfcf058f55f9d5a8a8540f4e4bc3a6dbc1c | 09b2d5ed180cbb31010716c4916b1cbd0d3cc107 | refs/heads/master | 2020-12-12T13:26:21.261803 | 2020-01-15T16:24:03 | 2020-01-15T16:24:03 | 234,136,749 | 0 | 0 | null | 2020-01-15T17:37:32 | 2020-01-15T17:37:31 | null | UTF-8 | C++ | false | false | 235 | cpp | main_game.cpp | #include "game_logic/Game.h"
#include "warrior_class/Warrior.h"
int main(){
Warrior p1("Exodus", 100, 12);
Warrior p2("Witcher", 100, 10);
Warrior bruh("test", 999999999, 0);
Game game(p1, p2);
game.start();
return 0;
}
|
61ec65697ee6083c8a617af4228e028c86e85393 | 33a622755aa35c8bbf591444e20b74fe39197856 | /cpu_scheduling/srtf.cpp | 710b3b3c0bb2f25f3d77ce640d07bdd35cdc6312 | [] | no_license | Himanshu8862/OS_Simulator | 1c6841ed0e34da2e6e06d25fe67d83f1c640ffad | a7573647204d89621a81778cd911b61f5685dd2b | refs/heads/main | 2023-04-12T05:14:36.658798 | 2021-04-23T14:21:28 | 2021-04-23T14:21:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,586 | cpp | srtf.cpp | // SRTF CPU scheduling
#include<bits/stdc++.h>
using namespace std;
class srtf_Process // each process will have the following attributes
{
public:
int no; //process number
int atime; //arrival time
int btime; //burst time
int stime; //start time
int ctime; //completion time
int wtime; //waiting time
int ttime; //turn around time
int rtime; //response time
int is_completed; //to flag process that is completed
int burst_remaining;
};
bool srtf_comp_atime(srtf_Process P, srtf_Process Q) //to sort according to arrival time
{
if(P.atime==Q.atime)
return P.no<Q.no;
return (P.atime<Q.atime);
}
int srtf_main()
{
int n;
float sum_ttime=0,sum_wtime=0,sum_rtime=0;
cout<<"Enter the no. of Process to be performed : ";
cin>>n;
vector<srtf_Process> p(n); //creating array for the class
for(int i = 0; i < n; i++)
{
cout<<"\nEnter the Arrival time and Burst Time for Process "<<i+1<<":\n";
cin>>p[i].atime>>p[i].btime;
p[i].no = i+1;
p[i].is_completed=0;
p[i].burst_remaining = p[i].btime;
}
sort(p.begin(),p.end(),srtf_comp_atime); //sorting the Processes according to arrival time
int current_time = 0;
int completed = 0;
while(completed != n) //
{
int idx = -1;
int lowest_btime = INT_MAX;
//finding the lowest burst time process among the processes those have been arrived till now
for(int i = 0; i < n; i++)
{
if(p[i].atime <= current_time && p[i].is_completed == 0)
{
if(p[i].burst_remaining < lowest_btime)
{
lowest_btime = p[i].burst_remaining;
idx = i;
}
if(p[i].burst_remaining == lowest_btime) //if the burst time of two process are same, the process which arrived first will be executed
{
if(p[i].atime < p[idx].atime)
{
lowest_btime = p[i].burst_remaining;
idx = i;
}
}
}
}
if(idx != -1)
{
// if the remaining burst time is same as initial burst time, the process just started executing
if(p[idx].burst_remaining == p[idx].btime)
p[idx].stime = current_time;
p[idx].burst_remaining-=1;
current_time++;
if(p[idx].burst_remaining == 0)
{
p[idx].ctime = current_time;
p[idx].ttime = p[idx].ctime - p[idx].atime;
p[idx].wtime = p[idx].ttime - p[idx].btime;
p[idx].rtime = p[idx].stime - p[idx].atime;
sum_ttime += p[idx].ttime;
sum_wtime += p[idx].wtime;
sum_rtime += p[idx].rtime;
p[idx].is_completed = 1;
completed++;
}
}
else
current_time++;
}
//Displaying the times in tabular form
cout<<"\n\nP.no.\tAT\tBT\tCT\tTAT\tWT\tRT\n"<<endl;
for(int i = 0; i < n; i++)
{
cout<<p[i].no<<"\t";
cout<<p[i].atime<<"\t";
cout<<p[i].btime<<"\t";
cout<<p[i].ctime<<"\t";
cout<<p[i].ttime<<"\t";
cout<<p[i].wtime<<"\t";
cout<<p[i].rtime<<"\t"<<"\n";
}
cout<<"\nAverage Turnaround Time = "<<sum_ttime/n<<endl;
cout<<"Average Waiting Time = "<<sum_wtime/n<<endl;
cout<<"Average Response Time = "<<sum_rtime/n<<endl;
}
|
481645e71d905bef835335869dd01f4b954b323f | 382281ee782a59e3bc299ba7701f1adb907ba45f | /TopCoder/TheBeauty.cpp | 5e682d6f08d00225d49080a97caf267961758a7d | [] | no_license | TeamAseph/Competition | 8442e419ca648c80612e8f02f90b548fe8a656b6 | a796232205106c285b2d7beab6fda7231eb65c20 | refs/heads/master | 2021-06-19T19:45:14.437311 | 2017-07-04T17:28:01 | 2017-07-04T17:28:01 | 92,846,570 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,126 | cpp | TheBeauty.cpp | /*
Sifer Aseph
TopCoder: TheBeauty
https://community.topcoder.com/stat?c=problem_statement&pm=10233
*/
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
#include <ctime>
#include <map>
class TheBeauty {
public:
int find (int n) {
if (n < 10) {
return 1;
}
digits.clear();
if (n >= 10) {
while (n != 0) {
int digit = n % 10;
n /= 10;
if (std::find(digits.begin(), digits.end(), digit) != digits.end()) {
} else {
digits.push_back(digit);
}
}
}
return digits.size();
}
private:
std::vector<int> digits;
};
int main() {
TheBeauty test;
std::cout << test.find(7) << std::endl; // should return 1
std::cout << test.find(100) << std::endl; // 2
std::cout << test.find(123456789) << std::endl; // 9
std::cout << test.find(1000000000) << std::endl; // 2
return 0;
}
|
c9a3e338fb28d858169d3626ba51ba13ab07ceaa | 152622273a1249dc417a7e4f7f0e8b6643a3260b | /now_coder/cracking_the_code_interview/1_array_chars/7_clearZero.cc | efddf09965461974d344c4f0eb2fbc695447ef07 | [] | no_license | countryhu/algorithm | c59271ef0862415330c05e552460b011f87f2d47 | 4319083f1fb97ef500dcf12f9b8ca5553ee02d1a | refs/heads/master | 2021-03-24T09:54:28.925053 | 2017-12-08T08:43:17 | 2017-12-08T08:43:17 | 97,540,182 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,008 | cc | 7_clearZero.cc | #include <iostream>
#include <string.h>
#include <stdio.h>
#include <vector>
#include "util/to_string.h"
using namespace std;
/**
题目描述
请编写一个算法,若N阶方阵中某个元素为0,则将其所在的行与列清零。
给定一个N阶方阵int{}{}(C++中为vector<vector><int>>)mat和矩阵的阶数n,请返回完成操作后的int{}{}方阵(C++中为vector<vector><int>>),
保证n小于等于300,矩阵中的元素为int范围内。</int></vector></int></vector>
测试样例:
{{1,2,3},{0,1,2},{0,0,1}}
返回:{{0,0,3},{0,0,0},{0,0,0}}
-----
题目分析
注意点:
1. 某个元素为零,不代表只有一个元素为0. 所以需要遍历完
2. 由于行列数区间都是{0, 300} 可以用数组缓存相关数据。
方案一 : 遍历数组,记下哪些行哪些列有0出现过。然后遍历这个两个缓存数组,发现需要清零的行/列直接循环删除
优点: 存储空间比较小O(n), 时间复杂度O(n)只需要两次遍历。
改进点: 可以考虑按位存储,空间可以变成原来1/8
**/
class Clearer {
public:
vector<vector<int> > clearZero(vector<vector<int> > mat, int n) {
bool zeroRows[300];
memset(zeroRows, 0, 300);
bool zeroColumns[300];
memset(zeroColumns, 0, 300);
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) {
if (mat[i][j] == 0) {
zeroRows[i] = true;
zeroColumns[j] = true;
}
}
}
// 清零行
for (int row = 0; row < n; ++row) {
if (zeroRows[row]) {
for (int col = 0; col < n; ++col) {
mat[row][col] = 0;
}
}
}
// 清零列
for (int col = 0; col < n; ++col) {
if (zeroColumns[col]) {
for (int row = 0; row < n; ++row) {
mat[row][col] = 0;
}
}
}
return mat;
}
};
static int caseN = 0;
void TestCase(vector<vector<int> > input, int n, const vector<vector<int> >& expectOutput) {
cout << "case enter. with input:" << util::ToString(input);
Clearer obj;
auto output = obj.clearZero(input, n);
if (output == expectOutput) {
cout << "case" << ++caseN << ": check ok. with input:" << util::ToString(input)
<< "\n output as expect:" << util::ToString(output) << endl;
} else {
cout << "\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"
<< "case" << ++caseN << ": check failed. with input:" << util::ToString(input)
<< "\n-------------------------------\n"
<< " expectOutput:" << util::ToString(expectOutput)
<< "\n-------------------------------\n"
<< "but actuaOutput:" << util::ToString(output)
<< "\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" << endl;
}
}
int main() {
// 测试用例
TestCase({{1,2,3},{0,1,2},{0,0,1}}, 3, {{0,0,3},{0,0,0},{0,0,0}});
// 特殊:偶数个
TestCase({{1,2}, {3,4}}, 2, {{1,2}, {3,4}});
// 特殊:一个
TestCase({{0}}, 1, {{0}});
// 特殊:null
TestCase({{}}, 0, {{}});
return 0;
}
|
6fd3cfa267e6b5157dceb18f4839d055a06a7a0d | c916e4e09d857417d1e033ff812e26c1fa890c89 | /Misc/lee-algorithm.cpp | 3d8a1e07a849666de6882c9c6e639f2942500960 | [] | no_license | Attyuttam/CompetitiveProgramming | f8da28511663b6b208aec93a9fae9c010714e968 | 5dae613bfc9e4bd6c0989b4f8d244087c4c759d3 | refs/heads/master | 2021-07-07T07:18:26.489421 | 2021-04-01T06:03:23 | 2021-04-01T06:03:23 | 232,314,791 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,724 | cpp | lee-algorithm.cpp | #include<bits/stdc++.h>
using namespace std;
struct cellDet{
int x;
int y;
int cost;
};
int findShortestPath(vector<vector<int>> v, int sx, int sy,int dx,int dy){
vector<vector<int>> visited(v.size(),vector<int>(v[0].size(),0));
queue<cellDet> q;
struct cellDet cell;
cell.x=sx;
cell.y=sy;
cell.cost=0;
q.push(cell);
while(!q.empty()){
struct cellDet currentCell = q.front();
q.pop();
int i = currentCell.x;
int j = currentCell.y;
int cost = currentCell.cost;
visited[i][j] = 1;
if(i == dx && j == dy){
return cost;
}
if(i-1>=0 && visited[i-1][j]==0 && v[i-1][j]==1){
struct cellDet neighborCell;
neighborCell.x = i-1;
neighborCell.y = j;
neighborCell.cost = cost+1;
q.push(neighborCell);
}
if(i+1<v.size() && visited[i+1][j]==0 && v[i+1][j]==1){
struct cellDet neighborCell;
neighborCell.x = i+1;
neighborCell.y = j;
neighborCell.cost = cost+1;
q.push(neighborCell);
}
if(j-1>=0 && visited[i][j-1]==0 && v[i][j-1]==1){
struct cellDet neighborCell;
neighborCell.x = i;
neighborCell.y = j-1;
neighborCell.cost = cost+1;
q.push(neighborCell);
}
if(j+1<v[0].size() && visited[i][j+1]==0 && v[i][j+1]==1){
struct cellDet neighborCell;
neighborCell.x = i;
neighborCell.y = j+1;
neighborCell.cost = cost+1;
q.push(neighborCell);
}
}
return -1;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int n,m;
cin>>n>>m;
vector<vector<int>> v;
for(int i=0;i<n;i++){
vector<int> temp;
for(int j=0;j<m;j++){
int tmp;
cin>>tmp;
temp.push_back(tmp);
}
v.push_back(temp);
}
int sx,sy,dx,dy;
cin>>sx>>sy>>dx>>dy;
cout<<findShortestPath(v,sx,sy,dx,dy)<<endl;
return 0;
}
|
ce96f38e7c38009c91a0817b6f450ddaf974eed5 | 0d4ebb64a0056e8fc287ae71c12ac5dd785ca44f | /ChronocastEngine/StreamWatcherManager.cpp | 503937f5a2d1415d2574bf1c0bfdb0ee36b5bbd0 | [] | no_license | alir14/StreamingEngine | b13a721e98d9e781a3374ea56481f0282c6ffd13 | 8b93a4002f20b2ffd8a3acc861cc845417873f7b | refs/heads/master | 2020-03-16T02:13:15.878230 | 2018-08-16T03:47:55 | 2018-08-16T03:47:55 | 132,459,803 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,026 | cpp | StreamWatcherManager.cpp | #include "stdafx.h"
#include "StreamWatcherManager.h"
void StreamWatcherManager::ProcessChunksSyncronization(std::string name, std::string path, std::string quality)
{
}
std::string StreamWatcherManager::GetChunkName(std::string name, std::map<std::string, std::string> currentItem)
{
return std::string();
}
std::map<std::string, std::string> StreamWatcherManager::GetCurrentRunningScheduleItem()
{
return std::map<std::string, std::string>();
}
void StreamWatcherManager::ChunksSyncronizationProcess(std::string name, std::string path, std::string quality)
{
}
std::map<std::string, std::string> StreamWatcherManager::GetLastUpdatedChunkDetails(std::string channel, std::string quality, std::string chunksDirectory)
{
return std::map<std::string, std::string>();
}
bool StreamWatcherManager::ValidateGetLastUpdatedChunkDetails(std::string output)
{
return false;
}
StreamWatcherManager::StreamWatcherManager()
{
}
StreamWatcherManager::~StreamWatcherManager()
{
}
void StreamWatcherManager::StartStream()
{
}
|
9814ff30d84c875a1518d55dfee08f3c465cfd82 | a3d6556180e74af7b555f8d47d3fea55b94bcbda | /third_party/blink/renderer/core/css/css_global_rule_set.h | 14dce3350c4e93b548635d14aa641a40dfd28e8b | [
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause",
"MIT",
"Apache-2.0"
] | permissive | chromium/chromium | aaa9eda10115b50b0616d2f1aed5ef35d1d779d6 | a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c | refs/heads/main | 2023-08-24T00:35:12.585945 | 2023-08-23T22:01:11 | 2023-08-23T22:01:11 | 120,360,765 | 17,408 | 7,102 | BSD-3-Clause | 2023-09-10T23:44:27 | 2018-02-05T20:55:32 | null | UTF-8 | C++ | false | false | 2,281 | h | css_global_rule_set.h | // Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_GLOBAL_RULE_SET_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_GLOBAL_RULE_SET_H_
#include "third_party/blink/renderer/core/css/rule_feature_set.h"
namespace blink {
class Document;
class RuleSet;
// A per Document collection of CSS metadata used for style matching and
// invalidation. The data is aggregated from author rulesets from all TreeScopes
// in the whole Document as well as UA stylesheets and watched selectors which
// apply to elements in all TreeScopes.
//
// TODO(futhark@chromium.org): We would like to move as much of this data as
// possible to the ScopedStyleResolver as possible to avoid full reconstruction
// of these rulesets on shadow tree changes. See https://crbug.com/401359
class CSSGlobalRuleSet final : public GarbageCollected<CSSGlobalRuleSet> {
public:
CSSGlobalRuleSet() = default;
CSSGlobalRuleSet(const CSSGlobalRuleSet&) = delete;
CSSGlobalRuleSet& operator=(const CSSGlobalRuleSet&) = delete;
void Dispose();
void InitWatchedSelectorsRuleSet(Document&);
void UpdateDocumentRulesSelectorsRuleSet(Document&);
void MarkDirty() { is_dirty_ = true; }
bool IsDirty() const { return is_dirty_; }
void Update(Document&);
const RuleFeatureSet& GetRuleFeatureSet() const { return features_; }
RuleSet* WatchedSelectorsRuleSet() const {
return watched_selectors_rule_set_;
}
RuleSet* DocumentRulesSelectorsRuleSet() const {
return document_rules_selectors_rule_set_;
}
bool HasFullscreenUAStyle() const { return has_fullscreen_ua_style_; }
void Trace(Visitor*) const;
private:
// Constructed from rules in all TreeScopes including UA style and style
// injected from extensions.
RuleFeatureSet features_;
// Rules injected from extensions.
Member<RuleSet> watched_selectors_rule_set_;
// Rules extracted from CSS selector document rule predicates in speculation
// rules.
Member<RuleSet> document_rules_selectors_rule_set_;
bool has_fullscreen_ua_style_ = false;
bool is_dirty_ = true;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_GLOBAL_RULE_SET_H_
|
fa5d98e47366fb0e941d3f567f75bcb504ade3d8 | c0a0712fe086e87d2798d8c9a63a1cb3678d335e | /src/Stemmer.h | 547aa11a43a2a46c8db1e882b20950b7f359e44f | [] | no_license | ae77em/datos-2-2012-isl | 4061ae9fa2629ddcbee0b1b90576bb63e7772869 | f2428a6b1005da15462e0a35cc0e21113521b420 | refs/heads/master | 2021-01-20T03:34:07.294444 | 2012-11-29T16:15:55 | 2012-11-29T16:15:55 | 40,095,634 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 992 | h | Stemmer.h | #ifndef __STEMMER_H_
#define __STEMMER_H_
#include <cstdio>
#include <string>
#include <iostream>
class Stemmer {
private:
std::string palabraEnProcesamiento; /* buffer para la palabra a procesar */
int tamanioFinal;
int posPrimeraLetra;
int posUltimaLetra; /* offset del string */
std::string s; /* almacena la palabra a procesar al inicio, y almacena la
misma procesada. Es la variable de retorno*/
int i_max; /* tamanio maximo del offset. Aumenta su capacidad de ser necesario. */
public:
Stemmer();
~Stemmer();
std::string stemPalabra( std::string w );
private:
void increase_s();
int stem(std::string p, int i, int j);
void paso5();
void paso4();
void paso3();
void paso2();
void paso1ab();
void paso1c();
void r(int length,std::string s);
void cambiarPor(int length,std::string s);
int terminaCon(int length,std::string s);
int cvc(int i);
int dobleConsonante(int j);
int vocalEnStem();
int m();
int esConsonante(int i);
};
#endif
|
10a10cf73045efe5c434d27d82d5fc97b3b80ed2 | f72eaf7dc726d9d71d1596133270ace3cda29e74 | /Code CD/horizon/code/global/include/particle.h | 3b26f9cda6f70b18ef0afc471ddfa1b310739f2b | [] | no_license | nikkennedy/uni_engine | f96e7b54e9660ed4cc219199c9b5d2c544845bbe | 74519e074722daf7787f0e7ab74c1a4541b491ef | refs/heads/master | 2022-01-17T21:17:24.740260 | 2019-06-24T18:20:53 | 2019-06-24T18:20:53 | 193,554,172 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 874 | h | particle.h | /* ---------------------------------------------------------------------------------
Filename - particle.h
Last Modified - 20/04/03
Author - Nicholas Kennedy
Project - Horizon (3rd Year BSC Computer Science Project "Interactive Game
system with Intelligence")
Description - Definition of CParticle
Defines the attributes of a single particle
--------------------------------------------------------------------------------- */
#ifndef _PARTICLE_H_
#define _PARTICLE_H_
#include <types.h>
class CParticle
{
public:
CVert3D position;
CVert3D velocity;
CVert3D acceleration;
int age;
int max_age; // maximum age particle can get to before being destroyed
float size;
int alive;
};
#endif
// END OF FILE ------------------------------------------------------------------- |
c150630a8753e84909360d0407c15d90339f9281 | 21ab8235a1deadbd3914c15645226ca45978b1ad | /uniquepaths3.cpp | 0b6fd744346ef7858c81a1b69cdb3963e3ea27d7 | [] | no_license | surarijit/DSA_ALGO | 8a9079c71444928f88995679d16dafb50df8be5b | 1e1a1e189c9cd11b222150df2aa89952cb15de8d | refs/heads/master | 2023-01-29T04:36:49.892183 | 2020-12-07T07:01:47 | 2020-12-07T07:01:47 | 281,638,964 | 0 | 4 | null | 2021-10-01T10:58:11 | 2020-07-22T09:50:53 | C++ | UTF-8 | C++ | false | false | 2,054 | cpp | uniquepaths3.cpp | /*
ARIJIT SUR
@duke_knight
@surcode
@comeback
IIT ISM
*/
#include<bits/stdc++.h>
#define SIZE (ll)(1e6)
#define mod (ll)(1e9+7)
#define INF 0x3f3f3f3f
#define max(a,b) (a>b?a:b)
#define min(a,b) (a<b?a:b)
#define abs(a) ((a)>0?(a):-(a))
#define sc(a) scanf("%d\n",&a);
#define all(a) a.begin(),a.end()
#define maxelem(a) *max_element(all(a))
#define minelem(a) *min_element(all(a))
#define pb push_back
#define pi pair<int,int>
#define pqq priority_queue
#define sort(a) sort(all(a))
#define reverse(a) reverse(all(a))
#define input(a) {for(int i1=0;i1<a.size();i1++) cin>>a[i1];}
#define display(a) {for(int i1=0;i1<a.size();i1++) cout<<a[i1]<<" "; cout<<endl;}
#define IOS ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define ll long long int
#define ull unsigned ll
using namespace std;
//start to end covering every obstacle atleast once
#define vi vector<int>
#define n grid.size()
#define m grid[0].size()
#define check(i,j) ((i>=0 &&j>=0 &&i<n && j<m)?1:0)
int ans=0;
bool allcheck(vector<vi> grid){
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
if(grid[i][j]==-1 || grid[i][j]==2) continue;
else return 0;
}
}
return 1;
}
void work(vector<vi> &grid, int x,int y){
if(!check(x,y) || grid[x][y]==-1) return;
if(grid[x][y]==2) {
if(allcheck(grid))ans+=1;
return;
}
grid[x][y] = -1;
for(int i=-1;i<=1;i++){
for(int j=-1;j<=1;j++){
if(abs(i)!=abs(j) && check(x+i,y+j))
{
int z = grid[x+i][y+j];
work(grid,x+i,y+j);
grid[x+i][y+j] = z;
}
}
}
}
int uniquePathsIII(vector<vector<int>>& grid) {
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
if(grid[i][j]==1) {
work(grid,i,j); return ans;
}
}
}
return 0;
}
void solve(){
int x,y;cin>>x>>y; vector<vi> a(x,vi (y));
for(int i=0;i<x;i++) input(a[i]);
cout<<uniquePathsIII(a)<<endl;
}
int main()
{
IOS
//freopen("input.txt", "r", stdin);freopen("output.txt", "w", stdout);
int t=1;
//cin>>t;
while(t--){
solve();
}
return 0;
} |
8c976d72e3602cedbc9e27666f358e73a34f0036 | 82d6c83edd224d06b40c97af5c4e2f5906a70ead | /third_party/sign/src/linux.cc | a83bc5781b91518c4fc1ba9427a43427f67f783b | [
"MIT"
] | permissive | AraAbrahamyanG/FIDO2Client | 4f57561e856b6cb7fedff8c54216fede4659006a | 3d42f1aadc69b514865381c89dbb6b26ddb177cb | refs/heads/master | 2023-08-17T17:43:01.086655 | 2021-09-25T09:03:52 | 2021-09-25T09:03:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,401 | cc | linux.cc | #include <node.h>
namespace Sign {
void Verify(const v8::FunctionCallbackInfo<v8::Value>& args) {
v8::Isolate* isolate = args.GetIsolate();
v8::Local<v8::Context> context = isolate->GetCurrentContext();
if (args.Length() < 1) {
isolate->ThrowException(v8::Exception::TypeError(v8::String::NewFromUtf8(isolate, "undefined file path.").ToLocalChecked()));
return;
}
if (!args[0]->IsString()) {
isolate->ThrowException(v8::Exception::TypeError(v8::String::NewFromUtf8(isolate, "invalid file path.").ToLocalChecked()));
return;
}
v8::Local<v8::Object> sign = v8::Object::New(isolate);
v8::String::Utf8Value fileName(isolate, args[0]->ToString(context).ToLocalChecked());
v8::Local<v8::String> kVerify = v8::String::NewFromUtf8(isolate, "verified").ToLocalChecked();
v8::Local<v8::String> kSigner = v8::String::NewFromUtf8(isolate, "signer").ToLocalChecked();
sign->Set(context, kVerify, v8::Boolean::New(isolate, false)).Check();
sign->Set(context, kSigner, v8::String::NewFromUtf8(isolate, "(unknown signer)").ToLocalChecked()).Check();
args.GetReturnValue().Set(sign);
}
void Initialize(v8::Local<v8::Object> exports) {
NODE_SET_METHOD(exports, "verify", Verify);
}
NODE_MODULE(NODE_GYP_MODULE_NAME, Initialize)
} |
56f00fcbac207b81ea352337ac1acb78fcd56e6f | 549364a79502b5226da29d798e1ee4ba1cc8800f | /OpenGLIPhoneFace.hpp | db33e79264845dc14da8423f67f62b1cdc3c9e64 | [] | no_license | robwasab/SensorFusionSimulation | 7b1065dd72e4ace579cc5ba29211c51aeacee950 | 231bedcc4cfaa3ac7b3fda7d3a88b95b6b8e2098 | refs/heads/master | 2020-07-25T19:22:14.030526 | 2019-02-19T17:06:16 | 2019-02-19T17:06:16 | 208,400,294 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 370 | hpp | OpenGLIPhoneFace.hpp | //
// OpenGLIPhoneFace.hpp
// OpenGLTutorial
//
// Created by Robby Tong on 1/12/19.
// Copyright © 2019 Robby Tong. All rights reserved.
//
#ifndef OpenGLIPhoneFace_hpp
#define OpenGLIPhoneFace_hpp
#include <stdio.h>
#include "OpenGLSquare.hpp"
class OpenGLIPhoneFace: public OpenGLSquare
{
public:
OpenGLIPhoneFace();
};
#endif /* OpenGLIPhoneFace_hpp */
|
32ce8b8bbd86af114bcbeae0ac2422b69022214a | daf446ec301bf0a616ef2d4bbdffad5c6daadcdb | /Unit1.h | be20d68b117f87df84f54eda7cb2384c73f080a5 | [] | no_license | gameraccoon/graphiccreator | 2d996f1c11590e2482dea44f9b20023762a3afd0 | 6fa6a33ea2f690da1e293bfb996ad470ddad860b | refs/heads/master | 2021-05-29T03:51:13.358424 | 2013-06-04T00:55:03 | 2013-06-04T00:55:03 | 9,300,547 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,183 | h | Unit1.h | //---------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ComCtrls.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE-managed Components
TPageControl *PageControl1;
TTabSheet *TabSheet1;
TComboBox *CB_Figures;
TLabel *Label1;
TEdit *Ed_VertCount;
TLabel *Label2;
TCheckBox *ChB_Valid;
TLabel *Label3;
TComboBox *CB_Size;
TMemo *Memo1;
TButton *Button1;
void __fastcall FormCreate(TObject *Sender);
void __fastcall FormActivate(TObject *Sender);
void __fastcall CB_FiguresChange(TObject *Sender);
void __fastcall Button1Click(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
|
1ecf1e0141cecc61ac2215588c88a5c72865bad2 | 78a6a563a5d78eabbdba7f010c4a872f81a8da1b | /homography_estimation.cpp | ad1e81a56155fce7e9487bd63055933b01572595 | [] | no_license | dzyswy/homography_estimation | ace63beeed741bc4b90858126f4bdaa48940c95d | f1efe0d06f01fea52a37bcc57d64883d6b98dcb1 | refs/heads/main | 2023-02-16T11:12:21.337723 | 2021-01-19T11:52:09 | 2021-01-19T11:52:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,562 | cpp | homography_estimation.cpp | #include <iostream>
#include <stdio.h>
#include <opencv2/opencv.hpp>
#include <vector>
#include <string>
#include <fstream>
#include <sstream>
#include <omp.h>
using namespace cv;
using namespace std;
#define SQRT2 1.41
void detectFeatures(
const Mat& image1_,
const Mat& image2_,
vector<Point2f>& source_points_,
vector<Point2f>& destination_points_)
{
printf("Detect SIFT features\n");
Mat descriptors1, descriptors2; // The descriptors of the found keypoints in the two images
vector<KeyPoint> keypoints1, keypoints2; // The keypoints in the two images
Ptr<SIFT> detector = SIFT::create(); // The SIFT detector
detector->detect(image1_, keypoints1); // Detecting keypoints in the first image
detector->compute(image1_, keypoints1, descriptors1); // Computing the descriptors of the keypoints in the first image
printf("Features found in the first image: %d\n", keypoints1.size());
detector->detect(image2_, keypoints2); // Detecting keypoints in the second image
detector->compute(image2_, keypoints2, descriptors2); // Computing the descriptors of the keypoints in the second image
printf("Features found in the second image: %d\n", keypoints2.size());
// Do the descriptor matching by an approximated k-nearest-neighbors algorithm (FLANN) with k = 2.
vector<vector<DMatch>> matches_vector;
FlannBasedMatcher matcher(new flann::KDTreeIndexParams(5), new flann::SearchParams(32));
matcher.knnMatch(descriptors1, descriptors2, matches_vector, 2); // K-nearest-neighbors
// Iterate through the matches, apply the SIFT ratio test and if the match passes,
// add it to the vector of found correspondences
for (auto m : matches_vector)
{
if (m.size() == 2 && m[0].distance < m[1].distance * 0.80)
{
auto& kp1 = keypoints1[m[0].queryIdx];
auto& kp2 = keypoints2[m[0].trainIdx];
source_points_.push_back(kp1.pt);
destination_points_.push_back(kp2.pt);
}
}
printf("Detected correspondence number: %d\n", source_points_.size());
}
void normalizePoints(
const vector<Point2f>& input_source_points_,
const vector<Point2f>& input_destination_points_,
vector<Point2f>& output_source_points_,
vector<Point2f>& output_destination_points_,
Mat& T1_,
Mat& T2_)
{
T1_ = Mat::eye(3, 3, CV_32F);
T2_ = Mat::eye(3, 3, CV_32F);
const size_t pointNumber = input_source_points_.size();
output_source_points_.resize(pointNumber);
output_destination_points_.resize(pointNumber);
float mean_source_x = 0.0, mean_source_y = 0.0, mean_destination_x = 0.0, mean_destination_y = 0.0;
for (auto i = 0; i < pointNumber; ++i)
{
mean_source_x += input_source_points_[i].x;
mean_source_y += input_source_points_[i].y;
mean_destination_x += input_destination_points_[i].x;
mean_destination_y += input_destination_points_[i].y;
}
mean_source_x /= pointNumber;
mean_source_y /= pointNumber;
mean_destination_x /= pointNumber;
mean_destination_y /= pointNumber;
float spread_source_x = 0.0, spread_source_y = 0.0, spread_destination_x = 0.0, spread_destination_y = 0.0;
for (auto i = 0; i < pointNumber; ++i) {
spread_source_x += (input_source_points_[i].x - mean_source_x) * (input_source_points_[i].x - mean_source_x);
spread_source_y += (input_source_points_[i].y - mean_source_y) * (input_source_points_[i].y - mean_source_y);
spread_destination_x += (input_destination_points_[i].x - mean_destination_x) * (input_destination_points_[i].x - mean_destination_x);
spread_destination_y += (input_destination_points_[i].y - mean_destination_y) * (input_destination_points_[i].y - mean_destination_y);
}
spread_source_x /= pointNumber;
spread_source_y /= pointNumber;
spread_destination_x /= pointNumber;
spread_destination_y /= pointNumber;
Mat offs_source = Mat::eye(3, 3, CV_32F);
Mat scale_source = Mat::eye(3, 3, CV_32F);
Mat offs_destination = Mat::eye(3, 3, CV_32F);
Mat scale_destination = Mat::eye(3, 3, CV_32F);
offs_source.at<float>(0, 2) = -mean_source_x;
offs_source.at<float>(1, 2) = -mean_source_y;
offs_destination.at<float>(0, 2) = -mean_destination_x;
offs_destination.at<float>(1, 2) = -mean_destination_y;
scale_source.at<float>(0, 0) = SQRT2 / sqrt(spread_source_x);
scale_source.at<float>(1, 1) = SQRT2 / sqrt(spread_source_y);
scale_destination.at<float>(0, 0) = SQRT2 / sqrt(spread_destination_x);
scale_destination.at<float>(1, 1) = SQRT2 / sqrt(spread_destination_y);
T1_ = scale_source * offs_source;
T2_ = scale_destination * offs_destination;
for (auto i = 0; i < pointNumber; ++i)
{
Point2f p2D;
p2D.x = SQRT2 * (input_source_points_[i].x - mean_source_x) / sqrt(spread_source_x);
p2D.y = SQRT2 * (input_source_points_[i].y - mean_source_y) / sqrt(spread_source_y);
output_source_points_[i] = p2D;
p2D.x = SQRT2 * (input_destination_points_[i].x - mean_destination_x) / sqrt(spread_destination_x);
p2D.y = SQRT2 * (input_destination_points_[i].y - mean_destination_y) / sqrt(spread_destination_y);
output_destination_points_[i] = p2D;
}
}
Mat calcHomography(
vector<pair<Point2f, Point2f>>
pointPairs)
{
const int ptsNum = pointPairs.size();
Mat A(2 * ptsNum, 9, CV_32F);
for (auto i = 0; i < ptsNum; i++) {
float u1 = pointPairs[i].first.x;
float v1 = pointPairs[i].first.y;
float u2 = pointPairs[i].second.x;
float v2 = pointPairs[i].second.y;
A.at<float>(2 * i, 0) = u1;
A.at<float>(2 * i, 1) = v1;
A.at<float>(2 * i, 2) = 1.0f;
A.at<float>(2 * i, 3) = 0.0f;
A.at<float>(2 * i, 4) = 0.0f;
A.at<float>(2 * i, 5) = 0.0f;
A.at<float>(2 * i, 6) = -u2 * u1;
A.at<float>(2 * i, 7) = -u2 * v1;
A.at<float>(2 * i, 8) = -u2;
A.at<float>(2 * i + 1, 0) = 0.0f;
A.at<float>(2 * i + 1, 1) = 0.0f;
A.at<float>(2 * i + 1, 2) = 0.0f;
A.at<float>(2 * i + 1, 3) = u1;
A.at<float>(2 * i + 1, 4) = v1;
A.at<float>(2 * i + 1, 5) = 1.0f;
A.at<float>(2 * i + 1, 6) = -v2 * u1;
A.at<float>(2 * i + 1, 7) = -v2 * v1;
A.at<float>(2 * i + 1, 8) = -v2;
}
Mat eVecs(9, 9, CV_32F), eVals(9, 9, CV_32F);
eigen(A.t() * A, eVals, eVecs);
Mat H(3, 3, CV_32F);
for (int i = 0; i < 9; i++) H.at<float>(i / 3, i % 3) = eVecs.at<float>(8, i);
return H;
}
void transformImage(
Mat origImg,
Mat& newImage,
Mat tr,
bool isPerspective)
{
Mat invTr = tr.inv();
const int WIDTH = origImg.cols;
const int HEIGHT = origImg.rows;
const int newWIDTH = newImage.cols;
const int newHEIGHT = newImage.rows;
for (int x = 0; x < newWIDTH; x++) for (int y = 0; y < newHEIGHT; y++) {
Mat pt(3, 1, CV_32F);
pt.at<float>(0, 0) = x;
pt.at<float>(1, 0) = y;
pt.at<float>(2, 0) = 1.0;
Mat ptTransformed = invTr * pt;
if (isPerspective) ptTransformed = (1.0 / ptTransformed.at<float>(2, 0)) * ptTransformed;
int newX = round(ptTransformed.at<float>(0, 0));
int newY = round(ptTransformed.at<float>(1, 0));
if ((newX >= 0) && (newX < WIDTH) && (newY >= 0) && (newY < HEIGHT)) newImage.at<Vec3b>(y, x) = origImg.at<Vec3b>(newY, newX);
}
}
int getIterationNumber(int point_number_,
int inlier_number_,
int sample_size_,
double confidence_)
{
const double inlier_ratio = static_cast<float>(inlier_number_) / point_number_;
static const double log1 = log(1.0 - confidence_);
const double log2 = log(1.0 - pow(inlier_ratio, sample_size_));
const int k = log1 / log2;
if (k < 0)
return INT_MAX;
return k;
}
Mat ransacHMatrix(
const vector<Point2f>& normalized_input_src_points_,
const vector<Point2f>& normalized_input_destination_points_,
vector<size_t>& inliers_,
double confidence_,
double threshold_)
{
srand(time(NULL));
// The so-far-the-best H
Mat best_H(3, 3, CV_32F);
// The number of correspondences
const size_t point_number = normalized_input_src_points_.size();
float prev_error = numeric_limits<double>::max();
// Initializing the index pool from which the minimal samples are selected
vector<size_t> index_pool(point_number);
for (size_t i = 0; i < point_number; ++i)
index_pool[i] = i;
// The size of a minimal sample
constexpr size_t sample_size = 4;
// The minimal sample
size_t* mss = new size_t[sample_size];
size_t maximum_iterations = numeric_limits<int>::max(), // The maximum number of iterations set adaptively when a new best model is found
iteration_limit = 5000, // A strict iteration limit which mustn't be exceeded
iteration = 0; // The current iteration number
vector<Point2f> source_points(sample_size),
destination_points(sample_size);
while (iteration++ < MIN(iteration_limit, maximum_iterations))
{
vector<pair<Point2f, Point2f>> pointPairs;
for (auto sample_idx = 0; sample_idx < sample_size; ++sample_idx)
{
// Select a random index from the pool
const size_t idx = round((rand() / (double)RAND_MAX) * (index_pool.size() - 1));
mss[sample_idx] = index_pool[idx];
index_pool.erase(index_pool.begin() + idx);
// Put the selected correspondences into the point containers
const size_t point_idx = mss[sample_idx];
source_points[sample_idx] = normalized_input_src_points_[point_idx];
destination_points[sample_idx] = normalized_input_destination_points_[point_idx];
pair<Point2f, Point2f> Point;
Point.first = source_points[sample_idx];
Point.second = destination_points[sample_idx];
pointPairs.push_back(Point);
}
// Estimate H matrix
Mat H_(3, 3, CV_32F);
H_ = calcHomography(pointPairs);
vector<size_t> inliers;
for (auto i = 0; i < point_number; ++i) {
Mat pt1(3, 1, CV_32F);
pt1.at<float>(0, 0) = normalized_input_src_points_[i].x;
pt1.at<float>(1, 0) = normalized_input_src_points_[i].y;
pt1.at<float>(2, 0) = 1;
Mat pt2(3, 1, CV_32F);
pt2.at<float>(0, 0) = normalized_input_destination_points_[i].x;
pt2.at<float>(1, 0) = normalized_input_destination_points_[i].y;
pt2.at<float>(2, 0) = 1;
double error1 = pow(norm(H_ * pt1, pt2), 2);
double error2 = pow(norm(pt1, H_.inv() * pt2), 2);
double average_error = (error1 + error2) * 0.5;
if (average_error < threshold_)
inliers.push_back(i);
}
// Update if the new model is better than the previous so-far-the-best.
if (inliers_.size() < inliers.size())
{
cout << "Inlier size: " << inliers.size();
// Update the set of inliers
inliers_.swap(inliers);
inliers.clear();
inliers.resize(0);
// Update the model parameters
best_H = H_;
// Update the iteration number
maximum_iterations = getIterationNumber(point_number,
inliers_.size(),
sample_size,
confidence_);
cout << " Max iterations: " << maximum_iterations << endl;
}
// Put back the selected points to the pool
for (size_t i = 0; i < sample_size; ++i)
index_pool.push_back(mss[i]);
}
return best_H;
}
int main(int argc, char* argv[])
{
if (argc != 5)
{
cout << "Usage: threshold input1 input2 output" << endl;
return -1;
}
// Load images
Mat image1 = imread(argv[2]);
Mat image2 = imread(argv[3]);
// Detect features
vector<Point2f> source_points, destination_points; // Point correspondences
detectFeatures(image1, // First image
image2, // Second image
source_points, // Points in the first image
destination_points); // Points in the second image
// Normalize the coordinates of the point correspondences to achieve numerically stable results
Mat T1(3, 3, CV_32F), T2(3, 3, CV_32F); // Normalizing transformations
vector<Point2f> normalized_source_points, normalized_destination_points; // Normalized point correspondences
normalizePoints(source_points, // Points in the first image
destination_points, // Points in the second image
normalized_source_points, // Normalized points in the first image
normalized_destination_points, // Normalized points in the second image
T1, // Normalizing transformation in the first image
T2); // Normalizing transformation in the second image
Mat best_H(3, 3, CV_32F);
vector<size_t> inliers;
best_H = ransacHMatrix(normalized_source_points, // Normalized points in the first image
normalized_destination_points, // Normalized points in the second image
inliers, // The inliers of the fundamental matrix
0.99, // The required confidence in the results
stod(argv[1])); // The inlier-outlier threshold
best_H = T2.inv() * best_H * T1; // Denormalize the H matrix
best_H = best_H * (1.0 / best_H.at<float>(2, 2));
cout << best_H << endl;
Mat transformedImage = Mat::zeros(image2.size().height,image2.size().width, image2.type());
transformImage(image1, transformedImage, best_H, true);
imwrite(argv[4], transformedImage);
namedWindow("Transformed image", WINDOW_NORMAL);
imshow("Transformed image", transformedImage);
waitKey();
return 0;
}
|
8333268d3ca320b1b6ee90397ef3167fb28f9281 | f7255ebd4f261bd55ba08fa0c5de2434223f2ec4 | /Direct3DWrapper/DX_3DCG/Core/Dx_SwapChain.cpp | 4c617113e15f3ffbe720fa45e7b84b8c92b71aac | [] | no_license | sugawara5110/Common | 434028750f92e019a0f6eef22ab617da4bdf4127 | b9e926e9d614fedd39ea0c9e46ac15b6dadfac7b | refs/heads/master | 2023-07-20T05:24:42.065267 | 2023-07-06T10:37:15 | 2023-07-06T10:37:15 | 131,511,410 | 4 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 10,460 | cpp | Dx_SwapChain.cpp | //*****************************************************************************************//
//** **//
//** Dx_SwapChain **//
//** **//
//*****************************************************************************************//
#include "Dx_SwapChain.h"
Dx_SwapChain* Dx_SwapChain::sw = nullptr;
void Dx_SwapChain::InstanceCreate() {
if (!sw)sw = new Dx_SwapChain();
}
Dx_SwapChain* Dx_SwapChain::GetInstance() {
return sw;
}
void Dx_SwapChain::DeleteInstance() {
if (sw) {
delete sw;
sw = nullptr;
}
}
bool Dx_SwapChain::Initialize(HWND hWnd, int width, int height) {
mClientWidth = width;
mClientHeight = height;
Dx_Device* device = Dx_Device::GetInstance();
//Descriptor のアドレス計算で使用
mRtvDescriptorSize = device->getDevice()->GetDescriptorHandleIncrementSize(D3D12_DESCRIPTOR_HEAP_TYPE_RTV);
mDsvDescriptorSize = device->getDevice()->GetDescriptorHandleIncrementSize(D3D12_DESCRIPTOR_HEAP_TYPE_DSV);
//MultiSampleレベルチェック
D3D12_FEATURE_DATA_MULTISAMPLE_QUALITY_LEVELS msQualityLevels;
msQualityLevels.Format = mBackBufferFormat;
msQualityLevels.SampleCount = 4;
msQualityLevels.Flags = D3D12_MULTISAMPLE_QUALITY_LEVELS_FLAG_NONE;
msQualityLevels.NumQualityLevels = 0;
if (FAILED(device->getDevice()->CheckFeatureSupport(
D3D12_FEATURE_MULTISAMPLE_QUALITY_LEVELS,
&msQualityLevels, //機能のサポートを示すデータが格納
sizeof(msQualityLevels)))) {
Dx_Util::ErrorMessage("CheckFeatureSupport Error");
return false;
}
m4xMsaaQuality = msQualityLevels.NumQualityLevels;
assert(m4xMsaaQuality > 0 && "Unexpected MSAA quality level.");
//初期化
mSwapChain.Reset();
//スワップチェイン生成
DXGI_SWAP_CHAIN_DESC1 sd = {};
sd.Width = mClientWidth;
sd.Height = mClientHeight;
sd.Format = mBackBufferFormat;
sd.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
sd.BufferCount = SwapChainBufferCount;
sd.SampleDesc.Count = m4xMsaaState ? 4 : 1;
sd.SampleDesc.Quality = m4xMsaaState ? (m4xMsaaQuality - 1) : 0;
sd.Scaling = DXGI_SCALING_STRETCH;
sd.SwapEffect = DXGI_SWAP_EFFECT_FLIP_DISCARD;
sd.AlphaMode = DXGI_ALPHA_MODE_IGNORE;
sd.Flags = DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH;
Dx_CommandManager* comMa = Dx_CommandManager::GetInstance();
ComPtr<IDXGISwapChain1> swapChain;
if (FAILED(device->getFactory()->CreateSwapChainForHwnd(
comMa->getGraphicsQueue(),
hWnd,
&sd,
nullptr,
nullptr,
swapChain.GetAddressOf()))) {
Dx_Util::ErrorMessage("CreateSwapChain Error");
return false;
}
swapChain->QueryInterface(IID_PPV_ARGS(mSwapChain.GetAddressOf()));
//スワップチェインをRenderTargetとして使用するためのDescriptorHeapを作成(Descriptorの記録場所)
D3D12_DESCRIPTOR_HEAP_DESC rtvHeapDesc = {};
rtvHeapDesc.NumDescriptors = SwapChainBufferCount;
rtvHeapDesc.Type = D3D12_DESCRIPTOR_HEAP_TYPE_RTV; //RenderTargetView
rtvHeapDesc.Flags = D3D12_DESCRIPTOR_HEAP_FLAG_NONE; //シェーダからアクセスしないのでNONEでOK
rtvHeapDesc.NodeMask = 0;
if (FAILED(device->getDevice()->CreateDescriptorHeap(
&rtvHeapDesc, IID_PPV_ARGS(mRtvHeap.GetAddressOf())))) {
Dx_Util::ErrorMessage("CreateDescriptorHeap Error");
return false;
}
for (UINT i = 0; i < SwapChainBufferCount; i++) {
//スワップチェインバッファ取得
if (FAILED(mSwapChain->GetBuffer(i, IID_PPV_ARGS(mRtBuffer[i].getResourceAddress())))) {
Dx_Util::ErrorMessage("GetSwapChainBuffer Error");
return false;
}
mRtBuffer[i].getResource()->SetName(Dx_Util::charToLPCWSTR("Rt"));
}
D3D12_RENDER_TARGET_VIEW_DESC rtvDesc = {};
rtvDesc.Format = mBackBufferFormat;
rtvDesc.ViewDimension = D3D12_RTV_DIMENSION_TEXTURE2D;
D3D12_CPU_DESCRIPTOR_HANDLE rtvHeapHandle(mRtvHeap->GetCPUDescriptorHandleForHeapStart());
for (int i = 0; i < SwapChainBufferCount; i++) {
device->getDevice()->CreateRenderTargetView(mRtBuffer[i].getResource(), &rtvDesc, rtvHeapHandle);
mRtvHeapHandle[i] = rtvHeapHandle;
rtvHeapHandle.ptr += mRtvDescriptorSize;
}
//深度ステンシルビュ-DescriptorHeapを作成
D3D12_DESCRIPTOR_HEAP_DESC dsvHeapDesc = {};
dsvHeapDesc.NumDescriptors = 1;
dsvHeapDesc.Type = D3D12_DESCRIPTOR_HEAP_TYPE_DSV;
dsvHeapDesc.Flags = D3D12_DESCRIPTOR_HEAP_FLAG_NONE;
dsvHeapDesc.NodeMask = 0;
if (FAILED(device->getDevice()->CreateDescriptorHeap(
&dsvHeapDesc, IID_PPV_ARGS(mDsvHeap.GetAddressOf())))) {
Dx_Util::ErrorMessage("CreateDescriptorHeap Error");
return false;
}
D3D12_RESOURCE_DESC depthStencilDesc = {};
depthStencilDesc.Dimension = D3D12_RESOURCE_DIMENSION_TEXTURE2D;
depthStencilDesc.Alignment = 0;
depthStencilDesc.Width = mClientWidth;
depthStencilDesc.Height = mClientHeight;
depthStencilDesc.DepthOrArraySize = 1;
depthStencilDesc.MipLevels = 1;
depthStencilDesc.Format = mDepthStencilFormat;
depthStencilDesc.SampleDesc.Count = m4xMsaaState ? 4 : 1;
depthStencilDesc.SampleDesc.Quality = m4xMsaaState ? (m4xMsaaQuality - 1) : 0;
depthStencilDesc.Layout = D3D12_TEXTURE_LAYOUT_UNKNOWN;
depthStencilDesc.Flags = D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL;
D3D12_HEAP_PROPERTIES depthStencilHeapProps = {};
depthStencilHeapProps.Type = D3D12_HEAP_TYPE_DEFAULT;
depthStencilHeapProps.CPUPageProperty = D3D12_CPU_PAGE_PROPERTY_UNKNOWN;
depthStencilHeapProps.MemoryPoolPreference = D3D12_MEMORY_POOL_UNKNOWN;
depthStencilHeapProps.CreationNodeMask = 1;
depthStencilHeapProps.VisibleNodeMask = 1;
D3D12_CLEAR_VALUE optClear = {};
optClear.Format = mDepthStencilFormat;
optClear.DepthStencil.Depth = 1.0f;
optClear.DepthStencil.Stencil = 0;
//深度ステンシルバッファ領域確保
if (FAILED(device->getDevice()->CreateCommittedResource(
&depthStencilHeapProps,
D3D12_HEAP_FLAG_NONE,
&depthStencilDesc,
D3D12_RESOURCE_STATE_COMMON,
&optClear,
IID_PPV_ARGS(mDepthStencilBuffer.getResourceAddress())))) {
Dx_Util::ErrorMessage("CreateCommittedResource DepthStencil Error");
return false;
}
mDepthStencilBuffer.getResource()->SetName(Dx_Util::charToLPCWSTR("DepthStencil"));
//深度ステンシルビューデスクリプターヒープの開始ハンドル取得
D3D12_CPU_DESCRIPTOR_HANDLE mDsvHandle(mDsvHeap->GetCPUDescriptorHandleForHeapStart());
//深度ステンシルビュー生成
D3D12_DEPTH_STENCIL_VIEW_DESC depthdesc = {};
depthdesc.Format = mDepthStencilFormat;
depthdesc.ViewDimension = D3D12_DSV_DIMENSION_TEXTURE2D;
depthdesc.Flags = D3D12_DSV_FLAG_NONE;
device->getDevice()->CreateDepthStencilView(GetDepthBuffer()->getResource(), &depthdesc, mDsvHandle);
mDsvHeapHandle = mDsvHandle;
mDsvHandle.ptr += mDsvDescriptorSize;
Dx_CommandListObj* cObj = comMa->getGraphicsComListObj(0);
cObj->Bigin();
//深度ステンシルバッファ,リソースバリア共有→深度書き込み
GetDepthBuffer()->ResourceBarrier(0, D3D12_RESOURCE_STATE_DEPTH_WRITE);
cObj->End();
comMa->RunGpu();
comMa->WaitFence();
//ビューポート
mScreenViewport.TopLeftX = 0;
mScreenViewport.TopLeftY = 0;
mScreenViewport.Width = static_cast<float>(mClientWidth);
mScreenViewport.Height = static_cast<float>(mClientHeight);
mScreenViewport.MinDepth = 0.0f;
mScreenViewport.MaxDepth = 1.0f;
mScissorRect = { 0, 0, mClientWidth, mClientHeight };
MatrixIdentity(&upd[0].mProj);
MatrixIdentity(&upd[1].mProj);
MatrixIdentity(&upd[0].mView);
MatrixIdentity(&upd[1].mView);
//カメラ画角
ViewY_theta = 55.0f;
// アスペクト比の計算
aspect = (float)mScreenViewport.Width / (float)mScreenViewport.Height;
//nearプレーン
NearPlane = 1.0f;
//farプレーン
FarPlane = 10000.0f;
MatrixPerspectiveFovLH(&upd[0].mProj, ViewY_theta, aspect, NearPlane, FarPlane);
MatrixPerspectiveFovLH(&upd[1].mProj, ViewY_theta, aspect, NearPlane, FarPlane);
return true;
}
void Dx_SwapChain::setPerspectiveFov(float ViewAngle, float nearPlane, float farPlane) {
ViewY_theta = ViewAngle;
NearPlane = nearPlane;
FarPlane = farPlane;
MatrixPerspectiveFovLH(&upd[0].mProj, ViewY_theta, aspect, NearPlane, FarPlane);
MatrixPerspectiveFovLH(&upd[1].mProj, ViewY_theta, aspect, NearPlane, FarPlane);
}
void Dx_SwapChain::BiginDraw(int com_no, bool clearBackBuffer) {
Dx_CommandListObj* cObj = Dx_CommandManager::GetInstance()->getGraphicsComListObj(com_no);
cObj->getCommandList()->RSSetViewports(1, &mScreenViewport);
cObj->getCommandList()->RSSetScissorRects(1, &mScissorRect);
GetRtBuffer()->ResourceBarrier(com_no, D3D12_RESOURCE_STATE_RENDER_TARGET);
D3D12_CPU_DESCRIPTOR_HANDLE rtvHandle = mRtvHeapHandle[mCurrBackBuffer];
if (clearBackBuffer) {
cObj->getCommandList()->ClearRenderTargetView(rtvHandle,
DirectX::Colors::Black, 0, nullptr);
cObj->getCommandList()->ClearDepthStencilView(mDsvHeapHandle,
D3D12_CLEAR_FLAG_DEPTH | D3D12_CLEAR_FLAG_STENCIL, 1.0f, 0, 0, nullptr);
}
cObj->getCommandList()->OMSetRenderTargets(1, &rtvHandle,
false, &mDsvHeapHandle);
}
void Dx_SwapChain::EndDraw(int com_no) {
Dx_CommandListObj* cObj = Dx_CommandManager::GetInstance()->getGraphicsComListObj(com_no);
GetRtBuffer()->ResourceBarrier(com_no, D3D12_RESOURCE_STATE_PRESENT);
}
void Dx_SwapChain::DrawScreen() {
// swap the back and front buffers
mSwapChain->Present(0, 0);
mCurrBackBuffer = mSwapChain->GetCurrentBackBufferIndex();
}
void Dx_SwapChain::Cameraset(CoordTf::VECTOR3 pos, CoordTf::VECTOR3 dir, CoordTf::VECTOR3 up) {
//カメラの位置と方向を設定
Dx_Device* dev = Dx_Device::GetInstance();
Update& u = upd[dev->cBuffSwapUpdateIndex()];
MatrixLookAtLH(&u.mView,
pos, //カメラの位置
dir, //カメラの方向を向ける点
up); //カメラの上の方向(通常視点での上方向を1.0fにする)
//シェーダー計算用座標登録(視点からの距離で使う)
u.pos.as(pos.x, pos.y, pos.z);
u.dir.as(dir.x, dir.y, dir.z);
u.up.as(up.x, up.y, up.z);
}
float Dx_SwapChain::GetViewY_theta() {
return ViewY_theta;
}
float Dx_SwapChain::Getaspect() {
return aspect;
}
float Dx_SwapChain::GetNearPlane() {
return NearPlane;
}
float Dx_SwapChain::GetFarPlane() {
return FarPlane;
}
Dx_Resource* Dx_SwapChain::GetRtBuffer() {
return &mRtBuffer[mCurrBackBuffer];
}
Dx_Resource* Dx_SwapChain::GetDepthBuffer() {
return &mDepthStencilBuffer;
}
|
491df8a560923ad246117a0ffa9807ea729a0bfd | cb50a29550f3c383b72775ff9fd6a820fcd17cea | /CVDRUN.cpp | a614797957a709823353410bd71231e91aca13c9 | [
"MIT"
] | permissive | harshitbansal373/codechef-solutions | 16b2c257579484619cf96e335542e7b1d60abfbd | 2c78c0c044a44e0f08cf72e8adf1f8593e1eb47e | refs/heads/master | 2020-12-21T19:38:44.894355 | 2020-10-22T03:31:16 | 2020-10-22T03:31:16 | 236,537,713 | 1 | 8 | MIT | 2020-10-22T03:31:17 | 2020-01-27T16:35:45 | C++ | UTF-8 | C++ | false | false | 439 | cpp | CVDRUN.cpp | #include <iostream>
using namespace std;
int main() {
int t=0;
cin>>t;
while(t--)
{
long n=0,x=0,y=0,k=0,d=0,a=0,flag=0,l=0,m=0,i=0;
cin>>n>>k>>x>>y;
if(y>n)
{cout<<"NO"<<endl;}
for(i=0;i<n;i++)
{
if((x+k*i)%n==y)
{flag=0;
cout<<"YES"<<endl;
break;
}
else
{flag++;}
}
if(flag>0)
{cout<<"NO"<<endl;}
}
return 0;
}
|
2519f619130b199a5919d8b7b5821ac1ddabaab9 | d37cd75d267bdeb29a6dc66463954220aab27aa9 | /C/C/字符串输入.cpp | 1ebaf4d4d52cb4bb5d8a8741754671f209105199 | [] | no_license | Yun-Su/C | 0fdf14c104f31504379f057c70a938f5468c87f8 | 230841e21e630769e2624fc8b29e8ef599c6558a | refs/heads/master | 2020-06-22T02:57:44.353703 | 2020-02-27T13:20:53 | 2020-02-27T13:20:53 | 197,616,279 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 170 | cpp | 字符串输入.cpp | #include<stdio.h>
#include<stdlib.h>
int main()
{
char a[30];
char b[30];
scanf_s("%s", a,30);
scanf_s("%s", b,30);
printf("%s\n%s", a, b);
getchar();
getchar();
} |
0a6f190fb3076eb588afc7e73afaa15d8768a7fe | 9f4ebce30784f6bf09334bfcd7e84c9ee10bb1de | /cluster/view_matrix/view_matrix.cpp | a00a46a1d9713d79dcaf6b4870aa32214f6bc256 | [] | no_license | qazxsw1597532018/cluster | 7dfc9a446107c0e0baf56d8fc1add676390cb30e | b239a56ee24c3304e5321b3e0ffe8ad331ff8e9f | refs/heads/master | 2023-01-10T01:52:32.792571 | 2020-11-14T14:01:21 | 2020-11-14T14:01:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,411 | cpp | view_matrix.cpp | #include "view_matrix.h"
view_matrix_t::view_matrix_t( ) { }
view_matrix_t::view_matrix_t(
float_t m00, float_t m01, float_t m02, float_t m03,
float_t m10, float_t m11, float_t m12, float_t m13,
float_t m20, float_t m21, float_t m22, float_t m23,
float_t m30, float_t m31, float_t m32, float_t m33 ) {
init(
m00, m01, m02, m03,
m10, m11, m12, m13,
m20, m21, m22, m23,
m30, m31, m32, m33
);
}
view_matrix_t::view_matrix_t( const matrix_t& matrix3x4 ) {
init( matrix3x4 );
}
view_matrix_t::view_matrix_t( const vector3_t& _x, const vector3_t& _y, const vector3_t& _z ) {
init(
_x.x, _y.x, _z.x, 0.0f,
_x.y, _y.y, _z.y, 0.0f,
_x.z, _y.z, _z.z, 0.0f,
0.0f, 0.0f, 0.0f, 1.0f
);
}
void view_matrix_t::init(
float_t m00, float_t m01, float_t m02, float_t m03,
float_t m10, float_t m11, float_t m12, float_t m13,
float_t m20, float_t m21, float_t m22, float_t m23,
float_t m30, float_t m31, float_t m32, float_t m33
) {
m [ 0 ][ 0 ] = m00;
m [ 0 ][ 1 ] = m01;
m [ 0 ][ 2 ] = m02;
m [ 0 ][ 3 ] = m03;
m [ 1 ][ 0 ] = m10;
m [ 1 ][ 1 ] = m11;
m [ 1 ][ 2 ] = m12;
m [ 1 ][ 3 ] = m13;
m [ 2 ][ 0 ] = m20;
m [ 2 ][ 1 ] = m21;
m [ 2 ][ 2 ] = m22;
m [ 2 ][ 3 ] = m23;
m [ 3 ][ 0 ] = m30;
m [ 3 ][ 1 ] = m31;
m [ 3 ][ 2 ] = m32;
m [ 3 ][ 3 ] = m33;
}
void view_matrix_t::init( const matrix_t& m3x4 ) {
memcpy( m, m3x4.base( ), sizeof( matrix_t ) );
m [ 3 ][ 0 ] = 0.0f;
m [ 3 ][ 1 ] = 0.0f;
m [ 3 ][ 2 ] = 0.0f;
m [ 3 ][ 3 ] = 1.0f;
}
void vector_3d_multiply_position( const view_matrix_t& src1, const vector3_t& src2, vector3_t& dst ) {
dst [ 0 ] = src1 [ 0 ][ 0 ] * src2.x + src1 [ 0 ][ 1 ] * src2.y + src1 [ 0 ][ 2 ] * src2.z + src1 [ 0 ][ 3 ];
dst [ 1 ] = src1 [ 1 ][ 0 ] * src2.x + src1 [ 1 ][ 1 ] * src2.y + src1 [ 1 ][ 2 ] * src2.z + src1 [ 1 ][ 3 ];
dst [ 2 ] = src1 [ 2 ][ 0 ] * src2.x + src1 [ 2 ][ 1 ] * src2.y + src1 [ 2 ][ 2 ] * src2.z + src1 [ 2 ][ 3 ];
}
vector3_t view_matrix_t::get_forward( ) const {
return vector3_t( m [ 0 ][ 0 ], m [ 1 ][ 0 ], m [ 2 ][ 0 ] );
}
vector3_t view_matrix_t::get_left( ) const {
return vector3_t( m [ 0 ][ 1 ], m [ 1 ][ 1 ], m [ 2 ][ 1 ] );
}
vector3_t view_matrix_t::get_up( ) const {
return vector3_t( m [ 0 ][ 2 ], m [ 1 ][ 2 ], m [ 2 ][ 2 ] );
}
void view_matrix_t::set_forward( const vector3_t& forward ) {
m [ 0 ][ 0 ] = forward.x;
m [ 1 ][ 0 ] = forward.y;
m [ 2 ][ 0 ] = forward.z;
}
void view_matrix_t::set_left( const vector3_t& left ) {
m [ 0 ][ 1 ] = left.x;
m [ 1 ][ 1 ] = left.y;
m [ 2 ][ 1 ] = left.z;
}
void view_matrix_t::set_up( const vector3_t& up ) {
m [ 0 ][ 2 ] = up.x;
m [ 1 ][ 2 ] = up.y;
m [ 2 ][ 2 ] = up.z;
}
void view_matrix_t::get_basis_vector_3d( vector3_t& forward, vector3_t& left, vector3_t& up ) const {
forward.init( m [ 0 ][ 0 ], m [ 1 ][ 0 ], m [ 2 ][ 0 ] );
left.init( m [ 0 ][ 1 ], m [ 1 ][ 1 ], m [ 2 ][ 1 ] );
up.init( m [ 0 ][ 2 ], m [ 1 ][ 2 ], m [ 2 ][ 2 ] );
}
void view_matrix_t::set_basis_vector_3d( const vector3_t& forward, const vector3_t& left, const vector3_t& up ) {
set_forward( forward );
set_left( left );
set_up( up );
}
vector3_t view_matrix_t::get_translation( ) const {
return vector3_t( m [ 0 ][ 3 ], m [ 1 ][ 3 ], m [ 2 ][ 3 ] );
}
vector3_t& view_matrix_t::get_translation( vector3_t& trans ) const {
trans.x = m [ 0 ][ 3 ];
trans.y = m [ 1 ][ 3 ];
trans.z = m [ 2 ][ 3 ];
return trans;
}
void view_matrix_t::set_translation( const vector3_t& trans ) {
m [ 0 ][ 3 ] = trans.x;
m [ 1 ][ 3 ] = trans.y;
m [ 2 ][ 3 ] = trans.z;
}
void view_matrix_t::pre_translate( const vector3_t& trans ) {
vector3_t tmp;
vector_3d_multiply_position( *this, trans, tmp );
m [ 0 ][ 3 ] = tmp.x;
m [ 1 ][ 3 ] = tmp.y;
m [ 2 ][ 3 ] = tmp.z;
}
void view_matrix_t::post_translate( const vector3_t& trans ) {
m [ 0 ][ 3 ] += trans.x;
m [ 1 ][ 3 ] += trans.y;
m [ 2 ][ 3 ] += trans.z;
}
const matrix_t& view_matrix_t::as_matrix( ) const {
return *( ( const matrix_t* ) this );
}
matrix_t& view_matrix_t::as_matrix( ) {
return *( ( matrix_t* ) this );
}
void view_matrix_t::copy_from_matrix( const matrix_t& m3x4 ) {
memcpy( m, m3x4.base( ), sizeof( matrix_t ) );
m [ 3 ][ 0 ] = m [ 3 ][ 1 ] = m [ 3 ][ 2 ] = 0;
m [ 3 ][ 3 ] = 1;
}
void view_matrix_t::set_matrix( matrix_t& m3x4 ) const {
memcpy( m3x4.base( ), m, sizeof( matrix_t ) );
}
const view_matrix_t& view_matrix_t::operator+=( const view_matrix_t& other ) {
for ( int i = 0; i < 4; i++ ) {
for ( int j = 0; j < 4; j++ ) {
m [ i ][ j ] += other.m [ i ][ j ];
}
}
return *this;
}
view_matrix_t& view_matrix_t::operator=( const view_matrix_t& other ) {
for ( int i = 0; i < 4; i++ ) {
for ( int j = 0; j < 4; j++ ) {
m [ i ][ j ] = other.m [ i ][ j ];
}
}
return *this;
}
view_matrix_t view_matrix_t::operator+( const view_matrix_t& other ) const {
view_matrix_t ret;
for ( int i = 0; i < 16; i++ ) {
( ( float* ) ret.m ) [ i ] = ( ( float* ) m ) [ i ] + ( ( float* ) other.m ) [ i ];
}
return ret;
}
view_matrix_t view_matrix_t::operator-( const view_matrix_t& other ) const {
view_matrix_t ret;
for ( int i = 0; i < 4; i++ ) {
for ( int j = 0; j < 4; j++ ) {
ret.m [ i ][ j ] = m [ i ][ j ] - other.m [ i ][ j ];
}
}
return ret;
}
view_matrix_t view_matrix_t::operator-( ) const {
view_matrix_t ret;
for ( int i = 0; i < 16; i++ ) {
( ( float* ) ret.m ) [ i ] = -( ( float* ) m ) [ i ];
}
return ret;
}
vector3_t view_matrix_t::operator*( const vector3_t& vec ) const {
vector3_t ret;
ret.x = m [ 0 ][ 0 ] * vec.x + m [ 0 ][ 1 ] * vec.y + m [ 0 ][ 2 ] * vec.z + m [ 0 ][ 3 ];
ret.y = m [ 1 ][ 0 ] * vec.x + m [ 1 ][ 1 ] * vec.y + m [ 1 ][ 2 ] * vec.z + m [ 1 ][ 3 ];
ret.z = m [ 2 ][ 0 ] * vec.x + m [ 2 ][ 1 ] * vec.y + m [ 2 ][ 2 ] * vec.z + m [ 2 ][ 3 ];
return ret;
}
vector3_t view_matrix_t::vector_3d_multiply( const vector3_t& vec ) const {
vector3_t result;
vector_3d_multiply_position( *this, vec, result );
return result;
}
vector3_t view_matrix_t::vector_3d_transpose( const vector3_t& vec ) const {
vector3_t tmp = vec;
tmp.x -= m [ 0 ][ 3 ];
tmp.y -= m [ 1 ][ 3 ];
tmp.z -= m [ 2 ][ 3 ];
return vector3_t(
m [ 0 ][ 0 ] * tmp.x + m [ 1 ][ 0 ] * tmp.y + m [ 2 ][ 0 ] * tmp.z,
m [ 0 ][ 1 ] * tmp.x + m [ 1 ][ 1 ] * tmp.y + m [ 2 ][ 1 ] * tmp.z,
m [ 0 ][ 2 ] * tmp.x + m [ 1 ][ 2 ] * tmp.y + m [ 2 ][ 2 ] * tmp.z
);
}
vector3_t view_matrix_t::vector_3d_multiply_upper( const vector3_t& vec ) const {
return vector3_t(
m [ 0 ][ 0 ] * vec.x + m [ 0 ][ 1 ] * vec.y + m [ 0 ][ 2 ] * vec.z,
m [ 1 ][ 0 ] * vec.x + m [ 1 ][ 1 ] * vec.y + m [ 1 ][ 2 ] * vec.z,
m [ 2 ][ 0 ] * vec.x + m [ 2 ][ 1 ] * vec.y + m [ 2 ][ 2 ] * vec.z
);
}
vector3_t view_matrix_t::vector_3d_transpose_rotation( const vector3_t& vec ) const {
return vector3_t(
m [ 0 ][ 0 ] * vec.x + m [ 1 ][ 0 ] * vec.y + m [ 2 ][ 0 ] * vec.z,
m [ 0 ][ 1 ] * vec.x + m [ 1 ][ 1 ] * vec.y + m [ 2 ][ 1 ] * vec.z,
m [ 0 ][ 2 ] * vec.x + m [ 1 ][ 2 ] * vec.y + m [ 2 ][ 2 ] * vec.z
);
}
void view_matrix_t::vector_3d_multiply( const vector3_t& in, vector3_t& out ) const {
float_t rw;
rw = 1.0f / ( m [ 3 ][ 0 ] * in.x + m [ 3 ][ 1 ] * in.y + m [ 3 ][ 2 ] * in.z + m [ 3 ][ 3 ] );
out.x = ( m [ 0 ][ 0 ] * in.x + m [ 0 ][ 1 ] * in.y + m [ 0 ][ 2 ] * in.z + m [ 0 ][ 3 ] ) * rw;
out.y = ( m [ 1 ][ 0 ] * in.x + m [ 1 ][ 1 ] * in.y + m [ 1 ][ 2 ] * in.z + m [ 1 ][ 3 ] ) * rw;
out.z = ( m [ 2 ][ 0 ] * in.x + m [ 2 ][ 1 ] * in.y + m [ 2 ][ 2 ] * in.z + m [ 2 ][ 3 ] ) * rw;
}
void view_matrix_t::identity( ) {
m [ 0 ][ 0 ] = 1.0f; m [ 0 ][ 1 ] = 0.0f; m [ 0 ][ 2 ] = 0.0f; m [ 0 ][ 3 ] = 0.0f;
m [ 1 ][ 0 ] = 0.0f; m [ 1 ][ 1 ] = 1.0f; m [ 1 ][ 2 ] = 0.0f; m [ 1 ][ 3 ] = 0.0f;
m [ 2 ][ 0 ] = 0.0f; m [ 2 ][ 1 ] = 0.0f; m [ 2 ][ 2 ] = 1.0f; m [ 2 ][ 3 ] = 0.0f;
m [ 3 ][ 0 ] = 0.0f; m [ 3 ][ 1 ] = 0.0f; m [ 3 ][ 2 ] = 0.0f; m [ 3 ][ 3 ] = 1.0f;
}
bool view_matrix_t::is_identity( ) const {
return
m [ 0 ][ 0 ] == 1.0f && m [ 0 ][ 1 ] == 0.0f && m [ 0 ][ 2 ] == 0.0f && m [ 0 ][ 3 ] == 0.0f &&
m [ 1 ][ 0 ] == 0.0f && m [ 1 ][ 1 ] == 1.0f && m [ 1 ][ 2 ] == 0.0f && m [ 1 ][ 3 ] == 0.0f &&
m [ 2 ][ 0 ] == 0.0f && m [ 2 ][ 1 ] == 0.0f && m [ 2 ][ 2 ] == 1.0f && m [ 2 ][ 3 ] == 0.0f &&
m [ 3 ][ 0 ] == 0.0f && m [ 3 ][ 1 ] == 0.0f && m [ 3 ][ 2 ] == 0.0f && m [ 3 ][ 3 ] == 1.0f;
}
vector3_t view_matrix_t::apply_rotation( const vector3_t& vec ) const {
return vector_3d_multiply( vec );
}
|
dcfdc6b609aa8ee21bb9fba85c8663ac7ae90d04 | 26a55bb7212db98622d2335cfd19c8d71e903bae | /src/World.cpp | a5e29c0e6a849d8850f33e3134b3f3baee397631 | [] | no_license | aakashbhowmick/opengl_experiment | 3a091973b0398d825018c61daa4e71c572114da0 | 97d18a21bc6bc61cc697084adcc5efbb5da46f28 | refs/heads/master | 2022-12-05T07:58:59.714404 | 2020-08-28T07:51:05 | 2020-08-28T07:51:05 | 255,879,846 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 93 | cpp | World.cpp | #include <World.h>
// Static member instantiation
std::unique_ptr<World> World::the_world_;
|
07db68434fe9abc80c244b77fa5f6b3fd035e5dd | 1204002f57e06f3c62465a04f78a8536df3a9d7e | /include/MainFrame.h | 77b92c42f92576436002faa18aed90d1a473361f | [] | no_license | renny1398/rennypsf | 27d196a23a41aa1d1985cab5e882ca7ea38bc19f | 8b6a2d4aae49635e112bc59d0ba8336830f72264 | refs/heads/master | 2020-05-21T22:49:25.211001 | 2015-10-10T02:45:32 | 2015-10-11T00:17:53 | 34,560,787 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 992 | h | MainFrame.h | #pragma once
#include "stdwx.h"
class wxTreeCtrl;
class SoundFormat;
class PSFPlaylist;
class MainFrame: public wxFrame
{
public:
MainFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
private:
// Menu Event
void OnOpen(wxCommandEvent& event);
void OnExit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
void DragAndDrop(wxCommandEvent& event);
// Button Event
void OnPlay(wxCommandEvent& event);
void OnStop(wxCommandEvent& event);
// for Debug mode
#ifdef __WXDEBUG__
void OnDebug(wxCommandEvent& event);
#endif
PSFPlaylist *file_treectrl;
wxDECLARE_EVENT_TABLE();
};
enum {
ID_OPEN = 101,
ID_SHOW_KEYBOARDS = 250,
ID_PLAY = 301,
ID_PAUSE,
ID_STOP,
ID_DEBUG,
ID_SEEKBAR = 501,
ID_PLAYLIST,
//*title,*artist,*game,*year,*genre,*psfby,*comment,*copyright
ID_INFO_TITLE = 901,
ID_INFO_ARTIST,
ID_INFO_GAME,
ID_INFO_YEAR,
ID_INFO_GENRE,
ID_INFO_PSFBY,
ID_INFO_COMMENT,
ID_INFO_COPYRIGHT
};
|
94db605188f413c438f077702f51feff52836874 | 21c19f19884468492eda1a448c7060fcf6709f27 | /PC_3/PC_3_3.cpp | d979ad40568b14ff35d515efe1ad4a2a6ff90ded | [] | no_license | cblack618/StartingOutCPP | 76a29160ce55d004443c37455c7b3cd884742856 | 3f57cbba5db67691328f60ce3be423c2c7ef17b6 | refs/heads/master | 2021-01-03T17:41:21.424275 | 2015-05-31T23:32:36 | 2015-05-31T23:32:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,030 | cpp | PC_3_3.cpp | // This program calculates and displays montly and yearly housing cost.
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
double RentAndMortgage,
Utilities,
Phone,
Cable,
MontlyCost,
YearlyCost;
// Input monthly housing expenses.
cout << "This program will calculate your\n";
cout << "montly and yearly housing expenses.\n";
cout << "Enter your rent or mortgage payment cost: ";
cin >> RentAndMortgage;
cout << "Enter the cost of your utilities: ";
cin >> Utilities;
cout << "Enter your monthly phone cost: ";
cin >> Phone;
cout << "Enter your montly cable cost: ";
cin >> Cable;
// Calculate monthly and yearly cost.
MontlyCost = RentAndMortgage + Utilities + Phone + Cable;
YearlyCost = MontlyCost * 12;
// Display results.
cout << "Total montly cost of expenses: $";
cout << fixed << showpoint << setprecision(2);
cout << setw(10) << MontlyCost << endl;
cout << "Total yearly cost of expenses: $";
cout << setw(10) << YearlyCost << endl;
return 0;
} |
9595463315e2a3638e3a3b8791e79a3cefe76ced | 845f1f898cd018712aea1d9de5545fc093c4e680 | /Projet/Projet2/fenetre_depart.h | 8c574875dc815931222021221c255cc3ecefd791 | [] | no_license | Voldjinn/Lo21_Projet | fbe2e4443f455e52e8198601fbfe3bcfd5b7756d | da8f69d78b8b4f4d05d3c328e5700788320ec47c | refs/heads/master | 2021-01-17T07:35:38.688282 | 2015-05-16T11:31:33 | 2015-05-16T11:31:33 | 35,690,536 | 0 | 0 | null | 2015-05-15T18:41:16 | 2015-05-15T18:41:16 | null | UTF-8 | C++ | false | false | 997 | h | fenetre_depart.h | #ifndef FENETRE_DEPART_H
#define FENETRE_DEPART_H
#include <QWidget>
#include <QGridLayout>
#include <QPushButton>
#include <QtWidgets/QDateEdit>
#include <QtWidgets/QLabel>
#include <QScrollArea>
#include "emploidutemps.h"
class FenetreDepart : public QWidget{
Q_OBJECT
private:
QVBoxLayout *layout;
QPushButton *affichageEdt;
QPushButton *exportEdt;
QPushButton *gestionProjet;
QPushButton *exit;
public slots:
void accesEdt();
void accesProjet();
public:
FenetreDepart();
~FenetreDepart();
};
class ChoixSemaine : public QWidget {
Q_OBJECT
private:
QGridLayout *lay;
QPushButton *valider;
QLabel *text;
QDateEdit *choix;
public:
ChoixSemaine();
~ChoixSemaine();
public slots:
void accesEdT();
};
class ChoixProjet : public QWidget {
Q_OBJECT
private:
QGridLayout *lay;
QPushButton *valider;
QPushButton *newProjet;
QPushButton *delProjet;
QLabel *text;
QScrollArea *listeProjets;
public:
ChoixProjet();
~ChoixProjet();
};
#endif // FENETRE_DEPART_H
|
10d2658202269e7cb8893d4f1381ae3103df4c76 | 5c8cff48c509ded39a66243367000ea0210273e4 | /Implementation/Core/amc_servicehandler.hpp | dd17d7f51960e7406acd2787dc955909617a82e6 | [
"BSD-3-Clause"
] | permissive | mkosi/AutodeskMachineControlFramework | 50c8ab43bd551e4dfa54ef9fe8d8dbd88aa97fd2 | da257a4a609edbbdf3d7c5d834d61f8555c68e09 | refs/heads/master | 2022-12-17T22:46:41.215845 | 2020-08-28T10:07:06 | 2020-08-28T10:07:06 | 294,356,266 | 0 | 0 | NOASSERTION | 2020-09-10T08:55:09 | 2020-09-10T08:55:08 | null | UTF-8 | C++ | false | false | 2,538 | hpp | amc_servicehandler.hpp | /*++
Copyright (C) 2020 Autodesk 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 Autodesk 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 AUTODESK 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.
*/
#ifndef __AMC_SERVICEHANDLER
#define __AMC_SERVICEHANDLER
#include "amc_service.hpp"
#include "amc_logger.hpp"
#include <memory>
#include <string>
#include <set>
#include <queue>
#define SERVICETHREADCOUNT_MIN 2
#define SERVICETHREADCOUNT_MAX 128
#define SERVICETHREADCOUNT_DEFAULT 8
namespace AMC {
class CServiceHandler;
typedef std::shared_ptr<CServiceHandler> PServiceHandler;
class CService;
typedef std::shared_ptr<CService> PService;
class CServiceHandler {
private:
uint32_t m_nMaxThreadCount;
std::mutex m_Mutex;
std::queue<PService> m_QueuedServices;
std::set<PService> m_RunningServices;
std::set<PService> m_FinishedServices;
PLogger m_pLogger;
public:
CServiceHandler(PLogger pLogger);
virtual ~CServiceHandler();
void addServiceToQueue (PService pService);
void handleQueue();
void clearGarbage();
void logMessage(const std::string& sMessage, const std::string& sSubSystem, const eLogLevel logLevel);
void setMaxThreadCount(uint32_t nMaxThreadCount);
};
}
#endif //__AMC_SERVICEHANDLER
|
c16bebac2ef359203faf5dc1fb08081b6e4734f2 | 6e5be6e6ea3cd37d1ca15ca24aee4722ed63d578 | /include/grape/params/optimizer_list_params.h | efa4d73c2bbe9e87abd597e3006ac49820b0260c | [
"BSD-2-Clause"
] | permissive | yoghourtzzy/Grape | 06b35efa4af5b5e3bac65fa03a0528d62263d825 | 8c5dc803ac3e49b569a89118fcaf5d4ca6ec673b | refs/heads/master | 2022-03-27T23:06:23.948622 | 2019-09-03T16:06:02 | 2019-09-03T16:06:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 443 | h | optimizer_list_params.h | #ifndef __GRAPE_OPTIMIZER_LIST_PARAMS_H__
#define __GRAPE_OPTIMIZER_LIST_PARAMS_H__
#include <string>
#include <vector>
#include "optimizer_params.h"
namespace Grape{
class OptimizerListParams{
public:
std::vector<OptimizerParams> optimizer_list_;
template <class Archive>
void serialize( Archive & ar )
{
ar( cereal::make_nvp("optimizer_list",optimizer_list_));
}
};
}
#endif |
175cb864f23da678fd88a7fcb8cfe0c25654efe8 | bdc132b6fd4b693d56e093b55b99af2a7fad2c46 | /poj/preliminary/poj3006.cc | 5af80af3f00ac2716ce2ece94b439849e4b9005d | [] | no_license | ailyanlu/my-acm-solutions | 8f76b8e9898ec8c97463bb619c7fbc72a662ec7e | fc79e6284ea57ce561e7c8c9c0e5c08e06e1c36b | refs/heads/master | 2017-10-07T16:14:45.706176 | 2016-04-30T06:38:26 | 2016-04-30T06:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 956 | cc | poj3006.cc | /**
* http://poj.org/problem?id=3006
*/
#include <iostream>
typedef unsigned long long ullong;
const ullong MAX = 1000005;
bool prime[MAX];
int main() {
// http://www.csie.ntnu.edu.tw/~u91029/Prime.html
// get all prime numbers less than MAX
memset(prime, true, sizeof(prime));
prime[0] = false, prime[1] = false;
for (ullong i = 2; i < MAX; ++i) {
if (prime[i]) {
// 欲刪掉質數 i 的倍數之時,早已刪掉 1 倍到 i-1 倍了,直接從 i 倍開始。
for (ullong j = i * i; j < MAX; j += i) {
prime[j] = false;
}
}
}
int first, delta, count;
while (scanf("%d %d %d", &first, &delta, &count) != EOF
&& (first || delta || count)) {
while (count) {
if (prime[first]) {
--count;
}
first += delta;
}
printf("%d\n", first - delta);
}
return 0;
}
|
f52d92380e3f93d86da0d3e3996cf55892092c04 | 0e2bde8edf7fe8e9acdfe31a024392bbe4353840 | /src/game/player/camera.cpp | eb1c033b677a36e7d8fb33236600e4d3609d8fda | [] | no_license | B-Curve/C-Game | d750f5719e560d7bb51fa345c553e58097d6d907 | 5d55c61b5bb316986601309fd21a069650deb4f9 | refs/heads/master | 2021-05-12T16:59:25.884786 | 2018-01-31T01:35:45 | 2018-01-31T01:35:45 | 117,031,342 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,753 | cpp | camera.cpp | //
// camera.cpp
// MinecraftClone
//
// Created by Brandon Kervin on 1/30/18.
// Copyright © 2018 Brandon Kervin. All rights reserved.
//
#include "camera.hpp"
#include <iostream>
void Camera::update(GLFWwindow *window, double delta){
float movespeed = delta * (0.12f * 20);
if(glfwGetKey(window, MC_FORWARD)){
position -= (flyMode ? -direction : glm::normalize(glm::cross(right, worldUp))) * movespeed;
}
if(glfwGetKey(window, MC_BACKWARD)){
position += (flyMode ? -direction : glm::normalize(glm::cross(right, worldUp))) * movespeed;
}
if(glfwGetKey(window, MC_PAN_LEFT)){
position -= right * movespeed;
}
if(glfwGetKey(window, MC_PAN_RIGHT)){
position += right * movespeed;
}
if(glfwGetKey(window, MC_FLY)){
double now = glfwGetTime();
if(now - last_tab > 0.3){
last_tab = now;
flyMode = !flyMode;
}
}
if(glfwGetKey(window, MC_DEBUG)){
double now = glfwGetTime();
if(now - last_debug > 0.3){
last_debug = now;
debugMode = !debugMode;
}
}
updateView();
}
void Camera::updateMouse(float xOffset, float yOffset){
xOffset*= sensitivity;
yOffset*= sensitivity;
yaw+= xOffset;
pitch+= yOffset;
if (pitch > 89.0f) pitch = 89.0f;
if (pitch < -89.0f) pitch = -89.0f;
glm::vec3 front;
front.x = sin(glm::radians(yaw)) * cos(glm::radians(pitch));
front.y = sin(glm::radians(pitch));
front.z = -cos(glm::radians(yaw)) * cos(glm::radians(pitch));
direction = glm::normalize(front);
right = glm::normalize(glm::cross(direction, worldUp));
up = glm::normalize(glm::cross(right, direction));
}
|
f1fc1908c38562a5a7dc53bc2769ccf7a0ebd32a | b13b51704390ee6af926a85ab8e7890b6aa8976e | /Encode_and_Decode_Strings.cpp | 84dd876dcce94b05f69f8f5d06c09a4d9e880aa4 | [] | no_license | kxingit/LeetCode | 7308eb306fe899e3f68a7cf90b43a37da46416cc | a0ef8e5454bd29076b50ffedc5b1720dd7273a9d | refs/heads/master | 2021-01-14T08:03:20.811221 | 2017-03-20T19:25:56 | 2017-03-20T19:25:56 | 35,183,062 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 792 | cpp | Encode_and_Decode_Strings.cpp | /*
* tag
* Design an algorithm to encode a list of strings to a string.
* The encoded string is then sent over the network and is decoded back to the original list of strings.
*/
class Codec {
public:
// Encodes a list of strings to a single string.
string encode(vector<string>& strs) {
string s;
for (string str : strs)
s += to_string(str.length()) + '$' + str;
return s;
}
// Decodes a single string to a list of strings.
vector<string> decode(string s) {
vector<string> strs;
size_t n = s.length(), p = 0 ;
while (p < n) {
size_t pos = s.find('$', p);
if (pos == string::npos) break;
size_t sz = stoi(s.substr(p, pos - p));
strs.push_back(s.substr(pos + 1, sz));
p = pos + sz + 1;
}
return strs;
}
};
|
7718cb3e6fc92c514f39d2f3b7296aaaa9b8aa17 | 2aee3c10852a29e78776e0cc1a874d1d7a6c81bb | /vampire.cc | cefd9411b9d6e1b009b501a65d35314016c3b330 | [] | no_license | yang49/CC3K | a9f126fcdd53e2115a05b90e16314fe5702a9c94 | 5eb42a17f543ea4692463184594500e4f0a0a31b | refs/heads/master | 2021-01-10T01:22:33.709571 | 2016-01-05T05:55:54 | 2016-01-05T05:55:54 | 47,202,988 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 723 | cc | vampire.cc | #include "vampire.h"
#include "enemy.h"
#include "dwarf.h"
#include <iostream>
//constructor
Vampire::Vampire() {
this->role = 'v';
this->Hp = 50; // 50
this->At = 25; // 25
this->Df = 25; // 25
this->maxHp = 99999999;
this->defAt = 25;
this->defDf = 25;
}
void Vampire::useOn(Enemy &em) {
int dmg = this->At;
int def = em.getDf();
double total = ((100.0 / (100.0 + def)) * dmg);
int tot = (int)total;
em.setHp(tot);
this->setHp(-5);
}
void Vampire::useOn(Dwarf &em) {
int dmg = this->At;
int def = em.getDf();
double total = ((100.0 / (100.0 + def)) * dmg);
int tot = (int)total;
em.setHp(tot);
this->setHp(5);
}
//destructor
Vampire::~Vampire() {}
|
c4146d8eccd2905b4e32f973e96a972c5e9445b6 | ebc906291914128fc8101f712c760f6fe786b460 | /ArdLooper.cpp | 62b7e4edc1b9540daade70c2e7b930ca992f7b91 | [
"MIT"
] | permissive | p2401kumar/ArdThread | 793d40e07376b40d68487c038c5860e2395804b1 | 0a6a6ded6b00f0605bca96136d636f2d0178a3c9 | refs/heads/main | 2023-02-12T11:22:18.721813 | 2021-01-09T08:19:14 | 2021-01-09T08:19:14 | 328,026,986 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,406 | cpp | ArdLooper.cpp | #include "ArdObject.cpp"
#include "util/Utils.h"
#pragma once
class ArdLooper {
ArdList* ardList = new ArdList();
long __nextSmallest = -1;
long __counter = 0;
public:
void createThread(void (*func)(ArdObject*)) {
ArdObject *x = new ArdObject();
func(x);
ardList->insertNode(x);
}
void startThreads() {
while(true) {
__counter++;
systemDelay(1);
systemTingle(__counter);
}
}
void testWithoutDelay() {
ArdList::Iterator *it = ardList->iterator();
while(it->hasNext()) {
ArdObject* x = (ArdObject*)(it->next());
x->testWithoutDelay();
}
delete it;
}
void systemTingle(long counter) {
if (__nextSmallest == -1) {
ArdList::Iterator *it = ardList->iterator();
while(it->hasNext()) {
ArdObject* x = (ArdObject*)(it->next());
long t = x->__funcMetaArdNode->__t1 + x->__POINTER__->__delayWRTRoot;
if (__nextSmallest == -1) {
__nextSmallest = t;
}
else if (__nextSmallest > t) {
__nextSmallest = t;
}
}
delete it;
}
if (counter == __nextSmallest) {
ArdList::Iterator *it = ardList->iterator();
while(it->hasNext()) {
ArdObject* x = (ArdObject*)(it->next());
if (x->__funcMetaArdNode->__t1 + x->__POINTER__->__delayWRTRoot == __nextSmallest) {
x->__POINTER__->__function();
x->movePointerAhead(counter);
}
}
delete it;
__nextSmallest = -1;
}
}
};
|
fe6dbd9852ccb0fcb74de088462e98668d52d395 | da04436280083064ffe99b4027ca40918367b250 | /a3/BusyWaitBoundedBuffer.cc | d417526705bf894395ffc55cdfabbb4d7ba2f054 | [] | no_license | sherlockwxl/cs343-1 | 9001516e4d717b4b33b5c2c3468abce6df3a8555 | 6bad9ea7643096b042a3a340315261db8cfbecf0 | refs/heads/master | 2020-04-20T17:13:08.083342 | 2011-08-09T16:26:04 | 2011-08-09T16:26:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,253 | cc | BusyWaitBoundedBuffer.cc | #ifndef Q1_BUSYWAITBOUNDEDBUFFER_CC
#define Q1_BUSYWAITBOUNDEDBUFFER_CC
#include <uC++.h>
#include "BoundedBuffer.cc"
using namespace std;
template <typename T>
class BusyWaitBoundedBuffer {
public:
BusyWaitBoundedBuffer(const uint32_t capacity = 10);
~BusyWaitBoundedBuffer();
void insert(T elem);
T remove();
private:
BoundedBuffer<T> buffer_;
uOwnerLock lock_;
uCondLock itemAvailable_;
uCondLock slotFree_;
};
template <typename T>
BusyWaitBoundedBuffer<T>::BusyWaitBoundedBuffer(const uint32_t capacity)
: buffer_(capacity),
lock_(),
itemAvailable_(),
slotFree_() { }
template <typename T>
BusyWaitBoundedBuffer<T>::~BusyWaitBoundedBuffer() { }
template <typename T>
void BusyWaitBoundedBuffer<T>::insert(T elem) {
lock_.acquire();
while (true) {
if (!buffer_.full()) {
break;
}
slotFree_.wait(lock_);
}
buffer_.insert(elem);
itemAvailable_.signal();
lock_.release();
}
template <typename T>
T BusyWaitBoundedBuffer<T>::remove() {
lock_.acquire();
while (true) {
if (!buffer_.empty()) {
break;
}
itemAvailable_.wait(lock_);
}
T ret = buffer_.remove();
slotFree_.signal();
lock_.release();
return ret;
}
#endif // Q1_BUSYWAITBOUNDEDBUFFER_CC
|
14734a91d14ea053d38c0c4fa7abe3dd96f4c7e4 | e116f1d69599d660ef3eab820e6f9f9f858040ec | /LED_RGB_Fading.ino | 13f0c152bcbdc692ef81f26c567dbbbcd82a7f79 | [] | no_license | LFegely/FocusOnFutbol | e17f97dff668091e43149d98f421de65f08d4c9e | 392bd9b63af8d0e05d1dd453a5bc8338b8a30a77 | refs/heads/master | 2020-05-15T12:50:34.913395 | 2019-04-19T15:03:28 | 2019-04-19T15:03:28 | 182,279,669 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,275 | ino | LED_RGB_Fading.ino | int ledR = 3; // LED connected to digital pin 3
int ledG = 5;
int ledB = 6;
int delayVal = 100;
void setup() {
pinMode(ledR, OUTPUT);
pinMode(ledG, OUTPUT);
pinMode(ledB, OUTPUT);
}
void loop() {
// fade from red to green, in 5 point increments
for (int fadeValue = 0 ; fadeValue <= 255; fadeValue += 5) {
// sets the value (range from 0 to 255):
analogWrite(ledR, 255-fadeValue);
analogWrite(ledG, fadeValue);
analogWrite(ledB, 0);
//analogWrite(ledPinB, fadeValue);
// wait for 30 milliseconds to see the dimming effect
delay(delayVal);
}
// fade from green to blue, in 5 point increments
for (int fadeValue = 0 ; fadeValue <= 255; fadeValue += 5) {
// sets the value (range from 0 to 255):
analogWrite(ledR, 0);
analogWrite(ledG, 255-fadeValue);
analogWrite(ledB, fadeValue);
// wait for 30 milliseconds to see the dimming effect
delay(delayVal);
}
// fade from blue to red, in 5 point increments
for (int fadeValue = 0 ; fadeValue <= 255; fadeValue += 5) {
// sets the value (range from 0 to 255):
analogWrite(ledR, fadeValue);
analogWrite(ledG, 0);
analogWrite(ledB, 255-fadeValue);
// wait for 30 milliseconds to see the dimming effect
delay(delayVal);
}
}
|
abb4a64500e6d4bcabd9e0d2a4f74eea744be214 | f53e1c445cb31ab0b147936c04271eededf4075f | /KEYPAD_TEST/KEYPAD_TEST.ino | 5652f46d104f4eb7ea7c0a1318d52511a4ed5681 | [] | no_license | AnikaTanzim/Microcontroller-Based-System-Design | d7a465adfd9be9fb526df7d1480b75fcc581daed | ca0da532d9e8665142373365129c754c5bde93f2 | refs/heads/master | 2023-04-24T16:30:02.015962 | 2021-05-06T12:36:15 | 2021-05-06T12:36:15 | 364,904,442 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 969 | ino | KEYPAD_TEST.ino | #include<Keypad.h>
const byte rows = 4;
const byte cols =4;
char keys[rows][cols] = {
{'1','2','3','A'},
{'4','5','6','B'},
{'7','8','9','C'},
{'*','0','#','D'}
};
//white ones are col and black ones are row44444444443
byte rowPins[rows] = {4,5,6,7};
byte colPins[cols] = {8,9,10,11};
Keypad CustomKeypad = Keypad(makeKeymap(keys),rowPins,colPins,rows,cols);
#define ledpin 13
void setup() {
// put your setup code here, to run once:
pinMode(ledpin,OUTPUT);
digitalWrite(ledpin,HIGH);
Serial. begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
char customKeey = CustomKeypad.getKey();
switch(customKeey){
case '*':
digitalWrite(ledpin,LOW);
break;
case'#':
digitalWrite(ledpin,HIGH);
break;
default:
Serial.println(customKeey);
}
}
|
6c56aa4a9c4877213d64c45c270a1e6e3bf95dbe | 7dbb0f4c19165f16812d1633f341cdb45f96e91e | /Main2.3.ino | 581ad347fa51a15e87c944150f1a6ac855ca12b5 | [] | no_license | KevinAbishek/AMURA-driver-codes | 7f20ae4dbe3988905f38c9a2c65d74e9b65179e8 | a9a8d88df24c98e6da859ffbe7ababaeb555b9b4 | refs/heads/main | 2023-08-17T02:59:44.616599 | 2021-10-02T22:48:49 | 2021-10-02T22:48:49 | 412,921,790 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,911 | ino | Main2.3.ino | //Initialize end stp switches
/*
* Main2.3 added buzzer, hardware shutdown
* Variables added:
* hpos_status = 0 - int, while loop exit condition after both axes home, assume not home initially
* xpos = 0 - long, count steps along X dir from starting pos upto end stp, equal to 0 when starting, in 1/32 stpres, xrange = 20000 (32)
* ypos = 0 - long, count steps along Y dir from starting pos upto end stp, equal to 0 when starting, in 1/32 stpres, yrange = 12000 (32)
* Y EJECT -10000 FROM HOME
* X EJECT 7000 FROM HOME
*/
#include <DRV8711.h>
#include <EEPROM.h>
#define DRV8711_EEPROM_ADDR 0x100 // leave 256 bytes untouched
/*
* GPIO pin definitions
*/
# define XCSpin 37
# define XSTEPpin 36
# define XDIRpin 35
# define XRESETpin 34
# define YCSpin 25
# define YSTEPpin 24
# define YDIRpin 23
# define YRESETpin 22
# define LED1 5
# define B1 2 //Button 1 to manually jog the stepper
# define B2 3 //Button 2 to manually jog the stepper
# define xLIM 6
# define yLIM 7
# define buzz 45
int del = 500, SCX = 0, SCY = 0, dirX = 1, dirY = 1, inten = 0, p_dirX = dirX, p_dirY = dirY ;
int i = 3, blc = 1, blX = 750, blY = 750, xpos = 0, ypos = 0 ; //Normalized to 1/256 step resolution
bool up = false ;
float s = 256 ;
DRV8711 Xstepper (XCSpin) ;
DRV8711 Ystepper (YCSpin) ;
void loop ()
{
while (Serial.available ())
{
char ch = Serial.read () ;
func (ch) ;
}
if (!digitalRead (B1))
{
delay (500) ;
do_stepX (0) ;
do_stepY (0) ;
if (SCX != 0 || SCY != 0)
{
SCX = 0 ;
SCY = 0 ;
}
}
else if (!digitalRead (B2))
{
delay (500) ;
do_stepX (1) ;
do_stepY (1) ;
if (SCX != 0 || SCY != 0)
{
SCX = 0 ;
SCY = 0 ;
}
}
move_line (del) ;
}
|
d551fd511e265276593ea460fd4089cca84995df | ef7b07caadc3c70e79baa5c57f2b326ac5679b48 | /544A.cpp | a2df8280aa2b5281b3f53bee6015cf9ad9c472e4 | [] | no_license | caoyi0905/codeforces-solutions | 4e57a450afceae2b0fcc121b5df46fa7f1763aa2 | 4090fb6e57e4b249a762fd212028edc96f561b8e | refs/heads/master | 2021-01-17T13:57:15.601261 | 2016-07-01T12:09:31 | 2016-07-01T12:09:31 | 38,733,785 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 395 | cpp | 544A.cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int i,k,cnt=1;
string str;
set<char> s;
cin>>k>>str;
for(i=0;i<str.size();i++) s.insert(str[i]);
if(k>s.size()){return puts("NO");}
s.clear();
puts("YES");
for(i=0;i<str.size();i++){
if(i&&!s.count(str[i])&&cnt<k) puts(""),cnt++;
printf("%c",str[i]);
s.insert(str[i]);
}
}
|
3fbeea8bfd3f28890395e445c0f8e63afab2c445 | c7f3db94cc3d69cd9a2ae24aa3c69cd767b28672 | /must_rma/src/externals/GTI/modules/comm-strategy/CStratPRecv.h | 91b6c71e212f23fefb2bf8de63fbce6d8efe80c3 | [] | no_license | RWTH-HPC/must-rma-correctness22-supplemental | 10683ff20339098a45a35301dbee6b31d74efaec | 04cb9fe5f0dcb05ea67880209accf19c5e0dda25 | refs/heads/main | 2023-04-14T20:48:36.684589 | 2022-08-10T20:28:43 | 2022-11-18T03:33:05 | 523,105,966 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,744 | h | CStratPRecv.h | /* This file is part of GTI (Generic Tool Infrastructure)
*
* Copyright (C)
* 2008-2019 ZIH, Technische Universitaet Dresden, Federal Republic of Germany
* 2008-2019 Lawrence Livermore National Laboratories, United States of America
* 2013-2019 RWTH Aachen University, Federal Republic of Germany
*
* See the LICENSE file in the package base directory for details
*/
/**
* @file CStratPRecv.h
* @see gti::CStratPRecv.
*
* Based on CStratThreaded, this is a modified copy!
*
* @author Tobias Hilbrich
* @date 13.03.2013
*/
#include "GtiDefines.h"
#include "GtiEnums.h"
#include "GtiTypes.h"
#include "I_CommProtocol.h"
#include "CStratIsend.h"
#include <list>
#include <vector>
#include <map>
#ifndef CSTRAT_PRECV_H
#define CSTRAT_PRECV_H
namespace gti
{
/**
* Buffer free function for long messages.
*/
GTI_RETURN longMsgBufFreeFunction (void* free_data, uint64_t num_bytes, void* buf);
/**
* Buffer free function for received bufs.
*/
GTI_RETURN returnedBufBufFreeFunction (void* free_data, uint64_t num_bytes, void* buf);
/**
* Base class for partial receive based strategy.
*/
class CStratPRecv
{
protected:
static uint64_t BUF_LENGTH;
static uint64_t MAX_NUM_MSGS;
static const uint64_t myTokenLongMsg;
static const uint64_t myTokenShutdownSync;
static const uint64_t myTokenMessage;
public:
CStratPRecv ();
virtual ~CStratPRecv ();
};
/*Forward declaration*/
class CStratPRecvBufInfo;
/**
* Interface for buf infos (see CStratPRecvBufInfo) to notify their
* manager that their aren't used by any caller anymore.
*
* Rational: in the receive calls we do not copy data out of the bufs,
* instead we return the full buffer of the buf (offseted to fit the
* actuall message). We use the buf free function to determine when a
* buf can be reused.
*/
class I_BufManager
{
public:
/**
* Must be called by the user of a buf when if is done with it.
* @param info for the buf that can now be recycled.
*/
virtual void notifyOfLastUserFinishedEmptyBuf (CStratPRecvBufInfo *info) = 0;
};
/**
* Base class for receivers of buffers
*/
class CStratBufReceiver : public I_BufManager
{
protected:
/** Reference to masters communication protocol. */
I_CommProtocol **myManagedProtocol;
std::list<CStratPRecvBufInfo*> myFreeBufs;
unsigned int myTestRequest; //Request for wildcard receiving
CStratPRecvBufInfo* myTestBuf; //Buf for wildcard receiving
class TestInfo
{
public:
TestInfo (void);
unsigned int request;
CStratPRecvBufInfo* buf;
};
std::vector<TestInfo> myTests; //State for non-wildcard receiving
int myNumNonWcTests; //Number of irecvs started that use a specific channel
uint64_t myBufSize;
/**
* Returns a free buf from myFreeBufs or
* creates a new one if necessary.
* @return a free buf.
*/
CStratPRecvBufInfo* get_free_buf (void);
/**
* Handles receival of a long message.
* @param in_length the length of the msg (received with the long msg token).
* @param channel the channel to use.
* @param out_flag flag for testing.
* @param out_num_bytes number of bytes received.
* @param out_buf buffer with received content.
* @param out_free_data associated data for freeing out_buffer.
* @param out_buf_free_function function to use for freeing out_buffer.
* @see I_CommStrategyDown::test
*/
GTI_RETURN long_msg_from_info (
uint64_t in_length,
uint64_t channel,
int* out_flag,
uint64_t* out_num_bytes,
void** out_buf,
void** out_free_data,
GTI_RETURN (**out_buf_free_function) (void* free_data, uint64_t num_bytes, void* buf),
uint64_t *outChannel
);
public:
CStratBufReceiver (I_CommProtocol **managedProtocol, uint64_t bufSize);
~CStratBufReceiver (void);
/**
* @see I_BufManager::notifyOfLastUserFinishedEmptyBuf
*/
void notifyOfLastUserFinishedEmptyBuf (CStratPRecvBufInfo *info);
};
/**
* Class with buf information of a received buf
* buffer.
*/
class CStratPRecvBufInfo
{
public:
char* buf; /**< Buffer that holds the buf.*/
uint64_t channel; /**< Communication channel from which we received this buf.*/
I_BufManager *instance; /**< Interface to notify if we happen to be the last external user of an otherwise completed buf.*/
CStratPRecvBufInfo(uint64_t buf_size); /**< @param buf_size memory size of the buffer to allocate. */
CStratPRecvBufInfo(char* buf); /**< @param buf existing buffer for an buf. */
~CStratPRecvBufInfo(void);
};
/**
* Class for partial receive strategy that sends out bufs.
*/
class CStratPRecvSender : public CStratPRecv
{
protected:
/** Reference to masters communication protocol. */
I_CommProtocol **myManagedProtocol;
std::list<CStratIsendRequest> myRequests; /**< List of all open communication requests and their associated buf buffers.*/
int myMaxNumReqs; /**< High-water mark for number of concurrent open requests .*/
/**
* Sends a long message which exceeds the size of
* the buf buffers.
* @see I_CommStrategyUp::send (arguments are similar)
*/
GTI_RETURN send_long_message (
uint64_t toPlace,
void* buf,
uint64_t num_bytes,
void* free_data,
GTI_RETURN (*buf_free_function) (void* free_data, uint64_t num_bytes, void* buf)
);
/**
* Sends a communication buffer.
*/
void sendCommBuf (
void *buf,
bool sendSynchronizing,
uint64_t len,
uint64_t channel,
void* free_data ,
GTI_RETURN (*buf_free_function) (void* free_data, uint64_t num_bytes, void* buf));
/**
* Completes at least one outstanding send request either in myRequests
* or a given request.
* Will only return after that.
* Default implementation will call a wait_msg, other clases may
* overwrite this behavior to not only wait for the completion but
* to also poll for incoming messages.
*/
virtual void completeOutstandingSendRequest (bool useMyRequests, CStratIsendRequest request);
public:
CStratPRecvSender (I_CommProtocol **managedProtocol);
virtual ~CStratPRecvSender (void);
};
} //namespace gti
#endif /*CSTRAT_PRECV_H*/
|
6ad3a7c41fe74247ebb939e1c4707764290c62a9 | 92e67b30497ffd29d3400e88aa553bbd12518fe9 | /assignment2/part6/Re=110/83.4/p | 16a058f93a78606723105837451907bc555de8f4 | [] | no_license | henryrossiter/OpenFOAM | 8b89de8feb4d4c7f9ad4894b2ef550508792ce5c | c54b80dbf0548b34760b4fdc0dc4fb2facfdf657 | refs/heads/master | 2022-11-18T10:05:15.963117 | 2020-06-28T15:24:54 | 2020-06-28T15:24:54 | 241,991,470 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,734 | p | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "83.4";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
2000
(
0.00947035
0.00956581
0.00974756
0.00997316
0.0102112
0.0104423
0.0106535
0.010839
0.010998
0.0111202
0.00950013
0.00963987
0.00984025
0.0100852
0.0103426
0.0105919
0.0108188
0.0110159
0.0111815
0.011296
0.00950121
0.00969645
0.0099159
0.0101787
0.0104522
0.0107157
0.0109542
0.0111596
0.0113307
0.0114371
0.00947875
0.00973769
0.00997667
0.0102547
0.0105396
0.0108113
0.0110552
0.0112632
0.0114358
0.0115321
0.00943958
0.00976885
0.0100262
0.0103154
0.0106056
0.0108778
0.0111187
0.0113213
0.0114889
0.0115728
0.00939316
0.00979581
0.0100689
0.0103641
0.010652
0.0109157
0.0111437
0.0113308
0.0114836
0.0115476
0.00935062
0.00982511
0.01011
0.0104048
0.0106821
0.0109273
0.0111319
0.0112925
0.0114195
0.0114561
0.00932427
0.00986396
0.0101553
0.0104424
0.0107003
0.0109174
0.0110883
0.0112124
0.0113034
0.0113048
0.0093271
0.00991995
0.010211
0.0104825
0.0107126
0.0108928
0.0110218
0.0111026
0.0111533
0.0111162
0.00937202
0.0100009
0.010284
0.0105318
0.010726
0.0108619
0.0109429
0.0109773
0.0109911
0.0109291
0.0113062
0.0122121
0.0132836
0.0149677
0.01676
0.0188571
0.0203395
0.0223933
0.0225215
0.0238968
0.0113855
0.0121914
0.0130007
0.0144672
0.0160774
0.0180212
0.0193907
0.0213004
0.0215274
0.0227184
0.011413
0.0121627
0.012725
0.0139812
0.0154194
0.017221
0.0184866
0.020289
0.0205553
0.02163
0.0113807
0.0121109
0.0124557
0.0135116
0.0147873
0.0164557
0.0176305
0.0193414
0.0196161
0.0206329
0.0112849
0.0120182
0.0121901
0.013059
0.0141822
0.0157265
0.0168226
0.0184521
0.0187335
0.0197247
0.0111275
0.0118692
0.0119225
0.0126225
0.0136047
0.0150317
0.0160554
0.0176066
0.0178972
0.0188863
0.0109186
0.011655
0.0116446
0.0121996
0.0130565
0.0143765
0.0153382
0.0168216
0.0171297
0.0181235
0.0106685
0.0113652
0.0113443
0.0117876
0.0125314
0.0137437
0.0146436
0.0160521
0.016381
0.0174114
0.0103713
0.010985
0.0109942
0.0113831
0.0120571
0.0131819
0.0140367
0.015376
0.0157253
0.0167757
0.0101352
0.0106587
0.0106628
0.0109591
0.0115343
0.0125543
0.0133623
0.014615
0.0150218
0.0161559
0.0106711
0.0111879
0.0114116
0.0115415
0.0117433
0.0122733
0.0128277
0.0137047
0.0140515
0.0148902
0.00848474
0.00896239
0.00935931
0.00974305
0.0101564
0.0107052
0.0112287
0.0119104
0.0121794
0.0127031
0.00678611
0.00723279
0.00760199
0.00794783
0.00833794
0.00887476
0.00938591
0.0100004
0.010224
0.010596
0.00509261
0.00555849
0.00599403
0.00636694
0.00673175
0.00720475
0.00765624
0.0081984
0.00838625
0.00868136
0.00351012
0.00396346
0.00446088
0.00490641
0.00530373
0.00573837
0.00612726
0.00658586
0.00674069
0.00698936
0.00214364
0.00256198
0.00307743
0.00356835
0.00400856
0.00444059
0.00479734
0.00518689
0.00531185
0.00550627
0.00105458
0.00142634
0.00192324
0.00240666
0.00284334
0.00325561
0.00358292
0.003919
0.00402208
0.00417456
0.000271068
0.000578561
0.00102643
0.00146489
0.00185405
0.00221314
0.00249305
0.00277347
0.00284581
0.0029468
-0.000142158
6.22212e-05
0.000416051
0.000746394
0.00102109
0.00127249
0.0014608
0.00166726
0.00170293
0.00176772
-0.000664001
-0.000293832
7.6259e-06
0.000214051
0.000346144
0.000460606
0.000526149
0.00062621
0.000606955
0.000612697
0.010044
0.008164
0.00652649
0.00488109
0.00336219
0.00204553
0.000999068
0.000219023
-0.000124806
-0.000689528
0.00966608
0.00786418
0.00625332
0.00465498
0.00319663
0.00193714
0.000942009
0.000200982
-0.000117947
-0.000608419
0.00929222
0.00759564
0.00601249
0.00446225
0.0030595
0.00185325
0.000905981
0.000206137
-9.72666e-05
-0.000499736
0.00900062
0.0074081
0.00584886
0.00434067
0.00298526
0.00182192
0.000910652
0.000241045
-5.81231e-05
-0.000394352
0.00879651
0.0072837
0.00574368
0.00427436
0.00295829
0.00183076
0.000947899
0.000300168
-4.0359e-06
-0.000295929
0.00868419
0.00722036
0.00569539
0.0042559
0.00297264
0.00187383
0.00101209
0.000378582
6.13229e-05
-0.00020534
0.00867048
0.00721339
0.00570159
0.00428303
0.00302526
0.00194767
0.00109948
0.000472301
0.000134824
-0.000123848
0.0087425
0.00726
0.0057579
0.00435136
0.00311174
0.00204798
0.00120601
0.000577493
0.000213654
-5.18548e-05
0.00888721
0.00735522
0.00585875
0.00445574
0.00322708
0.00217014
0.00132746
0.000690615
0.000295414
1.11779e-05
0.00908986
0.00749249
0.00599739
0.00459051
0.00336602
0.00230954
0.00145986
0.00080862
0.000378203
6.628e-05
0.00933248
0.00766194
0.00616498
0.00474885
0.00352271
0.00246149
0.00159947
0.000928938
0.000460573
0.000114557
0.00960202
0.00785576
0.0063548
0.00492585
0.00369276
0.00262252
0.00174354
0.00104979
0.000541621
0.000157043
0.00989042
0.00807021
0.00656269
0.00511887
0.00387346
0.00279046
0.00189033
0.00117014
0.000620933
0.000194756
0.0101899
0.00830186
0.00678433
0.00532525
0.00406236
0.00296345
0.00203857
0.00128938
0.000698372
0.00022856
0.0104942
0.00854872
0.00701613
0.00554285
0.0042576
0.00314011
0.0021874
0.00140718
0.000773993
0.00025916
0.0107978
0.00880967
0.00725497
0.00576967
0.00445771
0.00331928
0.00233627
0.00152342
0.000847956
0.000287138
0.0110925
0.00908174
0.00749709
0.00600302
0.00466121
0.00349987
0.00248475
0.00163806
0.00092049
0.000313012
0.0113732
0.00936881
0.0077455
0.00624496
0.00487009
0.00368319
0.00263389
0.00175188
0.000992185
0.000337324
0.0116653
0.00970664
0.00802361
0.0065112
0.00509566
0.00387643
0.00278813
0.00186741
0.00106428
0.000360269
0.0118893
0.0100387
0.00829456
0.00676944
0.00531799
0.00406426
0.00293843
0.00197906
0.00113425
0.000380198
0.0114497
0.0101785
0.00858725
0.00712048
0.00568687
0.0043995
0.0032304
0.00220387
0.00128175
0.000428167
0.0113973
0.010143
0.00861295
0.00723361
0.00584731
0.00459458
0.00342501
0.00237689
0.00140437
0.000478509
0.0116779
0.0103992
0.0088533
0.00749003
0.00609493
0.00483168
0.00363095
0.00254652
0.00152398
0.000533279
0.012212
0.0107977
0.00918584
0.00779163
0.00636202
0.00507065
0.00382967
0.00270922
0.00164442
0.000596797
0.0129965
0.0113642
0.00964069
0.00816397
0.00667111
0.00532746
0.0040358
0.00287713
0.00177425
0.000670813
0.013977
0.0120844
0.0102162
0.00860984
0.00702923
0.0056096
0.00425851
0.00305444
0.00191089
0.000745979
0.0150407
0.0128873
0.0108621
0.00910063
0.00741984
0.00590999
0.00449518
0.00323374
0.00203432
0.000796721
0.0160443
0.0136555
0.0114809
0.00956999
0.00779536
0.00619963
0.00472371
0.00339271
0.00211889
0.00080528
0.0168352
0.0142579
0.0119636
0.009938
0.00809305
0.00643267
0.00490699
0.00350845
0.00215915
0.000782649
0.0172755
0.0145861
0.0122246
0.0101379
0.00825712
0.00656361
0.00501066
0.00356907
0.00216982
0.000758121
0.012524
0.012492
0.0128412
0.0134609
0.0143458
0.0154243
0.0166039
0.0177457
0.0186763
0.0192084
0.0127191
0.0128508
0.0133034
0.0140188
0.0149915
0.0161415
0.0173786
0.0185615
0.0195164
0.0200613
0.0127627
0.0130865
0.013691
0.0145522
0.0156566
0.016921
0.0182466
0.0194782
0.0204422
0.0209816
0.0128607
0.0133318
0.0140617
0.0150527
0.0162777
0.0176572
0.0190863
0.0203944
0.0214
0.0219584
0.0130111
0.0136334
0.0144777
0.0155829
0.0169116
0.0183923
0.019919
0.0213124
0.02238
0.0229763
0.013178
0.0139675
0.0149413
0.0161651
0.0175982
0.0191759
0.0207926
0.0222655
0.0233948
0.0240309
0.0133583
0.0143179
0.0154377
0.0167905
0.0183379
0.0200194
0.0217266
0.0232739
0.0244571
0.0251255
0.0135607
0.014686
0.0159618
0.017449
0.0191198
0.0209136
0.0227169
0.0243391
0.0255713
0.026265
0.0137902
0.0150749
0.0165148
0.0181375
0.0199372
0.0218494
0.0237549
0.0254557
0.0267367
0.0274517
0.0140488
0.015483
0.0170964
0.0188538
0.0207876
0.0228223
0.0248351
0.0266193
0.0279515
0.0286864
0.0143383
0.015905
0.0177039
0.0195937
0.0216682
0.0238294
0.0259551
0.0278277
0.0292146
0.0299695
0.0146566
0.0163344
0.0183315
0.0203502
0.0225737
0.0248665
0.0271122
0.0290797
0.030526
0.0313016
0.014993
0.016767
0.0189686
0.0211168
0.0234976
0.0259296
0.0283041
0.030374
0.0318873
0.0326852
0.0153283
0.0172032
0.0196
0.0218882
0.0244309
0.0270134
0.0295268
0.031708
0.0333026
0.034126
0.0156257
0.017644
0.0202091
0.0226657
0.0253697
0.0281144
0.0307779
0.0330812
0.0347635
0.0356188
0.0158803
0.0180787
0.0207923
0.0234232
0.0262981
0.029219
0.0320473
0.0344868
0.0362658
0.0371617
0.0160836
0.018487
0.0213379
0.0241486
0.0272073
0.0303209
0.0333313
0.0359227
0.0378105
0.038757
0.0162084
0.0188574
0.0218317
0.0248294
0.0280802
0.0314013
0.0346125
0.0373767
0.039392
0.0404038
0.0162314
0.0191875
0.0222769
0.0254763
0.0289345
0.0324811
0.0359089
0.0388605
0.0410163
0.0421086
0.0160701
0.0193969
0.022589
0.0259769
0.0296394
0.0334292
0.0371134
0.0403053
0.0426507
0.0438577
0.0167523
0.0209951
0.0245484
0.028339
0.0323701
0.0365373
0.0405984
0.044159
0.0468158
0.048235
0.0209462
0.0250358
0.028814
0.0332134
0.0378932
0.0427353
0.0474166
0.0514832
0.0544897
0.0560724
0.0255524
0.0298391
0.0340539
0.0391248
0.0444729
0.0500132
0.0552828
0.0597832
0.0630643
0.0647951
0.0304051
0.0351467
0.0400531
0.0458976
0.0519749
0.0582424
0.0640532
0.0689091
0.072364
0.0741146
0.0355494
0.040873
0.0465802
0.0532459
0.0600929
0.0670876
0.0733799
0.0785173
0.0820665
0.0838917
0.0410833
0.0470143
0.0535886
0.0610891
0.0687246
0.0764324
0.0831588
0.0884951
0.0919281
0.093386
0.0465204
0.0531741
0.0605533
0.0687978
0.0771764
0.0855106
0.0926341
0.0981128
0.10128
0.102652
0.0519618
0.0590653
0.0672143
0.0762145
0.0853684
0.0943304
0.10197
0.107745
0.110421
0.109665
0.0550702
0.0630319
0.0718659
0.0814821
0.0912437
0.10066
0.108641
0.11446
0.116026
0.117653
0.0587339
0.0668503
0.0761693
0.0863149
0.0968029
0.106978
0.116347
0.12427
0.127354
0.110944
0.0154327
0.0194649
0.0236048
0.0281006
0.0327285
0.0380363
0.0427769
0.0483008
0.0507225
0.0543354
0.0149983
0.0192077
0.02329
0.0276927
0.0321451
0.0372909
0.0417296
0.0471061
0.04917
0.0527334
0.0148079
0.0192312
0.0232979
0.0276782
0.0320189
0.0369743
0.0411567
0.0462007
0.0480128
0.0513351
0.0145586
0.0190733
0.0231046
0.0274373
0.0317027
0.0364899
0.040486
0.0452298
0.0469817
0.0499567
0.0142787
0.0187971
0.0227813
0.0270253
0.0312244
0.0358388
0.0396955
0.044173
0.0459686
0.0486066
0.0139957
0.0184889
0.0224412
0.0266028
0.0307201
0.035154
0.0389368
0.0431154
0.0450031
0.0473444
0.0137073
0.0181635
0.0221046
0.0262092
0.0302522
0.0345306
0.0382427
0.0421563
0.0441145
0.0462055
0.0134148
0.0178233
0.0217668
0.0258342
0.0298212
0.0339827
0.0376163
0.0413295
0.0433239
0.0451952
0.0131261
0.0174781
0.0214324
0.0254765
0.0294232
0.0335013
0.037062
0.0406261
0.0426276
0.0443384
0.0128508
0.017139
0.0211122
0.0251463
0.0290654
0.0330856
0.0365879
0.0400353
0.0420309
0.0436374
0.0125975
0.0168147
0.0208161
0.0248543
0.0287594
0.0327415
0.0362033
0.0395561
0.0415445
0.0430832
0.0123637
0.0165052
0.0205469
0.0246037
0.0285113
0.0324743
0.0359144
0.0391922
0.0411757
0.0426665
0.0121386
0.0162071
0.0203034
0.0243938
0.0283225
0.032287
0.035725
0.0389472
0.0409283
0.0423843
0.011913
0.0159228
0.0200857
0.0242248
0.028194
0.0321812
0.0356363
0.0388224
0.0408003
0.0422355
0.0116757
0.0156557
0.0198924
0.0240962
0.0281252
0.0321576
0.0356489
0.0388186
0.0407911
0.0422254
0.0114101
0.0154049
0.0197186
0.0240045
0.0281136
0.0322132
0.0357604
0.0389334
0.0408899
0.0423563
0.0110971
0.0151653
0.0195559
0.0239442
0.028156
0.0323459
0.0359725
0.0391704
0.0411008
0.0426423
0.0107192
0.014927
0.0193918
0.0239033
0.0282389
0.0325401
0.0362703
0.0395157
0.0413891
0.0430863
0.0102324
0.0146721
0.0192277
0.0238896
0.0283768
0.0328165
0.0366778
0.0399967
0.0418005
0.0437138
0.00961393
0.014297
0.0189615
0.0237919
0.0284482
0.0330488
0.0370814
0.0405228
0.042212
0.0445044
0.0106874
0.0154365
0.0199919
0.0249458
0.0298775
0.0347047
0.0389697
0.0426054
0.0442038
0.0468704
0.013517
0.0184712
0.0232668
0.0286651
0.034089
0.039443
0.0442399
0.0482504
0.0502949
0.0526224
0.0173909
0.0226773
0.0279111
0.0339309
0.0400008
0.0460832
0.0515748
0.0560998
0.0588257
0.0608303
0.0218648
0.0276177
0.0334791
0.0403321
0.0473167
0.0544502
0.0609642
0.0664221
0.0702217
0.0726533
0.0265556
0.0328823
0.0395578
0.0474374
0.0555915
0.0641195
0.0721136
0.079214
0.0848488
0.0890904
0.0314298
0.038345
0.0460276
0.0550735
0.0646428
0.0749253
0.0850287
0.0949922
0.104521
0.113307
0.0354724
0.0432468
0.051996
0.0622389
0.0734554
0.0858806
0.0989601
0.113612
0.130254
0.149196
0.0397699
0.0481748
0.0579644
0.0694687
0.0825104
0.0975261
0.114723
0.136874
0.167131
0.207384
0.0410707
0.0497763
0.0600804
0.0723964
0.0872038
0.105532
0.12932
0.163355
0.216287
0.295479
0.0437256
0.0538059
0.0656104
0.0800965
0.098494
0.122587
0.156016
0.206862
0.292504
0.422868
0.0103741
0.0129689
0.0161468
0.0198835
0.0236369
0.0280611
0.0312776
0.0354269
0.0365309
0.0383608
0.0101878
0.0127868
0.0158528
0.0194102
0.0228875
0.0270736
0.0299633
0.0339624
0.0348866
0.0368775
0.0101916
0.012735
0.0157143
0.0191515
0.0224732
0.0264047
0.0290487
0.0327623
0.0334429
0.0358712
0.0102729
0.0126509
0.015458
0.0187274
0.0218753
0.0255706
0.0280201
0.0314741
0.0319377
0.0345231
0.0103935
0.0125527
0.0151302
0.0182082
0.0211322
0.0245814
0.0268344
0.0300812
0.0303549
0.0328132
0.0105413
0.0124636
0.0148029
0.0176653
0.0203745
0.0235648
0.0256121
0.0286805
0.0287827
0.031004
0.0107054
0.0123867
0.0144875
0.0170995
0.0196542
0.0225774
0.0244376
0.0273379
0.0272966
0.0293069
0.0108748
0.0123224
0.014178
0.0165458
0.0189258
0.0216129
0.0233376
0.0260568
0.0259257
0.0277891
0.0110389
0.0122723
0.013873
0.0160074
0.0181914
0.0206538
0.0223129
0.024806
0.0246763
0.0264202
0.0111864
0.0122365
0.0135744
0.0154812
0.017466
0.0197327
0.0213185
0.0235719
0.0235499
0.0251375
0.00947271
0.0101154
0.0103821
0.0105981
0.0107488
0.0108336
0.0108605
0.010842
0.0108081
0.0107281
0.00964823
0.0102745
0.0105143
0.0106899
0.0107903
0.0108187
0.0107864
0.0107079
0.0106125
0.0104726
0.00990509
0.0104839
0.0106874
0.0108154
0.0108607
0.0108294
0.0107359
0.0105966
0.0104421
0.0102459
0.0102498
0.01075
0.0109085
0.0109829
0.0109694
0.0108772
0.0107228
0.0105245
0.0103131
0.0100642
0.0106865
0.0110776
0.0111832
0.0111988
0.0111242
0.0109711
0.0107576
0.0105031
0.0102374
0.00993882
0.011215
0.0114689
0.0115144
0.0114669
0.0113297
0.0111166
0.0108466
0.0105394
0.0102227
0.00988179
0.0118296
0.0119223
0.0119015
0.0117873
0.0115867
0.0113151
0.0109916
0.0106362
0.0102726
0.00988132
0.0125197
0.012432
0.0123399
0.012156
0.0118918
0.0115635
0.01119
0.0107903
0.0103838
0.00995041
0.0132691
0.0129874
0.0128198
0.0125646
0.0122372
0.0118546
0.0114346
0.0109948
0.0105499
0.010084
0.0140478
0.0135712
0.0133269
0.0130003
0.0126112
0.0121773
0.0117148
0.0112392
0.0107613
0.0102706
0.014815
0.0141576
0.0138417
0.0134467
0.0129996
0.0125184
0.0120178
0.011511
0.0110059
0.0104975
0.0155799
0.0147396
0.0143505
0.0138887
0.0133868
0.0128628
0.0123292
0.0117965
0.0112705
0.0107514
0.016305
0.0152897
0.0148312
0.0143076
0.0137567
0.013196
0.0126353
0.0120825
0.0115424
0.0110198
0.0169562
0.0157826
0.0152624
0.0146851
0.0140933
0.0135035
0.0129229
0.0123567
0.0118096
0.0112911
0.0175052
0.0161954
0.0156245
0.0150043
0.0143818
0.0137723
0.0131802
0.012608
0.0120611
0.011555
0.0179267
0.0165072
0.0158996
0.0152505
0.0146097
0.0139915
0.0133972
0.012827
0.012288
0.0118027
0.0181995
0.0167006
0.0160734
0.0154117
0.0147673
0.0141524
0.0135666
0.013007
0.0124828
0.0120256
0.0183076
0.0167621
0.0161348
0.0154794
0.0148475
0.0142499
0.013684
0.0131442
0.0126394
0.0122127
0.0182409
0.0166834
0.0160774
0.015449
0.0148473
0.0142816
0.0137477
0.0132349
0.0127465
0.0123452
0.017996
0.0164613
0.0158988
0.0153194
0.0147673
0.01425
0.0137613
0.0132829
0.0128089
0.0124297
0.0175743
0.0160972
0.0156003
0.0150923
0.0146109
0.0141636
0.0137475
0.013354
0.0129978
0.012782
0.0169755
0.0155944
0.0151853
0.0147698
0.014377
0.0140136
0.013679
0.0133705
0.0131043
0.0129452
0.0162177
0.014966
0.0146629
0.0143572
0.0140672
0.0137973
0.0135484
0.0133212
0.0131276
0.0129983
0.0153226
0.0142284
0.0140453
0.0138634
0.013688
0.0135211
0.0133652
0.013224
0.0131068
0.0130269
0.0143149
0.0134011
0.0133477
0.0133003
0.0132496
0.0131947
0.0131397
0.0130911
0.0130565
0.0130422
0.0132228
0.0125062
0.0125881
0.0126824
0.0127641
0.0128288
0.0128817
0.0129315
0.0129853
0.0130461
0.0120768
0.0115681
0.011786
0.0120254
0.0122447
0.0124346
0.0126012
0.0127548
0.0129026
0.0130466
0.0109075
0.0106108
0.0109615
0.0113456
0.0117046
0.0120235
0.012308
0.0125697
0.0128165
0.0130514
0.00974485
0.0096572
0.0101339
0.0106586
0.0111566
0.0116058
0.0120108
0.0123835
0.0127332
0.0130653
0.00862785
0.00873308
0.00932306
0.00997972
0.0106124
0.0111906
0.0117166
0.012202
0.0126568
0.0130908
0.00761188
0.00787501
0.0085538
0.00932665
0.0100844
0.0107867
0.0114318
0.0120294
0.0125896
0.0131282
0.00664408
0.00706695
0.00782478
0.00870368
0.00957763
0.0103982
0.0111589
0.0118668
0.0125308
0.0131742
0.00575609
0.00632762
0.0071515
0.00812003
0.00909879
0.0100292
0.0108997
0.0117142
0.0124781
0.0132211
0.00496887
0.00567094
0.00654456
0.00758473
0.00865275
0.00968193
0.0106544
0.0115698
0.012428
0.0132588
0.00429038
0.00510343
0.00600959
0.0071024
0.00824302
0.00935785
0.0104223
0.0114301
0.0123745
0.0132898
0.00372366
0.00462765
0.00554993
0.00667612
0.00787147
0.00905735
0.0102025
0.0112938
0.0123149
0.0133029
0.00326871
0.00424355
0.00516691
0.00630755
0.00753904
0.00878027
0.00999392
0.0111597
0.0122478
0.0132909
0.00292252
0.00394869
0.00485982
0.00599692
0.00724581
0.00852605
0.00979559
0.0110275
0.0121752
0.0132544
0.00267959
0.00373872
0.00462625
0.00574318
0.00699103
0.00829364
0.00960649
0.0108994
0.0121096
0.0132123
0.00253299
0.00360802
0.0044624
0.0055442
0.00677303
0.00808066
0.00942208
0.0107682
0.0120586
0.0132059
0.00247292
0.0035489
0.0043625
0.00539606
0.00658877
0.00788445
0.0092424
0.0106479
0.0121254
0.0135967
0.00247929
0.00354891
0.00431888
0.00529458
0.00643432
0.00769442
0.00903569
0.0104335
0.0119091
0.01337
0.00255224
0.00360522
0.00432817
0.00523766
0.00630893
0.00751014
0.00880436
0.0101575
0.0115756
0.0129777
0.0026849
0.00371123
0.00438522
0.00522332
0.00621548
0.00734216
0.00857273
0.00987305
0.0112415
0.0125957
0.00286751
0.00385909
0.00448421
0.0052493
0.00615674
0.00719959
0.00835601
0.00959594
0.0109134
0.0122248
0.0030908
0.00404145
0.00461932
0.0053126
0.00613355
0.00708715
0.00816128
0.00933133
0.0105891
0.0118562
0.00334635
0.00425153
0.00478476
0.0054095
0.00614514
0.00700724
0.0079936
0.00908604
0.0102756
0.0114937
0.00362637
0.00448293
0.00497472
0.00553564
0.00618954
0.00696077
0.00785666
0.00886611
0.00998063
0.0111439
0.00392406
0.00472975
0.00518343
0.00568608
0.00626359
0.00694695
0.00775213
0.00867532
0.00970932
0.0108123
0.00423536
0.00498888
0.00540726
0.0058571
0.00636422
0.00696414
0.0076802
0.00851565
0.00946509
0.010503
0.00455895
0.00526117
0.00564692
0.00604894
0.00649156
0.00701294
0.00764234
0.00838961
0.00925114
0.0102189
0.00487909
0.00553143
0.00588803
0.00624841
0.00663422
0.0070843
0.0076322
0.00829348
0.00906571
0.00995787
0.00519622
0.00580054
0.00613053
0.00645431
0.0067901
0.00717581
0.00764761
0.00822572
0.00890784
0.00971771
0.00550967
0.00606765
0.00637297
0.00666433
0.00695616
0.00728416
0.00768554
0.00818392
0.00877582
0.00949634
0.00581814
0.00633111
0.00661321
0.00687565
0.00712896
0.00740572
0.00774267
0.00816543
0.00866774
0.00929147
0.00612102
0.00658992
0.00684983
0.00708621
0.00730583
0.00753746
0.00781617
0.00816807
0.00858216
0.00910091
0.00641834
0.00684363
0.00708217
0.00729488
0.00748501
0.00767727
0.0079041
0.00819095
0.00851976
0.0089246
0.00671052
0.00709232
0.00731028
0.00750146
0.0076659
0.00782418
0.00800565
0.00823457
0.00848387
0.00876522
0.00699796
0.00733627
0.00753473
0.00770687
0.00784973
0.0079798
0.00812268
0.00830077
0.00847691
0.00861927
0.0072807
0.00757571
0.00775643
0.00791295
0.0080401
0.00815147
0.00826956
0.00841626
0.00855663
0.00859153
0.00755863
0.00781071
0.00797595
0.00812099
0.00823978
0.0083463
0.00846716
0.00864685
0.00896144
0.00945351
0.00783287
0.00804125
0.00819308
0.00833057
0.0084461
0.00855205
0.00867329
0.0088504
0.00915447
0.00959383
0.0080993
0.0082657
0.00840687
0.00854059
0.00865672
0.00876411
0.00888291
0.00904481
0.00929981
0.00964372
0.00835417
0.00848204
0.00861579
0.00874959
0.00887047
0.00898317
0.00910301
0.00925528
0.00947579
0.00975601
0.00859405
0.00868754
0.00881778
0.0089555
0.00908519
0.00920724
0.00933204
0.00947881
0.0096731
0.00990773
0.00881372
0.0088803
0.00901039
0.00915572
0.00929781
0.00943274
0.00956584
0.00971051
0.00988449
0.0100849
0.00900899
0.00905761
0.00919086
0.00934731
0.00950495
0.0096558
0.00980043
0.00994695
0.0101072
0.0102822
0.009176
0.00921682
0.00935686
0.00952726
0.0097031
0.00987237
0.0100314
0.0101838
0.0103367
0.0104928
0.00931139
0.009356
0.00950614
0.00969292
0.00988876
0.0100782
0.0102539
0.0104154
0.0105665
0.0107085
0.00941121
0.00947319
0.00963691
0.00984212
0.0100589
0.0102693
0.0104628
0.0106358
0.0107895
0.0109207
)
;
boundaryField
{
inlet
{
type zeroGradient;
}
outlet
{
type fixedValue;
value uniform 0;
}
cylinder
{
type zeroGradient;
}
top
{
type symmetryPlane;
}
bottom
{
type symmetryPlane;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //
| |
ef48f2eb2f4b11e4a6fb643e861540d918240749 | 919da76f62e24d20739927334e1d2230954c8b1a | /src/main.cpp | c9f4eddabdadb15241b23e7f463b3706155c34a8 | [] | no_license | boigman/SumpPumpMonitor | 11fae812e8d9a0239cae8538271dc019e51d96c0 | dcb3dee285e31f4250a342dd9df83f385baf3eaa | refs/heads/main | 2023-07-28T04:33:48.092563 | 2021-09-14T10:49:03 | 2021-09-14T10:49:03 | 379,037,802 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,591 | cpp | main.cpp | #include <Arduino.h>
#include <WiFi.h>
#include <time.h>
#include <WebServer.h>
#include <ESP_Mail_Client.h>
#include "config.h"
#define DEBUG
const char* ssid = WIFI_SSID;
const char* password = WIFI_PASSWORD;
WebServer server(80);
const char* ntpServer = "pool.ntp.org";
const long gmtOffset_sec = -6 * 60 * 60;
const int daylightOffset_sec = 3600;
const int EVENT_LIMIT = 10;
int event_count;
int array_count;
int curr_level;
int prev_level;
int pump_prev_level;
char timeVar[128];
char timeStringBuff[72]; //72 chars should be enough
String levels[20] = {"LOW","ELEVATED","HIGH","CRITICAL","EMERGENCY"};
struct event_rec
{
int event_type; //0=Water_level, 1=Pump_status
char timeStringBuff[72];
char description[100];
int pre_event_level;
int post_event_level;
};
event_rec events[EVENT_LIMIT];
void getLocalTime(boolean doPrint)
{
struct tm timeinfo;
if(!getLocalTime(&timeinfo)){
Serial.println("Failed to obtain time");
return;
}
// Serial.println(&timeinfo, "%A, %B %d %Y %H:%M:%S");
strftime(timeStringBuff, sizeof(timeStringBuff), "%x %H:%M:%S", &timeinfo);
//print like "const char*"
if(doPrint) {
Serial.print(timeStringBuff);
}
}
String SendHTML(int pCurrPumpState,int pCurrLevel){
String ptr = "<!DOCTYPE html> <html>\n";
ptr +="<head><meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, user-scalable=no\">\n";
ptr +="<title>Sump Pump Monitor</title>\n";
ptr +="<style>html { font-family: Helvetica; display: inline-block; margin: 0px auto; text-align: center;}\n";
ptr +="body{margin-top: 50px;} h1 {color: #444444;margin: 50px auto 30px;} h3 {color: #444444;margin-bottom: 50px;}\n";
ptr +=".button {display: block;width: 80px;background-color: #3498db;border: none;color: white;padding: 13px 30px;text-decoration: none;font-size: 25px;margin: 0px auto 35px;cursor: pointer;border-radius: 4px;}\n";
ptr +=".button-on {background-color: #3498db;}\n";
ptr +=".button-on:active {background-color: #2980b9;}\n";
ptr +=".button-off {background-color: #34495e;}\n";
ptr +=".button-off:active {background-color: #2c3e50;}\n";
ptr +=".center {\n";
ptr +="margin-left: auto;\n";
ptr +="margin-right: auto;\n";
ptr +="}\n";
ptr +="p {font-size: 14px;color: #888;margin-bottom: 10px;}\n";
ptr +="</style>\n";
ptr +="</head>\n";
ptr +="<body>\n";
ptr +="<h1>Sump Pump Monitor</h1>\n";
ptr +="<h3>Using Station(STA) Mode</h3>\n";
if(pCurrPumpState)
{ptr +="<p>Sump Pump is: ON</p>\n";}
else
{ptr +="<p>Sump Pump is: OFF</p>\n";}
ptr +="<p>Water Level is: " + levels[pCurrLevel] + "</p>\n";
ptr +="<p><table class='center'><tr><th>Date/Time</th><th>Event</th></tr>";
for(int ii=event_count; ii > max(event_count - EVENT_LIMIT, -1);ii--) {
array_count = ii % EVENT_LIMIT;
ptr +="<tr><td><span class=\"sensor\">";
ptr +=events[array_count].timeStringBuff;
ptr +="</span></td><td><span class=\"sensor\">";
ptr +=events[array_count].description;
ptr +="</td></tr>";
}
/*
ptr +="<tr><td>Temperature</td><td><span class=\"sensor\">";
ptr +="24";
ptr +=" °C</span></td></tr>";
ptr +="<tr><td>Humidity</td><td><span class=\"sensor\">";
ptr +="75";
ptr +=" %</span></td></tr>";
ptr +="<tr><td>Atmos Pressure</td><td><span class=\"sensor\">";
ptr +="1.05";
ptr +=" mbar</span></td></tr>";
ptr +=" </span></td></tr>";
ptr +="<tr><td>Brightness</td><td><span class=\"sensor\">";
ptr +="75";
ptr +=" lux</span></td></tr>";
ptr +="<tr><td>Sensor State?</td><td><span class=\"sensor\">";
ptr +="OFF";
ptr +=" </span></td></tr>";
ptr +="</table></p>\n";
*/
return ptr;
}
void showTime(tm localTime) {
Serial.print(localTime.tm_mday);
Serial.print('/');
Serial.print(localTime.tm_mon + 1);
Serial.print('/');
Serial.print(localTime.tm_year - 100);
Serial.print('-');
Serial.print(localTime.tm_hour);
Serial.print(':');
Serial.print(localTime.tm_min);
Serial.print(':');
Serial.print(localTime.tm_sec);
Serial.print(" Day of Week ");
if (localTime.tm_wday == 0) Serial.println(7);
else Serial.println(localTime.tm_wday);
}
int red_led[4];
int green_led[4];
int switches[4];
int switch_val;
int last_switch_val[4];
int HB_led = 19;
const int curMonPin = 33;
int curMonVal;
unsigned long prevMillis = 0;
unsigned long currMillis;
unsigned long pumpStartMillis;
unsigned long printStartMillis;
unsigned long nextPrintMillis;
/* Declare the session config data */
ESP_Mail_Session session;
unsigned long nextPumpCheck;
unsigned interval = 300;
int prevPumpState = 0;
int currPumpState;
int pumpOnLevel = 250; //min AnalogRead level is 250 for Pump On
int pumpOffLevel = 75; //max AnalogRead level is 75 for Pump Off
unsigned long getNextPumpCheck(unsigned long pStart, unsigned long pNextCheck) {
unsigned long interval;
unsigned long hourInterval = 60 * 60 * 1000;
unsigned long tenMinInterval = 10 * 60 * 1000;
unsigned long twoMinInterval = 2 * 60 * 1000;
interval = millis() - pStart;
if (interval > hourInterval) return pNextCheck + hourInterval;
if (interval > tenMinInterval) return pNextCheck + 50 * 60 * 1000;
if (interval > twoMinInterval) return pNextCheck + 8 * 60 * 1000;
return pStart + 2 * 60 * 1000;
}
String convertMillis(unsigned long pMillis) {
char timeString[20];
unsigned long currentMillis = pMillis;
int seconds = currentMillis / 1000;
int minutes = seconds / 60;
int hours = minutes / 60;
// unsigned long days = hours / 24;
currentMillis %= 1000;
seconds %= 60;
minutes %= 60;
hours %= 24;
sprintf_P(timeString, PSTR("%d:%02d:%02d"), hours, minutes, seconds);
return timeString;
}
int getWaterLevel(boolean doPrint) {
for(int i = 3;i>-1;i--) {
switch_val = digitalRead(switches[i]);
if(!switch_val) {
if(doPrint) {
Serial.print("Water level is: ");
Serial.print(levels[i+1]);
}
return i+1;
}
}
if(doPrint) {
Serial.print("Water level is: ");
Serial.print(levels[0]);
}
return 0;
}
void printHistory() {
for(int ii=event_count; ii > max(event_count - EVENT_LIMIT, -1);ii--) {
array_count = ii % EVENT_LIMIT;
Serial.println((String) events[array_count].timeStringBuff + ": " + events[array_count].description);
}
}
void sendEmail(String pHeader, String pMessage);
void addEvent(int pEventType) {
event_count++;
array_count = event_count % EVENT_LIMIT;
// Serial.print("event_count = ");
// Serial.println(event_count);
// Serial.print("array_count = ");
// Serial.println(array_count);
events[array_count].event_type = pEventType;
getLocalTime(false);
for(int ii=0;ii<sizeof(timeStringBuff);ii++) {
events[array_count].timeStringBuff[ii] = timeStringBuff[ii];
}
events[array_count].post_event_level = curr_level;
if(pEventType) { // Pump event
events[array_count].pre_event_level = pump_prev_level;
String description = "Sump Pump ran for " + convertMillis(currMillis - pumpStartMillis) +
" (Water Level " + levels[events[array_count].pre_event_level] +
" to " + levels[events[array_count].post_event_level] + ")";
description.toCharArray(events[array_count].description, sizeof(events[array_count].description));
Serial.println((String) events[array_count].timeStringBuff + ": " + events[array_count].description);
sendEmail("Pump Event", description);
} else { // Water level event
events[array_count].pre_event_level = prev_level;
String description = "Water level is: " + levels[events[array_count].post_event_level] + " (from " + levels[events[array_count].pre_event_level] + ")";
description.toCharArray(events[array_count].description, sizeof(events[array_count].description));
Serial.println((String) events[array_count].timeStringBuff + ": " + events[array_count].description);
sendEmail("Water Level Event", description);
}
server.send(200, "text/html", SendHTML(currPumpState,curr_level));
}
void handle_OnConnect() {
// Serial.println("GPIO4 Status: OFF | GPIO5 Status: OFF");
server.send(200, "text/html", SendHTML(currPumpState,curr_level));
}
/* The SMTP Session object used for Email sending */
SMTPSession smtp;
/* Callback function to get the Email sending status */
void smtpCallback(SMTP_Status status);
void sendEmail(String pHeader, String pMessage){
/* Declare the message class */
SMTP_Message message;
/* Set the message headers */
message.sender.name = "SumpPump Monitor";
message.sender.email = AUTHOR_EMAIL;
message.subject = pHeader.c_str();
message.addRecipient("Dave", RECIPIENT_EMAIL);
/*Send HTML message*/
String htmlMsg = "<div style=\"color:#2f4468;\"><h1>Sump Pump Monitor Message</h1><p>- " + pMessage + "</p></div>";
message.html.content = htmlMsg.c_str();
message.html.content = htmlMsg.c_str();
message.text.charSet = "us-ascii";
message.html.transfer_encoding = Content_Transfer_Encoding::enc_7bit;
/*
//Send raw text message
String textMsg = "Hello World! - Sent from ESP board";
message.text.content = textMsg.c_str();
message.text.charSet = "us-ascii";
message.text.transfer_encoding = Content_Transfer_Encoding::enc_7bit;
message.priority = esp_mail_smtp_priority::esp_mail_smtp_priority_low;
message.response.notify = esp_mail_smtp_notify_success | esp_mail_smtp_notify_failure | esp_mail_smtp_notify_delay;*/
/* Set the custom message header */
//message.addHeader("Message-ID: <abcde.fghij@gmail.com>");
/* Connect to server with the session config */
if (!smtp.connect(&session))
return;
/* Start sending Email and close the session */
if (!MailClient.sendMail(&smtp, &message))
Serial.println("Error sending Email, " + smtp.errorReason());
}
void initWiFi() {
WiFi.mode(WIFI_STA);
WiFi.begin(ssid, password);
Serial.print("Connecting to WiFi ..");
unsigned long connMillis = millis();
while (WiFi.status() != WL_CONNECTED) {
if(millis() - connMillis > 120000) {
ESP.restart();
}
Serial.print('.');
delay(1000);
}
Serial.println(WiFi.localIP());
}
void WiFiStationConnected(WiFiEvent_t event, WiFiEventInfo_t info){
Serial.println("Connected to AP successfully!");
}
void WiFiGotIP(WiFiEvent_t event, WiFiEventInfo_t info){
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
void WiFiStationDisconnected(WiFiEvent_t event, WiFiEventInfo_t info){
Serial.println("Disconnected from WiFi access point");
Serial.print("WiFi lost connection. Reason: ");
Serial.println(info.disconnected.reason);
Serial.println("Trying to Reconnect");
// WiFi.begin(ssid, password);
initWiFi();
}
void setup() {
pinMode (15, OUTPUT);
pinMode (2, OUTPUT);
pinMode (0, OUTPUT);
pinMode (4, OUTPUT);
pinMode (16, OUTPUT);
pinMode (17, OUTPUT);
pinMode (5, OUTPUT);
pinMode (18, OUTPUT);
pinMode (HB_led, OUTPUT);
pinMode(25, INPUT_PULLDOWN);
pinMode(34, INPUT_PULLDOWN);
pinMode(39, INPUT_PULLDOWN);
pinMode(36, INPUT_PULLDOWN);
green_led[0] = 15;
red_led[0] = 2;
green_led[1] = 0;
red_led[1] = 4;
green_led[2] = 16;
red_led[2] = 17;
green_led[3] = 5;
red_led[3] = 18;
switches[0] = 25;
switches[1] = 34;
switches[2] = 39;
switches[3] = 36;
//digitalWrite(red_led[0], HIGH);
//delay(2500);
//digitalWrite(red_led[0], LOW);
Serial.begin(115200);
//connect to WiFi
initWiFi();
// Serial.printf("Connecting to %s ", ssid);
// WiFi.begin(ssid, password);
// while (WiFi.status() != WL_CONNECTED) {
// delay(500);
// Serial.print(".");
// }
Serial.println(" CONNECTED");
Serial.print("Got IP: "); Serial.println(WiFi.localIP());
WiFi.onEvent(WiFiStationConnected, SYSTEM_EVENT_STA_CONNECTED);
WiFi.onEvent(WiFiGotIP, SYSTEM_EVENT_STA_GOT_IP);
WiFi.onEvent(WiFiStationDisconnected, SYSTEM_EVENT_STA_DISCONNECTED);
/** Enable the debug via Serial port
* none debug or 0
* basic debug or 1
*/
smtp.debug(1);
/* Set the callback function to get the sending results */
smtp.callback(smtpCallback);
/* Set the session config */
session.server.host_name = SMTP_HOST;
session.server.port = SMTP_PORT;
session.login.email = AUTHOR_EMAIL;
session.login.password = AUTHOR_PASSWORD;
session.login.user_domain = "";
//init and get the time
configTime(gmtOffset_sec, daylightOffset_sec, ntpServer);
getLocalTime(true);
Serial.print("\n");
//disconnect WiFi as it's no longer needed
// WiFi.disconnect(true);
// WiFi.mode(WIFI_OFF);
Serial.println("Sump Pump Monitor");
for(int i = 0;i<4;i++) {
switch_val = digitalRead(switches[i]);
// Serial.print("Switch[");
// Serial.print(i);
// Serial.print("] is ");
// Serial.println(switch_val?"HIGH":"LOW");
last_switch_val[i] = switch_val;
}
/**/
for(int i = 0;i<4;i++) {
digitalWrite(green_led[i], LOW);
delay(125);
}
for(int i = 0;i<4;i++) {
digitalWrite(red_led[i], HIGH);
delay(125);
digitalWrite(red_led[i], LOW);
delay(125);
}
for(int i = 0;i<4;i++) {
digitalWrite(HB_led, HIGH);
delay(125);
digitalWrite(HB_led, LOW);
delay(125);
}
for(int i = 0;i<4;i++) {
digitalWrite(red_led[i], LOW);
digitalWrite(green_led[i], LOW);
}
digitalWrite(HB_led, LOW);
curMonVal = analogRead(curMonPin);
currPumpState = (curMonVal > pumpOnLevel?1:0);
#ifdef DEBUG
Serial.print("Sump Pump is ");
Serial.print(currPumpState?"ON":"OFF");
Serial.print(" (" + curMonVal);
Serial.println(")");
#endif
prevPumpState = currPumpState;
if(currPumpState) {
digitalWrite(HB_led, HIGH);
pumpStartMillis = millis();
nextPumpCheck = getNextPumpCheck(pumpStartMillis, pumpStartMillis);
} else {
digitalWrite(HB_led, LOW);
}
getLocalTime(false);
curr_level = getWaterLevel(false);
prev_level = curr_level;
events[0].event_type = 0;
for(int ii=0;ii<sizeof(timeStringBuff);ii++) {
events[0].timeStringBuff[ii] = timeStringBuff[ii];
}
String description = "Initial Water level is: " + levels[curr_level] + " | Sump Pump is: " + (currPumpState?"ON":"OFF") ;
description.toCharArray(events[0].description, sizeof(events[0].description));
events[0].pre_event_level = prev_level;
events[0].post_event_level = curr_level;
#ifdef DEBUG
Serial.println((String) events[0].timeStringBuff + ": " + events[0].description);
#endif
printStartMillis = millis();
nextPrintMillis = printStartMillis + 3 * 60 * 1000;
server.on("/", handle_OnConnect);
sendEmail("SumpPump Monitor Startup",(String) events[0].timeStringBuff + ": Sump Pump Monitor startup completed." +
"<br>URL: <a href='http://" + WiFi.localIP().toString().c_str() + "'>" + WiFi.localIP().toString().c_str()+"</a>");
server.begin();
Serial.println("HTTP server started");
}
void loop() {
for(int i = 0;i<4;i++) {
switch_val = digitalRead(switches[i]);
if(!switch_val) {
digitalWrite(green_led[i], LOW);
delay(20);
digitalWrite(red_led[i], HIGH);
} else {
digitalWrite(red_led[i], LOW);
delay(20);
digitalWrite(green_led[i], HIGH);
}
if(switch_val!=last_switch_val[i]) {
getLocalTime(false);
prev_level = curr_level;
curr_level = getWaterLevel(false);
if(!currPumpState) {
addEvent(0);
}
}
last_switch_val[i] = switch_val;
}
curMonVal = analogRead(curMonPin);
if(curMonVal > pumpOnLevel) currPumpState = 1;
if(curMonVal < pumpOffLevel) currPumpState = 0;
// currPumpState = (curMonVal > pumpOnLevel?1:0);
if(currPumpState != prevPumpState) {
prevPumpState = currPumpState;
getLocalTime(true);
#ifdef DEBUG
Serial.print(": Sump Pump is ");
Serial.print(currPumpState?"ON":"OFF");
Serial.print(" (");
Serial.print(curMonVal);
Serial.println(")");
#endif
if(currPumpState) {
pump_prev_level = curr_level;
digitalWrite(HB_led, HIGH);
pumpStartMillis = millis();
nextPumpCheck = getNextPumpCheck(pumpStartMillis, pumpStartMillis);
} else {
digitalWrite(HB_led, LOW);
curr_level = getWaterLevel(false);
currMillis = millis();
addEvent(1);
}
} else {
currMillis = millis();
if(currPumpState && currMillis > nextPumpCheck) {
getLocalTime(true);
String pumpMsg = ": *** WARNING *** Sump Pump has been running for " + convertMillis(currMillis - pumpStartMillis) + " minutes.";
// String description = "Sump Pump ran for " + convertMillis(currMillis - pumpStartMillis) +
// " (Water Level " + levels[events[array_count].pre_event_level] +
// " to " + levels[events[array_count].post_event_level] + ")";
sendEmail("*** Pump Warning ***",pumpMsg);
#ifdef DEBUG
Serial.print(": *** WARNING *** Sump Pump has been running for ");
Serial.print((currMillis - pumpStartMillis) / (60 * 1000));
Serial.println(" minutes.");
#endif
nextPumpCheck = getNextPumpCheck(pumpStartMillis, nextPumpCheck);
}
if(currMillis > nextPrintMillis) {
#ifdef DEBUG
getLocalTime(true);
// Serial.println(": Printing History...");
// printHistory();
#endif
nextPrintMillis = currMillis + 3 * 60 * 1000;
}
}
server.handleClient();
}
/* Callback function to get the Email sending status */
void smtpCallback(SMTP_Status status){
/* Print the current status */
Serial.println(status.info());
/* Print the sending result */
if (status.success()){
Serial.println("----------------");
ESP_MAIL_PRINTF("Message sent success: %d\n", status.completedCount());
ESP_MAIL_PRINTF("Message sent failed: %d\n", status.failedCount());
Serial.println("----------------\n");
struct tm dt;
for (size_t i = 0; i < smtp.sendingResult.size(); i++){
/* Get the result item */
SMTP_Result result = smtp.sendingResult.getItem(i);
time_t ts = (time_t)result.timestamp;
localtime_r(&ts, &dt);
ESP_MAIL_PRINTF("Message No: %d\n", i + 1);
ESP_MAIL_PRINTF("Status: %s\n", result.completed ? "success" : "failed");
ESP_MAIL_PRINTF("Date/Time: %d/%d/%d %d:%d:%d\n", dt.tm_year + 1900, dt.tm_mon + 1, dt.tm_mday, dt.tm_hour, dt.tm_min, dt.tm_sec);
ESP_MAIL_PRINTF("Recipient: %s\n", result.recipients);
ESP_MAIL_PRINTF("Subject: %s\n", result.subject);
}
Serial.println("----------------\n");
}
}
|
d1bbd18cdf887bd7b2896495b1fef2c33ee30b82 | d3209efb2167887f735ac377746e9952ea2958af | /CH01/10189.cpp | 48a8d3972c4b0b2136f7e0694775fc010d45797c | [] | no_license | viskey98/uva-solution | 096790b72977740149d9429bb4cdd62fc845244f | 1b8e32eba2177da674802f1ba7384747efb4f2f1 | refs/heads/master | 2020-04-05T12:08:42.694707 | 2018-01-01T18:11:29 | 2018-01-01T18:11:29 | 95,217,799 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,564 | cpp | 10189.cpp | #include<iostream>
#include<stdlib.h>
using namespace std;
int main()
{
int i,j,m,n,k=0,l;
int mo[100],no[100];
int **outar[100]={};
int **out;
char **in;
while(1)
{
cin>>n>>m;
if(m==0&&n==0)
break;
in=(char**)calloc(n,sizeof(char*));
out=(int**)calloc(n,sizeof(int*));
for(i=0;i<n;i++)
{ in[i]=(char*)calloc(m,sizeof(char));
out[i]=(int*)calloc(m,sizeof(int));
}
outar[k]=out;
mo[k]=m;
no[k]=n;
for(i=0;i<n;i++)
{
for(j=0;j<m;j++)
cin>>in[i][j];
}
for(i=0;i<n;i++)
{
for(j=0;j<m;j++)
{ if(in[i][j]!='*')
{
out[i][j]==0;
if(j-1>=0)
{
if(in[i][j-1]=='*')
out[i][j]++;
}
if(j+1<m)
{
if(in[i][j+1]=='*')
out[i][j]++;
}
if(i-1>=0)
{
if(in[i-1][j]=='*')
out[i][j]++;
if(j-1>=0)
{
if(in[i-1][j-1]=='*')
out[i][j]++;
}
if(j+1<m)
{
if(in[i-1][j+1]=='*')
out[i][j]++;
}
}
if(i+1<n)
{
if(in[i+1][j]=='*')
out[i][j]++;
if(j-1>=0)
{
if(in[i+1][j-1]=='*')
out[i][j]++;
}
if(j+1<m)
{
if(in[i+1][j+1]=='*')
out[i][j]++;
}
}
}
else
out[i][j]=-1;
}
}
k++;
}
for(l=0;l<k;l++)
{
cout<<"Field #"<<l+1<<":"<<"\n";
for(i=0;i<no[l];i++)
{
for(j=0;j<mo[l];j++)
{
if(outar[l][i][j]!=-1)
cout<<outar[l][i][j];
else
cout<<'*';
}
cout<<"\n";
}
if(l!=k-1)
cout<<"\n";
}
return 0;
} |
e7d6003e1b662dea76b3d65f146304ceefeb38fd | 04d1186b835969a8d449a5905208fbe6e6c48efc | /text.h | a3242370d0e347214ff36f985a1a08db77f42e6f | [] | no_license | Argeath/ETIPOProjC- | 9d81532b3c14d205b418dd32ed6815a1a76b5db4 | 70a7bc3e347817710465f64a3e62765e26df4214 | refs/heads/master | 2021-01-13T14:37:17.152724 | 2016-04-01T09:21:24 | 2016-04-01T09:21:24 | 54,912,602 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,147 | h | text.h | #pragma once
#define T(a) Utils::Text(a)
namespace Utils {
class Text {
private:
char* string;
public:
Text();
Text(int i);
Text(char c);
Text(const char* str);
Text(char* str);
Text(const Text &str);
~Text();
void clear();
void clearLastChar();
int length() const;
bool isEmpty() const;
Text& operator=(const Text &obj) {
cpy(obj.string);
return *this;
}
Text& operator=(char *str) {
cpy(str);
return *this;
}
Text& operator+(const Text &str) {
cat(str.string);
return *this;
}
Text& operator+=(const Text &str) {
cat(str.string);
return *this;
}
Text& operator+(char* str) {
cat(str);
return *this;
}
friend bool operator==(const Text &t1, const Text &t2) {
return strcmp(t1.string, t2.string) == 0;
}
friend bool operator!=(const Text &t1, const Text &t2) {
return strcmp(t1.string, t2.string) != 0;
}
operator char*(void) const
{
return string;
}
operator const char*(void) const
{
return string;
}
const char* toChar() const
{
return string;
}
private:
void cpy(char *str);
void cat(char *str);
};
} |
04fe725df53aa3f3a34a3798c46db64c97dd5cb5 | 140c631ce2e768aee40014011ddd373ab93feb1c | /DesignPattern/DesignPattern/PrototypePattern/testPP.cpp | e1864f1d4d227624920e6bc7725f2d65b03e68ef | [] | no_license | AlexWuDDD/basicLeaning | 0ae311b17887a2930d6161b03a392507f3859d72 | 863c8a633c9998f694b46a0f9cee324a90b2fcbe | refs/heads/master | 2022-01-12T03:18:35.389410 | 2019-05-22T01:38:31 | 2019-05-22T01:38:31 | 186,935,906 | 0 | 0 | null | null | null | null | ISO-8859-7 | C++ | false | false | 318 | cpp | testPP.cpp | #include "testPP.h"
int testPP()
{
//ΛοΞςΏΥ
Monkey* pSWK = new SunWuKong("Qi Tian Da Sheng");
//ΏΛΒ‘ΊοΧΣΊοΛο
Monkey* pSWK1 = pSWK->Clone();
Monkey* pSWK2 = pSWK->Clone();
pSWK1->Play();
pSWK2->Play();
SAFE_DELETE(pSWK1);
SAFE_DELETE(pSWK2);
SAFE_DELETE(pSWK);
getchar();
return 0;
} |
328d7f4554bbbb7df543ace86ae2950b0619e9f7 | edc4ba5eafe88a45ff76185ad41e3dc5ce9d1f32 | /Homework3/schedule.h | 9e601c6c32a831cdedd296a2b9486f13218a05a1 | [] | no_license | obriematt/CS202 | 66328b7b43faf13daefc79f71b11b79b4c82313f | c9a03c4ee733d63bc533a0311e6b2079e7cc0685 | refs/heads/master | 2021-01-19T12:08:33.177813 | 2016-09-27T20:00:40 | 2016-09-27T20:00:40 | 69,287,829 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 789 | h | schedule.h | //Matthew O'Brien
//Assignment 3
//March 3 2015
//The final header file. This class will be the container for the rest of the classes for the
//scheduling program. It will handle the basic interaction with the user. Allowing for a display of
//the calendar, to take in people's information, and to show those who already have appointments set up.
#include "person.h"
//The umbrella to the rest of the classes
class scheduler
{
public:
scheduler();
~scheduler();
void welcome_message();
void make_appointments(int start_days, int end_days, int start_time, int end_time, char * month_toadd);
void show_attendees();
void add_attendee(node * to_add);
void menu_function();
void show_calendar();
protected:
appointment_list the_calendar;
binary_tree bst;
};
|
185d8ec21f4f6673b371349c312437a4bd4b26d0 | c9e829dbaf76dabfeab534315d9d0a416662789d | /GameServer/Server/Server/Encoding.h | 57c82d611de6ec2441bb068cdc9a6a7a6e6760a2 | [] | no_license | intovery/Kingsnake_GAME | c33b41797a3ff4713d36d79ba95592bf39df8165 | 8f442c4fdc7599f334b52412c8162bc65905f948 | refs/heads/master | 2023-04-28T11:14:40.388788 | 2021-05-24T07:42:03 | 2021-05-24T07:42:03 | 248,190,595 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,243 | h | Encoding.h | #ifndef __ENCODING__
#define __ENCODING__
#include <Windows.h>
class Encoding
{
public:
static void AsciiToUnicode(const char* _source, wchar_t*& _out_result)
{
int size = strlen(_source) + 1;
_out_result = new wchar_t[size];
MultiByteToWideChar(CP_ACP, 0, _source, -1, _out_result, size);
}
static void AsciiToUnicode(const char* _source, wchar_t*& _out_result, int& _out_size)
{
_out_size = strlen(_source) + 1;
_out_result = new wchar_t[_out_size];
MultiByteToWideChar(CP_ACP, 0, _source, -1, _out_result, _out_size);
_out_size = (wstrlen(_out_result) + 1) * 2;
}
static void UnicodeToAscii(const wchar_t* _source, char*& _out_result)
{
int size = (wstrlen(_source)+1)*2;
_out_result = new char[size];
WideCharToMultiByte(CP_ACP, 0, _source, -1, _out_result, size, 0, 0);
}
static void UnicodeToAscii(const wchar_t* _source, char*& _out_result, int& _out_size)
{
_out_size = (wstrlen(_source) + 1) * 2;
_out_result = new char[_out_size];
WideCharToMultiByte(CP_ACP, 0, _source, -1, _out_result, _out_size, 0, 0);
_out_size = strlen(_out_result) + 1;
}
static int wstrlen(const wchar_t* _source)
{
int size = 0;
while (*(_source + size) != '\0')
{
size++;
}
return size;
}
};
#endif |
e20f51a6ce9037a1f0192dac6e40f4609530e094 | 78df694b9df64818062305e9480ea660ad028223 | /libs/sdw/ModelTriangle.h | cf6a62ad45c3e0a20a6ad8e5e7960bc07384b425 | [] | no_license | JElgar/cgcw | 952e6f0118e6de2647b708a50b0f215908524fd4 | 20515642ed88cb3937c2348d310b83c93bffd0ac | refs/heads/main | 2023-01-28T22:30:20.019567 | 2020-12-11T10:41:53 | 2020-12-11T10:41:53 | 315,383,992 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,425 | h | ModelTriangle.h | #pragma once
#include <string>
#include <vector>
#include <utility>
#include <glm/glm.hpp>
#include "Colour.h"
#include "TexturePoint.h"
#include "ModelPoint.h"
#include "CanvasTriangle.h"
#include "TextureMap.h"
#include "ObjMaterial.h"
class RayTriangleIntersection;
class Ray;
class ModelTriangle {
public:
ModelTriangle();
ModelTriangle(ModelPoint v0, ModelPoint v1, ModelPoint v2);
ModelPoint v0();
ModelPoint v1();
ModelPoint v2();
ObjMaterial material();
Colour colour();
std::vector<ModelPoint> vertices();
void setMaterial(ObjMaterial &material);
void setNormal();
void translate(glm::vec3 translation, float scale = 1.0);
CanvasTriangle project(DrawingWindow &window, Camera &camera, float scalar);
void draw(Colour &colour, DrawingWindow &window, Camera &camera, float scalar);
void fill(Colour &colour, DrawingWindow &window, Camera &camera, float scalar);
void texture(TextureMap &texture, DrawingWindow &window, Camera &camera, float scalar);
glm::vec3 normal();
RayTriangleIntersection getClosestIntersection(Ray &ray);
friend std::ostream &operator<<(std::ostream &os, ModelTriangle triangle);
private:
std::vector<ModelPoint> _vertices;
ObjMaterial _material;
glm::vec3 _normal;
};
#include "RayTriangleIntersection.h"
#include "Ray.h"
|
b541320e33458671c62879ca721a5184afd1aea6 | 13b14c9c75143bf2eda87cb4a41006a52dd6f02b | /AOJ/ACMICPCJapan/SimulatedDomestic2007/solver/D/pmap.cpp | e45f1692967d224de954a2248506721a4d6e53f5 | [] | no_license | yutaka-watanobe/problem-solving | 2c311ac856c79c20aef631938140118eb3bc3835 | f0b92125494fbd3c8d203989ec9fef53f52ad4b4 | refs/heads/master | 2021-06-03T12:58:39.881107 | 2020-12-16T14:34:16 | 2020-12-16T14:34:16 | 94,963,754 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 769 | cpp | pmap.cpp | #include<stdio.h>
#include<iostream>
#include<map>
using namespace std;
int N, M, H[1500], W[1500];
void compute(){
map<int, int> CH, CW;
map<int, int>::iterator pH, pW;
int total = 0;
for ( int i = 0; i < N; i++ ){
for ( int t = 0, j = i; j < N; j++ ) {t += H[j]; CH[t]++;}
}
for ( int i = 0; i < M; i++ ){
for ( int t = 0, j = i; j < M; j++ ) {t += W[j]; CW[t]++;}
}
for ( pH = CH.begin(); pH != CH.end(); pH++ ){
total += (*pH).second*CW[(*pH).first];
}
cout << total << endl;
}
main(){
while(1){
scanf("%d %d", &N, &M);
if ( N == 0 && M == 0 ) break;
for ( int i = 0; i < N; i++ ) scanf("%d", &H[i] );
for ( int i = 0; i < M; i++ ) scanf("%d", &W[i] );
compute();
}
} |
2e94536b64a18dd577ab28fb2a6b0e6b9fdecff2 | a0b0eb383ecfeaeed3d2b0271657a0c32472bf8e | /leetcode/1-1000/780-reaching-points.cpp | 7b8ad21648401f5446cef2bb90d704b795a88ab8 | [
"Apache-2.0"
] | permissive | tangjz/acm-icpc | 45764d717611d545976309f10bebf79c81182b57 | f1f3f15f7ed12c0ece39ad0dd044bfe35df9136d | refs/heads/master | 2023-04-07T10:23:07.075717 | 2022-12-24T15:30:19 | 2022-12-26T06:22:53 | 13,367,317 | 53 | 20 | Apache-2.0 | 2022-12-26T06:22:54 | 2013-10-06T18:57:09 | C++ | UTF-8 | C++ | false | false | 479 | cpp | 780-reaching-points.cpp | class Solution {
public:
bool reachingPoints(int sx, int sy, int tx, int ty) {
while(sx <= tx && sy <= ty) {
if(sx == tx && sy == ty)
return 1;
if(tx == ty)
return 0;
if(tx < ty) {
swap(sx, sy);
swap(tx, ty);
}
int d = (tx - sx) / ty;
if(!d)
return 0;
tx -= d * ty;
}
return 0;
}
};
|
784dd28d392b94badf228064571ad87e9dec9f55 | 8aaa5982660c1be96b443f0c5e75a3aecdefa556 | /renderer/pickablegroup.cpp | e611dd98436296335d4d7780d38aa0f0cf129cf4 | [] | no_license | mweiguo/libgeoalgorithm | af24c87f27e2ce2db504d99211da717859776ca3 | ee91178c022df900f16037ba7dae4361e8b76fac | refs/heads/master | 2016-09-06T17:45:02.294222 | 2010-06-26T05:35:32 | 2010-06-26T05:35:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 181 | cpp | pickablegroup.cpp |
#include "pickablegroup.h"
PickableGroup::PickableGroup( const string& name ) : GroupNode(name)
{
}
PickableGroup::PickableGroup( const PickableGroup& rhs ) : GroupNode(rhs)
{
}
|
89a8002e816482ef04a56c59be95f2d71c2332d0 | ea89996bb0368e8f496dcfbed00ffef7d62ac0e6 | /misc/aooswd/A3/diffNode.h | c63d39238a04237f8b250bd4b448284c99721cda | [] | no_license | dstrube1/playground | 8c63e42c7223da12a35000ab0aaa80333bec09ce | 62b42eff564214729cfacd14c79916766e58237a | refs/heads/main | 2023-03-05T16:06:22.524699 | 2023-03-04T00:50:31 | 2023-03-04T00:50:31 | 95,035,974 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,335 | h | diffNode.h | //diffNode.h - a binary operator node representing the difference of two node values
/****************
David Strube
CSIS4650-01
Spring 2003
Assignment 3
Expression Tree using bridge pattern
***************/
#ifndef DIFFNODE_H
#define DIFFNODE_H
#include "binNode.h"
template <class NODETYPE>
class diffNode:public binNode<NODETYPE>{
public:
diffNode();
diffNode(Node<NODETYPE>* l, Node<NODETYPE>* r);
~diffNode();
NODETYPE eval() const;
void print() const;
Node<NODETYPE>* getPtr();
};
template <class NODETYPE>
inline diffNode<NODETYPE>::diffNode(){
}
template <class NODETYPE>
inline diffNode<NODETYPE>::diffNode(Node<NODETYPE>* l, Node<NODETYPE>* r){
leftPtr=l;
rightPtr=r;
}
template <class NODETYPE>
inline diffNode<NODETYPE>::~diffNode(){
}
template <class NODETYPE>
inline NODETYPE diffNode<NODETYPE>::eval() const{
return leftPtr->eval() - rightPtr->eval();
}
template <class NODETYPE>
inline void diffNode<NODETYPE>::print() const{
cout<<"(";
leftPtr->print();
cout<<"-";
rightPtr->print();
cout<<")";
}
template <class NODETYPE>
inline Node<NODETYPE>* diffNode<NODETYPE>::getPtr(){
return this;}
#endif |
751cf4d691d6ecb1251fd0ff13f8cfd8a0c58764 | 8e5c92b5562ebc7e8f093408ee19c48dd0e6fc19 | /2020-12-07/B1946.cpp | e0039f9f5c6e9d602d2c0cc71dfe026a365fdc7f | [] | no_license | catch4/EunJeong | d9bd419231ef6dd2bc722621088858b033dc9b66 | 99d0c1d6624c4e22233e4bfa96037ece0d310a94 | refs/heads/master | 2023-05-07T06:20:29.673468 | 2021-05-26T18:28:24 | 2021-05-26T18:28:24 | 268,486,577 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 558 | cpp | B1946.cpp | // https://www.acmicpc.net/problem/1946
#include <iostream>
#include <algorithm>
using namespace std;
int N;
pair<int, int> Score[100001];
int main() {
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
int T;
cin >> T;
while (T--) {
cin >> N;
for (int i = 0; i < N; i++) {
int a, b;
cin >> a >> b;
Score[i] = { a, b };
}
sort(Score, Score + N);
int pos = 0, answer = 1;
for (int i = 1; i < N; i++) {
if (Score[pos].second > Score[i].second) {
answer++;
pos = i;
}
}
cout << answer << endl;
}
return 0;
}
|
77d5a3f8d4eaddb76a11622d6229886271eee029 | 46f2e7a10fca9f7e7b80b342240302c311c31914 | /opposing_lid_driven_flow/cavity/0.075/phi | cf6e69077776e325eac4440a31a60e2886778457 | [] | no_license | patricksinclair/openfoam_warmups | 696cb1950d40b967b8b455164134bde03e9179a1 | 03c982f7d46b4858e3b6bfdde7b8e8c3c4275df9 | refs/heads/master | 2020-12-26T12:50:00.615357 | 2020-02-04T20:22:35 | 2020-02-04T20:22:35 | 237,510,814 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 61,906 | phi | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "0.075";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
4900
(
-5.55534e-06
5.55535e-06
-1.01609e-05
4.60559e-06
-1.29489e-05
2.78793e-06
-1.46695e-05
1.72066e-06
-1.57726e-05
1.10311e-06
-1.65122e-05
7.39578e-07
-1.70336e-05
5.21424e-07
-1.74188e-05
3.85174e-07
-1.77143e-05
2.95518e-07
-1.79477e-05
2.3342e-07
-1.81362e-05
1.88447e-07
-1.82908e-05
1.54633e-07
-1.84192e-05
1.28392e-07
-1.85267e-05
1.07461e-07
-1.8617e-05
9.03527e-08
-1.86931e-05
7.60476e-08
-1.87569e-05
6.38267e-08
-1.88101e-05
5.31681e-08
-1.88538e-05
4.36839e-08
-1.88888e-05
3.50796e-08
-1.8916e-05
2.71264e-08
-1.89356e-05
1.96428e-08
-1.89481e-05
1.24809e-08
-1.89536e-05
5.51729e-09
-1.89523e-05
-1.35652e-09
-1.8944e-05
-8.23608e-09
-1.89288e-05
-1.52156e-08
-1.89064e-05
-2.23878e-08
-1.88766e-05
-2.98522e-08
-1.88388e-05
-3.7721e-08
-1.87927e-05
-4.61266e-08
-1.87375e-05
-5.5232e-08
-1.86722e-05
-6.52447e-08
-1.85958e-05
-7.64356e-08
-1.85066e-05
-8.91676e-08
-1.84027e-05
-1.03937e-07
-1.82813e-05
-1.21441e-07
-1.81386e-05
-1.42681e-07
-1.79694e-05
-1.69143e-07
-1.77663e-05
-2.03109e-07
-1.75181e-05
-2.48233e-07
-1.72075e-05
-3.10606e-07
-1.68067e-05
-4.00815e-07
-1.62688e-05
-5.37908e-07
-1.55124e-05
-7.56379e-07
-1.43964e-05
-1.11593e-06
-1.26815e-05
-1.71498e-06
-9.94584e-06
-2.73562e-06
-5.45243e-06
-4.49341e-06
-5.45243e-06
-1.18882e-08
5.56724e-06
-2.13085e-06
6.72456e-06
-4.85882e-06
5.5159e-06
-7.2774e-06
4.13925e-06
-9.21749e-06
3.0432e-06
-1.07318e-05
2.25384e-06
-1.19134e-05
1.70308e-06
-1.28454e-05
1.31717e-06
-1.35911e-05
1.04118e-06
-1.41963e-05
8.3865e-07
-1.46939e-05
6.86017e-07
-1.51073e-05
5.68012e-07
-1.54534e-05
4.74566e-07
-1.57449e-05
3.9889e-07
-1.59908e-05
3.36291e-07
-1.61982e-05
2.83445e-07
-1.63723e-05
2.37946e-07
-1.65172e-05
1.98012e-07
-1.66358e-05
1.62302e-07
-1.67305e-05
1.29781e-07
-1.6803e-05
9.96387e-08
-1.68546e-05
7.12272e-08
-1.68861e-05
4.40144e-08
-1.68981e-05
1.75521e-08
-1.6891e-05
-8.54968e-09
-1.68645e-05
-3.46464e-08
-1.68187e-05
-6.10756e-08
-1.67529e-05
-8.8177e-08
-1.66664e-05
-1.16311e-07
-1.65583e-05
-1.45883e-07
-1.6427e-05
-1.77364e-07
-1.62709e-05
-2.11332e-07
-1.60877e-05
-2.48511e-07
-1.58743e-05
-2.89838e-07
-1.56269e-05
-3.36546e-07
-1.53405e-05
-3.90292e-07
-1.50086e-05
-4.53345e-07
-1.46224e-05
-5.28873e-07
-1.41702e-05
-6.21387e-07
-1.36359e-05
-7.37441e-07
-1.29973e-05
-8.86768e-07
-1.22239e-05
-1.08406e-06
-1.12729e-05
-1.35178e-06
-1.00866e-05
-1.72418e-06
-8.59116e-06
-2.25184e-06
-6.70643e-06
-3.00066e-06
-4.39277e-06
-4.02864e-06
-1.81832e-06
-5.31008e-06
1.24442e-07
-6.43617e-06
-5.32799e-06
1.03231e-06
4.53494e-06
5.46249e-07
7.21061e-06
-9.94103e-07
7.05625e-06
-2.89138e-06
6.03652e-06
-4.75178e-06
4.9036e-06
-6.41477e-06
3.91682e-06
-7.84086e-06
3.12917e-06
-9.04305e-06
2.51937e-06
-1.00516e-05
2.04977e-06
-1.08987e-05
1.68573e-06
-1.16126e-05
1.39993e-06
-1.22167e-05
1.17205e-06
-1.27294e-05
9.87274e-07
-1.31653e-05
8.34838e-07
-1.35359e-05
7.06871e-07
-1.385e-05
5.97552e-07
-1.41146e-05
5.02522e-07
-1.43351e-05
4.18469e-07
-1.45156e-05
3.42841e-07
-1.46595e-05
2.73641e-07
-1.47691e-05
2.0928e-07
-1.48463e-05
1.48471e-07
-1.48925e-05
9.01507e-08
-1.49083e-05
3.34152e-08
-1.48944e-05
-2.25256e-08
-1.48506e-05
-7.83918e-08
-1.47768e-05
-1.34868e-07
-1.46724e-05
-1.92639e-07
-1.45362e-05
-2.52428e-07
-1.43671e-05
-3.15034e-07
-1.41631e-05
-3.81383e-07
-1.39218e-05
-4.52591e-07
-1.36403e-05
-5.30034e-07
-1.33147e-05
-6.15462e-07
-1.29401e-05
-7.11129e-07
-1.25104e-05
-8.19998e-07
-1.20177e-05
-9.46005e-07
-1.14521e-05
-1.09444e-06
-1.0801e-05
-1.27251e-06
-1.00484e-05
-1.49006e-06
-9.17458e-06
-1.7606e-06
-8.1561e-06
-2.10255e-06
-6.9675e-06
-2.54039e-06
-5.58707e-06
-3.10461e-06
-4.01149e-06
-3.82741e-06
-2.28749e-06
-4.72466e-06
-5.72219e-07
-5.74391e-06
7.67143e-07
-6.64944e-06
1.08791e-06
-6.75694e-06
-4.24007e-06
9.05949e-07
3.62899e-06
1.22693e-06
6.88963e-06
6.39629e-07
7.64355e-06
-5.30071e-07
7.20622e-06
-1.95323e-06
6.32676e-06
-3.41156e-06
5.37514e-06
-4.78799e-06
4.5056e-06
-6.03268e-06
3.76406e-06
-7.133e-06
3.15009e-06
-8.09423e-06
2.64696e-06
-8.92889e-06
2.23459e-06
-9.65133e-06
1.89449e-06
-1.02753e-05
1.61125e-06
-1.0813e-05
1.37252e-06
-1.12747e-05
1.1686e-06
-1.16691e-05
9.91926e-07
-1.20031e-05
8.36568e-07
-1.22825e-05
6.97872e-07
-1.25119e-05
5.72149e-07
-1.26947e-05
4.56447e-07
-1.28338e-05
3.48373e-07
-1.29312e-05
2.45961e-07
-1.29887e-05
1.47564e-07
-1.3007e-05
5.1774e-08
-1.29869e-05
-4.26498e-08
-1.29284e-05
-1.36837e-07
-1.28314e-05
-2.31862e-07
-1.26953e-05
-3.28791e-07
-1.2519e-05
-4.28737e-07
-1.23011e-05
-5.32917e-07
-1.20398e-05
-6.42719e-07
-1.17326e-05
-7.59779e-07
-1.13765e-05
-8.86084e-07
-1.09679e-05
-1.0241e-06
-1.05021e-05
-1.17691e-06
-9.97363e-06
-1.34848e-06
-9.37579e-06
-1.54385e-06
-8.70073e-06
-1.7695e-06
-7.93945e-06
-2.03379e-06
-7.08223e-06
-2.34728e-06
-6.11967e-06
-2.72315e-06
-5.04524e-06
-3.17698e-06
-3.8603e-06
-3.72533e-06
-2.58368e-06
-4.38123e-06
-1.26845e-06
-5.14265e-06
-2.6893e-08
-5.96621e-06
9.4286e-07
-6.71366e-06
1.34957e-06
-7.05616e-06
9.17142e-07
-6.32451e-06
-3.32293e-06
6.71153e-07
2.95783e-06
1.2412e-06
6.31958e-06
1.21806e-06
7.66669e-06
6.42527e-07
7.78176e-06
-2.97877e-07
7.26717e-06
-1.42073e-06
6.498e-06
-2.59359e-06
5.67847e-06
-3.73505e-06
4.90552e-06
-4.80154e-06
4.21658e-06
-5.77367e-06
3.61909e-06
-6.64608e-06
3.10701e-06
-7.42091e-06
2.66932e-06
-8.10379e-06
2.29413e-06
-8.70164e-06
1.97037e-06
-9.22149e-06
1.68844e-06
-9.66983e-06
1.44027e-06
-1.00525e-05
1.21919e-06
-1.03743e-05
1.01971e-06
-1.06395e-05
8.37351e-07
-1.08514e-05
6.68403e-07
-1.10129e-05
5.098e-07
-1.11259e-05
3.58975e-07
-1.11921e-05
2.13745e-07
-1.12125e-05
7.22234e-08
-1.11879e-05
-6.72605e-08
-1.11185e-05
-2.06232e-07
-1.10042e-05
-3.46137e-07
-1.08446e-05
-4.88397e-07
-1.06389e-05
-6.3448e-07
-1.03858e-05
-7.85964e-07
-1.0084e-05
-9.4461e-07
-9.73128e-06
-1.11245e-06
-9.32546e-06
-1.2919e-06
-8.8637e-06
-1.48586e-06
-8.34275e-06
-1.69786e-06
-7.759e-06
-1.93223e-06
-7.10858e-06
-2.19427e-06
-6.38769e-06
-2.49039e-06
-5.59324e-06
-2.82823e-06
-4.72401e-06
-3.21651e-06
-3.78271e-06
-3.66446e-06
-2.77943e-06
-4.18025e-06
-1.73729e-06
-4.76748e-06
-7.00652e-07
-5.41787e-06
2.54046e-07
-6.09735e-06
1.00882e-06
-6.72098e-06
1.40729e-06
-7.11214e-06
1.29714e-06
-6.946e-06
6.66611e-07
-5.69398e-06
-2.65632e-06
4.79629e-07
2.47821e-06
1.07309e-06
5.72612e-06
1.33454e-06
7.40525e-06
1.16355e-06
7.95275e-06
6.27849e-07
7.80287e-06
-1.53888e-07
7.27973e-06
-1.06956e-06
6.59414e-06
-2.03373e-06
5.86969e-06
-2.98874e-06
5.17159e-06
-3.89923e-06
4.52958e-06
-4.74563e-06
3.9534e-06
-5.51863e-06
3.44233e-06
-6.21524e-06
2.99074e-06
-6.83609e-06
2.59122e-06
-7.38369e-06
2.23604e-06
-7.86142e-06
1.918e-06
-8.27285e-06
1.63062e-06
-8.62144e-06
1.3683e-06
-8.91031e-06
1.12623e-06
-9.1422e-06
9.00294e-07
-9.3194e-06
6.86998e-07
-9.44377e-06
4.83343e-07
-9.51677e-06
2.86739e-07
-9.53946e-06
9.49178e-08
-9.51258e-06
-9.41444e-08
-9.43651e-06
-2.82299e-07
-9.31136e-06
-4.7129e-07
-9.13693e-06
-6.62824e-07
-8.91278e-06
-8.58628e-07
-8.63822e-06
-1.06052e-06
-8.31233e-06
-1.2705e-06
-7.93399e-06
-1.49079e-06
-7.50193e-06
-1.72396e-06
-7.01481e-06
-1.97298e-06
-6.47134e-06
-2.24133e-06
-5.8705e-06
-2.53307e-06
-5.21191e-06
-2.85286e-06
-4.49644e-06
-3.20587e-06
-3.72712e-06
-3.59755e-06
-2.9107e-06
-4.03294e-06
-2.05977e-06
-4.51539e-06
-1.19603e-06
-5.04399e-06
-3.5445e-07
-5.60906e-06
4.11924e-07
-6.18424e-06
1.02843e-06
-6.71386e-06
1.40131e-06
-7.09387e-06
1.43632e-06
-7.14714e-06
1.08931e-06
-6.599e-06
4.69637e-07
-5.07431e-06
-2.18668e-06
3.47149e-07
2.13106e-06
8.87311e-07
5.18595e-06
1.26932e-06
7.02324e-06
1.34583e-06
7.87623e-06
1.10928e-06
8.03942e-06
6.19781e-07
7.76924e-06
-4.33509e-08
7.25727e-06
-8.06638e-07
6.63298e-06
-1.61188e-06
5.97683e-06
-2.41707e-06
5.33478e-06
-3.19401e-06
4.73034e-06
-3.92497e-06
4.17328e-06
-4.59965e-06
3.66542e-06
-5.21271e-06
3.20429e-06
-5.76206e-06
2.78539e-06
-6.24751e-06
2.40345e-06
-6.67003e-06
2.05313e-06
-7.03111e-06
1.72938e-06
-7.33249e-06
1.4276e-06
-7.57588e-06
1.14369e-06
-7.76289e-06
8.74006e-07
-7.89491e-06
6.15369e-07
-7.97314e-06
3.64963e-07
-7.9985e-06
1.20283e-07
-7.97173e-06
-1.2092e-07
-7.89332e-06
-3.60711e-07
-7.76358e-06
-6.01028e-07
-7.58266e-06
-8.4374e-07
-7.35058e-06
-1.09071e-06
-7.06725e-06
-1.34386e-06
-6.73254e-06
-1.60521e-06
-6.34638e-06
-1.87696e-06
-5.90881e-06
-2.16153e-06
-5.42016e-06
-2.46163e-06
-4.88129e-06
-2.7802e-06
-4.29391e-06
-3.12045e-06
-3.66105e-06
-3.48571e-06
-2.98781e-06
-3.87911e-06
-2.28233e-06
-4.30302e-06
-1.55721e-06
-4.75806e-06
-8.31291e-07
-5.2413e-06
-1.31901e-07
-5.74338e-06
5.02966e-07
-6.24392e-06
1.02334e-06
-6.70461e-06
1.36896e-06
-7.05948e-06
1.47797e-06
-7.20288e-06
1.30847e-06
-6.97764e-06
8.79848e-07
-6.17038e-06
3.35331e-07
-4.52979e-06
-1.85135e-06
2.59702e-07
1.87135e-06
7.2901e-07
4.71665e-06
1.14558e-06
6.60667e-06
1.36133e-06
7.66048e-06
1.32996e-06
8.0708e-06
1.06905e-06
8.03014e-06
6.263e-07
7.70003e-06
5.69382e-08
7.20234e-06
-5.88207e-07
6.62197e-06
-1.26761e-06
6.01418e-06
-1.94978e-06
5.41251e-06
-2.61213e-06
4.83563e-06
-3.23923e-06
4.29251e-06
-3.82102e-06
3.78608e-06
-4.35131e-06
3.31568e-06
-4.82659e-06
2.87873e-06
-5.24513e-06
2.47168e-06
-5.60637e-06
2.09063e-06
-5.91045e-06
1.73168e-06
-6.15789e-06
1.39113e-06
-6.34942e-06
1.06554e-06
-6.48586e-06
7.51804e-07
-6.56797e-06
4.4708e-07
-6.5965e-06
1.48813e-07
-6.5721e-06
-1.45321e-07
-6.49536e-06
-4.37459e-07
-6.36679e-06
-7.29598e-07
-6.18689e-06
-1.02364e-06
-5.95618e-06
-1.32142e-06
-5.67523e-06
-1.6248e-06
-5.34478e-06
-1.93566e-06
-4.9658e-06
-2.25593e-06
-4.5397e-06
-2.58763e-06
-4.06847e-06
-2.93286e-06
-3.55497e-06
-3.29369e-06
-3.00334e-06
-3.67209e-06
-2.41946e-06
-4.06959e-06
-1.81168e-06
-4.4869e-06
-1.19162e-06
-4.92308e-06
-5.75284e-07
-5.3744e-06
1.57857e-08
-5.83237e-06
5.53466e-07
-6.28106e-06
1.00259e-06
-6.69304e-06
1.3221e-06
-7.02412e-06
1.46952e-06
-7.2069e-06
1.41108e-06
-7.14443e-06
1.14034e-06
-6.70691e-06
7.06438e-07
-5.73647e-06
2.46871e-07
-4.07022e-06
-1.60448e-06
2.01352e-07
1.67e-06
6.03633e-07
4.31437e-06
1.01361e-06
6.19669e-06
1.30032e-06
7.37376e-06
1.40216e-06
7.96895e-06
1.31008e-06
8.12222e-06
1.04665e-06
7.96346e-06
6.48866e-07
7.60012e-06
1.56765e-07
7.11408e-06
-3.92888e-07
6.56384e-06
-9.69309e-07
5.98893e-06
-1.54824e-06
5.41457e-06
-2.11143e-06
4.8557e-06
-2.64561e-06
4.32026e-06
-3.14148e-06
3.81155e-06
-3.59275e-06
3.32999e-06
-3.99528e-06
2.87422e-06
-4.34656e-06
2.4419e-06
-4.64512e-06
2.03024e-06
-4.89028e-06
1.63628e-06
-5.08181e-06
1.25708e-06
-5.21984e-06
8.89836e-07
-5.30469e-06
5.3193e-07
-5.33681e-06
1.80933e-07
-5.31675e-06
-1.65387e-07
-5.24512e-06
-5.09089e-07
-5.12263e-06
-8.52082e-07
-4.95012e-06
-1.19615e-06
-4.72856e-06
-1.54298e-06
-4.45917e-06
-1.89419e-06
-4.14349e-06
-2.25134e-06
-3.78351e-06
-2.61591e-06
-3.38184e-06
-2.98931e-06
-2.94191e-06
-3.37279e-06
-2.46826e-06
-3.76734e-06
-1.96693e-06
-4.17342e-06
-1.44584e-06
-4.59067e-06
-9.15426e-07
-5.01731e-06
-3.89182e-07
-5.44933e-06
1.15652e-07
-5.87923e-06
5.77595e-07
-6.29432e-06
9.70804e-07
-6.67427e-06
1.26587e-06
-6.98811e-06
1.43229e-06
-7.19054e-06
1.44368e-06
-7.2183e-06
1.28703e-06
-6.98778e-06
9.76479e-07
-6.39636e-06
5.70685e-07
-5.33068e-06
1.87654e-07
-3.68719e-06
-1.41683e-06
1.61126e-07
1.50888e-06
5.06029e-07
3.96946e-06
8.91651e-07
5.81107e-06
1.20837e-06
7.05704e-06
1.39227e-06
7.78505e-06
1.41967e-06
8.09482e-06
1.29544e-06
8.08769e-06
1.04116e-06
7.8544e-06
6.85752e-07
7.46948e-06
2.5925e-07
6.99034e-06
-2.10752e-07
6.45894e-06
-7.00699e-07
5.90452e-06
-1.19147e-06
5.34647e-06
-1.66813e-06
4.79692e-06
-2.11935e-06
4.26277e-06
-2.53675e-06
3.7474e-06
-2.91431e-06
3.25178e-06
-3.2478e-06
2.77539e-06
-3.53434e-06
2.31678e-06
-3.77207e-06
1.87401e-06
-3.95985e-06
1.44486e-06
-4.09712e-06
1.0271e-06
-4.18368e-06
6.18492e-07
-4.21968e-06
2.16929e-07
-4.20549e-06
-1.79571e-07
-4.14174e-06
-5.72837e-07
-4.02928e-06
-9.64548e-07
-3.86919e-06
-1.35624e-06
-3.66287e-06
-1.7493e-06
-3.4121e-06
-2.14497e-06
-3.1191e-06
-2.54434e-06
-2.7867e-06
-2.94831e-06
-2.4185e-06
-3.35751e-06
-2.01905e-06
-3.77224e-06
-1.59413e-06
-4.19225e-06
-1.15105e-06
-4.6165e-06
-6.98981e-07
-5.04274e-06
-2.4933e-07
-5.46696e-06
1.83881e-07
-5.88254e-06
5.83787e-07
-6.27914e-06
9.3069e-07
-6.64122e-06
1.2026e-06
-6.94619e-06
1.37671e-06
-7.16222e-06
1.43228e-06
-7.24611e-06
1.35555e-06
-7.14157e-06
1.14709e-06
-6.77932e-06
8.31202e-07
-6.08047e-06
4.65581e-07
-4.96506e-06
1.46644e-07
-3.36825e-06
-1.27018e-06
1.32296e-07
1.37658e-06
4.29634e-07
3.67213e-06
7.84594e-07
5.45611e-06
1.10756e-06
6.73407e-06
1.33858e-06
7.55404e-06
1.44731e-06
7.9861e-06
1.42726e-06
8.10774e-06
1.28824e-06
7.99342e-06
1.04932e-06
7.7084e-06
7.33432e-07
7.30622e-06
3.63778e-07
6.82859e-06
-3.82949e-08
6.30659e-06
-4.5429e-07
5.76247e-06
-8.68852e-07
5.21148e-06
-1.26964e-06
4.66356e-06
-1.64698e-06
4.12474e-06
-1.99349e-06
3.59828e-06
-2.30361e-06
3.08551e-06
-2.5733e-06
2.58647e-06
-2.79967e-06
2.10038e-06
-2.98076e-06
1.62595e-06
-3.11533e-06
1.16167e-06
-3.2027e-06
7.0587e-07
-3.24269e-06
2.56915e-07
-3.23548e-06
-1.86777e-07
-3.18165e-06
-6.26672e-07
-3.0821e-06
-1.06409e-06
-2.93814e-06
-1.5002e-06
-2.75148e-06
-1.93597e-06
-2.5243e-06
-2.37215e-06
-2.25937e-06
-2.80927e-06
-1.96016e-06
-3.24751e-06
-1.63098e-06
-3.68669e-06
-1.27714e-06
-4.12608e-06
-9.05202e-07
-4.5642e-06
-5.23151e-07
-4.99855e-06
-1.4066e-07
-5.42524e-06
2.30721e-07
-5.83834e-06
5.7745e-07
-6.22927e-06
8.84048e-07
-6.58573e-06
1.13348e-06
-6.89065e-06
1.30808e-06
-7.12079e-06
1.39124e-06
-7.24537e-06
1.37019e-06
-7.22506e-06
1.24017e-06
-7.01155e-06
1.00976e-06
-6.54891e-06
7.06863e-07
-5.77757e-06
3.83628e-07
-4.64182e-06
1.17149e-07
-3.10178e-06
-1.15303e-06
1.10815e-07
1.26577e-06
3.68901e-07
3.41404e-06
6.92175e-07
5.13284e-06
1.00796e-06
6.41829e-06
1.26274e-06
7.29926e-06
1.42435e-06
7.82448e-06
1.47971e-06
8.05239e-06
1.43024e-06
8.04288e-06
1.28705e-06
7.85159e-06
1.06656e-06
7.52672e-06
7.87249e-07
7.1079e-06
4.67479e-07
6.62636e-06
1.24163e-07
6.10578e-06
-2.27879e-07
5.56352e-06
-5.76139e-07
5.01182e-06
-9.1035e-07
4.45895e-06
-1.22229e-06
3.91023e-06
-1.50552e-06
3.36874e-06
-1.75509e-06
2.83604e-06
-1.96732e-06
2.3126e-06
-2.13953e-06
1.79817e-06
-2.26991e-06
1.29204e-06
-2.35733e-06
7.93287e-07
-2.40125e-06
3.00842e-07
-2.40168e-06
-1.8635e-07
-2.35908e-06
-6.69276e-07
-2.27437e-06
-1.1488e-06
-2.14897e-06
-1.6256e-06
-1.98479e-06
-2.10015e-06
-1.7843e-06
-2.57264e-06
-1.55063e-06
-3.04293e-06
-1.28765e-06
-3.51049e-06
-1.0001e-06
-3.97425e-06
-6.93715e-07
-4.43246e-06
-3.75399e-07
-4.88251e-06
-5.33339e-08
-5.32062e-06
2.62884e-07
-5.74145e-06
5.622e-07
-6.13766e-06
8.32164e-07
-6.49923e-06
1.05921e-06
-6.81278e-06
1.22923e-06
-7.06068e-06
1.32867e-06
-7.22022e-06
1.34615e-06
-7.26285e-06
1.27493e-06
-7.15384e-06
1.11611e-06
-6.85273e-06
8.82384e-07
-6.31518e-06
6.01563e-07
-5.49675e-06
3.18768e-07
-4.35903e-06
9.51508e-08
-2.87816e-06
-1.05788e-06
9.42267e-08
1.17154e-06
3.19652e-07
3.18861e-06
6.12441e-07
4.84005e-06
9.13646e-07
6.11708e-06
1.17674e-06
7.03617e-06
1.37045e-06
7.63077e-06
1.47832e-06
7.94451e-06
1.49628e-06
8.02492e-06
1.42936e-06
7.91852e-06
1.28844e-06
7.66763e-06
1.08757e-06
7.30877e-06
8.41858e-07
6.87207e-06
5.66116e-07
6.38152e-06
2.73987e-07
5.85565e-06
-2.24883e-08
5.30829e-06
-3.13021e-07
4.74949e-06
-5.89054e-07
4.18626e-06
-8.43632e-07
3.62332e-06
-1.07123e-06
3.06364e-06
-1.26757e-06
2.50894e-06
-1.42944e-06
1.96004e-06
-1.55454e-06
1.41714e-06
-1.64134e-06
8.80089e-07
-1.68901e-06
3.48515e-07
-1.69733e-06
-1.78032e-07
-1.66663e-06
-6.99975e-07
-1.5978e-06
-1.21763e-06
-1.49226e-06
-1.73114e-06
-1.35202e-06
-2.24039e-06
-1.1797e-06
-2.74496e-06
-9.78593e-07
-3.24404e-06
-7.52771e-07
-3.73631e-06
-5.0714e-07
-4.21988e-06
-2.47557e-07
-4.69204e-06
1.90912e-08
-5.14916e-06
2.84814e-07
-5.58634e-06
5.40504e-07
-5.99714e-06
7.75991e-07
-6.37315e-06
9.80248e-07
-6.70349e-06
1.14178e-06
-6.97431e-06
1.2493e-06
-7.1682e-06
1.29279e-06
-7.26371e-06
1.265e-06
-7.23506e-06
1.16343e-06
-7.05227e-06
9.92693e-07
-6.682e-06
7.67023e-07
-6.08951e-06
5.1226e-07
-5.24199e-06
2.66499e-07
-4.11327e-06
7.81946e-08
-2.68985e-06
-9.79688e-07
8.09973e-08
1.09054e-06
2.78859e-07
2.99075e-06
5.43134e-07
4.57577e-06
8.25824e-07
5.83439e-06
1.08704e-06
6.77495e-06
1.29777e-06
7.42004e-06
1.44034e-06
7.80194e-06
1.50728e-06
7.95798e-06
1.49927e-06
7.92653e-06
1.42277e-06
7.74413e-06
1.28792e-06
7.44363e-06
1.10669e-06
7.0533e-06
8.9159e-07
6.59663e-06
6.54724e-07
6.09252e-06
4.07233e-07
5.55578e-06
1.58991e-07
4.99773e-06
-8.15083e-08
4.42676e-06
-3.07146e-07
3.84896e-06
-5.12096e-07
3.26859e-06
-6.91711e-07
2.68856e-06
-8.42397e-07
2.11072e-06
-9.61488e-07
1.53623e-06
-1.04715e-06
9.65746e-07
-1.09826e-06
3.9963e-07
-1.11439e-06
-1.61898e-07
-1.09573e-06
-7.1864e-07
-1.04305e-06
-1.27031e-06
-9.57722e-07
-1.81646e-06
-8.41744e-07
-2.35637e-06
-6.97739e-07
-2.88897e-06
-5.29024e-07
-3.41275e-06
-3.39659e-07
-3.92568e-06
-1.34502e-07
-4.42503e-06
8.07272e-08
-4.90727e-06
2.99417e-07
-5.36785e-06
5.14054e-07
-5.80098e-06
7.16278e-07
-6.19937e-06
8.97021e-07
-6.55389e-06
1.04678e-06
-6.85324e-06
1.15606e-06
-7.08359e-06
1.21607e-06
-7.22822e-06
1.21969e-06
-7.26733e-06
1.1627e-06
-7.17807e-06
1.04538e-06
-6.93495e-06
8.74199e-07
-6.51081e-06
6.63373e-07
-5.87868e-06
4.35926e-07
-5.01454e-06
2.23561e-07
-3.9009e-06
6.47353e-08
-2.53103e-06
-9.14953e-07
7.01387e-08
1.0204e-06
2.44343e-07
2.81655e-06
4.82185e-07
4.33793e-06
7.44383e-07
5.57219e-06
9.96995e-07
6.52234e-06
1.21384e-06
7.2032e-06
1.37735e-06
7.63843e-06
1.47822e-06
7.85711e-06
1.51414e-06
7.89061e-06
1.48822e-06
7.77005e-06
1.40733e-06
7.52452e-06
1.28061e-06
7.18002e-06
1.11829e-06
6.75894e-06
9.30805e-07
6.28001e-06
7.28121e-07
5.75847e-06
5.19401e-07
5.20645e-06
3.12768e-07
4.63339e-06
1.15224e-07
4.0465e-06
-6.73508e-08
3.45117e-06
-2.30144e-07
2.85135e-06
-3.6934e-07
2.24992e-06
-4.82028e-07
1.64892e-06
-5.66125e-07
1.04984e-06
-6.20297e-07
4.53802e-07
-6.43906e-07
-1.38289e-07
-6.36963e-07
-7.25583e-07
-6.00107e-07
-1.30717e-06
-5.34593e-07
-1.88198e-06
-4.42298e-07
-2.44866e-06
-3.25743e-07
-3.00552e-06
-1.8812e-07
-3.55038e-06
-3.33244e-08
-4.08048e-06
1.34012e-07
-4.59237e-06
3.08502e-07
-5.08176e-06
4.84002e-07
-5.54335e-06
6.53654e-07
-5.97063e-06
8.09991e-07
-6.3557e-06
9.45115e-07
-6.68901e-06
1.05101e-06
-6.95914e-06
1.12e-06
-7.15258e-06
1.14537e-06
-7.25358e-06
1.12221e-06
-7.24417e-06
1.04847e-06
-7.10433e-06
9.26083e-07
-6.81257e-06
7.6221e-07
-6.34694e-06
5.70173e-07
-5.68665e-06
3.69924e-07
-4.81429e-06
1.87592e-07
-3.71857e-06
5.37641e-08
-2.3972e-06
-8.61189e-07
6.09916e-08
9.59411e-07
2.14528e-07
2.66301e-06
4.27857e-07
4.1246e-06
6.68668e-07
5.33138e-06
9.082e-07
6.28281e-06
1.12325e-06
6.98815e-06
1.29715e-06
7.46453e-06
1.4198e-06
7.73446e-06
1.48701e-06
7.8234e-06
1.49941e-06
7.75764e-06
1.46129e-06
7.56265e-06
1.37934e-06
7.26197e-06
1.2617e-06
6.87658e-06
1.11709e-06
6.42461e-06
9.54231e-07
5.92133e-06
7.81365e-07
5.37931e-06
6.06033e-07
4.80872e-06
4.34904e-07
4.21763e-06
2.73712e-07
3.61236e-06
1.27256e-07
2.99781e-06
-5.66547e-10
2.37774e-06
-1.06717e-07
1.75507e-06
-1.88944e-07
1.13207e-06
-2.45741e-07
5.10599e-07
-2.7629e-07
-1.0774e-07
-2.80425e-07
-7.21448e-07
-2.58613e-07
-1.32898e-06
-2.11932e-07
-1.92866e-06
-1.42079e-07
-2.51852e-06
-5.13704e-08
-3.09623e-06
5.72387e-08
-3.65898e-06
1.80142e-07
-4.20338e-06
3.13073e-07
-4.7253e-06
4.51108e-07
-5.2198e-06
5.88701e-07
-5.68094e-06
7.19751e-07
-6.10168e-06
8.37735e-07
-6.47369e-06
9.35912e-07
-6.78719e-06
1.00763e-06
-7.03086e-06
1.04677e-06
-7.19171e-06
1.04827e-06
-7.25508e-06
1.00888e-06
-7.20478e-06
9.27933e-07
-7.02339e-06
8.08246e-07
-6.69288e-06
6.56909e-07
-6.1956e-06
4.85872e-07
-5.51561e-06
3.12071e-07
-4.64049e-06
1.56866e-07
-3.56336e-06
4.45984e-08
-2.28493e-06
-8.16591e-07
5.31029e-08
9.06308e-07
1.88266e-07
2.52785e-06
3.78743e-07
3.93413e-06
5.97857e-07
5.11227e-06
8.21313e-07
6.05935e-06
1.02881e-06
6.78065e-06
1.205e-06
7.28834e-06
1.33971e-06
7.59975e-06
1.42767e-06
7.73545e-06
1.4678e-06
7.71751e-06
1.46237e-06
7.56807e-06
1.41609e-06
7.30825e-06
1.33521e-06
6.95746e-06
1.22687e-06
6.53295e-06
1.09848e-06
6.04972e-06
9.57301e-07
5.52049e-06
8.10152e-07
4.95587e-06
6.63209e-07
4.36457e-06
5.21907e-07
3.75366e-06
3.90889e-07
3.12883e-06
2.74003e-07
2.49463e-06
1.74324e-07
1.85475e-06
9.41862e-08
1.21221e-06
3.52238e-08
5.69561e-07
-1.59303e-09
-7.09236e-08
-1.593e-08
-7.07111e-07
-8.05656e-09
-1.33686e-06
2.11597e-08
-1.95787e-06
7.02637e-08
-2.56762e-06
1.37213e-07
-3.16318e-06
2.19374e-07
-3.74115e-06
3.13523e-07
-4.29753e-06
4.15854e-07
-4.82763e-06
5.21998e-07
-5.32594e-06
6.27077e-07
-5.78602e-06
7.2579e-07
-6.20039e-06
8.12551e-07
-6.56045e-06
8.81701e-07
-6.85634e-06
9.27795e-07
-7.07696e-06
9.45988e-07
-7.20991e-06
9.32517e-07
-7.24161e-06
8.8527e-07
-7.15753e-06
8.04426e-07
-6.94254e-06
6.9308e-07
-6.58154e-06
5.57797e-07
-6.06032e-06
4.08937e-07
-5.36675e-06
2.60607e-07
-4.49216e-06
1.30106e-07
-3.43286e-06
3.67616e-08
-2.19159e-06
-7.79829e-07
4.61523e-08
8.60156e-07
1.64707e-07
2.40929e-06
3.33721e-07
3.76511e-06
5.31134e-07
4.91486e-06
7.36488e-07
5.854e-06
9.32213e-07
6.58492e-06
1.10447e-06
7.11608e-06
1.2435e-06
7.46072e-06
1.34353e-06
7.63542e-06
1.40237e-06
7.65867e-06
1.42081e-06
7.54963e-06
1.40193e-06
7.32714e-06
1.3504e-06
7.00899e-06
1.27191e-06
6.61144e-06
1.17262e-06
6.149e-06
1.0588e-06
5.63432e-06
9.36448e-07
5.07822e-06
8.1116e-07
4.48986e-06
6.87954e-07
3.87687e-06
5.71206e-07
3.24557e-06
4.64613e-07
2.60122e-06
3.71194e-07
1.94817e-06
2.93301e-07
1.2901e-06
2.32642e-07
6.30221e-07
1.90308e-07
-2.85893e-08
1.66799e-07
-6.83602e-07
1.62042e-07
-1.3321e-06
1.75408e-07
-1.97124e-06
2.05721e-07
-2.59793e-06
2.51264e-07
-3.20872e-06
3.09786e-07
-3.79967e-06
3.78511e-07
-4.36625e-06
4.54153e-07
-4.90327e-06
5.3295e-07
-5.40474e-06
6.10725e-07
-5.8638e-06
6.82977e-07
-6.27265e-06
7.45015e-07
-6.62249e-06
7.92161e-07
-6.90349e-06
8.20002e-07
-7.1048e-06
8.24724e-07
-7.21463e-06
8.03517e-07
-7.22041e-06
7.55026e-07
-7.10904e-06
6.79837e-07
-6.86735e-06
5.8094e-07
-6.48264e-06
4.64088e-07
-5.94347e-06
3.37978e-07
-5.24064e-06
2.14121e-07
-4.3683e-06
1.06353e-07
-3.32509e-06
2.99117e-08
-2.11515e-06
-7.49917e-07
3.9908e-08
8.20248e-07
1.43216e-07
2.30599e-06
2.91905e-07
3.61642e-06
4.67755e-07
4.73901e-06
6.53621e-07
5.66813e-06
8.34453e-07
6.40409e-06
9.98007e-07
6.95253e-06
1.13522e-06
7.32351e-06
1.24025e-06
7.53039e-06
1.31024e-06
7.58868e-06
1.34493e-06
7.51494e-06
1.34614e-06
7.32593e-06
1.31724e-06
7.03789e-06
1.26263e-06
6.66605e-06
1.18733e-06
6.2243e-06
1.09659e-06
5.72505e-06
9.95626e-07
5.17919e-06
8.89363e-07
4.59612e-06
7.82333e-07
3.9839e-06
6.78556e-07
3.34935e-06
5.81501e-07
2.69827e-06
4.94054e-07
2.03561e-06
4.18521e-07
1.36563e-06
3.56639e-07
6.92103e-07
3.09587e-07
1.84624e-08
2.78011e-07
-6.52025e-07
2.62035e-07
-1.31612e-06
2.6128e-07
-1.97049e-06
2.74872e-07
-2.61153e-06
3.01454e-07
-3.2353e-06
3.39195e-07
-3.83741e-06
3.85803e-07
-4.41286e-06
4.38551e-07
-4.95602e-06
4.94308e-07
-5.4605e-06
5.49601e-07
-5.91909e-06
6.00706e-07
-6.32375e-06
6.43767e-07
-6.66555e-06
6.74973e-07
-6.93469e-06
6.9078e-07
-7.1206e-06
6.88188e-07
-7.21204e-06
6.65063e-07
-7.19728e-06
6.20499e-07
-7.06448e-06
5.55182e-07
-6.80203e-06
4.71725e-07
-6.39918e-06
3.74912e-07
-5.84666e-06
2.71782e-07
-5.13751e-06
1.71486e-07
-4.26801e-06
8.48786e-08
-3.23849e-06
2.37972e-08
-2.05407e-06
-7.2612e-07
3.41986e-08
7.8605e-07
1.23308e-07
2.21688e-06
2.5259e-07
3.48714e-06
4.0707e-07
4.58453e-06
5.72495e-07
5.50271e-06
7.36118e-07
6.24047e-06
8.87299e-07
6.80135e-06
1.01785e-06
7.19295e-06
1.12215e-06
7.42609e-06
1.19705e-06
7.51378e-06
1.24156e-06
7.47043e-06
1.25656e-06
7.31093e-06
1.24435e-06
7.05011e-06
1.20824e-06
6.70216e-06
1.15222e-06
6.28032e-06
1.08059e-06
5.79668e-06
9.97744e-07
5.26203e-06
9.0795e-07
4.68592e-06
8.15191e-07
4.07666e-06
7.23078e-07
3.44146e-06
6.34782e-07
2.78657e-06
5.52999e-07
2.1174e-06
4.79934e-07
1.4387e-06
4.17306e-07
7.54731e-07
3.66351e-07
6.9417e-08
3.27838e-07
-6.13513e-07
3.0208e-07
-1.29037e-06
2.88948e-07
-1.95735e-06
2.8788e-07
-2.61046e-06
2.97897e-07
-3.24532e-06
3.17607e-07
-3.85712e-06
3.45226e-07
-4.44048e-06
3.78597e-07
-4.98939e-06
4.15228e-07
-5.49713e-06
4.52338e-07
-5.9562e-06
4.86941e-07
-6.35835e-06
5.1595e-07
-6.69456e-06
5.36318e-07
-6.95506e-06
5.45224e-07
-7.12951e-06
5.40293e-07
-7.20711e-06
5.19856e-07
-7.17684e-06
4.8322e-07
-7.02784e-06
4.3095e-07
-6.74976e-06
3.6511e-07
-6.33334e-06
2.89423e-07
-5.77097e-06
2.09319e-07
-5.05741e-06
1.31803e-07
-4.19049e-06
6.51218e-08
-3.17181e-06
1.82297e-08
-2.00718e-06
-7.07891e-07
2.88944e-08
7.57155e-07
1.04611e-07
2.14116e-06
2.15212e-07
3.37654e-06
3.48522e-07
4.45122e-06
4.92839e-07
5.35839e-06
6.37533e-07
6.09578e-06
7.73529e-07
6.66535e-06
8.93627e-07
7.07286e-06
9.92635e-07
7.32708e-06
1.06734e-06
7.43908e-06
1.11634e-06
7.42142e-06
1.13982e-06
7.28745e-06
1.13921e-06
7.05071e-06
1.11692e-06
6.72445e-06
1.076e-06
6.32124e-06
1.0199e-06
5.85278e-06
9.52222e-07
5.32971e-06
8.76548e-07
4.76159e-06
7.96298e-07
4.15691e-06
7.14632e-07
3.52313e-06
6.34376e-07
2.86683e-06
5.57984e-07
2.19379e-06
4.87516e-07
1.50917e-06
4.24631e-07
8.17616e-07
3.70588e-07
1.23459e-07
3.26256e-07
-5.6918e-07
2.92118e-07
-1.25623e-06
2.6829e-07
-1.93352e-06
2.54521e-07
-2.59669e-06
2.50212e-07
-3.24101e-06
2.54421e-07
-3.86133e-06
2.65876e-07
-4.45194e-06
2.82995e-07
-5.00651e-06
3.03914e-07
-5.51804e-06
3.26527e-07
-5.97881e-06
3.48547e-07
-6.38037e-06
3.67587e-07
-6.7136e-06
3.81276e-07
-6.96875e-06
3.87395e-07
-7.13563e-06
3.84051e-07
-7.20376e-06
3.69868e-07
-7.16266e-06
3.442e-07
-7.00217e-06
3.07337e-07
-6.7129e-06
2.60676e-07
-6.28668e-06
2.06846e-07
-5.71714e-06
1.49726e-07
-5.00029e-06
9.43466e-08
-4.13511e-06
4.66441e-08
-3.1241e-06
1.30651e-08
-1.9736e-06
-6.94826e-07
2.38949e-08
7.3326e-07
8.68291e-08
2.07823e-06
1.79312e-07
3.28406e-06
2.91633e-07
4.33889e-06
4.14373e-07
5.23565e-06
5.38858e-07
5.97129e-06
6.57534e-07
6.54667e-06
7.64244e-07
6.96615e-06
8.54362e-07
7.23696e-06
9.24813e-07
7.36863e-06
9.73988e-07
7.37225e-06
1.00158e-06
7.25987e-06
1.00835e-06
7.04394e-06
9.9594e-07
6.73686e-06
9.66592e-07
6.35059e-06
9.22952e-07
5.89642e-06
8.67882e-07
5.38478e-06
8.04294e-07
4.82518e-06
7.35031e-07
4.22617e-06
6.62772e-07
3.59539e-06
5.89964e-07
2.93964e-06
5.18778e-07
2.26497e-06
4.51089e-07
1.57685e-06
3.88459e-07
8.80246e-07
3.32137e-07
1.79781e-07
2.83063e-07
-5.20106e-07
2.41873e-07
-1.21504e-06
2.08909e-07
-1.90056e-06
1.84226e-07
-2.57201e-06
1.676e-07
-3.22439e-06
1.58533e-07
-3.85226e-06
1.56265e-07
-4.44967e-06
1.59782e-07
-5.01003e-06
1.67837e-07
-5.5261e-06
1.78974e-07
-5.98995e-06
1.91568e-07
-6.39297e-06
2.03882e-07
-6.72591e-06
2.14145e-07
-6.97901e-06
2.20647e-07
-7.14213e-06
2.21866e-07
-7.20498e-06
2.16603e-07
-7.1574e-06
2.04139e-07
-6.98971e-06
1.84381e-07
-6.69314e-06
1.57995e-07
-6.2603e-06
1.26498e-07
-5.68564e-06
9.2277e-08
-4.96606e-06
5.85306e-08
-4.10137e-06
2.90979e-08
-3.09467e-06
8.19098e-09
-1.95269e-06
-6.86635e-07
1.91197e-08
7.14141e-07
6.9722e-08
2.02762e-06
1.44508e-07
3.20927e-06
2.35983e-07
4.24742e-06
3.36813e-07
5.13482e-06
4.40147e-07
5.86796e-06
5.39907e-07
6.44691e-06
6.31006e-07
6.87505e-06
7.09481e-07
7.15849e-06
7.72534e-07
7.30558e-06
8.185e-07
7.32628e-06
8.46747e-07
7.23162e-06
8.57532e-07
7.03315e-06
8.51838e-07
6.74255e-06
8.312e-07
6.37123e-06
7.97538e-07
5.93008e-06
7.53008e-07
5.42931e-06
6.99872e-07
4.87832e-06
6.40392e-07
4.28565e-06
5.76748e-07
3.65903e-06
5.10981e-07
3.0054e-06
4.44949e-07
2.33101e-06
3.80305e-07
1.6415e-06
3.1848e-07
9.42071e-07
2.6068e-07
2.37581e-07
2.07889e-07
-4.67315e-07
1.60871e-07
-1.16802e-06
1.20177e-07
-1.85987e-06
8.61489e-08
-2.53798e-06
5.89271e-08
-3.19716e-06
3.84503e-08
-3.83178e-06
2.44594e-08
-4.43568e-06
1.64999e-08
-5.00207e-06
1.39268e-08
-5.52353e-06
1.59139e-08
-5.99194e-06
2.14705e-08
-6.39852e-06
2.94686e-08
-6.73391e-06
3.86845e-08
-6.98823e-06
4.78555e-08
-7.1513e-06
5.57545e-08
-7.21288e-06
6.12806e-08
-7.16292e-06
6.3561e-08
-6.99199e-06
6.20577e-08
-6.69164e-06
5.66652e-08
-6.2549e-06
4.77863e-08
-5.67676e-06
3.6367e-08
-4.95465e-06
2.38736e-08
-4.08887e-06
1.22026e-08
-3.083e-06
3.5179e-09
-1.94401e-06
-6.83117e-07
1.45019e-08
6.99639e-07
5.30876e-08
1.98904e-06
1.1047e-07
3.15189e-06
1.81198e-07
4.17669e-06
2.59876e-07
5.05614e-06
3.4138e-07
5.78645e-06
4.21067e-07
6.36723e-06
4.94935e-07
6.80118e-06
5.59744e-07
7.09368e-06
6.13072e-07
7.25225e-06
6.53315e-07
7.28604e-06
6.7964e-07
7.20529e-06
6.91905e-07
7.02089e-06
6.90548e-07
6.74391e-06
6.76475e-07
6.3853e-06
6.50938e-07
5.95562e-06
6.15426e-07
5.46482e-06
5.71566e-07
4.92218e-06
5.21042e-07
4.33617e-06
4.65526e-07
3.71455e-06
4.06631e-07
3.0643e-06
3.45873e-07
2.39176e-06
2.84652e-07
1.70272e-06
2.24237e-07
1.00249e-06
1.6576e-07
2.96058e-07
1.10221e-07
-4.11775e-07
5.84825e-08
-1.11628e-06
1.12832e-08
-1.81267e-06
-3.07664e-08
-2.49593e-06
-6.71793e-08
-3.16075e-06
-9.75948e-08
-3.80137e-06
-1.21782e-07
-4.41149e-06
-1.39649e-07
-4.9842e-06
-1.5125e-07
-5.51193e-06
-1.56795e-07
-5.98639e-06
-1.56659e-07
-6.39866e-06
-1.51385e-07
-6.73918e-06
-1.41677e-07
-6.99793e-06
-1.28389e-07
-7.16459e-06
-1.12493e-07
-7.22878e-06
-9.50369e-08
-7.18038e-06
-7.70886e-08
-7.00994e-06
-5.96667e-08
-6.70906e-06
-4.36676e-08
-6.2709e-06
-2.97969e-08
-5.69063e-06
-1.85174e-08
-4.96592e-06
-1.00265e-08
-4.09736e-06
-4.27419e-09
-3.08875e-06
-1.02845e-09
-1.94725e-06
-6.84145e-07
9.98328e-09
6.89655e-07
3.67468e-08
1.96227e-06
7.69007e-08
3.11174e-06
1.26925e-07
4.12667e-06
1.8327e-07
4.9998e-06
2.42476e-07
5.72725e-06
3.01302e-07
6.3084e-06
3.56841e-07
6.74564e-06
4.06615e-07
7.0439e-06
4.4864e-07
7.21022e-06
4.81454e-07
7.25322e-06
5.04111e-07
7.18264e-06
5.16149e-07
7.00885e-06
5.17539e-07
6.74252e-06
5.08618e-07
6.39422e-06
4.90016e-07
5.97422e-06
4.62585e-07
5.49225e-06
4.27333e-07
4.95743e-06
3.85366e-07
4.37814e-06
3.3784e-07
3.76207e-06
2.8592e-07
3.11622e-06
2.3076e-07
2.44692e-06
1.73479e-07
1.76e-06
1.15152e-07
1.06081e-06
5.68099e-08
3.544e-07
-5.64948e-10
-3.544e-07
-5.60341e-08
-1.06081e-06
-1.087e-07
-1.76e-06
-1.57708e-07
-2.44692e-06
-2.02241e-07
-3.11622e-06
-2.41535e-07
-3.76207e-06
-2.74884e-07
-4.37814e-06
-3.01658e-07
-4.95743e-06
-3.2133e-07
-5.49225e-06
-3.33502e-07
-5.97422e-06
-3.37938e-07
-6.39422e-06
-3.34601e-07
-6.74252e-06
-3.23684e-07
-7.00885e-06
-3.05637e-07
-7.18264e-06
-2.81188e-07
-7.25322e-06
-2.51343e-07
-7.21022e-06
-2.17378e-07
-7.0439e-06
-1.808e-07
-6.74564e-06
-1.43301e-07
-6.3084e-06
-1.06689e-07
-5.72725e-06
-7.28178e-08
-4.9998e-06
-4.35154e-08
-4.12667e-06
-2.05315e-08
-3.11174e-06
-5.5098e-09
-1.96227e-06
-6.89655e-07
5.5098e-09
6.84145e-07
2.05315e-08
1.94725e-06
4.35155e-08
3.08875e-06
7.28179e-08
4.09736e-06
1.06689e-07
4.96593e-06
1.43301e-07
5.69063e-06
1.808e-07
6.2709e-06
2.17378e-07
6.70906e-06
2.51344e-07
7.00994e-06
2.81188e-07
7.18038e-06
3.05637e-07
7.22878e-06
3.23684e-07
7.16459e-06
3.34602e-07
6.99793e-06
3.37939e-07
6.73918e-06
3.33502e-07
6.39866e-06
3.21331e-07
5.98639e-06
3.01659e-07
5.51193e-06
2.74884e-07
4.9842e-06
2.41536e-07
4.41149e-06
2.02242e-07
3.80137e-06
1.57708e-07
3.16075e-06
1.08701e-07
2.49593e-06
5.60345e-08
1.81267e-06
5.65409e-10
1.11628e-06
-5.68095e-08
4.11775e-07
-1.15152e-07
-2.96058e-07
-1.73478e-07
-1.00249e-06
-2.3076e-07
-1.70272e-06
-2.8592e-07
-2.39176e-06
-3.37839e-07
-3.0643e-06
-3.85366e-07
-3.71455e-06
-4.27333e-07
-4.33617e-06
-4.62584e-07
-4.92218e-06
-4.90015e-07
-5.46482e-06
-5.08618e-07
-5.95562e-06
-5.17539e-07
-6.3853e-06
-5.16149e-07
-6.74391e-06
-5.04111e-07
-7.02089e-06
-4.81454e-07
-7.20529e-06
-4.4864e-07
-7.28604e-06
-4.06615e-07
-7.25225e-06
-3.56841e-07
-7.09368e-06
-3.01302e-07
-6.80118e-06
-2.42476e-07
-6.36723e-06
-1.8327e-07
-5.78645e-06
-1.26925e-07
-5.05614e-06
-7.69006e-08
-4.17669e-06
-3.67467e-08
-3.15189e-06
-9.98328e-09
-1.98904e-06
-6.99638e-07
1.02845e-09
6.83117e-07
4.27425e-09
1.94401e-06
1.00266e-08
3.083e-06
1.85175e-08
4.08887e-06
2.9797e-08
4.95465e-06
4.36677e-08
5.67676e-06
5.96669e-08
6.2549e-06
7.70888e-08
6.69164e-06
9.50371e-08
6.99199e-06
1.12493e-07
7.16292e-06
1.2839e-07
7.21288e-06
1.41678e-07
7.1513e-06
1.51385e-07
6.98823e-06
1.56659e-07
6.73391e-06
1.56795e-07
6.39852e-06
1.5125e-07
5.99194e-06
1.39649e-07
5.52353e-06
1.21783e-07
5.00207e-06
9.75952e-08
4.43568e-06
6.71798e-08
3.83178e-06
3.07668e-08
3.19716e-06
-1.12827e-08
2.53798e-06
-5.84821e-08
1.85987e-06
-1.1022e-07
1.16802e-06
-1.6576e-07
4.67315e-07
-2.24236e-07
-2.37581e-07
-2.84652e-07
-9.42071e-07
-3.45873e-07
-1.6415e-06
-4.0663e-07
-2.33101e-06
-4.65526e-07
-3.0054e-06
-5.21042e-07
-3.65903e-06
-5.71566e-07
-4.28565e-06
-6.15425e-07
-4.87832e-06
-6.50937e-07
-5.42931e-06
-6.76474e-07
-5.93008e-06
-6.90548e-07
-6.37123e-06
-6.91905e-07
-6.74255e-06
-6.7964e-07
-7.03315e-06
-6.53315e-07
-7.23162e-06
-6.13072e-07
-7.32628e-06
-5.59744e-07
-7.30558e-06
-4.94935e-07
-7.15849e-06
-4.21067e-07
-6.87505e-06
-3.4138e-07
-6.44691e-06
-2.59875e-07
-5.86796e-06
-1.81198e-07
-5.13482e-06
-1.1047e-07
-4.24742e-06
-5.30876e-08
-3.20927e-06
-1.45019e-08
-2.02762e-06
-7.1414e-07
-3.5179e-09
6.86635e-07
-1.22025e-08
1.95269e-06
-2.38736e-08
3.09467e-06
-3.63669e-08
4.10137e-06
-4.77862e-08
4.96607e-06
-5.6665e-08
5.68564e-06
-6.20575e-08
6.2603e-06
-6.35608e-08
6.69314e-06
-6.12803e-08
6.98971e-06
-5.57542e-08
7.1574e-06
-4.78552e-08
7.20498e-06
-3.86842e-08
7.14213e-06
-2.94683e-08
6.97901e-06
-2.14701e-08
6.72591e-06
-1.59135e-08
6.39297e-06
-1.39264e-08
5.98995e-06
-1.64995e-08
5.5261e-06
-2.4459e-08
5.01003e-06
-3.84499e-08
4.44967e-06
-5.89267e-08
3.85226e-06
-8.61484e-08
3.22439e-06
-1.20176e-07
2.57201e-06
-1.6087e-07
1.90056e-06
-2.07889e-07
1.21504e-06
-2.6068e-07
5.20106e-07
-3.1848e-07
-1.79781e-07
-3.80305e-07
-8.80246e-07
-4.44949e-07
-1.57685e-06
-5.1098e-07
-2.26497e-06
-5.76747e-07
-2.93964e-06
-6.40391e-07
-3.59539e-06
-6.99872e-07
-4.22617e-06
-7.53008e-07
-4.82518e-06
-7.97538e-07
-5.38478e-06
-8.31199e-07
-5.89642e-06
-8.51837e-07
-6.35059e-06
-8.57531e-07
-6.73686e-06
-8.46746e-07
-7.04394e-06
-8.185e-07
-7.25987e-06
-7.72534e-07
-7.37225e-06
-7.09481e-07
-7.36863e-06
-6.31006e-07
-7.23696e-06
-5.39907e-07
-6.96615e-06
-4.40147e-07
-6.54667e-06
-3.36813e-07
-5.97129e-06
-2.35983e-07
-5.23565e-06
-1.44508e-07
-4.33889e-06
-6.9722e-08
-3.28406e-06
-1.91197e-08
-2.07822e-06
-7.3326e-07
-8.19099e-09
6.94826e-07
-2.90979e-08
1.9736e-06
-5.85305e-08
3.1241e-06
-9.22769e-08
4.13511e-06
-1.26498e-07
5.00029e-06
-1.57995e-07
5.71714e-06
-1.84381e-07
6.28668e-06
-2.04139e-07
6.7129e-06
-2.16603e-07
7.00217e-06
-2.21865e-07
7.16266e-06
-2.20647e-07
7.20376e-06
-2.14145e-07
7.13563e-06
-2.03882e-07
6.96875e-06
-1.91568e-07
6.7136e-06
-1.78974e-07
6.38037e-06
-1.67837e-07
5.97881e-06
-1.59782e-07
5.51804e-06
-1.56264e-07
5.00651e-06
-1.58533e-07
4.45194e-06
-1.676e-07
3.86133e-06
-1.84226e-07
3.24101e-06
-2.08909e-07
2.59669e-06
-2.41872e-07
1.93352e-06
-2.83062e-07
1.25623e-06
-3.32137e-07
5.6918e-07
-3.88459e-07
-1.23459e-07
-4.51089e-07
-8.17616e-07
-5.18778e-07
-1.50916e-06
-5.89963e-07
-2.19379e-06
-6.62772e-07
-2.86683e-06
-7.35031e-07
-3.52313e-06
-8.04294e-07
-4.15691e-06
-8.67881e-07
-4.76159e-06
-9.22952e-07
-5.32971e-06
-9.66591e-07
-5.85278e-06
-9.9594e-07
-6.32124e-06
-1.00835e-06
-6.72445e-06
-1.00158e-06
-7.05071e-06
-9.73988e-07
-7.28745e-06
-9.24813e-07
-7.42142e-06
-8.54362e-07
-7.43908e-06
-7.64244e-07
-7.32708e-06
-6.57534e-07
-7.07285e-06
-5.38857e-07
-6.66535e-06
-4.14373e-07
-6.09577e-06
-2.91633e-07
-5.35839e-06
-1.79312e-07
-4.45121e-06
-8.6829e-08
-3.37654e-06
-2.38949e-08
-2.14116e-06
-7.57155e-07
-1.30651e-08
7.07891e-07
-4.6644e-08
2.00718e-06
-9.43466e-08
3.17181e-06
-1.49725e-07
4.19049e-06
-2.06846e-07
5.05741e-06
-2.60676e-07
5.77097e-06
-3.07337e-07
6.33334e-06
-3.442e-07
6.74977e-06
-3.69867e-07
7.02784e-06
-3.8405e-07
7.17684e-06
-3.87395e-07
7.20711e-06
-3.81276e-07
7.12951e-06
-3.67587e-07
6.95506e-06
-3.48546e-07
6.69456e-06
-3.26527e-07
6.35835e-06
-3.03914e-07
5.9562e-06
-2.82995e-07
5.49713e-06
-2.65876e-07
4.98939e-06
-2.54421e-07
4.44048e-06
-2.50212e-07
3.85712e-06
-2.54521e-07
3.24532e-06
-2.68289e-07
2.61046e-06
-2.92118e-07
1.95735e-06
-3.26255e-07
1.29037e-06
-3.70588e-07
6.13513e-07
-4.2463e-07
-6.94169e-08
-4.87515e-07
-7.54731e-07
-5.57983e-07
-1.4387e-06
-6.34375e-07
-2.1174e-06
-7.14632e-07
-2.78657e-06
-7.96298e-07
-3.44146e-06
-8.76547e-07
-4.07666e-06
-9.52222e-07
-4.68592e-06
-1.0199e-06
-5.26203e-06
-1.076e-06
-5.79668e-06
-1.11692e-06
-6.28032e-06
-1.13921e-06
-6.70216e-06
-1.13982e-06
-7.05011e-06
-1.11634e-06
-7.31093e-06
-1.06734e-06
-7.47043e-06
-9.92634e-07
-7.51378e-06
-8.93627e-07
-7.42609e-06
-7.73529e-07
-7.19295e-06
-6.37533e-07
-6.80135e-06
-4.92839e-07
-6.24047e-06
-3.48522e-07
-5.50271e-06
-2.15212e-07
-4.58453e-06
-1.04611e-07
-3.48714e-06
-2.88944e-08
-2.21688e-06
-7.86049e-07
-1.82297e-08
7.2612e-07
-6.51218e-08
2.05407e-06
-1.31803e-07
3.23849e-06
-2.09319e-07
4.26801e-06
-2.89423e-07
5.13751e-06
-3.65109e-07
5.84666e-06
-4.3095e-07
6.39918e-06
-4.8322e-07
6.80203e-06
-5.19856e-07
7.06448e-06
-5.40293e-07
7.19728e-06
-5.45223e-07
7.21204e-06
-5.36317e-07
7.1206e-06
-5.1595e-07
6.93469e-06
-4.86941e-07
6.66555e-06
-4.52337e-07
6.32375e-06
-4.15227e-07
5.91909e-06
-3.78597e-07
5.4605e-06
-3.45226e-07
4.95602e-06
-3.17607e-07
4.41286e-06
-2.97896e-07
3.83741e-06
-2.8788e-07
3.2353e-06
-2.88947e-07
2.61153e-06
-3.0208e-07
1.97049e-06
-3.27838e-07
1.31612e-06
-3.66351e-07
6.52026e-07
-4.17305e-07
-1.84623e-08
-4.79933e-07
-6.92103e-07
-5.52998e-07
-1.36563e-06
-6.34782e-07
-2.03561e-06
-7.23078e-07
-2.69827e-06
-8.15191e-07
-3.34935e-06
-9.0795e-07
-3.9839e-06
-9.97744e-07
-4.59612e-06
-1.08059e-06
-5.17919e-06
-1.15222e-06
-5.72505e-06
-1.20824e-06
-6.2243e-06
-1.24435e-06
-6.66605e-06
-1.25656e-06
-7.03789e-06
-1.24156e-06
-7.32593e-06
-1.19705e-06
-7.51494e-06
-1.12215e-06
-7.58868e-06
-1.01785e-06
-7.53039e-06
-8.87298e-07
-7.3235e-06
-7.36118e-07
-6.95253e-06
-5.72494e-07
-6.40409e-06
-4.0707e-07
-5.66813e-06
-2.5259e-07
-4.73901e-06
-1.23308e-07
-3.61642e-06
-3.41986e-08
-2.30599e-06
-8.20248e-07
-2.37972e-08
7.49917e-07
-8.48785e-08
2.11515e-06
-1.71486e-07
3.32509e-06
-2.71781e-07
4.3683e-06
-3.74912e-07
5.24064e-06
-4.71725e-07
5.94347e-06
-5.55182e-07
6.48264e-06
-6.20499e-07
6.86735e-06
-6.65063e-07
7.10904e-06
-6.88188e-07
7.22041e-06
-6.9078e-07
7.21463e-06
-6.74973e-07
7.1048e-06
-6.43766e-07
6.90349e-06
-6.00705e-07
6.62249e-06
-5.49601e-07
6.27265e-06
-4.94307e-07
5.8638e-06
-4.38551e-07
5.40474e-06
-3.85803e-07
4.90327e-06
-3.39194e-07
4.36625e-06
-3.01453e-07
3.79967e-06
-2.74871e-07
3.20872e-06
-2.61279e-07
2.59793e-06
-2.62034e-07
1.97124e-06
-2.7801e-07
1.3321e-06
-3.09587e-07
6.83602e-07
-3.56638e-07
2.85894e-08
-4.18521e-07
-6.3022e-07
-4.94053e-07
-1.2901e-06
-5.815e-07
-1.94817e-06
-6.78556e-07
-2.60122e-06
-7.82332e-07
-3.24557e-06
-8.89363e-07
-3.87687e-06
-9.95626e-07
-4.48986e-06
-1.09659e-06
-5.07822e-06
-1.18733e-06
-5.63432e-06
-1.26263e-06
-6.149e-06
-1.31724e-06
-6.61144e-06
-1.34614e-06
-7.00899e-06
-1.34493e-06
-7.32714e-06
-1.31024e-06
-7.54963e-06
-1.24025e-06
-7.65867e-06
-1.13522e-06
-7.63542e-06
-9.98007e-07
-7.46072e-06
-8.34453e-07
-7.11608e-06
-6.53621e-07
-6.58492e-06
-4.67755e-07
-5.854e-06
-2.91905e-07
-4.91485e-06
-1.43216e-07
-3.76511e-06
-3.9908e-08
-2.40929e-06
-8.60156e-07
-2.99117e-08
7.79829e-07
-1.06353e-07
2.19159e-06
-2.14121e-07
3.43286e-06
-3.37978e-07
4.49216e-06
-4.64088e-07
5.36675e-06
-5.8094e-07
6.06032e-06
-6.79837e-07
6.58154e-06
-7.55026e-07
6.94254e-06
-8.03517e-07
7.15753e-06
-8.24724e-07
7.24161e-06
-8.20001e-07
7.20991e-06
-7.92161e-07
7.07696e-06
-7.45015e-07
6.85634e-06
-6.82976e-07
6.56045e-06
-6.10725e-07
6.20039e-06
-5.3295e-07
5.78602e-06
-4.54152e-07
5.32594e-06
-3.78511e-07
4.82763e-06
-3.09786e-07
4.29753e-06
-2.51263e-07
3.74115e-06
-2.0572e-07
3.16318e-06
-1.75408e-07
2.56762e-06
-1.62042e-07
1.95787e-06
-1.66799e-07
1.33686e-06
-1.90307e-07
7.07111e-07
-2.32642e-07
7.09237e-08
-2.93301e-07
-5.69561e-07
-3.71194e-07
-1.21221e-06
-4.64613e-07
-1.85475e-06
-5.71205e-07
-2.49463e-06
-6.87954e-07
-3.12883e-06
-8.11159e-07
-3.75366e-06
-9.36447e-07
-4.36457e-06
-1.0588e-06
-4.95587e-06
-1.17262e-06
-5.52049e-06
-1.27191e-06
-6.04972e-06
-1.3504e-06
-6.53295e-06
-1.40193e-06
-6.95746e-06
-1.42081e-06
-7.30825e-06
-1.40237e-06
-7.56807e-06
-1.34353e-06
-7.71751e-06
-1.2435e-06
-7.73545e-06
-1.10447e-06
-7.59975e-06
-9.32213e-07
-7.28834e-06
-7.36487e-07
-6.78065e-06
-5.31134e-07
-6.05935e-06
-3.33721e-07
-5.11227e-06
-1.64707e-07
-3.93413e-06
-4.61523e-08
-2.52785e-06
-9.06308e-07
-3.67617e-08
8.16591e-07
-1.30106e-07
2.28493e-06
-2.60607e-07
3.56336e-06
-4.08937e-07
4.64049e-06
-5.57797e-07
5.51561e-06
-6.93079e-07
6.1956e-06
-8.04425e-07
6.69288e-06
-8.8527e-07
7.02339e-06
-9.32517e-07
7.20478e-06
-9.45988e-07
7.25508e-06
-9.27795e-07
7.19171e-06
-8.81701e-07
7.03086e-06
-8.12551e-07
6.78719e-06
-7.25789e-07
6.47369e-06
-6.27077e-07
6.10168e-06
-5.21998e-07
5.68094e-06
-4.15853e-07
5.2198e-06
-3.13523e-07
4.7253e-06
-2.19373e-07
4.20338e-06
-1.37212e-07
3.65898e-06
-7.02634e-08
3.09623e-06
-2.11594e-08
2.51852e-06
8.05691e-09
1.92866e-06
1.59304e-08
1.32898e-06
1.59338e-09
7.21448e-07
-3.52235e-08
1.07741e-07
-9.41859e-08
-5.10599e-07
-1.74324e-07
-1.13207e-06
-2.74002e-07
-1.75507e-06
-3.90888e-07
-2.37774e-06
-5.21906e-07
-2.99781e-06
-6.63209e-07
-3.61236e-06
-8.10151e-07
-4.21763e-06
-9.57301e-07
-4.80872e-06
-1.09848e-06
-5.37931e-06
-1.22687e-06
-5.92133e-06
-1.33521e-06
-6.42461e-06
-1.41609e-06
-6.87658e-06
-1.46237e-06
-7.26197e-06
-1.4678e-06
-7.56265e-06
-1.42767e-06
-7.75764e-06
-1.33971e-06
-7.8234e-06
-1.205e-06
-7.73446e-06
-1.02881e-06
-7.46453e-06
-8.21313e-07
-6.98815e-06
-5.97857e-07
-6.28281e-06
-3.78743e-07
-5.33138e-06
-1.88266e-07
-4.1246e-06
-5.31029e-08
-2.66301e-06
-9.59411e-07
-4.45984e-08
8.61189e-07
-1.56866e-07
2.3972e-06
-3.12071e-07
3.71857e-06
-4.85872e-07
4.81429e-06
-6.56909e-07
5.68665e-06
-8.08246e-07
6.34694e-06
-9.27932e-07
6.81257e-06
-1.00888e-06
7.10433e-06
-1.04827e-06
7.24417e-06
-1.04677e-06
7.25358e-06
-1.00763e-06
7.15258e-06
-9.35912e-07
6.95914e-06
-8.37735e-07
6.68901e-06
-7.19751e-07
6.3557e-06
-5.887e-07
5.97063e-06
-4.51108e-07
5.54335e-06
-3.13072e-07
5.08176e-06
-1.80142e-07
4.59237e-06
-5.72384e-08
4.08048e-06
5.13707e-08
3.55038e-06
1.42079e-07
3.00552e-06
2.11933e-07
2.44866e-06
2.58613e-07
1.88198e-06
2.80426e-07
1.30717e-06
2.7629e-07
7.25583e-07
2.45741e-07
1.38289e-07
1.88944e-07
-4.53802e-07
1.06717e-07
-1.04984e-06
5.66837e-10
-1.64892e-06
-1.27256e-07
-2.24992e-06
-2.73711e-07
-2.85135e-06
-4.34903e-07
-3.45117e-06
-6.06033e-07
-4.0465e-06
-7.81365e-07
-4.63339e-06
-9.54231e-07
-5.20645e-06
-1.11709e-06
-5.75847e-06
-1.2617e-06
-6.28001e-06
-1.37934e-06
-6.75894e-06
-1.46128e-06
-7.18002e-06
-1.49941e-06
-7.52452e-06
-1.48701e-06
-7.77005e-06
-1.4198e-06
-7.89061e-06
-1.29715e-06
-7.85711e-06
-1.12325e-06
-7.63843e-06
-9.082e-07
-7.2032e-06
-6.68668e-07
-6.52234e-06
-4.27857e-07
-5.57219e-06
-2.14528e-07
-4.33793e-06
-6.09916e-08
-2.81655e-06
-1.0204e-06
-5.37641e-08
9.14953e-07
-1.87592e-07
2.53103e-06
-3.69924e-07
3.9009e-06
-5.70173e-07
5.01454e-06
-7.6221e-07
5.87868e-06
-9.26083e-07
6.51081e-06
-1.04847e-06
6.93495e-06
-1.12221e-06
7.17807e-06
-1.14537e-06
7.26733e-06
-1.12e-06
7.22822e-06
-1.05101e-06
7.08359e-06
-9.45115e-07
6.85324e-06
-8.0999e-07
6.55389e-06
-6.53654e-07
6.19937e-06
-4.84001e-07
5.80098e-06
-3.08502e-07
5.36785e-06
-1.34012e-07
4.90727e-06
3.33247e-08
4.42503e-06
1.8812e-07
3.92568e-06
3.25743e-07
3.41275e-06
4.42298e-07
2.88897e-06
5.34593e-07
2.35637e-06
6.00108e-07
1.81646e-06
6.36964e-07
1.27031e-06
6.43906e-07
7.18641e-07
6.20297e-07
1.61898e-07
5.66125e-07
-3.9963e-07
4.82028e-07
-9.65745e-07
3.6934e-07
-1.53623e-06
2.30145e-07
-2.11072e-06
6.7351e-08
-2.68856e-06
-1.15223e-07
-3.26859e-06
-3.12768e-07
-3.84896e-06
-5.19401e-07
-4.42676e-06
-7.28121e-07
-4.99773e-06
-9.30804e-07
-5.55578e-06
-1.11829e-06
-6.09252e-06
-1.28061e-06
-6.59663e-06
-1.40733e-06
-7.0533e-06
-1.48822e-06
-7.44363e-06
-1.51414e-06
-7.74413e-06
-1.47822e-06
-7.92653e-06
-1.37735e-06
-7.95798e-06
-1.21384e-06
-7.80194e-06
-9.96995e-07
-7.42004e-06
-7.44383e-07
-6.77495e-06
-4.82185e-07
-5.83439e-06
-2.44343e-07
-4.57577e-06
-7.01386e-08
-2.99075e-06
-1.09054e-06
-6.47354e-08
9.79688e-07
-2.23561e-07
2.68985e-06
-4.35926e-07
4.11327e-06
-6.63373e-07
5.24199e-06
-8.74199e-07
6.08951e-06
-1.04538e-06
6.682e-06
-1.1627e-06
7.05227e-06
-1.21969e-06
7.23506e-06
-1.21607e-06
7.26371e-06
-1.15606e-06
7.1682e-06
-1.04678e-06
6.97431e-06
-8.9702e-07
6.70349e-06
-7.16278e-07
6.37315e-06
-5.14054e-07
5.99714e-06
-2.99417e-07
5.58634e-06
-8.07269e-08
5.14916e-06
1.34502e-07
4.69204e-06
3.39659e-07
4.21988e-06
5.29025e-07
3.73631e-06
6.97739e-07
3.24404e-06
8.41744e-07
2.74496e-06
9.57722e-07
2.24039e-06
1.04305e-06
1.73114e-06
1.09573e-06
1.21763e-06
1.11439e-06
6.99975e-07
1.09826e-06
1.78032e-07
1.04715e-06
-3.48515e-07
9.61489e-07
-8.80089e-07
8.42397e-07
-1.41714e-06
6.91711e-07
-1.96004e-06
5.12096e-07
-2.50894e-06
3.07146e-07
-3.06364e-06
8.15086e-08
-3.62332e-06
-1.58991e-07
-4.18626e-06
-4.07232e-07
-4.74948e-06
-6.54724e-07
-5.30829e-06
-8.9159e-07
-5.85565e-06
-1.10669e-06
-6.38152e-06
-1.28792e-06
-6.87207e-06
-1.42277e-06
-7.30877e-06
-1.49927e-06
-7.66763e-06
-1.50728e-06
-7.91852e-06
-1.44034e-06
-8.02492e-06
-1.29777e-06
-7.94451e-06
-1.08704e-06
-7.63077e-06
-8.25824e-07
-7.03617e-06
-5.43134e-07
-6.11708e-06
-2.78859e-07
-4.84005e-06
-8.09973e-08
-3.18861e-06
-1.17154e-06
-7.81946e-08
1.05788e-06
-2.66499e-07
2.87816e-06
-5.1226e-07
4.35903e-06
-7.67023e-07
5.49675e-06
-9.92693e-07
6.31518e-06
-1.16343e-06
6.85273e-06
-1.265e-06
7.15384e-06
-1.29279e-06
7.26285e-06
-1.2493e-06
7.22022e-06
-1.14178e-06
7.06068e-06
-9.80248e-07
6.81278e-06
-7.75991e-07
6.49923e-06
-5.40503e-07
6.13766e-06
-2.84814e-07
5.74145e-06
-1.9091e-08
5.32062e-06
2.47557e-07
4.88251e-06
5.0714e-07
4.43246e-06
7.52771e-07
3.97425e-06
9.78593e-07
3.51049e-06
1.1797e-06
3.04293e-06
1.35202e-06
2.57264e-06
1.49226e-06
2.10015e-06
1.5978e-06
1.6256e-06
1.66663e-06
1.1488e-06
1.69733e-06
6.69276e-07
1.68901e-06
1.8635e-07
1.64134e-06
-3.00841e-07
1.55454e-06
-7.93286e-07
1.42944e-06
-1.29204e-06
1.26757e-06
-1.79817e-06
1.07123e-06
-2.3126e-06
8.43633e-07
-2.83604e-06
5.89054e-07
-3.36874e-06
3.13021e-07
-3.91022e-06
2.24885e-08
-4.45895e-06
-2.73986e-07
-5.01182e-06
-5.66116e-07
-5.56352e-06
-8.41858e-07
-6.10578e-06
-1.08757e-06
-6.62636e-06
-1.28844e-06
-7.1079e-06
-1.42936e-06
-7.52672e-06
-1.49628e-06
-7.85159e-06
-1.47832e-06
-8.04288e-06
-1.37045e-06
-8.05239e-06
-1.17674e-06
-7.82448e-06
-9.13646e-07
-7.29926e-06
-6.12441e-07
-6.41829e-06
-3.19652e-07
-5.13284e-06
-9.42267e-08
-3.41404e-06
-1.26576e-06
-9.51508e-08
1.15303e-06
-3.18768e-07
3.10178e-06
-6.01563e-07
4.64182e-06
-8.82384e-07
5.77757e-06
-1.11611e-06
6.54891e-06
-1.27493e-06
7.01155e-06
-1.34615e-06
7.22506e-06
-1.32867e-06
7.24537e-06
-1.22923e-06
7.12079e-06
-1.05921e-06
6.89065e-06
-8.32163e-07
6.58573e-06
-5.62199e-07
6.22927e-06
-2.62884e-07
5.83834e-06
5.33342e-08
5.42524e-06
3.75399e-07
4.99855e-06
6.93715e-07
4.5642e-06
1.0001e-06
4.12608e-06
1.28765e-06
3.68669e-06
1.55063e-06
3.24751e-06
1.7843e-06
2.80927e-06
1.98479e-06
2.37215e-06
2.14897e-06
1.93597e-06
2.27437e-06
1.5002e-06
2.35908e-06
1.06409e-06
2.40168e-06
6.26672e-07
2.40125e-06
1.86777e-07
2.35733e-06
-2.56915e-07
2.26991e-06
-7.0587e-07
2.13953e-06
-1.16167e-06
1.96732e-06
-1.62595e-06
1.75509e-06
-2.10038e-06
1.50552e-06
-2.58647e-06
1.22229e-06
-3.08551e-06
9.1035e-07
-3.59828e-06
5.76139e-07
-4.12474e-06
2.2788e-07
-4.66356e-06
-1.24163e-07
-5.21148e-06
-4.67479e-07
-5.76247e-06
-7.87249e-07
-6.30659e-06
-1.06656e-06
-6.82859e-06
-1.28705e-06
-7.30622e-06
-1.43024e-06
-7.7084e-06
-1.47971e-06
-7.99342e-06
-1.42435e-06
-8.10774e-06
-1.26274e-06
-7.9861e-06
-1.00796e-06
-7.55404e-06
-6.92175e-07
-6.73407e-06
-3.68901e-07
-5.45611e-06
-1.10815e-07
-3.67212e-06
-1.37658e-06
-1.17149e-07
1.27018e-06
-3.83628e-07
3.36825e-06
-7.06862e-07
4.96506e-06
-1.00976e-06
6.08047e-06
-1.24017e-06
6.77932e-06
-1.37019e-06
7.14157e-06
-1.39124e-06
7.24611e-06
-1.30808e-06
7.16222e-06
-1.13348e-06
6.94619e-06
-8.84048e-07
6.64122e-06
-5.7745e-07
6.27914e-06
-2.30721e-07
5.88254e-06
1.40661e-07
5.46696e-06
5.23151e-07
5.04274e-06
9.05202e-07
4.6165e-06
1.27714e-06
4.19225e-06
1.63098e-06
3.77224e-06
1.96016e-06
3.35751e-06
2.25937e-06
2.94831e-06
2.5243e-06
2.54434e-06
2.75148e-06
2.14497e-06
2.93814e-06
1.7493e-06
3.0821e-06
1.35624e-06
3.18165e-06
9.64549e-07
3.23548e-06
5.72837e-07
3.24269e-06
1.79571e-07
3.2027e-06
-2.16928e-07
3.11533e-06
-6.18492e-07
2.98076e-06
-1.0271e-06
2.79967e-06
-1.44486e-06
2.5733e-06
-1.87401e-06
2.30361e-06
-2.31678e-06
1.99349e-06
-2.77539e-06
1.64698e-06
-3.25178e-06
1.26964e-06
-3.7474e-06
8.68852e-07
-4.26277e-06
4.5429e-07
-4.79691e-06
3.82951e-08
-5.34647e-06
-3.63778e-07
-5.90452e-06
-7.33431e-07
-6.45894e-06
-1.04932e-06
-6.99034e-06
-1.28824e-06
-7.46948e-06
-1.42726e-06
-7.8544e-06
-1.44731e-06
-8.08769e-06
-1.33858e-06
-8.09482e-06
-1.10756e-06
-7.78505e-06
-7.84594e-07
-7.05704e-06
-4.29634e-07
-5.81107e-06
-1.32295e-07
-3.96946e-06
-1.50888e-06
-1.46644e-07
1.41683e-06
-4.65581e-07
3.68719e-06
-8.31202e-07
5.33068e-06
-1.14709e-06
6.39636e-06
-1.35555e-06
6.98778e-06
-1.43228e-06
7.2183e-06
-1.37671e-06
7.19054e-06
-1.2026e-06
6.98811e-06
-9.3069e-07
6.67427e-06
-5.83787e-07
6.29432e-06
-1.83881e-07
5.87923e-06
2.49331e-07
5.44933e-06
6.98981e-07
5.01731e-06
1.15105e-06
4.59067e-06
1.59413e-06
4.17342e-06
2.01905e-06
3.76734e-06
2.4185e-06
3.37279e-06
2.7867e-06
2.98931e-06
3.1191e-06
2.61591e-06
3.4121e-06
2.25134e-06
3.66287e-06
1.89419e-06
3.86919e-06
1.54298e-06
4.02928e-06
1.19615e-06
4.14174e-06
8.52082e-07
4.20549e-06
5.09089e-07
4.21968e-06
1.65387e-07
4.18368e-06
-1.80933e-07
4.09712e-06
-5.3193e-07
3.95986e-06
-8.89836e-07
3.77207e-06
-1.25708e-06
3.53434e-06
-1.63628e-06
3.2478e-06
-2.03024e-06
2.91431e-06
-2.4419e-06
2.53675e-06
-2.87422e-06
2.11935e-06
-3.32999e-06
1.66813e-06
-3.81155e-06
1.19147e-06
-4.32026e-06
7.00699e-07
-4.8557e-06
2.10753e-07
-5.41457e-06
-2.5925e-07
-5.98893e-06
-6.85752e-07
-6.56384e-06
-1.04116e-06
-7.11407e-06
-1.29544e-06
-7.60012e-06
-1.41967e-06
-7.96346e-06
-1.39227e-06
-8.12222e-06
-1.20837e-06
-7.96895e-06
-8.9165e-07
-7.37376e-06
-5.06029e-07
-6.19669e-06
-1.61126e-07
-4.31437e-06
-1.67e-06
-1.87654e-07
1.60448e-06
-5.70685e-07
4.07022e-06
-9.76479e-07
5.73647e-06
-1.28703e-06
6.70691e-06
-1.44368e-06
7.14443e-06
-1.43229e-06
7.2069e-06
-1.26587e-06
7.02412e-06
-9.70804e-07
6.69304e-06
-5.77594e-07
6.28106e-06
-1.15652e-07
5.83237e-06
3.89182e-07
5.3744e-06
9.15426e-07
4.92308e-06
1.44584e-06
4.4869e-06
1.96693e-06
4.06959e-06
2.46826e-06
3.67209e-06
2.94191e-06
3.29369e-06
3.38184e-06
2.93286e-06
3.78351e-06
2.58763e-06
4.14349e-06
2.25593e-06
4.45917e-06
1.93566e-06
4.72856e-06
1.6248e-06
4.95012e-06
1.32142e-06
5.12263e-06
1.02364e-06
5.24512e-06
7.29598e-07
5.31675e-06
4.3746e-07
5.33681e-06
1.45321e-07
5.30469e-06
-1.48813e-07
5.21984e-06
-4.47079e-07
5.08181e-06
-7.51803e-07
4.89028e-06
-1.06554e-06
4.64512e-06
-1.39113e-06
4.34656e-06
-1.73168e-06
3.99529e-06
-2.09063e-06
3.59275e-06
-2.47168e-06
3.14148e-06
-2.87873e-06
2.64561e-06
-3.31568e-06
2.11143e-06
-3.78608e-06
1.54824e-06
-4.29251e-06
9.69309e-07
-4.83563e-06
3.92888e-07
-5.41251e-06
-1.56765e-07
-6.01418e-06
-6.48866e-07
-6.62197e-06
-1.04665e-06
-7.20234e-06
-1.31008e-06
-7.70003e-06
-1.40216e-06
-8.03014e-06
-1.30032e-06
-8.07079e-06
-1.01361e-06
-7.66048e-06
-6.03632e-07
-6.60667e-06
-2.01352e-07
-4.71665e-06
-1.87135e-06
-2.46871e-07
1.85135e-06
-7.06438e-07
4.52979e-06
-1.14034e-06
6.17038e-06
-1.41108e-06
6.97764e-06
-1.46952e-06
7.20288e-06
-1.3221e-06
7.05948e-06
-1.00259e-06
6.70461e-06
-5.53466e-07
6.24392e-06
-1.57855e-08
5.74338e-06
5.75284e-07
5.2413e-06
1.19162e-06
4.75806e-06
1.81168e-06
4.30302e-06
2.41946e-06
3.87911e-06
3.00334e-06
3.48571e-06
3.55497e-06
3.12045e-06
4.06847e-06
2.7802e-06
4.5397e-06
2.46163e-06
4.9658e-06
2.16153e-06
5.34478e-06
1.87696e-06
5.67523e-06
1.60521e-06
5.95618e-06
1.34386e-06
6.18689e-06
1.09071e-06
6.36679e-06
8.4374e-07
6.49536e-06
6.01028e-07
6.5721e-06
3.60711e-07
6.5965e-06
1.2092e-07
6.56798e-06
-1.20283e-07
6.48586e-06
-3.64962e-07
6.34942e-06
-6.15369e-07
6.15789e-06
-8.74005e-07
5.91045e-06
-1.14369e-06
5.60637e-06
-1.4276e-06
5.24513e-06
-1.72938e-06
4.82659e-06
-2.05313e-06
4.35131e-06
-2.40345e-06
3.82102e-06
-2.78539e-06
3.23923e-06
-3.20429e-06
2.61213e-06
-3.66542e-06
1.94978e-06
-4.17328e-06
1.26761e-06
-4.73034e-06
5.88208e-07
-5.33478e-06
-5.69379e-08
-5.97683e-06
-6.263e-07
-6.63298e-06
-1.06905e-06
-7.25727e-06
-1.32996e-06
-7.76923e-06
-1.36133e-06
-8.03942e-06
-1.14558e-06
-7.87623e-06
-7.2901e-07
-7.02324e-06
-2.59702e-07
-5.18595e-06
-2.13106e-06
-3.35331e-07
2.18668e-06
-8.79848e-07
5.07431e-06
-1.30847e-06
6.599e-06
-1.47797e-06
7.14714e-06
-1.36896e-06
7.09387e-06
-1.02334e-06
6.71386e-06
-5.02966e-07
6.18424e-06
1.31902e-07
5.60906e-06
8.31292e-07
5.04399e-06
1.55721e-06
4.51539e-06
2.28233e-06
4.03294e-06
2.98781e-06
3.59755e-06
3.66105e-06
3.20587e-06
4.29391e-06
2.85286e-06
4.88129e-06
2.53307e-06
5.42016e-06
2.24133e-06
5.90881e-06
1.97298e-06
6.34638e-06
1.72396e-06
6.73254e-06
1.49079e-06
7.06725e-06
1.2705e-06
7.35058e-06
1.06052e-06
7.58266e-06
8.58628e-07
7.76358e-06
6.62824e-07
7.89332e-06
4.7129e-07
7.97173e-06
2.82299e-07
7.9985e-06
9.41445e-08
7.97314e-06
-9.49177e-08
7.89491e-06
-2.86739e-07
7.76289e-06
-4.83343e-07
7.57588e-06
-6.86998e-07
7.33249e-06
-9.00293e-07
7.03111e-06
-1.12623e-06
6.67003e-06
-1.3683e-06
6.24751e-06
-1.63062e-06
5.76206e-06
-1.918e-06
5.21271e-06
-2.23604e-06
4.59965e-06
-2.59122e-06
3.92497e-06
-2.99074e-06
3.19401e-06
-3.44232e-06
2.41707e-06
-3.9534e-06
1.61188e-06
-4.52958e-06
8.06638e-07
-5.17159e-06
4.33513e-08
-5.86969e-06
-6.19781e-07
-6.59414e-06
-1.10928e-06
-7.27973e-06
-1.34583e-06
-7.80287e-06
-1.26932e-06
-7.95274e-06
-8.87311e-07
-7.40525e-06
-3.47149e-07
-5.72612e-06
-2.4782e-06
-4.69637e-07
2.65632e-06
-1.08931e-06
5.69398e-06
-1.43632e-06
6.946e-06
-1.40131e-06
7.11214e-06
-1.02843e-06
6.72098e-06
-4.11924e-07
6.09735e-06
3.5445e-07
5.41787e-06
1.19603e-06
4.76748e-06
2.05977e-06
4.18025e-06
2.9107e-06
3.66446e-06
3.72712e-06
3.21651e-06
4.49644e-06
2.82823e-06
5.21191e-06
2.49039e-06
5.8705e-06
2.19427e-06
6.47134e-06
1.93223e-06
7.01482e-06
1.69786e-06
7.50193e-06
1.48586e-06
7.93399e-06
1.2919e-06
8.31233e-06
1.11245e-06
8.63822e-06
9.4461e-07
8.91278e-06
7.85964e-07
9.13693e-06
6.3448e-07
9.31136e-06
4.88397e-07
9.43651e-06
3.46137e-07
9.51258e-06
2.06233e-07
9.53946e-06
6.72605e-08
9.51677e-06
-7.22233e-08
9.44377e-06
-2.13745e-07
9.3194e-06
-3.58975e-07
9.14221e-06
-5.098e-07
8.91031e-06
-6.68403e-07
8.62144e-06
-8.37351e-07
8.27285e-06
-1.01971e-06
7.86142e-06
-1.21919e-06
7.38369e-06
-1.44027e-06
6.83609e-06
-1.68844e-06
6.21524e-06
-1.97037e-06
5.51863e-06
-2.29413e-06
4.74563e-06
-2.66932e-06
3.89923e-06
-3.10701e-06
2.98874e-06
-3.61909e-06
2.03373e-06
-4.21658e-06
1.06956e-06
-4.90552e-06
1.53889e-07
-5.67846e-06
-6.27848e-07
-6.498e-06
-1.16355e-06
-7.26717e-06
-1.33454e-06
-7.78176e-06
-1.07309e-06
-7.66669e-06
-4.79629e-07
-6.31958e-06
-2.95783e-06
-6.66611e-07
3.32293e-06
-1.29714e-06
6.32451e-06
-1.40729e-06
7.05616e-06
-1.00882e-06
6.71366e-06
-2.54046e-07
5.96621e-06
7.00652e-07
5.14265e-06
1.73729e-06
4.38123e-06
2.77943e-06
3.72533e-06
3.78271e-06
3.17698e-06
4.72401e-06
2.72315e-06
5.59324e-06
2.34728e-06
6.38769e-06
2.03379e-06
7.10858e-06
1.7695e-06
7.759e-06
1.54385e-06
8.34275e-06
1.34848e-06
8.8637e-06
1.17691e-06
9.32546e-06
1.0241e-06
9.73128e-06
8.86084e-07
1.0084e-05
7.59779e-07
1.03858e-05
6.42719e-07
1.06389e-05
5.32917e-07
1.08446e-05
4.28737e-07
1.10042e-05
3.28791e-07
1.11185e-05
2.31862e-07
1.11879e-05
1.36837e-07
1.12125e-05
4.26498e-08
1.11921e-05
-5.17739e-08
1.11259e-05
-1.47564e-07
1.10129e-05
-2.4596e-07
1.08514e-05
-3.48373e-07
1.06395e-05
-4.56446e-07
1.03743e-05
-5.72149e-07
1.00525e-05
-6.97871e-07
9.66983e-06
-8.36567e-07
9.22149e-06
-9.91926e-07
8.70165e-06
-1.1686e-06
8.10379e-06
-1.37252e-06
7.42091e-06
-1.61125e-06
6.64608e-06
-1.89449e-06
5.77367e-06
-2.23459e-06
4.80154e-06
-2.64696e-06
3.73505e-06
-3.15009e-06
2.59359e-06
-3.76406e-06
1.42073e-06
-4.5056e-06
2.97877e-07
-5.37514e-06
-6.42526e-07
-6.32676e-06
-1.21806e-06
-7.20622e-06
-1.2412e-06
-7.64355e-06
-6.71152e-07
-6.88963e-06
-3.62899e-06
-9.17142e-07
4.24007e-06
-1.34957e-06
6.75694e-06
-9.4286e-07
6.64944e-06
2.68931e-08
5.74391e-06
1.26845e-06
4.72466e-06
2.58368e-06
3.82741e-06
3.8603e-06
3.10461e-06
5.04524e-06
2.54039e-06
6.11967e-06
2.10255e-06
7.08223e-06
1.7606e-06
7.93945e-06
1.49006e-06
8.70073e-06
1.27251e-06
9.37579e-06
1.09444e-06
9.97363e-06
9.46005e-07
1.05021e-05
8.19998e-07
1.09679e-05
7.11129e-07
1.13765e-05
6.15462e-07
1.17326e-05
5.30034e-07
1.20398e-05
4.52591e-07
1.23011e-05
3.81383e-07
1.2519e-05
3.15034e-07
1.26953e-05
2.52428e-07
1.28314e-05
1.92639e-07
1.29284e-05
1.34868e-07
1.29869e-05
7.83918e-08
1.3007e-05
2.25256e-08
1.29887e-05
-3.34152e-08
1.29312e-05
-9.01507e-08
1.28338e-05
-1.48471e-07
1.26947e-05
-2.0928e-07
1.25119e-05
-2.73641e-07
1.22825e-05
-3.42841e-07
1.20031e-05
-4.18469e-07
1.16691e-05
-5.02522e-07
1.12747e-05
-5.97552e-07
1.0813e-05
-7.0687e-07
1.02753e-05
-8.34837e-07
9.65133e-06
-9.87273e-07
8.92889e-06
-1.17205e-06
8.09423e-06
-1.39993e-06
7.133e-06
-1.68573e-06
6.03268e-06
-2.04977e-06
4.78799e-06
-2.51937e-06
3.41156e-06
-3.12917e-06
1.95324e-06
-3.91682e-06
5.30072e-07
-4.9036e-06
-6.39628e-07
-6.03652e-06
-1.22693e-06
-7.05625e-06
-9.05948e-07
-7.21061e-06
-4.53493e-06
-1.08791e-06
5.32799e-06
-7.67143e-07
6.43617e-06
5.72219e-07
5.31008e-06
2.28749e-06
4.02864e-06
4.01149e-06
3.00066e-06
5.58707e-06
2.25184e-06
6.9675e-06
1.72418e-06
8.1561e-06
1.35178e-06
9.17458e-06
1.08406e-06
1.00484e-05
8.86768e-07
1.0801e-05
7.37441e-07
1.14521e-05
6.21387e-07
1.20177e-05
5.28873e-07
1.25104e-05
4.53345e-07
1.29401e-05
3.90291e-07
1.33147e-05
3.36546e-07
1.36403e-05
2.89838e-07
1.39218e-05
2.48511e-07
1.41631e-05
2.11332e-07
1.43671e-05
1.77364e-07
1.45362e-05
1.45883e-07
1.46724e-05
1.16311e-07
1.47768e-05
8.8177e-08
1.48506e-05
6.10756e-08
1.48944e-05
3.46464e-08
1.49083e-05
8.54969e-09
1.48925e-05
-1.75521e-08
1.48463e-05
-4.40144e-08
1.47691e-05
-7.12272e-08
1.46595e-05
-9.96387e-08
1.45156e-05
-1.29781e-07
1.43351e-05
-1.62302e-07
1.41146e-05
-1.98012e-07
1.385e-05
-2.37945e-07
1.35359e-05
-2.83445e-07
1.31653e-05
-3.36291e-07
1.27294e-05
-3.9889e-07
1.22167e-05
-4.74566e-07
1.16126e-05
-5.68012e-07
1.08987e-05
-6.86017e-07
1.00516e-05
-8.3865e-07
9.04305e-06
-1.04118e-06
7.84086e-06
-1.31717e-06
6.41477e-06
-1.70308e-06
4.75179e-06
-2.25384e-06
2.89138e-06
-3.0432e-06
9.94105e-07
-4.13924e-06
-5.46247e-07
-5.5159e-06
-1.0323e-06
-6.72455e-06
-5.56724e-06
-1.24442e-07
5.45243e-06
1.81832e-06
4.49341e-06
4.39277e-06
2.73562e-06
6.70643e-06
1.71498e-06
8.59116e-06
1.11593e-06
1.00866e-05
7.56379e-07
1.12729e-05
5.37908e-07
1.22239e-05
4.00815e-07
1.29973e-05
3.10606e-07
1.36359e-05
2.48233e-07
1.41702e-05
2.03109e-07
1.46224e-05
1.69143e-07
1.50086e-05
1.42681e-07
1.53405e-05
1.21441e-07
1.56269e-05
1.03937e-07
1.58743e-05
8.91676e-08
1.60877e-05
7.64356e-08
1.62709e-05
6.52447e-08
1.6427e-05
5.52321e-08
1.65583e-05
4.61266e-08
1.66664e-05
3.7721e-08
1.67529e-05
2.98522e-08
1.68187e-05
2.23878e-08
1.68645e-05
1.52156e-08
1.6891e-05
8.23609e-09
1.68981e-05
1.35653e-09
1.68861e-05
-5.51729e-09
1.68546e-05
-1.24809e-08
1.6803e-05
-1.96428e-08
1.67305e-05
-2.71264e-08
1.66358e-05
-3.50796e-08
1.65172e-05
-4.36839e-08
1.63723e-05
-5.31681e-08
1.61982e-05
-6.38267e-08
1.59908e-05
-7.60476e-08
1.57449e-05
-9.03527e-08
1.54534e-05
-1.07461e-07
1.51073e-05
-1.28392e-07
1.46939e-05
-1.54633e-07
1.41963e-05
-1.88447e-07
1.35911e-05
-2.3342e-07
1.28454e-05
-2.95518e-07
1.19134e-05
-3.85174e-07
1.07318e-05
-5.21424e-07
9.21749e-06
-7.39577e-07
7.27741e-06
-1.10311e-06
4.85882e-06
-1.72066e-06
2.13085e-06
-2.78793e-06
1.18915e-08
-4.60559e-06
-5.55535e-06
5.45243e-06
9.94584e-06
1.26815e-05
1.43964e-05
1.55124e-05
1.62688e-05
1.68067e-05
1.72075e-05
1.75181e-05
1.77663e-05
1.79694e-05
1.81386e-05
1.82813e-05
1.84027e-05
1.85066e-05
1.85958e-05
1.86722e-05
1.87375e-05
1.87927e-05
1.88388e-05
1.88766e-05
1.89064e-05
1.89288e-05
1.8944e-05
1.89523e-05
1.89536e-05
1.89481e-05
1.89356e-05
1.8916e-05
1.88888e-05
1.88538e-05
1.88101e-05
1.87569e-05
1.86931e-05
1.8617e-05
1.85267e-05
1.84192e-05
1.82908e-05
1.81362e-05
1.79477e-05
1.77143e-05
1.74188e-05
1.70336e-05
1.65122e-05
1.57726e-05
1.46695e-05
1.29489e-05
1.01609e-05
5.55535e-06
)
;
boundaryField
{
movingWallTop
{
type calculated;
value uniform 0;
}
movingWallBottom
{
type calculated;
value uniform 0;
}
fixedWalls
{
type calculated;
value uniform 0;
}
frontAndBack
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
| |
b6bf05a3667c78feb47425093a5df43134931031 | 62e7a3ef80d75020d73a4f4066a84c7b3f402645 | /release/moc_KMain.cpp | a51e41d35707a29e882bbb156eb44e6ade131ad2 | [] | no_license | zhaoweisonake/MultiBodySystemDynamics | ec955ceeb7fd9484f66bce11a32477b340ce165e | cc16547bd337df824c4f895f8da2a48936873596 | refs/heads/master | 2020-03-21T21:50:53.064029 | 2015-06-12T15:07:17 | 2015-06-12T15:07:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,145 | cpp | moc_KMain.cpp | /****************************************************************************
** Meta object code from reading C++ file 'KMain.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../Kernel/KMain.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'KMain.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.4.0. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
struct qt_meta_stringdata_KMain_t {
QByteArrayData data[33];
char stringdata[456];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_KMain_t, stringdata) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_KMain_t qt_meta_stringdata_KMain = {
{
QT_MOC_LITERAL(0, 0, 5), // "KMain"
QT_MOC_LITERAL(1, 6, 13), // "SendVariables"
QT_MOC_LITERAL(2, 20, 0), // ""
QT_MOC_LITERAL(3, 21, 14), // "s_MBSVariables"
QT_MOC_LITERAL(4, 36, 12), // "MBSVariables"
QT_MOC_LITERAL(5, 49, 4), // "Time"
QT_MOC_LITERAL(6, 54, 14), // "SendParameters"
QT_MOC_LITERAL(7, 69, 15), // "s_MBSParameters"
QT_MOC_LITERAL(8, 85, 13), // "MBSParameters"
QT_MOC_LITERAL(9, 99, 18), // "SendMeasureCommand"
QT_MOC_LITERAL(10, 118, 7), // "Command"
QT_MOC_LITERAL(11, 126, 14), // "SendControlers"
QT_MOC_LITERAL(12, 141, 22), // "s_ControlersParameters"
QT_MOC_LITERAL(13, 164, 10), // "Parameters"
QT_MOC_LITERAL(14, 175, 13), // "GetParameters"
QT_MOC_LITERAL(15, 189, 23), // "PerformSingleSimulation"
QT_MOC_LITERAL(16, 213, 2), // "t0"
QT_MOC_LITERAL(17, 216, 2), // "tk"
QT_MOC_LITERAL(18, 219, 2), // "dt"
QT_MOC_LITERAL(19, 222, 23), // "StartRealTimeSimulation"
QT_MOC_LITERAL(20, 246, 5), // "Speed"
QT_MOC_LITERAL(21, 252, 4), // "Step"
QT_MOC_LITERAL(22, 257, 20), // "UpdatePostSimulation"
QT_MOC_LITERAL(23, 278, 22), // "StopRealTimeSimulation"
QT_MOC_LITERAL(24, 301, 21), // "UpdateMultibodySystem"
QT_MOC_LITERAL(25, 323, 20), // "SetupObjectsToRender"
QT_MOC_LITERAL(26, 344, 13), // "UpdateOptions"
QT_MOC_LITERAL(27, 358, 14), // "ProgramOptions"
QT_MOC_LITERAL(28, 373, 7), // "Options"
QT_MOC_LITERAL(29, 381, 25), // "RealTimeSimulationRoutine"
QT_MOC_LITERAL(30, 407, 9), // "EventLoop"
QT_MOC_LITERAL(31, 417, 15), // "UpdateControler"
QT_MOC_LITERAL(32, 433, 22) // "RefreshMultibodyObject"
},
"KMain\0SendVariables\0\0s_MBSVariables\0"
"MBSVariables\0Time\0SendParameters\0"
"s_MBSParameters\0MBSParameters\0"
"SendMeasureCommand\0Command\0SendControlers\0"
"s_ControlersParameters\0Parameters\0"
"GetParameters\0PerformSingleSimulation\0"
"t0\0tk\0dt\0StartRealTimeSimulation\0Speed\0"
"Step\0UpdatePostSimulation\0"
"StopRealTimeSimulation\0UpdateMultibodySystem\0"
"SetupObjectsToRender\0UpdateOptions\0"
"ProgramOptions\0Options\0RealTimeSimulationRoutine\0"
"EventLoop\0UpdateControler\0"
"RefreshMultibodyObject"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_KMain[] = {
// content:
7, // revision
0, // classname
0, 0, // classinfo
16, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
4, // signalCount
// signals: name, argc, parameters, tag, flags
1, 2, 94, 2, 0x06 /* Public */,
6, 1, 99, 2, 0x06 /* Public */,
9, 1, 102, 2, 0x06 /* Public */,
11, 1, 105, 2, 0x06 /* Public */,
// slots: name, argc, parameters, tag, flags
14, 1, 108, 2, 0x0a /* Public */,
15, 3, 111, 2, 0x0a /* Public */,
19, 2, 118, 2, 0x0a /* Public */,
22, 1, 123, 2, 0x0a /* Public */,
23, 0, 126, 2, 0x0a /* Public */,
24, 0, 127, 2, 0x0a /* Public */,
25, 0, 128, 2, 0x0a /* Public */,
26, 1, 129, 2, 0x0a /* Public */,
29, 0, 132, 2, 0x0a /* Public */,
30, 0, 133, 2, 0x0a /* Public */,
31, 1, 134, 2, 0x0a /* Public */,
32, 0, 137, 2, 0x0a /* Public */,
// signals: parameters
QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 5,
QMetaType::Void, 0x80000000 | 7, 8,
QMetaType::Void, QMetaType::QString, 10,
QMetaType::Void, 0x80000000 | 12, 13,
// slots: parameters
QMetaType::Void, 0x80000000 | 7, 13,
QMetaType::Void, QMetaType::Double, QMetaType::Double, QMetaType::Double, 16, 17, 18,
QMetaType::Void, QMetaType::Double, QMetaType::Double, 20, 21,
QMetaType::Void, QMetaType::Int, 21,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void, 0x80000000 | 27, 28,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void, 0x80000000 | 12, 13,
QMetaType::Void,
0 // eod
};
void KMain::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
KMain *_t = static_cast<KMain *>(_o);
switch (_id) {
case 0: _t->SendVariables((*reinterpret_cast< s_MBSVariables(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break;
case 1: _t->SendParameters((*reinterpret_cast< s_MBSParameters(*)>(_a[1]))); break;
case 2: _t->SendMeasureCommand((*reinterpret_cast< const QString(*)>(_a[1]))); break;
case 3: _t->SendControlers((*reinterpret_cast< s_ControlersParameters(*)>(_a[1]))); break;
case 4: _t->GetParameters((*reinterpret_cast< s_MBSParameters(*)>(_a[1]))); break;
case 5: _t->PerformSingleSimulation((*reinterpret_cast< double(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2])),(*reinterpret_cast< double(*)>(_a[3]))); break;
case 6: _t->StartRealTimeSimulation((*reinterpret_cast< double(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break;
case 7: _t->UpdatePostSimulation((*reinterpret_cast< int(*)>(_a[1]))); break;
case 8: _t->StopRealTimeSimulation(); break;
case 9: _t->UpdateMultibodySystem(); break;
case 10: _t->SetupObjectsToRender(); break;
case 11: _t->UpdateOptions((*reinterpret_cast< ProgramOptions(*)>(_a[1]))); break;
case 12: _t->RealTimeSimulationRoutine(); break;
case 13: _t->EventLoop(); break;
case 14: _t->UpdateControler((*reinterpret_cast< s_ControlersParameters(*)>(_a[1]))); break;
case 15: _t->RefreshMultibodyObject(); break;
default: ;
}
} else if (_c == QMetaObject::IndexOfMethod) {
int *result = reinterpret_cast<int *>(_a[0]);
void **func = reinterpret_cast<void **>(_a[1]);
{
typedef void (KMain::*_t)(s_MBSVariables , double );
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&KMain::SendVariables)) {
*result = 0;
}
}
{
typedef void (KMain::*_t)(s_MBSParameters );
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&KMain::SendParameters)) {
*result = 1;
}
}
{
typedef void (KMain::*_t)(const QString & );
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&KMain::SendMeasureCommand)) {
*result = 2;
}
}
{
typedef void (KMain::*_t)(s_ControlersParameters );
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&KMain::SendControlers)) {
*result = 3;
}
}
}
}
const QMetaObject KMain::staticMetaObject = {
{ &QObject::staticMetaObject, qt_meta_stringdata_KMain.data,
qt_meta_data_KMain, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
};
const QMetaObject *KMain::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *KMain::qt_metacast(const char *_clname)
{
if (!_clname) return Q_NULLPTR;
if (!strcmp(_clname, qt_meta_stringdata_KMain.stringdata))
return static_cast<void*>(const_cast< KMain*>(this));
return QObject::qt_metacast(_clname);
}
int KMain::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QObject::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 16)
qt_static_metacall(this, _c, _id, _a);
_id -= 16;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 16)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 16;
}
return _id;
}
// SIGNAL 0
void KMain::SendVariables(s_MBSVariables _t1, double _t2)
{
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)), const_cast<void*>(reinterpret_cast<const void*>(&_t2)) };
QMetaObject::activate(this, &staticMetaObject, 0, _a);
}
// SIGNAL 1
void KMain::SendParameters(s_MBSParameters _t1)
{
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
QMetaObject::activate(this, &staticMetaObject, 1, _a);
}
// SIGNAL 2
void KMain::SendMeasureCommand(const QString & _t1)
{
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
QMetaObject::activate(this, &staticMetaObject, 2, _a);
}
// SIGNAL 3
void KMain::SendControlers(s_ControlersParameters _t1)
{
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
QMetaObject::activate(this, &staticMetaObject, 3, _a);
}
QT_END_MOC_NAMESPACE
|
5b451da9b0f85a36de9805d6b1e0ff0c914d694f | bee879342d4f8bcad422623f5eaf923e014a5ff8 | /modules/std/net/tcpsocket.cc | f8f0ae139b3be983140d62cfba1f413d0964576c | [] | no_license | paulocezar/clever | 8bec9b2db29a8046524b7d94f207576bf1c35ef0 | 842693f081b5a6ad39fbe08abd552742286ab257 | refs/heads/master | 2020-12-24T09:07:14.019521 | 2012-11-29T10:18:56 | 2012-11-29T10:18:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,948 | cc | tcpsocket.cc | /**
* Clever programming language
* Copyright (c) 2012 Clever Team
*
* 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.
*/
#include <iostream>
#include <fstream>
#include "compiler/compiler.h"
#include "compiler/cstring.h"
#include "modules/std/net/tcpsocket.h"
#include "types/nativetypes.h"
namespace clever { namespace packages { namespace std { namespace net {
CLEVER_METHOD(TcpSocket::constructor) {
SocketValue* sv = new SocketValue;
if (args != NULL) {
if (CLEVER_NUM_ARGS() == 1) {
// Host only.
sv->getSocket()->setHost(CLEVER_ARG_STR(0).c_str());
} else if (CLEVER_NUM_ARGS() == 2) {
// Host and port.
sv->getSocket()->setHost(CLEVER_ARG_STR(0).c_str());
sv->getSocket()->setPort(CLEVER_ARG_INT(1));
}
}
CLEVER_RETURN_DATA_VALUE(sv);
}
CLEVER_METHOD(TcpSocket::setHost) {
SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
sv->getSocket()->setHost(CLEVER_ARG_STR(0).c_str());
}
CLEVER_METHOD(TcpSocket::setPort) {
SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
sv->getSocket()->setPort(CLEVER_ARG_INT(0));
}
CLEVER_METHOD(TcpSocket::setTimeout) {
SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
sv->getSocket()->setTimeout(CLEVER_ARG_INT(0));
}
CLEVER_METHOD(TcpSocket::connect) {
SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
sv->getSocket()->connect();
}
CLEVER_METHOD(TcpSocket::close) {
SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
sv->getSocket()->close();
}
CLEVER_METHOD(TcpSocket::receive) {
SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
ValueVector* vv = new ValueVector;
char *buffer;
int length;
length = CLEVER_ARG_INT(0);
// Allocate the buffer.
buffer = new char[length];
memset(buffer, 0, length);
// Receive the data.
sv->getSocket()->receive(buffer, length);
for (int i = 0; i < length; ++i) {
Value *v = new Value();
v->setByte(buffer[i]);
vv->push_back(v);
}
// Free the buffer.
delete buffer;
retval->setTypePtr(CLEVER_TYPE("Array<Byte>"));
CLEVER_RETURN_ARRAY(vv);
}
CLEVER_METHOD(TcpSocket::send) {
SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
ValueVector *vv = CLEVER_ARG_ARRAY(0);
char *buffer;
int bufferSize;
// Allocate a buffer and fill it with the bytes from the array.
buffer = new char[vv->size()];
for (size_t i = 0, j = vv->size(); i < j; ++i) {
buffer[i] = static_cast<char>(vv->at(i)->getByte());
}
bufferSize = vv->size();
// Send the data.
sv->getSocket()->send(buffer, bufferSize);
// Free the buffer.
delete buffer;
}
CLEVER_METHOD(TcpSocket::isOpen) {
SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
CLEVER_RETURN_BOOL(sv->getSocket()->isOpen());
}
CLEVER_METHOD(TcpSocket::poll) {
SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
CLEVER_RETURN_BOOL(sv->getSocket()->poll());
}
CLEVER_METHOD(TcpSocket::good) {
SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
CLEVER_RETURN_BOOL(sv->getSocket()->getError() == NO_ERROR);
}
CLEVER_METHOD(TcpSocket::getError) {
SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
CLEVER_RETURN_INT(sv->getSocket()->getError());
}
CLEVER_METHOD(TcpSocket::getErrorMessage) {
SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
CLEVER_RETURN_STR(CSTRINGT(sv->getSocket()->getErrorString()));
}
CLEVER_METHOD(TcpSocket::toString) {
CLEVER_RETURN_STR(CSTRINGT("TcpSocket class"));
}
/**
* Void TcpSocket::__assign__(TcpSocket)
*/
CLEVER_METHOD(TcpSocket::do_assign) {
CLEVER_ARG(0)->getDataValue()->addRef();
CLEVER_THIS()->copy(CLEVER_ARG(0));
}
void TcpSocket::init() {
const Type* tcpsock = CLEVER_TYPE("TcpSocket");
const Type* arr_byte = CLEVER_GET_ARRAY_TEMPLATE->getTemplatedType(CLEVER_BYTE);
addMethod(
(new Method(CLEVER_CTOR_NAME, (MethodPtr)&TcpSocket::do_assign, tcpsock))
->addArg("rvalue", tcpsock)
);
addMethod(new Method(CLEVER_CTOR_NAME, (MethodPtr)&TcpSocket::constructor, tcpsock));
addMethod(
(new Method(CLEVER_CTOR_NAME, (MethodPtr)&TcpSocket::constructor, tcpsock))
->addArg("host", CLEVER_STR)
);
addMethod(
(new Method(CLEVER_CTOR_NAME, (MethodPtr)&TcpSocket::constructor, tcpsock))
->addArg("host", CLEVER_STR)
->addArg("port", CLEVER_INT)
);
addMethod(
(new Method("setHost", (MethodPtr)&TcpSocket::setHost, CLEVER_VOID))
->addArg("host", CLEVER_STR)
);
addMethod(
(new Method("setPort", (MethodPtr)&TcpSocket::setPort, CLEVER_VOID))
->addArg("port", CLEVER_INT)
);
addMethod(
(new Method("setTimeout", (MethodPtr)&TcpSocket::setTimeout, CLEVER_VOID))
->addArg("timeout", CLEVER_INT)
);
addMethod(new Method("connect", (MethodPtr)&TcpSocket::connect, tcpsock));
addMethod(new Method("close", (MethodPtr)&TcpSocket::close, tcpsock));
addMethod(
(new Method("receive", (MethodPtr)&TcpSocket::receive, arr_byte))
->addArg("length", CLEVER_INT)
);
addMethod(
(new Method("send", (MethodPtr)&TcpSocket::send, CLEVER_VOID))
->addArg("data", arr_byte)
);
addMethod(new Method("isOpen", (MethodPtr)&TcpSocket::isOpen, CLEVER_BOOL));
addMethod(new Method("poll", (MethodPtr)&TcpSocket::poll, CLEVER_BOOL));
addMethod(new Method("good", (MethodPtr)&TcpSocket::good, CLEVER_BOOL));
addMethod(new Method("getError", (MethodPtr)&TcpSocket::getError, CLEVER_INT));
addMethod(new Method("getErrorMessage", (MethodPtr)&TcpSocket::getErrorMessage, CLEVER_STR));
addMethod(new Method("toString", (MethodPtr)&TcpSocket::toString, CLEVER_STR));
// Windows socket initialization.
#ifdef CLEVER_WIN32
WSADATA wsaData;
int res = WSAStartup(MAKEWORD(2, 2), &wsaData);
if (res != NO_ERROR) {
::std::cerr << "WSAStartup() failed: " << res << ::std::endl;
}
#endif
}
DataValue* TcpSocket::allocateValue() const {
return new SocketValue;
}
void TcpSocket::destructor(Value* value) const {
//SocketValue* sv = CLEVER_GET_VALUE(SocketValue*, value);
// @TODO: disconnect.
}
}}}} // clever::packages::std::net
|
1010497355d4d5942c451e0522d4dd1f8fb7de8e | b516d570e74185e1957a65e1ac2a41b10b001892 | /CS410/PRO_2019_BER/Framework/GameCPP/Game.h | 97b28316d9627bdf457014d0145c11b8f3ce069d | [] | no_license | IreNox/games_academy | 1233f096303175e21b86f380e42bde00def96969 | ee55b2c34b300dc6e5e5009ee5eaf95e2d4df4f1 | refs/heads/master | 2023-05-04T03:45:49.011919 | 2021-05-26T15:14:27 | 2021-05-26T15:14:27 | 264,388,147 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 439 | h | Game.h | #pragma once
#include "EntitySystem.h"
namespace GA
{
class Game
{
public:
int run();
private:
ga_timer_t* m_pTimer;
ga_graphics_t* m_pGraphics;
ga_input_t* m_pInput;
EntitySystem m_entitySystem;
EntityId m_playerId;
EntityId m_enemyId;
EntityId m_ballId;
bool createSystems();
void destroySystems();
bool createGame();
void destroyGame();
void update();
void render();
};
}
|
56313e7b06a34a66bded19d17444cbe76da2a1e6 | 9ada6ca9bd5e669eb3e903f900bae306bf7fd75e | /case3/ddtFoam_Tutorial/0.003150000/fH | 1511bb185a5afe042b2899f881b875c202ce8b15 | [] | no_license | ptroyen/DDT | a6c8747f3a924a7039b71c96ee7d4a1618ad4197 | 6e6ddc7937324b04b22fbfcf974f9c9ea24e48bf | refs/heads/master | 2020-05-24T15:04:39.786689 | 2018-01-28T21:36:40 | 2018-01-28T21:36:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 123,949 | fH | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.003150000";
object fH;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField nonuniform List<scalar>
12384
(
0.0233574
0.0220341
0.0209543
0.019292
0.0186798
0.0181565
0.0181264
0.0187973
0.0204796
0.0219259
0.0245342
0.0262226
0.0279087
0.0275766
0.0203711
0.0198986
0.0194344
0.0195443
0.0197934
0.0200631
0.0202778
0.0203133
0.0203838
0.0202928
0.0203515
0.0207336
0.0209115
0.0211653
0.0217815
0.0208333
0.0209444
0.0202036
0.0198881
0.0190632
0.0186062
0.0181659
0.0180787
0.0183315
0.0193736
0.0222664
0.0245413
0.028229
0.0285933
0.0285374
0.0247017
0.0259232
0.026286
0.0261392
0.0260617
0.0262274
0.0266682
0.0272435
0.0279365
0.0286016
0.0291088
0.0294688
0.0296747
0.0298853
0.0299042
0.0299243
0.0297609
0.0296087
0.0293789
0.0292538
0.0289068
0.0278169
0.0256017
0.0230977
0.0209716
0.0199268
0.0201389
0.0216199
0.0245026
0.0265997
0.0282844
0.0302209
0.0298157
0.029229
0.0293586
0.029796
0.030268
0.0307264
0.0313178
0.0317914
0.0317188
0.0309569
0.0303542
0.0299908
0.0298804
0.0299369
0.0303263
0.0310004
0.0316762
0.0322659
0.0326271
0.0325756
0.0320801
0.0309566
0.0276289
0.0230964
0.0206382
0.0219463
0.0247869
0.0265312
0.0260544
0.028557
0.0293045
0.0295714
0.0301317
0.0303548
0.0304479
0.0307497
0.0306284
0.0312252
0.0316186
0.0318971
0.0318447
0.0315445
0.0308682
0.0304242
0.0298382
0.0290115
0.0284389
0.0278398
0.0270889
0.0255387
0.0226907
0.0196925
0.0187504
0.0206781
0.0233758
0.0246486
0.0268145
0.0262293
0.0219713
0.021934
0.0224585
0.0226965
0.0242811
0.0259901
0.0267312
0.0274294
0.0281467
0.0288792
0.03009
0.0307573
0.0302711
0.0290563
0.0259647
0.0218975
0.0192157
0.0185525
0.0187822
0.0187172
0.018622
0.0188487
0.0192217
0.0195523
0.0199544
0.0212168
0.0224349
0.023704
0.024164
0.0239494
0.0214965
0.0219508
0.0246919
0.0285086
0.0315374
0.0358514
0.0372167
0.0403638
0.0415933
0.0427284
0.0442857
0.0436996
0.0443435
0.0419547
0.0391513
0.0365802
0.034335
0.0315408
0.0298116
0.0240258
0.0194643
0.0178297
0.0176518
0.0177813
0.0177999
0.0178341
0.0179821
0.0186168
0.0201513
0.0205722
0.0209755
0.0227546
0.0245594
0.0249143
0.0247108
0.0245519
0.0240474
0.0236447
0.0235701
0.0231075
0.0230549
0.0229317
0.02292
0.0226647
0.022741
0.021238
0.0191556
0.0174461
0.0175878
0.0169061
0.0168654
0.0169664
0.0171966
0.0174025
0.0177643
0.0181857
0.0185084
0.0195815
0.0202098
0.0203968
0.0207505
0.0193993
0.0186829
0.018416
0.0183101
0.0176373
0.0177127
0.0176451
0.0177128
0.0176906
0.0177213
0.0178345
0.0179179
0.018182
0.0184811
0.0189533
0.0194967
0.0200674
0.0207764
0.0220697
0.0228114
0.0238373
0.0238381
0.0243479
0.0241641
0.0249081
0.024358
0.0253824
0.026523
0.0269752
0.0273181
0.0269511
0.0270607
0.0277336
0.0288594
0.0289954
0.0289899
0.0289816
0.0289812
0.0289795
0.028978
0.0289761
0.0289736
0.0289707
0.0289688
0.028968
0.0289697
0.0289728
0.0289765
0.0289788
0.0289803
0.0289825
0.028984
0.0289856
0.0289869
0.0289884
0.0289896
0.0289913
0.0289958
0.0290664
0.0290661
0.0289957
0.0289905
0.028989
0.0289875
0.028986
0.0289845
0.028983
0.0289815
0.0289799
0.0289783
0.0289765
0.0289733
0.0289706
0.0289682
0.0289682
0.0289698
0.0289729
0.0289757
0.0289779
0.0289796
0.0289813
0.0289828
0.0289846
0.0289862
0.0289877
0.0289889
0.0289905
0.0289956
0.0290661
0.0290664
0.0289951
0.0289904
0.0289893
0.0289879
0.0289866
0.0289848
0.0289831
0.0289814
0.0289796
0.0289778
0.0289758
0.0289728
0.0289702
0.0289681
0.0289681
0.0289701
0.0289728
0.028976
0.0289779
0.0289796
0.0289812
0.0289828
0.0289844
0.028986
0.0289873
0.028989
0.0289904
0.0289951
0.0290664
0.0290661
0.0289955
0.0289902
0.0289885
0.028987
0.0289855
0.0289843
0.0289827
0.0289815
0.02898
0.0289785
0.0289766
0.0289739
0.0289709
0.0289685
0.0289681
0.0289697
0.0289727
0.0289756
0.0289776
0.0289794
0.0289813
0.028983
0.0289846
0.0289862
0.0289876
0.028989
0.0289904
0.0289955
0.0290661
0.0214243
0.0213879
0.0230094
0.0224194
0.0224861
0.0207059
0.0193388
0.0180642
0.0178142
0.0186213
0.0212961
0.0247199
0.0274326
0.0270903
0.0186688
0.018668
0.0201822
0.0224846
0.0242667
0.0258761
0.0267335
0.0278472
0.0284599
0.0291828
0.0304048
0.030696
0.0320414
0.0318038
0.032019
0.0298818
0.028058
0.0257593
0.0237821
0.0215769
0.0193717
0.0181051
0.0177925
0.0182861
0.0197497
0.0228438
0.0266584
0.0282839
0.0285608
0.0283957
0.0248749
0.0256899
0.0255639
0.0251545
0.024931
0.0253387
0.0261985
0.0274598
0.0289619
0.0304038
0.0314266
0.0322257
0.0324781
0.032312
0.0318177
0.031176
0.0303557
0.0293505
0.0284058
0.0281102
0.0283266
0.0282112
0.026243
0.0230968
0.0206032
0.0200637
0.0210436
0.023071
0.0256366
0.0268173
0.0280878
0.0302827
0.0298531
0.0292497
0.0292725
0.0297562
0.0306355
0.0314916
0.0315648
0.030041
0.0280224
0.0269958
0.0268019
0.0264131
0.0261596
0.0259534
0.0259471
0.0264866
0.0275497
0.0288853
0.0300805
0.0308313
0.0309027
0.0300387
0.0266701
0.0224233
0.0205792
0.0220377
0.0250491
0.0267765
0.025305
0.0272631
0.0276677
0.0284695
0.0295758
0.0304262
0.0310219
0.0319307
0.0326474
0.0338702
0.0345285
0.0336995
0.0319943
0.0295874
0.0273375
0.0253515
0.0240431
0.0228706
0.022177
0.0217688
0.0216527
0.0214964
0.0204247
0.0188612
0.018996
0.0216867
0.0239453
0.0257237
0.0264839
0.0265126
0.0219065
0.0217246
0.0223365
0.0237303
0.0264772
0.0293964
0.0302549
0.0298347
0.029096
0.0293039
0.030422
0.030255
0.0261315
0.021695
0.0198491
0.0190491
0.0185295
0.0183123
0.0181124
0.0181462
0.0180962
0.0181702
0.0181523
0.0180419
0.0185989
0.0189918
0.0201423
0.019756
0.0214377
0.0223788
0.0219202
0.0229716
0.0264479
0.0321233
0.0393822
0.0447065
0.0514428
0.0555435
0.0597046
0.0623414
0.062231
0.0618553
0.0583198
0.0544964
0.0482238
0.0420791
0.037894
0.0327733
0.0297986
0.0245263
0.0201602
0.0182994
0.0172475
0.017466
0.0178483
0.0177601
0.0171566
0.0175022
0.0175787
0.0192258
0.0207383
0.0254197
0.0272553
0.0270085
0.0260895
0.0248172
0.0238655
0.0230416
0.0225444
0.0223264
0.0223071
0.0224011
0.0217103
0.0206017
0.0198169
0.0185662
0.0179849
0.0171112
0.0172644
0.0174437
0.0169413
0.0170764
0.0167019
0.016877
0.0169991
0.0171873
0.0176331
0.0181347
0.0195102
0.0195737
0.0200193
0.0196003
0.0217424
0.0221621
0.0221105
0.0230424
0.020626
0.0203582
0.0188613
0.0177662
0.0169028
0.0159187
0.0152947
0.0146774
0.0142248
0.013928
0.0136526
0.0137504
0.0138201
0.0142597
0.0144705
0.0148172
0.0148008
0.01497
0.0148446
0.0149616
0.0147017
0.0147462
0.0145433
0.0173962
0.0171474
0.0163926
0.0167066
0.0180511
0.0196147
0.0228391
0.0258738
0.026389
0.0263228
0.0262967
0.0262931
0.0262576
0.0262416
0.0261918
0.026181
0.0261602
0.0261904
0.0262168
0.0262745
0.0263002
0.0263203
0.0263546
0.0263601
0.0263954
0.0263963
0.0264293
0.0264254
0.026455
0.0265263
0.0279857
0.0279265
0.0265405
0.0264357
0.026434
0.026401
0.0263996
0.0263627
0.0263603
0.0263248
0.0263217
0.0262857
0.0262772
0.0262282
0.026202
0.0261639
0.0261733
0.0261814
0.0262309
0.0262527
0.0262915
0.0262978
0.0263369
0.0263405
0.0263782
0.0263826
0.0264168
0.0264224
0.0264488
0.0265372
0.0279334
0.0279895
0.0265274
0.0264387
0.0264345
0.0264002
0.026399
0.0263611
0.0263569
0.0263194
0.0263138
0.0262753
0.0262676
0.0262193
0.0261965
0.0261655
0.0261649
0.0261949
0.0262203
0.0262699
0.026278
0.0263157
0.02632
0.0263564
0.0263592
0.0263959
0.0263964
0.0264313
0.0264356
0.026526
0.0279871
0.027934
0.0265396
0.0264319
0.0264294
0.0263931
0.0263929
0.0263535
0.0263543
0.0263169
0.0263186
0.0262808
0.0262767
0.0262297
0.0262074
0.0261663
0.0261737
0.0261817
0.0262305
0.0262527
0.0262906
0.0262959
0.026335
0.0263382
0.0263768
0.0263802
0.0264159
0.0264215
0.0264491
0.0265378
0.0279362
0.0239817
0.0267096
0.0352572
0.036297
0.0402851
0.0373086
0.0328272
0.0266909
0.0201529
0.0176056
0.018017
0.0216457
0.0248418
0.0253462
0.0172174
0.0197032
0.0238199
0.0259958
0.0265995
0.0269469
0.0273845
0.0279251
0.0287219
0.029147
0.0296573
0.0293904
0.0293797
0.0302821
0.0319841
0.033988
0.0349242
0.0348303
0.031951
0.0258983
0.0207507
0.0181699
0.0175381
0.0182131
0.0199287
0.0229432
0.026351
0.0278401
0.0278997
0.0275651
0.0247666
0.0253183
0.024823
0.024082
0.0236671
0.0240453
0.0248639
0.0264765
0.0284743
0.030692
0.0325911
0.0338312
0.0346051
0.0347546
0.034338
0.033793
0.0326612
0.0309804
0.0285489
0.0267104
0.0267595
0.027479
0.0265075
0.023454
0.0207003
0.0203406
0.0217154
0.0241724
0.0259614
0.0269033
0.0279646
0.030142
0.0298301
0.029206
0.0293004
0.0303966
0.031737
0.0316828
0.0290685
0.0267052
0.0262861
0.0266624
0.026538
0.0260739
0.0257847
0.0255481
0.0253293
0.0249673
0.0249135
0.025696
0.0269562
0.0282361
0.0288924
0.0277047
0.0242581
0.0211104
0.0205437
0.0227511
0.0253
0.0267997
0.0244404
0.0255627
0.0257769
0.0268347
0.0281896
0.0298456
0.0311875
0.0330953
0.0348375
0.0355278
0.0350925
0.0316665
0.0271428
0.0236314
0.0213461
0.0200789
0.0194343
0.0190806
0.0188789
0.0188425
0.0188886
0.0189012
0.0184424
0.0180027
0.0190614
0.021638
0.0245278
0.0256156
0.0263504
0.0259254
0.0218228
0.0217409
0.0229889
0.0262336
0.0308451
0.034045
0.0337086
0.0314668
0.0297216
0.0299444
0.0305338
0.0269516
0.0219919
0.0198607
0.0191718
0.018437
0.0177525
0.0175876
0.0176239
0.0180006
0.018645
0.0190238
0.0194718
0.0190216
0.0185316
0.0177513
0.016142
0.0174607
0.0179857
0.0187675
0.0226965
0.0249567
0.0311491
0.0407127
0.0505688
0.0579427
0.0643916
0.0679202
0.0687493
0.0685521
0.0672471
0.0654702
0.0629619
0.0614167
0.0542584
0.0490253
0.0401367
0.0338217
0.0292205
0.0242982
0.0211359
0.0193151
0.0181511
0.016541
0.0163044
0.0180201
0.0187787
0.0159367
0.0159682
0.0156304
0.0204605
0.0290129
0.0333195
0.0319998
0.0295699
0.026651
0.0248213
0.0233504
0.0224096
0.0216996
0.0216174
0.0211256
0.0205446
0.0194981
0.0185562
0.0179427
0.0179563
0.0183403
0.0187321
0.0188183
0.0184591
0.0184621
0.0172394
0.016946
0.0165901
0.0163326
0.0165977
0.0171044
0.0182355
0.0177659
0.0182798
0.0233472
0.0326071
0.035519
0.0422441
0.0436493
0.0411408
0.0412422
0.0377405
0.0336568
0.029446
0.0257205
0.0224381
0.0196578
0.0174588
0.015682
0.0144132
0.0136208
0.0130444
0.0121468
0.0118737
0.011256
0.0111819
0.0111968
0.0108293
0.0107188
0.0110048
0.0112993
0.011911
0.0102661
0.0091315
0.0117444
0.0110186
0.0100646
0.00950374
0.00927175
0.00922547
0.00944259
0.00949418
0.00958075
0.0095735
0.00959236
0.00961985
0.00965059
0.00967261
0.00967909
0.00966619
0.00963105
0.00959214
0.0095658
0.00955278
0.00953208
0.00951466
0.00950084
0.00948669
0.00947446
0.00946294
0.00944737
0.00937081
0.00812645
0.00812721
0.00937832
0.00945286
0.00947196
0.00948307
0.00949753
0.00951075
0.00952613
0.00953909
0.00955546
0.00957062
0.00959189
0.00962072
0.00965582
0.00967579
0.00967998
0.00966016
0.00963097
0.00959857
0.0095802
0.00956178
0.0095451
0.00952866
0.00951448
0.00949695
0.00948322
0.00946708
0.00945428
0.00938153
0.00812614
0.00812742
0.00937967
0.00945415
0.00946586
0.0094801
0.00949631
0.00951261
0.009529
0.00954418
0.00956209
0.00957844
0.00959881
0.00962617
0.00965825
0.00967857
0.00967813
0.00965957
0.00962579
0.00959729
0.00957655
0.00956068
0.0095437
0.0095292
0.00951381
0.00949859
0.00948402
0.00947041
0.00945338
0.00938112
0.00812809
0.00812738
0.00938018
0.00945678
0.00947627
0.00948808
0.00950223
0.00951517
0.00952968
0.00954167
0.00955657
0.00957128
0.00959132
0.00961704
0.00965106
0.00967287
0.00968126
0.00966222
0.00963348
0.00960061
0.00958266
0.00956401
0.00954702
0.00953003
0.00951525
0.00949792
0.00948382
0.0094673
0.00945491
0.00938252
0.00812615
0.0368395
0.041463
0.052232
0.0533914
0.0532119
0.0507465
0.0468502
0.0411625
0.0310933
0.0223089
0.0179802
0.018533
0.0224674
0.0245873
0.0172276
0.0225255
0.0250721
0.024238
0.0229951
0.0219981
0.0215536
0.0213034
0.0211993
0.0209919
0.0209555
0.0204029
0.0204026
0.0206696
0.0220057
0.0260228
0.0318867
0.0367063
0.0373422
0.0313753
0.02321
0.0187574
0.0175151
0.0177251
0.0189142
0.0211495
0.0239444
0.025686
0.0264583
0.0252386
0.0248011
0.0249784
0.0242202
0.0234879
0.0231845
0.0233212
0.0240625
0.0253479
0.027224
0.0296662
0.0321248
0.0342977
0.0358995
0.0370985
0.0376882
0.0378258
0.0370136
0.0348315
0.0310782
0.0268055
0.0257939
0.0267212
0.026429
0.0237548
0.0209155
0.0204621
0.022053
0.0241738
0.0258667
0.0266917
0.0275462
0.0298231
0.0297184
0.0293094
0.0298153
0.0319287
0.0325213
0.0295244
0.026787
0.0264454
0.0274412
0.027134
0.0256702
0.0248751
0.024703
0.0248529
0.0249659
0.0248151
0.0243754
0.0241929
0.0247587
0.0259349
0.0260386
0.0241147
0.0213704
0.0202931
0.0213583
0.0238781
0.0260783
0.0266339
0.0235764
0.0239114
0.0243338
0.0254317
0.0270484
0.0289521
0.0313506
0.0341493
0.0365342
0.0367264
0.0335956
0.027606
0.023086
0.0209891
0.0204998
0.0206732
0.0210201
0.0211928
0.0211651
0.0207394
0.0199599
0.0188884
0.0181442
0.017798
0.018527
0.0211407
0.0231646
0.0246023
0.0234425
0.0245029
0.0216859
0.0218126
0.0244536
0.0299022
0.0357525
0.037295
0.0348851
0.031564
0.0301532
0.0306388
0.0292739
0.0245692
0.0212719
0.0199457
0.0187745
0.0175095
0.0173798
0.0184098
0.0198724
0.0222112
0.0248806
0.0278308
0.0288964
0.0288894
0.0262354
0.0237839
0.0190185
0.0147099
0.0154782
0.0168262
0.0235872
0.0284429
0.0378111
0.0498629
0.0593947
0.0650034
0.0691235
0.0699374
0.067799
0.065276
0.0625279
0.0609919
0.0604101
0.0594891
0.0551831
0.0499895
0.0399031
0.0332383
0.0262956
0.02376
0.0221403
0.020308
0.0188986
0.0184772
0.0207429
0.0233516
0.0249509
0.0181279
0.0152802
0.0151779
0.0200707
0.0323325
0.0437165
0.0391794
0.0339783
0.0283916
0.0246357
0.0225164
0.0216131
0.020801
0.0200247
0.0195037
0.0191911
0.0188305
0.0187449
0.0186852
0.0191238
0.0199144
0.0205003
0.020981
0.0206223
0.0203951
0.0192539
0.0179445
0.0169801
0.0160868
0.0157501
0.0157993
0.0163052
0.016252
0.0181164
0.0293287
0.0463885
0.0548766
0.0593911
0.0606156
0.0638471
0.0614611
0.0612211
0.0572721
0.0532554
0.049104
0.0446495
0.0394298
0.0338347
0.028541
0.024371
0.0217785
0.020225
0.0187313
0.0176246
0.0165465
0.0155488
0.0151792
0.0148016
0.0154466
0.0161175
0.017662
0.017647
0.0143633
0.0132172
0.0172697
0.0165182
0.0153533
0.0131528
0.0120703
0.010778
0.00970935
0.00903698
0.00873737
0.00877349
0.00876043
0.0087657
0.00876552
0.00876984
0.00876787
0.0087692
0.00876396
0.00876313
0.00875879
0.00875779
0.00875888
0.0087551
0.00875664
0.00875278
0.00875462
0.00875077
0.0087516
0.00873137
0.00850573
0.00850996
0.00873219
0.00874899
0.00875405
0.00875256
0.00875618
0.0087548
0.00875839
0.008757
0.0087606
0.00875943
0.00876333
0.00876325
0.00876827
0.00876776
0.00877026
0.00876641
0.0087663
0.00876151
0.00876243
0.00875866
0.00875982
0.00875614
0.00875751
0.00875369
0.00875502
0.00875094
0.00875115
0.0087314
0.00851002
0.00850615
0.00873159
0.00874941
0.00875334
0.00875226
0.00875622
0.00875485
0.00875871
0.00875728
0.00876113
0.00875995
0.00876384
0.00876365
0.00876833
0.00876767
0.00876768
0.00876846
0.00876363
0.00876368
0.00875981
0.008761
0.00875726
0.00875867
0.00875495
0.00875631
0.00875263
0.00875371
0.00874883
0.00873194
0.0085061
0.00850953
0.0087323
0.00874919
0.00875435
0.00875281
0.00875661
0.00875508
0.00875882
0.00875719
0.00876091
0.00875945
0.00876346
0.00876297
0.00876806
0.00876747
0.00877045
0.00876655
0.00876658
0.00876168
0.0087628
0.00875896
0.00876026
0.00875646
0.00875791
0.00875401
0.00875531
0.00875115
0.00875141
0.00873133
0.00850986
0.0557682
0.0588511
0.0619593
0.059861
0.055005
0.0502131
0.0459562
0.043436
0.0396941
0.0321106
0.0223808
0.0185323
0.0203189
0.0230321
0.0210556
0.0242237
0.0236366
0.0222645
0.0212703
0.0207034
0.0202136
0.0199444
0.0196677
0.0193997
0.0191555
0.0188249
0.0185002
0.0180606
0.0182227
0.019949
0.025461
0.0345529
0.0392842
0.0353777
0.0260287
0.0199139
0.0176903
0.0171238
0.0170422
0.0173206
0.0191759
0.0220018
0.0242077
0.0239406
0.02475
0.0246208
0.0238657
0.0234007
0.0233432
0.0235861
0.0242094
0.0253804
0.0271096
0.0294653
0.0322503
0.0351271
0.0375497
0.0394545
0.0406612
0.0405991
0.0394151
0.0366079
0.0321396
0.0269767
0.0252297
0.0261645
0.0263239
0.0239907
0.0207788
0.0199205
0.0214329
0.0234327
0.0254803
0.026494
0.027056
0.0293655
0.0293984
0.029353
0.0310582
0.0331144
0.0314049
0.02756
0.026478
0.0274505
0.0273755
0.0253925
0.0239252
0.0237963
0.0238794
0.0241371
0.0244829
0.024674
0.0242627
0.0234482
0.023317
0.0235489
0.0224355
0.0208822
0.0199407
0.0206167
0.0225626
0.0247523
0.0260122
0.0261103
0.0227648
0.0230074
0.0233227
0.0246717
0.0266736
0.0289706
0.0320238
0.0361223
0.0378759
0.0366331
0.0309584
0.0254088
0.0231583
0.0231175
0.0237675
0.02448
0.0246061
0.0246213
0.0237152
0.0229309
0.0216986
0.0204823
0.0191515
0.0181417
0.0183174
0.0195084
0.0213341
0.0215808
0.0214204
0.0220112
0.021543
0.0220824
0.0264924
0.0344942
0.0399147
0.0388283
0.0345019
0.0313017
0.0307561
0.0302895
0.0268175
0.0234197
0.0215147
0.0198137
0.0181506
0.0179669
0.0202179
0.0248003
0.0309041
0.0367116
0.0405176
0.0432306
0.0438742
0.0437439
0.0411354
0.0350498
0.029089
0.0188982
0.0140315
0.0152806
0.0247035
0.0321774
0.0440381
0.0552156
0.061874
0.0671315
0.0696701
0.0680067
0.0624949
0.0587067
0.055544
0.05463
0.0543212
0.0534903
0.0510486
0.0452957
0.0375678
0.0295481
0.0243921
0.0237832
0.0235104
0.0221395
0.0208636
0.0223379
0.0271756
0.0315454
0.0314128
0.0256643
0.0170989
0.0146932
0.0192115
0.0335789
0.0500678
0.0430169
0.0359985
0.0286049
0.0258266
0.023195
0.0216398
0.020753
0.0198251
0.0192284
0.0190047
0.0192756
0.0199831
0.0208948
0.0215629
0.0223366
0.0230645
0.02361
0.0234761
0.0230769
0.0218223
0.0200206
0.0183589
0.0167101
0.0157996
0.0147684
0.0149874
0.015488
0.0167282
0.0380404
0.0578058
0.0602355
0.0600889
0.060255
0.0630309
0.0655478
0.06721
0.0682241
0.0678789
0.0659892
0.0637704
0.0601555
0.0555521
0.0503185
0.0439441
0.0368407
0.0309807
0.0263035
0.0239929
0.0228859
0.02227
0.0214519
0.0221233
0.0223865
0.0241481
0.0259676
0.0225109
0.023022
0.0180723
0.0220622
0.0229623
0.0211736
0.0203322
0.0172177
0.0157534
0.0138425
0.0126272
0.0113925
0.0109231
0.0109501
0.0109308
0.0109383
0.0109318
0.0109385
0.0109318
0.0109387
0.0109325
0.0109349
0.0109361
0.0109305
0.0109376
0.0109299
0.0109372
0.0109295
0.0109368
0.0109289
0.0109332
0.0108999
0.0109064
0.0109277
0.010937
0.0109294
0.0109372
0.0109297
0.0109372
0.01093
0.0109371
0.0109301
0.0109374
0.0109307
0.0109377
0.0109315
0.0109381
0.0109317
0.010938
0.0109312
0.0109376
0.0109305
0.0109373
0.0109302
0.0109375
0.01093
0.0109373
0.0109298
0.0109365
0.0109292
0.0109271
0.0109058
0.010902
0.0109309
0.010931
0.0109298
0.0109376
0.0109304
0.0109379
0.0109305
0.0109376
0.0109305
0.0109378
0.010931
0.0109381
0.0109318
0.0109368
0.0109372
0.010932
0.0109382
0.0109311
0.0109378
0.0109306
0.0109376
0.0109305
0.0109378
0.0109305
0.0109378
0.0109301
0.0109336
0.0109297
0.0109026
0.0109059
0.0109276
0.0109368
0.0109291
0.0109374
0.0109295
0.0109376
0.0109298
0.0109375
0.0109298
0.0109375
0.0109303
0.0109379
0.0109311
0.0109382
0.0109315
0.0109382
0.0109312
0.0109377
0.0109304
0.0109374
0.0109302
0.0109377
0.0109302
0.0109376
0.0109299
0.0109367
0.0109292
0.0109267
0.0109051
0.0669067
0.0675601
0.0647692
0.0601134
0.053878
0.046423
0.0397575
0.0357075
0.0358013
0.034875
0.028372
0.0209263
0.0199095
0.0219651
0.0247219
0.0241623
0.0229953
0.0223453
0.0220842
0.0220101
0.0220708
0.0218474
0.0217227
0.0213492
0.0208062
0.020252
0.0198109
0.0188733
0.0180585
0.0186618
0.0225848
0.0329859
0.0396673
0.0371467
0.0277711
0.0207671
0.017514
0.0157814
0.0145033
0.0139318
0.0151508
0.0183478
0.0223678
0.022808
0.0245821
0.0241356
0.0238405
0.023779
0.0241534
0.02479
0.0256295
0.0267477
0.028608
0.0311119
0.0343282
0.037571
0.0401527
0.041449
0.0416929
0.0402202
0.0374145
0.0337251
0.0295183
0.0256321
0.024957
0.0263407
0.0264373
0.0238951
0.0201625
0.0188367
0.0199624
0.0218617
0.0246542
0.026132
0.0267285
0.0288696
0.0290779
0.0299706
0.0325954
0.0333195
0.029466
0.0267437
0.0269276
0.0275564
0.0259055
0.0236978
0.0234038
0.0238757
0.0241225
0.0241475
0.0243417
0.0244195
0.0237054
0.0225728
0.0217321
0.0207409
0.019789
0.0194607
0.0199785
0.02101
0.0226606
0.0237688
0.0250388
0.0253751
0.0223728
0.0223627
0.0232348
0.0247271
0.0269891
0.0295479
0.0341416
0.0382293
0.0390397
0.0360255
0.0300849
0.0268801
0.0262885
0.0263834
0.0266089
0.0268778
0.0260783
0.0245512
0.0230028
0.0221389
0.0217227
0.0211899
0.0204373
0.0189418
0.0179639
0.0181789
0.0195383
0.0204477
0.0207551
0.0205685
0.0217239
0.0244277
0.0323275
0.0411794
0.0426613
0.0380998
0.0334813
0.0313702
0.0307406
0.0285678
0.0253636
0.0234312
0.0219125
0.0204998
0.0203858
0.0253059
0.0349402
0.042158
0.0459391
0.047596
0.0482677
0.0484711
0.048932
0.0482683
0.0480935
0.0471175
0.041765
0.0309048
0.016207
0.0137326
0.0256167
0.0357705
0.0473501
0.055061
0.0602011
0.0671582
0.0688955
0.0641499
0.0573215
0.0529586
0.0501559
0.0485833
0.0474147
0.0462101
0.0435126
0.0391241
0.0319881
0.0268918
0.0234647
0.0251035
0.0259156
0.0254402
0.0259352
0.0304671
0.0358254
0.0378329
0.034813
0.0297944
0.0215101
0.0149005
0.0194776
0.0399715
0.0563384
0.0512229
0.040387
0.0332815
0.0271551
0.0247546
0.0231328
0.0214283
0.021253
0.0215552
0.0223451
0.0230689
0.0238715
0.0246802
0.0258986
0.0270693
0.0274914
0.0278668
0.0275805
0.0271259
0.0256479
0.0235537
0.0210771
0.0189239
0.017077
0.0154978
0.0140984
0.0160045
0.0181235
0.0386088
0.0554053
0.0549355
0.0470098
0.0478035
0.0495885
0.0559358
0.0616729
0.0664272
0.0695792
0.0705679
0.0696705
0.0692477
0.0673013
0.0652122
0.0617605
0.0565676
0.0480511
0.039975
0.0331166
0.029258
0.0279465
0.0277375
0.0290357
0.0297683
0.0302999
0.032576
0.0313889
0.025478
0.0195076
0.0296564
0.0282177
0.0293779
0.0266167
0.024506
0.0215366
0.0198522
0.0174442
0.0160684
0.0145079
0.0137205
0.0137527
0.0137326
0.0137327
0.0137338
0.0137327
0.0137343
0.0137329
0.0137311
0.0137324
0.0137312
0.0137334
0.0137313
0.013733
0.0137313
0.0137328
0.0137297
0.0137167
0.0135134
0.0135102
0.0137157
0.0137323
0.0137314
0.0137333
0.013731
0.0137328
0.0137309
0.0137327
0.0137311
0.0137329
0.0137315
0.0137335
0.0137319
0.0137337
0.013732
0.0137336
0.0137318
0.0137333
0.0137315
0.0137332
0.0137314
0.0137333
0.0137315
0.0137334
0.0137314
0.0137324
0.013729
0.0137129
0.0135109
0.0135139
0.0137157
0.0137277
0.0137306
0.013733
0.0137316
0.0137334
0.0137316
0.0137332
0.0137316
0.0137335
0.0137317
0.0137338
0.013732
0.0137322
0.0137326
0.0137322
0.0137338
0.0137317
0.0137335
0.0137315
0.0137333
0.0137316
0.0137336
0.0137319
0.0137339
0.0137313
0.013729
0.0137148
0.0135139
0.0135098
0.0137154
0.0137318
0.0137311
0.0137331
0.0137312
0.0137329
0.0137312
0.0137328
0.0137312
0.0137329
0.0137316
0.0137336
0.0137322
0.0137342
0.0137324
0.0137341
0.0137323
0.0137336
0.0137318
0.0137333
0.0137318
0.0137336
0.013732
0.0137339
0.0137315
0.0137326
0.013729
0.013712
0.0135097
0.0704534
0.0673733
0.0597163
0.0540615
0.0499632
0.0439729
0.034579
0.0281118
0.0264242
0.0287423
0.0297482
0.0237171
0.0201775
0.0210878
0.0246932
0.02379
0.0233649
0.023846
0.0243015
0.024596
0.024822
0.0247846
0.0243576
0.0237495
0.0227801
0.0217035
0.0212978
0.0200589
0.0186535
0.018949
0.0236978
0.0339328
0.040466
0.0380202
0.0278089
0.0202292
0.0161296
0.0138496
0.0129067
0.0132847
0.0146701
0.0170598
0.020934
0.0224366
0.0242064
0.0238267
0.0239832
0.0246172
0.0255966
0.0267134
0.0278864
0.029439
0.031695
0.0346641
0.0377278
0.0401439
0.0414618
0.0405058
0.0379163
0.0346621
0.0316264
0.0287672
0.0264228
0.0251139
0.0257499
0.0268125
0.0258303
0.022403
0.0189231
0.0180187
0.0187209
0.020626
0.0235305
0.0254635
0.0263794
0.0283438
0.0290341
0.0309833
0.0337342
0.0324338
0.0278672
0.026451
0.0271137
0.0268382
0.0242146
0.0230492
0.0235349
0.0241815
0.024271
0.0243085
0.0241095
0.0234509
0.0222105
0.020884
0.0197086
0.0191698
0.0198016
0.0211412
0.0223243
0.0226405
0.0227608
0.0229837
0.0237801
0.0245192
0.022033
0.0225143
0.023845
0.0254129
0.0277046
0.0316597
0.0365148
0.0406271
0.0402309
0.0361707
0.0315881
0.0294864
0.0283305
0.0278742
0.0283388
0.0278632
0.0250631
0.0225456
0.0210365
0.020244
0.0207166
0.0212548
0.02086
0.0192462
0.0178589
0.0180009
0.0192716
0.0210819
0.0243041
0.0220788
0.0233534
0.0299887
0.0402271
0.0457829
0.0431717
0.0368115
0.0328074
0.0313644
0.0297786
0.0270927
0.0254384
0.0246552
0.0241313
0.0259245
0.0333752
0.0438731
0.0488611
0.0485409
0.0491789
0.0492644
0.0497449
0.0501392
0.0503162
0.0502698
0.0499472
0.0494176
0.0477078
0.0417543
0.0299429
0.0162942
0.0268756
0.0379466
0.0471076
0.0511542
0.0567196
0.0663697
0.0675853
0.0606083
0.0537641
0.0501586
0.0479403
0.0460161
0.0438257
0.0421673
0.0397099
0.0343367
0.0292365
0.0246263
0.0237139
0.0254327
0.0272028
0.0289171
0.0315275
0.0355785
0.0379165
0.0373071
0.0350684
0.0302868
0.0237664
0.0177302
0.0239415
0.0474237
0.0593632
0.0542145
0.046572
0.0362415
0.0313206
0.0272486
0.0263326
0.0256781
0.0272227
0.0286256
0.0298215
0.0312556
0.032734
0.03434
0.035563
0.0359189
0.0354291
0.0345556
0.0338679
0.032894
0.0309595
0.029025
0.0263302
0.023727
0.0216175
0.0187451
0.0159203
0.0172806
0.0178228
0.0284774
0.0388799
0.0389075
0.0388545
0.0393208
0.0420571
0.0472123
0.0533841
0.0606135
0.0654066
0.0690741
0.0708567
0.0705902
0.0699683
0.0687618
0.0671064
0.0645648
0.0600876
0.0525699
0.0453145
0.039009
0.0350933
0.034856
0.0347214
0.0355653
0.038742
0.036348
0.0355885
0.0295746
0.0279876
0.032327
0.0397797
0.0372296
0.0345405
0.0326306
0.0292987
0.0261094
0.0238061
0.0219465
0.0206792
0.0191928
0.0186289
0.0187099
0.0186894
0.018694
0.0186905
0.0186945
0.0186916
0.0186902
0.0186913
0.0186908
0.0186944
0.0186908
0.0186947
0.0186909
0.0186941
0.0186897
0.0186951
0.018754
0.018749
0.0186924
0.0186936
0.0186908
0.0186946
0.0186902
0.0186939
0.0186896
0.0186934
0.0186897
0.0186933
0.0186898
0.0186929
0.0186899
0.0186926
0.01869
0.0186928
0.01869
0.0186934
0.0186901
0.0186941
0.0186903
0.0186947
0.0186908
0.018695
0.0186911
0.018693
0.0186887
0.0186895
0.0187488
0.0187548
0.0186921
0.0186872
0.0186896
0.0186942
0.0186911
0.0186949
0.0186906
0.0186943
0.0186903
0.018694
0.01869
0.0186934
0.01869
0.0186905
0.0186908
0.0186901
0.0186933
0.01869
0.0186939
0.0186902
0.0186943
0.0186906
0.018695
0.0186914
0.0186954
0.0186908
0.0186887
0.0186905
0.0187548
0.0187487
0.0186922
0.0186932
0.0186904
0.0186948
0.0186902
0.0186947
0.0186897
0.0186942
0.0186893
0.0186936
0.0186891
0.018693
0.0186894
0.0186927
0.0186894
0.0186921
0.0186892
0.0186927
0.0186893
0.0186934
0.0186896
0.0186943
0.0186902
0.0186951
0.0186905
0.0186929
0.0186879
0.0186873
0.018746
0.0699884
0.058223
0.0452538
0.0426492
0.0434506
0.0380029
0.0278789
0.0213943
0.0202226
0.0217247
0.0262441
0.0250658
0.0208841
0.02073
0.0235817
0.0242445
0.0247163
0.0253619
0.0259324
0.026221
0.0262938
0.0260464
0.0255056
0.0246095
0.023637
0.0226162
0.0222574
0.0212414
0.0197929
0.0208906
0.0273212
0.0375869
0.0417503
0.0372232
0.0257925
0.0178825
0.0141839
0.0132359
0.0143364
0.0164153
0.0173777
0.0181061
0.0202562
0.0218777
0.0229491
0.0234635
0.0245499
0.0257996
0.0276101
0.0291072
0.0310422
0.0331818
0.0360784
0.0385177
0.0398653
0.0398924
0.0369471
0.0337188
0.0305879
0.0290315
0.027678
0.0265534
0.0259813
0.0256567
0.0256455
0.0241163
0.0213695
0.0191995
0.0181371
0.0179931
0.0185957
0.0200567
0.0227613
0.0247845
0.0262822
0.0279048
0.0296129
0.0328142
0.0345103
0.0306768
0.0270119
0.0264996
0.0270628
0.0259207
0.0230705
0.0223937
0.0231599
0.0236631
0.0237802
0.023417
0.0224344
0.0212383
0.0200298
0.0194625
0.0199584
0.0226984
0.0259579
0.027849
0.027596
0.026198
0.0246309
0.0234829
0.0231377
0.0235876
0.0220937
0.0231618
0.0247484
0.0266194
0.0296634
0.0344125
0.0399932
0.0430885
0.0417604
0.0374313
0.0332311
0.0303655
0.0290882
0.0297035
0.0302367
0.0274567
0.0232253
0.0201297
0.0189265
0.0192608
0.0200574
0.0204618
0.0199882
0.0185287
0.017713
0.0183165
0.0214719
0.0283063
0.0329572
0.0279521
0.0304916
0.041516
0.0482653
0.0466366
0.041096
0.0353413
0.0324382
0.0308967
0.0287759
0.026751
0.0268786
0.0279724
0.0307143
0.0368837
0.0456921
0.0496215
0.0484499
0.0485553
0.0487531
0.0497849
0.0513124
0.0527002
0.0530189
0.0523306
0.0512551
0.0502534
0.047792
0.0418143
0.0356145
0.0229297
0.0272512
0.0393752
0.0441751
0.0451796
0.0518636
0.0649815
0.0665867
0.0586246
0.0521603
0.0492904
0.0477958
0.0463173
0.0448501
0.0431695
0.04042
0.0361478
0.0304902
0.0269661
0.0237293
0.0258542
0.0266503
0.0289793
0.0317501
0.0334907
0.0332095
0.0328067
0.0323525
0.0289519
0.0244018
0.0192588
0.0306515
0.0556034
0.0599374
0.0565552
0.0517544
0.0468458
0.0375786
0.0357987
0.0342362
0.0373785
0.0388803
0.0419389
0.0444825
0.0468921
0.048852
0.0497638
0.0500023
0.0489425
0.0466391
0.0439984
0.0421991
0.0399371
0.0379563
0.0364075
0.0335844
0.0321731
0.0304093
0.0270294
0.0219591
0.0200322
0.0223547
0.0247849
0.0279257
0.0311959
0.0326058
0.0360685
0.0394841
0.0423486
0.050411
0.0565755
0.0640593
0.0677357
0.0699443
0.0708752
0.071032
0.0708237
0.0702399
0.0698671
0.0686395
0.0642003
0.0571373
0.0492931
0.0441098
0.0412152
0.0417821
0.0434249
0.0438531
0.0464684
0.0428313
0.0349594
0.0351584
0.0404409
0.0438337
0.0431029
0.042452
0.0411572
0.0378342
0.0338507
0.0308533
0.0282421
0.02692
0.025304
0.0240368
0.0237085
0.0238022
0.0237843
0.0237858
0.023786
0.0237861
0.023783
0.0237843
0.0237844
0.0237855
0.0237842
0.0237838
0.0237816
0.0237794
0.0237753
0.023779
0.0238632
0.023857
0.0237787
0.0237767
0.0237794
0.0237821
0.0237826
0.0237839
0.0237836
0.0237842
0.0237839
0.0237847
0.0237843
0.0237848
0.0237844
0.0237848
0.0237844
0.0237849
0.0237845
0.023785
0.0237846
0.0237851
0.0237846
0.0237851
0.0237844
0.023784
0.0237817
0.023779
0.0237743
0.0237759
0.0238569
0.0238629
0.0237778
0.0237728
0.0237779
0.0237818
0.0237831
0.0237848
0.0237845
0.023785
0.0237847
0.0237852
0.0237846
0.0237851
0.0237843
0.0237834
0.0237839
0.0237843
0.0237852
0.0237845
0.0237852
0.0237845
0.023785
0.0237846
0.023785
0.0237837
0.0237831
0.0237795
0.0237735
0.0237763
0.0238625
0.0238577
0.0237787
0.0237763
0.023779
0.0237819
0.0237829
0.0237844
0.0237842
0.0237846
0.0237842
0.0237844
0.0237844
0.0237848
0.0237845
0.023785
0.0237845
0.0237847
0.0237844
0.0237848
0.0237845
0.023785
0.0237847
0.0237851
0.0237841
0.0237838
0.0237805
0.0237764
0.0237667
0.0237566
0.0238369
0.0678177
0.0464628
0.0333408
0.0336267
0.0349179
0.0280938
0.0211864
0.0193964
0.0191207
0.0197952
0.023354
0.0239824
0.0212062
0.0204669
0.0210994
0.0221003
0.0226825
0.0247973
0.0257137
0.0260989
0.0267028
0.0270713
0.0268547
0.0260976
0.0252074
0.0243973
0.0236833
0.0232928
0.0234466
0.0230576
0.022708
0.0258107
0.0344929
0.0416367
0.0424138
0.0331278
0.0211202
0.0151788
0.0138102
0.0155607
0.0194136
0.0214533
0.0221281
0.0210943
0.0204948
0.0213877
0.0210875
0.0210852
0.0215992
0.0233081
0.0255539
0.0279532
0.030323
0.0325173
0.0349175
0.0370896
0.0385133
0.0385657
0.0353666
0.0313606
0.0283791
0.0270412
0.0266414
0.0266012
0.0259653
0.0252029
0.0237584
0.0223274
0.020701
0.0194434
0.0191232
0.0192291
0.019541
0.0193686
0.0193987
0.020383
0.0228541
0.0235162
0.0236765
0.0250057
0.0263766
0.0282867
0.0311224
0.034472
0.0339788
0.0291729
0.0265552
0.0266493
0.027117
0.0249549
0.022247
0.0215926
0.0218009
0.0217656
0.0213399
0.0206827
0.0199787
0.0196492
0.0204532
0.0231054
0.0278584
0.032624
0.0342675
0.0326801
0.0294236
0.0265225
0.0250161
0.0238841
0.0232199
0.0230501
0.0225551
0.0222727
0.0228198
0.0242558
0.0260085
0.0284663
0.0325678
0.0382856
0.0434116
0.0457795
0.0435861
0.0384999
0.0335116
0.0306427
0.0306643
0.0321966
0.031325
0.0265523
0.021777
0.0189133
0.0182661
0.0188917
0.0196944
0.0193314
0.0187681
0.0178434
0.0177825
0.0192462
0.0261274
0.0367294
0.0418049
0.0358215
0.0295211
0.0372854
0.044422
0.0502254
0.0490774
0.044481
0.0385768
0.0345593
0.0324273
0.030379
0.0283709
0.0279567
0.0302684
0.0342062
0.0395724
0.0453481
0.0488278
0.0494304
0.047765
0.0478453
0.0486639
0.0511883
0.0543635
0.056929
0.0573552
0.0558028
0.0536016
0.051335
0.0457804
0.0360112
0.0306517
0.0281547
0.0266764
0.025284
0.0298797
0.0390067
0.0398721
0.0377707
0.0464502
0.0620352
0.0666412
0.0586187
0.0523019
0.0497895
0.0489859
0.0485195
0.0478527
0.0465487
0.0446567
0.0418827
0.0386975
0.0338972
0.0304904
0.0267651
0.0273217
0.0279917
0.029375
0.029265
0.0284774
0.0269503
0.0288156
0.0285685
0.0239965
0.0197131
0.0258113
0.0325288
0.0417105
0.0583486
0.0610819
0.0593544
0.0562978
0.0530492
0.0511609
0.0493158
0.0512989
0.0539051
0.0563137
0.0574099
0.0582241
0.0587313
0.0590064
0.0598065
0.0600027
0.0603177
0.0600452
0.0567209
0.0534673
0.0487311
0.0456233
0.0444646
0.0426015
0.0420159
0.0411324
0.0390352
0.0343768
0.0283451
0.0234758
0.0227872
0.0241693
0.0250044
0.0261836
0.0280861
0.0304333
0.0370326
0.0425632
0.0478585
0.0519885
0.0571155
0.0611475
0.0643949
0.067904
0.0703448
0.0713387
0.0713806
0.0709087
0.0706593
0.0700294
0.0683562
0.0643149
0.0579576
0.0521903
0.0488358
0.0480325
0.0488262
0.0514576
0.0478342
0.0493474
0.0444615
0.0402172
0.0433088
0.0430663
0.0468436
0.0481455
0.0481412
0.0488207
0.0488418
0.0457792
0.0421086
0.0389622
0.037184
0.0344896
0.0334385
0.0319413
0.0318279
0.0317519
0.0318257
0.03182
0.0318218
0.0318204
0.0318171
0.0318172
0.0318183
0.031819
0.0318169
0.0318157
0.031812
0.0318109
0.0318108
0.0318498
0.032245
0.0326247
0.0326247
0.0322409
0.0318489
0.0318124
0.0318098
0.0318131
0.0318135
0.0318171
0.031816
0.0318182
0.0318168
0.0318189
0.0318182
0.0318197
0.0318189
0.0318197
0.031819
0.0318199
0.0318188
0.0318197
0.031818
0.0318193
0.0318175
0.0318191
0.0318163
0.0318162
0.031812
0.0318101
0.0318091
0.0318457
0.0322404
0.0326248
0.0326247
0.0322444
0.0318471
0.0318074
0.0318085
0.031813
0.0318142
0.0318179
0.0318172
0.0318191
0.0318177
0.0318196
0.0318185
0.0318199
0.0318188
0.031818
0.0318183
0.0318189
0.0318199
0.0318184
0.0318194
0.0318173
0.0318188
0.0318169
0.0318181
0.0318147
0.0318144
0.0318103
0.0318085
0.0318457
0.0322442
0.0326245
0.0326247
0.0322417
0.0318489
0.031812
0.0318093
0.0318134
0.0318135
0.031818
0.0318161
0.0318184
0.031816
0.031818
0.0318165
0.0318184
0.0318175
0.0318188
0.0318182
0.0318191
0.0318182
0.0318191
0.0318168
0.0318181
0.0318153
0.0318173
0.0318133
0.0318141
0.0318087
0.031807
0.0318054
0.0318434
0.0322371
0.0325997
0.0323074
0.0633855
0.0363691
0.0265383
0.0270666
0.0260046
0.0206257
0.0193014
0.0214612
0.0220721
0.0210041
0.0219631
0.0220592
0.0204286
0.0201237
0.0201517
0.0203371
0.0210353
0.0247115
0.0264192
0.0265409
0.0270221
0.0272539
0.0268413
0.0253881
0.0240368
0.023391
0.0234078
0.0239686
0.0256688
0.0271201
0.0295031
0.0347176
0.0418515
0.0441907
0.0388485
0.0256895
0.0169993
0.0145722
0.0157612
0.0201402
0.023455
0.0250792
0.0248062
0.0239852
0.0223125
0.021602
0.0219861
0.0229358
0.0241796
0.0258675
0.0285434
0.0313868
0.0334697
0.0357178
0.0367709
0.0366966
0.0328514
0.0285033
0.0255535
0.024115
0.0236076
0.0237743
0.0239356
0.0232474
0.02213
0.0207724
0.0199215
0.0196937
0.0202448
0.0213666
0.0221508
0.0220533
0.0218864
0.0210111
0.02031
0.020699
0.0225627
0.0231641
0.0238496
0.0254069
0.0270387
0.0297994
0.0334686
0.0355927
0.0325859
0.027992
0.0263897
0.0269322
0.0270383
0.0241659
0.021698
0.020739
0.0203813
0.0201082
0.0198556
0.0198809
0.0209182
0.0231538
0.0273178
0.0329325
0.0375199
0.0388202
0.0367088
0.0328445
0.0291676
0.0265966
0.0249594
0.0240933
0.0233759
0.0230235
0.0230665
0.0234036
0.0244129
0.0261066
0.0279871
0.0315869
0.0367635
0.0427705
0.0476738
0.0485975
0.0452137
0.0390126
0.0335395
0.0316266
0.0329001
0.0342501
0.0325803
0.0270156
0.0218249
0.0184297
0.0174636
0.0176458
0.0187056
0.0181382
0.0176417
0.01746
0.0181893
0.0231813
0.034583
0.046604
0.0510232
0.0497672
0.0480973
0.0514772
0.0521091
0.0499871
0.0458309
0.0407362
0.0368934
0.0346678
0.0325453
0.0303915
0.0290301
0.0304752
0.0346889
0.0401684
0.0455961
0.0503308
0.0488379
0.0469482
0.0472441
0.0471831
0.0487101
0.0523804
0.0566152
0.0599311
0.060371
0.0580175
0.0552543
0.050409
0.0389242
0.027715
0.023148
0.023846
0.0251066
0.0264893
0.032221
0.0368787
0.0334661
0.0309489
0.0386364
0.0574495
0.0658527
0.0623234
0.0544736
0.0516128
0.0508438
0.050896
0.0504625
0.0506334
0.049248
0.0476549
0.0454639
0.0436638
0.0406628
0.0367303
0.0337333
0.0311513
0.0296808
0.0279716
0.0256778
0.0249763
0.0263395
0.0297296
0.0285491
0.021005
0.0212848
0.0313659
0.0452387
0.0585847
0.0630584
0.0616621
0.0585275
0.0566069
0.0553119
0.0565043
0.0561587
0.0572654
0.0567128
0.0556714
0.0540182
0.0536967
0.0541876
0.0572492
0.0610566
0.0641915
0.0666579
0.0664369
0.0645152
0.0595465
0.0548792
0.0524822
0.0509756
0.0510488
0.0505142
0.0501066
0.047881
0.0448666
0.0385028
0.0323847
0.0296376
0.0278522
0.0295125
0.0316681
0.0366796
0.0437556
0.051649
0.0551703
0.0593837
0.061738
0.0647311
0.0667135
0.068179
0.0698327
0.0708055
0.0715191
0.0717755
0.0714977
0.0711828
0.0697986
0.0675833
0.0641038
0.0590083
0.0558876
0.0550492
0.0560514
0.0543055
0.0567856
0.0531283
0.0509067
0.0522495
0.0520487
0.0539707
0.0532386
0.0542484
0.0540201
0.054666
0.054691
0.0535425
0.0507669
0.0477827
0.0454694
0.0439212
0.0413479
0.040476
0.0394502
0.0393597
0.0392467
0.039264
0.0392627
0.0392625
0.039259
0.0392589
0.0392595
0.0392589
0.0392573
0.0392543
0.0392516
0.0392501
0.0392518
0.0392594
0.0393236
0.0397175
0.0397175
0.0393209
0.039259
0.0392522
0.0392501
0.0392515
0.0392537
0.0392565
0.0392574
0.0392585
0.039259
0.0392598
0.0392604
0.0392612
0.0392616
0.0392618
0.0392616
0.0392618
0.0392612
0.0392606
0.0392602
0.0392596
0.0392592
0.0392584
0.0392571
0.0392545
0.0392518
0.0392497
0.0392504
0.0392563
0.0393213
0.0397174
0.0397174
0.0393224
0.0392576
0.0392487
0.0392496
0.0392513
0.0392544
0.0392569
0.0392585
0.0392589
0.0392599
0.0392601
0.0392607
0.0392612
0.0392616
0.0392608
0.0392612
0.0392614
0.0392615
0.0392604
0.0392602
0.0392592
0.0392587
0.0392579
0.039257
0.0392546
0.0392523
0.0392509
0.0392496
0.0392569
0.0393232
0.0397172
0.0397173
0.0393215
0.0392588
0.0392521
0.0392502
0.039252
0.0392541
0.0392572
0.039258
0.0392585
0.0392588
0.0392592
0.0392598
0.0392602
0.0392607
0.0392612
0.0392612
0.0392617
0.0392609
0.0392608
0.039259
0.0392584
0.0392561
0.0392558
0.0392532
0.0392517
0.039248
0.0392478
0.0392536
0.039271
0.0393285
0.0396638
0.0391406
0.0614285
0.0337774
0.0237581
0.0226035
0.0205972
0.0182715
0.019728
0.0252307
0.0274771
0.0238352
0.0214281
0.02039
0.0194197
0.0191975
0.0177847
0.0168461
0.0179691
0.0229578
0.0272023
0.0270588
0.0271145
0.0271787
0.0264645
0.0246311
0.0227575
0.0224236
0.0232994
0.0255624
0.0294236
0.0340501
0.0388697
0.0432574
0.0454574
0.0419466
0.0300559
0.0190337
0.0150568
0.0153844
0.0194264
0.0240302
0.0260211
0.0253214
0.0238212
0.0233509
0.0235895
0.0233418
0.0243365
0.0252812
0.0266683
0.0289431
0.0310916
0.0327601
0.0339064
0.0323073
0.029785
0.0262988
0.0237176
0.0222099
0.0214157
0.0211472
0.0211071
0.0209894
0.020581
0.0200999
0.0197791
0.020051
0.0211372
0.0226356
0.0233978
0.0233708
0.0229272
0.0223487
0.0218905
0.021247
0.0206957
0.0212192
0.0222056
0.0234762
0.0243408
0.0261758
0.0287071
0.0327963
0.0358464
0.0354986
0.031114
0.0273715
0.0265475
0.0274131
0.0271552
0.0237163
0.0212697
0.0203114
0.0199885
0.0200487
0.0208319
0.023058
0.0265703
0.031561
0.0366162
0.0401611
0.041116
0.0401711
0.0363251
0.0327499
0.0298174
0.027714
0.0263332
0.0257529
0.0248791
0.0247493
0.0247448
0.0253402
0.0262916
0.0284668
0.0314184
0.0367056
0.0427944
0.048967
0.0520619
0.0510684
0.0462184
0.0396176
0.0346177
0.0332468
0.0348809
0.0360496
0.0344456
0.0294512
0.0237416
0.0191316
0.0175267
0.0164612
0.0172256
0.0170884
0.0171752
0.018025
0.0224383
0.033455
0.0461138
0.0541982
0.0565477
0.0559826
0.0554453
0.0531615
0.0501451
0.0461497
0.0425554
0.0395321
0.0371048
0.0356022
0.0337291
0.031579
0.030836
0.0334553
0.0386894
0.0444184
0.0484511
0.0499934
0.0475952
0.0464729
0.0465179
0.0466071
0.0486231
0.052612
0.0571861
0.0606671
0.0612842
0.0588135
0.0539383
0.0439289
0.0300109
0.02339
0.0232733
0.0255914
0.0268279
0.0294629
0.0333232
0.0336318
0.0280832
0.0257382
0.0331893
0.0479959
0.0623076
0.0639602
0.0597955
0.0554894
0.0538695
0.0531079
0.0535997
0.0537165
0.0535499
0.0517466
0.0488686
0.046969
0.0460533
0.0446197
0.043651
0.0404282
0.0361566
0.0312027
0.0271654
0.0253382
0.0260999
0.0305589
0.0335857
0.0301453
0.0237583
0.0252112
0.0361393
0.0512598
0.0617095
0.0641209
0.0616959
0.0581046
0.05636
0.0556581
0.0540187
0.0524413
0.0492382
0.047244
0.0461921
0.0469059
0.0463745
0.0500713
0.0568439
0.0623527
0.066513
0.0686956
0.0695323
0.0680901
0.0651405
0.0619037
0.0598634
0.0593248
0.0587618
0.0588835
0.0583539
0.0574357
0.0559574
0.0538721
0.0529701
0.0520874
0.0518922
0.0520703
0.0540692
0.0585569
0.0622351
0.0640284
0.0650273
0.0671471
0.067615
0.0688481
0.0697108
0.0706209
0.0712755
0.0718114
0.0722174
0.0721713
0.0716244
0.0710269
0.0696581
0.0672222
0.0649202
0.0624254
0.0606147
0.0600226
0.0623708
0.0582267
0.0596646
0.0584813
0.0575012
0.0579206
0.0573226
0.0605418
0.0597773
0.0601046
0.0598462
0.0600842
0.0593786
0.0586154
0.0570952
0.0551238
0.0532874
0.0520034
0.0502428
0.0498586
0.0497012
0.0497405
0.049739
0.0497396
0.0497391
0.0497346
0.0497345
0.0497355
0.049735
0.049734
0.0497326
0.0497318
0.0497313
0.0497335
0.0497378
0.0497488
0.0498363
0.0498364
0.0497461
0.049737
0.0497341
0.0497313
0.0497319
0.0497318
0.0497332
0.0497331
0.0497344
0.0497347
0.0497358
0.0497364
0.0497376
0.0497379
0.0497388
0.0497382
0.0497383
0.0497369
0.0497367
0.0497356
0.0497356
0.0497347
0.0497348
0.0497332
0.0497329
0.0497316
0.0497309
0.0497316
0.0497341
0.0497464
0.0498364
0.049836
0.0497473
0.0497352
0.0497301
0.0497309
0.0497316
0.0497324
0.0497337
0.0497343
0.049735
0.0497353
0.0497361
0.0497362
0.0497376
0.0497378
0.0497376
0.0497377
0.0497375
0.0497376
0.0497359
0.0497358
0.0497344
0.0497343
0.0497335
0.0497333
0.0497322
0.0497321
0.0497316
0.0497301
0.0497333
0.0497471
0.049836
0.0498365
0.0497459
0.0497356
0.0497326
0.0497304
0.0497316
0.0497313
0.0497329
0.0497329
0.0497341
0.0497338
0.0497348
0.0497349
0.0497358
0.0497364
0.0497377
0.049737
0.0497369
0.0497361
0.0497355
0.0497335
0.0497328
0.0497308
0.049731
0.0497287
0.0497283
0.0497252
0.0497244
0.0497255
0.0497324
0.0497455
0.0498488
0.0502273
0.0615715
0.0347885
0.0225747
0.0194026
0.017734
0.0173978
0.0221593
0.0308854
0.0337859
0.0288532
0.0225258
0.0198993
0.0189423
0.0183633
0.0172858
0.0159677
0.0162038
0.0198648
0.027773
0.0289921
0.0275142
0.0272693
0.026463
0.0243473
0.0218684
0.0217224
0.0237128
0.0281486
0.0341833
0.0402445
0.044798
0.0464083
0.042902
0.032626
0.0209541
0.0154532
0.0147326
0.0175136
0.0230145
0.0271349
0.0273618
0.0247749
0.0226435
0.0223038
0.023033
0.0241862
0.0251632
0.0263077
0.0271276
0.0282894
0.0278243
0.0279406
0.026152
0.0244614
0.0227965
0.0217421
0.0212849
0.0210805
0.0208893
0.0207146
0.0204775
0.0202435
0.0201572
0.0204296
0.0211319
0.0223418
0.0234186
0.0239669
0.023897
0.0233616
0.0225246
0.0218195
0.0214387
0.0211436
0.0210701
0.0218318
0.0230189
0.0245611
0.0261317
0.0284903
0.032277
0.0361585
0.0370868
0.0353386
0.0308089
0.0279414
0.0276688
0.0283444
0.0272651
0.0234796
0.0212896
0.0205694
0.0204446
0.0211637
0.0235364
0.0275022
0.0324294
0.0373146
0.0406592
0.0418592
0.0414752
0.038922
0.0358959
0.0330378
0.0305594
0.0289289
0.0276265
0.0270023
0.026633
0.0260788
0.0263255
0.0272128
0.0292157
0.0326546
0.0379923
0.0444039
0.0508548
0.0549213
0.055556
0.0531256
0.0475361
0.0412837
0.0366945
0.0353822
0.0366343
0.0376504
0.0365024
0.0330196
0.0282301
0.0231863
0.0198338
0.0181114
0.0173628
0.0179108
0.0200504
0.0253214
0.0352762
0.0460575
0.0540283
0.0568804
0.0576727
0.0570491
0.0551915
0.0523197
0.0487364
0.0456176
0.0428146
0.0405861
0.0388018
0.0373968
0.0361322
0.0339652
0.0334672
0.0361796
0.0413085
0.0460143
0.0485535
0.0484563
0.0469871
0.0463168
0.0457843
0.0464831
0.0484807
0.0519341
0.0568428
0.0610902
0.0609705
0.0573883
0.0483238
0.0354739
0.0251597
0.0223421
0.0249745
0.028257
0.0300375
0.0315212
0.0318261
0.02878
0.0245062
0.0232712
0.0279182
0.0396842
0.053287
0.0604846
0.0615463
0.0608164
0.0596166
0.0581776
0.0582593
0.0567982
0.055419
0.0531036
0.0500678
0.0469516
0.045484
0.0451882
0.0452462
0.0458706
0.0439982
0.0395771
0.034306
0.0304133
0.0315099
0.0357748
0.0430595
0.0441688
0.0372113
0.0285274
0.0288932
0.0383227
0.0526778
0.0607004
0.0625129
0.0595973
0.0571682
0.055648
0.054009
0.0525256
0.0511172
0.0499452
0.0486183
0.04654
0.0475916
0.0473544
0.0556551
0.0600717
0.0651552
0.0683932
0.07004
0.070759
0.0707831
0.0692985
0.0684226
0.0667365
0.0661309
0.0658994
0.0651084
0.0657136
0.0645008
0.0639878
0.0623841
0.0615865
0.0624812
0.0648097
0.065318
0.067708
0.0678519
0.068819
0.0689064
0.0692409
0.0700165
0.0701556
0.0709556
0.071455
0.0718784
0.0723382
0.0725037
0.072319
0.0719808
0.0715933
0.0707209
0.0695845
0.068477
0.0672736
0.0656544
0.0649973
0.0641311
0.0651133
0.0640741
0.0637591
0.0644638
0.0646198
0.0656729
0.0652048
0.0658908
0.0654867
0.0653929
0.064934
0.0644347
0.0637086
0.063573
0.0628179
0.0616187
0.0602375
0.058987
0.0580444
0.0580259
0.0579843
0.0580001
0.0579992
0.0579993
0.0579964
0.0579963
0.0579967
0.0579961
0.0579959
0.0579951
0.0579952
0.057995
0.0579968
0.0579988
0.0580019
0.0580325
0.0580327
0.058001
0.0579984
0.0579972
0.0579951
0.0579951
0.0579947
0.0579953
0.0579951
0.0579958
0.0579963
0.057997
0.0579975
0.0579981
0.0579985
0.057999
0.0579987
0.0579987
0.0579976
0.0579975
0.0579968
0.0579968
0.0579959
0.057996
0.0579953
0.0579955
0.0579951
0.057995
0.0579959
0.0579969
0.0580011
0.0580326
0.0580323
0.0580013
0.0579976
0.057995
0.0579951
0.057995
0.0579951
0.0579955
0.0579955
0.057996
0.0579962
0.057997
0.057997
0.0579982
0.0579982
0.0579985
0.0579985
0.0579983
0.0579982
0.0579971
0.0579971
0.0579961
0.0579958
0.0579954
0.0579953
0.057995
0.0579953
0.0579957
0.0579951
0.0579965
0.0580013
0.0580321
0.0580326
0.0580007
0.0579975
0.057996
0.0579948
0.057995
0.0579945
0.0579951
0.057995
0.0579955
0.0579957
0.0579964
0.0579967
0.0579971
0.0579974
0.0579981
0.0579978
0.0579975
0.0579973
0.0579968
0.0579959
0.0579952
0.0579943
0.0579939
0.057993
0.0579926
0.0579918
0.0579909
0.0579905
0.0579917
0.0579953
0.0580236
0.0580189
0.0650907
0.042044
0.0234055
0.0179192
0.0169656
0.018439
0.0271817
0.0382829
0.040638
0.0349118
0.0268932
0.0214144
0.0195438
0.0185316
0.0180374
0.0169942
0.0163648
0.0183286
0.0264749
0.0321727
0.0321447
0.0288419
0.0271268
0.0244453
0.021339
0.0211395
0.0239405
0.0297906
0.0364663
0.0417427
0.0433177
0.0414929
0.0328218
0.0221696
0.0158632
0.0142142
0.0156906
0.0205485
0.0272152
0.0305189
0.0289204
0.0249373
0.0225029
0.0220058
0.0222058
0.0227948
0.0234466
0.0240078
0.0242822
0.0242377
0.0239395
0.0233369
0.0226338
0.0224471
0.0220498
0.0221558
0.0222327
0.0223425
0.0223153
0.022156
0.0220031
0.0218854
0.021974
0.0223715
0.0230124
0.0236955
0.0241711
0.0244204
0.0244567
0.0242
0.0236129
0.0231083
0.0226619
0.0227056
0.0232004
0.0242049
0.0256219
0.027546
0.0299693
0.0327732
0.0357698
0.0376065
0.0372159
0.0351549
0.0320654
0.0302193
0.0294794
0.0295693
0.0272487
0.024021
0.0218545
0.0212361
0.0213895
0.0223096
0.0248386
0.0287455
0.0331802
0.0373367
0.0400624
0.040806
0.0398198
0.0380303
0.0362082
0.0343883
0.0323326
0.0305266
0.0289021
0.028094
0.0277975
0.0285267
0.0292376
0.03204
0.0359066
0.0416333
0.0480622
0.0540515
0.0578477
0.0587569
0.0581523
0.0551922
0.0501063
0.0445411
0.0402494
0.0384024
0.0387515
0.0392803
0.0384398
0.0362098
0.033393
0.0303363
0.0272985
0.0257251
0.0257956
0.0279079
0.0329573
0.0394891
0.0463815
0.0516981
0.0547358
0.0560309
0.0568958
0.0567111
0.055558
0.0535243
0.0505492
0.0477224
0.0449737
0.0433439
0.0414106
0.0408149
0.0395147
0.0380213
0.0371744
0.0388305
0.0422036
0.0453619
0.0469388
0.0469636
0.0464812
0.045998
0.0460724
0.0467715
0.0481981
0.0508535
0.0563953
0.0607614
0.0588243
0.0517918
0.0414885
0.0295238
0.0228615
0.0217154
0.0244844
0.0278956
0.0291584
0.029098
0.0271721
0.0244929
0.0223023
0.0226633
0.0257941
0.031199
0.0392852
0.0469028
0.0516892
0.0537442
0.0541544
0.0542757
0.0529906
0.0516579
0.0498442
0.0476118
0.0448884
0.0426263
0.041706
0.0419526
0.0429024
0.0445842
0.04686
0.046548
0.0443342
0.0419305
0.0420156
0.0452266
0.0481657
0.0498584
0.0480863
0.0429958
0.0338388
0.0325761
0.0390762
0.0483827
0.0543782
0.0573705
0.0550772
0.0577402
0.0539731
0.0534759
0.0514183
0.0500588
0.0505969
0.0521829
0.0516289
0.0548712
0.0573411
0.0627629
0.0664273
0.0688914
0.070204
0.0708781
0.0712627
0.0711527
0.0716176
0.0711118
0.0708352
0.0704898
0.0706328
0.0698068
0.069404
0.0687549
0.0679488
0.0681775
0.0683339
0.068102
0.0692278
0.0691798
0.0696222
0.069714
0.0702409
0.0704072
0.0707984
0.0709172
0.0718399
0.0721799
0.0723561
0.0725623
0.0724481
0.0722905
0.071986
0.0719668
0.0714067
0.0714055
0.0709825
0.0703727
0.0684325
0.0683824
0.0684274
0.0682991
0.0689069
0.068609
0.0683834
0.0692131
0.0697447
0.0706414
0.0701069
0.0708304
0.0698489
0.0700136
0.0691559
0.0691548
0.0685033
0.0688519
0.0682838
0.0680396
0.0676413
0.0671004
0.0669025
0.0668396
0.066875
0.0668688
0.0668704
0.0668676
0.0668685
0.0668683
0.066868
0.0668671
0.0668661
0.0668655
0.0668645
0.0668649
0.0668652
0.0668721
0.0668955
0.0668955
0.0668716
0.0668647
0.0668652
0.0668644
0.0668651
0.0668655
0.0668663
0.0668669
0.0668673
0.0668682
0.066868
0.0668688
0.0668683
0.0668686
0.0668682
0.0668682
0.0668687
0.0668681
0.0668685
0.0668681
0.0668683
0.0668676
0.0668675
0.0668666
0.0668663
0.0668654
0.0668644
0.0668642
0.0668637
0.0668716
0.0668955
0.0668955
0.0668714
0.0668644
0.0668635
0.0668644
0.0668652
0.0668658
0.0668667
0.0668668
0.0668676
0.0668675
0.0668683
0.0668677
0.0668687
0.0668681
0.0668683
0.0668682
0.0668686
0.0668686
0.0668684
0.0668683
0.0668681
0.0668674
0.0668671
0.0668664
0.066866
0.0668655
0.0668653
0.0668636
0.0668633
0.0668716
0.0668953
0.0668956
0.0668712
0.0668641
0.0668645
0.0668648
0.0668656
0.0668662
0.0668669
0.0668678
0.0668679
0.0668686
0.0668682
0.0668685
0.0668679
0.066868
0.0668678
0.0668678
0.0668675
0.0668687
0.066868
0.0668687
0.0668676
0.0668676
0.0668663
0.0668655
0.0668639
0.0668621
0.0668599
0.066858
0.0668571
0.0668639
0.0669268
0.0674954
0.0692063
0.0511737
0.0274155
0.0185464
0.0177196
0.0224855
0.0347995
0.0455467
0.0453877
0.0374107
0.0296827
0.0238978
0.0208366
0.0193209
0.0186452
0.0169758
0.0164141
0.0183705
0.025866
0.0358545
0.0406172
0.0367907
0.0296355
0.0248694
0.0214206
0.0204046
0.0226222
0.0271949
0.0320365
0.0343182
0.032989
0.0277843
0.0210974
0.0161573
0.0142303
0.0149258
0.0192195
0.0269454
0.0338458
0.0356857
0.0323499
0.0273367
0.0241102
0.0227904
0.0223669
0.0222925
0.0224251
0.0228619
0.022947
0.023277
0.022976
0.0234064
0.0232611
0.023673
0.0239743
0.0243079
0.024257
0.0243915
0.0242762
0.0242202
0.0240087
0.0238566
0.0238086
0.0239167
0.024114
0.0242922
0.0245246
0.024712
0.0249452
0.0252119
0.0251946
0.025497
0.0254825
0.0258857
0.0265042
0.0275749
0.0290087
0.0309161
0.0328568
0.034672
0.0359197
0.0359441
0.0351153
0.033455
0.0325066
0.0312319
0.0303216
0.029213
0.0272296
0.0248133
0.0228432
0.0220966
0.0222519
0.0230016
0.0246539
0.0271409
0.030261
0.0336435
0.036253
0.0373542
0.0370351
0.0363383
0.0360313
0.0360297
0.0357887
0.0352118
0.0345926
0.0343619
0.0344952
0.0355959
0.0392267
0.0428191
0.0480366
0.0532506
0.0575854
0.0601584
0.0611228
0.0606321
0.0594322
0.0572218
0.0537025
0.0494435
0.0457523
0.043267
0.0421265
0.0413762
0.0402127
0.038514
0.0368737
0.0353
0.0344845
0.0349083
0.0362406
0.0384079
0.0415433
0.0448281
0.0472045
0.0488394
0.0499225
0.051157
0.0525392
0.0541571
0.0550621
0.0547596
0.0538124
0.0509701
0.0489848
0.0467039
0.0454575
0.0441992
0.0431739
0.0424128
0.0414594
0.0420034
0.0431134
0.0444215
0.0454651
0.045772
0.0459866
0.0461888
0.0465692
0.0476067
0.0485633
0.0500655
0.0548728
0.0594621
0.0568421
0.0476277
0.0365268
0.026749
0.0212294
0.0202395
0.0214248
0.0234699
0.0245104
0.0238627
0.0224207
0.0209049
0.0209984
0.0225207
0.0247552
0.0270718
0.0296982
0.0330673
0.0362731
0.0388154
0.040437
0.0412249
0.0402322
0.0403044
0.0385171
0.0379189
0.0374118
0.0371636
0.0382705
0.0391482
0.0412776
0.0440157
0.0470111
0.0493721
0.0502703
0.0502502
0.0504146
0.051245
0.0514537
0.0513785
0.0521093
0.0510541
0.0476482
0.0394808
0.0369369
0.0391764
0.0430943
0.0480313
0.0507089
0.0510194
0.0511559
0.0512576
0.0507217
0.052278
0.0553424
0.0570792
0.0595151
0.061271
0.064014
0.0673275
0.0699564
0.0708537
0.0718
0.071844
0.0719111
0.0717595
0.0720166
0.0721912
0.072513
0.0719774
0.0719179
0.0717315
0.0710237
0.0710812
0.0709464
0.0709808
0.0702646
0.0704837
0.0703272
0.0706228
0.0705128
0.0707471
0.0707514
0.0709613
0.071254
0.0713586
0.0719287
0.0722137
0.0723853
0.0724094
0.0723314
0.0722379
0.072214
0.0721764
0.0720962
0.0718932
0.0716716
0.0712032
0.071016
0.0706528
0.0703952
0.0708542
0.0706314
0.0713745
0.0714096
0.0709234
0.071218
0.0713587
0.0714348
0.0714894
0.0714579
0.071466
0.0713707
0.0713345
0.0712348
0.0711854
0.0711876
0.0710649
0.0710279
0.0710053
0.0710025
0.0710041
0.0709947
0.0709993
0.070999
0.0709986
0.070999
0.0709989
0.0709989
0.0709986
0.0709985
0.0709982
0.0709979
0.0709976
0.0709975
0.0709992
0.0710018
0.0710019
0.0709991
0.0709975
0.0709976
0.0709978
0.070998
0.0709983
0.0709985
0.0709987
0.0709987
0.0709988
0.0709987
0.0709987
0.0709987
0.0709987
0.0709987
0.0709987
0.0709988
0.0709987
0.0709987
0.0709988
0.0709988
0.0709988
0.0709987
0.0709986
0.0709984
0.0709982
0.0709979
0.0709976
0.0709973
0.0709991
0.0710019
0.0710018
0.0709991
0.0709974
0.0709975
0.0709978
0.0709982
0.0709984
0.0709986
0.0709986
0.0709987
0.0709987
0.0709987
0.0709986
0.0709988
0.0709987
0.0709987
0.0709987
0.0709988
0.0709988
0.0709988
0.0709987
0.0709988
0.0709987
0.0709987
0.0709986
0.0709984
0.0709982
0.070998
0.0709975
0.0709972
0.070999
0.0710018
0.0710019
0.0709991
0.0709973
0.0709976
0.0709979
0.0709982
0.0709985
0.0709987
0.0709988
0.0709989
0.070999
0.0709988
0.0709987
0.0709987
0.0709986
0.0709985
0.0709986
0.0709986
0.0709988
0.0709987
0.0709988
0.0709988
0.0709987
0.0709985
0.0709982
0.0709978
0.0709973
0.0709966
0.0709961
0.0709955
0.0709975
0.0710249
0.0713411
0.0720778
0.0642849
0.0404738
0.0237951
0.0216182
0.0279428
0.0401237
0.0491245
0.0483072
0.038422
0.0286689
0.0232523
0.0204581
0.0190187
0.0179518
0.0170372
0.0177719
0.0214068
0.0278492
0.036978
0.047359
0.0489834
0.0358939
0.025634
0.0220575
0.0201166
0.0201238
0.0209405
0.0216256
0.0212415
0.0198193
0.0175741
0.0158633
0.015003
0.0161435
0.0196924
0.0277444
0.0369075
0.0432883
0.0447248
0.0417894
0.0367452
0.0320601
0.0283207
0.0257387
0.0239046
0.0231572
0.0231261
0.0236569
0.0240349
0.0243166
0.0245584
0.0249744
0.0252536
0.0254485
0.025587
0.0256544
0.025702
0.0255965
0.0255757
0.0254051
0.0252497
0.025122
0.0250195
0.024964
0.0249192
0.0250196
0.0250999
0.0251908
0.025315
0.0253809
0.0256577
0.0260219
0.0266969
0.0273019
0.0279492
0.0287678
0.0296062
0.0305473
0.0310082
0.0309736
0.0305565
0.0294331
0.0286487
0.0280786
0.0278452
0.0277739
0.0268764
0.0266939
0.0258136
0.0241165
0.0232359
0.0229716
0.0236989
0.0249223
0.0262789
0.027757
0.0294901
0.0310835
0.0321433
0.0324861
0.0326728
0.0333285
0.034618
0.0362334
0.0380305
0.0398164
0.041696
0.04389
0.0457324
0.0482569
0.0517633
0.0545685
0.056687
0.058258
0.0590903
0.0591221
0.0586427
0.0576824
0.0562326
0.0544198
0.0522429
0.050032
0.0479788
0.0461391
0.0441538
0.0421546
0.0403643
0.0389988
0.0376089
0.0363909
0.036173
0.0367794
0.0380442
0.0394108
0.0402905
0.0411712
0.0415969
0.042371
0.043214
0.0450264
0.0466554
0.0493376
0.0510845
0.0528405
0.0531812
0.0524477
0.0522344
0.0501783
0.0496102
0.0480956
0.0472259
0.046477
0.0460291
0.0459074
0.0461862
0.0465216
0.0468552
0.0473156
0.0476622
0.0482151
0.0487735
0.0491917
0.0495915
0.0529554
0.0582359
0.0566944
0.0475356
0.0366465
0.0277942
0.0223281
0.0200219
0.0197601
0.01987
0.020191
0.0201597
0.0201756
0.0202934
0.0212693
0.0226633
0.0253285
0.0274388
0.030647
0.0330044
0.0361199
0.0384379
0.0399941
0.0403179
0.0403778
0.0393693
0.0386068
0.0381233
0.0379818
0.03824
0.0394692
0.0416704
0.0450387
0.0484021
0.0510465
0.0529232
0.0540016
0.054683
0.0551012
0.0546819
0.0544535
0.0549586
0.0546763
0.0545547
0.0536944
0.0521896
0.0457698
0.0418231
0.0439848
0.0430566
0.0467825
0.0463517
0.0486641
0.0513414
0.0543341
0.0576591
0.0611104
0.0641431
0.0665372
0.0672132
0.0692363
0.0705193
0.0720228
0.0723231
0.0725181
0.0724321
0.072621
0.0724709
0.0724852
0.0724602
0.0724633
0.0724668
0.0725305
0.0721987
0.0728969
0.0720305
0.071947
0.0717972
0.0714525
0.0711182
0.0713296
0.0714066
0.0716531
0.0714907
0.0716297
0.0715297
0.0717606
0.0718838
0.0719855
0.0721204
0.0722388
0.0722491
0.0722302
0.072181
0.072146
0.0721688
0.0721993
0.0721933
0.0720868
0.0717566
0.0715299
0.0713227
0.0713905
0.0715547
0.0718279
0.0717605
0.0720358
0.0723849
0.0718422
0.0720291
0.0720644
0.0719929
0.0720486
0.0720763
0.0720692
0.0719766
0.0719819
0.0720891
0.0719283
0.0722589
0.071897
0.07244
0.0720416
0.0719941
0.071993
0.0719941
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.0719939
0.0719939
0.0719938
0.0719938
0.0719939
0.0719939
0.0719939
0.0719939
0.0719938
0.0719938
0.0719938
0.0719939
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.0719939
0.0719938
0.0719938
0.0719937
0.0719939
0.0719939
0.0719939
0.0719939
0.0719937
0.0719938
0.0719939
0.0719939
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.0719939
0.0719938
0.0719938
0.0719937
0.0719939
0.0719939
0.0719939
0.0719939
0.0719938
0.0719938
0.0719938
0.0719939
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.0719939
0.0719937
0.0719936
0.0719935
0.0719935
0.0719939
0.0720007
0.0720813
0.0728398
0.0727179
0.0555644
0.0349395
0.0293822
0.0328959
0.0408301
0.049872
0.0525495
0.0476993
0.0377118
0.0301784
0.0264423
0.025014
0.0246084
0.0257691
0.0299789
0.0358156
0.0409709
0.0455073
0.0504744
0.0542861
0.0452175
0.0268365
0.0233187
0.0207515
0.0198447
0.0194438
0.019115
0.0186776
0.0185006
0.0184554
0.0187851
0.0201104
0.0229903
0.0281084
0.0349897
0.0427751
0.049945
0.054226
0.055603
0.0555175
0.0550197
0.053574
0.0489717
0.0368109
0.0267546
0.0229286
0.0233736
0.0243434
0.0245078
0.0251809
0.0253001
0.025777
0.0258463
0.0260926
0.0261182
0.0262611
0.026299
0.026288
0.0263018
0.0262466
0.0261923
0.0260781
0.0259083
0.0259131
0.0258647
0.0257785
0.0256879
0.0256015
0.0255061
0.0255424
0.025687
0.0256896
0.0259932
0.0259935
0.0261395
0.0261803
0.0263522
0.0263031
0.0261583
0.0260976
0.0258793
0.0257079
0.02548
0.0255219
0.0254367
0.025586
0.0257779
0.0261626
0.025921
0.0245705
0.023796
0.0236343
0.0247893
0.0261914
0.0269399
0.0274667
0.0279391
0.0284882
0.0289825
0.0294498
0.029829
0.0304034
0.0310425
0.031948
0.0339093
0.0363422
0.0386346
0.0405826
0.0420074
0.0431206
0.0449536
0.0454745
0.0460171
0.0462226
0.0468613
0.0470469
0.047482
0.0473321
0.0475296
0.0470948
0.0464032
0.0456749
0.0448387
0.0439742
0.0429453
0.0418264
0.0404588
0.039374
0.037863
0.0361025
0.0359093
0.0361637
0.0365051
0.0369318
0.0370426
0.0373879
0.0377462
0.0383945
0.0389636
0.0403168
0.0413554
0.043735
0.0449013
0.0473433
0.048415
0.0494308
0.0500995
0.0503578
0.0503542
0.0502167
0.0499713
0.0497809
0.0496433
0.0496856
0.0496675
0.0496722
0.0497973
0.0495748
0.0495619
0.04962
0.049601
0.0493843
0.0507405
0.0564467
0.0577567
0.051362
0.0436919
0.0383409
0.0337129
0.0302154
0.028723
0.027248
0.0272817
0.026851
0.0273821
0.02878
0.0309364
0.0339052
0.0371315
0.0424633
0.0454402
0.0500244
0.0511727
0.0520899
0.0519845
0.051527
0.0512193
0.0505789
0.0504958
0.0494139
0.0486637
0.0497767
0.050053
0.0517578
0.0526831
0.0543204
0.0553475
0.0566315
0.0573618
0.0579362
0.0581846
0.0583366
0.0584516
0.0589017
0.058456
0.0594952
0.0592001
0.0607136
0.0576844
0.0576161
0.0538958
0.0545016
0.0537347
0.056763
0.0563287
0.0592624
0.0619315
0.0649131
0.0672118
0.0700839
0.0712764
0.0714406
0.0716213
0.0721121
0.0723485
0.0722228
0.0722388
0.0722645
0.0723232
0.0723733
0.0724069
0.0723927
0.0723711
0.0723011
0.0722751
0.0721898
0.0721256
0.0720625
0.0720649
0.0720724
0.072033
0.0719561
0.0719573
0.0718949
0.0718872
0.0719048
0.071884
0.0719087
0.0719723
0.0719828
0.0720851
0.0721577
0.0722109
0.0721988
0.0721739
0.0721569
0.0721653
0.072199
0.0722289
0.072247
0.0722723
0.0722878
0.0722952
0.0722531
0.0722421
0.0722175
0.072187
0.0722535
0.0720735
0.072072
0.0721126
0.0721226
0.0721002
0.0721063
0.0721154
0.0721209
0.0721277
0.0721307
0.072137
0.0721364
0.0721523
0.0721322
0.072142
0.0721121
0.0720997
0.0720962
0.0720962
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720964
0.0720998
0.0231857
0.0223813
0.0205581
0.0197035
0.0185614
0.0180365
0.0182463
0.0191503
0.0200075
0.0213353
0.0231296
0.0261323
0.0273381
0.0274957
0.0199831
0.0197869
0.0195524
0.0195412
0.0197145
0.020045
0.0201977
0.0202973
0.0202699
0.0204371
0.0204882
0.0205525
0.021079
0.0216532
0.021082
0.0214334
0.0205899
0.0204368
0.0196732
0.0192296
0.0185424
0.0182059
0.018014
0.0184299
0.0196184
0.0214673
0.026143
0.0276531
0.0285628
0.0286427
0.0248029
0.0258765
0.026334
0.0260857
0.026083
0.0262439
0.0266398
0.0272488
0.0279691
0.0285889
0.0291413
0.0294823
0.0297305
0.0298057
0.0299455
0.0298872
0.0298033
0.0296163
0.029406
0.0292123
0.0289003
0.0277273
0.0256759
0.0230141
0.0209752
0.0199581
0.0201433
0.0217057
0.0244298
0.0267371
0.028351
0.0304137
0.029734
0.0292036
0.0293788
0.0297386
0.0302662
0.0307564
0.0313485
0.0317897
0.0315654
0.0309959
0.030296
0.0300076
0.0299433
0.030014
0.0304281
0.0309577
0.0316549
0.0322173
0.0325777
0.0326082
0.0320815
0.0307763
0.027617
0.0230629
0.0206427
0.02154
0.0247589
0.026551
0.0264022
0.0287652
0.0292232
0.0296341
0.0299622
0.0304658
0.0305669
0.0304635
0.0309408
0.0310524
0.0316887
0.0319419
0.0318258
0.031378
0.0310475
0.0303943
0.0297022
0.0292117
0.0287287
0.0280763
0.0269286
0.0251434
0.0227402
0.0198271
0.0186635
0.0208278
0.0231315
0.0254699
0.0258483
0.0263727
0.0219173
0.0221087
0.0221982
0.0234108
0.0242803
0.0254449
0.0268658
0.0277606
0.028096
0.028879
0.0300536
0.0307727
0.0304947
0.0287808
0.0260815
0.0228751
0.0202103
0.0190166
0.0184856
0.0184178
0.0185223
0.018801
0.0190969
0.019719
0.0203808
0.0213305
0.0227663
0.0224529
0.0230352
0.0234612
0.0215438
0.0217724
0.0238992
0.0278649
0.0325413
0.0349436
0.0387484
0.0396149
0.0416641
0.0432241
0.0434557
0.045332
0.0438963
0.0423298
0.039694
0.0363833
0.0340229
0.0325715
0.0288495
0.0237403
0.0193251
0.0178901
0.0176837
0.0178075
0.0178272
0.0178065
0.0179098
0.0186404
0.0196368
0.0208083
0.0211704
0.0224101
0.024338
0.0247973
0.0245475
0.0239881
0.0239203
0.0237576
0.0232217
0.0231734
0.0229548
0.0229393
0.0227444
0.0227294
0.0221969
0.0214324
0.019569
0.0183241
0.0168229
0.0170103
0.0172063
0.0169807
0.017034
0.0173883
0.0177515
0.0181352
0.0186519
0.0195485
0.0204472
0.0203314
0.0205997
0.018582
0.018549
0.0183659
0.0182362
0.0184199
0.0180678
0.0178411
0.0176805
0.0176204
0.0175972
0.0176072
0.0178477
0.0180971
0.0185088
0.0189009
0.0193799
0.0200388
0.0210094
0.0218575
0.0231977
0.0235756
0.0243848
0.0239219
0.0246885
0.0238292
0.0250252
0.0251431
0.0261532
0.0267662
0.0278202
0.0264493
0.0265791
0.0281757
0.0287956
0.0289768
0.0289788
0.0289836
0.0289809
0.0289796
0.028978
0.0289763
0.0289735
0.0289709
0.0289686
0.0289682
0.0289694
0.0289729
0.0289764
0.028979
0.0289805
0.0289823
0.028984
0.0289855
0.028987
0.0289883
0.0289898
0.0289912
0.0289961
0.0290662
0.0290664
0.0289954
0.0289908
0.0289888
0.0289877
0.028986
0.0289846
0.028983
0.0289816
0.0289799
0.0289785
0.0289764
0.0289735
0.0289704
0.0289685
0.0289679
0.02897
0.0289727
0.0289759
0.0289779
0.0289796
0.0289813
0.0289829
0.0289845
0.0289863
0.0289876
0.028989
0.0289903
0.0289952
0.0290664
0.0290661
0.0289955
0.0289904
0.0289893
0.028988
0.0289865
0.0289849
0.0289831
0.0289814
0.0289796
0.0289779
0.0289757
0.028973
0.02897
0.0289682
0.0289682
0.0289698
0.0289731
0.0289759
0.028978
0.0289796
0.0289813
0.0289828
0.0289845
0.028986
0.0289875
0.0289888
0.0289907
0.0289955
0.0290661
0.0290664
0.0289953
0.0289904
0.0289885
0.0289871
0.0289856
0.0289843
0.0289829
0.0289815
0.0289802
0.0289785
0.0289767
0.0289739
0.0289708
0.0289687
0.028968
0.0289699
0.0289726
0.0289757
0.0289776
0.0289795
0.0289813
0.028983
0.0289846
0.0289862
0.0289876
0.0289891
0.0289903
0.0289951
0.0290664
0.0217162
0.0216448
0.0215363
0.0231906
0.0222399
0.0214003
0.0197017
0.0180978
0.0177043
0.0186805
0.0205205
0.0234938
0.0262422
0.0267407
0.0189726
0.0187159
0.0200802
0.0220771
0.0242347
0.025639
0.0270056
0.0275978
0.0285414
0.0293203
0.0297614
0.0312271
0.0315377
0.0325606
0.0314452
0.0302428
0.0276538
0.0257131
0.0240488
0.02157
0.019251
0.0181093
0.0177687
0.0182337
0.0200076
0.0231684
0.0262839
0.0283326
0.0287137
0.0286867
0.0247968
0.0256767
0.0255749
0.0251188
0.0249468
0.0253026
0.0261838
0.0274016
0.028961
0.0303627
0.0315516
0.032138
0.0323661
0.0322255
0.03181
0.0311686
0.0303553
0.029385
0.0283978
0.0280809
0.0283886
0.0282476
0.0262797
0.0230516
0.0206035
0.0200553
0.0208094
0.0232395
0.0253901
0.0269338
0.0282691
0.0303476
0.0297817
0.0292321
0.0293007
0.0297318
0.0306834
0.0315753
0.031512
0.0300927
0.0280823
0.027119
0.0265987
0.0264463
0.0262197
0.0259702
0.0260634
0.0265766
0.0275613
0.028896
0.030047
0.0307767
0.030894
0.0298889
0.0265909
0.0223262
0.0203985
0.021886
0.0253047
0.0266431
0.0256318
0.0271981
0.0276941
0.0284685
0.0294251
0.0304728
0.0311841
0.0315951
0.0329122
0.0339765
0.0342273
0.0337885
0.0319754
0.0296751
0.0272824
0.025465
0.0238941
0.0229615
0.0220582
0.0214125
0.0215198
0.0215622
0.0204844
0.0188167
0.0189932
0.0212738
0.0239396
0.0255317
0.0267667
0.0267069
0.0218465
0.0218365
0.02218
0.0240287
0.0266289
0.0287819
0.0301488
0.0299124
0.0291828
0.0293529
0.0305553
0.029875
0.0252221
0.0214555
0.0199206
0.0190235
0.0185698
0.018163
0.0181535
0.0180374
0.018008
0.0180016
0.0180638
0.0183466
0.0185494
0.0193812
0.0193389
0.0211633
0.0209765
0.0215586
0.0219715
0.0226833
0.0257661
0.0316574
0.0383337
0.0462666
0.0510317
0.0564664
0.0596246
0.0613974
0.0627935
0.0610904
0.0591372
0.0538897
0.0483395
0.0426261
0.037068
0.0337667
0.0293819
0.0243593
0.0204028
0.0182573
0.0175982
0.0178504
0.0179221
0.0177655
0.0171372
0.0164224
0.0180511
0.0172485
0.0213664
0.0237541
0.0284734
0.0268671
0.0254605
0.024761
0.0235343
0.0227922
0.0225388
0.0224509
0.0226247
0.022365
0.0223425
0.0228178
0.0212988
0.0191871
0.0174983
0.0173543
0.0175201
0.0172978
0.0170513
0.0170125
0.0166577
0.016919
0.0170134
0.0173415
0.0175218
0.0183564
0.0197937
0.0195956
0.0194821
0.0191996
0.0218403
0.0232487
0.0229391
0.0208052
0.0215699
0.0197269
0.0189189
0.0177342
0.0165939
0.0158501
0.0150824
0.0146505
0.0142276
0.0138144
0.0137513
0.0136564
0.0139251
0.0140841
0.0145872
0.0148484
0.0150372
0.0148264
0.0148543
0.0146463
0.0150291
0.0142494
0.0153158
0.0166707
0.0162648
0.0162089
0.0173447
0.0175294
0.0195789
0.0225166
0.0258608
0.0263088
0.0263299
0.0263122
0.0262771
0.0262726
0.0262273
0.0262055
0.0261681
0.0261731
0.0261769
0.0262295
0.0262618
0.0263059
0.0263286
0.0263393
0.0263759
0.0263783
0.0264139
0.0264137
0.0264443
0.0264431
0.0265453
0.0279295
0.027987
0.0265224
0.026448
0.0264158
0.0264173
0.0263827
0.0263802
0.0263441
0.0263422
0.0263064
0.0263019
0.0262631
0.0262427
0.0261894
0.0261769
0.0261612
0.0261951
0.0262172
0.0262681
0.0262764
0.0263144
0.0263204
0.026357
0.0263606
0.0263977
0.026399
0.0264339
0.026437
0.0265285
0.0279892
0.0279338
0.0265385
0.0264483
0.0264244
0.0264187
0.0263843
0.0263792
0.026341
0.0263366
0.0262981
0.0262914
0.026253
0.0262336
0.0261834
0.0261725
0.0261725
0.0261819
0.0262346
0.0262556
0.0262942
0.0263003
0.0263374
0.0263409
0.0263775
0.0263816
0.0264145
0.0264199
0.0264489
0.0265352
0.0279348
0.0279906
0.0265216
0.0264453
0.0264096
0.0264114
0.0263735
0.0263738
0.026335
0.0263376
0.0262998
0.0263001
0.0262595
0.0262466
0.0261927
0.026181
0.0261607
0.0261954
0.0262169
0.026268
0.0262751
0.0263131
0.0263179
0.0263557
0.0263584
0.0263964
0.0263974
0.026434
0.0264371
0.0265296
0.0279898
0.0240369
0.0278618
0.0306757
0.0395744
0.0393512
0.0378147
0.0333012
0.0258485
0.0204731
0.0175821
0.01803
0.0202812
0.0245892
0.0256395
0.0170778
0.0194398
0.0236378
0.0258909
0.0266301
0.0268947
0.027378
0.0280712
0.0285316
0.0292481
0.0293713
0.0294923
0.0294116
0.0301901
0.0320388
0.0338781
0.0351372
0.0345876
0.0319423
0.0261689
0.0205178
0.0181824
0.0176163
0.0181078
0.020016
0.0233439
0.0263879
0.0278617
0.0280004
0.0269908
0.0249069
0.0253204
0.0247626
0.0240235
0.0237764
0.0239934
0.0250265
0.0264749
0.0284607
0.0306421
0.0325277
0.0339442
0.0346011
0.0347393
0.0344987
0.0337319
0.0327515
0.0310204
0.0285562
0.0267149
0.0268303
0.0274921
0.026577
0.0233239
0.0206551
0.0205151
0.0219049
0.0241595
0.0260652
0.0269537
0.0279173
0.0301703
0.0297922
0.0292099
0.0292945
0.0304195
0.0318402
0.0315399
0.0290005
0.0266763
0.0263043
0.0266685
0.026536
0.0260744
0.0257519
0.0255356
0.0253326
0.0249578
0.0249236
0.0256695
0.0269482
0.02825
0.0288918
0.0276713
0.0241801
0.0210157
0.0206341
0.0227703
0.0260124
0.0266944
0.0245113
0.0254287
0.0257672
0.0269156
0.0281689
0.0297996
0.0313787
0.0328771
0.0346794
0.0358527
0.0349566
0.0317151
0.0272162
0.0236462
0.0213957
0.0200537
0.019365
0.0190879
0.0189568
0.0188919
0.018879
0.0189292
0.0186832
0.0180417
0.0189915
0.0217393
0.024201
0.026006
0.0257431
0.0260309
0.0217695
0.0218518
0.0231672
0.0268038
0.0314829
0.0340848
0.033596
0.0313588
0.0297722
0.0299621
0.0305978
0.0272107
0.0220324
0.0198013
0.0191625
0.0183908
0.0177935
0.0174778
0.0175566
0.0179915
0.0184798
0.0192189
0.0193266
0.0193103
0.018361
0.0169071
0.0162472
0.0149254
0.0179568
0.0185222
0.0229034
0.0248659
0.0302151
0.0400835
0.050009
0.058749
0.0642296
0.0677569
0.0690369
0.0683729
0.0672335
0.0652927
0.0636829
0.0598466
0.0563275
0.0470586
0.0409926
0.0342428
0.028599
0.0241952
0.0212579
0.0191686
0.0184424
0.0156454
0.0155966
0.0165843
0.0186863
0.0167736
0.0159209
0.0158301
0.0206918
0.0267516
0.034175
0.0323145
0.0291341
0.0269264
0.0245829
0.0233375
0.0224259
0.0221177
0.0213163
0.0208418
0.0200071
0.0193026
0.0187333
0.0178972
0.0175775
0.0181025
0.0184203
0.0189308
0.0182252
0.018371
0.0175668
0.0168378
0.0163931
0.0164339
0.0167478
0.0171725
0.0184313
0.0182306
0.0187097
0.0224744
0.0329023
0.0412687
0.0398955
0.0413547
0.0428768
0.0393213
0.0368974
0.0333738
0.0296142
0.0257709
0.0224395
0.0197385
0.0174708
0.015685
0.0144185
0.0136186
0.0128531
0.0123958
0.0115624
0.0113712
0.0111766
0.0109333
0.0110268
0.0112847
0.0106888
0.0114364
0.0116639
0.0115293
0.0095179
0.0111595
0.0109551
0.0101683
0.00961616
0.00932782
0.00922952
0.00934373
0.00962487
0.00954147
0.00957628
0.0095924
0.00961964
0.00965112
0.00967197
0.00968005
0.00966552
0.009632
0.0095914
0.00956695
0.00955412
0.00953122
0.00951551
0.00950037
0.00948739
0.00947369
0.0094634
0.00944606
0.00937145
0.00812683
0.00812704
0.00937782
0.00945426
0.00947158
0.00948413
0.00949691
0.00951164
0.00952544
0.00953997
0.00955467
0.00957162
0.00959083
0.00962203
0.00965441
0.00967748
0.00967842
0.00966162
0.00962979
0.0095997
0.0095793
0.00956262
0.00954433
0.00952934
0.00951359
0.00949757
0.00948201
0.00946816
0.00945369
0.00937916
0.00812785
0.00812652
0.00938156
0.0094538
0.00946473
0.0094812
0.00949559
0.00951347
0.00952836
0.00954507
0.00956145
0.00957959
0.009598
0.00962767
0.009657
0.0096795
0.0096792
0.00965833
0.0096273
0.00959652
0.00957773
0.00956011
0.00954469
0.00952873
0.00951485
0.00949811
0.00948531
0.00946941
0.00945418
0.0093838
0.00812622
0.00812713
0.00937965
0.0094582
0.00947607
0.00948884
0.00950194
0.0095157
0.0095294
0.00954215
0.00955616
0.00957186
0.00959064
0.00961797
0.00964998
0.00967427
0.00967979
0.00966375
0.00963224
0.00960174
0.0095818
0.00956476
0.00954639
0.00953054
0.00951455
0.00949837
0.00948283
0.00946828
0.00945415
0.00938007
0.00812799
0.0371497
0.0450323
0.0480904
0.0536959
0.0534834
0.0503233
0.0470836
0.0404998
0.0316049
0.02239
0.0180842
0.0187387
0.0221559
0.0236055
0.0173629
0.0227505
0.0251091
0.0242913
0.0229754
0.0220685
0.0215318
0.0213155
0.0211545
0.0211226
0.0206941
0.0206129
0.0202307
0.0205516
0.0222328
0.0259437
0.0319973
0.036596
0.037251
0.0317979
0.0232693
0.0188733
0.0174779
0.0177641
0.0190578
0.0210201
0.023822
0.0261212
0.026646
0.0255484
0.0248208
0.0249589
0.0242329
0.0234396
0.0231375
0.0233413
0.023963
0.0253349
0.0272728
0.0296753
0.0321862
0.034248
0.0359447
0.0369628
0.0377023
0.0378448
0.036966
0.0347938
0.0310883
0.0268189
0.0258201
0.0266602
0.026468
0.0236972
0.0208816
0.0205545
0.0219176
0.024453
0.0259816
0.0269463
0.0275812
0.0298671
0.029646
0.0291127
0.0299019
0.03188
0.0323748
0.0296118
0.0268506
0.0264754
0.0274473
0.0270793
0.0257007
0.024876
0.0246721
0.0249003
0.0249997
0.0248187
0.0243793
0.0242342
0.0247779
0.0258749
0.0261154
0.0239987
0.0214349
0.0202288
0.0213405
0.0241338
0.0260304
0.0266489
0.0236776
0.0241479
0.0242057
0.0253544
0.0271631
0.0289773
0.031367
0.0343243
0.0363745
0.0366842
0.0334968
0.0275499
0.0231466
0.021058
0.020486
0.0207013
0.0209812
0.021271
0.0211756
0.0206823
0.0197931
0.0189493
0.0180626
0.0178679
0.0186662
0.0206078
0.0234225
0.0237228
0.0242262
0.0243687
0.0216902
0.021899
0.0242836
0.0298865
0.0356653
0.0373493
0.0349683
0.031591
0.0301751
0.0306736
0.0290337
0.0244255
0.0212441
0.0199705
0.0188424
0.0174824
0.0173785
0.0183129
0.0199242
0.0223811
0.0254502
0.0277467
0.0294106
0.0288501
0.0266196
0.0218447
0.0180544
0.0156408
0.0142652
0.0162868
0.0240922
0.0278926
0.0378478
0.04972
0.0585044
0.0656993
0.0691319
0.0696412
0.0680539
0.0651325
0.0626082
0.0613963
0.0605701
0.0592475
0.0562802
0.048131
0.0411212
0.0314203
0.0272123
0.0233733
0.0218641
0.0204184
0.0189306
0.0186205
0.0201434
0.0234482
0.0236057
0.0191684
0.0160452
0.0149961
0.0194391
0.0308097
0.042355
0.0396814
0.0346699
0.0295353
0.0248644
0.0224692
0.0214743
0.0211655
0.0205951
0.0200898
0.0195094
0.018617
0.0183601
0.018805
0.0193545
0.0199237
0.02067
0.0209993
0.0209819
0.0203629
0.0188991
0.0178478
0.0167356
0.0159998
0.0160517
0.016033
0.0165986
0.0163507
0.0172299
0.0321722
0.0474955
0.0539153
0.0577125
0.0627483
0.0614241
0.0634726
0.0601176
0.0578054
0.0541597
0.0499831
0.0448579
0.0396704
0.0343243
0.0290166
0.0247774
0.0222712
0.0203201
0.0188295
0.0173361
0.0165192
0.0157998
0.0149305
0.0151073
0.0150365
0.0165888
0.0187913
0.0166218
0.0150366
0.0142324
0.0166612
0.0166343
0.0148948
0.0136923
0.0117669
0.0107264
0.00974714
0.00906481
0.00880071
0.00874798
0.00876414
0.00876309
0.00876817
0.00876728
0.00877051
0.00876673
0.00876656
0.00876085
0.00876036
0.00875979
0.00875643
0.00875786
0.00875404
0.00875554
0.00875183
0.00875344
0.00874843
0.00873201
0.00850954
0.00850576
0.0087315
0.00875227
0.00875135
0.00875544
0.00875345
0.00875752
0.0087557
0.00875962
0.00875799
0.00876196
0.00876081
0.00876571
0.00876582
0.00877015
0.00876785
0.00876884
0.00876383
0.008764
0.00875989
0.00876122
0.0087572
0.00875877
0.00875484
0.00875633
0.00875237
0.00875353
0.00874895
0.00873186
0.00850597
0.00850997
0.00873154
0.00875074
0.00875074
0.00875481
0.00875357
0.00875745
0.00875612
0.00875988
0.00875864
0.00876253
0.00876148
0.00876622
0.00876598
0.00876973
0.00876973
0.00876606
0.00876621
0.00876131
0.00876242
0.00875849
0.00875991
0.00875607
0.00875765
0.00875371
0.0087553
0.00875113
0.00875125
0.00873138
0.00851004
0.00850566
0.00873157
0.00875253
0.00875153
0.00875582
0.00875372
0.00875797
0.00875595
0.00875999
0.00875811
0.00876217
0.00876076
0.0087656
0.00876544
0.00877002
0.0087679
0.00876908
0.008764
0.00876429
0.00876015
0.00876164
0.00875755
0.00875918
0.00875516
0.00875671
0.00875262
0.00875378
0.00874924
0.00873198
0.00850586
0.0552478
0.0605263
0.061477
0.0601878
0.055469
0.0493934
0.0458108
0.0434295
0.0397882
0.0319544
0.0228395
0.0188283
0.0204623
0.0224338
0.0211114
0.0242536
0.0236262
0.0222846
0.0213001
0.0206641
0.0203226
0.0198575
0.0196794
0.0193764
0.0190633
0.0188459
0.0185028
0.0181246
0.0181156
0.0200063
0.0254573
0.0343918
0.0393533
0.0355514
0.0258646
0.0200144
0.0176463
0.0171824
0.0170517
0.0172049
0.0189626
0.0221873
0.0247951
0.0238705
0.0247333
0.0245641
0.0239121
0.0234087
0.0232959
0.0235775
0.0242234
0.0253738
0.0271284
0.0294454
0.0322822
0.0349892
0.0377609
0.0395271
0.0406136
0.0405749
0.0394043
0.036612
0.0320661
0.0269643
0.0252106
0.026109
0.0263346
0.0239518
0.0207866
0.0199348
0.0211287
0.0236591
0.0254093
0.0266562
0.0271027
0.0294524
0.0294093
0.029294
0.0310112
0.0331563
0.0312971
0.0275441
0.0264899
0.0275035
0.0274117
0.0253789
0.0239063
0.0237814
0.0238812
0.0241055
0.0244883
0.0246733
0.0242684
0.0234795
0.0233314
0.0234937
0.0225003
0.0207339
0.0200837
0.0206434
0.0224737
0.0247133
0.0259592
0.0261281
0.0228646
0.0228061
0.0233687
0.0247654
0.0265978
0.0288601
0.0322986
0.0358727
0.0379843
0.036709
0.0308193
0.0254784
0.0231707
0.0230923
0.0238921
0.0243365
0.0247479
0.0243791
0.0240113
0.0230851
0.0219792
0.0203786
0.0189544
0.0182105
0.0182024
0.0196459
0.0212521
0.0221458
0.0211719
0.0215188
0.0215552
0.0224404
0.0270388
0.0352102
0.0399325
0.038677
0.034364
0.0312748
0.0307985
0.0301454
0.0269116
0.023396
0.0214921
0.0198032
0.0181381
0.0179936
0.0201979
0.0244864
0.0308724
0.036688
0.0408946
0.0427982
0.0440845
0.0428204
0.0406236
0.0372501
0.0283587
0.0212469
0.0134003
0.0137196
0.0251389
0.0321135
0.0445991
0.0547632
0.0618707
0.0673461
0.0697157
0.0674011
0.0634639
0.0578944
0.0560159
0.0548309
0.0543046
0.0539933
0.0511078
0.0450636
0.0359583
0.0284922
0.0250147
0.0239582
0.0233743
0.0220139
0.0208004
0.0221733
0.0267369
0.0309488
0.0299411
0.0244162
0.0177696
0.0152292
0.0187925
0.0355378
0.0506058
0.0449227
0.0365967
0.0316573
0.0257329
0.0234575
0.0224159
0.0209085
0.0195841
0.01949
0.0196051
0.019583
0.0198942
0.0204347
0.0213117
0.0221945
0.0230949
0.0236269
0.0237638
0.0227454
0.0213131
0.0196821
0.0180206
0.0167088
0.0153961
0.0152171
0.0152024
0.015812
0.0181552
0.039215
0.056359
0.0578364
0.0588657
0.0605814
0.0616718
0.0648888
0.0675861
0.0683619
0.0675892
0.0658499
0.0631955
0.0611308
0.0574461
0.051824
0.0455499
0.0392921
0.0323236
0.0271151
0.0242224
0.022776
0.0217245
0.0219894
0.021763
0.0226317
0.024063
0.0249452
0.0250936
0.0197549
0.0183766
0.0229671
0.0219601
0.0223627
0.0192748
0.0177974
0.0152571
0.014073
0.0126428
0.0115564
0.0110059
0.0109156
0.0109385
0.0109316
0.0109383
0.0109318
0.0109383
0.010932
0.0109381
0.0109308
0.010931
0.0109372
0.0109304
0.0109374
0.0109298
0.0109373
0.0109293
0.0109367
0.0109278
0.0109055
0.0108992
0.0109329
0.0109286
0.0109367
0.0109287
0.0109368
0.010929
0.010937
0.0109293
0.010937
0.01093
0.0109374
0.0109307
0.0109379
0.0109313
0.0109381
0.0109312
0.0109379
0.0109306
0.0109375
0.0109302
0.0109375
0.0109302
0.0109376
0.0109301
0.0109376
0.0109295
0.0109332
0.0109299
0.0109019
0.0109061
0.0109277
0.01093
0.0109362
0.0109297
0.0109373
0.0109301
0.0109374
0.0109301
0.0109373
0.0109305
0.0109375
0.0109309
0.0109376
0.010931
0.010931
0.0109378
0.0109309
0.0109375
0.0109304
0.0109372
0.0109299
0.0109373
0.0109298
0.0109373
0.0109299
0.0109369
0.0109287
0.0109267
0.0109054
0.0108993
0.0109328
0.0109281
0.0109367
0.0109285
0.0109371
0.0109289
0.0109373
0.0109291
0.0109373
0.0109296
0.0109375
0.0109304
0.010938
0.0109311
0.0109382
0.0109312
0.010938
0.0109305
0.0109376
0.01093
0.0109377
0.0109302
0.010938
0.0109303
0.0109376
0.0109296
0.0109336
0.0109293
0.0109008
0.0669489
0.0671259
0.0650048
0.0599935
0.0537016
0.0465187
0.0397904
0.036937
0.0354056
0.0344183
0.0293756
0.0212287
0.019643
0.0215428
0.0246434
0.0241565
0.0229868
0.0222935
0.0221229
0.0220656
0.0219538
0.0219047
0.0217253
0.0213683
0.0208369
0.0202989
0.0197019
0.0189826
0.0180998
0.0184514
0.0231422
0.0325269
0.0397351
0.0371873
0.0275559
0.0207667
0.0175389
0.0158463
0.0143591
0.0139076
0.0149791
0.0183173
0.0223645
0.0227253
0.0245429
0.0241322
0.0238094
0.0238295
0.0241015
0.0248199
0.0255864
0.0267917
0.0285384
0.0311822
0.0343164
0.0374112
0.0402504
0.0414059
0.0416353
0.04018
0.0374386
0.0337696
0.0295487
0.0256506
0.0249164
0.0263254
0.0264597
0.0239941
0.0202172
0.0188804
0.0197269
0.0224429
0.0245783
0.026122
0.0266009
0.0289382
0.029108
0.0298013
0.0325313
0.0334041
0.0294174
0.0267016
0.0268983
0.0275681
0.025881
0.023711
0.0233791
0.0238927
0.0241197
0.0241617
0.024342
0.0244041
0.0236912
0.0225149
0.0216816
0.0206989
0.0197724
0.0194261
0.0199334
0.0211843
0.0223323
0.0240373
0.0250202
0.0253996
0.02226
0.0224718
0.0232318
0.0247503
0.026806
0.0298617
0.0339525
0.0380342
0.0393431
0.0359018
0.0300864
0.0270665
0.0262445
0.0264461
0.0264711
0.0269867
0.0260686
0.0244764
0.023127
0.0223492
0.0218315
0.0214937
0.0205658
0.0189908
0.0178617
0.0184075
0.0195414
0.0203099
0.0208167
0.0203183
0.0216741
0.0240314
0.0314665
0.040579
0.0429025
0.0382531
0.0334508
0.0314211
0.030739
0.0285963
0.0253792
0.0234512
0.0219156
0.0204691
0.0203478
0.025646
0.035239
0.0424188
0.0458845
0.0475395
0.0484306
0.0486846
0.0488207
0.0489408
0.0480813
0.0456986
0.0421858
0.0316777
0.017411
0.0134274
0.0263682
0.0355407
0.048046
0.0542704
0.061028
0.0671418
0.0688332
0.0637172
0.0576857
0.0528016
0.0503216
0.0486134
0.0474511
0.0460914
0.043815
0.0381808
0.0314783
0.0250697
0.0245742
0.0250809
0.0256656
0.025415
0.0260895
0.030024
0.0359757
0.0369723
0.0340764
0.0280218
0.0210012
0.0165897
0.018212
0.0388892
0.0572006
0.0511499
0.0416294
0.0325082
0.0283609
0.0250306
0.0232995
0.0218417
0.0209851
0.021141
0.0211657
0.0219982
0.0230523
0.0242867
0.0254481
0.0265398
0.0273357
0.0278201
0.0273656
0.0266525
0.0253897
0.0230284
0.0210609
0.0188623
0.0170603
0.0148892
0.014829
0.0158399
0.0171965
0.0403015
0.0550305
0.0554927
0.0530798
0.0490946
0.0521402
0.055938
0.0611996
0.0662196
0.0695551
0.070744
0.0706919
0.0684102
0.0673259
0.0654812
0.0624818
0.0563818
0.0484305
0.0391313
0.0329194
0.0293385
0.0277645
0.0278431
0.028283
0.0287623
0.0320778
0.0313985
0.02895
0.0265579
0.0255002
0.0256284
0.0298315
0.028272
0.0262228
0.0240847
0.0223078
0.0193299
0.0178448
0.0160879
0.0147517
0.0138466
0.0137107
0.0137338
0.0137337
0.0137326
0.0137337
0.013733
0.0137338
0.0137302
0.0137306
0.0137332
0.0137315
0.0137333
0.0137313
0.0137334
0.0137313
0.0137319
0.0137156
0.0135098
0.0135133
0.0137167
0.01373
0.0137328
0.013731
0.0137324
0.0137307
0.0137323
0.0137307
0.0137325
0.013731
0.013733
0.0137316
0.0137336
0.0137318
0.0137336
0.0137318
0.0137335
0.0137314
0.0137331
0.0137313
0.0137331
0.0137315
0.0137334
0.0137316
0.0137334
0.0137307
0.0137288
0.013715
0.0135137
0.0135113
0.0137143
0.0137291
0.0137321
0.013731
0.0137334
0.0137316
0.0137334
0.0137314
0.0137333
0.0137316
0.0137334
0.0137318
0.0137332
0.0137312
0.0137314
0.0137334
0.0137319
0.0137333
0.0137315
0.0137331
0.0137313
0.0137332
0.0137314
0.0137335
0.0137317
0.013733
0.0137287
0.0137125
0.0135105
0.0135129
0.0137164
0.0137295
0.0137324
0.0137309
0.0137325
0.0137309
0.0137325
0.0137309
0.0137326
0.0137311
0.0137331
0.0137318
0.0137338
0.0137323
0.0137341
0.0137323
0.0137339
0.0137319
0.0137334
0.0137317
0.0137334
0.013732
0.0137338
0.0137321
0.0137334
0.0137309
0.0137291
0.0137145
0.0135127
0.0702872
0.0669096
0.0593841
0.0535351
0.0501877
0.0436119
0.0348578
0.0279546
0.0261861
0.0291736
0.0294335
0.0240631
0.0201638
0.020964
0.02475
0.0238045
0.0233491
0.0238749
0.0243528
0.0246176
0.0247537
0.0247152
0.024452
0.0237534
0.0226782
0.0218725
0.0210467
0.020236
0.0186691
0.0190056
0.0237641
0.0339263
0.0404988
0.0379002
0.0278381
0.020306
0.0161302
0.0138137
0.0129207
0.0132374
0.0147605
0.017129
0.0208816
0.0223167
0.0242147
0.0238156
0.0240394
0.0246437
0.0256149
0.0267225
0.0278716
0.029426
0.0317209
0.0347952
0.0379253
0.0402717
0.0414348
0.0403533
0.0378691
0.0347079
0.0315132
0.0288969
0.0264253
0.0250914
0.0257831
0.0268833
0.0258419
0.0221846
0.019026
0.0179421
0.0186488
0.0207129
0.0236097
0.0255139
0.0264127
0.0283807
0.0290792
0.0310932
0.0338317
0.0322751
0.0278867
0.0264677
0.0271148
0.0268473
0.0242039
0.0230154
0.0235227
0.024202
0.0242797
0.0243352
0.0241149
0.0234655
0.0222158
0.0208896
0.0197104
0.0191803
0.0197945
0.0211798
0.0222415
0.0228298
0.0227253
0.0229677
0.0237531
0.0245326
0.0220428
0.0225153
0.0237874
0.025479
0.0279405
0.0314725
0.0369581
0.040342
0.040305
0.0361776
0.0317245
0.0294144
0.0282931
0.0278878
0.0284705
0.0278927
0.0250029
0.0223169
0.020481
0.0201064
0.0204934
0.0212698
0.020771
0.0190425
0.0179307
0.0179033
0.0193153
0.021395
0.02437
0.0219819
0.0235247
0.0305203
0.0409676
0.0458607
0.0428734
0.0367141
0.0327803
0.031345
0.0297419
0.0270889
0.0254288
0.0246694
0.0241261
0.0258121
0.0329668
0.0435918
0.0482732
0.0491763
0.0489501
0.0493632
0.0496618
0.0501441
0.0503252
0.0500155
0.050033
0.049605
0.0475427
0.0420189
0.0294719
0.0169674
0.0272407
0.0380708
0.0475127
0.050138
0.0579958
0.066557
0.0672513
0.0602962
0.0540303
0.050138
0.0479257
0.0457087
0.0439355
0.0425782
0.0387084
0.0342162
0.0280814
0.0250777
0.0243014
0.0254844
0.0271792
0.0289763
0.0316268
0.0356455
0.0380218
0.0376844
0.0340847
0.0296713
0.0237006
0.0180802
0.022722
0.0479178
0.0585336
0.054985
0.0469351
0.0393104
0.0310301
0.0283874
0.0265187
0.0259614
0.0264913
0.0275737
0.0293186
0.0310913
0.0327582
0.0340571
0.0350694
0.0354473
0.0352091
0.0347546
0.0328267
0.0320743
0.0314093
0.0290357
0.0269912
0.023924
0.0208071
0.0179859
0.0151356
0.0167939
0.018485
0.0280178
0.038212
0.0417372
0.0392346
0.0384174
0.0405417
0.0447426
0.0530558
0.0606466
0.066287
0.0692973
0.0703804
0.0705185
0.0697199
0.0690798
0.0683518
0.066759
0.0628366
0.0552417
0.0453898
0.0385216
0.0353467
0.0337605
0.0352754
0.036916
0.0372517
0.0390018
0.0371015
0.0310263
0.0264921
0.0310298
0.0344661
0.0363591
0.0352733
0.0321912
0.0291231
0.026257
0.0236305
0.0220942
0.0206571
0.019337
0.018741
0.0186725
0.0186947
0.0186905
0.0186937
0.0186912
0.0186939
0.0186888
0.0186903
0.0186935
0.018691
0.0186947
0.0186909
0.0186951
0.0186909
0.0186934
0.0186928
0.018749
0.0187537
0.0186945
0.0186899
0.0186938
0.0186904
0.0186938
0.0186897
0.0186933
0.0186894
0.0186932
0.0186896
0.018693
0.0186897
0.0186926
0.0186898
0.0186925
0.0186898
0.018693
0.0186898
0.0186936
0.0186901
0.0186942
0.0186905
0.0186948
0.018691
0.0186946
0.0186899
0.0186887
0.0186911
0.0187546
0.0187497
0.0186914
0.0186886
0.0186922
0.0186909
0.018695
0.018691
0.0186948
0.0186904
0.0186943
0.0186903
0.0186935
0.0186902
0.0186923
0.0186891
0.0186894
0.0186923
0.0186901
0.0186933
0.0186902
0.018694
0.0186902
0.0186945
0.0186908
0.0186953
0.0186916
0.0186939
0.0186881
0.0186888
0.0187484
0.0187537
0.0186944
0.0186894
0.0186936
0.0186901
0.0186942
0.0186898
0.0186942
0.0186893
0.0186938
0.018689
0.0186932
0.0186891
0.0186927
0.0186895
0.0186922
0.0186891
0.0186922
0.0186891
0.018693
0.0186893
0.0186938
0.0186899
0.0186947
0.0186908
0.0186947
0.0186896
0.0186885
0.0186894
0.0187525
0.0703579
0.0592933
0.0465913
0.0430482
0.0435612
0.0378835
0.0279521
0.0218741
0.0200141
0.022133
0.0260652
0.0248312
0.0208861
0.0206886
0.02353
0.0242022
0.0247945
0.0254058
0.025886
0.0262343
0.0262797
0.0260582
0.0253927
0.0247308
0.0235466
0.0226997
0.0221325
0.0213975
0.0198614
0.0207739
0.0275563
0.0374652
0.0417695
0.0374314
0.0257636
0.017919
0.014206
0.013306
0.0143887
0.016333
0.0174063
0.0181538
0.0203073
0.0217566
0.0231091
0.0235224
0.0244083
0.0259552
0.027491
0.0292484
0.0309265
0.0333751
0.0358501
0.0384637
0.039842
0.0399613
0.0372351
0.0333342
0.030967
0.0288979
0.0276538
0.0266702
0.0258537
0.0257855
0.025508
0.0241476
0.021417
0.0191047
0.0182009
0.0179954
0.0185378
0.0200601
0.0228594
0.0246257
0.0262303
0.0279438
0.0295626
0.0328092
0.0344094
0.0307675
0.0270387
0.0265244
0.0270608
0.0258962
0.02306
0.0224042
0.0231703
0.0237003
0.0237432
0.0233354
0.0224159
0.0212153
0.0200372
0.0194784
0.0199812
0.0227402
0.0259767
0.0278275
0.0276521
0.0262437
0.0246171
0.0234983
0.0231382
0.0235959
0.0220438
0.0232016
0.0247325
0.0266401
0.0295721
0.0347161
0.0398259
0.0428574
0.0417899
0.0375504
0.0331601
0.0303758
0.029093
0.0296182
0.0301156
0.0274183
0.0231205
0.0202534
0.0192105
0.0194529
0.0202037
0.0204401
0.0197212
0.018709
0.0178932
0.0182185
0.0207838
0.0269605
0.0319681
0.0283733
0.0307422
0.0415084
0.0482166
0.0472342
0.0411014
0.0353393
0.0324481
0.0308932
0.0287561
0.0267715
0.0268635
0.027983
0.0306788
0.0367257
0.0457759
0.049681
0.0488787
0.0484276
0.0487908
0.0497579
0.0513625
0.0527114
0.0530038
0.0522518
0.0512399
0.0502387
0.0478872
0.0422005
0.0348802
0.0224203
0.0288409
0.0387808
0.0443496
0.0437855
0.0535026
0.0647079
0.0663377
0.0584053
0.0523026
0.0492916
0.0477171
0.0463931
0.0448262
0.0433233
0.0401279
0.0353457
0.0309005
0.0261815
0.0254552
0.0250447
0.0273336
0.028824
0.0314904
0.0337879
0.0331269
0.0332118
0.0335128
0.0295754
0.0236528
0.0190987
0.0299756
0.0525526
0.0600548
0.057246
0.0526775
0.0458174
0.0418349
0.0352924
0.0367644
0.0365473
0.039651
0.0417492
0.0439563
0.0456802
0.0471967
0.048506
0.0490573
0.0488095
0.0475994
0.0448383
0.0409468
0.0395381
0.0385778
0.0370172
0.0361961
0.0326969
0.0290752
0.0252316
0.0202833
0.0191928
0.0235341
0.024845
0.0277663
0.0312232
0.0342488
0.0368878
0.0401652
0.0441187
0.0497738
0.0599699
0.0638668
0.0673602
0.0691868
0.0708876
0.0714451
0.0706169
0.0696348
0.0684837
0.0669206
0.0630499
0.0566356
0.0493688
0.0439087
0.0418479
0.041314
0.0429859
0.0450554
0.0420864
0.0437764
0.0328446
0.0368299
0.037389
0.0429425
0.0443246
0.0437242
0.0410536
0.0371557
0.0339274
0.030507
0.028522
0.0267267
0.0256598
0.0241236
0.0238565
0.0237687
0.023787
0.0237853
0.023786
0.0237859
0.0237833
0.0237838
0.0237854
0.0237845
0.0237851
0.0237832
0.0237825
0.0237792
0.0237763
0.0237789
0.0238572
0.0238631
0.0237789
0.0237758
0.0237796
0.0237813
0.0237828
0.0237834
0.0237839
0.0237837
0.0237842
0.0237842
0.0237847
0.0237844
0.0237848
0.0237842
0.0237848
0.0237843
0.0237849
0.0237844
0.023785
0.0237845
0.0237849
0.0237845
0.0237848
0.0237833
0.0237823
0.0237782
0.0237736
0.0237769
0.0238626
0.0238579
0.0237774
0.023774
0.0237783
0.0237813
0.0237839
0.0237845
0.0237851
0.0237847
0.0237852
0.0237849
0.0237851
0.0237847
0.0237845
0.0237835
0.0237838
0.0237846
0.0237847
0.023785
0.0237847
0.023785
0.0237845
0.0237851
0.0237845
0.0237843
0.0237824
0.0237801
0.023774
0.0237751
0.0238567
0.0238636
0.023779
0.0237754
0.023779
0.0237811
0.023783
0.0237839
0.0237844
0.0237842
0.0237844
0.0237841
0.0237846
0.0237844
0.0237848
0.0237845
0.0237849
0.0237842
0.0237846
0.0237844
0.0237848
0.0237846
0.023785
0.0237846
0.0237846
0.0237831
0.0237814
0.0237759
0.023766
0.0237583
0.0238431
0.0672423
0.0454476
0.0323582
0.0332169
0.0348197
0.0279709
0.0211868
0.0192681
0.0192023
0.019724
0.0232731
0.0237872
0.0211947
0.020524
0.0211412
0.0220422
0.0227263
0.0248575
0.0257434
0.0261232
0.0266584
0.0269879
0.0268894
0.0261408
0.0252351
0.0244002
0.0236582
0.0232512
0.0234638
0.023185
0.0226064
0.0257939
0.0341568
0.0416859
0.0423983
0.0328753
0.020898
0.0151609
0.013851
0.0156126
0.0192335
0.0215665
0.0220425
0.0212092
0.0204826
0.0214246
0.020848
0.0210731
0.0216826
0.0234079
0.0255826
0.0279845
0.030221
0.0324941
0.0349527
0.037083
0.0384508
0.0385079
0.0357314
0.0313572
0.0284148
0.0270559
0.0267334
0.0264381
0.0259802
0.0249305
0.0239138
0.0222535
0.0205567
0.0194381
0.0190865
0.0193693
0.0194648
0.0194765
0.0193791
0.0203236
0.0228264
0.0235864
0.0236054
0.0248749
0.026358
0.0282607
0.0310672
0.0345147
0.0340579
0.0291617
0.0265575
0.026703
0.0270137
0.0250178
0.0222629
0.0216273
0.0218388
0.0217923
0.0213284
0.0206868
0.0199277
0.0197347
0.0204269
0.023091
0.0278801
0.0326235
0.0343339
0.0327287
0.0293382
0.0266962
0.0249863
0.0238876
0.023222
0.023042
0.0225817
0.022263
0.0227571
0.0242816
0.0259997
0.0283385
0.0327428
0.0383016
0.0435541
0.0456726
0.0436342
0.0386178
0.0334147
0.0305895
0.0306295
0.0322199
0.0313468
0.0264621
0.021728
0.0189847
0.0181981
0.0189697
0.0193496
0.0196513
0.0186584
0.0179319
0.0176607
0.0193877
0.0259337
0.0371029
0.0420428
0.0353519
0.0302265
0.0370762
0.0436194
0.0502029
0.0492381
0.0442724
0.0384826
0.0345072
0.0322955
0.0303931
0.0283734
0.0279543
0.0302448
0.0341233
0.0393522
0.0450516
0.0497772
0.0487749
0.0481169
0.04742
0.048776
0.0512306
0.0543578
0.0569266
0.0573408
0.0557182
0.0537321
0.0513368
0.0456292
0.0357825
0.0303463
0.0277994
0.0271704
0.0264505
0.0292863
0.0390803
0.039742
0.0375901
0.0463084
0.0623169
0.0665501
0.0589463
0.0519438
0.0496927
0.0489418
0.0484994
0.0477468
0.0465344
0.0446961
0.0421476
0.0381388
0.0341646
0.0293446
0.0286506
0.0273521
0.0281822
0.0293973
0.0296245
0.0272299
0.0262497
0.0295295
0.0301128
0.0241808
0.0198523
0.0247627
0.0361767
0.0413012
0.0567538
0.0614133
0.0592669
0.0562183
0.0538004
0.0506019
0.0504705
0.0499093
0.0535336
0.0551259
0.0565901
0.0573941
0.0580772
0.0588929
0.0595936
0.0606763
0.0612271
0.0599129
0.0576561
0.0519343
0.0488052
0.0468514
0.0450285
0.0447795
0.0431627
0.0409386
0.0374854
0.0323468
0.0276465
0.0224052
0.0216824
0.0227747
0.0244064
0.0270181
0.0292044
0.0322802
0.036981
0.0431999
0.0473587
0.0525831
0.0569641
0.0612956
0.0650543
0.0681148
0.0702335
0.0709639
0.0715315
0.071566
0.0707313
0.0700696
0.0683318
0.0642028
0.0577956
0.0520177
0.0489018
0.0483106
0.0503111
0.0487774
0.0516964
0.048127
0.041903
0.0438445
0.0408121
0.0445819
0.0444742
0.047653
0.0486659
0.0488882
0.0481849
0.0455751
0.0417315
0.0391063
0.0366579
0.0351634
0.0332505
0.0327284
0.0318584
0.0318854
0.0318159
0.0318215
0.0318203
0.0318212
0.0318166
0.0318175
0.0318187
0.0318182
0.0318179
0.0318146
0.0318135
0.03181
0.0318123
0.0318495
0.0322414
0.0326248
0.0326247
0.0322445
0.0318494
0.0318108
0.0318109
0.0318111
0.031815
0.0318152
0.0318177
0.0318164
0.0318183
0.0318175
0.0318194
0.0318186
0.0318197
0.0318189
0.0318196
0.0318189
0.0318198
0.0318183
0.0318194
0.0318176
0.031819
0.0318172
0.0318179
0.0318143
0.0318134
0.0318089
0.0318086
0.0318462
0.0322439
0.0326247
0.0326248
0.0322414
0.0318473
0.0318082
0.0318093
0.0318118
0.0318161
0.0318165
0.0318191
0.0318177
0.0318193
0.0318184
0.0318198
0.031819
0.0318195
0.0318179
0.0318182
0.0318196
0.0318189
0.0318197
0.031818
0.031819
0.0318171
0.0318188
0.0318164
0.0318166
0.0318127
0.0318115
0.0318087
0.0318451
0.0322407
0.0326247
0.0326246
0.0322448
0.0318496
0.0318102
0.0318105
0.0318109
0.0318155
0.0318155
0.0318184
0.031816
0.0318182
0.031816
0.0318182
0.0318169
0.0318187
0.0318178
0.0318189
0.0318182
0.0318193
0.0318176
0.0318184
0.031816
0.0318175
0.0318147
0.0318159
0.0318115
0.0318111
0.0318055
0.031805
0.0318439
0.0322414
0.0325991
0.0323103
0.0634647
0.0368851
0.026487
0.0272635
0.0262612
0.0209304
0.019112
0.0211994
0.0223545
0.0208864
0.0219396
0.0220844
0.0204825
0.0201908
0.0201621
0.0207193
0.0208193
0.0250459
0.0263864
0.0263928
0.027052
0.0273547
0.0267248
0.025371
0.0240251
0.0234305
0.023411
0.0240656
0.0254553
0.0272917
0.029415
0.0351225
0.0419015
0.0441991
0.0388722
0.0259331
0.0170851
0.0145682
0.0157247
0.0200562
0.0236164
0.0248779
0.0248986
0.0239382
0.0223199
0.0216922
0.0219699
0.022996
0.0241831
0.0260098
0.0285933
0.0311913
0.0337156
0.0354082
0.0370972
0.0363976
0.0332841
0.0286178
0.0256943
0.0240218
0.0235977
0.0238728
0.0237978
0.023301
0.0221397
0.0209089
0.0198895
0.019657
0.0203182
0.0213924
0.0219473
0.0222577
0.0217352
0.0210935
0.0203032
0.0207939
0.0225063
0.0232098
0.023735
0.0253488
0.0270123
0.0298083
0.0335043
0.035506
0.0326098
0.0280036
0.0263652
0.026887
0.0271082
0.0242167
0.0216349
0.0207542
0.0203732
0.0200727
0.0198972
0.020032
0.0207772
0.023175
0.0273133
0.0329699
0.0374911
0.0388473
0.0367427
0.032884
0.0291104
0.026432
0.0250982
0.0241659
0.0233584
0.0230593
0.0230108
0.0234168
0.0244145
0.026035
0.0280075
0.0315758
0.0368421
0.0428641
0.0475527
0.0487261
0.0451501
0.0389913
0.0336395
0.031621
0.0328822
0.0343759
0.0325307
0.0269641
0.0218083
0.0185208
0.0173735
0.0178554
0.0182384
0.0183028
0.0176479
0.0174619
0.0182111
0.0230317
0.0347561
0.0465855
0.0512374
0.0495676
0.0481179
0.0516933
0.0522079
0.0500316
0.0455018
0.0408153
0.0369645
0.0345455
0.0327881
0.0304716
0.0290231
0.0304595
0.0347916
0.0405251
0.0457238
0.0491747
0.0487347
0.0478744
0.0470555
0.0469896
0.0488742
0.0524354
0.0565626
0.0598252
0.0602827
0.0581154
0.0551597
0.0502954
0.0389447
0.0270579
0.0234629
0.0237546
0.0254333
0.0271548
0.0314298
0.0374078
0.0338151
0.0298161
0.0405186
0.0562665
0.0654129
0.0613161
0.0549611
0.0515065
0.0508384
0.0507491
0.0508434
0.0502375
0.0494384
0.0473698
0.0455574
0.0431567
0.0408174
0.0375307
0.0343837
0.0321559
0.030131
0.027958
0.0256384
0.0236947
0.0257943
0.0293727
0.0270987
0.021607
0.0222473
0.0320366
0.0446348
0.0575032
0.0627981
0.0617406
0.0591319
0.056552
0.0559458
0.0560251
0.0577603
0.0573181
0.0568244
0.0548108
0.0542489
0.0537993
0.0550561
0.0574555
0.0610798
0.0644885
0.0659663
0.0663873
0.0638191
0.0604904
0.0568448
0.0542222
0.053286
0.0520309
0.0510506
0.0498781
0.048054
0.0452451
0.0389558
0.0322345
0.0275713
0.0268835
0.0264263
0.0295666
0.032878
0.0413665
0.0496689
0.0552665
0.0582296
0.0622009
0.0644581
0.0655011
0.0686862
0.070401
0.0710608
0.0714415
0.0716767
0.0716364
0.0707344
0.0699274
0.0681893
0.0643311
0.0598176
0.0557156
0.0545982
0.0544883
0.0573069
0.0527321
0.054248
0.0525909
0.049428
0.0506992
0.0494936
0.0539521
0.0536054
0.0543428
0.0544804
0.0544895
0.0531737
0.0504793
0.0477953
0.0457457
0.0432807
0.0419556
0.0394383
0.0393873
0.0391708
0.0392791
0.0392614
0.0392626
0.0392622
0.0392589
0.0392591
0.0392594
0.039259
0.0392571
0.0392545
0.0392517
0.0392504
0.039252
0.0392597
0.0393215
0.0397175
0.0397176
0.0393231
0.0392589
0.0392517
0.0392501
0.0392511
0.0392537
0.0392563
0.0392575
0.0392583
0.039259
0.0392597
0.0392605
0.0392611
0.0392618
0.0392615
0.0392618
0.0392615
0.0392612
0.0392606
0.03926
0.0392597
0.0392588
0.0392584
0.0392568
0.0392545
0.0392516
0.03925
0.0392495
0.0392569
0.0393223
0.0397173
0.0397174
0.0393217
0.0392576
0.0392498
0.0392492
0.0392517
0.0392546
0.0392573
0.0392584
0.0392594
0.0392597
0.0392605
0.0392606
0.0392614
0.0392617
0.0392611
0.0392611
0.0392618
0.0392611
0.0392608
0.03926
0.0392595
0.0392586
0.0392582
0.0392569
0.0392548
0.0392522
0.0392507
0.0392502
0.0392562
0.0393221
0.0397172
0.0397173
0.0393232
0.0392589
0.0392513
0.0392503
0.0392513
0.0392543
0.0392568
0.0392581
0.0392584
0.0392589
0.0392592
0.0392597
0.0392602
0.0392609
0.0392609
0.0392616
0.0392612
0.0392614
0.0392602
0.0392596
0.0392575
0.0392569
0.0392548
0.0392541
0.0392509
0.0392489
0.0392477
0.039253
0.0392708
0.0393299
0.039663
0.0391378
0.0603811
0.0333092
0.023971
0.0226368
0.0203145
0.0180348
0.0198456
0.0258057
0.0275212
0.0237446
0.0213635
0.0204431
0.019355
0.0191864
0.0177861
0.016894
0.0178902
0.0228259
0.0272706
0.0272355
0.0270354
0.027095
0.0265423
0.0246346
0.0227908
0.0223918
0.0233755
0.0255268
0.0293801
0.034087
0.0386535
0.0435468
0.0454933
0.0418481
0.0299079
0.0190312
0.0150873
0.0153624
0.0194402
0.0241458
0.0259504
0.0253662
0.0238085
0.023359
0.0235821
0.0233674
0.0243286
0.025261
0.0266911
0.0288614
0.0311666
0.0329911
0.0332342
0.0327786
0.0297119
0.0262753
0.0236713
0.022181
0.0214572
0.0211572
0.0211244
0.0209597
0.0206033
0.020056
0.019845
0.0201187
0.0211267
0.0226485
0.0234538
0.0233563
0.0228847
0.0224055
0.0218402
0.0212431
0.0207891
0.0209248
0.0224999
0.0232406
0.0244966
0.0260602
0.0288427
0.0327386
0.0357221
0.035504
0.0311599
0.0273466
0.0266506
0.0274109
0.027111
0.0236799
0.0213571
0.0203463
0.0199353
0.0200336
0.0207885
0.0230731
0.0266162
0.0315388
0.0366326
0.0400963
0.0411564
0.0402245
0.0363496
0.0327562
0.0297633
0.0278452
0.0263552
0.0255645
0.025058
0.0247788
0.0248787
0.0253029
0.0263607
0.0281173
0.0316205
0.0366202
0.0430524
0.0487452
0.052112
0.0510783
0.0461736
0.0396208
0.0345817
0.0332597
0.034864
0.0360484
0.0344598
0.0294206
0.0237452
0.0192083
0.0172655
0.0166473
0.0169586
0.0171273
0.017186
0.0179573
0.0225661
0.0333188
0.0462248
0.0543114
0.0562378
0.0564878
0.0549172
0.0534468
0.0500681
0.0462223
0.0428452
0.0394576
0.0371667
0.0355536
0.033683
0.0315
0.0308815
0.033484
0.0388729
0.0445487
0.0484311
0.0494336
0.0476773
0.0468719
0.0460845
0.046527
0.0487309
0.0526115
0.056955
0.0606133
0.0613012
0.059138
0.0539718
0.0440178
0.0301469
0.023377
0.0233134
0.0256782
0.0272156
0.0299101
0.033122
0.0333689
0.028275
0.0260525
0.0324661
0.0495334
0.0626108
0.06421
0.0593411
0.055485
0.053448
0.0535468
0.0533967
0.0538031
0.0536418
0.0515991
0.0491308
0.0470306
0.0455709
0.0451954
0.0434832
0.0411428
0.0374065
0.0327132
0.0283116
0.0265245
0.0276333
0.0313708
0.0345091
0.0288734
0.0233533
0.0261808
0.0359338
0.0512053
0.0618912
0.0640204
0.0613934
0.0579214
0.0564831
0.0555516
0.0544013
0.0517409
0.0489811
0.0475025
0.0476815
0.046128
0.0475099
0.0507688
0.0559938
0.0632068
0.0666834
0.068629
0.06934
0.0687834
0.0660989
0.0638765
0.0614906
0.0603747
0.0597294
0.0590608
0.0584
0.0578387
0.0554026
0.0524075
0.049799
0.0488602
0.0492954
0.0519132
0.0539863
0.057696
0.0627067
0.064328
0.066194
0.0666094
0.0681829
0.0688054
0.0697502
0.0708084
0.0713299
0.0718811
0.0721138
0.0720338
0.0717463
0.0704472
0.0695516
0.0675898
0.0654893
0.0625754
0.0610261
0.0605198
0.0597901
0.0616249
0.058975
0.0578057
0.0587819
0.0593354
0.0602712
0.0603777
0.0607811
0.0597099
0.0597562
0.0597433
0.0596063
0.0585806
0.0571173
0.0552049
0.0535499
0.0518779
0.0506984
0.0499788
0.0497607
0.0497387
0.0497395
0.0497387
0.0497389
0.0497341
0.0497349
0.0497354
0.0497351
0.0497338
0.0497329
0.0497318
0.0497317
0.0497335
0.0497382
0.0497466
0.0498365
0.0498365
0.0497482
0.0497371
0.0497332
0.0497314
0.0497311
0.0497323
0.0497326
0.0497336
0.0497339
0.049735
0.0497356
0.0497367
0.0497373
0.0497383
0.0497383
0.0497388
0.0497376
0.0497374
0.0497362
0.0497359
0.0497351
0.0497349
0.0497342
0.0497335
0.0497323
0.0497317
0.049731
0.0497306
0.0497342
0.0497469
0.0498358
0.0498363
0.0497469
0.0497356
0.0497312
0.0497307
0.0497316
0.0497332
0.0497336
0.0497349
0.049735
0.0497357
0.0497361
0.0497367
0.0497372
0.0497384
0.0497373
0.0497377
0.0497383
0.0497368
0.0497366
0.0497354
0.049735
0.049734
0.049734
0.049733
0.0497327
0.0497317
0.0497315
0.0497308
0.0497331
0.0497461
0.0498363
0.0498361
0.0497476
0.0497357
0.0497314
0.0497307
0.0497305
0.0497318
0.0497322
0.0497335
0.0497335
0.0497343
0.0497344
0.0497351
0.0497355
0.049737
0.049737
0.0497375
0.0497365
0.0497363
0.049735
0.0497339
0.049732
0.0497316
0.0497298
0.0497296
0.0497272
0.0497262
0.0497239
0.0497253
0.0497309
0.0497473
0.0498473
0.0502187
0.0619352
0.035839
0.0224429
0.0193378
0.0178246
0.0175887
0.0220135
0.030492
0.0338608
0.0290212
0.0224716
0.019947
0.0189904
0.0184215
0.0172364
0.0160082
0.0162961
0.0198697
0.0272104
0.0288281
0.0278895
0.0270485
0.0264884
0.0243311
0.0218631
0.0217341
0.0237519
0.0279926
0.0341294
0.0404311
0.0449977
0.0461301
0.0430243
0.032497
0.0209188
0.0154034
0.0147549
0.0175017
0.0230352
0.0271065
0.0273625
0.0248008
0.0226514
0.0223016
0.023029
0.0241449
0.025241
0.0262134
0.0274299
0.0276289
0.0286317
0.0273243
0.0264111
0.0244228
0.0228178
0.0218268
0.0212076
0.0211219
0.0209004
0.0206809
0.0204889
0.0202628
0.0201519
0.0204218
0.0211459
0.0223187
0.0234158
0.0239697
0.0238885
0.0233541
0.022524
0.0218169
0.0214573
0.0211095
0.0211551
0.0216992
0.0231126
0.0245288
0.026084
0.0285956
0.0322468
0.035981
0.0371553
0.0350109
0.0308135
0.0278891
0.0274237
0.0284307
0.0272704
0.0236196
0.0213198
0.0204281
0.0205112
0.0212195
0.0234582
0.0274909
0.0324115
0.0372976
0.0406044
0.0418847
0.0415313
0.0389377
0.0358823
0.0329954
0.030644
0.0289663
0.0276887
0.0270284
0.0264318
0.0262359
0.0263149
0.0272335
0.0291263
0.0325959
0.0378304
0.0446424
0.0507627
0.0548704
0.0556671
0.0529452
0.0475806
0.0412802
0.036669
0.0353637
0.0366625
0.0376692
0.0365326
0.0329832
0.0282428
0.0232995
0.0199472
0.0176725
0.0174153
0.0178791
0.020048
0.0255317
0.0349704
0.0459934
0.0539729
0.0570736
0.0574676
0.0570163
0.055366
0.0521874
0.0487573
0.0455632
0.0428936
0.0404468
0.0387196
0.0376348
0.0358055
0.0341345
0.0334942
0.0361784
0.0412676
0.0457779
0.0486901
0.0483735
0.0471476
0.0461924
0.0457883
0.0464898
0.0484227
0.0517769
0.0571181
0.06136
0.0611889
0.0567867
0.0485512
0.0353132
0.025246
0.0224402
0.0250177
0.0282115
0.0301819
0.0316449
0.031741
0.028934
0.0245632
0.0235625
0.028149
0.0385856
0.0536567
0.0607578
0.0619477
0.060602
0.0594594
0.0589888
0.0576741
0.0571726
0.0554977
0.0530497
0.0498343
0.0472445
0.0455741
0.0449854
0.0454852
0.0454993
0.0444939
0.0410538
0.0365522
0.0336956
0.0339739
0.0395431
0.043055
0.0427876
0.0361144
0.0295649
0.0293699
0.0387417
0.0520204
0.0612335
0.0619645
0.0600271
0.0573071
0.0557515
0.0540058
0.0521224
0.051492
0.0496903
0.0476233
0.0476401
0.0455103
0.0499568
0.0536646
0.061183
0.0652539
0.0681954
0.069978
0.0705641
0.070464
0.0699009
0.0682583
0.0678364
0.0666217
0.0662015
0.0661196
0.065276
0.065647
0.0651549
0.0648948
0.0651495
0.0639568
0.0640119
0.0657971
0.0667405
0.0680556
0.0682312
0.0690368
0.0695002
0.0696336
0.0704286
0.0709066
0.0715166
0.0719833
0.0722982
0.0724272
0.0723788
0.0719055
0.0717882
0.0703493
0.0698208
0.068665
0.067308
0.0656197
0.0645519
0.0658582
0.0637137
0.0644983
0.0638352
0.0630722
0.0639842
0.0644792
0.0663125
0.0651936
0.0654342
0.0651513
0.0653395
0.0642942
0.0640164
0.0634362
0.0628459
0.0615672
0.0601706
0.0591868
0.058561
0.0579927
0.0580175
0.0579981
0.0579989
0.057999
0.0579962
0.0579966
0.0579965
0.0579963
0.0579956
0.0579954
0.0579949
0.0579954
0.0579964
0.0579991
0.058001
0.0580327
0.058033
0.0580018
0.0579986
0.0579966
0.0579952
0.0579947
0.057995
0.057995
0.0579954
0.0579957
0.0579964
0.057997
0.0579975
0.0579981
0.0579987
0.0579987
0.0579991
0.0579982
0.057998
0.0579971
0.057997
0.0579964
0.0579962
0.0579956
0.0579955
0.0579952
0.0579952
0.0579952
0.0579953
0.057997
0.058001
0.0580321
0.0580325
0.0580013
0.0579977
0.0579958
0.0579949
0.0579951
0.0579955
0.0579954
0.0579959
0.0579959
0.0579966
0.0579968
0.0579975
0.0579977
0.0579988
0.0579982
0.0579986
0.0579988
0.0579978
0.0579975
0.0579969
0.0579964
0.0579957
0.0579956
0.0579953
0.0579953
0.0579952
0.0579955
0.0579955
0.0579965
0.058001
0.0580325
0.0580323
0.0580014
0.0579975
0.0579954
0.0579949
0.0579945
0.0579947
0.0579949
0.0579952
0.0579954
0.0579959
0.0579963
0.0579968
0.057997
0.0579977
0.0579977
0.0579979
0.0579975
0.0579972
0.0579969
0.0579958
0.0579951
0.0579944
0.0579936
0.057993
0.0579924
0.0579918
0.057991
0.0579906
0.0579907
0.0579961
0.0580221
0.058006
0.0649719
0.0401784
0.0228433
0.0178743
0.0169329
0.0185618
0.0276874
0.0384262
0.0409565
0.0351564
0.0265206
0.0214073
0.019575
0.0185419
0.0180641
0.0169938
0.016324
0.0182793
0.0266831
0.0328674
0.0312529
0.0292321
0.0271371
0.024409
0.0213454
0.0211947
0.0238639
0.0298777
0.0365745
0.0415173
0.0439828
0.0409222
0.0329042
0.0221555
0.0159014
0.0142842
0.0157133
0.0206874
0.0273192
0.0305372
0.028896
0.0248916
0.022523
0.0219943
0.0222171
0.022795
0.0234301
0.024033
0.0242928
0.0242516
0.0238906
0.0232967
0.0228322
0.0221779
0.0222382
0.0220841
0.0222739
0.022292
0.0222909
0.0221879
0.0219993
0.0218803
0.0219826
0.0223725
0.0230289
0.0236992
0.0241758
0.0244315
0.0244675
0.0241879
0.0236502
0.0230104
0.022698
0.0226623
0.0232054
0.0241667
0.0256434
0.0275932
0.0299178
0.0328132
0.0358175
0.0375982
0.0373639
0.0352263
0.0323377
0.0302685
0.0297866
0.0294799
0.0273014
0.0239242
0.0218336
0.0212612
0.0213934
0.022272
0.0248348
0.0287345
0.0331906
0.0373499
0.040036
0.040829
0.039835
0.0380248
0.0361956
0.0343582
0.0323288
0.0303314
0.0290436
0.0282325
0.0279271
0.0277944
0.0298796
0.0319061
0.0360329
0.0415844
0.048114
0.0540833
0.0577844
0.0590111
0.0580101
0.0551335
0.0500925
0.0445925
0.0402667
0.0383928
0.0387249
0.0392895
0.0384557
0.0362291
0.0333479
0.0302343
0.027452
0.0255991
0.0257291
0.028062
0.0327744
0.0396855
0.0465347
0.0517564
0.0544373
0.05619
0.0568146
0.0567701
0.0555375
0.0534532
0.0507484
0.0474818
0.0451925
0.0429456
0.0419897
0.0404416
0.0397614
0.038033
0.0370989
0.0387987
0.0422886
0.0454483
0.0469688
0.0469199
0.0464317
0.0460613
0.0459858
0.0467126
0.0482546
0.0509039
0.0563047
0.0607024
0.0587768
0.0518046
0.0411966
0.029736
0.0227152
0.0216445
0.0245808
0.0277928
0.0293098
0.0289183
0.0273431
0.0244259
0.0224123
0.0224977
0.0258635
0.031188
0.0386869
0.0470447
0.0518151
0.0540357
0.0542875
0.0537464
0.0533248
0.0515437
0.0497399
0.0476076
0.0448795
0.0426121
0.0417756
0.041939
0.0428868
0.0446295
0.0464858
0.0468752
0.0453081
0.0433819
0.0436681
0.0462265
0.0489603
0.0490087
0.0489468
0.0414452
0.0340173
0.0329216
0.0389977
0.0482522
0.0548327
0.0559202
0.0579133
0.053932
0.0552017
0.0528502
0.0515849
0.0501518
0.0509569
0.0520464
0.0533706
0.0533834
0.0584569
0.0621871
0.0664673
0.0691836
0.0703419
0.0708653
0.0711388
0.071527
0.0712319
0.0716422
0.0709648
0.0708629
0.0701016
0.0699091
0.0693503
0.0689787
0.0682424
0.0681647
0.0682308
0.0690842
0.0691616
0.0695996
0.0695725
0.0700752
0.0701242
0.0705615
0.0708496
0.0709738
0.0717083
0.0719389
0.0723826
0.072527
0.0724758
0.0722823
0.0721221
0.0719691
0.0717615
0.0713752
0.0715499
0.0702483
0.0691284
0.0683069
0.0683623
0.0689109
0.0684945
0.0689321
0.0689595
0.0689179
0.0700535
0.0699565
0.0709244
0.070135
0.0706972
0.0699711
0.0696274
0.0689327
0.0689228
0.0683459
0.0683846
0.0679634
0.0673825
0.0670125
0.0668412
0.0668986
0.0668629
0.0668697
0.0668695
0.0668681
0.0668682
0.0668686
0.0668679
0.066867
0.0668663
0.0668653
0.0668649
0.0668644
0.0668655
0.0668716
0.0668955
0.066896
0.0668718
0.066865
0.0668646
0.0668645
0.0668648
0.0668656
0.0668664
0.0668667
0.0668676
0.0668678
0.0668685
0.0668683
0.0668687
0.0668684
0.0668682
0.0668685
0.0668683
0.0668684
0.0668682
0.0668683
0.0668679
0.0668678
0.0668672
0.0668668
0.066866
0.0668655
0.0668646
0.0668638
0.0668638
0.0668713
0.0668952
0.0668954
0.0668718
0.0668642
0.0668642
0.0668642
0.0668652
0.0668662
0.0668665
0.0668673
0.0668673
0.0668681
0.0668678
0.0668685
0.0668679
0.0668689
0.0668677
0.0668684
0.0668687
0.0668685
0.0668684
0.0668685
0.0668679
0.0668677
0.0668669
0.0668667
0.066866
0.0668656
0.066865
0.066864
0.0668634
0.0668716
0.0668955
0.0668955
0.0668715
0.0668641
0.0668641
0.0668647
0.0668656
0.0668659
0.0668673
0.0668673
0.0668684
0.0668682
0.0668686
0.0668681
0.0668682
0.0668679
0.0668677
0.0668675
0.0668682
0.0668678
0.0668688
0.0668678
0.0668682
0.066867
0.0668666
0.066865
0.0668641
0.0668616
0.06686
0.0668584
0.0668561
0.0668647
0.0669254
0.0674875
0.0691794
0.051429
0.0278775
0.0188292
0.0174701
0.0224296
0.0347507
0.0455294
0.0455347
0.0376051
0.0295155
0.0238836
0.0208666
0.0193383
0.0185708
0.0170581
0.0164001
0.0182593
0.0256261
0.036191
0.0403029
0.0368202
0.0296352
0.0248489
0.0213488
0.0205105
0.0226145
0.0272925
0.0319965
0.0344607
0.0329225
0.0277662
0.0210456
0.0161586
0.0141882
0.0150413
0.0190759
0.0269258
0.0340094
0.0356882
0.0324289
0.0273418
0.0240913
0.0228351
0.022363
0.0222651
0.022487
0.0227438
0.0231468
0.0229762
0.0233563
0.023027
0.0235215
0.023604
0.0240309
0.0241936
0.0243587
0.0243369
0.0243218
0.0241892
0.0240151
0.0238541
0.0238136
0.0239339
0.0240866
0.0242822
0.0245362
0.024704
0.0249118
0.0251722
0.0253867
0.025295
0.0256879
0.0258056
0.0265467
0.0275563
0.0290297
0.0308711
0.0329048
0.0346621
0.0357654
0.0359807
0.0348759
0.0336476
0.0319856
0.031377
0.0304547
0.0292477
0.0272766
0.0248466
0.0228689
0.0221201
0.0222279
0.0230016
0.0247404
0.0270568
0.0302686
0.0336293
0.0362618
0.0373547
0.0370483
0.0363644
0.0360979
0.035988
0.0358416
0.0352898
0.0345867
0.0341072
0.0344256
0.0361953
0.0384762
0.0432771
0.0480179
0.0532342
0.0575907
0.0602662
0.0610768
0.0606686
0.0594126
0.0572437
0.0536899
0.049455
0.0457762
0.0432592
0.0421001
0.0413435
0.0402241
0.0385387
0.0368643
0.035307
0.0347658
0.0343824
0.0361336
0.0386387
0.041646
0.0445962
0.0472758
0.0488083
0.0498878
0.0510866
0.0526892
0.05409
0.0550115
0.0550476
0.0533362
0.051547
0.0485145
0.0470101
0.0453153
0.0441393
0.0432732
0.0421563
0.0416892
0.0419464
0.043048
0.0445813
0.0454027
0.0457871
0.0459796
0.0462144
0.0465967
0.0475251
0.048545
0.0500597
0.0548536
0.0594526
0.0568473
0.0477146
0.0364919
0.0268279
0.0213085
0.0201322
0.0214073
0.0235348
0.0244065
0.0239288
0.0224305
0.0209713
0.0210024
0.0225465
0.0247731
0.0270737
0.0297129
0.0328921
0.0362992
0.0391191
0.0406422
0.0407128
0.041077
0.0393525
0.0390804
0.0377586
0.0372141
0.0375921
0.0378159
0.0394522
0.0412061
0.0439586
0.0470462
0.0493475
0.050234
0.0504009
0.0505679
0.0509156
0.0514832
0.0514531
0.0517345
0.0513686
0.04566
0.0395556
0.0371375
0.0387856
0.0437113
0.0479409
0.0495707
0.0516372
0.0519275
0.0510687
0.0507301
0.0522701
0.0546794
0.0578254
0.0586829
0.0613086
0.0644017
0.0669796
0.0693595
0.0713673
0.0718212
0.0720586
0.07184
0.0719411
0.0719818
0.0719753
0.0721029
0.0722046
0.0716725
0.071264
0.0713606
0.070754
0.0705812
0.070811
0.0707837
0.0707478
0.0708319
0.0705672
0.0707616
0.070682
0.0709978
0.0710609
0.071173
0.0715798
0.0719717
0.0721953
0.0723594
0.0723089
0.0722877
0.0722387
0.0721239
0.0721387
0.0719758
0.0719086
0.0715429
0.0712665
0.0707831
0.0707176
0.0702473
0.070385
0.0708965
0.0705466
0.0707681
0.0710619
0.0710239
0.0716192
0.0716258
0.0714697
0.0714906
0.0714311
0.0714275
0.0713146
0.0712778
0.0711882
0.0711413
0.071089
0.0710326
0.0710708
0.0709107
0.0709946
0.0710031
0.0709984
0.0709989
0.0709988
0.0709988
0.070999
0.0709988
0.0709987
0.0709985
0.0709982
0.0709979
0.0709976
0.0709975
0.0709991
0.0710019
0.0710019
0.0709992
0.0709974
0.0709977
0.0709978
0.0709981
0.0709983
0.0709986
0.0709986
0.0709988
0.0709987
0.0709988
0.0709987
0.0709988
0.0709987
0.0709987
0.0709987
0.0709987
0.0709987
0.0709987
0.0709988
0.0709988
0.0709988
0.0709987
0.0709985
0.0709984
0.0709982
0.0709979
0.0709975
0.0709973
0.0709991
0.0710018
0.0710019
0.0709991
0.0709974
0.0709976
0.0709979
0.0709981
0.0709984
0.0709985
0.0709987
0.0709987
0.0709988
0.0709987
0.0709987
0.0709986
0.0709988
0.0709986
0.0709987
0.0709988
0.0709988
0.0709987
0.0709988
0.0709988
0.0709988
0.0709987
0.0709986
0.0709984
0.0709982
0.070998
0.0709975
0.0709972
0.070999
0.0710018
0.0710019
0.0709991
0.0709974
0.0709976
0.0709979
0.0709982
0.0709985
0.0709988
0.0709988
0.070999
0.0709989
0.0709988
0.0709987
0.0709987
0.0709986
0.0709986
0.0709986
0.0709987
0.0709987
0.0709988
0.0709988
0.0709989
0.0709987
0.0709985
0.0709982
0.0709978
0.0709972
0.0709967
0.0709961
0.0709955
0.0709975
0.0710249
0.0713398
0.07242
0.0616135
0.0374824
0.0240881
0.0217392
0.0281995
0.0400482
0.0491871
0.0487552
0.0387436
0.028182
0.0232315
0.0205167
0.0190159
0.0179206
0.0170964
0.0177052
0.021411
0.0278117
0.0372008
0.0471612
0.049125
0.0358691
0.0260262
0.0220274
0.0200878
0.0201395
0.020912
0.0215426
0.0212566
0.0197292
0.0177246
0.0157414
0.0151229
0.0158345
0.0200416
0.0275773
0.0369305
0.0432857
0.0446736
0.0416348
0.036771
0.03208
0.0284211
0.0256418
0.0239859
0.0229905
0.0231825
0.0236663
0.0240422
0.0242795
0.0246369
0.0248933
0.0252846
0.0254702
0.0255635
0.0257176
0.02566
0.0256585
0.0255286
0.0254112
0.0252575
0.0251195
0.0250247
0.0249826
0.0249291
0.025033
0.0251026
0.025166
0.0252477
0.0254545
0.0256043
0.0261205
0.0266629
0.0273071
0.0279911
0.0287276
0.0296406
0.0305055
0.0310304
0.0310116
0.0302374
0.0295742
0.0286306
0.0281385
0.027849
0.0272367
0.0272112
0.0265076
0.02566
0.0242582
0.0231685
0.0231557
0.0235502
0.0249683
0.0262492
0.0277538
0.0294804
0.0311103
0.0321428
0.0325186
0.0326898
0.0333706
0.034608
0.0361925
0.0379677
0.0399031
0.0419017
0.0436345
0.0457806
0.0484813
0.0515368
0.0545993
0.056805
0.0582433
0.0590532
0.0590786
0.0585898
0.0576302
0.056281
0.0543934
0.052229
0.0500821
0.0480132
0.0461437
0.0441669
0.0420868
0.0403901
0.0390315
0.0375922
0.036445
0.0360667
0.0368632
0.0380757
0.0393561
0.0404836
0.0410336
0.0416384
0.0422369
0.0434988
0.044723
0.0470533
0.0489038
0.0513908
0.0525799
0.0530588
0.0530272
0.0512777
0.0510165
0.0491549
0.0482741
0.0471412
0.0464445
0.0459723
0.0459673
0.0461429
0.0465107
0.0469128
0.047256
0.0476775
0.0481582
0.0487748
0.0491889
0.0495755
0.0529263
0.058042
0.0567019
0.0477953
0.0369441
0.0278981
0.0222426
0.0201248
0.019607
0.0198927
0.0201562
0.0202191
0.0200458
0.0203753
0.0210749
0.0229883
0.024896
0.0279148
0.0301771
0.0334144
0.0358662
0.0383439
0.0397899
0.0405523
0.0402156
0.0396658
0.0386283
0.0380092
0.0379117
0.038325
0.0393211
0.0417927
0.0450188
0.0483689
0.0510658
0.0528961
0.0539423
0.0546577
0.0549129
0.0550176
0.054403
0.0541572
0.0548996
0.0543426
0.0553536
0.0512475
0.0464956
0.0444279
0.0412385
0.0452206
0.0442603
0.0476956
0.0487616
0.0509871
0.0544913
0.0578477
0.0613471
0.0643194
0.0660081
0.0679334
0.0687169
0.0706097
0.0715098
0.0722709
0.0725367
0.0727155
0.0724862
0.0724934
0.0724402
0.0724827
0.0724926
0.0724821
0.0722227
0.0730478
0.0724819
0.0717481
0.0718804
0.0721858
0.0718862
0.0716813
0.0712772
0.0715717
0.0715248
0.0717249
0.0715677
0.0717101
0.071803
0.0717877
0.0720033
0.0721577
0.0722626
0.0723012
0.0722157
0.0721516
0.0721541
0.0721795
0.0722129
0.0722059
0.0720067
0.0718736
0.0714677
0.0712611
0.071125
0.0713365
0.0715933
0.0719707
0.0720395
0.0718761
0.0723911
0.0718162
0.0720148
0.072071
0.0720795
0.072046
0.0720972
0.0719755
0.0721065
0.0718156
0.0721232
0.0717864
0.0726511
0.0720427
0.0720482
0.0719925
0.0719939
0.0719939
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.0719939
0.0719939
0.0719938
0.0719938
0.0719939
0.0719939
0.0719939
0.0719939
0.0719938
0.0719938
0.0719938
0.0719939
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.0719939
0.0719938
0.0719938
0.0719937
0.0719939
0.0719939
0.0719939
0.0719939
0.0719937
0.0719938
0.0719939
0.0719939
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.0719939
0.0719938
0.0719938
0.0719937
0.0719939
0.0719939
0.0719939
0.0719939
0.0719938
0.0719938
0.0719938
0.0719939
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.071994
0.0719939
0.0719938
0.0719936
0.0719935
0.0719935
0.0719939
0.0720007
0.0720813
0.0733307
0.0705909
0.0554583
0.0361536
0.0298691
0.0330792
0.0409797
0.0497975
0.0524662
0.047038
0.0374069
0.0304884
0.0264786
0.0250047
0.0245242
0.0258148
0.0297976
0.0360984
0.0412348
0.0449903
0.0507805
0.0543706
0.0446522
0.0279213
0.0233716
0.0206445
0.0197595
0.0194494
0.0190936
0.0187796
0.0183595
0.018393
0.0188253
0.0201115
0.0231634
0.0280038
0.0349545
0.0429398
0.0498111
0.054246
0.0556019
0.055577
0.0549169
0.05377
0.0484111
0.0375722
0.0260057
0.0232253
0.0234829
0.0240343
0.0248574
0.0249152
0.0255409
0.0256287
0.0259363
0.0259862
0.0261557
0.0262571
0.0262974
0.0263172
0.026292
0.0262352
0.0261778
0.0260927
0.0259162
0.0258823
0.025857
0.02578
0.0256836
0.0255905
0.0255624
0.0255256
0.0255501
0.0258934
0.0258544
0.0260381
0.0261069
0.0262775
0.0262727
0.0263048
0.0262279
0.0260651
0.0259086
0.0256464
0.0255203
0.0254369
0.0255067
0.025517
0.0258814
0.0263071
0.0258688
0.0247245
0.0236577
0.023798
0.0246822
0.0261446
0.0269526
0.0274689
0.0279907
0.0284659
0.0290039
0.0294367
0.0298854
0.0302354
0.0307623
0.0321864
0.0342014
0.0362891
0.0383741
0.0402463
0.0420428
0.0434958
0.044289
0.0453958
0.0458643
0.0464479
0.0466858
0.0472003
0.0472706
0.0475989
0.0473275
0.0471531
0.0464188
0.0457087
0.0448337
0.0439359
0.042988
0.0417332
0.0405196
0.0393643
0.0377746
0.0362728
0.0359194
0.0361759
0.0364515
0.036764
0.0372451
0.0373889
0.0378008
0.0382264
0.0391688
0.0399933
0.0418823
0.0430159
0.0456367
0.046804
0.0485921
0.0495165
0.0500261
0.0503177
0.0503689
0.0501875
0.0499776
0.0497421
0.0496995
0.0496346
0.0496847
0.0496729
0.0496703
0.0497259
0.0495285
0.0496253
0.049611
0.0493862
0.0506485
0.0562605
0.0578846
0.0525745
0.0451267
0.0383456
0.0336665
0.0303475
0.0281155
0.0278794
0.0268355
0.0270556
0.0272984
0.0288758
0.0308274
0.0337431
0.0377926
0.041196
0.0469519
0.0489605
0.0516324
0.0519451
0.0517157
0.0515605
0.0512296
0.0511829
0.0497955
0.0492794
0.0497651
0.0490631
0.0503087
0.0513146
0.0532788
0.0541372
0.0555827
0.0565282
0.0574649
0.0577387
0.0582343
0.0584523
0.0586125
0.0586052
0.0592818
0.0591085
0.0601444
0.0595879
0.0599869
0.0547449
0.0555645
0.0535054
0.0553635
0.0545729
0.0573685
0.0591791
0.0619601
0.0648888
0.0674546
0.0696295
0.0717819
0.0713092
0.0711446
0.0721717
0.0723486
0.0722779
0.0722317
0.0722862
0.072309
0.0723218
0.0723263
0.0723544
0.0723406
0.0723434
0.0722919
0.0722689
0.0721617
0.0722252
0.0720199
0.0720911
0.0720432
0.0720091
0.071928
0.0719227
0.0718916
0.0718687
0.0719203
0.0719504
0.0719766
0.0720402
0.0720896
0.072107
0.072196
0.0722283
0.0721781
0.0721661
0.0721737
0.072204
0.0722367
0.0722311
0.0722505
0.0722661
0.0722453
0.0722424
0.0722104
0.0721978
0.0722045
0.0721487
0.0721889
0.0720811
0.0720664
0.0721176
0.0721106
0.0721121
0.0721145
0.0721206
0.072125
0.0721316
0.072135
0.0721452
0.0721383
0.0721592
0.0721257
0.0721071
0.0720957
0.0720968
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720961
0.0720964
0.0720998
)
;
boundaryField
{
wand
{
type zeroGradient;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //
| |
35b0998eb09a5c31c29be19d1a7afea2d9e3957d | a9116b897adcdcbad1b555ba0ea742f64969dd89 | /Introduction/Getting Started: The Easy Problems/Medium/11683 - Laser Sculpture.cpp | 9054f4b81e219d1674d6165cffd461566b7dfedf | [] | no_license | khalilalquraan/Competitive-Programming-3-The-New-Lower-Bound-of-Programming-Contests-Steven-Felix-Halim- | 6e0b4206ed4a259764f795d101f655e863c1769f | e12928201717acd521d36daae8d95523c86ea5d3 | refs/heads/master | 2021-07-15T21:27:55.667878 | 2021-06-29T02:21:39 | 2021-06-29T02:21:39 | 201,797,208 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 799 | cpp | 11683 - Laser Sculpture.cpp | #include<bits/stdc++.h>
#define ll long long
#define ld long double
using namespace std;
int main(int argc, char const *argv[]) {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
int n, m;
while(cin >> n >> m) {
if(n == 0)break;
ll ans = 0, max0;
vector<ll>v(m);
for(int i = 0; i < m; i++) {
cin >> v[i];
}
max0 = v[0];
for(int i = 0; i < m - 1; i++) {
if(v[i] > v[i + 1]) {
ans += v[i] - v[i + 1];
max0 = max(max0, v[i]);
} else if(v[i + 1] > max0) {
ans += v[i + 1] - max0;
max0 = v[i + 1];
}
}
ans += n - max0;
cout << ans << endl;
}
} |
7a6f9b5dc783ce6d8664bccd9f1e7e7e68e5e0be | 4ac857ab3c58242ba77a271790baeb666ea78184 | /CoinF/mycoin.cpp | bbeb6bd17f6e6dfc5d5b2c79f7ae9b95912a11b3 | [] | no_license | befernal/ssh_Test | 50310a30fe63b404cc024d3ed731e69be4e35b1e | bb403d0f82e5017a88b00d6bc42d7519413281ac | refs/heads/master | 2020-07-09T22:18:39.834632 | 2019-08-23T03:49:21 | 2019-08-23T03:49:32 | 204,095,806 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,735 | cpp | mycoin.cpp | #include "mycoin.h"
#include<QDebug>
//MyCoin::MyCoin(QWidget *parent) : QWidget(parent)
//{
//}
MyCoin::MyCoin(QString btnImg)
{
QPixmap pix;
bool ret = pix.load(btnImg);
if(!ret)
{
QString str = QString("图片加载失败,失败路径:%1").arg(btnImg);
qDebug() <<str;
return;
}
this->setFixedSize(pix.width(),pix.height());
this->setStyleSheet("QPushButton{border:0px;}");
this->setIcon(pix);
this->setIconSize(QSize(pix.width(),pix.height()));
//定时器创建
this->timer1 = new QTimer(this);
this->timer2 = new QTimer(this);
//监听定时器信号
connect(timer1,&QTimer::timeout,[=](){
QPixmap pix;
QString str = QString(":/res/Coin000%1.png").arg(this->min++);
bool ret = pix.load(str);
if(!ret)
{
QString str = QString("图片加载失败,失败路径:%1").arg(btnImg);
qDebug() <<str;
return;
}
this->setFixedSize(pix.width(),pix.height());
this->setStyleSheet("QPushButton{border:0px;}");
this->setIcon(pix);
this->setIconSize(QSize(pix.width(),pix.height()));
if(this->min > this->max)
{
this->timer1->stop();
this->min = 1;
isAnimation = false;
}
});
//银币翻金币定时器监听
connect(timer2,&QTimer::timeout,[=](){
QPixmap pix;
QString str = QString(":/res/Coin000%1.png").arg(this->max--);
bool ret = pix.load(str);
if(!ret)
{
QString str = QString("图片加载失败,失败路径:%1").arg(btnImg);
qDebug() <<str;
return;
}
this->setFixedSize(pix.width(),pix.height());
this->setStyleSheet("QPushButton{border:0px;}");
this->setIcon(pix);
this->setIconSize(QSize(pix.width(),pix.height()));
if(this->max < this->min)
{
this->timer2->stop();
this->max = 8;
isAnimation = false;
}
});
}
//翻转金币的功能
void MyCoin::changeFlag()
{
if(this->flag)
{
//将标志改为银币
this->flag = false;
//启动金币翻银币的定时器
timer1->start(30);
}
else
{
//将标志改为金币
this->flag = true;
//启动银币翻金币的定时器
timer2->start(30);
}
//正在做动画,将标志置为true
isAnimation = true;
}
//重新鼠标按下事件
void MyCoin::mousePressEvent(QMouseEvent *e)
{
if(this->isAnimation | this->isWin)
{
return;
}
else
{
QPushButton::mousePressEvent(e);
}
}
|
4c3f7fe913920a6b6a71414c2a40f88a466b84f8 | 835c8db95b7d60cecb675cf21d9cad4be83ef803 | /AdvancedAudioProcessing/audiocollectionsample.cpp | cff0665c928aec5c10c382da1590f8f4f99db790 | [] | no_license | jack9603301/AdvancedAudioProcessing | 8e2461e32fcb7aefb9a94d5b28812bdcf0d3afec | 463c335921c4b5cb423f7ef750b4309a489bab67 | refs/heads/master | 2021-09-02T16:16:56.193513 | 2017-12-29T09:03:22 | 2017-12-29T09:03:22 | 115,625,189 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,900 | cpp | audiocollectionsample.cpp | #include "audiocollectionsample.hpp"
#include <QAudioFormat>
#include <QAudioDeviceInfo>
#include <QAudioInput>
namespace AudioCollection {
AudioCollectionSample::AudioCollectionSample(QObject *parent)
: QObject(parent),
AudioDevice(Q_NULLPTR),
Format(Q_NULLPTR),
InputDevice(Q_NULLPTR)
{
}
AudioCollectionSample::~AudioCollectionSample()
{
Stop();
}
bool AudioCollectionSample::StartAudioSampleFromDevice()
{
if(Format && AudioDevice)
{
if(InputDevice)
{
InputDevice->stop();
delete InputDevice;
InputDevice = Q_NULLPTR;
}
AudioDevice = Q_NULLPTR;
delete Format;
Format = Q_NULLPTR;
}
Q_ASSERT(Format == Q_NULLPTR && AudioDevice == Q_NULLPTR && InputDevice == Q_NULLPTR);
Format = new QAudioFormat;
Format->setByteOrder(QAudioFormat::LittleEndian);
Format->setChannelCount(2);
Format->setCodec("Audio/pcm");
Format->setSampleRate(1000);
Format->setSampleSize(200);
Format->setSampleType(QAudioFormat::UnSignedInt);
QAudioDeviceInfo Info = QAudioDeviceInfo::defaultInputDevice();
if(!Info.isFormatSupported(*Format))
{
(*Format) = Info.nearestFormat(*Format);
}
InputDevice = new QAudioInput(*Format,this);
AudioDevice = InputDevice->start();
if(AudioDevice)
{
connect(AudioDevice,SIGNAL(readyRead()),this,SLOT(Ready()));
return true;
}
else
{
return false;
}
}
void AudioCollectionSample::Stop()
{
if(Format && AudioDevice)
{
disconnect(AudioDevice,SIGNAL(readyRead()),this,SLOT(Ready()));
if(InputDevice)
{
InputDevice->stop();
delete InputDevice;
InputDevice = Q_NULLPTR;
}
AudioDevice = Q_NULLPTR;
delete Format;
Format = Q_NULLPTR;
}
}
void AudioCollectionSample::Ready()
{
Q_ASSERT(AudioDevice);
emit Sample(AudioDevice->readAll());
}
}
|
953681dc092fc17ac2267a8e392a64d625228a33 | 3e843cc01f0e0440133aba2c9ff1bbb0e9ab296c | /include/SVMclassifier.h | a94742f0dc676773f31de568240786b4a5bb69e9 | [] | no_license | aval95/road_sign_recognition | 3e083244dfc8ad71d8981a8a3734b9ce10781088 | 120af2f3f72aad688e4f4ed96a07496d85a793dd | refs/heads/master | 2020-04-28T11:11:06.903897 | 2019-07-25T15:47:13 | 2019-07-25T15:47:13 | 175,228,075 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,069 | h | SVMclassifier.h | /*
Computer Vision Final Project - Road Sign Recognition
Valente Alex - 1173742
UniPD - A.A. 2017-2018
Support Vector Machine multiclass classifier for road sign recognition
*/
#ifndef SVM__CLASSIFIER__H
#define SVM__CLASSIFIER__H
#include <opencv2/objdetect.hpp>
#include <opencv2/imgcodecs.hpp>
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <opencv2/features2d.hpp>
#include <opencv2/ml.hpp>
#include "DetectedMat.h"
class SVMclassifier {
public:
SVMclassifier();
SVMclassifier(std::vector<cv::String> svm_classifier_files);
void init();
std::vector<cv::Ptr<cv::ml::SVM>> svmClassTraining(std::string classpath);
int svmClassPrediction(DetectedMat image);
std::string getClassName(int num_class);
void setDebugMode(bool debug);
private:
int HOG_DESCRIPTOR_SIZE = 2304;
int NUM_CLASSES = 14;
float RECOGNITION_THRESHOLD = 0.20;
std::vector<cv::Ptr<cv::ml::SVM>> m_svm; // Need for one classifier per road sign class
std::vector<std::string> m_label_names;
bool m_debug_mode_flag = false;
};
#endif
|
c9e4756ca262fa823b1604219538cd33cde416ec | 1d928c3f90d4a0a9a3919a804597aa0a4aab19a3 | /c++/xbmc/2017/4/GUIControl.h | b4e0f43a6b3cd9193a01259f9b74fa1a11faab60 | [] | no_license | rosoareslv/SED99 | d8b2ff5811e7f0ffc59be066a5a0349a92cbb845 | a062c118f12b93172e31e8ca115ce3f871b64461 | refs/heads/main | 2023-02-22T21:59:02.703005 | 2021-01-28T19:40:51 | 2021-01-28T19:40:51 | 306,497,459 | 1 | 1 | null | 2020-11-24T20:56:18 | 2020-10-23T01:18:07 | null | UTF-8 | C++ | false | false | 13,271 | h | GUIControl.h | /*!
\file GUIControl.h
\brief
*/
#ifndef GUILIB_GUICONTROL_H
#define GUILIB_GUICONTROL_H
#pragma once
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* 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, 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 XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include <vector>
#include "GraphicContext.h" // needed by any rendering operation (all controls)
#include "GUIMessage.h" // needed by practically all controls
#include "VisibleEffect.h" // needed for the CAnimation members
#include "GUIInfoTypes.h" // needed for CGUIInfoColor to handle infolabel'ed colors
#include "DirtyRegion.h"
#include "GUIAction.h"
class CGUIListItem; // forward
class CAction;
class CMouseEvent;
enum ORIENTATION { HORIZONTAL = 0, VERTICAL };
class CControlState
{
public:
CControlState(int id, int data)
{
m_id = id;
m_data = data;
}
int m_id;
int m_data;
};
/*!
\brief Results of OnMouseEvent()
Any value not equal to EVENT_RESULT_UNHANDLED indicates that the event was handled.
*/
enum EVENT_RESULT { EVENT_RESULT_UNHANDLED = 0x00,
EVENT_RESULT_HANDLED = 0x01,
EVENT_RESULT_PAN_HORIZONTAL = 0x02,
EVENT_RESULT_PAN_VERTICAL = 0x04,
EVENT_RESULT_PAN_VERTICAL_WITHOUT_INERTIA = 0x08,
EVENT_RESULT_PAN_HORIZONTAL_WITHOUT_INERTIA = 0x10,
EVENT_RESULT_ROTATE = 0x20,
EVENT_RESULT_ZOOM = 0x40,
EVENT_RESULT_SWIPE = 0x80
};
/*!
\ingroup controls
\brief Base class for controls
*/
class CGUIControl
{
public:
CGUIControl();
CGUIControl(int parentID, int controlID, float posX, float posY, float width, float height);
virtual ~CGUIControl(void);
virtual CGUIControl *Clone() const=0;
virtual void DoProcess(unsigned int currentTime, CDirtyRegionList &dirtyregions);
virtual void Process(unsigned int currentTime, CDirtyRegionList &dirtyregions);
virtual void DoRender();
virtual void Render() {};
// Called after the actual rendering is completed to trigger additional
// non GUI rendering operations
virtual void RenderEx() {};
/*! \brief Returns whether or not we have processed */
bool HasProcessed() const { return m_hasProcessed; };
// OnAction() is called by our window when we are the focused control.
// We should process any control-specific actions in the derived classes,
// and return true if we have taken care of the action. Returning false
// indicates that the message may be handed down to the window or application
// levels. This base class implementation handles basic movement, and should
// be called from the derived classes when the action has not been handled.
// Return true to indicate that the action has been dealt with.
virtual bool OnAction(const CAction &action);
// Common actions to make the code easier to read (no ugly switch statements in derived controls)
virtual void OnUp();
virtual void OnDown();
virtual void OnLeft();
virtual void OnRight();
virtual bool OnBack();
virtual bool OnInfo();
virtual void OnNextControl();
virtual void OnPrevControl();
virtual void OnFocus() {};
virtual void OnUnFocus() {};
/*! \brief React to a mouse event
Mouse events are sent from the window to all controls, and each control can react based on the event
and location of the event.
\param point the location in transformed skin coordinates from the upper left corner of the parent control.
\param event the mouse event to perform
\return EVENT_RESULT corresponding to whether the control handles this event
\sa HitTest, CanFocusFromPoint, CMouseEvent, EVENT_RESULT
*/
virtual EVENT_RESULT SendMouseEvent(const CPoint &point, const CMouseEvent &event);
/*! \brief Perform a mouse action
Mouse actions are sent from the window to all controls, and each control can react based on the event
and location of the actions.
\param point the location in transformed skin coordinates from the upper left corner of the parent control.
\param event the mouse event to perform
\return EVENT_RESULT corresponding to whether the control handles this event
\sa SendMouseEvent, HitTest, CanFocusFromPoint, CMouseEvent
*/
virtual EVENT_RESULT OnMouseEvent(const CPoint &point, const CMouseEvent &event) { return EVENT_RESULT_UNHANDLED; };
/*! \brief Unfocus the control if the given point on screen is not within it's boundary
\param point the location in transformed skin coordinates from the upper left corner of the parent control.
\sa CanFocusFromPoint
*/
virtual void UnfocusFromPoint(const CPoint &point);
/*! \brief Used to test whether the point is inside a control.
\param point location to test
\return true if the point is inside the bounds of this control.
\sa SetHitRect
*/
virtual bool HitTest(const CPoint &point) const;
virtual bool OnMessage(CGUIMessage& message);
virtual int GetID(void) const;
virtual void SetID(int id) { m_controlID = id; };
virtual bool HasID(int id) const;
virtual bool HasVisibleID(int id) const;
int GetParentID() const;
virtual bool HasFocus() const;
virtual void AllocResources();
virtual void FreeResources(bool immediately = false);
virtual void DynamicResourceAlloc(bool bOnOff);
virtual bool IsDynamicallyAllocated() { return false; };
virtual bool CanFocus() const;
virtual bool IsVisible() const;
bool IsVisibleFromSkin() const { return m_visibleFromSkinCondition; };
virtual bool IsDisabled() const;
virtual void SetPosition(float posX, float posY);
virtual void SetHitRect(const CRect &rect, const color_t &color);
virtual void SetCamera(const CPoint &camera);
virtual void SetStereoFactor(const float &factor);
bool SetColorDiffuse(const CGUIInfoColor &color);
CPoint GetRenderPosition() const;
virtual float GetXPosition() const;
virtual float GetYPosition() const;
virtual float GetWidth() const;
virtual float GetHeight() const;
void MarkDirtyRegion();
/*! \brief return the render region in screen coordinates of this control
*/
const CRect &GetRenderRegion() const { return m_renderRegion; };
/*! \brief calculate the render region in parentcontrol coordinates of this control
Called during process to update m_renderRegion
*/
virtual CRect CalcRenderRegion() const;
/*! \brief Set actions to perform on navigation
\param actions ActionMap of actions
\sa SetNavigationAction
*/
typedef std::map<int, CGUIAction> ActionMap;
void SetActions(const ActionMap &actions);
/*! \brief Set actions to perform on navigation
Navigations are set if replace is true or if there is no previously set action
\param actionID id of the navigation action
\param action CGUIAction to set
\param replace Actions are set only if replace is true or there is no previously set action. Defaults to true
\sa SetNavigationActions
*/
void SetAction(int actionID, const CGUIAction &action, bool replace = true);
/*! \brief Get an action the control can be perform.
\param actionID The actionID to retrieve.
*/
CGUIAction GetAction(int actionID) const;
/*! \brief Start navigating in given direction.
*/
bool Navigate(int direction) const;
virtual void SetFocus(bool focus);
virtual void SetWidth(float width);
virtual void SetHeight(float height);
virtual void SetVisible(bool bVisible, bool setVisState = false);
void SetVisibleCondition(const std::string &expression, const std::string &allowHiddenFocus = "");
bool HasVisibleCondition() const { return m_visibleCondition != NULL; };
void SetEnableCondition(const std::string &expression);
virtual void UpdateVisibility(const CGUIListItem *item = NULL);
virtual void SetInitialVisibility();
virtual void SetEnabled(bool bEnable);
virtual void SetInvalid() { m_bInvalidated = true; };
virtual void SetPulseOnSelect(bool pulse) { m_pulseOnSelect = pulse; };
virtual std::string GetDescription() const { return ""; };
virtual std::string GetDescriptionByIndex(int index) const { return ""; };
void SetAnimations(const std::vector<CAnimation> &animations);
const std::vector<CAnimation> &GetAnimations() const { return m_animations; };
virtual void QueueAnimation(ANIMATION_TYPE anim);
virtual bool IsAnimating(ANIMATION_TYPE anim);
virtual bool HasAnimation(ANIMATION_TYPE anim);
CAnimation *GetAnimation(ANIMATION_TYPE type, bool checkConditions = true);
virtual void ResetAnimation(ANIMATION_TYPE type);
virtual void ResetAnimations();
// push information updates
virtual void UpdateInfo(const CGUIListItem *item = NULL) {};
virtual void SetPushUpdates(bool pushUpdates) { m_pushedUpdates = pushUpdates; };
virtual bool IsGroup() const { return false; };
virtual bool IsContainer() const { return false; };
virtual bool GetCondition(int condition, int data) const { return false; };
void SetParentControl(CGUIControl *control) { m_parentControl = control; };
CGUIControl *GetParentControl(void) const { return m_parentControl; };
virtual void SaveStates(std::vector<CControlState> &states);
enum GUICONTROLTYPES {
GUICONTROL_UNKNOWN,
GUICONTROL_BUTTON,
GUICONTROL_FADELABEL,
GUICONTROL_IMAGE,
GUICONTROL_BORDEREDIMAGE,
GUICONTROL_LABEL,
GUICONTROL_LISTGROUP,
GUICONTROL_PROGRESS,
GUICONTROL_RADIO,
GUICONTROL_RSS,
GUICONTROL_SLIDER,
GUICONTROL_SETTINGS_SLIDER,
GUICONTROL_SPIN,
GUICONTROL_SPINEX,
GUICONTROL_TEXTBOX,
GUICONTROL_TOGGLEBUTTON,
GUICONTROL_VIDEO,
GUICONTROL_MOVER,
GUICONTROL_RESIZE,
GUICONTROL_EDIT,
GUICONTROL_VISUALISATION,
GUICONTROL_RENDERADDON,
GUICONTROL_MULTI_IMAGE,
GUICONTROL_GROUP,
GUICONTROL_GROUPLIST,
GUICONTROL_SCROLLBAR,
GUICONTROL_LISTLABEL,
GUICONTROL_GAMECONTROLLER,
GUICONTAINER_LIST,
GUICONTAINER_WRAPLIST,
GUICONTAINER_FIXEDLIST,
GUICONTAINER_EPGGRID,
GUICONTAINER_PANEL
};
GUICONTROLTYPES GetControlType() const { return ControlType; }
enum GUIVISIBLE { HIDDEN = 0, DELAYED, VISIBLE };
enum GUISCROLLVALUE { FOCUS = 0, NEVER, ALWAYS };
#ifdef _DEBUG
virtual void DumpTextureUse() {};
#endif
protected:
/*!
\brief Return the coordinates of the top left of the control, in the control's parent coordinates
\return The top left coordinates of the control
*/
virtual CPoint GetPosition() const { return CPoint(GetXPosition(), GetYPosition()); };
/*! \brief Called when the mouse is over the control.
Default implementation selects the control.
\param point location of the mouse in transformed skin coordinates
\return true if handled, false otherwise.
*/
virtual bool OnMouseOver(const CPoint &point);
/*! \brief Test whether we can focus a control from a point on screen
\param point the location in vanilla skin coordinates from the upper left corner of the parent control.
\return true if the control can be focused from this location
\sa UnfocusFromPoint, HitRect
*/
virtual bool CanFocusFromPoint(const CPoint &point) const;
virtual bool UpdateColors();
virtual bool Animate(unsigned int currentTime);
virtual bool CheckAnimation(ANIMATION_TYPE animType);
void UpdateStates(ANIMATION_TYPE type, ANIMATION_PROCESS currentProcess, ANIMATION_STATE currentState);
bool SendWindowMessage(CGUIMessage &message) const;
// navigation and actions
ActionMap m_actions;
float m_posX;
float m_posY;
float m_height;
float m_width;
CRect m_hitRect;
color_t m_hitColor;
CGUIInfoColor m_diffuseColor;
int m_controlID;
int m_parentID;
bool m_bHasFocus;
bool m_bInvalidated;
bool m_bAllocated;
bool m_pulseOnSelect;
GUICONTROLTYPES ControlType;
CGUIControl *m_parentControl; // our parent control if we're part of a group
// visibility condition/state
INFO::InfoPtr m_visibleCondition;
GUIVISIBLE m_visible;
bool m_visibleFromSkinCondition;
bool m_forceHidden; // set from the code when a hidden operation is given - overrides m_visible
CGUIInfoBool m_allowHiddenFocus;
bool m_hasProcessed;
// enable/disable state
INFO::InfoPtr m_enableCondition;
bool m_enabled;
bool m_pushedUpdates;
// animation effects
std::vector<CAnimation> m_animations;
CPoint m_camera;
bool m_hasCamera;
float m_stereo;
TransformMatrix m_transform;
TransformMatrix m_cachedTransform; // Contains the absolute transform the control
bool m_controlIsDirty;
CRect m_renderRegion; // In screen coordinates
};
#endif
|
5036f3042acbb9bdd7277e48e76d16d3b61f49c2 | de32aa0978599502a4d93fb9f9b1149fcaad9ac8 | /MdzSocketClientSync.cpp | 434e4889b1de6c4d47515b6f1a4a724f0265b55b | [] | no_license | skynet29/mdz_wtk | d7a2ac5154385d3abb179964225511a3065072ad | 3c3b01f5afd4573636242b500aad0787a4df79b6 | refs/heads/master | 2020-04-29T07:33:59.900689 | 2019-03-16T10:33:04 | 2019-03-16T10:33:04 | 175,957,641 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,298 | cpp | MdzSocketClientSync.cpp | // MdzSocketClientSync.cpp: implementation of the MdzSocketClientSync class.
//
//////////////////////////////////////////////////////////////////////
#include "MdzSocketClientSync.h"
#include "MdzWindow.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
MdzSocketClientSync::MdzSocketClientSync()
{
SetOnDataReceived(MDZ_CBK1(MdzSocketClientSync, OnDataReceived));
SetOnConnectionClosed(MDZ_CBK1(MdzSocketClientSync, OnConnectionClosed));
bWaitingData = FALSE;
timer.SetOnTimeout(MDZ_CBK1(MdzSocketClientSync, OnTimeout));
}
MdzSocketClientSync::~MdzSocketClientSync()
{
}
void MdzSocketClientSync::OnDataReceived()
{
if (bWaitingData)
PostQuitMessage(K_STATUS_OK);
}
void MdzSocketClientSync::OnConnectionClosed()
{
if (bWaitingData)
PostQuitMessage(K_STATUS_CONNECTION_CLOSED);
}
void MdzSocketClientSync::OnTimeout()
{
if (bWaitingData)
PostQuitMessage(K_STATUS_TIMEOUT);
timer.Stop();
}
int MdzSocketClientSync::WaitForData(UINT iTimeout)
{
if (!IsConnected())
return K_STATUS_CONNECTION_CLOSED;
bWaitingData = TRUE;
timer.SetDelay(iTimeout);
timer.Start();
int status = MdzWindow::MessageLoop();
bWaitingData = FALSE;
return status;
}
|
2335b0907eb7c0b29f90d22a16f53ebaa66fc371 | 4906d1d25cd4ac8410ba070a82c574b23b7f340a | /138.sorting_by_allignment/split_over_2_parts.cpp | ee3999f51ee0e0e6d9122a979333e5c237d3e13e | [] | no_license | aligang/coursera_cpp | 0d4ae4a92819faebd3778979853542d738e48645 | 2996fdd2e16925f68d0cf3a8f071fb58a0d30ff0 | refs/heads/master | 2020-04-28T01:37:08.062273 | 2019-03-11T07:41:03 | 2019-03-11T07:41:03 | 174,863,445 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 704 | cpp | split_over_2_parts.cpp | template <typename RandomIt>
void MergeSort(RandomIt range_begin, RandomIt range_end){
if (distance(range_begin, range_end) < 2){
return;
}
auto it = next(
range_begin,
distance(range_begin,range_end)/2
);
vector<typename RandomIt::value_type> first_elements(
range_begin,
it
);
vector<typename RandomIt::value_type> last_elements(
it,
range_end
);
MergeSort(first_elements.begin(), first_elements.end());
MergeSort(last_elements.begin(), last_elements.end());
merge(
first_elements.begin(), first_elements.end(),
last_elements.begin(), last_elements.end(),
range_begin
);
} |
1170e95b8f9618e76db33cbb087d0e4dba231128 | 6213740f4b6798ace434fa5717bb6c24b1e8fdb7 | /AI/aieBootstrap-master/project2D/gameFSM.cpp | 3962eb64761f57486c1f26d5f42041c6b649f76e | [
"MIT"
] | permissive | zackslay3r/C---Projects | 4fb40ae3bc3e2bb38e1238822c0aed5585f10943 | 5e1bf2014dbfa4f74715f544f19a5886e679ea8e | refs/heads/master | 2021-01-21T15:53:27.311648 | 2017-08-13T11:54:17 | 2017-08-13T11:54:17 | 91,862,799 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,571 | cpp | gameFSM.cpp | #include "gameFSM.h"
#include "IGameState.h"
#
#include <list>
gameFSM::gameFSM()
{
}
gameFSM::~gameFSM()
{
}
void gameFSM::updateStates(float deltaTime)
{
// We are now going to update the active states based upon the the state itself, and will then update based on the command given (Register, push, pop)
processCommands();
// and then we are going to update the active states based on delta time.
/*for (auto iter = m_activeStates.begin(); iter != m_activeStates.end(); iter++)
{
(*iter)->update(deltaTime);
}*/
for (auto &iter : m_activeStates)
{
iter->update(deltaTime);
}
}
void gameFSM::registerState(int ID, IGameState * state)
{
ICommand command;
command.c_id = ID;
command.c_command = ECommand::REGISTER;
command.c_state = state;
m_commands.push_back(command);
}
void gameFSM::pushState(int ID)
{
ICommand command;
command.c_id = ID;
command.c_command = ECommand::PUSH;
command.c_state = nullptr;
m_commands.push_back(command);
}
void gameFSM::popState()
{
ICommand command;
command.c_command = ECommand::POP;
command.c_id = -1;
command.c_state = nullptr;
m_commands.push_back(command);
}
IGameState * gameFSM::getTopState()
{
if (m_activeStates.size() > 0)
{
// If we have states on the stack, the 'top' state will be the one at the back
return m_activeStates.back();
}
}
void gameFSM::processCommands()
{
for (auto &var : m_commands)
{
/* Since an iterator points to the memory location of each item in the list, we'll dereference this
to get the item itself and make the code easier to read*/
ICommand &command = var;
switch (command.c_command)
{
case ECommand::REGISTER:
{
proceesRegisterState(command.c_id, command.c_state);
break;
}
case ECommand::PUSH:
{
IGameState* temp = m_registeredStates[command.c_id];
processPushState(command.c_id);
break;
}
case ECommand::POP:
{
processPopState();
break;
}
}
}
// Clear the command queue after we're done so we don't re-execute old commands
m_commands.clear();
}
void gameFSM::proceesRegisterState(int ID, IGameState * state)
{
// assign the state to the id.
m_registeredStates.insert(std::pair<int, IGameState*> (ID, state));
}
void gameFSM::processPushState(int ID)
{
// if the iter is matched and its not the end of the container, delete it so that it can get replaced
m_activeStates.push_back(m_registeredStates[ID]);
amountOfActive++;
}
void gameFSM::processPopState()
{
if (m_activeStates.size() > 0)
{
m_activeStates.pop_back();
amountOfActive--;
}
}
|
0a631fd09c7f584811ba263a76dc436cbf4d387f | a40c45b73ce8e3b34698c45d836922b6b1c933e2 | /pat1/1037.cpp | 68a06162a588023ca759103c4de805c741d26fa0 | [] | no_license | hwngenius/PatInCpp | 688ed789db21a92aeb983816892160cc96552d9a | 4b0c19e97cb43b2b0b78f1af202bd1b106c6c1fb | refs/heads/master | 2020-08-06T01:23:24.716907 | 2019-10-08T14:31:08 | 2019-10-08T14:31:08 | 212,053,049 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 493 | cpp | 1037.cpp | #include <cstdio>
int func(int a, int b, int c)
{
return a * 17 * 29 + b * 29 + c;
}
int main()
{
int a, b, c, sum1, sum2;
scanf("%d.%d.%d", &a, &b, &c);
sum1 = func(a, b, c);
scanf("%d.%d.%d", &a, &b, &c);
sum2 = func(a, b, c);
int sum = sum2 - sum1;
if (sum < 0)
{
printf("-");
sum = -sum;
}
printf("%d.", sum / (29 * 17));
sum %= (29 * 17);
printf("%d.", sum / 29);
sum %= 29;
printf("%d", sum);
return 0;
} |
b03d9dc5f7f8839fa3c8c7f78c1f7ed800ee2646 | dc8fbbca7f943846397d95c11ea662e9d0d203ae | /cpp/tabele.cpp | b0d758206fd79713968faf33d3af1e3a5052e9d8 | [] | no_license | Wiktor0016/gitrepo1 | 01338813b7a442535924a0d516661e7bf040eced | 13d01d215aeb769b0fc7a5cbdd60a7d15b7169f5 | refs/heads/master | 2021-09-07T21:09:54.502410 | 2018-03-01T07:43:49 | 2018-03-01T07:43:49 | 103,923,430 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,024 | cpp | tabele.cpp | /*
* tabele.cpp
*/
#include <iostream>
using namespace std;
void ile5(int tab[], int ile)
{
int i;
int licznik = 0;
int parzyste = 0;
for (i = 1; i < ile; i++)
{
if ( tab[i] % 5 == 0 )
licznik5++;
if (tab[i] % 2 == 0)
parzyste++;
}
cout << "Ilosc dzielnikow 5: " << licznik5 << endl;
}
void pobierzLiczby(int tab[], int ile)
{
int i = 0;
for (i = 0; i < ile; i++)
{
cout << "Podaj liczbe: ";
cin >> tab[i];
}
}
void najmniejsza(int tab[], int ile)
{
int min = tab[0];
int i = 0;
for (i = 1; i < ile; i++)
{
if (min > tab[i])
min = tab[i];
cout << "Najmniesza liczba:" << min << endl;
}
}
int main(int argc, char **argv)
{
int rozmiar = 0;
cout << "Ile liczb podasz:";
cin >> rozmiar;
int liczby[rozmiar];
pobierzLiczby(liczby, rozmiar);
najmniejsza(liczby, rozmiar);
ile5(liczby, rozmiar);
return 0;
}
|
5e09c8ee73fa29f9bd18a1c4e023430078c0996b | 5a8a21f1b241d13c8294312700728a913e4e9900 | /C++/234_PalindromeLinkedList.cpp | c95116be402a0f5093ac538ca284f60b376a1aab | [] | no_license | iamzay/leetcode | 251d2b4fd5a9be1d3dbb34a0807b23f73938e2df | c1e72b6a78949f01822feeac6db24e793d5530d6 | refs/heads/master | 2020-12-30T13:29:14.063837 | 2018-10-15T03:10:56 | 2018-10-15T03:10:56 | 91,225,387 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,301 | cpp | 234_PalindromeLinkedList.cpp | #include <iostream>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
class Solution {
public:
bool isPalindrome(ListNode* head) {
if (head == NULL || head->next == NULL) {
return true;
}
auto slow = head,fast = head;
while(fast != NULL && fast->next != NULL) {
fast = fast->next->next;
slow = slow->next;
}
// odd case
if (fast != NULL) {
slow = slow->next;
}
ListNode *lst2 = reverse(slow);
ListNode *lst1 = head;
bool isPalindrome = true;
while (lst2 != NULL) {
if (lst1->val != lst2->val) {
isPalindrome = false;
break;
}
lst1 = lst1->next;
lst2 = lst2->next;
}
return isPalindrome;
}
private:
ListNode *reverse(ListNode *head) {
if (head == NULL || head->next == NULL) {
return head;
}
ListNode *prev = NULL;
ListNode *cur = head;
while(cur != NULL) {
ListNode *tmp = cur->next;
cur->next = prev;
prev = cur;
cur = tmp;
}
return prev;
}
}; |
394fd5d7ddd541e049a2e3f365a7ad2a31195e92 | 9f72bd2b7c7dd68fa61533435046b3d9c2404193 | /data_structure_class/graph_component.cpp | 87bca1239f229af937476e9922dff6392bca5166 | [] | no_license | yujing-kim/algorithm_class | 236108d0b8c01e5addb8dc3e7cd1c98ceafe78dd | 1fb4c6505c46598498c738c51dc0adecf2644810 | refs/heads/master | 2022-11-25T23:07:32.408638 | 2020-07-30T14:00:39 | 2020-07-30T14:00:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,223 | cpp | graph_component.cpp | /*
과제 4 - 연결요소 세기
2016125086 김유진
utf-8 c++ MAC
*/
#include <iostream>
#include <vector>
using namespace std;
int n, m; //n:node count , m: edge count
int a,b; //input node
vector<int> graph[101];
int check[101]; //true or false
int component;
void input(){
cin >> n >> m;
for( int i = 0 ; i < m ; i++){
cin >> a >> b; //input edge
if( (a > n)|| (b > n) || (a < 1) || (b < 1) ){
cout << "input node error!" << endl;
return;
}
//push node
graph[a].push_back(b);
graph[b].push_back(a);
}
}
void dfs(int index){
check[index] = 1; //탐색했음을 표시
for(int i = 0 ; i < graph[index].size() ; i++){
int temp = graph[index][i];
if(check[temp] == 0){
dfs(temp);
}
}
}
void solve(){
for(int i = 1 ; i <= n ; i ++){
if(check[i] == 0){ //탐색 안했으면
dfs(i); //dfs
component++; //연결요소 증가
}
}
}
//print answer
void output(){
cout << component << endl;
}
int main(){
input();
solve();
output();
return 0;
}
|
78d70ef9a324efe8cd9fc1fcb2b4d61c75a5f866 | 1e7ecf7cb9ac05b69b39dbafe4231f826ffb3966 | /Test/TestServer.h | 326e6bbb8cb773cf5308df9c5e2678952b8c8018 | [] | no_license | Gussy/qtwebsocket | c795b671172f0d7c7d7d4c217f9b9629e94f2efd | a92c429ca64462a7cc6287fc13297dcc5d8b2526 | refs/heads/master | 2016-08-04T20:46:46.431332 | 2012-08-23T17:44:31 | 2012-08-23T17:44:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 491 | h | TestServer.h | #ifndef TESTSERVER_H
#define TESTSERVER_H
#include <QObject>
#include <QByteArray>
#include <QList>
#include "QWsSocket.h"
class QWsServer;
class QWsSocket;
class TestServer : public QObject
{
Q_OBJECT
public:
TestServer();
~TestServer();
public slots:
void onClientConnection();
void onDataReceived(const QWsSocket::SocketMessage &message);
void onPong(quint64 elapsedTime);
void onClientDisconnection();
private:
QWsServer * server;
QList<QWsSocket*> clients;
};
#endif
|
954a6097b09beacb84bc34eaaafb5f24f490bcc6 | 125ba4d5f464c00fb2c8131bf6e04954e45fc0c0 | /set/operations.h | 37d2696bfed19eb6c9bdae2516a6588bff5c5f0e | [] | no_license | mariolamacchia/algorithms-and-data-structures | 95a1ffe45809036a24e49b3fae8455ffbdbeda06 | 778022fd39dda6f147d9771527374197bd71cf33 | refs/heads/master | 2021-01-02T09:38:51.051937 | 2015-01-19T19:39:48 | 2015-01-19T19:39:48 | 29,060,244 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,027 | h | operations.h | #ifndef _SET_OPERATIONS_H
#define _SET_OPERATIONS_H
#include "set.h"
template <class T>
Set<T>* sum(Set<T>* s1, Set<T>* s2)
{
Set<T>* s = new Set<T>;
typename Set<T>::cell n = s1->getFirst();
while (!s1->isEndOfSet(n))
{
s->insert(s1->read(n));
n = s1->getNext(n);
}
n = s2->getFirst();
while (!s2->isEndOfSet(n))
{
s->insert(s2->read(n));
n = s2->getNext(n);
}
return s;
}
template <class T>
Set<T>* intersection(Set<T>* s1, Set<T>* s2)
{
Set<T>* s = new Set<T>;
typename Set<T>::cell n = s1->getFirst();
while (!s1->isEndOfSet(n))
{
if (s2->has(s1->read(n))) s->insert(s1->read(n));
n = s1->getNext(n);
}
return s;
}
template <class T>
Set<T>* difference(Set<T>* s1, Set<T>* s2)
{
Set<T>* s = new Set<T>;
typename Set<T>::cell n = s1->getFirst();
while (!s1->isEndOfSet(n))
{
if (!s2->has(s1->read(n))) s->insert(s1->read(n));
n = s1->getNext(n);
}
return s;
}
#endif
|
62c81f3f60a8e60659ebd2037816170df979323a | e73bb04ed679a000c68a79694dae61f6c1b1a5e2 | /worker/Work.h | 3953179bc5256a345f120cde1cc3a5ed757cf068 | [] | no_license | Neomer/p2p | 592199bb8b168d60ce2531c9891229162a2b95a2 | 3de77efd9b7bfc7d3ccf5bcc72a75f13f282c816 | refs/heads/master | 2021-07-24T00:58:18.503774 | 2017-11-02T13:26:11 | 2017-11-02T13:26:11 | 105,764,668 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 376 | h | Work.h | #ifndef WORK_H
#define WORK_H
#include <QDateTime>
#include <blockchain/Block.h>
class Work
{
public:
Work(Block *block, Hash goal);
Work(const Work &other);
QDateTime createDateTime() { return _createDateTime; }
Hash goal() { return _goal; }
Block *block() { return _block; }
private:
QDateTime _createDateTime;
Hash _goal;
Block *_block;
};
#endif // WORK_H
|
032e68963986e7f1bada1800e3e91333de5221ed | fd7d1350eefac8a9bbd952568f074284663f2794 | /dds/InfoRepo/ArrDelAdapter.h | bccd58cc19e76826d2a4fb3e10c7df75c187f386 | [
"MIT"
] | permissive | binary42/OCI | 4ceb7c4ed2150b4edd0496b2a06d80f623a71a53 | 08191bfe4899f535ff99637d019734ed044f479d | refs/heads/master | 2020-06-02T08:58:51.021571 | 2015-09-06T03:25:05 | 2015-09-06T03:25:05 | 41,980,019 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 643 | h | ArrDelAdapter.h | /*
* $Id: ArrDelAdapter.h 4223 2011-02-04 23:01:46Z mitza $
*
*
* Distributed under the OpenDDS License.
* See: http://www.opendds.org/license.html
*/
#ifndef ARR_DEL_ADAPTER
#define ARR_DEL_ADAPTER
/// A auto_ptr implementation to handle
/// array memory management.
template <typename T>
class ArrDelAdapter {
public:
ArrDelAdapter(T *p) : p_(p) { }
ArrDelAdapter(const ArrDelAdapter<T>& var)
: p_(var.p_) {
// copier gets sole handle to ptr
const_cast<ArrDelAdapter<T>&>(var).p_ = 0;
}
~ArrDelAdapter() {
delete [] p_;
}
// operators like ->, *, etc...
private:
T* p_;
};
#endif /* ARR_DEL_ADAPTER */
|
9dc625c24a59247510dc56f03d0253c109d991c5 | f9a200888087f29fe61bc5876446e2110b2f5e88 | /Solutions/044.翻转单词顺序列/Solution1.cpp | 2ca07642dbeb91259d3d33ec31e9fd4bcf75101c | [] | no_license | zouwx2cs/JianZhiOffer | 98f0d37cf039b6fd498dc20fe282215c29a30fdf | b9c1b31fc5deba23d5a62a36ee61aa11030c6e4f | refs/heads/master | 2020-04-12T09:46:42.191510 | 2019-03-26T04:16:38 | 2019-03-26T04:16:38 | 162,407,647 | 6 | 2 | null | 2019-02-02T03:18:11 | 2018-12-19T08:37:32 | C++ | UTF-8 | C++ | false | false | 634 | cpp | Solution1.cpp | class Solution {
public:
string ReverseSentence(string str) {
stack<string> sta ;
string s = "" ;
for (char ch: str)
{
if (' ' == ch)
{
if ("" != s)
{
sta.push(s) ;
s = "" ;
}
sta.push(" ") ;
}
else
s += ch ;
}
if ("" != s)
sta.push(s) ;
s = "" ;
while (!sta.empty())
{
s += sta.top() ;
sta.pop() ;
}
return s ;
}
}; |
36c78df6c419c6b74c3ec6d5c4b1a527440c810e | 5d45b39fc317f312cc76927eb685878b9d86f108 | /code/搜索/Eightpuzzle(双向bfs).cpp | 596bcd4d7085ff25a625925b76c3d2714b347d5a | [] | no_license | Chhokmah0/Uva | 9beb7ed0c949f77708b1ce4d8bf7ef428925c8b4 | ef4865757e108bdd9ce6c1579a0c90ab4e2ab4ee | refs/heads/master | 2020-12-28T15:32:42.659729 | 2020-05-07T14:20:06 | 2020-05-07T14:20:06 | 237,730,169 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,462 | cpp | Eightpuzzle(双向bfs).cpp | // 电子科技大学Lutece - 414
#include <cstdio>
#include <cstring>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <vector>
using namespace std;
map<int, int> vis, lvis; //从左向右,从右向左的遍历过的状态
int ans[9];
const int dx[] = {1, -1, 0, 0}, dy[] = {0, 0, 1, -1};
int times = 0;
bool flag = false;
int encode(int list[9]) {
int code = 0;
for (int i = 0; i < 9; i++) {
code = code * 10 + list[i];
}
return code;
}
//会返回x的位置
int uncode(int code) {
int p;
for (int i = 8; i >= 0; i--) {
ans[i] = code % 10;
if (!ans[i]) {
p = i;
}
code /= 10;
}
return p;
}
//用一个函数来减少代码量
void move(queue<int>& q, map<int, int>& self, map<int, int>& other) {
//提取出头数据
int temp[9];
int code = q.front();
q.pop();
//判断是否和结尾相连
if (other.count(code)) {
flag = true;
times = self[code] + other[code];
return;
}
int cnt = self[code];
int p = uncode(code);
int x = p / 3, y = p % 3;
//扩展
for (int i = 0; i < 4; i++) {
memcpy(temp, ans, sizeof(ans));
int newx = x + dx[i], newy = y + dy[i];
if (0 <= newx && newx < 3 && 0 <= newy && newy < 3) {
int newp = newx * 3 + newy;
swap(temp[p], temp[newp]);
int tcode = encode(temp);
if (!self.count(tcode)) {//去重
self[tcode] = cnt + 1;
q.push(tcode);
}
}
}
}
void bbfs() {
queue<int> q, p;
int code0 = encode(ans);
q.push(code0);
vis[code0] = 0;
p.push(123456780);
lvis[123456780] = 0;
while (!q.empty() || !p.empty()) {
if (!q.empty()) move(q, vis, lvis);
if (flag) break;
if (!p.empty()) move(p, lvis, vis);
if (flag) break;
}
}
bool input(){
vis.clear();lvis.clear();
times = 0;
flag = false;
for (int i = 0; i < 9; i++) {
char ch[2];
if(!(cin >> ch)){
return false;
}
if (ch[0] == 'x') {
ans[i] = 0;
} else {
ans[i] = ch[0] - '0';
}
}
return true;
}
int main() {
while(input()){
bbfs();
if (flag) {
cout << times << endl;
} else {
cout << "unsolvable" << endl;
}
}
}
|
4bb3049fd6920bf11b8f44eb941eb065cada6d02 | ad378a3d14b53b0cda7799ec3a7ac5254d577621 | /include/test/var/Has.h | 440ff84caa50460e0c90de8a532ac96c0489a35d | [
"MIT"
] | permissive | AnantaYudica/basic | 2f537a3eda8f108ed79a8594c87c160beb0b1984 | dcbf8c9eebb42a4e6a66b3c56ebc3a7e30626950 | refs/heads/master | 2021-07-10T01:50:46.784042 | 2020-06-17T08:21:37 | 2020-06-17T08:21:37 | 139,540,770 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,246 | h | Has.h | #ifndef BASIC_TEST_VAR_HAS_H_
#define BASIC_TEST_VAR_HAS_H_
#include "../Variable.h"
#include "Definition.h"
#include <utility>
#include <type_traits>
namespace basic
{
namespace test
{
namespace var
{
namespace has
{
template<typename TVar>
constexpr auto LValue(int) -> decltype(
static_cast<typename TVar::GetType(TVar::*)()>(&TVar::Get),
std::true_type());
template<typename TVar>
constexpr std::false_type LValue(...);
template<typename TVar>
constexpr auto RValue(int) -> decltype(
static_cast<typename TVar::ConstGetType(TVar::*)() const>(&TVar::Get),
std::true_type());
template<typename TVar>
constexpr std::false_type RValue(...);
} //!has
template<std::size_t I, typename TVar>
class Has
{};
template<std::size_t I, typename... TArgs>
class Has<I, test::Variable<TArgs...>>
{
private:
typedef typename var::Definition<I,
test::Variable<TArgs...>>::Type VariableType;
public:
static constexpr bool LValue = decltype(var::has::
LValue<VariableType>(0))::value;
static constexpr bool RValue = decltype(var::has::
RValue<VariableType>(0))::value;
static constexpr bool Value = LValue || RValue;
};
} //!var
} //!test
} //!basic
#endif //!BASIC_TEST_VAR_HAS_H_ |
6c6dce9afe441ec969ba4455fa887da2cd991ef6 | 8e9f2e717b5c396a8388369b4daaa1d4a4b266f0 | /GHGrafos/ghlistaadjacencia.cpp | 367ea05ad3f4c3920b1c78cf027cb7fb3c16b065 | [] | no_license | guilhermelou/GHGrafos | ee77c40653f59822ffe9a5fb522e5b0091a182d6 | e909246ffaffaa5391df80dfb0777ec0cabcbe49 | refs/heads/master | 2020-06-04T21:31:26.112424 | 2020-05-05T18:06:58 | 2020-05-05T18:06:58 | 24,478,978 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 118 | cpp | ghlistaadjacencia.cpp | #include "ghlistaadjacencia.h"
GHListaAdjacencia::GHListaAdjacencia(QObject *parent) :
QObject(parent)
{
}
|
788da0d168775390956caddaa8306a77cb9af8ef | ae0228e951a5676344ae15aa1939d2c1bb8a623d | /Untitled1.cpp | 29e206785a09987850ec2fd97856f5c9cf9ebe3c | [] | no_license | NitinGupta2633/college-assignment | b6eeb81e1c9bbbe07cd378f4b0ede8bbdd80cda4 | c2c747263248669cd7d8815629f38cdf73ea02c5 | refs/heads/master | 2023-01-05T11:33:41.332360 | 2020-11-01T11:37:57 | 2020-11-01T11:37:57 | 301,121,865 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 531 | cpp | Untitled1.cpp | #include<iostream>
using namespace std;
int** create(int a, int b, int arr[][4])
{
int i,j;
int count=0;
cout<<"Enter element rowise"<<endl;
for(i=0;i<a;i++)
{
for(j=0;j<b;j++)
{
cout<<"Enter element of index ["<<i<<","<<j<<"]"<<endl;
cin>>arr[i][j];
}
}
int A[count][3];
for(i=0;i<a;i++)
{
for(j=0;j<b;j++)
{
if(arr[i][j]!=0)
{
int n=0;
A[n][0]=i;
A[n][1]=j;
A[n][2]=arr[i][j];
count++;
n++;
}
}
}
return A;
}
int main()
{
int arr[5][4];
arr=create(5,4,arr);
}
|
ecd54bae7f326009fbe6d63a1393608d133476d5 | d278fd3c504216d3af70b34fe5e66456cc09ca77 | /src/Input.cpp | b91969fdc6a9cf7fe2388e43e8a6c2919636ab88 | [] | no_license | fundamental-programmers/YAGE | d7ae7a8a52abcb7aed22c2668c22985f9619c25a | e668ccd370be5b7d88dec6dc87d2fbf3c1e2c581 | refs/heads/master | 2020-05-03T01:43:50.692462 | 2015-03-09T12:16:10 | 2015-03-09T12:16:10 | 30,233,785 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 808 | cpp | Input.cpp | #include "Input.h"
#include "GameWindow.h"
BEGIN_YAGE_NAMESPACE
GameWindow * Input::sWindow = NULL;
void Input::Initialize( GameWindow * window )
{
sWindow = window;
glfwSetKeyCallback( sWindow->_GetWindow(), &Input::OnKey );
}
bool Input::IsKeyDown( KeyCode keyCode )
{
int state = glfwGetKey( sWindow->_GetWindow(), keyCode );
return state == GLFW_PRESS;
}
vec2 Input::GetMousePosition()
{
double x = 0.0, y = 0.0;
glfwGetCursorPos( sWindow->_GetWindow(), &x, &y );
return vec2( static_cast<float>( x ), static_cast<float>( y ) );
}
bool Input::IsMouseButtonDown( int button )
{
int state = glfwGetMouseButton( sWindow->_GetWindow(), button );
return state == GLFW_PRESS;
}
void Input::OnKey( GLFWwindow * window, int key, int scancode, int action, int mods )
{
}
END_YAGE_NAMESPACE |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.