blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
aeec52c24ce266864dabeea564db680a9b88bee9
7d428c0c6dd7634fbf4769575f8344ca353b2e48
/src/data/FileMetaDataManager.cpp
2a9c4c7e24f0af5582f38920ec784ab58abccdc7
[ "Apache-2.0" ]
permissive
jimhuaang/qsfs-boost
ce63089248d9a0fc1ecf5f19645403d9fceeda34
67b69a4e376f5dc7b2744cd5af1d0655d6c4d981
refs/heads/master
2021-09-10T11:35:51.179932
2018-03-25T19:01:14
2018-03-25T19:15:26
113,832,991
0
0
null
null
null
null
UTF-8
C++
false
false
10,818
cpp
// +------------------------------------------------------------------------- // | Copyright (C) 2017 Yunify, Inc. // +------------------------------------------------------------------------- // | Licensed under the Apache License, Version 2.0 (the "License"); // | You may not use this work except in compliance with the License. // | You may obtain a copy of the License in the LICENSE file, or 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. // +------------------------------------------------------------------------- #include "data/FileMetaDataManager.h" #include <string> #include <utility> #include <vector> #include "boost/exception/to_string.hpp" #include "boost/foreach.hpp" #include "boost/shared_ptr.hpp" #include "boost/thread/locks.hpp" #include "base/LogMacros.h" #include "base/Size.h" #include "base/StringUtils.h" #include "base/Utils.h" #include "data/DirectoryTree.h" #include "configure/Options.h" namespace QS { namespace Data { using boost::lock_guard; using boost::recursive_mutex; using boost::shared_ptr; using boost::to_string; using QS::StringUtils::FormatPath; using QS::Utils::GetDirName; using QS::Utils::IsRootDirectory; using std::pair; using std::string; // -------------------------------------------------------------------------- MetaDataListConstIterator FileMetaDataManager::Get( const string &filePath) const { lock_guard<recursive_mutex> lock(m_mutex); return const_cast<FileMetaDataManager *>(this)->Get(filePath); } // -------------------------------------------------------------------------- MetaDataListIterator FileMetaDataManager::Get(const string &filePath) { lock_guard<recursive_mutex> lock(m_mutex); MetaDataListIterator pos = m_metaDatas.end(); FileIdToMetaDataMapIterator it = m_map.find(filePath); if (it != m_map.end()) { pos = UnguardedMakeMetaDataMostRecentlyUsed(it->second); } else { DebugInfo("File not exist " + FormatPath(filePath)); } return pos; } // -------------------------------------------------------------------------- MetaDataListConstIterator FileMetaDataManager::Begin() const { lock_guard<recursive_mutex> lock(m_mutex); return m_metaDatas.begin(); } // -------------------------------------------------------------------------- MetaDataListIterator FileMetaDataManager::Begin() { lock_guard<recursive_mutex> lock(m_mutex); return m_metaDatas.begin(); } // -------------------------------------------------------------------------- MetaDataListConstIterator FileMetaDataManager::End() const { lock_guard<recursive_mutex> lock(m_mutex); return m_metaDatas.end(); } // -------------------------------------------------------------------------- MetaDataListIterator FileMetaDataManager::End() { lock_guard<recursive_mutex> lock(m_mutex); return m_metaDatas.end(); } // -------------------------------------------------------------------------- bool FileMetaDataManager::Has(const string &filePath) const { lock_guard<recursive_mutex> lock(m_mutex); return this->Get(filePath) != m_metaDatas.end(); } // -------------------------------------------------------------------------- bool FileMetaDataManager::HasFreeSpace(size_t needCount) const { lock_guard<recursive_mutex> lock(m_mutex); return m_metaDatas.size() + needCount <= GetMaxCount(); } // -------------------------------------------------------------------------- MetaDataListIterator FileMetaDataManager::AddNoLock( const shared_ptr<FileMetaData> &fileMetaData) { const string &filePath = fileMetaData->GetFilePath(); FileIdToMetaDataMapIterator it = m_map.find(filePath); if (it == m_map.end()) { // not exist in manager if (!HasFreeSpaceNoLock(1)) { bool success = FreeNoLock(1, filePath); if (!success) { m_maxCount += static_cast<size_t>(m_maxCount / 5); Warning("Enlarge max stat to " + to_string(m_maxCount)); } } m_metaDatas.push_front(std::make_pair(filePath, fileMetaData)); if (m_metaDatas.begin()->first == filePath) { // insert sucessfully pair<FileIdToMetaDataMapIterator, bool> res = m_map.emplace(filePath, m_metaDatas.begin()); if(res.second) { return m_metaDatas.begin(); } else { DebugWarning("Fail to add file "+ FormatPath(filePath)); return m_metaDatas.end(); } } else { DebugWarning("Fail to add file " + FormatPath(filePath)); return m_metaDatas.end(); } } else { // exist already, update it MetaDataListIterator pos = UnguardedMakeMetaDataMostRecentlyUsed(it->second); pos->second = fileMetaData; return pos; } } // -------------------------------------------------------------------------- MetaDataListIterator FileMetaDataManager::Add( const shared_ptr<FileMetaData> &fileMetaData) { lock_guard<recursive_mutex> lock(m_mutex); return AddNoLock(fileMetaData); } // -------------------------------------------------------------------------- MetaDataListIterator FileMetaDataManager::Add( const std::vector<shared_ptr<FileMetaData> > &fileMetaDatas) { lock_guard<recursive_mutex> lock(m_mutex); MetaDataListIterator pos = m_metaDatas.end(); BOOST_FOREACH(const shared_ptr<FileMetaData> &meta, fileMetaDatas) { pos = AddNoLock(meta); if (pos == m_metaDatas.end()) break; // if fail to add an item } return pos; } // -------------------------------------------------------------------------- MetaDataListIterator FileMetaDataManager::Erase(const string &filePath) { lock_guard<recursive_mutex> lock(m_mutex); MetaDataListIterator next = m_metaDatas.end(); FileIdToMetaDataMapIterator it = m_map.find(filePath); if (it != m_map.end()) { next = m_metaDatas.erase(it->second); m_map.erase(it); } else { DebugWarning("File not exist, no remove " + FormatPath(filePath)); } return next; } // -------------------------------------------------------------------------- void FileMetaDataManager::Clear() { lock_guard<recursive_mutex> lock(m_mutex); m_map.clear(); m_metaDatas.clear(); } // -------------------------------------------------------------------------- void FileMetaDataManager::Rename(const string &oldFilePath, const string &newFilePath) { if (oldFilePath == newFilePath) { // Disable following info // DebugInfo("File exist, no rename" + FormatPath(newFilePath) ); return; } lock_guard<recursive_mutex> lock(m_mutex); if (m_map.find(newFilePath) != m_map.end()) { DebugWarning("File exist, no rename " + FormatPath(oldFilePath, newFilePath)); return; } FileIdToMetaDataMapIterator it = m_map.find(oldFilePath); if (it != m_map.end()) { it->second->first = newFilePath; it->second->second->m_filePath = newFilePath; MetaDataListIterator pos = UnguardedMakeMetaDataMostRecentlyUsed(it->second); pair<FileIdToMetaDataMapIterator, bool> res = m_map.emplace(newFilePath, pos); if (!res.second) { DebugWarning("Fail to rename " + FormatPath(oldFilePath, newFilePath)); } m_map.erase(it); } else { DebugWarning("File not exist, no rename " + FormatPath(oldFilePath)); } } // -------------------------------------------------------------------------- void FileMetaDataManager::SetDirectoryTree(QS::Data::DirectoryTree *tree) { lock_guard<recursive_mutex> lock(m_mutex); m_dirTree = tree; } // -------------------------------------------------------------------------- MetaDataListIterator FileMetaDataManager::UnguardedMakeMetaDataMostRecentlyUsed( MetaDataListIterator pos) { m_metaDatas.splice(m_metaDatas.begin(), m_metaDatas, pos); // no iterators or references become invalidated, so no need to update m_map. return m_metaDatas.begin(); } // -------------------------------------------------------------------------- bool FileMetaDataManager::HasFreeSpaceNoLock(size_t needCount) const { return m_metaDatas.size() + needCount <= GetMaxCount(); } // -------------------------------------------------------------------------- bool FileMetaDataManager::FreeNoLock(size_t needCount, string fileUnfreeable) { if (needCount > GetMaxCount()) { DebugError("Try to free file meta data manager of " + to_string(needCount) + " items which surpass the maximum file meta data count (" + to_string(GetMaxCount()) + "). Do nothing"); return false; } if (HasFreeSpaceNoLock(needCount)) { // DebugInfo("Try to free file meta data manager of " + to_string(needCount) // + " items while free space is still availabe. Go on"); return true; } assert(!m_metaDatas.empty()); size_t freedCount = 0; // free all in once MetaDataList::reverse_iterator it = m_metaDatas.rbegin(); while (it !=m_metaDatas.rend() && !HasFreeSpaceNoLock(needCount)) { string fileId = it->first; if (IsRootDirectory(fileId)) { // cannot free root ++it; continue; } if (it->second) { if (it->second->IsFileOpen() || it->second->IsNeedUpload()) { ++it; continue; } if(fileId[fileId.size() - 1] == '/') { // do not free dir ++it; continue; } if (fileId == fileUnfreeable) { ++it; continue; } if(GetDirName(fileId) == GetDirName(fileUnfreeable)) { ++it; continue; } } else { DebugWarning("file metadata null" + FormatPath(fileId)); } DebugInfo("Free file " + FormatPath(fileId)); // Must invoke callback to update directory tree before erasing, // as directory node depend on the file meta data if (m_dirTree) { m_dirTree->Remove(fileId); } // Node destructor will inovke FileMetaDataManger::Erase, // so double checking before earsing file meta FileIdToMetaDataMapIterator p = m_map.find(fileId); if(p != m_map.end()) { m_metaDatas.erase(p->second); m_map.erase(p); } ++freedCount; } if (HasFreeSpaceNoLock(needCount)) { return true; } else { Warning("Fail to free " + to_string(needCount) + " items for file " + FormatPath(fileUnfreeable)); return false; } } // -------------------------------------------------------------------------- FileMetaDataManager::FileMetaDataManager() { m_maxCount = static_cast<size_t>( QS::Configure::Options::Instance().GetMaxStatCountInK() * QS::Size::K1); m_dirTree = NULL; } } // namespace Data } // namespace QS
[ "jimhuang@yunify.com" ]
jimhuang@yunify.com
3df35ac09faaa5f60c68c044364fbf4c52d2dabb
5531368b3bf3a99e66130459c771767132673a29
/Depressia/io/skillloader.cpp
7eda07918362bf352ea037d0e995662579d3be87
[]
no_license
Emadon13/RPGQuest
1e7673c98888df9f45e26a31d542682bd715ecd0
ead21644164b8e4a1cf8f7a29c9e66ddeb857f51
refs/heads/master
2020-04-01T20:35:10.900281
2019-01-08T00:10:23
2019-01-08T00:10:23
153,610,956
0
0
null
null
null
null
UTF-8
C++
false
false
2,737
cpp
#include "skillloader.h" using namespace std; SkillLoader::SkillLoader() { } Skill* SkillLoader::generate() { return new Skill(); } Skill* SkillLoader::generate(string path) { ifstream file(path); string name, text, sprite, mpc, skill, ra, co, rng, od, buffAtt, buffDef, buffSpd; if(file) { getline(file, name); getline(file, text); getline(file, sprite); getline(file, mpc); getline(file,rng); getline(file, skill); if(skill == "attack") { getline(file, co); return new Attack(name, text, sprite, int(stoi(mpc)), SkillLoader::compareRange(rng), float(stoi(co))); } else if(skill == "recover") { getline(file, co); getline(file, od); if(od=="reborn") return new Recover(name, text, sprite, int(stoi(mpc)), reborn, float(stoi(co))); else return new Recover(name, text, sprite, int(stoi(mpc)), SkillLoader::compareRange(rng), float(stoi(co))); } else if(skill == "buff") { getline(file, buffAtt); getline(file, buffDef); getline(file, buffSpd); return new Buff(name, text, sprite, int(stoi(mpc)), SkillLoader::compareRange(rng), SkillLoader::compareWayToBuff(buffAtt), SkillLoader::compareWayToBuff(buffDef), SkillLoader::compareWayToBuff(buffSpd)); } else { cout << "ERREUR : type de skill '" << skill << "' non reconnu" << endl; return new Attack(); } } else { cout << "ERREUR : fichier de sort " << path << " non trouvé "; return new Attack(); } } Range SkillLoader::compareRange(string range) { if (range == "self") return self; else if (range == "one_ally") return one_ally; else if (range == "one_enemy") return one_enemy; else if (range == "group_allies") return group_allies; else if (range == "group_enemies") return group_enemies; else if (range == "all_entities") return all_entities; else if (range == "several") return several; else { cout << "ERREUR : range inconnu" << endl; return one_enemy; } } WayToBuff SkillLoader::compareWayToBuff(string wtb) { if (wtb == "noBuff") return noBuff; else if (wtb == "buffUp") return buffUp; else if (wtb == "buffDown") return buffDown; else { cout << "ERREUR : wtb inconnu" << wtb << endl; return noBuff; } }
[ "38349700+Emadon13@users.noreply.github.com" ]
38349700+Emadon13@users.noreply.github.com
567f30453a453a8308b95dbc4f114a9fbadf583e
961714d4298245d9c762e59c716c070643af2213
/ThirdParty-mod/java2cpp/android/content/pm/InstrumentationInfo.hpp
e7ae5b842bf4bc97cf0bb08205e0e5d50a41879b
[ "MIT" ]
permissive
blockspacer/HQEngine
b072ff13d2c1373816b40c29edbe4b869b4c69b1
8125b290afa7c62db6cc6eac14e964d8138c7fd0
refs/heads/master
2023-04-22T06:11:44.953694
2018-10-02T15:24:43
2018-10-02T15:24:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,938
hpp
/*================================================================================ code generated by: java2cpp author: Zoran Angelov, mailto://baldzar@gmail.com class: android.content.pm.InstrumentationInfo ================================================================================*/ #ifndef J2CPP_INCLUDE_IMPLEMENTATION #ifndef J2CPP_ANDROID_CONTENT_PM_INSTRUMENTATIONINFO_HPP_DECL #define J2CPP_ANDROID_CONTENT_PM_INSTRUMENTATIONINFO_HPP_DECL namespace j2cpp { namespace java { namespace lang { class String; } } } namespace j2cpp { namespace android { namespace content { namespace pm { class PackageItemInfo; } } } } namespace j2cpp { namespace android { namespace os { class Parcel; } } } namespace j2cpp { namespace android { namespace os { class Parcelable; } } } namespace j2cpp { namespace android { namespace os { namespace Parcelable_ { class Creator; } } } } #include <android/content/pm/PackageItemInfo.hpp> #include <android/os/Parcel.hpp> #include <android/os/Parcelable.hpp> #include <java/lang/String.hpp> namespace j2cpp { namespace android { namespace content { namespace pm { class InstrumentationInfo; class InstrumentationInfo : public object<InstrumentationInfo> { public: J2CPP_DECLARE_CLASS J2CPP_DECLARE_METHOD(0) J2CPP_DECLARE_METHOD(1) J2CPP_DECLARE_METHOD(2) J2CPP_DECLARE_METHOD(3) J2CPP_DECLARE_METHOD(4) J2CPP_DECLARE_METHOD(5) J2CPP_DECLARE_FIELD(0) J2CPP_DECLARE_FIELD(1) J2CPP_DECLARE_FIELD(2) J2CPP_DECLARE_FIELD(3) J2CPP_DECLARE_FIELD(4) J2CPP_DECLARE_FIELD(5) J2CPP_DECLARE_FIELD(6) explicit InstrumentationInfo(jobject jobj) : object<InstrumentationInfo>(jobj) , targetPackage(jobj) , sourceDir(jobj) , publicSourceDir(jobj) , dataDir(jobj) , handleProfiling(jobj) , functionalTest(jobj) { } operator local_ref<android::content::pm::PackageItemInfo>() const; operator local_ref<android::os::Parcelable>() const; InstrumentationInfo(); InstrumentationInfo(local_ref< android::content::pm::InstrumentationInfo > const&); local_ref< java::lang::String > toString(); jint describeContents(); void writeToParcel(local_ref< android::os::Parcel > const&, jint); field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(0), J2CPP_FIELD_SIGNATURE(0), local_ref< java::lang::String > > targetPackage; field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(1), J2CPP_FIELD_SIGNATURE(1), local_ref< java::lang::String > > sourceDir; field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(2), J2CPP_FIELD_SIGNATURE(2), local_ref< java::lang::String > > publicSourceDir; field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(3), J2CPP_FIELD_SIGNATURE(3), local_ref< java::lang::String > > dataDir; field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(4), J2CPP_FIELD_SIGNATURE(4), jboolean > handleProfiling; field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(5), J2CPP_FIELD_SIGNATURE(5), jboolean > functionalTest; static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(6), J2CPP_FIELD_SIGNATURE(6), local_ref< android::os::Parcelable_::Creator > > CREATOR; }; //class InstrumentationInfo } //namespace pm } //namespace content } //namespace android } //namespace j2cpp #endif //J2CPP_ANDROID_CONTENT_PM_INSTRUMENTATIONINFO_HPP_DECL #else //J2CPP_INCLUDE_IMPLEMENTATION #ifndef J2CPP_ANDROID_CONTENT_PM_INSTRUMENTATIONINFO_HPP_IMPL #define J2CPP_ANDROID_CONTENT_PM_INSTRUMENTATIONINFO_HPP_IMPL namespace j2cpp { android::content::pm::InstrumentationInfo::operator local_ref<android::content::pm::PackageItemInfo>() const { return local_ref<android::content::pm::PackageItemInfo>(get_jobject()); } android::content::pm::InstrumentationInfo::operator local_ref<android::os::Parcelable>() const { return local_ref<android::os::Parcelable>(get_jobject()); } android::content::pm::InstrumentationInfo::InstrumentationInfo() : object<android::content::pm::InstrumentationInfo>( call_new_object< android::content::pm::InstrumentationInfo::J2CPP_CLASS_NAME, android::content::pm::InstrumentationInfo::J2CPP_METHOD_NAME(0), android::content::pm::InstrumentationInfo::J2CPP_METHOD_SIGNATURE(0) >() ) , targetPackage(get_jobject()) , sourceDir(get_jobject()) , publicSourceDir(get_jobject()) , dataDir(get_jobject()) , handleProfiling(get_jobject()) , functionalTest(get_jobject()) { } android::content::pm::InstrumentationInfo::InstrumentationInfo(local_ref< android::content::pm::InstrumentationInfo > const &a0) : object<android::content::pm::InstrumentationInfo>( call_new_object< android::content::pm::InstrumentationInfo::J2CPP_CLASS_NAME, android::content::pm::InstrumentationInfo::J2CPP_METHOD_NAME(1), android::content::pm::InstrumentationInfo::J2CPP_METHOD_SIGNATURE(1) >(a0) ) , targetPackage(get_jobject()) , sourceDir(get_jobject()) , publicSourceDir(get_jobject()) , dataDir(get_jobject()) , handleProfiling(get_jobject()) , functionalTest(get_jobject()) { } local_ref< java::lang::String > android::content::pm::InstrumentationInfo::toString() { return call_method< android::content::pm::InstrumentationInfo::J2CPP_CLASS_NAME, android::content::pm::InstrumentationInfo::J2CPP_METHOD_NAME(2), android::content::pm::InstrumentationInfo::J2CPP_METHOD_SIGNATURE(2), local_ref< java::lang::String > >(get_jobject()); } jint android::content::pm::InstrumentationInfo::describeContents() { return call_method< android::content::pm::InstrumentationInfo::J2CPP_CLASS_NAME, android::content::pm::InstrumentationInfo::J2CPP_METHOD_NAME(3), android::content::pm::InstrumentationInfo::J2CPP_METHOD_SIGNATURE(3), jint >(get_jobject()); } void android::content::pm::InstrumentationInfo::writeToParcel(local_ref< android::os::Parcel > const &a0, jint a1) { return call_method< android::content::pm::InstrumentationInfo::J2CPP_CLASS_NAME, android::content::pm::InstrumentationInfo::J2CPP_METHOD_NAME(4), android::content::pm::InstrumentationInfo::J2CPP_METHOD_SIGNATURE(4), void >(get_jobject(), a0, a1); } static_field< android::content::pm::InstrumentationInfo::J2CPP_CLASS_NAME, android::content::pm::InstrumentationInfo::J2CPP_FIELD_NAME(6), android::content::pm::InstrumentationInfo::J2CPP_FIELD_SIGNATURE(6), local_ref< android::os::Parcelable_::Creator > > android::content::pm::InstrumentationInfo::CREATOR; J2CPP_DEFINE_CLASS(android::content::pm::InstrumentationInfo,"android/content/pm/InstrumentationInfo") J2CPP_DEFINE_METHOD(android::content::pm::InstrumentationInfo,0,"<init>","()V") J2CPP_DEFINE_METHOD(android::content::pm::InstrumentationInfo,1,"<init>","(Landroid/content/pm/InstrumentationInfo;)V") J2CPP_DEFINE_METHOD(android::content::pm::InstrumentationInfo,2,"toString","()Ljava/lang/String;") J2CPP_DEFINE_METHOD(android::content::pm::InstrumentationInfo,3,"describeContents","()I") J2CPP_DEFINE_METHOD(android::content::pm::InstrumentationInfo,4,"writeToParcel","(Landroid/os/Parcel;I)V") J2CPP_DEFINE_METHOD(android::content::pm::InstrumentationInfo,5,"<clinit>","()V") J2CPP_DEFINE_FIELD(android::content::pm::InstrumentationInfo,0,"targetPackage","Ljava/lang/String;") J2CPP_DEFINE_FIELD(android::content::pm::InstrumentationInfo,1,"sourceDir","Ljava/lang/String;") J2CPP_DEFINE_FIELD(android::content::pm::InstrumentationInfo,2,"publicSourceDir","Ljava/lang/String;") J2CPP_DEFINE_FIELD(android::content::pm::InstrumentationInfo,3,"dataDir","Ljava/lang/String;") J2CPP_DEFINE_FIELD(android::content::pm::InstrumentationInfo,4,"handleProfiling","Z") J2CPP_DEFINE_FIELD(android::content::pm::InstrumentationInfo,5,"functionalTest","Z") J2CPP_DEFINE_FIELD(android::content::pm::InstrumentationInfo,6,"CREATOR","Landroid/os/Parcelable$Creator;") } //namespace j2cpp #endif //J2CPP_ANDROID_CONTENT_PM_INSTRUMENTATIONINFO_HPP_IMPL #endif //J2CPP_INCLUDE_IMPLEMENTATION
[ "le.hoang.q@gmail.com@2e56ffda-155b-7872-b1f3-609f5c043f28" ]
le.hoang.q@gmail.com@2e56ffda-155b-7872-b1f3-609f5c043f28
af6b081d4d0d5b96683b96f916cb42c9df65070c
47ab511d1e5f2418745f6319b7584221e578a705
/EliminatingCastingEx/shape.h
3870f8d73ed866f775e1bef7aef20bc8f8cb9318
[]
no_license
sdaingade/cpplabs
f460936a6e2e4d68e13a9745b6edaae9aa75ba83
fa6e644c1f83cbd73d4d6494a1d07f942915b62f
refs/heads/master
2021-05-29T23:53:37.281887
2015-10-04T16:14:06
2015-10-04T16:14:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,356
h
#ifndef SHAPE_H #define SHAPE_H /************************************************************** * * File: shape.h * * Description: Class Shape is defined in this class. shape.cpp * has the implementation. * * Author: SciSpike * * Modification History: * ***************************************************************/ /* Include Files */ /* Pre-Declarations */ /* Constants and defines */ /**************************************************************** * * Description: The Shape is the base class for set of geometric * Shapes that can be drawn, moved, etc on any * drawing area. * * Exceptions: None * ***************************************************************/ class Shape { public: Shape( const char* name, const int _x, const int _y ); Shape( const Shape& shape ); virtual ~Shape(); Shape& operator=( const Shape& shape ); int getX() const; int getY() const; void setX( const int x ); void setY( const int y ); const char* getName() const; // TODO Implement virtual draw method here with no code // in implementation of it protected: char* myName; int myX; // X Coordinate of the Shape int myY; // Y Coordinate of the Shape void initialize( const char* name, const int x, const int y ); }; #endif // SHAPE_H
[ "petter.graff@scispike.com" ]
petter.graff@scispike.com
d9178347f1121bdd46d6b43b1817691b84ac603f
61c16ab5057ae8a24af5d5b8a6c09c2a593031eb
/fd/src/search/pdbs/canonical_pdbs_heuristic.cc
49df129e610e5834d96cfc3419168d4ef3f25eff
[]
no_license
YihuaLiang95/honors
2a6204b88243cc601d22d8d16353d0b900560c96
f051cbec4499864cc45929fffb3d132c304bce41
refs/heads/master
2020-04-27T23:04:48.323697
2018-05-05T07:47:39
2018-05-05T07:47:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,670
cc
#include "canonical_pdbs_heuristic.h" #include "dominance_pruner.h" #include "max_cliques.h" #include "pdb_heuristic.h" #include "util.h" #include "../globals.h" #include "../operator.h" #include "../option_parser.h" #include "../plugin.h" #include "../state.h" #include "../timer.h" #include "../utilities.h" #include <cassert> #include <cstdlib> #include <vector> using namespace std; CanonicalPDBsHeuristic::CanonicalPDBsHeuristic(const Options &opts) : Heuristic(opts) { const vector<vector<int> > &pattern_collection(opts.get_list<vector<int> >("patterns")); Timer timer; size = 0; pattern_databases.reserve(pattern_collection.size()); for (size_t i = 0; i < pattern_collection.size(); ++i) _add_pattern(pattern_collection[i]); compute_additive_vars(); compute_max_cliques(); cout << "PDB collection construction time: " << timer << endl; } CanonicalPDBsHeuristic::~CanonicalPDBsHeuristic() { for (size_t i = 0; i < pattern_databases.size(); ++i) { delete pattern_databases[i]; } } void CanonicalPDBsHeuristic::_add_pattern(const vector<int> &pattern) { Options opts; opts.set<int>("cost_type", cost_type); opts.set<vector<int> >("pattern", pattern); pattern_databases.push_back(new PDBHeuristic(opts, false)); size += pattern_databases.back()->get_size(); } bool CanonicalPDBsHeuristic::are_patterns_additive(const vector<int> &patt1, const vector<int> &patt2) const { for (size_t i = 0; i < patt1.size(); ++i) { for (size_t j = 0; j < patt2.size(); ++j) { if (!are_additive[patt1[i]][patt2[j]]) { return false; } } } return true; } void CanonicalPDBsHeuristic::compute_max_cliques() { // initialize compatibility graph max_cliques.clear(); vector<vector<int> > cgraph; cgraph.resize(pattern_databases.size()); for (size_t i = 0; i < pattern_databases.size(); ++i) { for (size_t j = i + 1; j < pattern_databases.size(); ++j) { if (are_patterns_additive(pattern_databases[i]->get_pattern(), pattern_databases[j]->get_pattern())) { // if the two patterns are additive there is an edge in the compatibility graph cgraph[i].push_back(j); cgraph[j].push_back(i); } } } vector<vector<int> > cgraph_max_cliques; ::compute_max_cliques(cgraph, cgraph_max_cliques); max_cliques.reserve(cgraph_max_cliques.size()); for (size_t i = 0; i < cgraph_max_cliques.size(); ++i) { vector<PDBHeuristic *> clique; clique.reserve(cgraph_max_cliques[i].size()); for (size_t j = 0; j < cgraph_max_cliques[i].size(); ++j) { clique.push_back(pattern_databases[cgraph_max_cliques[i][j]]); } max_cliques.push_back(clique); } } void CanonicalPDBsHeuristic::compute_additive_vars() { assert(are_additive.empty()); int num_vars = g_variable_domain.size(); are_additive.resize(num_vars, vector<bool>(num_vars, true)); for (size_t k = 0; k < g_operators.size(); ++k) { const Operator &o = g_operators[k]; const vector<PrePost> effects = o.get_pre_post(); for (size_t e1 = 0; e1 < effects.size(); ++e1) { for (size_t e2 = 0; e2 < effects.size(); ++e2) { are_additive[effects[e1].var][effects[e2].var] = false; } } } } void CanonicalPDBsHeuristic::dominance_pruning() { Timer timer; int num_patterns = pattern_databases.size(); int num_cliques = max_cliques.size(); DominancePruner(pattern_databases, max_cliques).prune(); // Adjust size. size = 0; for (size_t i = 0; i < pattern_databases.size(); ++i) { size += pattern_databases[i]->get_size(); } cout << "Pruned " << num_cliques - max_cliques.size() << " of " << num_cliques << " cliques" << endl; cout << "Pruned " << num_patterns - pattern_databases.size() << " of " << num_patterns << " PDBs" << endl; cout << "Dominance pruning took " << timer << endl; } void CanonicalPDBsHeuristic::initialize() { } int CanonicalPDBsHeuristic::compute_heuristic(const State &state) { int max_h = 0; assert(!max_cliques.empty()); // if we have an empty collection, then max_cliques = { \emptyset } for (size_t i = 0; i < pattern_databases.size(); ++i) { pattern_databases[i]->evaluate(state); if (pattern_databases[i]->is_dead_end()) return DEAD_END; } for (size_t i = 0; i < max_cliques.size(); ++i) { const vector<PDBHeuristic *> &clique = max_cliques[i]; int clique_h = 0; for (size_t j = 0; j < clique.size(); ++j) { clique_h += clique[j]->get_heuristic(); } max_h = max(max_h, clique_h); } return max_h; } void CanonicalPDBsHeuristic::add_pattern(const vector<int> &pattern) { _add_pattern(pattern); compute_max_cliques(); } void CanonicalPDBsHeuristic::get_max_additive_subsets( const vector<int> &new_pattern, vector<vector<PDBHeuristic *> > &max_additive_subsets) { /* We compute additive pattern sets S with the property that we could add the new pattern P to S and still have an additive pattern set. Ideally, we would like to return all *maximal* sets S with this property (w.r.t. set inclusion), but we don't currently guarantee this. (What we guarantee is that all maximal such sets are *included* in the result, but the result could contain duplicates or sets that are subsets of other sets in the result.) We currently implement this as follows: * Consider all maximal additive subsets of the current collection. * For each additive subset S, take the subset S' that contains those patterns that are additive with the new pattern P. * Include the subset S' in the result. As an optimization, we actually only include S' in the result if it is non-empty. However, this is wrong if *all* subsets we get are empty, so we correct for this case at the end. This may include dominated elements and duplicates in the result. To avoid this, we could instead use the following algorithm: * Let N (= neighbours) be the set of patterns in our current collection that are additive with the new pattern P. * Let G_N be the compatibility graph of the current collection restricted to set N (i.e. drop all non-neighbours and their incident edges.) * Return the maximal cliques of G_N. One nice thing about this alternative algorithm is that we could also use it to incrementally compute the new set of maximal additive pattern sets after adding the new pattern P: G_N_cliques = max_cliques(G_N) // as above new_max_cliques = (old_max_cliques \setminus G_N_cliques) \union { clique \union {P} | clique in G_N_cliques} That is, the new set of maximal cliques is exactly the set of those "old" cliques that we cannot extend by P (old_max_cliques \setminus G_N_cliques) and all "new" cliques including P. */ for (size_t i = 0; i < max_cliques.size(); ++i) { // take all patterns which are additive to new_pattern vector<PDBHeuristic *> subset; subset.reserve(max_cliques[i].size()); for (size_t j = 0; j < max_cliques[i].size(); ++j) { if (are_patterns_additive(new_pattern, max_cliques[i][j]->get_pattern())) { subset.push_back(max_cliques[i][j]); } } if (!subset.empty()) { max_additive_subsets.push_back(subset); } } if (max_additive_subsets.empty()) { // If nothing was additive with the new variable, then // the only additive subset is the empty set. max_additive_subsets.push_back(vector<PDBHeuristic *>()); } } void CanonicalPDBsHeuristic::evaluate_dead_end(const State &state) { int evaluator_value = 0; for (size_t i = 0; i < pattern_databases.size(); ++i) { pattern_databases[i]->evaluate(state); if (pattern_databases[i]->is_dead_end()) { evaluator_value = DEAD_END; break; } } set_evaluator_value(evaluator_value); } void CanonicalPDBsHeuristic::dump_cgraph(const vector<vector<int> > &cgraph) const { // print compatibility graph cout << "Compatibility graph" << endl; for (size_t i = 0; i < cgraph.size(); ++i) { cout << i << " adjacent to: "; cout << cgraph[i] << endl; } } void CanonicalPDBsHeuristic::dump_cliques() const { // print maximal cliques assert(!max_cliques.empty()); cout << max_cliques.size() << " maximal clique(s)" << endl; cout << "Maximal cliques are ("; for (size_t i = 0; i < max_cliques.size(); ++i) { cout << "["; for (size_t j = 0; j < max_cliques[i].size(); ++j) { vector<int> pattern = max_cliques[i][j]->get_pattern(); cout << "{ "; for (size_t k = 0; k < pattern.size(); ++k) { cout << pattern[k] << " "; } cout << "}"; } cout << "]"; } cout << ")" << endl; } void CanonicalPDBsHeuristic::dump() const { for (size_t i = 0; i < pattern_databases.size(); ++i) { cout << pattern_databases[i]->get_pattern() << endl; } } static Heuristic *_parse(OptionParser &parser) { parser.document_synopsis("Canonical PDB", "The canonical pattern database heuristic is calculated as follows. " "For a given pattern collection C, the value of the canonical heuristic " "function is the maximum over all maximal additive subsets A in C, where " "the value for one subset S in A is the sum of the heuristic values for " "all patterns in S for a given state."); parser.document_language_support("action costs", "supported"); parser.document_language_support("conditional effects", "not supported"); parser.document_language_support("axioms", "not supported"); parser.document_property("admissible", "yes"); parser.document_property("consistent", "yes"); parser.document_property("safe", "yes"); parser.document_property("preferred operators", "no"); Heuristic::add_options_to_parser(parser); Options opts; parse_patterns(parser, opts); if (parser.dry_run()) return 0; return new CanonicalPDBsHeuristic(opts); } static Plugin<Heuristic> _plugin("cpdbs", _parse);
[ "u6487831@anu.edu.au" ]
u6487831@anu.edu.au
158f8f36a90aa613c0e3e5d79447ff04df5ca8b1
09e33c5c1d80f684fcc924b8fc37e1ff3fe00013
/matrix.ino
a15ee0ff4ac8e889e3969b47ba37c13709016fd0
[]
no_license
shawnlg/Arduino-LED-Matrix-Message-Display
c050214c4b4c2fedf6f281a56e3cd5f7843d281a
6510d105161294c68c141ef67699bf152d4451d0
refs/heads/master
2016-09-14T06:04:04.456617
2016-04-28T00:33:57
2016-04-28T00:33:57
57,257,249
0
0
null
null
null
null
UTF-8
C++
false
false
8,267
ino
// The frame is 64 bits. Each byte holds one column of display data. // 64 bits, 8 columns for the 64 LEDs in the matrix. byte _frame[8] = {0,0,0,0,0,0,0,0}; // clear all pins going to matrix (input mode) void clearMatrix() { for (byte i=0; i<sizeof(pins); i++) { pinMode(pins[i], INPUT); } } // copy a font character (row-bytes) into matrix frame (column-bytes) void copyFontCharacterToFrame(char ch) { // Serial.println("copyFontCharacterToFrame"); int fontOffset = ch*8; // first byte of character in font table for (byte row=0; row<8; row++) { // Serial.print("row: "); Serial.print(row); byte rowOfDots = pgm_read_byte_near(FONT + fontOffset++); // Serial.print(" rowOfDots: "); Serial.println(rowOfDots,BIN); for (byte col=0; col<8; col++) { // Serial.print(" col: "); Serial.print(col); // get the column bit in the row data from the font int bit = rowOfDots << col; bit &= 0x80; bit >>= 7; // Serial.print(bit==1?". ":" "); // get the column byte in the frame byte columnByte = _frame[col]; // add the bit to the right most row, shifting the others to the left columnByte = (columnByte << 1) + bit; _frame[col] = columnByte; // Serial.print(" col byte: "); Serial.print(bit,BIN); } // columns // Serial.println(); } // rows } // copyFontCharacterToFrame // print frame to serial void printFrame() { Serial.println("printFrame"); for (byte row=0; row<8; row++) { for (byte col=0; col<8; col++) { byte colOfDots = _frame[col]; // get the row bit in the column data from the frame int bit = colOfDots << row; bit &= 0x80; bit >>= 7; // print the bit in the row Serial.print(bit==1 ? ". " : " "); } // columns Serial.println(); } // rows Serial.println("end printFrame"); } // printFrame // display frame to matrix once - one refresh cycle void displayFrame() { long frameStart = millis(); // Serial.println("displayFrame"); long timeLeft = REFRESH_TIME; for (byte col=0; col<8; col++) { byte rowOfDots = _frame[col]; byte numLEDs = 0; // how many LEDs lit in column for (byte row=0; row<8; row++) { // get the row bit in the column data from the frame int bit = rowOfDots << row; bit &= 0x80; bit >>= 7; // set the pin for that row bit if it is a 1 if (bit == 1) { // light this row numLEDs++; // count lit LEDs byte pin = _rows[row]; pin = pins[pin]; // real arduino pin // turn on the LED pinMode(pin, OUTPUT); digitalWrite(pin, _rowVoltage); } // if row lit } // rows // we lit all the rows. Calculate the delay for showing that many LEDs if (numLEDs > 0) { // at least 1 light in this column lit long onTime = _brightness[numLEDs-1]; timeLeft -= onTime; // how much left of the refresh cycle // turn on the column pin to light all column dots selected byte pin = _cols[col]; pin = pins[pin]; // real arduino pin pinMode(pin, OUTPUT); digitalWrite(pin, _columnVoltage); delayMicroseconds(onTime); clearMatrix(); // turn off all the pins } // at least one light in column } // columns // if there is still time left in the refresh cycle, wait it out if (timeLeft > 0) { delayMicroseconds(timeLeft); } // Serial.println("end displayFrame"); long frameEnd = millis(); } // displayFrame // temporary message length variable so we don't have to change EEPROM too much int _messageLength; void startMessage() { // add 8 blank columns to message so it can scroll the first letter _messageLength = 0; setMessageLength(_messageLength); // store the length permanently at start and end of message creation for (int i=0; i<8; i++) { addColumnToMessage(0); } } void endMessage() { // add 8 blank columns to end of message so it can scroll off the last letter for (int i=0; i<8; i++) { addColumnToMessage(0); } setMessageLength(_messageLength); } void addColumnToMessage(byte c) { // Serial.print("addColumnToMessage: "); Serial.print(c); Serial.print(" location: "); Serial.println(_messageLength); EEPROM.update(EE_DISPLAY_COLS+_messageLength++, c); // Serial.println("end addColumnToMessage"); } void addCharToMessage(char ch) { // if EEPROM is almost full, don't add the character int bytesLeft = EEPROM.length() - EE_DISPLAY_COLS - _messageLength; if (bytesLeft < 10) { return; } // Serial.print("addCharToMessage: "); Serial.println(ch); copyFontCharacterToFrame(ch); // 8 column bytes // printFrame(); // we only leave 1 blank column between characters unless it's a space byte firstByte=99, lastByte=99; for (byte i=0; i<sizeof(_frame); i++) { if (_frame[i] != 0) { lastByte = i; if (firstByte == 99) { firstByte = i; } // first non-blank } // last non-blank } // read all columns of frame // if we have a space, add some blank columns to message since the last // column of the message is already blank if (firstByte == 99) { // a blank frame // Serial.println("blank frame"); addColumnToMessage(0); addColumnToMessage(0); addColumnToMessage(0); } else { // Serial.print("firstByte = "); Serial.println(firstByte); // Serial.print("lastByte = "); Serial.println(lastByte); // add columns to message from first to last byte for (byte i=firstByte; i<=lastByte; i++) { addColumnToMessage(_frame[i]); } addColumnToMessage(0); // end character with one blank column } // Serial.println("end addCharToMessage"); } void addStringToMessage(char s[]) { for (int i=0; s[i] != 0; i++) { addCharToMessage(s[i]); } } void createMessage(char s[]) { startMessage(); addStringToMessage(s); endMessage(); } void displayMessage() { _messageLength = getMessageLength(); while (1) { // loop until button long pressed for (int i=0; i<_messageLength-8; i++) { // get knob reading and use it to control speed int reduceDelay = getKnobReading(SCROLL_MAX_DELAY - SCROLL_MIN_DELAY); // copy 8 bytes of message into display frame // Serial.print("frame: "); for (byte j=0; j<8; j++) { _frame[j] = EEPROM.read(EE_DISPLAY_COLS+i+j); // Serial.print(_frame[j]); Serial.print(" "); } // copy into frame // Serial.println(); // display frame for a bit long endTime = millis()+SCROLL_MAX_DELAY-reduceDelay; // when to stop displaying while (millis() < endTime) { displayFrame(); } // display frame until time is up // test for button press. Short press is ignored, long press means exit byte pressed = isButtonPressed(); if (pressed == BUTTON_LONG_PRESS) { goto endLoop; } } // scroll one column through message } // loop forever endLoop: ; } // displayMessage void enterMessage() { byte numChars = sizeof(MESSAGE_CHARACTERS); begin: // start entering message startMessage(); while (1) { // enter characters over and over // read the knob and display that character byte charIndex = getKnobReading(numChars); char ch = MESSAGE_CHARACTERS[charIndex]; copyFontCharacterToFrame(ch); displayFrame(); // read button. A short press adds the character to the message, // a long press starts the message over byte pressed = isButtonPressed(); if (pressed == BUTTON_LONG_PRESS) { goto begin; // start over, abandoning entered message } else if (pressed == BUTTON_SHORT_PRESS) { // if the knob is turned to the last character, that means we are done // with the message. Instead of entering the character, go to the end // of the loop. if (charIndex == numChars-1) { // last character break; } else { // enter character at end of message addCharToMessage(ch); // blink character to show it was entered for (byte i=0; i<3; i++) { for (byte j=0; j<5; j++) { displayFrame(); } // keep on for awhile delay(100); } // blink } } } // entering characters end: // done entering message endMessage(); }
[ "shawn@gordhamer.com" ]
shawn@gordhamer.com
629606a06d12330c297ad54462d842eebfa03513
e220eb257fd2d58a0dafca096e5bb275888e8824
/clientC++/ServeurIceMP3.h
e83fa222a582d71b634e8a3c67a67668083575e6
[]
no_license
Moquetteman/ServeurMp3
cd3351598e9dae095c597809ba78302b9edca2ee
efc2651c19e757c0c9ecaa9f1616162935e154e8
refs/heads/master
2020-04-10T04:00:58.616561
2015-04-07T15:05:08
2015-04-07T15:05:08
31,264,583
0
0
null
null
null
null
UTF-8
C++
false
false
88,375
h
// ********************************************************************** // // Copyright (c) 2003-2013 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** // // Ice version 3.5.1 // // <auto-generated> // // Generated from file `ServeurIceMP3.ice' // // Warning: do not edit this file. // // </auto-generated> // #ifndef __ServeurIceMP3_h__ #define __ServeurIceMP3_h__ #include <Ice/ProxyF.h> #include <Ice/ObjectF.h> #include <Ice/Exception.h> #include <Ice/LocalObject.h> #include <Ice/StreamHelpers.h> #include <Ice/Proxy.h> #include <Ice/Object.h> #include <Ice/Outgoing.h> #include <Ice/OutgoingAsync.h> #include <Ice/Incoming.h> #include <Ice/Direct.h> #include <IceUtil/ScopedArray.h> #include <IceUtil/Optional.h> #include <Ice/StreamF.h> #include <Ice/UndefSysMacros.h> #ifndef ICE_IGNORE_VERSION # if ICE_INT_VERSION / 100 != 305 # error Ice version mismatch! # endif # if ICE_INT_VERSION % 100 > 50 # error Beta header file detected # endif # if ICE_INT_VERSION % 100 < 1 # error Ice patch level mismatch! # endif #endif namespace IceProxy { namespace serveur { class ServeurIceMP3; void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::serveur::ServeurIceMP3>&); ::IceProxy::Ice::Object* upCast(::IceProxy::serveur::ServeurIceMP3*); } } namespace serveur { class ServeurIceMP3; bool operator==(const ServeurIceMP3&, const ServeurIceMP3&); bool operator<(const ServeurIceMP3&, const ServeurIceMP3&); ::Ice::Object* upCast(::serveur::ServeurIceMP3*); typedef ::IceInternal::Handle< ::serveur::ServeurIceMP3> ServeurIceMP3Ptr; typedef ::IceInternal::ProxyHandle< ::IceProxy::serveur::ServeurIceMP3> ServeurIceMP3Prx; void __patch(ServeurIceMP3Ptr&, const ::Ice::ObjectPtr&); } namespace serveur { typedef ::std::vector< ::std::string> listetitre; typedef ::std::vector< ::std::string> listeauteur; } namespace serveur { class Callback_ServeurIceMP3_ajoutfichier_Base : virtual public ::IceInternal::CallbackBase { }; typedef ::IceUtil::Handle< Callback_ServeurIceMP3_ajoutfichier_Base> Callback_ServeurIceMP3_ajoutfichierPtr; class Callback_ServeurIceMP3_recherche_Base : virtual public ::IceInternal::CallbackBase { }; typedef ::IceUtil::Handle< Callback_ServeurIceMP3_recherche_Base> Callback_ServeurIceMP3_recherchePtr; class Callback_ServeurIceMP3_rechercheTitre_Base : virtual public ::IceInternal::CallbackBase { }; typedef ::IceUtil::Handle< Callback_ServeurIceMP3_rechercheTitre_Base> Callback_ServeurIceMP3_rechercheTitrePtr; class Callback_ServeurIceMP3_rechercheAuteur_Base : virtual public ::IceInternal::CallbackBase { }; typedef ::IceUtil::Handle< Callback_ServeurIceMP3_rechercheAuteur_Base> Callback_ServeurIceMP3_rechercheAuteurPtr; class Callback_ServeurIceMP3_suppression_Base : virtual public ::IceInternal::CallbackBase { }; typedef ::IceUtil::Handle< Callback_ServeurIceMP3_suppression_Base> Callback_ServeurIceMP3_suppressionPtr; class Callback_ServeurIceMP3_lireMp3_Base : virtual public ::IceInternal::CallbackBase { }; typedef ::IceUtil::Handle< Callback_ServeurIceMP3_lireMp3_Base> Callback_ServeurIceMP3_lireMp3Ptr; class Callback_ServeurIceMP3_lireMp3ParFichier_Base : virtual public ::IceInternal::CallbackBase { }; typedef ::IceUtil::Handle< Callback_ServeurIceMP3_lireMp3ParFichier_Base> Callback_ServeurIceMP3_lireMp3ParFichierPtr; class Callback_ServeurIceMP3_stopMp3_Base : virtual public ::IceInternal::CallbackBase { }; typedef ::IceUtil::Handle< Callback_ServeurIceMP3_stopMp3_Base> Callback_ServeurIceMP3_stopMp3Ptr; } namespace IceProxy { namespace serveur { class ServeurIceMP3 : virtual public ::IceProxy::Ice::Object { public: void ajoutfichier(const ::std::string& titre, const ::std::string& auteur, const ::std::string& fichier) { ajoutfichier(titre, auteur, fichier, 0); } void ajoutfichier(const ::std::string& titre, const ::std::string& auteur, const ::std::string& fichier, const ::Ice::Context& __ctx) { ajoutfichier(titre, auteur, fichier, &__ctx); } #ifdef ICE_CPP11 ::Ice::AsyncResultPtr begin_ajoutfichier(const ::std::string& titre, const ::std::string& auteur, const ::std::string& fichier, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return begin_ajoutfichier(titre, auteur, fichier, 0, new ::IceInternal::Cpp11FnOnewayCallbackNC(__response, __exception, __sent)); } ::Ice::AsyncResultPtr begin_ajoutfichier(const ::std::string& titre, const ::std::string& auteur, const ::std::string& fichier, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_ajoutfichier(titre, auteur, fichier, 0, ::Ice::newCallback(__completed, __sent), 0); } ::Ice::AsyncResultPtr begin_ajoutfichier(const ::std::string& titre, const ::std::string& auteur, const ::std::string& fichier, const ::Ice::Context& __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return begin_ajoutfichier(titre, auteur, fichier, &__ctx, new ::IceInternal::Cpp11FnOnewayCallbackNC(__response, __exception, __sent), 0); } ::Ice::AsyncResultPtr begin_ajoutfichier(const ::std::string& titre, const ::std::string& auteur, const ::std::string& fichier, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_ajoutfichier(titre, auteur, fichier, &__ctx, ::Ice::newCallback(__completed, __sent)); } #endif ::Ice::AsyncResultPtr begin_ajoutfichier(const ::std::string& titre, const ::std::string& auteur, const ::std::string& fichier) { return begin_ajoutfichier(titre, auteur, fichier, 0, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_ajoutfichier(const ::std::string& titre, const ::std::string& auteur, const ::std::string& fichier, const ::Ice::Context& __ctx) { return begin_ajoutfichier(titre, auteur, fichier, &__ctx, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_ajoutfichier(const ::std::string& titre, const ::std::string& auteur, const ::std::string& fichier, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_ajoutfichier(titre, auteur, fichier, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_ajoutfichier(const ::std::string& titre, const ::std::string& auteur, const ::std::string& fichier, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_ajoutfichier(titre, auteur, fichier, &__ctx, __del, __cookie); } ::Ice::AsyncResultPtr begin_ajoutfichier(const ::std::string& titre, const ::std::string& auteur, const ::std::string& fichier, const ::serveur::Callback_ServeurIceMP3_ajoutfichierPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_ajoutfichier(titre, auteur, fichier, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_ajoutfichier(const ::std::string& titre, const ::std::string& auteur, const ::std::string& fichier, const ::Ice::Context& __ctx, const ::serveur::Callback_ServeurIceMP3_ajoutfichierPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_ajoutfichier(titre, auteur, fichier, &__ctx, __del, __cookie); } void end_ajoutfichier(const ::Ice::AsyncResultPtr&); private: void ajoutfichier(const ::std::string&, const ::std::string&, const ::std::string&, const ::Ice::Context*); ::Ice::AsyncResultPtr begin_ajoutfichier(const ::std::string&, const ::std::string&, const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0); public: ::std::string recherche(const ::std::string& titre, const ::std::string& auteur) { return recherche(titre, auteur, 0); } ::std::string recherche(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx) { return recherche(titre, auteur, &__ctx); } #ifdef ICE_CPP11 ::Ice::AsyncResultPtr begin_recherche(const ::std::string& titre, const ::std::string& auteur, const ::IceInternal::Function<void (const ::std::string&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return __begin_recherche(titre, auteur, 0, __response, __exception, __sent); } ::Ice::AsyncResultPtr begin_recherche(const ::std::string& titre, const ::std::string& auteur, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_recherche(titre, auteur, 0, ::Ice::newCallback(__completed, __sent), 0); } ::Ice::AsyncResultPtr begin_recherche(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::std::string&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return __begin_recherche(titre, auteur, &__ctx, __response, __exception, __sent); } ::Ice::AsyncResultPtr begin_recherche(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_recherche(titre, auteur, &__ctx, ::Ice::newCallback(__completed, __sent)); } private: ::Ice::AsyncResultPtr __begin_recherche(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::std::string&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent) { class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC { public: Cpp11CB(const ::std::function<void (const ::std::string&)>& responseFunc, const ::std::function<void (const ::Ice::Exception&)>& exceptionFunc, const ::std::function<void (bool)>& sentFunc) : ::IceInternal::Cpp11FnCallbackNC(exceptionFunc, sentFunc), _response(responseFunc) { CallbackBase::checkCallback(true, responseFunc || exceptionFunc != nullptr); } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::std::string __ret; try { __ret = __proxy->end_recherche(__result); } catch(::Ice::Exception& ex) { Cpp11FnCallbackNC::__exception(__result, ex); return; } if(_response != nullptr) { _response(__ret); } } private: ::std::function<void (const ::std::string&)> _response; }; return begin_recherche(titre, auteur, __ctx, new Cpp11CB(__response, __exception, __sent)); } public: #endif ::Ice::AsyncResultPtr begin_recherche(const ::std::string& titre, const ::std::string& auteur) { return begin_recherche(titre, auteur, 0, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_recherche(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx) { return begin_recherche(titre, auteur, &__ctx, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_recherche(const ::std::string& titre, const ::std::string& auteur, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_recherche(titre, auteur, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_recherche(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_recherche(titre, auteur, &__ctx, __del, __cookie); } ::Ice::AsyncResultPtr begin_recherche(const ::std::string& titre, const ::std::string& auteur, const ::serveur::Callback_ServeurIceMP3_recherchePtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_recherche(titre, auteur, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_recherche(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx, const ::serveur::Callback_ServeurIceMP3_recherchePtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_recherche(titre, auteur, &__ctx, __del, __cookie); } ::std::string end_recherche(const ::Ice::AsyncResultPtr&); private: ::std::string recherche(const ::std::string&, const ::std::string&, const ::Ice::Context*); ::Ice::AsyncResultPtr begin_recherche(const ::std::string&, const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0); public: ::serveur::listetitre rechercheTitre(const ::std::string& titre) { return rechercheTitre(titre, 0); } ::serveur::listetitre rechercheTitre(const ::std::string& titre, const ::Ice::Context& __ctx) { return rechercheTitre(titre, &__ctx); } #ifdef ICE_CPP11 ::Ice::AsyncResultPtr begin_rechercheTitre(const ::std::string& titre, const ::IceInternal::Function<void (const ::serveur::listetitre&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return __begin_rechercheTitre(titre, 0, __response, __exception, __sent); } ::Ice::AsyncResultPtr begin_rechercheTitre(const ::std::string& titre, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_rechercheTitre(titre, 0, ::Ice::newCallback(__completed, __sent), 0); } ::Ice::AsyncResultPtr begin_rechercheTitre(const ::std::string& titre, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::serveur::listetitre&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return __begin_rechercheTitre(titre, &__ctx, __response, __exception, __sent); } ::Ice::AsyncResultPtr begin_rechercheTitre(const ::std::string& titre, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_rechercheTitre(titre, &__ctx, ::Ice::newCallback(__completed, __sent)); } private: ::Ice::AsyncResultPtr __begin_rechercheTitre(const ::std::string& titre, const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::serveur::listetitre&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent) { class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC { public: Cpp11CB(const ::std::function<void (const ::serveur::listetitre&)>& responseFunc, const ::std::function<void (const ::Ice::Exception&)>& exceptionFunc, const ::std::function<void (bool)>& sentFunc) : ::IceInternal::Cpp11FnCallbackNC(exceptionFunc, sentFunc), _response(responseFunc) { CallbackBase::checkCallback(true, responseFunc || exceptionFunc != nullptr); } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::serveur::listetitre __ret; try { __ret = __proxy->end_rechercheTitre(__result); } catch(::Ice::Exception& ex) { Cpp11FnCallbackNC::__exception(__result, ex); return; } if(_response != nullptr) { _response(__ret); } } private: ::std::function<void (const ::serveur::listetitre&)> _response; }; return begin_rechercheTitre(titre, __ctx, new Cpp11CB(__response, __exception, __sent)); } public: #endif ::Ice::AsyncResultPtr begin_rechercheTitre(const ::std::string& titre) { return begin_rechercheTitre(titre, 0, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_rechercheTitre(const ::std::string& titre, const ::Ice::Context& __ctx) { return begin_rechercheTitre(titre, &__ctx, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_rechercheTitre(const ::std::string& titre, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_rechercheTitre(titre, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_rechercheTitre(const ::std::string& titre, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_rechercheTitre(titre, &__ctx, __del, __cookie); } ::Ice::AsyncResultPtr begin_rechercheTitre(const ::std::string& titre, const ::serveur::Callback_ServeurIceMP3_rechercheTitrePtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_rechercheTitre(titre, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_rechercheTitre(const ::std::string& titre, const ::Ice::Context& __ctx, const ::serveur::Callback_ServeurIceMP3_rechercheTitrePtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_rechercheTitre(titre, &__ctx, __del, __cookie); } ::serveur::listetitre end_rechercheTitre(const ::Ice::AsyncResultPtr&); private: ::serveur::listetitre rechercheTitre(const ::std::string&, const ::Ice::Context*); ::Ice::AsyncResultPtr begin_rechercheTitre(const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0); public: ::serveur::listeauteur rechercheAuteur(const ::std::string& auteur) { return rechercheAuteur(auteur, 0); } ::serveur::listeauteur rechercheAuteur(const ::std::string& auteur, const ::Ice::Context& __ctx) { return rechercheAuteur(auteur, &__ctx); } #ifdef ICE_CPP11 ::Ice::AsyncResultPtr begin_rechercheAuteur(const ::std::string& auteur, const ::IceInternal::Function<void (const ::serveur::listeauteur&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return __begin_rechercheAuteur(auteur, 0, __response, __exception, __sent); } ::Ice::AsyncResultPtr begin_rechercheAuteur(const ::std::string& auteur, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_rechercheAuteur(auteur, 0, ::Ice::newCallback(__completed, __sent), 0); } ::Ice::AsyncResultPtr begin_rechercheAuteur(const ::std::string& auteur, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::serveur::listeauteur&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return __begin_rechercheAuteur(auteur, &__ctx, __response, __exception, __sent); } ::Ice::AsyncResultPtr begin_rechercheAuteur(const ::std::string& auteur, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_rechercheAuteur(auteur, &__ctx, ::Ice::newCallback(__completed, __sent)); } private: ::Ice::AsyncResultPtr __begin_rechercheAuteur(const ::std::string& auteur, const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::serveur::listeauteur&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent) { class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC { public: Cpp11CB(const ::std::function<void (const ::serveur::listeauteur&)>& responseFunc, const ::std::function<void (const ::Ice::Exception&)>& exceptionFunc, const ::std::function<void (bool)>& sentFunc) : ::IceInternal::Cpp11FnCallbackNC(exceptionFunc, sentFunc), _response(responseFunc) { CallbackBase::checkCallback(true, responseFunc || exceptionFunc != nullptr); } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::serveur::listeauteur __ret; try { __ret = __proxy->end_rechercheAuteur(__result); } catch(::Ice::Exception& ex) { Cpp11FnCallbackNC::__exception(__result, ex); return; } if(_response != nullptr) { _response(__ret); } } private: ::std::function<void (const ::serveur::listeauteur&)> _response; }; return begin_rechercheAuteur(auteur, __ctx, new Cpp11CB(__response, __exception, __sent)); } public: #endif ::Ice::AsyncResultPtr begin_rechercheAuteur(const ::std::string& auteur) { return begin_rechercheAuteur(auteur, 0, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_rechercheAuteur(const ::std::string& auteur, const ::Ice::Context& __ctx) { return begin_rechercheAuteur(auteur, &__ctx, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_rechercheAuteur(const ::std::string& auteur, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_rechercheAuteur(auteur, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_rechercheAuteur(const ::std::string& auteur, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_rechercheAuteur(auteur, &__ctx, __del, __cookie); } ::Ice::AsyncResultPtr begin_rechercheAuteur(const ::std::string& auteur, const ::serveur::Callback_ServeurIceMP3_rechercheAuteurPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_rechercheAuteur(auteur, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_rechercheAuteur(const ::std::string& auteur, const ::Ice::Context& __ctx, const ::serveur::Callback_ServeurIceMP3_rechercheAuteurPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_rechercheAuteur(auteur, &__ctx, __del, __cookie); } ::serveur::listeauteur end_rechercheAuteur(const ::Ice::AsyncResultPtr&); private: ::serveur::listeauteur rechercheAuteur(const ::std::string&, const ::Ice::Context*); ::Ice::AsyncResultPtr begin_rechercheAuteur(const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0); public: void suppression(const ::std::string& titre, const ::std::string& auteur) { suppression(titre, auteur, 0); } void suppression(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx) { suppression(titre, auteur, &__ctx); } #ifdef ICE_CPP11 ::Ice::AsyncResultPtr begin_suppression(const ::std::string& titre, const ::std::string& auteur, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return begin_suppression(titre, auteur, 0, new ::IceInternal::Cpp11FnOnewayCallbackNC(__response, __exception, __sent)); } ::Ice::AsyncResultPtr begin_suppression(const ::std::string& titre, const ::std::string& auteur, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_suppression(titre, auteur, 0, ::Ice::newCallback(__completed, __sent), 0); } ::Ice::AsyncResultPtr begin_suppression(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return begin_suppression(titre, auteur, &__ctx, new ::IceInternal::Cpp11FnOnewayCallbackNC(__response, __exception, __sent), 0); } ::Ice::AsyncResultPtr begin_suppression(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_suppression(titre, auteur, &__ctx, ::Ice::newCallback(__completed, __sent)); } #endif ::Ice::AsyncResultPtr begin_suppression(const ::std::string& titre, const ::std::string& auteur) { return begin_suppression(titre, auteur, 0, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_suppression(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx) { return begin_suppression(titre, auteur, &__ctx, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_suppression(const ::std::string& titre, const ::std::string& auteur, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_suppression(titre, auteur, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_suppression(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_suppression(titre, auteur, &__ctx, __del, __cookie); } ::Ice::AsyncResultPtr begin_suppression(const ::std::string& titre, const ::std::string& auteur, const ::serveur::Callback_ServeurIceMP3_suppressionPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_suppression(titre, auteur, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_suppression(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx, const ::serveur::Callback_ServeurIceMP3_suppressionPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_suppression(titre, auteur, &__ctx, __del, __cookie); } void end_suppression(const ::Ice::AsyncResultPtr&); private: void suppression(const ::std::string&, const ::std::string&, const ::Ice::Context*); ::Ice::AsyncResultPtr begin_suppression(const ::std::string&, const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0); public: ::std::string lireMp3(const ::std::string& titre, const ::std::string& auteur) { return lireMp3(titre, auteur, 0); } ::std::string lireMp3(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx) { return lireMp3(titre, auteur, &__ctx); } #ifdef ICE_CPP11 ::Ice::AsyncResultPtr begin_lireMp3(const ::std::string& titre, const ::std::string& auteur, const ::IceInternal::Function<void (const ::std::string&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return __begin_lireMp3(titre, auteur, 0, __response, __exception, __sent); } ::Ice::AsyncResultPtr begin_lireMp3(const ::std::string& titre, const ::std::string& auteur, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_lireMp3(titre, auteur, 0, ::Ice::newCallback(__completed, __sent), 0); } ::Ice::AsyncResultPtr begin_lireMp3(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::std::string&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return __begin_lireMp3(titre, auteur, &__ctx, __response, __exception, __sent); } ::Ice::AsyncResultPtr begin_lireMp3(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_lireMp3(titre, auteur, &__ctx, ::Ice::newCallback(__completed, __sent)); } private: ::Ice::AsyncResultPtr __begin_lireMp3(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::std::string&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent) { class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC { public: Cpp11CB(const ::std::function<void (const ::std::string&)>& responseFunc, const ::std::function<void (const ::Ice::Exception&)>& exceptionFunc, const ::std::function<void (bool)>& sentFunc) : ::IceInternal::Cpp11FnCallbackNC(exceptionFunc, sentFunc), _response(responseFunc) { CallbackBase::checkCallback(true, responseFunc || exceptionFunc != nullptr); } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::std::string __ret; try { __ret = __proxy->end_lireMp3(__result); } catch(::Ice::Exception& ex) { Cpp11FnCallbackNC::__exception(__result, ex); return; } if(_response != nullptr) { _response(__ret); } } private: ::std::function<void (const ::std::string&)> _response; }; return begin_lireMp3(titre, auteur, __ctx, new Cpp11CB(__response, __exception, __sent)); } public: #endif ::Ice::AsyncResultPtr begin_lireMp3(const ::std::string& titre, const ::std::string& auteur) { return begin_lireMp3(titre, auteur, 0, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_lireMp3(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx) { return begin_lireMp3(titre, auteur, &__ctx, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_lireMp3(const ::std::string& titre, const ::std::string& auteur, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_lireMp3(titre, auteur, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_lireMp3(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_lireMp3(titre, auteur, &__ctx, __del, __cookie); } ::Ice::AsyncResultPtr begin_lireMp3(const ::std::string& titre, const ::std::string& auteur, const ::serveur::Callback_ServeurIceMP3_lireMp3Ptr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_lireMp3(titre, auteur, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_lireMp3(const ::std::string& titre, const ::std::string& auteur, const ::Ice::Context& __ctx, const ::serveur::Callback_ServeurIceMP3_lireMp3Ptr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_lireMp3(titre, auteur, &__ctx, __del, __cookie); } ::std::string end_lireMp3(const ::Ice::AsyncResultPtr&); private: ::std::string lireMp3(const ::std::string&, const ::std::string&, const ::Ice::Context*); ::Ice::AsyncResultPtr begin_lireMp3(const ::std::string&, const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0); public: ::std::string lireMp3ParFichier(const ::std::string& fichier) { return lireMp3ParFichier(fichier, 0); } ::std::string lireMp3ParFichier(const ::std::string& fichier, const ::Ice::Context& __ctx) { return lireMp3ParFichier(fichier, &__ctx); } #ifdef ICE_CPP11 ::Ice::AsyncResultPtr begin_lireMp3ParFichier(const ::std::string& fichier, const ::IceInternal::Function<void (const ::std::string&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return __begin_lireMp3ParFichier(fichier, 0, __response, __exception, __sent); } ::Ice::AsyncResultPtr begin_lireMp3ParFichier(const ::std::string& fichier, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_lireMp3ParFichier(fichier, 0, ::Ice::newCallback(__completed, __sent), 0); } ::Ice::AsyncResultPtr begin_lireMp3ParFichier(const ::std::string& fichier, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::std::string&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return __begin_lireMp3ParFichier(fichier, &__ctx, __response, __exception, __sent); } ::Ice::AsyncResultPtr begin_lireMp3ParFichier(const ::std::string& fichier, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_lireMp3ParFichier(fichier, &__ctx, ::Ice::newCallback(__completed, __sent)); } private: ::Ice::AsyncResultPtr __begin_lireMp3ParFichier(const ::std::string& fichier, const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::std::string&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent) { class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC { public: Cpp11CB(const ::std::function<void (const ::std::string&)>& responseFunc, const ::std::function<void (const ::Ice::Exception&)>& exceptionFunc, const ::std::function<void (bool)>& sentFunc) : ::IceInternal::Cpp11FnCallbackNC(exceptionFunc, sentFunc), _response(responseFunc) { CallbackBase::checkCallback(true, responseFunc || exceptionFunc != nullptr); } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::std::string __ret; try { __ret = __proxy->end_lireMp3ParFichier(__result); } catch(::Ice::Exception& ex) { Cpp11FnCallbackNC::__exception(__result, ex); return; } if(_response != nullptr) { _response(__ret); } } private: ::std::function<void (const ::std::string&)> _response; }; return begin_lireMp3ParFichier(fichier, __ctx, new Cpp11CB(__response, __exception, __sent)); } public: #endif ::Ice::AsyncResultPtr begin_lireMp3ParFichier(const ::std::string& fichier) { return begin_lireMp3ParFichier(fichier, 0, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_lireMp3ParFichier(const ::std::string& fichier, const ::Ice::Context& __ctx) { return begin_lireMp3ParFichier(fichier, &__ctx, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_lireMp3ParFichier(const ::std::string& fichier, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_lireMp3ParFichier(fichier, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_lireMp3ParFichier(const ::std::string& fichier, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_lireMp3ParFichier(fichier, &__ctx, __del, __cookie); } ::Ice::AsyncResultPtr begin_lireMp3ParFichier(const ::std::string& fichier, const ::serveur::Callback_ServeurIceMP3_lireMp3ParFichierPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_lireMp3ParFichier(fichier, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_lireMp3ParFichier(const ::std::string& fichier, const ::Ice::Context& __ctx, const ::serveur::Callback_ServeurIceMP3_lireMp3ParFichierPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_lireMp3ParFichier(fichier, &__ctx, __del, __cookie); } ::std::string end_lireMp3ParFichier(const ::Ice::AsyncResultPtr&); private: ::std::string lireMp3ParFichier(const ::std::string&, const ::Ice::Context*); ::Ice::AsyncResultPtr begin_lireMp3ParFichier(const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0); public: bool stopMp3(const ::std::string& nom) { return stopMp3(nom, 0); } bool stopMp3(const ::std::string& nom, const ::Ice::Context& __ctx) { return stopMp3(nom, &__ctx); } #ifdef ICE_CPP11 ::Ice::AsyncResultPtr begin_stopMp3(const ::std::string& nom, const ::IceInternal::Function<void (bool)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return __begin_stopMp3(nom, 0, __response, __exception, __sent); } ::Ice::AsyncResultPtr begin_stopMp3(const ::std::string& nom, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_stopMp3(nom, 0, ::Ice::newCallback(__completed, __sent), 0); } ::Ice::AsyncResultPtr begin_stopMp3(const ::std::string& nom, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (bool)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>()) { return __begin_stopMp3(nom, &__ctx, __response, __exception, __sent); } ::Ice::AsyncResultPtr begin_stopMp3(const ::std::string& nom, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>()) { return begin_stopMp3(nom, &__ctx, ::Ice::newCallback(__completed, __sent)); } private: ::Ice::AsyncResultPtr __begin_stopMp3(const ::std::string& nom, const ::Ice::Context* __ctx, const ::IceInternal::Function<void (bool)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent) { class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC { public: Cpp11CB(const ::std::function<void (bool)>& responseFunc, const ::std::function<void (const ::Ice::Exception&)>& exceptionFunc, const ::std::function<void (bool)>& sentFunc) : ::IceInternal::Cpp11FnCallbackNC(exceptionFunc, sentFunc), _response(responseFunc) { CallbackBase::checkCallback(true, responseFunc || exceptionFunc != nullptr); } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); bool __ret; try { __ret = __proxy->end_stopMp3(__result); } catch(::Ice::Exception& ex) { Cpp11FnCallbackNC::__exception(__result, ex); return; } if(_response != nullptr) { _response(__ret); } } private: ::std::function<void (bool)> _response; }; return begin_stopMp3(nom, __ctx, new Cpp11CB(__response, __exception, __sent)); } public: #endif ::Ice::AsyncResultPtr begin_stopMp3(const ::std::string& nom) { return begin_stopMp3(nom, 0, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_stopMp3(const ::std::string& nom, const ::Ice::Context& __ctx) { return begin_stopMp3(nom, &__ctx, ::IceInternal::__dummyCallback, 0); } ::Ice::AsyncResultPtr begin_stopMp3(const ::std::string& nom, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_stopMp3(nom, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_stopMp3(const ::std::string& nom, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_stopMp3(nom, &__ctx, __del, __cookie); } ::Ice::AsyncResultPtr begin_stopMp3(const ::std::string& nom, const ::serveur::Callback_ServeurIceMP3_stopMp3Ptr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_stopMp3(nom, 0, __del, __cookie); } ::Ice::AsyncResultPtr begin_stopMp3(const ::std::string& nom, const ::Ice::Context& __ctx, const ::serveur::Callback_ServeurIceMP3_stopMp3Ptr& __del, const ::Ice::LocalObjectPtr& __cookie = 0) { return begin_stopMp3(nom, &__ctx, __del, __cookie); } bool end_stopMp3(const ::Ice::AsyncResultPtr&); private: bool stopMp3(const ::std::string&, const ::Ice::Context*); ::Ice::AsyncResultPtr begin_stopMp3(const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0); public: ::IceInternal::ProxyHandle<ServeurIceMP3> ice_context(const ::Ice::Context& __context) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_context(__context).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_adapterId(const ::std::string& __id) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_adapterId(__id).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_locatorCacheTimeout(int __timeout) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_connectionCached(bool __cached) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_endpointSelection(::Ice::EndpointSelectionType __est) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_secure(bool __secure) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_secure(__secure).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_preferSecure(bool __preferSecure) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_router(const ::Ice::RouterPrx& __router) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_router(__router).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_locator(const ::Ice::LocatorPrx& __locator) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_locator(__locator).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_collocationOptimized(bool __co) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_twoway() const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_twoway().get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_oneway() const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_oneway().get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_batchOneway() const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_batchOneway().get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_datagram() const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_datagram().get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_batchDatagram() const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_batchDatagram().get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_compress(bool __compress) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_compress(__compress).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_timeout(int __timeout) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_connectionId(const ::std::string& __id) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_connectionId(__id).get()); } ::IceInternal::ProxyHandle<ServeurIceMP3> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const { return dynamic_cast<ServeurIceMP3*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get()); } static const ::std::string& ice_staticId(); private: virtual ::IceInternal::Handle< ::IceDelegateM::Ice::Object> __createDelegateM(); virtual ::IceInternal::Handle< ::IceDelegateD::Ice::Object> __createDelegateD(); virtual ::IceProxy::Ice::Object* __newInstance() const; }; } } namespace IceDelegate { namespace serveur { class ServeurIceMP3 : virtual public ::IceDelegate::Ice::Object { public: virtual void ajoutfichier(const ::std::string&, const ::std::string&, const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&) = 0; virtual ::std::string recherche(const ::std::string&, const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&) = 0; virtual ::serveur::listetitre rechercheTitre(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&) = 0; virtual ::serveur::listeauteur rechercheAuteur(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&) = 0; virtual void suppression(const ::std::string&, const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&) = 0; virtual ::std::string lireMp3(const ::std::string&, const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&) = 0; virtual ::std::string lireMp3ParFichier(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&) = 0; virtual bool stopMp3(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&) = 0; }; } } namespace IceDelegateM { namespace serveur { class ServeurIceMP3 : virtual public ::IceDelegate::serveur::ServeurIceMP3, virtual public ::IceDelegateM::Ice::Object { public: virtual void ajoutfichier(const ::std::string&, const ::std::string&, const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual ::std::string recherche(const ::std::string&, const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual ::serveur::listetitre rechercheTitre(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual ::serveur::listeauteur rechercheAuteur(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual void suppression(const ::std::string&, const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual ::std::string lireMp3(const ::std::string&, const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual ::std::string lireMp3ParFichier(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual bool stopMp3(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); }; } } namespace IceDelegateD { namespace serveur { class ServeurIceMP3 : virtual public ::IceDelegate::serveur::ServeurIceMP3, virtual public ::IceDelegateD::Ice::Object { public: virtual void ajoutfichier(const ::std::string&, const ::std::string&, const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual ::std::string recherche(const ::std::string&, const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual ::serveur::listetitre rechercheTitre(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual ::serveur::listeauteur rechercheAuteur(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual void suppression(const ::std::string&, const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual ::std::string lireMp3(const ::std::string&, const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual ::std::string lireMp3ParFichier(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); virtual bool stopMp3(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&); }; } } namespace serveur { class ServeurIceMP3 : virtual public ::Ice::Object { public: typedef ServeurIceMP3Prx ProxyType; typedef ServeurIceMP3Ptr PointerType; virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const; virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const; virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const; static const ::std::string& ice_staticId(); virtual void ajoutfichier(const ::std::string&, const ::std::string&, const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0; ::Ice::DispatchStatus ___ajoutfichier(::IceInternal::Incoming&, const ::Ice::Current&); virtual ::std::string recherche(const ::std::string&, const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0; ::Ice::DispatchStatus ___recherche(::IceInternal::Incoming&, const ::Ice::Current&); virtual ::serveur::listetitre rechercheTitre(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0; ::Ice::DispatchStatus ___rechercheTitre(::IceInternal::Incoming&, const ::Ice::Current&); virtual ::serveur::listeauteur rechercheAuteur(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0; ::Ice::DispatchStatus ___rechercheAuteur(::IceInternal::Incoming&, const ::Ice::Current&); virtual void suppression(const ::std::string&, const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0; ::Ice::DispatchStatus ___suppression(::IceInternal::Incoming&, const ::Ice::Current&); virtual ::std::string lireMp3(const ::std::string&, const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0; ::Ice::DispatchStatus ___lireMp3(::IceInternal::Incoming&, const ::Ice::Current&); virtual ::std::string lireMp3ParFichier(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0; ::Ice::DispatchStatus ___lireMp3ParFichier(::IceInternal::Incoming&, const ::Ice::Current&); virtual bool stopMp3(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0; ::Ice::DispatchStatus ___stopMp3(::IceInternal::Incoming&, const ::Ice::Current&); virtual ::Ice::DispatchStatus __dispatch(::IceInternal::Incoming&, const ::Ice::Current&); protected: virtual void __writeImpl(::IceInternal::BasicStream*) const; virtual void __readImpl(::IceInternal::BasicStream*); #ifdef __SUNPRO_CC using ::Ice::Object::__writeImpl; using ::Ice::Object::__readImpl; #endif }; inline bool operator==(const ServeurIceMP3& l, const ServeurIceMP3& r) { return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r); } inline bool operator<(const ServeurIceMP3& l, const ServeurIceMP3& r) { return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r); } } namespace serveur { template<class T> class CallbackNC_ServeurIceMP3_ajoutfichier : public Callback_ServeurIceMP3_ajoutfichier_Base, public ::IceInternal::OnewayCallbackNC<T> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception&); typedef void (T::*Sent)(bool); typedef void (T::*Response)(); CallbackNC_ServeurIceMP3_ajoutfichier(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::OnewayCallbackNC<T>(obj, cb, excb, sentcb) { } }; template<class T> Callback_ServeurIceMP3_ajoutfichierPtr newCallback_ServeurIceMP3_ajoutfichier(const IceUtil::Handle<T>& instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_ajoutfichier<T>(instance, cb, excb, sentcb); } template<class T> Callback_ServeurIceMP3_ajoutfichierPtr newCallback_ServeurIceMP3_ajoutfichier(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_ajoutfichier<T>(instance, 0, excb, sentcb); } template<class T> Callback_ServeurIceMP3_ajoutfichierPtr newCallback_ServeurIceMP3_ajoutfichier(T* instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_ajoutfichier<T>(instance, cb, excb, sentcb); } template<class T> Callback_ServeurIceMP3_ajoutfichierPtr newCallback_ServeurIceMP3_ajoutfichier(T* instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_ajoutfichier<T>(instance, 0, excb, sentcb); } template<class T, typename CT> class Callback_ServeurIceMP3_ajoutfichier : public Callback_ServeurIceMP3_ajoutfichier_Base, public ::IceInternal::OnewayCallback<T, CT> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception& , const CT&); typedef void (T::*Sent)(bool , const CT&); typedef void (T::*Response)(const CT&); Callback_ServeurIceMP3_ajoutfichier(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::OnewayCallback<T, CT>(obj, cb, excb, sentcb) { } }; template<class T, typename CT> Callback_ServeurIceMP3_ajoutfichierPtr newCallback_ServeurIceMP3_ajoutfichier(const IceUtil::Handle<T>& instance, void (T::*cb)(const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_ajoutfichier<T, CT>(instance, cb, excb, sentcb); } template<class T, typename CT> Callback_ServeurIceMP3_ajoutfichierPtr newCallback_ServeurIceMP3_ajoutfichier(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_ajoutfichier<T, CT>(instance, 0, excb, sentcb); } template<class T, typename CT> Callback_ServeurIceMP3_ajoutfichierPtr newCallback_ServeurIceMP3_ajoutfichier(T* instance, void (T::*cb)(const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_ajoutfichier<T, CT>(instance, cb, excb, sentcb); } template<class T, typename CT> Callback_ServeurIceMP3_ajoutfichierPtr newCallback_ServeurIceMP3_ajoutfichier(T* instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_ajoutfichier<T, CT>(instance, 0, excb, sentcb); } template<class T> class CallbackNC_ServeurIceMP3_recherche : public Callback_ServeurIceMP3_recherche_Base, public ::IceInternal::TwowayCallbackNC<T> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception&); typedef void (T::*Sent)(bool); typedef void (T::*Response)(const ::std::string&); CallbackNC_ServeurIceMP3_recherche(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), response(cb) { } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::std::string __ret; try { __ret = __proxy->end_recherche(__result); } catch(::Ice::Exception& ex) { ::IceInternal::CallbackNC<T>::__exception(__result, ex); return; } if(response) { (::IceInternal::CallbackNC<T>::callback.get()->*response)(__ret); } } Response response; }; template<class T> Callback_ServeurIceMP3_recherchePtr newCallback_ServeurIceMP3_recherche(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::std::string&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_recherche<T>(instance, cb, excb, sentcb); } template<class T> Callback_ServeurIceMP3_recherchePtr newCallback_ServeurIceMP3_recherche(T* instance, void (T::*cb)(const ::std::string&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_recherche<T>(instance, cb, excb, sentcb); } template<class T, typename CT> class Callback_ServeurIceMP3_recherche : public Callback_ServeurIceMP3_recherche_Base, public ::IceInternal::TwowayCallback<T, CT> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception& , const CT&); typedef void (T::*Sent)(bool , const CT&); typedef void (T::*Response)(const ::std::string&, const CT&); Callback_ServeurIceMP3_recherche(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), response(cb) { } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::std::string __ret; try { __ret = __proxy->end_recherche(__result); } catch(::Ice::Exception& ex) { ::IceInternal::Callback<T, CT>::__exception(__result, ex); return; } if(response) { (::IceInternal::Callback<T, CT>::callback.get()->*response)(__ret, CT::dynamicCast(__result->getCookie())); } } Response response; }; template<class T, typename CT> Callback_ServeurIceMP3_recherchePtr newCallback_ServeurIceMP3_recherche(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::std::string&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_recherche<T, CT>(instance, cb, excb, sentcb); } template<class T, typename CT> Callback_ServeurIceMP3_recherchePtr newCallback_ServeurIceMP3_recherche(T* instance, void (T::*cb)(const ::std::string&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_recherche<T, CT>(instance, cb, excb, sentcb); } template<class T> class CallbackNC_ServeurIceMP3_rechercheTitre : public Callback_ServeurIceMP3_rechercheTitre_Base, public ::IceInternal::TwowayCallbackNC<T> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception&); typedef void (T::*Sent)(bool); typedef void (T::*Response)(const ::serveur::listetitre&); CallbackNC_ServeurIceMP3_rechercheTitre(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), response(cb) { } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::serveur::listetitre __ret; try { __ret = __proxy->end_rechercheTitre(__result); } catch(::Ice::Exception& ex) { ::IceInternal::CallbackNC<T>::__exception(__result, ex); return; } if(response) { (::IceInternal::CallbackNC<T>::callback.get()->*response)(__ret); } } Response response; }; template<class T> Callback_ServeurIceMP3_rechercheTitrePtr newCallback_ServeurIceMP3_rechercheTitre(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::serveur::listetitre&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_rechercheTitre<T>(instance, cb, excb, sentcb); } template<class T> Callback_ServeurIceMP3_rechercheTitrePtr newCallback_ServeurIceMP3_rechercheTitre(T* instance, void (T::*cb)(const ::serveur::listetitre&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_rechercheTitre<T>(instance, cb, excb, sentcb); } template<class T, typename CT> class Callback_ServeurIceMP3_rechercheTitre : public Callback_ServeurIceMP3_rechercheTitre_Base, public ::IceInternal::TwowayCallback<T, CT> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception& , const CT&); typedef void (T::*Sent)(bool , const CT&); typedef void (T::*Response)(const ::serveur::listetitre&, const CT&); Callback_ServeurIceMP3_rechercheTitre(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), response(cb) { } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::serveur::listetitre __ret; try { __ret = __proxy->end_rechercheTitre(__result); } catch(::Ice::Exception& ex) { ::IceInternal::Callback<T, CT>::__exception(__result, ex); return; } if(response) { (::IceInternal::Callback<T, CT>::callback.get()->*response)(__ret, CT::dynamicCast(__result->getCookie())); } } Response response; }; template<class T, typename CT> Callback_ServeurIceMP3_rechercheTitrePtr newCallback_ServeurIceMP3_rechercheTitre(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::serveur::listetitre&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_rechercheTitre<T, CT>(instance, cb, excb, sentcb); } template<class T, typename CT> Callback_ServeurIceMP3_rechercheTitrePtr newCallback_ServeurIceMP3_rechercheTitre(T* instance, void (T::*cb)(const ::serveur::listetitre&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_rechercheTitre<T, CT>(instance, cb, excb, sentcb); } template<class T> class CallbackNC_ServeurIceMP3_rechercheAuteur : public Callback_ServeurIceMP3_rechercheAuteur_Base, public ::IceInternal::TwowayCallbackNC<T> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception&); typedef void (T::*Sent)(bool); typedef void (T::*Response)(const ::serveur::listeauteur&); CallbackNC_ServeurIceMP3_rechercheAuteur(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), response(cb) { } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::serveur::listeauteur __ret; try { __ret = __proxy->end_rechercheAuteur(__result); } catch(::Ice::Exception& ex) { ::IceInternal::CallbackNC<T>::__exception(__result, ex); return; } if(response) { (::IceInternal::CallbackNC<T>::callback.get()->*response)(__ret); } } Response response; }; template<class T> Callback_ServeurIceMP3_rechercheAuteurPtr newCallback_ServeurIceMP3_rechercheAuteur(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::serveur::listeauteur&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_rechercheAuteur<T>(instance, cb, excb, sentcb); } template<class T> Callback_ServeurIceMP3_rechercheAuteurPtr newCallback_ServeurIceMP3_rechercheAuteur(T* instance, void (T::*cb)(const ::serveur::listeauteur&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_rechercheAuteur<T>(instance, cb, excb, sentcb); } template<class T, typename CT> class Callback_ServeurIceMP3_rechercheAuteur : public Callback_ServeurIceMP3_rechercheAuteur_Base, public ::IceInternal::TwowayCallback<T, CT> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception& , const CT&); typedef void (T::*Sent)(bool , const CT&); typedef void (T::*Response)(const ::serveur::listeauteur&, const CT&); Callback_ServeurIceMP3_rechercheAuteur(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), response(cb) { } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::serveur::listeauteur __ret; try { __ret = __proxy->end_rechercheAuteur(__result); } catch(::Ice::Exception& ex) { ::IceInternal::Callback<T, CT>::__exception(__result, ex); return; } if(response) { (::IceInternal::Callback<T, CT>::callback.get()->*response)(__ret, CT::dynamicCast(__result->getCookie())); } } Response response; }; template<class T, typename CT> Callback_ServeurIceMP3_rechercheAuteurPtr newCallback_ServeurIceMP3_rechercheAuteur(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::serveur::listeauteur&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_rechercheAuteur<T, CT>(instance, cb, excb, sentcb); } template<class T, typename CT> Callback_ServeurIceMP3_rechercheAuteurPtr newCallback_ServeurIceMP3_rechercheAuteur(T* instance, void (T::*cb)(const ::serveur::listeauteur&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_rechercheAuteur<T, CT>(instance, cb, excb, sentcb); } template<class T> class CallbackNC_ServeurIceMP3_suppression : public Callback_ServeurIceMP3_suppression_Base, public ::IceInternal::OnewayCallbackNC<T> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception&); typedef void (T::*Sent)(bool); typedef void (T::*Response)(); CallbackNC_ServeurIceMP3_suppression(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::OnewayCallbackNC<T>(obj, cb, excb, sentcb) { } }; template<class T> Callback_ServeurIceMP3_suppressionPtr newCallback_ServeurIceMP3_suppression(const IceUtil::Handle<T>& instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_suppression<T>(instance, cb, excb, sentcb); } template<class T> Callback_ServeurIceMP3_suppressionPtr newCallback_ServeurIceMP3_suppression(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_suppression<T>(instance, 0, excb, sentcb); } template<class T> Callback_ServeurIceMP3_suppressionPtr newCallback_ServeurIceMP3_suppression(T* instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_suppression<T>(instance, cb, excb, sentcb); } template<class T> Callback_ServeurIceMP3_suppressionPtr newCallback_ServeurIceMP3_suppression(T* instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_suppression<T>(instance, 0, excb, sentcb); } template<class T, typename CT> class Callback_ServeurIceMP3_suppression : public Callback_ServeurIceMP3_suppression_Base, public ::IceInternal::OnewayCallback<T, CT> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception& , const CT&); typedef void (T::*Sent)(bool , const CT&); typedef void (T::*Response)(const CT&); Callback_ServeurIceMP3_suppression(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::OnewayCallback<T, CT>(obj, cb, excb, sentcb) { } }; template<class T, typename CT> Callback_ServeurIceMP3_suppressionPtr newCallback_ServeurIceMP3_suppression(const IceUtil::Handle<T>& instance, void (T::*cb)(const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_suppression<T, CT>(instance, cb, excb, sentcb); } template<class T, typename CT> Callback_ServeurIceMP3_suppressionPtr newCallback_ServeurIceMP3_suppression(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_suppression<T, CT>(instance, 0, excb, sentcb); } template<class T, typename CT> Callback_ServeurIceMP3_suppressionPtr newCallback_ServeurIceMP3_suppression(T* instance, void (T::*cb)(const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_suppression<T, CT>(instance, cb, excb, sentcb); } template<class T, typename CT> Callback_ServeurIceMP3_suppressionPtr newCallback_ServeurIceMP3_suppression(T* instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_suppression<T, CT>(instance, 0, excb, sentcb); } template<class T> class CallbackNC_ServeurIceMP3_lireMp3 : public Callback_ServeurIceMP3_lireMp3_Base, public ::IceInternal::TwowayCallbackNC<T> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception&); typedef void (T::*Sent)(bool); typedef void (T::*Response)(const ::std::string&); CallbackNC_ServeurIceMP3_lireMp3(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), response(cb) { } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::std::string __ret; try { __ret = __proxy->end_lireMp3(__result); } catch(::Ice::Exception& ex) { ::IceInternal::CallbackNC<T>::__exception(__result, ex); return; } if(response) { (::IceInternal::CallbackNC<T>::callback.get()->*response)(__ret); } } Response response; }; template<class T> Callback_ServeurIceMP3_lireMp3Ptr newCallback_ServeurIceMP3_lireMp3(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::std::string&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_lireMp3<T>(instance, cb, excb, sentcb); } template<class T> Callback_ServeurIceMP3_lireMp3Ptr newCallback_ServeurIceMP3_lireMp3(T* instance, void (T::*cb)(const ::std::string&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_lireMp3<T>(instance, cb, excb, sentcb); } template<class T, typename CT> class Callback_ServeurIceMP3_lireMp3 : public Callback_ServeurIceMP3_lireMp3_Base, public ::IceInternal::TwowayCallback<T, CT> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception& , const CT&); typedef void (T::*Sent)(bool , const CT&); typedef void (T::*Response)(const ::std::string&, const CT&); Callback_ServeurIceMP3_lireMp3(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), response(cb) { } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::std::string __ret; try { __ret = __proxy->end_lireMp3(__result); } catch(::Ice::Exception& ex) { ::IceInternal::Callback<T, CT>::__exception(__result, ex); return; } if(response) { (::IceInternal::Callback<T, CT>::callback.get()->*response)(__ret, CT::dynamicCast(__result->getCookie())); } } Response response; }; template<class T, typename CT> Callback_ServeurIceMP3_lireMp3Ptr newCallback_ServeurIceMP3_lireMp3(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::std::string&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_lireMp3<T, CT>(instance, cb, excb, sentcb); } template<class T, typename CT> Callback_ServeurIceMP3_lireMp3Ptr newCallback_ServeurIceMP3_lireMp3(T* instance, void (T::*cb)(const ::std::string&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_lireMp3<T, CT>(instance, cb, excb, sentcb); } template<class T> class CallbackNC_ServeurIceMP3_lireMp3ParFichier : public Callback_ServeurIceMP3_lireMp3ParFichier_Base, public ::IceInternal::TwowayCallbackNC<T> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception&); typedef void (T::*Sent)(bool); typedef void (T::*Response)(const ::std::string&); CallbackNC_ServeurIceMP3_lireMp3ParFichier(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), response(cb) { } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::std::string __ret; try { __ret = __proxy->end_lireMp3ParFichier(__result); } catch(::Ice::Exception& ex) { ::IceInternal::CallbackNC<T>::__exception(__result, ex); return; } if(response) { (::IceInternal::CallbackNC<T>::callback.get()->*response)(__ret); } } Response response; }; template<class T> Callback_ServeurIceMP3_lireMp3ParFichierPtr newCallback_ServeurIceMP3_lireMp3ParFichier(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::std::string&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_lireMp3ParFichier<T>(instance, cb, excb, sentcb); } template<class T> Callback_ServeurIceMP3_lireMp3ParFichierPtr newCallback_ServeurIceMP3_lireMp3ParFichier(T* instance, void (T::*cb)(const ::std::string&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_lireMp3ParFichier<T>(instance, cb, excb, sentcb); } template<class T, typename CT> class Callback_ServeurIceMP3_lireMp3ParFichier : public Callback_ServeurIceMP3_lireMp3ParFichier_Base, public ::IceInternal::TwowayCallback<T, CT> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception& , const CT&); typedef void (T::*Sent)(bool , const CT&); typedef void (T::*Response)(const ::std::string&, const CT&); Callback_ServeurIceMP3_lireMp3ParFichier(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), response(cb) { } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); ::std::string __ret; try { __ret = __proxy->end_lireMp3ParFichier(__result); } catch(::Ice::Exception& ex) { ::IceInternal::Callback<T, CT>::__exception(__result, ex); return; } if(response) { (::IceInternal::Callback<T, CT>::callback.get()->*response)(__ret, CT::dynamicCast(__result->getCookie())); } } Response response; }; template<class T, typename CT> Callback_ServeurIceMP3_lireMp3ParFichierPtr newCallback_ServeurIceMP3_lireMp3ParFichier(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::std::string&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_lireMp3ParFichier<T, CT>(instance, cb, excb, sentcb); } template<class T, typename CT> Callback_ServeurIceMP3_lireMp3ParFichierPtr newCallback_ServeurIceMP3_lireMp3ParFichier(T* instance, void (T::*cb)(const ::std::string&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_lireMp3ParFichier<T, CT>(instance, cb, excb, sentcb); } template<class T> class CallbackNC_ServeurIceMP3_stopMp3 : public Callback_ServeurIceMP3_stopMp3_Base, public ::IceInternal::TwowayCallbackNC<T> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception&); typedef void (T::*Sent)(bool); typedef void (T::*Response)(bool); CallbackNC_ServeurIceMP3_stopMp3(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), response(cb) { } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); bool __ret; try { __ret = __proxy->end_stopMp3(__result); } catch(::Ice::Exception& ex) { ::IceInternal::CallbackNC<T>::__exception(__result, ex); return; } if(response) { (::IceInternal::CallbackNC<T>::callback.get()->*response)(__ret); } } Response response; }; template<class T> Callback_ServeurIceMP3_stopMp3Ptr newCallback_ServeurIceMP3_stopMp3(const IceUtil::Handle<T>& instance, void (T::*cb)(bool), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_stopMp3<T>(instance, cb, excb, sentcb); } template<class T> Callback_ServeurIceMP3_stopMp3Ptr newCallback_ServeurIceMP3_stopMp3(T* instance, void (T::*cb)(bool), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0) { return new CallbackNC_ServeurIceMP3_stopMp3<T>(instance, cb, excb, sentcb); } template<class T, typename CT> class Callback_ServeurIceMP3_stopMp3 : public Callback_ServeurIceMP3_stopMp3_Base, public ::IceInternal::TwowayCallback<T, CT> { public: typedef IceUtil::Handle<T> TPtr; typedef void (T::*Exception)(const ::Ice::Exception& , const CT&); typedef void (T::*Sent)(bool , const CT&); typedef void (T::*Response)(bool, const CT&); Callback_ServeurIceMP3_stopMp3(const TPtr& obj, Response cb, Exception excb, Sent sentcb) : ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), response(cb) { } virtual void __completed(const ::Ice::AsyncResultPtr& __result) const { ::serveur::ServeurIceMP3Prx __proxy = ::serveur::ServeurIceMP3Prx::uncheckedCast(__result->getProxy()); bool __ret; try { __ret = __proxy->end_stopMp3(__result); } catch(::Ice::Exception& ex) { ::IceInternal::Callback<T, CT>::__exception(__result, ex); return; } if(response) { (::IceInternal::Callback<T, CT>::callback.get()->*response)(__ret, CT::dynamicCast(__result->getCookie())); } } Response response; }; template<class T, typename CT> Callback_ServeurIceMP3_stopMp3Ptr newCallback_ServeurIceMP3_stopMp3(const IceUtil::Handle<T>& instance, void (T::*cb)(bool, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_stopMp3<T, CT>(instance, cb, excb, sentcb); } template<class T, typename CT> Callback_ServeurIceMP3_stopMp3Ptr newCallback_ServeurIceMP3_stopMp3(T* instance, void (T::*cb)(bool, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0) { return new Callback_ServeurIceMP3_stopMp3<T, CT>(instance, cb, excb, sentcb); } } #endif
[ "maxime.manos@gmail.com" ]
maxime.manos@gmail.com
5d6e987068b51031b76f2076532bcfae2348cd33
d8ca1ea0f085ff7b0f62533209e4a1598768f1ba
/vendor/capnproto/c++/src/capnp/compiler/module-loader.c++
3fd470aae0ed83789c603e572a2c570b2ac837b9
[ "MIT", "BSD-2-Clause" ]
permissive
patrickToca/goq
ff26a365ce09ba21fafcc8b8b83159316d088018
7fbfeaa8d5a736252b7862d0d7dbdf5cd352a47f
refs/heads/master
2021-01-21T01:56:17.274767
2015-02-27T20:46:06
2015-02-27T20:46:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,141
// Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors // Licensed under the MIT License: // // 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 "module-loader.h" #include "lexer.h" #include "parser.h" #include <kj/vector.h> #include <kj/mutex.h> #include <kj/debug.h> #include <kj/io.h> #include <capnp/message.h> #include <map> #include <unistd.h> #include <sys/mman.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <errno.h> namespace capnp { namespace compiler { namespace { class MmapDisposer: public kj::ArrayDisposer { protected: void disposeImpl(void* firstElement, size_t elementSize, size_t elementCount, size_t capacity, void (*destroyElement)(void*)) const { munmap(firstElement, elementSize * elementCount); } }; constexpr MmapDisposer mmapDisposer = MmapDisposer(); kj::Array<const char> mmapForRead(kj::StringPtr filename) { int fd; // We already established that the file exists, so this should not fail. KJ_SYSCALL(fd = open(filename.cStr(), O_RDONLY), filename); kj::AutoCloseFd closer(fd); struct stat stats; KJ_SYSCALL(fstat(fd, &stats)); if (S_ISREG(stats.st_mode)) { if (stats.st_size == 0) { // mmap()ing zero bytes will fail. return nullptr; } // Regular file. Just mmap() it. const void* mapping = mmap(NULL, stats.st_size, PROT_READ, MAP_SHARED, fd, 0); if (mapping == MAP_FAILED) { KJ_FAIL_SYSCALL("mmap", errno, filename); } return kj::Array<const char>( reinterpret_cast<const char*>(mapping), stats.st_size, mmapDisposer); } else { // This could be a stream of some sort, like a pipe. Fall back to read(). // TODO(cleanup): This does a lot of copies. Not sure I care. kj::Vector<char> data(8192); char buffer[4096]; for (;;) { ssize_t n; KJ_SYSCALL(n = read(fd, buffer, sizeof(buffer))); if (n == 0) break; data.addAll(buffer, buffer + n); } return data.releaseAsArray(); } } static char* canonicalizePath(char* path) { // Taken from some old C code of mine. // Preconditions: // - path has already been determined to be relative, perhaps because the pointer actually points // into the middle of some larger path string, in which case it must point to the character // immediately after a '/'. // Invariants: // - src points to the beginning of a path component. // - dst points to the location where the path component should end up, if it is not special. // - src == path or src[-1] == '/'. // - dst == path or dst[-1] == '/'. char* src = path; char* dst = path; char* locked = dst; // dst cannot backtrack past this char* partEnd; bool hasMore; for (;;) { while (*src == '/') { // Skip duplicate slash. ++src; } partEnd = strchr(src, '/'); hasMore = partEnd != NULL; if (hasMore) { *partEnd = '\0'; } else { partEnd = src + strlen(src); } if (strcmp(src, ".") == 0) { // Skip it. } else if (strcmp(src, "..") == 0) { if (dst > locked) { // Backtrack over last path component. --dst; while (dst > locked && dst[-1] != '/') --dst; } else { locked += 3; goto copy; } } else { // Copy if needed. copy: if (dst < src) { memmove(dst, src, partEnd - src); dst += partEnd - src; } else { dst = partEnd; } *dst++ = '/'; } if (hasMore) { src = partEnd + 1; } else { // Oops, we have to remove the trailing '/'. if (dst == path) { // Oops, there is no trailing '/'. We have to return ".". strcpy(path, "."); return path + 1; } else { // Remove the trailing '/'. Note that this means that opening the file will work even // if it is not a directory, where normally it should fail on non-directories when a // trailing '/' is present. If this is a problem, we need to add some sort of special // handling for this case where we stat() it separately to check if it is a directory, // because Ekam findInput will not accept a trailing '/'. --dst; *dst = '\0'; return dst; } } } } kj::String canonicalizePath(kj::StringPtr path) { KJ_STACK_ARRAY(char, result, path.size() + 1, 128, 512); strcpy(result.begin(), path.begin()); char* start = path.startsWith("/") ? result.begin() + 1 : result.begin(); char* end = canonicalizePath(start); return kj::heapString(result.slice(0, end - result.begin())); } kj::String catPath(kj::StringPtr base, kj::StringPtr add) { if (add.size() > 0 && add[0] == '/') { return kj::heapString(add); } const char* pos = base.end(); while (pos > base.begin() && pos[-1] != '/') { --pos; } return kj::str(base.slice(0, pos - base.begin()), add); } } // namespace class ModuleLoader::Impl { public: Impl(GlobalErrorReporter& errorReporter): errorReporter(errorReporter) {} void addImportPath(kj::String path) { searchPath.add(kj::heapString(kj::mv(path))); } kj::Maybe<Module&> loadModule(kj::StringPtr localName, kj::StringPtr sourceName); kj::Maybe<Module&> loadModuleFromSearchPath(kj::StringPtr sourceName); GlobalErrorReporter& getErrorReporter() { return errorReporter; } private: GlobalErrorReporter& errorReporter; kj::Vector<kj::String> searchPath; std::map<kj::StringPtr, kj::Own<Module>> modules; }; class ModuleLoader::ModuleImpl final: public Module { public: ModuleImpl(ModuleLoader::Impl& loader, kj::String localName, kj::String sourceName) : loader(loader), localName(kj::mv(localName)), sourceName(kj::mv(sourceName)) {} kj::StringPtr getLocalName() { return localName; } kj::StringPtr getSourceName() override { return sourceName; } Orphan<ParsedFile> loadContent(Orphanage orphanage) override { kj::Array<const char> content = mmapForRead(localName); lineBreaks = nullptr; // In case loadContent() is called multiple times. lineBreaks = lineBreaksSpace.construct(content); MallocMessageBuilder lexedBuilder; auto statements = lexedBuilder.initRoot<LexedStatements>(); lex(content, statements, *this); auto parsed = orphanage.newOrphan<ParsedFile>(); parseFile(statements.getStatements(), parsed.get(), *this); return parsed; } kj::Maybe<Module&> importRelative(kj::StringPtr importPath) override { if (importPath.size() > 0 && importPath[0] == '/') { return loader.loadModuleFromSearchPath(importPath.slice(1)); } else { return loader.loadModule(catPath(localName, importPath), catPath(sourceName, importPath)); } } void addError(uint32_t startByte, uint32_t endByte, kj::StringPtr message) override { auto& lines = *KJ_REQUIRE_NONNULL(lineBreaks, "Can't report errors until loadContent() is called."); loader.getErrorReporter().addError( localName, lines.toSourcePos(startByte), lines.toSourcePos(endByte), message); } bool hadErrors() override { return loader.getErrorReporter().hadErrors(); } private: ModuleLoader::Impl& loader; kj::String localName; kj::String sourceName; kj::SpaceFor<LineBreakTable> lineBreaksSpace; kj::Maybe<kj::Own<LineBreakTable>> lineBreaks; }; // ======================================================================================= kj::Maybe<Module&> ModuleLoader::Impl::loadModule( kj::StringPtr localName, kj::StringPtr sourceName) { kj::String canonicalLocalName = canonicalizePath(localName); kj::String canonicalSourceName = canonicalizePath(sourceName); auto iter = modules.find(canonicalLocalName); if (iter != modules.end()) { // Return existing file. return *iter->second; } if (access(canonicalLocalName.cStr(), F_OK) < 0) { // No such file. return nullptr; } auto module = kj::heap<ModuleImpl>( *this, kj::mv(canonicalLocalName), kj::mv(canonicalSourceName)); auto& result = *module; modules.insert(std::make_pair(result.getLocalName(), kj::mv(module))); return result; } kj::Maybe<Module&> ModuleLoader::Impl::loadModuleFromSearchPath(kj::StringPtr sourceName) { for (auto& search: searchPath) { kj::String candidate = kj::str(search, "/", sourceName); char* end = canonicalizePath(candidate.begin() + (candidate[0] == '/')); KJ_IF_MAYBE(module, loadModule( kj::heapString(candidate.slice(0, end - candidate.begin())), sourceName)) { return *module; } } return nullptr; } // ======================================================================================= ModuleLoader::ModuleLoader(GlobalErrorReporter& errorReporter) : impl(kj::heap<Impl>(errorReporter)) {} ModuleLoader::~ModuleLoader() noexcept(false) {} void ModuleLoader::addImportPath(kj::String path) { impl->addImportPath(kj::mv(path)); } kj::Maybe<Module&> ModuleLoader::loadModule(kj::StringPtr localName, kj::StringPtr sourceName) { return impl->loadModule(localName, sourceName); } } // namespace compiler } // namespace capnp
[ "j.e.aten@gmail.com" ]
j.e.aten@gmail.com
493449be64435240ebfc2f0c8cdfb1ba4ee85eb8
48dfa4685aeac52ce9cca101af5f1c5f1c0de893
/src/Timer.cpp
cfb6b859f3c212ebd14002fbd3323c7ff1fe519f
[]
no_license
Zetagon/Game-Project
2050c2536a1e943414a1102e516e7699ebad099a
2874fd8490b452e536714f3d725169cc288aa069
refs/heads/master
2021-01-13T10:29:43.475733
2016-10-22T19:43:58
2016-10-22T19:43:58
72,221,441
0
0
null
null
null
null
UTF-8
C++
false
false
616
cpp
#include "Timer.h" #include <iostream> Timer::Timer() { //ctor prevSysTime = 0; timeSince = 0; } Timer::~Timer() { //dtor } /** \brief Start or restart the timer * */ void Timer::start() { timeSince = SDL_GetTicks() - prevSysTime; prevSysTime = SDL_GetTicks(); // std::cout << "TimeSince: " << timeSince << "\n"; } /** \brief * * \return the time that has passed since \r start was called, or 0 * */ double Timer::getTime() { double temp = (SDL_GetTicks() - prevSysTime); // std::cout << temp << " " << SDL_GetTicks()<< " " << prevSysTime << "\n"; return temp; }
[ "leo.ericson@yahoo.se" ]
leo.ericson@yahoo.se
e48734151afced1482a188bad01a2b2074837191
3bee15e5c499481935b7c716964d5b95e3743aeb
/libvast/vast/concept/parseable/vast/offset.hpp
e2abd84269fab9d06c7abb2ce9e69b3774125017
[ "BSD-3-Clause" ]
permissive
sangminoh/vast
113d62ddbbc00d88711e9731122fa025eb4e22bc
4ea59c45ffabe23d35d8b13b5e58a48d47d86aee
refs/heads/master
2021-01-19T10:18:14.768229
2017-02-04T23:32:21
2017-02-04T23:32:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
828
hpp
#ifndef VAST_CONCEPT_PARSEABLE_VAST_OFFSET_HPP #define VAST_CONCEPT_PARSEABLE_VAST_OFFSET_HPP #include "vast/offset.hpp" #include "vast/concept/parseable/core/list.hpp" #include "vast/concept/parseable/core/operators.hpp" #include "vast/concept/parseable/core/parser.hpp" #include "vast/concept/parseable/numeric/integral.hpp" namespace vast { struct offset_parser : parser<offset_parser> { using attribute = offset; template <typename Iterator, typename Attribute> bool parse(Iterator& f, Iterator const& l, Attribute& a) const { static auto p = parsers::u32 % ','; return p.parse(f, l, a); } }; template <> struct parser_registry<offset> { using type = offset_parser; }; namespace parsers { static auto const offset = make_parser<vast::offset>(); } // namespace parsers } // namespace vast #endif
[ "vallentin@icir.org" ]
vallentin@icir.org
78d9d0ac7503e501e498ce0de47c8f6b1514114f
31ac07ecd9225639bee0d08d00f037bd511e9552
/externals/OCCTLib/inc/Vrml_ShapeHints.hxx
fd43a3a8802e7a37b1fa8d3a0f60efc039f46a0d
[]
no_license
litao1009/SimpleRoom
4520e0034e4f90b81b922657b27f201842e68e8e
287de738c10b86ff8f61b15e3b8afdfedbcb2211
refs/heads/master
2021-01-20T19:56:39.507899
2016-07-29T08:01:57
2016-07-29T08:01:57
64,462,604
1
0
null
null
null
null
UTF-8
C++
false
false
3,849
hxx
// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _Vrml_ShapeHints_HeaderFile #define _Vrml_ShapeHints_HeaderFile #ifndef _Standard_HeaderFile #include <Standard.hxx> #endif #ifndef _Standard_DefineAlloc_HeaderFile #include <Standard_DefineAlloc.hxx> #endif #ifndef _Standard_Macro_HeaderFile #include <Standard_Macro.hxx> #endif #ifndef _Vrml_VertexOrdering_HeaderFile #include <Vrml_VertexOrdering.hxx> #endif #ifndef _Vrml_ShapeType_HeaderFile #include <Vrml_ShapeType.hxx> #endif #ifndef _Vrml_FaceType_HeaderFile #include <Vrml_FaceType.hxx> #endif #ifndef _Standard_Real_HeaderFile #include <Standard_Real.hxx> #endif #ifndef _Standard_OStream_HeaderFile #include <Standard_OStream.hxx> #endif //! defines a ShapeHints node of VRML specifying properties of geometry and its appearance. <br> //! The ShapeHints node indicates that IndexedFaceSets are solid, contain ordered vertices, or <br> //! contain convex faces. <br> //! These hints allow VRML implementations to optimize certain rendering features. <br> //! Optimizations that may be performed include enabling back-face culling and disabling <br> //! two-sided lighting. For example, if an object is solid and has ordered vertices, an <br> //! implementation may turn on backface culling and turn off two-sided lighting. To ensure <br> //! that an IndexedFaceSet can be viewed from either direction, set shapeType to be <br> //! UNKNOWN_SHAPE_TYPE. <br> //! If you know that your shapes are closed and will alwsys be viewed from the outside, set <br> //! vertexOrdering to be either CLOCKWISE or COUNTERCLOCKWISE (depending on <br> //! how you built your object), and set shapeType to be SOLID. Placing this near the top of <br> //! your VRML file will allow the scene to be rendered much faster. <br> //! The ShapeHints node also affects how default normals are generated. When an <br> //! IndexedFaceSet has to generate default normals, it uses the creaseAngle field to determine <br> //! which edges should be smoothly shaded and which ones should have a sharp crease. The <br> //! crease angle is the angle between surface normals on adjacent polygons. For example, a <br> //! crease angle of .5 radians (the default value) means that an edge between two adjacent <br> //! polygonal faces will be smooth shaded if the normals to the two faces form an angle that is <br> //! less than .5 radians (about 30 degrees). Otherwise, it will be faceted. <br> class Vrml_ShapeHints { public: DEFINE_STANDARD_ALLOC Standard_EXPORT Vrml_ShapeHints(const Vrml_VertexOrdering aVertexOrdering = Vrml_UNKNOWN_ORDERING,const Vrml_ShapeType aShapeType = Vrml_UNKNOWN_SHAPE_TYPE,const Vrml_FaceType aFaceType = Vrml_CONVEX,const Standard_Real aAngle = 0.5); Standard_EXPORT void SetVertexOrdering(const Vrml_VertexOrdering aVertexOrdering) ; Standard_EXPORT Vrml_VertexOrdering VertexOrdering() const; Standard_EXPORT void SetShapeType(const Vrml_ShapeType aShapeType) ; Standard_EXPORT Vrml_ShapeType ShapeType() const; Standard_EXPORT void SetFaceType(const Vrml_FaceType aFaceType) ; Standard_EXPORT Vrml_FaceType FaceType() const; Standard_EXPORT void SetAngle(const Standard_Real aAngle) ; Standard_EXPORT Standard_Real Angle() const; Standard_EXPORT Standard_OStream& Print(Standard_OStream& anOStream) const; protected: private: Vrml_VertexOrdering myVertexOrdering; Vrml_ShapeType myShapeType; Vrml_FaceType myFaceType; Standard_Real myAngle; }; // other Inline functions and methods (like "C++: function call" methods) #endif
[ "litao1009@gmail.com" ]
litao1009@gmail.com
3dddad1ce8268ef4168e9ad2de451be5e6cf147e
e4a5154dfbe141e5f92f45b8b476eb738ea2e20b
/EasyEngine/easy_engine.hpp
445f1bd4b4c9def22fd9ae5bc4bbcbd4c9862fc6
[]
no_license
Abyabyabyabyabya/EasyEngine
dde8203e4b9173a30542b7dce4fb42f6d16aba54
8ebc01d1da1bb0ee65a6d4f95ac60be918362e0d
refs/heads/master
2022-12-27T21:15:39.027935
2020-10-13T13:55:24
2020-10-13T13:55:24
281,957,655
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
1,452
hpp
/// /// \file easy_engine.hpp /// \brief エンジンクラス定義ヘッダ /// /// \author 板場 /// /// \par 履歴 /// - 2020/8/19 /// - ヘッダ追加 /// - EasyEngine 定義 /// #ifndef INCLUDED_EGEG_EASY_ENGINE_HEADER_ #define INCLUDED_EGEG_EASY_ENGINE_HEADER_ #include <memory> #include "noncopyable.hpp" #include "result.hpp" #include "window_manager.hpp" #include "time.hpp" #include "update_manager.hpp" #include "input_manager.hpp" #include "graphic_manager.hpp" namespace easy_engine { /****************************************************************************** EasyEngine ******************************************************************************/ /// /// \brief エンジン本体 /// /// サブシステムのルートでもあります。 /// class EasyEngine final : t_lib::Noncopyable<EasyEngine> { public : static void run(); static WindowManager& window() noexcept; static const Clock& clock() noexcept; static UpdateManager<EasyEngine>& updator() noexcept; static i_lib::InputManager& input() noexcept; static g_lib::GraphicManager& graphics() noexcept; private : EasyEngine() = default; static t_lib::DetailedResult<bool, const char*> startUp(); static void shutDown() noexcept; struct Impl; static std::unique_ptr<Impl> impl_; }; } // namespace easy_engine #endif // !INCLUDED_EGEG_EASY_ENGINE_HEADER_ // EOF
[ "harutch.222@gmail.com" ]
harutch.222@gmail.com
235ee2768f859ee7c2e9e293fe5f7c73e9e3d662
5456502f97627278cbd6e16d002d50f1de3da7bb
/content/browser/pepper_flash_settings_helper_impl.h
d5e077ed579b4bf732f308b31e11310f91541631
[ "BSD-3-Clause" ]
permissive
TrellixVulnTeam/Chromium_7C66
72d108a413909eb3bd36c73a6c2f98de1573b6e5
c8649ab2a0f5a747369ed50351209a42f59672ee
refs/heads/master
2023-03-16T12:51:40.231959
2017-12-20T10:38:26
2017-12-20T10:38:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,569
h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_PEPPER_FLASH_SETTINGS_HELPER_IMPL_H_ #define CONTENT_BROWSER_PEPPER_FLASH_SETTINGS_HELPER_IMPL_H_ #include "base/compiler_specific.h" #include "base/macros.h" #include "content/browser/ppapi_plugin_process_host.h" #include "content/public/browser/pepper_flash_settings_helper.h" namespace content { class CONTENT_EXPORT PepperFlashSettingsHelperImpl : public PepperFlashSettingsHelper, NON_EXPORTED_BASE(public PpapiPluginProcessHost::BrokerClient) { public: PepperFlashSettingsHelperImpl(); // PepperFlashSettingsHelper implementation. void OpenChannelToBroker(const base::FilePath& path, const OpenChannelCallback& callback) override; // PpapiPluginProcessHost::BrokerClient implementation. void GetPpapiChannelInfo(base::ProcessHandle* renderer_handle, int* renderer_id) override; void OnPpapiChannelOpened(const IPC::ChannelHandle& channel_handle, base::ProcessId plugin_pid, int plugin_child_id) override; bool Incognito() override; protected: ~PepperFlashSettingsHelperImpl() override; private: OpenChannelCallback callback_; DISALLOW_COPY_AND_ASSIGN(PepperFlashSettingsHelperImpl); }; } // namespace content #endif // CONTENT_BROWSER_PEPPER_FLASH_SETTINGS_HELPER_IMPL_H_
[ "lixiaodonglove7@aliyun.com" ]
lixiaodonglove7@aliyun.com
893b058bed3697d3ab8dcd3fba516942d9ea3954
983eb5f991890fda0a096993ada7afbdb65ce49c
/firmware/DnD20/Devices.ino
35b09d3c2132709e5c0d9bc7af2e2b6247d66a07
[]
no_license
MatthewCLind/DnD20
c7a9b28bc891b4171c4333c5309b42f6aa88e5ac
d58b7953abb8a215aaa7baea8745141678314581
refs/heads/master
2020-03-30T22:33:53.161759
2018-12-03T03:39:34
2018-12-03T03:39:34
151,671,108
0
0
null
null
null
null
UTF-8
C++
false
false
3,657
ino
// ---------------------------------- // NeoPixel // ---------------------------------- // change the neopixel to a pre-defined color void set_neopixel_color(RgbColor c) { for(int i = 0; i < NUM_NEOPIXELS; i++) { neopixel.SetPixelColor(i, c); } neopixel.Show(); } // ---------------------------------- // OLED // ---------------------------------- // write something to the OLED, // the text will be resized based on the number of characters void update_OLED(String value) { // font sizes 1 2 3 4 const int char_width[] = {6, 12, 18, 24}; const int char_height[] = {8, 16, 24, 32}; // maximum number of characters at font 1 = 84 int num_chars = (value.length() < 84) ? value.length() : 84; int font_size; int x_offset = 0; int y_offset = 0; if(num_chars <= 5) { font_size = 4; y_offset = (32 - char_height[3]) / 2; x_offset = (128 - (char_width[3] * num_chars)) / 2; } else if(num_chars <= 7) { font_size = 3; y_offset = (32 - char_height[2]) / 2; x_offset = (128 - (char_width[2] * num_chars))/2; } else if(num_chars <= 20) // size 2 accomodates 2 rows of 10 chars { font_size = 2; x_offset = (num_chars <= 10) ? (128 - (char_width[1] * num_chars))/2 : 0; int rows = (num_chars <= 10) ? 1 : 2; y_offset = (32 - (char_height[1] * rows)) / 2; } else { int max_columns = 21; font_size = 1; x_offset = (num_chars <= 21) ? (128 - (char_width[0] * num_chars))/2 : 0; int rows; if(num_chars <= max_columns) { rows = 1; } else if(num_chars <= 2*max_columns) { rows = 2; } else if(num_chars <= 3*max_columns) { rows = 3; } else if(num_chars <= 4*max_columns) { rows = 4; } y_offset = (32 - (char_height[0] * rows)) / 2; } display.clearDisplay(); display.setTextSize(font_size); display.setCursor(x_offset, y_offset); display.println(value); display.display(); } // display a die type on the OLED void display_dN(int N) { String die_type = "d"; die_type.concat(N); update_OLED(die_type); } void display_mode(int zmode) { String display_string = mode_display_strings[zmode]; update_OLED(display_string); } // ---------------------------------- // Button // ---------------------------------- // cycle through the modes, // button_press will be set to true if the button was only clicked int button_mode_select(bool* button_press) { *button_press = false; bool mode_change = false; int next_mode = device_state.mode; long start_time = millis(); int elapsed_time; while(digitalRead(BUTTON_PIN) == LOW) { elapsed_time = millis() - start_time; if(elapsed_time > 1500) { mode_change = true; next_mode++; next_mode = next_mode % NUM_MODES; String display_string = mode_display_strings[next_mode]; update_OLED(display_string); start_time = millis(); // so you can continue to cycle through } yield(); } if(!mode_change && elapsed_time > 10 && elapsed_time < 1000) { *button_press = true; } return next_mode; } // cycle through the button modes int button_mode_select() { int next_mode = device_state.mode; long start_time = millis(); int elapsed_time; while(digitalRead(BUTTON_PIN) == LOW) { elapsed_time = millis() - start_time; if(elapsed_time > 1500) { next_mode++; next_mode = next_mode % NUM_MODES; display_mode(next_mode); start_time = millis(); // so you can continue to cycle through } yield(); } return next_mode; }
[ "32720559+MatthewCLind@users.noreply.github.com" ]
32720559+MatthewCLind@users.noreply.github.com
35dd53701199f8b678212d57c172b64edbfa654c
4462d31838cc56cfbac3e705c7ca1650c68ccecf
/Assignments/bin/a1/p735A.cpp
d09c3feb6f277abf01d2fcaf0d3b3be3cfc27222
[]
no_license
WilliamLemens/Competitive
ad94c49addbe08f531d6528d127dbfdbfca27654
0fb20b65fa1698288272811a68bf4fe600062bf9
refs/heads/master
2021-09-19T18:56:20.400676
2018-07-30T23:41:45
2018-07-30T23:41:45
120,822,384
0
0
null
null
null
null
UTF-8
C++
false
false
876
cpp
#include <stdio.h> #include <iostream> int main() { int len, leap; std::cin >> len; std::cin >> leap; char board[len]; std::cin >> board; int g = 0, t = 0, i = 0, found = 0; while (i < len && found < 2) { if (board[i] == 'G') { g = i; found++; } else if (board[i] == 'T') { t = i; found++; } i++; } // Just a guick check to see if it's even possible without obstructions if (t%leap != g%leap) { std::cout << "NO" << std::endl; return 0; } // Actual logic if (t > g) { g += leap; while (g != t) { if (board[g] != '.') { std::cout << "NO" << std::endl; return 0; } g += leap; } } else { g -= leap; while (g != t) { if (board[g] != '.') { std::cout << "NO" << std::endl; return 0; } g -= leap; } } std::cout << "YES" << std::endl; }
[ "william.lemens@gmail.com" ]
william.lemens@gmail.com
67f5e45146192c3a3e60d87ff119596adb1b1e79
fb81d60eaea26c8feed34cdf8bcb302e6246caad
/PARTICLE MEAN/4-particleMean_v2/Constants.cc
529156bef58d7a8306f54179e88599a28aaaeaa0
[]
no_license
auroraleso/Cpp-course
e03ff719c7b6dc8ee56f1dde9b5a0521231edc94
dce1cd39da03c22e595f513379aa0b7e14228c1e
refs/heads/main
2023-03-27T07:14:24.730861
2021-03-25T17:41:00
2021-03-25T17:41:00
345,602,280
0
0
null
null
null
null
UTF-8
C++
false
false
83
cc
#include "Constants.h" Constants::Constants(){ } Constants::~Constants(){ }
[ "auroraleso@Aurora-PC.localdomain" ]
auroraleso@Aurora-PC.localdomain
4bed644c9f8049476ecd28299b87a62aaf197da6
0aa31d232a6949dfbe7fd25365578d2788440d95
/src/qt/optionsmodel.h
67d949993f09709b745146be16d72081cb615759
[ "MIT" ]
permissive
QuarterCoin/QuarterCoin-Wallet
55382d234b9605822d64b2a857e1e57bff5022b3
bf6bf8ec8a2907e1fa29305df389e0ae7156e544
refs/heads/master
2020-09-09T05:03:29.646947
2019-11-15T02:03:58
2019-11-15T02:03:58
221,355,759
0
0
null
null
null
null
UTF-8
C++
false
false
3,910
h
// Copyright (c) 2011-2018 The Bitcoin Core developers // Copyright (c) 2017 The Raven Core developers // Copyright (c) 2018 The Quartercoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef QTC_QT_OPTIONSMODEL_H #define QTC_QT_OPTIONSMODEL_H #include "amount.h" #include <QAbstractListModel> QT_BEGIN_NAMESPACE class QNetworkProxy; QT_END_NAMESPACE /** Interface from Qt to configuration data structure for Quartercoin client. To Qt, the options are presented as a list with the different options laid out vertically. This can be changed to a tree once the settings become sufficiently complex. */ class OptionsModel : public QAbstractListModel { Q_OBJECT public: explicit OptionsModel(QObject *parent = 0, bool resetSettings = false); enum OptionID { StartAtStartup, // bool HideTrayIcon, // bool MinimizeToTray, // bool MapPortUPnP, // bool MinimizeOnClose, // bool ProxyUse, // bool ProxyIP, // QString ProxyPort, // int ProxyUseTor, // bool ProxyIPTor, // QString ProxyPortTor, // int DisplayUnit, // QuartercoinUnits::Unit ThirdPartyTxUrls, // QString Language, // QString CoinControlFeatures, // bool ThreadsScriptVerif, // int DatabaseCache, // int SpendZeroConfChange, // bool Listen, // bool CustomFeeFeatures, // bool DarkModeEnabled, // bool OptionIDRowCount, }; void Init(bool resetSettings = false); void Reset(); int rowCount(const QModelIndex & parent = QModelIndex()) const; QVariant data(const QModelIndex & index, int role = Qt::DisplayRole) const; bool setData(const QModelIndex & index, const QVariant & value, int role = Qt::EditRole); /** Updates current unit in memory, settings and emits displayUnitChanged(newUnit) signal */ void setDisplayUnit(const QVariant &value); /* Explicit getters */ bool getHideTrayIcon() const { return fHideTrayIcon; } bool getMinimizeToTray() const { return fMinimizeToTray; } bool getMinimizeOnClose() const { return fMinimizeOnClose; } int getDisplayUnit() const { return nDisplayUnit; } QString getThirdPartyTxUrls() const { return strThirdPartyTxUrls; } bool getProxySettings(QNetworkProxy& proxy) const; bool getCoinControlFeatures() const { return fCoinControlFeatures; } bool getCustomFeeFeatures() const { return fCustomFeeFeatures; } bool getDarkModeEnabled() const { return fDarkModeEnabled; } const QString& getOverriddenByCommandLine() { return strOverriddenByCommandLine; } /* Restart flag helper */ void setRestartRequired(bool fRequired); bool isRestartRequired() const; private: /* Qt-only settings */ bool fHideTrayIcon; bool fMinimizeToTray; bool fMinimizeOnClose; QString language; int nDisplayUnit; QString strThirdPartyTxUrls; bool fCoinControlFeatures; /** QTC START*/ bool fCustomFeeFeatures; bool fDarkModeEnabled; /** QTC END*/ /* settings that were overridden by command-line */ QString strOverriddenByCommandLine; // Add option to list of GUI options overridden through command line/config file void addOverriddenOption(const std::string &option); // Check settings version and upgrade default values if required void checkAndMigrate(); Q_SIGNALS: void displayUnitChanged(int unit); void coinControlFeaturesChanged(bool); void customFeeFeaturesChanged(bool); void hideTrayIconChanged(bool); }; #endif // QTC_QT_OPTIONSMODEL_H
[ "splnty@live.com" ]
splnty@live.com
3dcf968d871687c75e52ab471bf3f56cae670b6a
3e85351787b37cf51d0bfe2bc8ac5aabe5755e0a
/src/GPIO_core/GPIO_core.cpp
0e94b8683c3d9b8c28fb0045b3a7a5d0e048766d
[]
no_license
mroctavious/CentzonThinClient
46c239d55c0cb9a9980975b6fb12d530c02fa510
8337c7ffd1753ba7285f1de052e2b048076c4245
refs/heads/master
2022-04-16T22:49:32.288460
2020-04-15T21:36:15
2020-04-15T21:36:15
256,041,639
2
0
null
null
null
null
UTF-8
C++
false
false
2,825
cpp
#include <fstream> #include <string> #include <iostream> #include <sstream> #include "GPIO_core.h" using namespace std; GPIOClass::GPIOClass() { this->gpionum = "4"; //GPIO4 is default } GPIOClass::GPIOClass(string gnum) { this->gpionum = gnum; //Instatiate GPIOClass object for GPIO pin number "gnum" } int GPIOClass::export_gpio() { string export_str = "/sys/class/gpio/export"; ofstream exportgpio(export_str.c_str()); // Open "export" file. Convert C++ string to C string. Required for all Linux pathnames if ( exportgpio.is_open() == false ){ cout << " OPERATION FAILED: Unable to export GPIO"<< this->gpionum <<" ."<< endl; return -1; } exportgpio << this->gpionum ; //write GPIO number to export exportgpio.close(); //close export file return 0; } int GPIOClass::unexport_gpio() { string unexport_str = "/sys/class/gpio/unexport"; ofstream unexportgpio(unexport_str.c_str()); //Open unexport file if ( unexportgpio.is_open() == false ){ cout << " OPERATION FAILED: Unable to unexport GPIO"<< this->gpionum <<" ."<< endl; return -1; } unexportgpio << this->gpionum ; //write GPIO number to unexport unexportgpio.close(); //close unexport file return 0; } int GPIOClass::setdir_gpio(string dir) { string setdir_str ="/sys/class/gpio/gpio" + this->gpionum + "/direction"; ofstream setdirgpio(setdir_str.c_str()); // open direction file for gpio if ( setdirgpio.is_open() == false ){ cout << " OPERATION FAILED: Unable to set direction of GPIO"<< this->gpionum <<" ."<< endl; return -1; } setdirgpio << dir; //write direction to direction file setdirgpio.close(); // close direction file return 0; } int GPIOClass::setval_gpio(string val) { string setval_str = "/sys/class/gpio/gpio" + this->gpionum + "/value"; ofstream setvalgpio(setval_str.c_str()); // open value file for gpio if ( setvalgpio.is_open() == false ){ cout << " OPERATION FAILED: Unable to set the value of GPIO"<< this->gpionum <<" ."<< endl; return -1; } setvalgpio << val ;//write value to value file setvalgpio.close();// close value file return 0; } int GPIOClass::getval_gpio(string& val){ string getval_str = "/sys/class/gpio/gpio" + this->gpionum + "/value"; ifstream getvalgpio(getval_str.c_str());// open value file for gpio if ( getvalgpio.is_open() == false ){ cout << " OPERATION FAILED: Unable to get value of GPIO"<< this->gpionum <<" ."<< endl; return -1; } getvalgpio >> val ; //read gpio value if(val != "0") val = "1"; else val = "0"; getvalgpio.close(); //close the value file return 0; } string GPIOClass::get_gpionum(){ return this->gpionum; }
[ "erodriguez35@alumnos.uaq.mx" ]
erodriguez35@alumnos.uaq.mx
4aa835a070c04f59e3f0de2f75881a982f607da7
b0a6e931ab45abc968b4f4f171545229bc5abdb4
/d5/ex05/RobotomyRequestForm.hpp
e2029baefc80ff1e4dbe4db0ac954709999af2f6
[]
no_license
interstates21/cpp-piscine
57c7cc1d7d0e2a8feb8b56513c409c00f54ea80a
a0289d3d3f09e66156f144f1a76224d0e64cb328
refs/heads/master
2022-01-14T14:04:34.708473
2019-07-13T13:11:52
2019-07-13T13:11:52
193,234,766
0
0
null
null
null
null
UTF-8
C++
false
false
462
hpp
#ifndef ROBOTOMY_HPP #define ROBOTOMY_HPP #include <iostream> #include "Form.hpp" class RobotomyRequestForm : public Form { private: std::string _target; RobotomyRequestForm(); public: RobotomyRequestForm(std::string &); virtual ~RobotomyRequestForm(); RobotomyRequestForm(RobotomyRequestForm &); RobotomyRequestForm &operator=(RobotomyRequestForm const &); virtual void execute(Bureaucrat const &executor) const; }; #endif
[ "okupin@e1r7p5.unit.ua" ]
okupin@e1r7p5.unit.ua
723d4f2191b03a841ee8c8b7b5258a5fec8dc0d7
4eb4242f67eb54c601885461bac58b648d91d561
/third_part/mcpack/public/mc_pack_bits/indexer.h
f6d62b3cdc9c760b7125f26bbf2f070e8e52fd32
[]
no_license
biebipan/coding
630c873ecedc43a9a8698c0f51e26efb536dabd1
7709df7e979f2deb5401d835d0e3b119a7cd88d8
refs/heads/master
2022-01-06T18:52:00.969411
2018-07-18T04:30:02
2018-07-18T04:30:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,701
h
#ifndef __INDEXER__ #define __INDEXER__ #include <stdint.h> template<typename Key, typename Value> class inner_hash { struct node { Key key; Value value; }; int buck_size; node buckets[0]; public: static uint64_t calc_size(uint32_t node_num) { return (uint64_t)node_num * sizeof(node) + sizeof(inner_hash); } inner_hash(int node_num) { buck_size = node_num; memset(buckets, 0, node_num * sizeof(node)); }; inline Value get(const Key key) { if(buck_size == 0) return 0; int p = key % buck_size; int t = p; while(buckets[p].key != key) { p++; if( p >= buck_size) p -= buck_size; if( p == t) return 0; } return buckets[p].value; } inline int set(Key key, Value value) { int p = key % buck_size; int t = p; while(buckets[p].key != key && buckets[p].key != 0) { p++; if( p >= buck_size) p -= buck_size; if( p == t) return -1; } if(buckets[p].key == key) { buckets[p].value = (void *)-1; return -1; } else { buckets[p].key = key; buckets[p].value = value; return 0; } } }; template<typename Value> class inner_map { int buck_size; Value buckets[0]; public: inline static uint64_t calc_size(uint32_t node_num) { return (uint64_t)node_num * sizeof(Value) + sizeof(inner_map); } inner_map(int node_num) { buck_size = node_num; memset(buckets, 0, node_num * sizeof(Value)); }; inline Value get(const int i) { if(i<buck_size) return buckets[i]; else return 0; } inline int set(const int i, Value value) { if(i<buck_size) { buckets[i] = value; return 0; } else return -1; } }; #endif
[ "guoliqiang@ubuntu.(none)" ]
guoliqiang@ubuntu.(none)
f8f2debc1924456a097b4ed72fe25dc18399b060
f9aff82f3f9cc76b7fad4198fa1b193bf6e48f58
/src/car_autopilot/src/path_planner.cpp
2fa27e1f3ec27721478d385497fced90f3c703e6
[ "MIT" ]
permissive
byu-magicc/mocap_car
c93126f9112edbe9ddf460a53afebc0b81f22fea
cd23dfd891c1d38641910aeb9d3058146d9c53f4
refs/heads/master
2020-04-04T11:28:56.223346
2018-11-07T23:57:05
2018-11-07T23:57:05
155,892,424
1
0
null
null
null
null
UTF-8
C++
false
false
1,112
cpp
#include <ros/ros.h> #include <car_autopilot/Waypoint.h> #define num_waypoints 4 int main(int argc, char **argv) { ros::init(argc, argv, "simple_path_planner"); ros::NodeHandle nh_; ros::NodeHandle nh_ns_("~"); ros::Publisher waypointPublisher = nh_.advertise<car_autopilot::Waypoint>("waypoint_path", 10); // float u = 1.5; // float pn1 = -230.0; // float pe1 = -100.0; // float wps[3*num_waypoints] = // { // pn1 - 10, pe1, u, // pn1, pe1, u, // pn1, pe1 + 10, u, // pn1 - 10, pe1 + 10, u, // }; std::vector<double> wps; nh_ns_.getParam("waypoint_list",wps); // for (int i(0); i < num_waypoints; i++) for (int i(0); i < wps.size()/3; i++) { ros::Duration(0.5).sleep(); car_autopilot::Waypoint new_waypoint; new_waypoint.w[0] = wps[i*3 + 0]; new_waypoint.w[1] = wps[i*3 + 1]; new_waypoint.u_d = wps[i*3 + 2]; if (i == 0) new_waypoint.set_current = true; else new_waypoint.set_current = false; new_waypoint.clear_wp_list = false; waypointPublisher.publish(new_waypoint); } ros::Duration(1.5).sleep(); return 0; }
[ "craig.bidstrup@gmail.com" ]
craig.bidstrup@gmail.com
d9906b2bbfeff6cb88dd40dca9198fb183f3f5f0
08b0b4544980309a12dbf6d4c0cb036245b39ab7
/src/findmf/apps/parseargExtract.h
81ccc6121fa5b4aadba9754a0fb9708a0c7e22db
[ "BSD-3-Clause" ]
permissive
findMF/findMFHCS
f7e5012a02acbfb990c1ec5d541f73fa36ad6267
1be1da010c1d4b0e06a685734fba475d4c1369da
refs/heads/master
2021-01-10T11:30:50.659830
2015-07-03T10:55:17
2015-07-03T10:55:17
8,410,408
0
0
null
null
null
null
UTF-8
C++
false
false
5,674
h
// Copyright : ETH Zurich // License : three-clause BSD license // Authors : Witold Wolski // for full text refer to files: LICENSE, AUTHORS and COPYRIGHT #ifndef PARSEARGEXTRACT_H #define PARSEARGEXTRACT_H #include <boost/program_options.hpp> #include <boost/filesystem.hpp> #include <fstream> #include "findmf/apps/toolparameters.h" namespace b_po = boost::program_options; namespace b_fs = boost::filesystem; /*! *\brief parses the command line arguments using boost::program_options */ inline void analysisParameters(ralab::findmf::apps::Params & ap,b_po::variables_map & vmgeneral){ if(vmgeneral.count("in")) { ap.infile = vmgeneral["in"].as<std::string>(); } else{ std::cerr << "in file argument is required" << std::endl; return; } if(vmgeneral.count("outdir")) { ap.outdir = vmgeneral["outdir"].as<std::string>(); } else{ boost::filesystem::path p(ap.infile); ap.outdir = p.parent_path().string(); } ap.nrthreads = vmgeneral["nrthreads"].as< uint32_t >(); //image generation options ap.ppm=1/vmgeneral["resolution"].as<double>()* 1.e6; ap.minmass = vmgeneral["minMass"].as<double>(); if(vmgeneral.count("maxMass")){ ap.maxmass = vmgeneral["maxMass"].as<double>(); } else{ ap.maxmass = std::numeric_limits<double>::max(); } ap.rt2sum_ = vmgeneral["rt2sum"].as<uint32_t>(); // filtering options ap.mzpixelwidth = vmgeneral["width-MZ"].as<unsigned int>(); if(vmgeneral.count("width-RT")){ ap.rtpixelwidth = vmgeneral["width-RT"].as<unsigned int>(); }else{ ap.rtpixelwidth = ap.mzpixelwidth; } ap.mzscale = vmgeneral["mzscale"].as< double >(); if(vmgeneral.count("rtscale")){ ap.rtscale = vmgeneral["rtscale"].as< double >(); } else{ ap.rtscale = ap.mzscale; } ap.dofilter = vmgeneral["filter"].as<bool>(); // segmentation options ap.minintensity=vmgeneral["minintensity"].as<double>(); ap.writeprojections_ = vmgeneral["writeprojections"].as<bool>(); } /// set up the parameters and pars them. inline int parsecommandlineExtract( int ac, char* av[], b_po::variables_map & vmgeneral ) { try { b_po::options_description general("File Handling:"); general.add_options() ("help,H", "produce help message") ("version,V", "produces version information") ("in,I", b_po::value<std::string>(), "input file") ("outdir,O", b_po::value<std::string>(), "output directory (default same as input)") ("config-file,I", b_po::value<std::string>(), "configuration file") ("nrthreads", b_po::value<uint32_t>()->default_value(4), "nr threads"); b_po::options_description generation("Image Generation Options:"); generation.add_options() ("resolution",b_po::value<double>()->default_value(50000.), "instrument resolution (default 50000).") ("minMass",b_po::value<double>()->default_value(400.), "minimum mass to consider (default 400)") ("maxMass",b_po::value<double>(),"maximum mass to consider") ("rt2sum",b_po::value<uint32_t>()->default_value(1u),"downsampling - number spectra to average (not supported yet)"); b_po::options_description filtering("Image Preprocessing Options :"); filtering.add_options() ("filter",b_po::value<bool>()->default_value(1),"should filtering be performed?") ("mzscale",b_po::value<double>()->default_value(1.5), "scale parameter for gausian smoothing in mz (default 1.5)") ("rtscale",b_po::value<double>(), "scale parameter for gausian smoothing in rt (default same as mzscale)") ("width-MZ", b_po::value<unsigned int>()->default_value(9), "width of MZ peak in pixel - used by background subtraction (default = 9)") ("width-RT", b_po::value<unsigned int>(), "width of RT peak in pixel - used by background subtraction (default = width-MZ)"); b_po::options_description segment("Feature extraction and storage options :"); segment.add_options() ("minintensity",b_po::value<double>()->default_value(5.),"minimum intensity") ("writeprojections",b_po::value<bool>()->default_value(true),"should feature projections be stored in database"); b_po::options_description cmdloptions; cmdloptions.add(general).add(generation).add(filtering).add(segment); b_po::store(b_po::parse_command_line(ac, av, cmdloptions), vmgeneral); b_po::notify(vmgeneral); std::string configfile; if(vmgeneral.count("config-file")) { configfile = vmgeneral["config-file"].as<std::string>(); } b_po::options_description config_file_options; config_file_options.add(general).add(generation).add(filtering).add(segment); if(configfile.size() > 0 && b_fs::exists(configfile)) { std::ifstream ifs(configfile.c_str()); store(parse_config_file(ifs, config_file_options), vmgeneral); b_po::notify(vmgeneral); } else if(configfile.size() == 0){ } else { std::cerr << "Could not find config file." << std::endl; exit(0); } if(!vmgeneral.count("in")) { std::cerr << "input file is obligatory" << std::endl; std::cerr << cmdloptions << "\n"; exit(0); } if(vmgeneral.count("help")) { std::cerr << cmdloptions << "\n"; exit(0); } if(vmgeneral.count("version")) { std::cerr << "1.0.0.3" << "\n"; exit(0); } } catch(std::exception& e) { std::cerr << "error: " << e.what() << "\n"; exit(0); } catch(...) { std::cerr << "Exception of unknown type!\n"; } return 1; }//end parse command line #endif // PARSEARGEXTRACT_H
[ "wewolski@gmail.com" ]
wewolski@gmail.com
276b660c5cc2ff1e9dc4353b1c9a625829e3ccce
34fb2c48d29b4aac014571cbb0d4232896380742
/数据结构/数据结构实验课文件/EXP4/代码3.24/20354047/task3.cpp
60561b1787f281368a03f53a2d223a4e253631a4
[]
no_license
dkhonker/sysu
2aca46818fc9bf77ededa0d8922859c3cabbd1e7
ef3b8d0f6d5bb03b408081c932716dbd37ad0a22
refs/heads/master
2023-06-17T01:09:03.174593
2021-07-14T04:27:07
2021-07-14T04:27:07
382,212,051
0
0
null
null
null
null
UTF-8
C++
false
false
318
cpp
#include <stdio.h> #include <stdlib.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main() { char str[20000],str1[20000]; int pos,len,i,a=0; scanf("%d%d",&pos,&len); scanf("%s",str); for(i=0;a<len;a++,i++,pos++) str1[i]=str[pos-1]; puts(str1); }
[ "2373591933@qq.com" ]
2373591933@qq.com
25c5a7ee0bfa0cf27cd9d05178de770a807b4f90
ce241347f9cb284b837d152e61187f081e3d01a9
/Background.hpp
0a775f7d22cfc4faf3e7f0dfc12c9ddf0ebc678b
[]
no_license
etienneFontaine35/Guillaume_VS_EMSE
2875085402f62455c35b1d7dfa78a186c7650110
ff1fe2c38493c798e84eb45c3fb0a75cb2423889
refs/heads/master
2022-07-19T20:55:58.713881
2020-05-16T17:35:06
2020-05-16T17:35:06
170,454,604
0
0
null
null
null
null
UTF-8
C++
false
false
1,795
hpp
#include <SFML/Graphics.hpp> #include <string> #include <vector> #include <iostream> #include <ctime> #include "Objet_Volant.hpp" #include "Tools.hpp" class Background { public : Background(std::string textureFondPremier_file, std::string textureFondDeuxieme_file, std::string textureParticuleBack_file, std::string textureParticuleFront_file, sf::RenderWindow& fenetre, int const dimension[]); void apparaitreFront(int const dimension[]); void apparaitreBack(int const dimension[]); void disparaitreFront(int const dimension[]); void disparaitreBack(int const dimension[]); void scrolling(int const dimension[]); void afficher(); void mettreAJour(int const dimension[]); private : sf::Texture m_textureFondPremier; sf::Sprite m_spriteFondPremier; sf::Texture m_textureFondDeuxieme; sf::Sprite m_spriteFondDeuxieme; sf::Texture m_textureParticuleBack; sf::Sprite m_spriteParticuleBack; sf::Texture m_textureParticuleFront; sf::Sprite m_spriteParticuleFront; std::vector<ObjVolant> m_particulesFrontEnCours; std::vector<ObjVolant> m_particulesBackEnCours; ObjVolant m_premierFond; ObjVolant m_deuxiemeFond; sf::RenderWindow& m_fenetre; }; class Opening { public : Opening(std::string fichierImage, Inputs& inputs, Hud& hud, int tempsAffichage, int tempsApparition); Opening(std::string fichierImage, Inputs& inputs, Hud& hud, int tempsAffichage); void executer(sf::RenderWindow& fenetre); void executer(sf::RenderWindow& fenetre, std::string texte, int tailleTexte, int const dimension[]); void setTempsAffichage(int temps); private : Hud& m_texte; Inputs& m_inputs; int m_tempsAffichage; int m_tempsApparition; sf::Texture m_imageTexture; sf::Sprite m_imageSprite; sf::Clock m_timerAffichage; };
[ "etienne.fontaine35@gmail.com" ]
etienne.fontaine35@gmail.com
e4feaa4ffb7b57a442880f7f992fe8c6f2e84aa5
a4ca1e0cde964fca9dc35aa808f8e348a2e70278
/Perf/Perf.h
ec15dec5b7e0ef328209fb61bbd270d8b26f1eb0
[]
no_license
tigranmt/perf
174c8c40bf5b363c593b6b486f2c79eec5fefdcc
e47880397902b253c10995bbdb6c0d63d5a41f88
refs/heads/master
2021-09-05T19:21:13.809348
2018-01-30T14:07:20
2018-01-30T14:07:20
119,469,921
0
0
null
null
null
null
UTF-8
C++
false
false
4,374
h
#pragma once #include <iostream> #include <chrono> #include <vector> #include <memory> #include "Sys.h" using namespace std; namespace Perf { /* * Sample performance data struct. * This structure is reported back to the caller of the test */ struct PerfData { double _milliseconds; unsigned long _workingSet; unsigned long _workingSetPeak; string _hardwareInfo; string _testName; }; /* * Run confioguraiton */ struct RunConfiguration { bool reportMemoryData; bool reportHardwareInfo; RunConfiguration() : reportMemoryData(true), reportHardwareInfo(true) {} }; /* * Base class for reporter: a type responsible for visualizing, * reporting recovered performance information. */ class Reporter { public: void virtual ReportData(const Perf::PerfData&) {}; }; /* * Built-in type for reporting performance data in formatted output on console */ class ConsoleReporter : public Reporter { void ReportData(const Perf::PerfData& _perfData) { cout << _perfData._testName.c_str() << "==>" << endl; cout << "\t Runtime: \t " << _perfData._milliseconds << " ms" << endl; if (_perfData._workingSet > 0) cout << "\t Working set: \t " << ((float)_perfData._workingSet)/1024.0f << " Kb" << endl; if (_perfData._workingSetPeak > 0) cout << "\t Working set peak: " << ((float)_perfData._workingSetPeak)/1024.0f << " Kb" << endl; cout << endl; } }; class BasePerf { private: PerfData _pd; protected: unique_ptr<Reporter> _reporter; RunConfiguration _configuration; string _test_name; BasePerf() { _reporter = unique_ptr<Perf::Reporter>(new Perf::ConsoleReporter()); } const PerfData& Data() const { return _pd; } //Allows to inject user-specified reporter void AssignReporter(Perf::Reporter* reporter) { _reporter = unique_ptr<Perf::Reporter>(reporter); } virtual void RunTestBody() = 0; public: void Run() { //retrieve perf data _before_ user test invokation auto start = chrono::steady_clock::now(); unsigned long prev_workingSet = 0, prev_workingSetPeak = 0; if (_configuration.reportMemoryData) { prev_workingSet = System::Info::GetProcessWorkingSet(); prev_workingSetPeak = System::Info::GetProcessWorkingSetPeak(); } RunTestBody(); //retrieve perf data _after_ user test invokation auto end = chrono::steady_clock::now(); if (_configuration.reportMemoryData) { auto cur_workingSet = System::Info::GetProcessWorkingSet(); auto cur_workingSetPeak = System::Info::GetProcessWorkingSetPeak(); _pd._workingSet = (cur_workingSet == prev_workingSet)? cur_workingSet : cur_workingSet - prev_workingSet; _pd._workingSetPeak = (cur_workingSetPeak == prev_workingSetPeak) ? cur_workingSetPeak : cur_workingSetPeak - prev_workingSetPeak; } _pd._milliseconds = chrono::duration <double, milli>(end - start).count(); _pd._testName = _test_name; //reportm collected information _reporter->ReportData(_pd); } }; /* * Factory for constructing (code-generation) of a specified test cases */ class Factory { private: vector<unique_ptr<BasePerf>> tests; static Factory _runner; public: Factory() = default; bool Add(BasePerf* perf) { tests.push_back(move(unique_ptr<BasePerf>(perf))); return true; } static bool Register(BasePerf* perf) { return _runner.Add(perf); } const vector<unique_ptr<BasePerf>>& Tests() const { return tests;} static void RunAllTest() { for (const auto& t : _runner.Tests()) t->Run(); } }; /* * Set of macrosses for generating classes from the name of the Ficture and Name of the test */ #define TYPE_FROM(perf_case, perf_test) perf_case##_##perf_test##_perf #define PERF(perf_case, perf_test) PERF__(perf_case, perf_test, Perf::BasePerf) #define PERF__(perf_case, perf_test, base_class) \ class TYPE_FROM(perf_case, perf_test) : public base_class \ { \ protected:\ void RunTestBody() override; \ static bool registered_sucessfully;\ \ TYPE_FROM(perf_case, perf_test)() { _test_name = " " #perf_case "." #perf_test " "; } \ \ };\ \ bool TYPE_FROM(perf_case, perf_test)::registered_sucessfully = \ ::Perf::Factory::Register(new TYPE_FROM(perf_case, perf_test)());\ \ void TYPE_FROM(perf_case, perf_test)::RunTestBody() }
[ "tigranmt@gmail.com" ]
tigranmt@gmail.com
f796d00083b1fcaa1e907c9e28867f57ff6b1393
8f0b66089ab6acff5007a34432074030f66a79fe
/testcpu/testcpu.cpp
57674cea66f9ccfe795d395930ce2495afc8db52
[]
no_license
Kobey1/dprofiler
378cfd9425799734d73ea8210918e36aeeedef10
97cd909aa22a42f7a30d1edc7932d02e33a10f52
refs/heads/master
2021-01-15T12:11:14.846024
2015-01-11T12:51:04
2015-01-11T12:51:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
160
cpp
// testcpu.cpp : Defines the entry point for the console application. // #include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { return 0; }
[ "lan.john@gmail.com" ]
lan.john@gmail.com
ed9faaef668b3021c2a07b135ac8b63649678646
3f271ccffa54ff199927fb8f8e3e466ae965cbbb
/Task2/Task2A_PThreads.cpp
a2e2bb47627e291926c8c413abd160fb9b7fc791
[]
no_license
johhov/MultithreadedAssignments
9544e6f7c9d087fdb1360cd8de6f56b0a28505e9
2c0f938fc4c7077c410227bfc624b509a86f5115
refs/heads/master
2020-05-29T18:01:08.650968
2014-12-05T21:48:53
2014-12-05T21:48:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,453
cpp
//Task 2A Multithreaded Programming 2014 //Johannes Hovland - 101028 #include <ctime> #include <chrono> #include <stdio.h> #include <stdlib.h> #include <pthread.h> const int ITERATIONS = 10000000; const int THREADS = 4; int partialResults[THREADS]; void *monteCarloPICalculation(void *thrNum){ double x, y; int threadNumber = (intptr_t)thrNum; for (int i = 0; i < ITERATIONS/THREADS; i++) { x = (double)rand() / (double)RAND_MAX; // Random number between 0 and 1 y = (double)rand() / (double)RAND_MAX; if (((x*x) + (y*y)) <= 1.0) { partialResults[threadNumber]++; } } pthread_exit(NULL); } int main (int argc, char* argv[]) { pthread_t threadPool[THREADS]; auto startTime = std::chrono::high_resolution_clock::now(); for (int i = 0; i < THREADS; i++) { pthread_create(&threadPool[i], NULL, &monteCarloPICalculation, (void*)(intptr_t)i); } for (int i = 0; i < THREADS; i++) { pthread_join(threadPool[i], NULL); } int in = 0; for (int i = 0; i < THREADS; i++) { in += partialResults[i]; } double pi = (4.0*in)/ITERATIONS; auto endTime = std::chrono::high_resolution_clock::now(); auto duration = endTime-startTime; auto msDuration = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count(); printf("Monte Carlo aproximation of PI given %d calculations is: %f.\n", ITERATIONS, pi); printf("The calculations took %lu milliseconds using %d pThreads.\n", msDuration, THREADS); return 0; }
[ "johannes.hovland@gmail.com" ]
johannes.hovland@gmail.com
155a42151fbe420b53e37dd8ab837c276b71e1c9
a8fd0d2f3ea31f0cb0701530fc383f0df568fa3e
/StudentManagement_new_2/stout/tests/os/process_tests.cpp
0db52618f02df9569d3bd814903028c4056880b0
[ "Apache-2.0" ]
permissive
Held0n/StudentManagement
4f74cf845905d4e267796a692f489e1b628bf81d
dae301e8254fff3b21e26f3e3f7934a11ba7d618
refs/heads/master
2020-04-01T19:59:04.334975
2018-10-31T02:15:48
2018-10-31T02:15:48
153,582,164
0
0
null
null
null
null
UTF-8
C++
false
false
8,419
cpp
// 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 #ifdef __WINDOWS__ #include <process.h> #endif // __WINDOWS__ #include <set> #include <gtest/gtest.h> #include <stout/os.hpp> #ifndef __WINDOWS__ #include <stout/os/fork.hpp> #endif // __WINDOWS__ #include <stout/os/pstree.hpp> #include <stout/tests/utils.hpp> class ProcessTest : public TemporaryDirectoryTest {}; /home/heldon/CLionProjects/StudentManagement_new_2/stout/tests/os/process_tests.cpp #ifndef __WINDOWS__ using os::Exec; using os::Fork; #endif // __WINDOWS__ using os::Process; using os::ProcessTree; using std::list; using std::set; using std::string; const unsigned int init_pid = #ifdef __WINDOWS__ 0; #else 1; #endif // __WINDOWS__ #ifdef __WINDOWS__ int getppid() { const int pid = getpid(); HANDLE h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); std::shared_ptr<void> sh(h, CloseHandle); PROCESSENTRY32 pe = { 0 }; pe.dwSize = sizeof(PROCESSENTRY32); if (Process32First(h, &pe)) { do { if (pe.th32ProcessID == pid) { return pe.th32ParentProcessID; } } while (Process32Next(h, &pe)); } return -1; } #endif // __WINDOWS__ TEST_F(ProcessTest, Process) { const Result<Process> process = os::process(getpid()); ASSERT_SOME(process); EXPECT_EQ(getpid(), process.get().pid); EXPECT_EQ(getppid(), process.get().parent); ASSERT_SOME(process.get().session); #ifndef __WINDOWS__ // NOTE: `getsid` does not have a meaningful interpretation on Windows. EXPECT_EQ(getsid(getpid()), process.get().session.get()); #endif // __WINDOWS__ ASSERT_SOME(process.get().rss); EXPECT_GT(process.get().rss.get(), 0); // NOTE: On Linux /proc is a bit slow to update the CPU times, // hence we allow 0 in this test. ASSERT_SOME(process.get().utime); EXPECT_GE(process.get().utime.get(), Nanoseconds(0)); ASSERT_SOME(process.get().stime); EXPECT_GE(process.get().stime.get(), Nanoseconds(0)); EXPECT_FALSE(process.get().command.empty()); // Assert invalid PID returns `None`. Result<Process> invalid_process = os::process(-1); EXPECT_NONE(invalid_process); // Assert init. Result<Process> init_process = os::process(init_pid); #ifdef __WINDOWS__ // NOTE: On Windows, inspecting other processes usually requires privileges. // So we expect it to error out instead of succeed, unlike the POSIX version. EXPECT_ERROR(init_process); #elif __FreeBSD__ // In a FreeBSD jail, we wont find an init process. if (!isJailed()) { EXPECT_SOME(init_process); } else { EXPECT_NONE(init_process); } #else EXPECT_SOME(init_process); #endif // __WINDOWS__ } TEST_F(ProcessTest, Processes) { const Try<list<Process>> processes = os::processes(); ASSERT_SOME(processes); ASSERT_GT(processes.get().size(), 2u); // Look for ourselves in the table. bool found = false; foreach (const Process& process, processes.get()) { if (process.pid == getpid()) { found = true; EXPECT_EQ(getpid(), process.pid); EXPECT_EQ(getppid(), process.parent); ASSERT_SOME(process.session); #ifndef __WINDOWS__ // NOTE: `getsid` does not have a meaningful interpretation on Windows. EXPECT_EQ(getsid(getpid()), process.session.get()); #endif // __WINDOWS__ ASSERT_SOME(process.rss); EXPECT_GT(process.rss.get(), 0); // NOTE: On linux /proc is a bit slow to update the cpu times, // hence we allow 0 in this test. ASSERT_SOME(process.utime); EXPECT_GE(process.utime.get(), Nanoseconds(0)); ASSERT_SOME(process.stime); EXPECT_GE(process.stime.get(), Nanoseconds(0)); EXPECT_FALSE(process.command.empty()); break; } } EXPECT_TRUE(found); } TEST_F(ProcessTest, Pids) { Try<set<pid_t>> pids = os::pids(); ASSERT_SOME(pids); EXPECT_NE(0u, pids.get().size()); EXPECT_EQ(1u, pids.get().count(getpid())); // In a FreeBSD jail, pid 1 may not exist. #ifdef __FreeBSD__ if (!isJailed()) { #endif EXPECT_EQ(1u, pids.get().count(init_pid)); #ifdef __FreeBSD__ } #endif #ifndef __WINDOWS__ // NOTE: `getpgid` does not have a meaningful interpretation on Windows. pids = os::pids(getpgid(0), None()); EXPECT_SOME(pids); EXPECT_GE(pids.get().size(), 1u); EXPECT_EQ(1u, pids.get().count(getpid())); // NOTE: This test is not meaningful on Windows because process IDs are // expected to be non-negative. EXPECT_ERROR(os::pids(-1, None())); // NOTE: `getsid` does not have a meaningful interpretation on Windows. pids = os::pids(None(), getsid(0)); EXPECT_SOME(pids); EXPECT_GE(pids.get().size(), 1u); EXPECT_EQ(1u, pids.get().count(getpid())); // NOTE: This test is not meaningful on Windows because process IDs are // expected to be non-negative. EXPECT_ERROR(os::pids(None(), -1)); #endif // __WINDOWS__ } #ifdef __WINDOWS__ TEST_F(ProcessTest, Pstree) { Try<ProcessTree> tree = os::pstree(getpid()); ASSERT_SOME(tree); // Windows spawns `conhost.exe` if we're running from VS, so the count of // children could be 0 or 1. const size_t total_children = tree.get().children.size(); EXPECT_TRUE(0u == total_children || 1u == total_children) << stringify(tree.get()); const bool conhost_spawned = total_children == 1; // Windows has no `sleep` command, so we fake it with `ping`. const string command = "ping 127.0.0.1 -n 2"; STARTUPINFO si; PROCESS_INFORMATION pi; ZeroMemory(&si, sizeof(si)); si.cb = sizeof(si); ZeroMemory(&pi, sizeof(pi)); // Create new process that "sleeps". BOOL created = CreateProcess( nullptr, // No module name (use command line). (LPSTR)command.c_str(), nullptr, // Process handle not inheritable. nullptr, // Thread handle not inheritable. FALSE, // Set handle inheritance to FALSE. 0, // No creation flags. nullptr, // Use parent's environment block. nullptr, // Use parent's starting directory. &si, &pi); ASSERT_TRUE(created == TRUE); Try<ProcessTree> tree_after_spawn = os::pstree(getpid()); ASSERT_SOME(tree_after_spawn); // Windows spawns conhost.exe if we're running from VS, so the count of // children could be 0 or 1. const size_t children_after_span = tree_after_spawn.get().children.size(); EXPECT_TRUE((!conhost_spawned && 1u == children_after_span) || (conhost_spawned && 2u == children_after_span) ) << stringify(tree_after_spawn.get()); WaitForSingleObject(pi.hProcess, INFINITE); } #else TEST_F(ProcessTest, Pstree) { Try<ProcessTree> tree = os::pstree(getpid()); ASSERT_SOME(tree); EXPECT_EQ(0u, tree.get().children.size()) << stringify(tree.get()); tree = Fork(None(), // Child. Fork(Exec(SLEEP_COMMAND(10))), // Grandchild. Exec(SLEEP_COMMAND(10)))(); ASSERT_SOME(tree); // Depending on whether or not the shell has fork/exec'ed, // we could have 1 or 2 direct children. That is, some shells // might simply exec the command above (i.e., 'sleep 10') while // others might fork/exec the command, keeping around a 'sh -c' // process as well. ASSERT_LE(1u, tree.get().children.size()); ASSERT_GE(2u, tree.get().children.size()); pid_t child = tree.get().process.pid; pid_t grandchild = tree.get().children.front().process.pid; // Now check pstree again. tree = os::pstree(child); ASSERT_SOME(tree); EXPECT_EQ(child, tree.get().process.pid); ASSERT_LE(1u, tree.get().children.size()); ASSERT_GE(2u, tree.get().children.size()); // Cleanup by killing the descendant processes. EXPECT_EQ(0, kill(grandchild, SIGKILL)); EXPECT_EQ(0, kill(child, SIGKILL)); // We have to reap the child for running the tests in repetition. ASSERT_EQ(child, waitpid(child, nullptr, 0)); } #endif // __WINDOWS__
[ "764165887@qq.com" ]
764165887@qq.com
beec2c6c60e2fa4832d80645b2dc370c592c26d9
f6bad0a9093bb94b490ea068fab8c7798fe21b93
/win/win_roscpp/include/geometry_msgs/Accel.h
997b95b027cbe197ef1e6a58f0b778481ca08662
[ "MIT", "Apache-2.0", "BSD-3-Clause" ]
permissive
warehouse-picking-automation-challenges/team_pfn
8b5ebb7e106359980abea28dc00784772208ead9
2f76524b067d816d8407f6c4fae4e6d33939c024
refs/heads/master
2021-06-07T02:21:33.432335
2016-08-17T03:12:15
2016-08-17T03:12:15
66,588,155
5
2
null
null
null
null
UTF-8
C++
false
false
5,493
h
// Generated by gencpp from file geometry_msgs/Accel.msg // DO NOT EDIT! #ifndef GEOMETRY_MSGS_MESSAGE_ACCEL_H #define GEOMETRY_MSGS_MESSAGE_ACCEL_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/message_operations.h> #include <geometry_msgs/Vector3.h> #include <geometry_msgs/Vector3.h> namespace geometry_msgs { template <class ContainerAllocator> struct Accel_ { typedef Accel_<ContainerAllocator> Type; Accel_() : linear() , angular() { } Accel_(const ContainerAllocator& _alloc) : linear(_alloc) , angular(_alloc) { } typedef ::geometry_msgs::Vector3_<ContainerAllocator> _linear_type; _linear_type linear; typedef ::geometry_msgs::Vector3_<ContainerAllocator> _angular_type; _angular_type angular; typedef boost::shared_ptr< ::geometry_msgs::Accel_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::geometry_msgs::Accel_<ContainerAllocator> const> ConstPtr; }; // struct Accel_ typedef ::geometry_msgs::Accel_<std::allocator<void> > Accel; typedef boost::shared_ptr< ::geometry_msgs::Accel > AccelPtr; typedef boost::shared_ptr< ::geometry_msgs::Accel const> AccelConstPtr; // constants requiring out of line definition template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::geometry_msgs::Accel_<ContainerAllocator> & v) { ros::message_operations::Printer< ::geometry_msgs::Accel_<ContainerAllocator> >::stream(s, "", v); return s; } } // namespace geometry_msgs namespace ros { namespace message_traits { // BOOLTRAITS {'IsFixedSize': True, 'IsMessage': True, 'HasHeader': False} // {'std_msgs': ['/opt/ros/indigo/share/std_msgs/cmake/../msg'], 'geometry_msgs': ['/tmp/binarydeb/ros-indigo-geometry-msgs-1.11.8/msg']} // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types'] template <class ContainerAllocator> struct IsFixedSize< ::geometry_msgs::Accel_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsFixedSize< ::geometry_msgs::Accel_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::geometry_msgs::Accel_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::geometry_msgs::Accel_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::geometry_msgs::Accel_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct HasHeader< ::geometry_msgs::Accel_<ContainerAllocator> const> : FalseType { }; template<class ContainerAllocator> struct MD5Sum< ::geometry_msgs::Accel_<ContainerAllocator> > { static const char* value() { return "9f195f881246fdfa2798d1d3eebca84a"; } static const char* value(const ::geometry_msgs::Accel_<ContainerAllocator>&) { return value(); } static const uint64_t static_value1 = 0x9f195f881246fdfaULL; static const uint64_t static_value2 = 0x2798d1d3eebca84aULL; }; template<class ContainerAllocator> struct DataType< ::geometry_msgs::Accel_<ContainerAllocator> > { static const char* value() { return "geometry_msgs/Accel"; } static const char* value(const ::geometry_msgs::Accel_<ContainerAllocator>&) { return value(); } }; template<class ContainerAllocator> struct Definition< ::geometry_msgs::Accel_<ContainerAllocator> > { static const char* value() { return "# This expresses acceleration in free space broken into its linear and angular parts.\n\ Vector3 linear\n\ Vector3 angular\n\ \n\ ================================================================================\n\ MSG: geometry_msgs/Vector3\n\ # This represents a vector in free space. \n\ \n\ float64 x\n\ float64 y\n\ float64 z\n\ "; } static const char* value(const ::geometry_msgs::Accel_<ContainerAllocator>&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::geometry_msgs::Accel_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.linear); stream.next(m.angular); } ROS_DECLARE_ALLINONE_SERIALIZER; }; // struct Accel_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::geometry_msgs::Accel_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::geometry_msgs::Accel_<ContainerAllocator>& v) { s << indent << "linear: "; s << std::endl; Printer< ::geometry_msgs::Vector3_<ContainerAllocator> >::stream(s, indent + " ", v.linear); s << indent << "angular: "; s << std::endl; Printer< ::geometry_msgs::Vector3_<ContainerAllocator> >::stream(s, indent + " ", v.angular); } }; } // namespace message_operations } // namespace ros #endif // GEOMETRY_MSGS_MESSAGE_ACCEL_H
[ "tgp@preferred.jp" ]
tgp@preferred.jp
03c0a18e44906670e304706866c929bf901a59a1
d73c7cf85e0e22f9169b8c1fb038ec4c84108412
/src/cpu/instructions/arithmetic/subad8.hpp
eacdadc1fac24272b9de816f10904ed6ea32d1a8
[]
no_license
Briensturm/gbcpp
a1b2b43bde9b0ad85fb23c3f7205f7d4b3597879
df995d059f9f39f24d559ff702d55813f6159234
refs/heads/main
2023-02-15T14:59:56.611649
2021-01-05T14:18:46
2021-01-05T17:07:42
321,745,323
1
0
null
2021-01-05T09:47:07
2020-12-15T17:49:38
C++
UTF-8
C++
false
false
1,058
hpp
#pragma once #include "instruction.hpp" class SUBAD8 : public Instruction { public: int GetInstructionLength() { return 2; } void ExecuteCycle(CpuStatePtr& cpuState, RamPtr& mainMemory) { switch (_remainingCycles) { case 2: _subData = mainMemory->ReadByte(cpuState->ProgramCounter++); break; case 1: { auto oldValue = cpuState->Registers->A; cpuState->Registers->A -= _subData; cpuState->Registers->SubtractionFlag = true; cpuState->Registers->ZeroFlag = cpuState->Registers->A == 0; cpuState->Registers->HalfCarryFlag = ((oldValue & 0xF) - (_subData & 0xF)) < 0; cpuState->Registers->CarryFlag = _subData > oldValue; break; } } Instruction::ExecuteCycle(cpuState, mainMemory); } private: byte _subData; };
[ "64007916+Briensturm@users.noreply.github.com" ]
64007916+Briensturm@users.noreply.github.com
e340228d87411614563bf3c76d4c1192751a91c3
f252f75a66ff3ff35b6eaa5a4a28248eb54840ee
/external/opencore/fileformats/mp4/parser/include/itunesmetadataatom.h
f899a639a94a67e9df15973a260386962e60665a
[ "MIT", "LicenseRef-scancode-other-permissive", "Artistic-2.0", "LicenseRef-scancode-philippe-de-muyter", "Apache-2.0", "LicenseRef-scancode-mpeg-iso", "LicenseRef-scancode-unknown-license-reference" ]
permissive
abgoyal-archive/OT_4010A
201b246c6f685cf35632c9a1e1bf2b38011ff196
300ee9f800824658acfeb9447f46419b8c6e0d1c
refs/heads/master
2022-04-12T23:17:32.814816
2015-02-06T12:15:20
2015-02-06T12:15:20
30,410,715
0
1
null
2020-03-07T00:35:22
2015-02-06T12:14:16
C
UTF-8
C++
false
false
1,291
h
#ifndef ITUNESMETADATAATOM_H_INCLUDED #define ITUNESMETADATAATOM_H_INCLUDED typedef Oscl_Vector<OSCL_StackString<128>, OsclMemAllocator> OSCL_StackStringVector; /** Shared pointer of a key-value pair */ typedef OsclSharedPtr<PvmiKvp> PvmiKvpSharedPtr; /** Vector of shared pointer of a key-value pair */ typedef Oscl_Vector<PvmiKvpSharedPtr, OsclMemAllocator> PvmiKvpSharedPtrVector; #include "atom.h" #include "itunesilstmetadataatom.h" class ITunesMetaDataAtom: public Atom { public: ITunesMetaDataAtom(MP4_FF_FILE *fp, uint32 size, uint32 type); virtual ~ITunesMetaDataAtom(); OSCL_wHeapString<OsclMemAllocator> getmdirapplData() { return _mdirapplData; } PVMFStatus getMetaDataValues(OSCL_StackStringVector* aRequiredKeys, PvmiKvpSharedPtrVector& aMetaDataKVPVector); ITunesILstMetaDataAtom* getITunesILstMetaDataAtom() { return _pITunesILstMetaDataAtom; } private: // Whether this file is an M4A file or not. (By using "hdlr" tag) OSCL_wHeapString<OsclMemAllocator> _mdirapplData; // User ilst Data ITunesILstMetaDataAtom* _pITunesILstMetaDataAtom; }; #endif // ITUNESMETADATAATOM_H_INCLUDED
[ "abgoyal@gmail.com" ]
abgoyal@gmail.com
21ae0dbdb7bde310621cc71ae2191ff850bcfdcf
04b1803adb6653ecb7cb827c4f4aa616afacf629
/third_party/blink/renderer/core/animation/keyframe_effect_model_test.cc
832f4f375367035dd7e638430b7f6fa2bc37b4d5
[ "BSD-3-Clause", "LGPL-2.0-only", "BSD-2-Clause", "LGPL-2.1-only", "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer", "GPL-2.0-only", "LicenseRef-scancode-other-copyleft" ]
permissive
Samsung/Castanets
240d9338e097b75b3f669604315b06f7cf129d64
4896f732fc747dfdcfcbac3d442f2d2d42df264a
refs/heads/castanets_76_dev
2023-08-31T09:01:04.744346
2021-07-30T04:56:25
2021-08-11T05:45:21
125,484,161
58
49
BSD-3-Clause
2022-10-16T19:31:26
2018-03-16T08:07:37
null
UTF-8
C++
false
false
35,390
cc
/* * Copyright (C) 2013 Google 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 Google 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 THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "third_party/blink/renderer/core/animation/keyframe_effect_model.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/blink/renderer/core/animation/animation_test_helper.h" #include "third_party/blink/renderer/core/animation/css_default_interpolation_type.h" #include "third_party/blink/renderer/core/animation/invalidatable_interpolation.h" #include "third_party/blink/renderer/core/animation/string_keyframe.h" #include "third_party/blink/renderer/core/css/css_primitive_value.h" #include "third_party/blink/renderer/core/css/property_descriptor.h" #include "third_party/blink/renderer/core/css/property_registration.h" #include "third_party/blink/renderer/core/css/property_registry.h" #include "third_party/blink/renderer/core/css/resolver/style_resolver.h" #include "third_party/blink/renderer/core/dom/element.h" #include "third_party/blink/renderer/core/style/computed_style.h" #include "third_party/blink/renderer/core/testing/page_test_base.h" #include "third_party/blink/renderer/platform/heap/heap.h" #include "third_party/blink/renderer/platform/testing/runtime_enabled_features_test_helpers.h" namespace blink { class AnimationKeyframeEffectModel : public PageTestBase { protected: void SetUp() override { PageTestBase::SetUp(IntSize()); element = GetDocument().CreateElementForBinding("foo"); } void ExpectLengthValue(double expected_value, Interpolation* interpolation_value) { ActiveInterpolations interpolations; interpolations.push_back(interpolation_value); EnsureInterpolatedValueCached(interpolations, GetDocument(), element); const TypedInterpolationValue* typed_value = ToInvalidatableInterpolation(interpolation_value) ->GetCachedValueForTesting(); // Length values are stored as a list of values; here we assume pixels. EXPECT_TRUE(typed_value->GetInterpolableValue().IsList()); const InterpolableList* list = ToInterpolableList(&typed_value->GetInterpolableValue()); EXPECT_FLOAT_EQ(expected_value, ToInterpolableNumber(list->Get(0))->Value()); } void ExpectNonInterpolableValue(const String& expected_value, Interpolation* interpolation_value) { ActiveInterpolations interpolations; interpolations.push_back(interpolation_value); EnsureInterpolatedValueCached(interpolations, GetDocument(), element); const TypedInterpolationValue* typed_value = ToInvalidatableInterpolation(interpolation_value) ->GetCachedValueForTesting(); const NonInterpolableValue* non_interpolable_value = typed_value->GetNonInterpolableValue(); ASSERT_TRUE(IsCSSDefaultNonInterpolableValue(non_interpolable_value)); const CSSValue* css_value = ToCSSDefaultNonInterpolableValue(non_interpolable_value)->CssValue(); EXPECT_EQ(expected_value, css_value->CssText()); } Persistent<Element> element; }; const AnimationTimeDelta kDuration = AnimationTimeDelta::FromSecondsD(1); StringKeyframeVector KeyframesAtZeroAndOne(CSSPropertyID property, const String& zero_value, const String& one_value) { StringKeyframeVector keyframes(2); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(0.0); keyframes[0]->SetCSSPropertyValue( property, zero_value, SecureContextMode::kInsecureContext, nullptr); keyframes[1] = MakeGarbageCollected<StringKeyframe>(); keyframes[1]->SetOffset(1.0); keyframes[1]->SetCSSPropertyValue( property, one_value, SecureContextMode::kInsecureContext, nullptr); return keyframes; } StringKeyframeVector KeyframesAtZeroAndOne( AtomicString property_name, const PropertyRegistry* property_registry, const String& zero_value, const String& one_value) { StringKeyframeVector keyframes(2); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(0.0); keyframes[0]->SetCSSPropertyValue( property_name, property_registry, zero_value, SecureContextMode::kInsecureContext, nullptr); keyframes[1] = MakeGarbageCollected<StringKeyframe>(); keyframes[1]->SetOffset(1.0); keyframes[1]->SetCSSPropertyValue(property_name, property_registry, one_value, SecureContextMode::kInsecureContext, nullptr); return keyframes; } void ExpectProperty(CSSPropertyID property, Interpolation* interpolation_value) { InvalidatableInterpolation* interpolation = ToInvalidatableInterpolation(interpolation_value); const PropertyHandle& property_handle = interpolation->GetProperty(); ASSERT_TRUE(property_handle.IsCSSProperty()); ASSERT_EQ(property, property_handle.GetCSSProperty().PropertyID()); } Interpolation* FindValue(HeapVector<Member<Interpolation>>& values, CSSPropertyID id) { for (auto& value : values) { const PropertyHandle& property = ToInvalidatableInterpolation(value)->GetProperty(); if (property.IsCSSProperty() && property.GetCSSProperty().PropertyID() == id) return value; } return nullptr; } TEST_F(AnimationKeyframeEffectModel, BasicOperation) { StringKeyframeVector keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kFontFamily, "serif", "cursive"); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.6, kDuration, values); ASSERT_EQ(1UL, values.size()); ExpectProperty(CSSPropertyID::kFontFamily, values.at(0)); ExpectNonInterpolableValue("cursive", values.at(0)); } TEST_F(AnimationKeyframeEffectModel, CompositeReplaceNonInterpolable) { StringKeyframeVector keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kFontFamily, "serif", "cursive"); keyframes[0]->SetComposite(EffectModel::kCompositeReplace); keyframes[1]->SetComposite(EffectModel::kCompositeReplace); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.6, kDuration, values); ExpectNonInterpolableValue("cursive", values.at(0)); } TEST_F(AnimationKeyframeEffectModel, CompositeReplace) { StringKeyframeVector keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kLeft, "3px", "5px"); keyframes[0]->SetComposite(EffectModel::kCompositeReplace); keyframes[1]->SetComposite(EffectModel::kCompositeReplace); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.6, kDuration, values); ExpectLengthValue(3.0 * 0.4 + 5.0 * 0.6, values.at(0)); } // FIXME: Re-enable this test once compositing of CompositeAdd is supported. TEST_F(AnimationKeyframeEffectModel, DISABLED_CompositeAdd) { StringKeyframeVector keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kLeft, "3px", "5px"); keyframes[0]->SetComposite(EffectModel::kCompositeAdd); keyframes[1]->SetComposite(EffectModel::kCompositeAdd); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.6, kDuration, values); ExpectLengthValue((7.0 + 3.0) * 0.4 + (7.0 + 5.0) * 0.6, values.at(0)); } TEST_F(AnimationKeyframeEffectModel, CompositeEaseIn) { StringKeyframeVector keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kLeft, "3px", "5px"); keyframes[0]->SetComposite(EffectModel::kCompositeReplace); keyframes[0]->SetEasing(CubicBezierTimingFunction::Preset( CubicBezierTimingFunction::EaseType::EASE_IN)); keyframes[1]->SetComposite(EffectModel::kCompositeReplace); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.6, kDuration, values); ExpectLengthValue(3.8579516, values.at(0)); effect->Sample(0, 0.6, kDuration * 100, values); ExpectLengthValue(3.8582394, values.at(0)); } TEST_F(AnimationKeyframeEffectModel, CompositeCubicBezier) { StringKeyframeVector keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kLeft, "3px", "5px"); keyframes[0]->SetComposite(EffectModel::kCompositeReplace); keyframes[0]->SetEasing(CubicBezierTimingFunction::Create(0.42, 0, 0.58, 1)); keyframes[1]->SetComposite(EffectModel::kCompositeReplace); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.6, kDuration, values); ExpectLengthValue(4.3363357, values.at(0)); effect->Sample(0, 0.6, kDuration * 1000, values); ExpectLengthValue(4.3362322, values.at(0)); } TEST_F(AnimationKeyframeEffectModel, ExtrapolateReplaceNonInterpolable) { StringKeyframeVector keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kFontFamily, "serif", "cursive"); keyframes[0]->SetComposite(EffectModel::kCompositeReplace); keyframes[1]->SetComposite(EffectModel::kCompositeReplace); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 1.6, kDuration, values); ExpectNonInterpolableValue("cursive", values.at(0)); } TEST_F(AnimationKeyframeEffectModel, ExtrapolateReplace) { StringKeyframeVector keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kLeft, "3px", "5px"); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); keyframes[0]->SetComposite(EffectModel::kCompositeReplace); keyframes[1]->SetComposite(EffectModel::kCompositeReplace); HeapVector<Member<Interpolation>> values; effect->Sample(0, 1.6, kDuration, values); ExpectLengthValue(3.0 * -0.6 + 5.0 * 1.6, values.at(0)); } // FIXME: Re-enable this test once compositing of CompositeAdd is supported. TEST_F(AnimationKeyframeEffectModel, DISABLED_ExtrapolateAdd) { StringKeyframeVector keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kLeft, "3px", "5px"); keyframes[0]->SetComposite(EffectModel::kCompositeAdd); keyframes[1]->SetComposite(EffectModel::kCompositeAdd); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 1.6, kDuration, values); ExpectLengthValue((7.0 + 3.0) * -0.6 + (7.0 + 5.0) * 1.6, values.at(0)); } TEST_F(AnimationKeyframeEffectModel, ZeroKeyframes) { auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(StringKeyframeVector()); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.5, kDuration, values); EXPECT_TRUE(values.IsEmpty()); } // FIXME: Re-enable this test once compositing of CompositeAdd is supported. TEST_F(AnimationKeyframeEffectModel, DISABLED_SingleKeyframeAtOffsetZero) { StringKeyframeVector keyframes(1); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(0.0); keyframes[0]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "serif", SecureContextMode::kInsecureContext, nullptr); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.6, kDuration, values); ExpectNonInterpolableValue("serif", values.at(0)); } // FIXME: Re-enable this test once compositing of CompositeAdd is supported. TEST_F(AnimationKeyframeEffectModel, DISABLED_SingleKeyframeAtOffsetOne) { StringKeyframeVector keyframes(1); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(1.0); keyframes[0]->SetCSSPropertyValue(CSSPropertyID::kLeft, "5px", SecureContextMode::kInsecureContext, nullptr); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.6, kDuration, values); ExpectLengthValue(7.0 * 0.4 + 5.0 * 0.6, values.at(0)); } TEST_F(AnimationKeyframeEffectModel, MoreThanTwoKeyframes) { StringKeyframeVector keyframes(3); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(0.0); keyframes[0]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "serif", SecureContextMode::kInsecureContext, nullptr); keyframes[1] = MakeGarbageCollected<StringKeyframe>(); keyframes[1]->SetOffset(0.5); keyframes[1]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "sans-serif", SecureContextMode::kInsecureContext, nullptr); keyframes[2] = MakeGarbageCollected<StringKeyframe>(); keyframes[2]->SetOffset(1.0); keyframes[2]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "cursive", SecureContextMode::kInsecureContext, nullptr); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.3, kDuration, values); ExpectNonInterpolableValue("sans-serif", values.at(0)); effect->Sample(0, 0.8, kDuration, values); ExpectNonInterpolableValue("cursive", values.at(0)); } TEST_F(AnimationKeyframeEffectModel, EndKeyframeOffsetsUnspecified) { StringKeyframeVector keyframes(3); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "serif", SecureContextMode::kInsecureContext, nullptr); keyframes[1] = MakeGarbageCollected<StringKeyframe>(); keyframes[1]->SetOffset(0.5); keyframes[1]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "cursive", SecureContextMode::kInsecureContext, nullptr); keyframes[2] = MakeGarbageCollected<StringKeyframe>(); keyframes[2]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "serif", SecureContextMode::kInsecureContext, nullptr); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.1, kDuration, values); ExpectNonInterpolableValue("serif", values.at(0)); effect->Sample(0, 0.6, kDuration, values); ExpectNonInterpolableValue("cursive", values.at(0)); effect->Sample(0, 0.9, kDuration, values); ExpectNonInterpolableValue("serif", values.at(0)); } TEST_F(AnimationKeyframeEffectModel, SampleOnKeyframe) { StringKeyframeVector keyframes(3); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(0.0); keyframes[0]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "serif", SecureContextMode::kInsecureContext, nullptr); keyframes[1] = MakeGarbageCollected<StringKeyframe>(); keyframes[1]->SetOffset(0.5); keyframes[1]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "cursive", SecureContextMode::kInsecureContext, nullptr); keyframes[2] = MakeGarbageCollected<StringKeyframe>(); keyframes[2]->SetOffset(1.0); keyframes[2]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "serif", SecureContextMode::kInsecureContext, nullptr); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.0, kDuration, values); ExpectNonInterpolableValue("serif", values.at(0)); effect->Sample(0, 0.5, kDuration, values); ExpectNonInterpolableValue("cursive", values.at(0)); effect->Sample(0, 1.0, kDuration, values); ExpectNonInterpolableValue("serif", values.at(0)); } TEST_F(AnimationKeyframeEffectModel, MultipleKeyframesWithSameOffset) { StringKeyframeVector keyframes(9); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(0.0); keyframes[0]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "serif", SecureContextMode::kInsecureContext, nullptr); keyframes[1] = MakeGarbageCollected<StringKeyframe>(); keyframes[1]->SetOffset(0.1); keyframes[1]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "sans-serif", SecureContextMode::kInsecureContext, nullptr); keyframes[2] = MakeGarbageCollected<StringKeyframe>(); keyframes[2]->SetOffset(0.1); keyframes[2]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "monospace", SecureContextMode::kInsecureContext, nullptr); keyframes[3] = MakeGarbageCollected<StringKeyframe>(); keyframes[3]->SetOffset(0.5); keyframes[3]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "cursive", SecureContextMode::kInsecureContext, nullptr); keyframes[4] = MakeGarbageCollected<StringKeyframe>(); keyframes[4]->SetOffset(0.5); keyframes[4]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "fantasy", SecureContextMode::kInsecureContext, nullptr); keyframes[5] = MakeGarbageCollected<StringKeyframe>(); keyframes[5]->SetOffset(0.5); keyframes[5]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "system-ui", SecureContextMode::kInsecureContext, nullptr); keyframes[6] = MakeGarbageCollected<StringKeyframe>(); keyframes[6]->SetOffset(0.9); keyframes[6]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "serif", SecureContextMode::kInsecureContext, nullptr); keyframes[7] = MakeGarbageCollected<StringKeyframe>(); keyframes[7]->SetOffset(0.9); keyframes[7]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "sans-serif", SecureContextMode::kInsecureContext, nullptr); keyframes[8] = MakeGarbageCollected<StringKeyframe>(); keyframes[8]->SetOffset(1.0); keyframes[8]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "monospace", SecureContextMode::kInsecureContext, nullptr); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.0, kDuration, values); ExpectNonInterpolableValue("serif", values.at(0)); effect->Sample(0, 0.2, kDuration, values); ExpectNonInterpolableValue("monospace", values.at(0)); effect->Sample(0, 0.4, kDuration, values); ExpectNonInterpolableValue("cursive", values.at(0)); effect->Sample(0, 0.5, kDuration, values); ExpectNonInterpolableValue("system-ui", values.at(0)); effect->Sample(0, 0.6, kDuration, values); ExpectNonInterpolableValue("system-ui", values.at(0)); effect->Sample(0, 0.8, kDuration, values); ExpectNonInterpolableValue("serif", values.at(0)); effect->Sample(0, 1.0, kDuration, values); ExpectNonInterpolableValue("monospace", values.at(0)); } // FIXME: Re-enable this test once compositing of CompositeAdd is supported. TEST_F(AnimationKeyframeEffectModel, DISABLED_PerKeyframeComposite) { StringKeyframeVector keyframes(2); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(0.0); keyframes[0]->SetCSSPropertyValue(CSSPropertyID::kLeft, "3px", SecureContextMode::kInsecureContext, nullptr); keyframes[1] = MakeGarbageCollected<StringKeyframe>(); keyframes[1]->SetOffset(1.0); keyframes[1]->SetCSSPropertyValue(CSSPropertyID::kLeft, "5px", SecureContextMode::kInsecureContext, nullptr); keyframes[1]->SetComposite(EffectModel::kCompositeAdd); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.6, kDuration, values); ExpectLengthValue(3.0 * 0.4 + (7.0 + 5.0) * 0.6, values.at(0)); } TEST_F(AnimationKeyframeEffectModel, MultipleProperties) { StringKeyframeVector keyframes(2); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(0.0); keyframes[0]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "serif", SecureContextMode::kInsecureContext, nullptr); keyframes[0]->SetCSSPropertyValue(CSSPropertyID::kFontStyle, "normal", SecureContextMode::kInsecureContext, nullptr); keyframes[1] = MakeGarbageCollected<StringKeyframe>(); keyframes[1]->SetOffset(1.0); keyframes[1]->SetCSSPropertyValue(CSSPropertyID::kFontFamily, "cursive", SecureContextMode::kInsecureContext, nullptr); keyframes[1]->SetCSSPropertyValue(CSSPropertyID::kFontStyle, "oblique", SecureContextMode::kInsecureContext, nullptr); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.6, kDuration, values); EXPECT_EQ(2UL, values.size()); Interpolation* left_value = FindValue(values, CSSPropertyID::kFontFamily); ASSERT_TRUE(left_value); ExpectNonInterpolableValue("cursive", left_value); Interpolation* right_value = FindValue(values, CSSPropertyID::kFontStyle); ASSERT_TRUE(right_value); ExpectNonInterpolableValue("oblique", right_value); } // FIXME: Re-enable this test once compositing of CompositeAdd is supported. TEST_F(AnimationKeyframeEffectModel, DISABLED_RecompositeCompositableValue) { StringKeyframeVector keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kLeft, "3px", "5px"); keyframes[0]->SetComposite(EffectModel::kCompositeAdd); keyframes[1]->SetComposite(EffectModel::kCompositeAdd); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.6, kDuration, values); ExpectLengthValue((7.0 + 3.0) * 0.4 + (7.0 + 5.0) * 0.6, values.at(0)); ExpectLengthValue((9.0 + 3.0) * 0.4 + (9.0 + 5.0) * 0.6, values.at(1)); } TEST_F(AnimationKeyframeEffectModel, MultipleIterations) { StringKeyframeVector keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kLeft, "1px", "3px"); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0.5, kDuration, values); ExpectLengthValue(2.0, values.at(0)); effect->Sample(1, 0.5, kDuration, values); ExpectLengthValue(2.0, values.at(0)); effect->Sample(2, 0.5, kDuration, values); ExpectLengthValue(2.0, values.at(0)); } // FIXME: Re-enable this test once compositing of CompositeAdd is supported. TEST_F(AnimationKeyframeEffectModel, DISABLED_DependsOnUnderlyingValue) { StringKeyframeVector keyframes(3); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(0.0); keyframes[0]->SetCSSPropertyValue(CSSPropertyID::kLeft, "1px", SecureContextMode::kInsecureContext, nullptr); keyframes[0]->SetComposite(EffectModel::kCompositeAdd); keyframes[1] = MakeGarbageCollected<StringKeyframe>(); keyframes[1]->SetOffset(0.5); keyframes[1]->SetCSSPropertyValue(CSSPropertyID::kLeft, "1px", SecureContextMode::kInsecureContext, nullptr); keyframes[2] = MakeGarbageCollected<StringKeyframe>(); keyframes[2]->SetOffset(1.0); keyframes[2]->SetCSSPropertyValue(CSSPropertyID::kLeft, "1px", SecureContextMode::kInsecureContext, nullptr); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); HeapVector<Member<Interpolation>> values; effect->Sample(0, 0, kDuration, values); EXPECT_TRUE(values.at(0)); effect->Sample(0, 0.1, kDuration, values); EXPECT_TRUE(values.at(0)); effect->Sample(0, 0.25, kDuration, values); EXPECT_TRUE(values.at(0)); effect->Sample(0, 0.4, kDuration, values); EXPECT_TRUE(values.at(0)); effect->Sample(0, 0.5, kDuration, values); EXPECT_FALSE(values.at(0)); effect->Sample(0, 0.6, kDuration, values); EXPECT_FALSE(values.at(0)); effect->Sample(0, 0.75, kDuration, values); EXPECT_FALSE(values.at(0)); effect->Sample(0, 0.8, kDuration, values); EXPECT_FALSE(values.at(0)); effect->Sample(0, 1, kDuration, values); EXPECT_FALSE(values.at(0)); } TEST_F(AnimationKeyframeEffectModel, AddSyntheticKeyframes) { StringKeyframeVector keyframes(1); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(0.5); keyframes[0]->SetCSSPropertyValue(CSSPropertyID::kLeft, "4px", SecureContextMode::kInsecureContext, nullptr); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); const StringPropertySpecificKeyframeVector& property_specific_keyframes = effect->GetPropertySpecificKeyframes( PropertyHandle(GetCSSPropertyLeft())); EXPECT_EQ(3U, property_specific_keyframes.size()); EXPECT_DOUBLE_EQ(0.0, property_specific_keyframes[0]->Offset()); EXPECT_DOUBLE_EQ(0.5, property_specific_keyframes[1]->Offset()); EXPECT_DOUBLE_EQ(1.0, property_specific_keyframes[2]->Offset()); } TEST_F(AnimationKeyframeEffectModel, ToKeyframeEffectModel) { StringKeyframeVector keyframes(0); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); EffectModel* base_effect = effect; EXPECT_TRUE(ToStringKeyframeEffectModel(base_effect)); } TEST_F(AnimationKeyframeEffectModel, CompositorSnapshotUpdateBasic) { StringKeyframeVector keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kOpacity, "0", "1"); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); auto style = GetDocument().EnsureStyleResolver().StyleForElement(element); const CompositorKeyframeValue* value; // Compositor keyframe value should be empty before snapshot value = effect ->GetPropertySpecificKeyframes( PropertyHandle(GetCSSPropertyOpacity()))[0] ->GetCompositorKeyframeValue(); EXPECT_FALSE(value); // Snapshot should update first time after construction EXPECT_TRUE(effect->SnapshotAllCompositorKeyframesIfNecessary( *element, *style, nullptr)); // Snapshot should not update on second call EXPECT_FALSE(effect->SnapshotAllCompositorKeyframesIfNecessary( *element, *style, nullptr)); // Snapshot should update after an explicit invalidation effect->InvalidateCompositorKeyframesSnapshot(); EXPECT_TRUE(effect->SnapshotAllCompositorKeyframesIfNecessary( *element, *style, nullptr)); // Compositor keyframe value should be available after snapshot value = effect ->GetPropertySpecificKeyframes( PropertyHandle(GetCSSPropertyOpacity()))[0] ->GetCompositorKeyframeValue(); EXPECT_TRUE(value); EXPECT_TRUE(value->IsDouble()); } TEST_F(AnimationKeyframeEffectModel, CompositorSnapshotUpdateAfterKeyframeChange) { StringKeyframeVector opacity_keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kOpacity, "0", "1"); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(opacity_keyframes); auto style = GetDocument().EnsureStyleResolver().StyleForElement(element); EXPECT_TRUE(effect->SnapshotAllCompositorKeyframesIfNecessary( *element, *style, nullptr)); const CompositorKeyframeValue* value; value = effect ->GetPropertySpecificKeyframes( PropertyHandle(GetCSSPropertyOpacity()))[0] ->GetCompositorKeyframeValue(); EXPECT_TRUE(value); EXPECT_TRUE(value->IsDouble()); StringKeyframeVector filter_keyframes = KeyframesAtZeroAndOne(CSSPropertyID::kFilter, "blur(1px)", "blur(10px)"); effect->SetFrames(filter_keyframes); // Snapshot should update after changing keyframes EXPECT_TRUE(effect->SnapshotAllCompositorKeyframesIfNecessary( *element, *style, nullptr)); value = effect ->GetPropertySpecificKeyframes( PropertyHandle(GetCSSPropertyFilter()))[0] ->GetCompositorKeyframeValue(); EXPECT_TRUE(value); EXPECT_TRUE(value->IsFilterOperations()); } TEST_F(AnimationKeyframeEffectModel, CompositorSnapshotUpdateCustomProperty) { ScopedOffMainThreadCSSPaintForTest off_main_thread_css_paint(true); DummyExceptionStateForTesting exception_state; PropertyDescriptor* property_descriptor = PropertyDescriptor::Create(); property_descriptor->setName("--foo"); property_descriptor->setSyntax("<number>"); property_descriptor->setInitialValue("0"); property_descriptor->setInherits(false); PropertyRegistration::registerProperty(&GetDocument(), property_descriptor, exception_state); EXPECT_FALSE(exception_state.HadException()); StringKeyframeVector keyframes = KeyframesAtZeroAndOne( AtomicString("--foo"), GetDocument().GetPropertyRegistry(), "0", "100"); element->style()->setProperty(&GetDocument(), "--foo", "0", g_empty_string, exception_state); EXPECT_FALSE(exception_state.HadException()); auto* effect = MakeGarbageCollected<StringKeyframeEffectModel>(keyframes); auto style = GetDocument().EnsureStyleResolver().StyleForElement(element); const CompositorKeyframeValue* value; // Snapshot should update first time after construction EXPECT_TRUE(effect->SnapshotAllCompositorKeyframesIfNecessary( *element, *style, nullptr)); // Compositor keyframe value available after snapshot value = effect ->GetPropertySpecificKeyframes( PropertyHandle(AtomicString("--foo")))[0] ->GetCompositorKeyframeValue(); EXPECT_TRUE(value); EXPECT_TRUE(value->IsDouble()); } } // namespace blink namespace blink { class KeyframeEffectModelTest : public testing::Test { public: static Vector<double> GetComputedOffsets(const KeyframeVector& keyframes) { return KeyframeEffectModelBase::GetComputedOffsets(keyframes); } }; TEST_F(KeyframeEffectModelTest, EvenlyDistributed1) { KeyframeVector keyframes(5); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(0.125); keyframes[1] = MakeGarbageCollected<StringKeyframe>(); keyframes[2] = MakeGarbageCollected<StringKeyframe>(); keyframes[3] = MakeGarbageCollected<StringKeyframe>(); keyframes[4] = MakeGarbageCollected<StringKeyframe>(); keyframes[4]->SetOffset(0.625); const Vector<double> result = GetComputedOffsets(keyframes); EXPECT_EQ(5U, result.size()); EXPECT_DOUBLE_EQ(0.125, result[0]); EXPECT_DOUBLE_EQ(0.25, result[1]); EXPECT_DOUBLE_EQ(0.375, result[2]); EXPECT_DOUBLE_EQ(0.5, result[3]); EXPECT_DOUBLE_EQ(0.625, result[4]); } TEST_F(KeyframeEffectModelTest, EvenlyDistributed2) { KeyframeVector keyframes(6); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[1] = MakeGarbageCollected<StringKeyframe>(); keyframes[2] = MakeGarbageCollected<StringKeyframe>(); keyframes[3] = MakeGarbageCollected<StringKeyframe>(); keyframes[3]->SetOffset(0.75); keyframes[4] = MakeGarbageCollected<StringKeyframe>(); keyframes[5] = MakeGarbageCollected<StringKeyframe>(); const Vector<double> result = GetComputedOffsets(keyframes); EXPECT_EQ(6U, result.size()); EXPECT_DOUBLE_EQ(0.0, result[0]); EXPECT_DOUBLE_EQ(0.25, result[1]); EXPECT_DOUBLE_EQ(0.5, result[2]); EXPECT_DOUBLE_EQ(0.75, result[3]); EXPECT_DOUBLE_EQ(0.875, result[4]); EXPECT_DOUBLE_EQ(1.0, result[5]); } TEST_F(KeyframeEffectModelTest, EvenlyDistributed3) { KeyframeVector keyframes(12); keyframes[0] = MakeGarbageCollected<StringKeyframe>(); keyframes[0]->SetOffset(0); keyframes[1] = MakeGarbageCollected<StringKeyframe>(); keyframes[2] = MakeGarbageCollected<StringKeyframe>(); keyframes[3] = MakeGarbageCollected<StringKeyframe>(); keyframes[4] = MakeGarbageCollected<StringKeyframe>(); keyframes[4]->SetOffset(0.5); keyframes[5] = MakeGarbageCollected<StringKeyframe>(); keyframes[6] = MakeGarbageCollected<StringKeyframe>(); keyframes[7] = MakeGarbageCollected<StringKeyframe>(); keyframes[7]->SetOffset(0.8); keyframes[8] = MakeGarbageCollected<StringKeyframe>(); keyframes[9] = MakeGarbageCollected<StringKeyframe>(); keyframes[10] = MakeGarbageCollected<StringKeyframe>(); keyframes[11] = MakeGarbageCollected<StringKeyframe>(); const Vector<double> result = GetComputedOffsets(keyframes); EXPECT_EQ(12U, result.size()); EXPECT_DOUBLE_EQ(0.0, result[0]); EXPECT_DOUBLE_EQ(0.125, result[1]); EXPECT_DOUBLE_EQ(0.25, result[2]); EXPECT_DOUBLE_EQ(0.375, result[3]); EXPECT_DOUBLE_EQ(0.5, result[4]); EXPECT_DOUBLE_EQ(0.6, result[5]); EXPECT_DOUBLE_EQ(0.7, result[6]); EXPECT_DOUBLE_EQ(0.8, result[7]); EXPECT_DOUBLE_EQ(0.85, result[8]); EXPECT_DOUBLE_EQ(0.9, result[9]); EXPECT_DOUBLE_EQ(0.95, result[10]); EXPECT_DOUBLE_EQ(1.0, result[11]); } } // namespace blink
[ "sunny.nam@samsung.com" ]
sunny.nam@samsung.com
b5bf3bf1e81598646ee21732bf57f365e423ab88
26df6604faf41197c9ced34c3df13839be6e74d4
/src/org/apache/poi/ss/formula/WorkbookEvaluatorProvider.hpp
49e733e2d21db0ae0ad59c0acf0d8aa1d5669f14
[ "Apache-2.0" ]
permissive
pebble2015/cpoi
58b4b1e38a7769b13ccfb2973270d15d490de07f
6dcc0c5e13e3e722b4ef9fd0baffbf62bf71ead6
refs/heads/master
2021-07-09T09:02:41.986901
2017-10-08T12:12:56
2017-10-08T12:12:56
105,988,119
0
0
null
null
null
null
UTF-8
C++
false
false
400
hpp
// Generated from /POI/java/org/apache/poi/ss/formula/WorkbookEvaluatorProvider.java #pragma once #include <org/apache/poi/ss/formula/fwd-POI.hpp> #include <java/lang/Object.hpp> struct poi::ss::formula::WorkbookEvaluatorProvider : public virtual ::java::lang::Object { virtual WorkbookEvaluator* _getWorkbookEvaluator() = 0; // Generated static ::java::lang::Class *class_(); };
[ "zhang.chen.yu@outlook.com" ]
zhang.chen.yu@outlook.com
acf537493bfbf19d66f884446d18dd0237763d1f
47d7c25fa563a6b8f615b9718a8d2154235b8119
/CSIS 252/Brekke's Files/inheritance/rectangleType.h
7dc01c267ac1bac338270cc6f3b6e1ce838df079
[]
no_license
meyerpa/CPlusPlus
aefcbd20671da909b04e68aabc5f70911590903d
46f7b8465a6fa1929be5c88985ed38ea9ac335ce
refs/heads/master
2021-06-04T10:25:11.551812
2018-02-23T21:50:01
2018-02-23T21:50:01
57,323,448
0
0
null
2016-04-28T18:23:24
2016-04-28T18:05:37
C++
UTF-8
C++
false
false
1,318
h
#ifndef _RECTANGLETYPE_H_ #define _RECTANGLETYPE_H_ class rectangleType { public: void setDimension(double l, double w); //Function to set the length and width of the rectangle. //Postcondition: length = l; width = w; double getLength() const; //Function to return the length of the rectangle. //Postcondition: The value of length is returned. double getWidth() const; //Function to return the width of the rectangle. //Postcondition: The value of width is returned. double area() const; //Function to return the area of the rectangle. //Postcondition: The area of the rectangle is // calculated and returned. double perimeter() const; //Function to return the perimeter of the rectangle. //Postcondition: The perimeter of the rectangle is // calculated and returned. void print() const; //Function to output the length and width of //the rectangle. // rectangleType(); //default constructor //Postcondition: length = 0; width = 0; rectangleType(double l, double w); //constructor with parameters //Postcondition: length = l; width = w; private: double length; double width; }; #endif
[ "meyerpa@mnstate.edu" ]
meyerpa@mnstate.edu
69dd40133a8f39f6f4626a7b1b6428729a014480
9406d73feabf3b56443934f6059b20c815f7d4af
/test/a32/test-simulator-cond-rd-rn-operand-rm-ror-amount-a32.cc
eeb53e0d66b1d2e39771041ce667fa23afb2d59a
[]
no_license
multi-os-engine-community/vixl
42b4b80092a01180cf4aa1160da988f1e9c7e628
811fe15831f77f7465809503791f85fed76e44c2
refs/heads/master
2021-01-20T23:38:00.004361
2016-08-08T15:18:52
2016-08-09T10:28:29
101,847,618
0
0
null
2017-08-30T06:48:55
2017-08-30T06:48:55
null
UTF-8
C++
false
false
73,266
cc
// Copyright 2016, ARM Limited // 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 ARM Limited 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 CONTRIBUTORS "AS IS" AND // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // ----------------------------------------------------------------------------- // This file is auto generated from the // test/a32/config/template-simulator-a32.cc.in template file using // tools/generate_tests.py. // // PLEASE DO NOT EDIT. // ----------------------------------------------------------------------------- #include "test-runner.h" #include "test-utils.h" #include "test-utils-a32.h" #include "a32/assembler-a32.h" #include "a32/macro-assembler-a32.h" #include "a32/disasm-a32.h" #define __ masm. #define BUF_SIZE (4096) #ifdef VIXL_INCLUDE_SIMULATOR // Run tests with the simulator. #define SETUP() MacroAssembler masm(BUF_SIZE) #define START() masm.GetBuffer().Reset() #define END() \ __ Hlt(0); \ __ FinalizeCode(); // TODO: Run the tests in the simulator. #define RUN() #define TEARDOWN() #else // ifdef VIXL_INCLUDE_SIMULATOR. #define SETUP() MacroAssembler masm(BUF_SIZE); #define START() \ masm.GetBuffer().Reset(); \ __ Push(r4); \ __ Push(r5); \ __ Push(r6); \ __ Push(r7); \ __ Push(r8); \ __ Push(r9); \ __ Push(r10); \ __ Push(r11); \ __ Push(r12); \ __ Push(lr) #define END() \ __ Pop(lr); \ __ Pop(r12); \ __ Pop(r11); \ __ Pop(r10); \ __ Pop(r9); \ __ Pop(r8); \ __ Pop(r7); \ __ Pop(r6); \ __ Pop(r5); \ __ Pop(r4); \ __ Bx(lr); \ __ FinalizeCode(); // Copy the generated code into a memory area garanteed to be executable before // executing it. #define RUN() \ { \ ExecutableMemory code(masm.GetBuffer().GetCursorOffset()); \ code.Write(masm.GetBuffer().GetOffsetAddress<byte*>(0), \ masm.GetBuffer().GetCursorOffset()); \ int pcs_offset = masm.IsT32() ? 1 : 0; \ code.Execute(pcs_offset); \ } #define TEARDOWN() #endif // ifdef VIXL_INCLUDE_SIMULATOR namespace vixl { namespace aarch32 { // List of instruction encodings: #define FOREACH_INSTRUCTION(M) \ M(Sxtab) \ M(Sxtab16) \ M(Sxtah) \ M(Uxtab) \ M(Uxtab16) \ M(Uxtah) // Values to be passed to the assembler to produce the instruction under test. struct Operands { Condition cond; Register rd; Register rn; Register rm; ShiftType ror; uint32_t amount; }; // Input data to feed to the instruction. struct Inputs { uint32_t apsr; uint32_t rd; uint32_t rn; uint32_t rm; }; // This structure contains all input data needed to test one specific encoding. // It used to generate a loop over an instruction. struct TestLoopData { // The `operands` fields represents the values to pass to the assembler to // produce the instruction. Operands operands; // Description of the operands, used for error reporting. const char* operands_description; // Unique identifier, used for generating traces. const char* identifier; // Array of values to be fed to the instruction. size_t input_size; const Inputs* inputs; }; static const Inputs kCondition[] = { {NFlag, 0xabababab, 0xabababab, 0xabababab}, {ZFlag, 0xabababab, 0xabababab, 0xabababab}, {CFlag, 0xabababab, 0xabababab, 0xabababab}, {VFlag, 0xabababab, 0xabababab, 0xabababab}, {NZFlag, 0xabababab, 0xabababab, 0xabababab}, {NCFlag, 0xabababab, 0xabababab, 0xabababab}, {NVFlag, 0xabababab, 0xabababab, 0xabababab}, {ZCFlag, 0xabababab, 0xabababab, 0xabababab}, {ZVFlag, 0xabababab, 0xabababab, 0xabababab}, {CVFlag, 0xabababab, 0xabababab, 0xabababab}, {NZCFlag, 0xabababab, 0xabababab, 0xabababab}, {NZVFlag, 0xabababab, 0xabababab, 0xabababab}, {NCVFlag, 0xabababab, 0xabababab, 0xabababab}, {ZCVFlag, 0xabababab, 0xabababab, 0xabababab}, {NZCVFlag, 0xabababab, 0xabababab, 0xabababab}}; static const Inputs kRdIsRn[] = {{NoFlag, 0xffffff83, 0xffffff83, 0xffff8002}, {NoFlag, 0x0000007e, 0x0000007e, 0x7fffffff}, {NoFlag, 0x0000007d, 0x0000007d, 0xffffffe0}, {NoFlag, 0x7fffffff, 0x7fffffff, 0x00000002}, {NoFlag, 0xffff8002, 0xffff8002, 0xfffffffd}, {NoFlag, 0xffffffe0, 0xffffffe0, 0x00007fff}, {NoFlag, 0xffff8000, 0xffff8000, 0xffffff83}, {NoFlag, 0xffff8002, 0xffff8002, 0x80000001}, {NoFlag, 0x00007ffd, 0x00007ffd, 0xffff8003}, {NoFlag, 0x00007fff, 0x00007fff, 0xffffffff}, {NoFlag, 0x00000000, 0x00000000, 0xffffff80}, {NoFlag, 0xffff8001, 0xffff8001, 0x33333333}, {NoFlag, 0xffffff80, 0xffffff80, 0x0000007e}, {NoFlag, 0x0000007e, 0x0000007e, 0x7ffffffd}, {NoFlag, 0xffffff80, 0xffffff80, 0xfffffffd}, {NoFlag, 0x00000020, 0x00000020, 0xffff8002}, {NoFlag, 0xffffff80, 0xffffff80, 0xfffffffe}, {NoFlag, 0x00000002, 0x00000002, 0x00000000}, {NoFlag, 0x0000007e, 0x0000007e, 0x00000001}, {NoFlag, 0x00000002, 0x00000002, 0x0000007f}, {NoFlag, 0x80000000, 0x80000000, 0x80000000}, {NoFlag, 0x7fffffff, 0x7fffffff, 0xffffff80}, {NoFlag, 0x00000001, 0x00000001, 0xfffffffe}, {NoFlag, 0x33333333, 0x33333333, 0x0000007d}, {NoFlag, 0x00000001, 0x00000001, 0x7ffffffe}, {NoFlag, 0x00007ffe, 0x00007ffe, 0x7fffffff}, {NoFlag, 0x80000000, 0x80000000, 0xffffff83}, {NoFlag, 0x00000000, 0x00000000, 0x7ffffffe}, {NoFlag, 0x00000000, 0x00000000, 0x0000007f}, {NoFlag, 0x7fffffff, 0x7fffffff, 0xcccccccc}, {NoFlag, 0xffffff82, 0xffffff82, 0x00000002}, {NoFlag, 0x7ffffffd, 0x7ffffffd, 0xaaaaaaaa}, {NoFlag, 0xcccccccc, 0xcccccccc, 0xffff8001}, {NoFlag, 0xfffffffe, 0xfffffffe, 0xffff8001}, {NoFlag, 0x7fffffff, 0x7fffffff, 0x00000020}, {NoFlag, 0xffffffe0, 0xffffffe0, 0x00007ffe}, {NoFlag, 0x80000001, 0x80000001, 0xffff8000}, {NoFlag, 0xffffff82, 0xffffff82, 0x0000007d}, {NoFlag, 0x0000007e, 0x0000007e, 0x7ffffffe}, {NoFlag, 0x00007ffd, 0x00007ffd, 0xffffff80}, {NoFlag, 0x0000007d, 0x0000007d, 0x0000007e}, {NoFlag, 0xffff8002, 0xffff8002, 0x7fffffff}, {NoFlag, 0xffffffe0, 0xffffffe0, 0x0000007f}, {NoFlag, 0x00007ffe, 0x00007ffe, 0xffffff81}, {NoFlag, 0x80000000, 0x80000000, 0x0000007e}, {NoFlag, 0xffffffff, 0xffffffff, 0xaaaaaaaa}, {NoFlag, 0xfffffffe, 0xfffffffe, 0x00000020}, {NoFlag, 0xffffff82, 0xffffff82, 0xffff8003}, {NoFlag, 0x7ffffffd, 0x7ffffffd, 0xffff8002}, {NoFlag, 0x7ffffffe, 0x7ffffffe, 0x00000000}, {NoFlag, 0xfffffffd, 0xfffffffd, 0xffffffe0}, {NoFlag, 0xffff8000, 0xffff8000, 0xffff8002}, {NoFlag, 0xffffff82, 0xffffff82, 0x7ffffffd}, {NoFlag, 0xcccccccc, 0xcccccccc, 0x80000000}, {NoFlag, 0x80000001, 0x80000001, 0x33333333}, {NoFlag, 0x00000001, 0x00000001, 0x00000002}, {NoFlag, 0x55555555, 0x55555555, 0x0000007f}, {NoFlag, 0xffffffff, 0xffffffff, 0xfffffffd}, {NoFlag, 0xffffff80, 0xffffff80, 0x80000000}, {NoFlag, 0x00000000, 0x00000000, 0x00000020}, {NoFlag, 0xfffffffe, 0xfffffffe, 0xffff8003}, {NoFlag, 0xffff8001, 0xffff8001, 0xffff8000}, {NoFlag, 0x55555555, 0x55555555, 0x55555555}, {NoFlag, 0x00007fff, 0x00007fff, 0xffff8000}, {NoFlag, 0x7fffffff, 0x7fffffff, 0xffffffe0}, {NoFlag, 0x00000001, 0x00000001, 0x55555555}, {NoFlag, 0x33333333, 0x33333333, 0x7ffffffe}, {NoFlag, 0x80000000, 0x80000000, 0xffffffe0}, {NoFlag, 0xffffff83, 0xffffff83, 0x0000007d}, {NoFlag, 0xffff8003, 0xffff8003, 0x00000002}, {NoFlag, 0x7ffffffe, 0x7ffffffe, 0xffffff81}, {NoFlag, 0xfffffffe, 0xfffffffe, 0xffffff80}, {NoFlag, 0x00007ffe, 0x00007ffe, 0xffff8002}, {NoFlag, 0x80000001, 0x80000001, 0xfffffffe}, {NoFlag, 0x7ffffffd, 0x7ffffffd, 0xfffffffd}, {NoFlag, 0x7ffffffd, 0x7ffffffd, 0xfffffffe}, {NoFlag, 0x7ffffffe, 0x7ffffffe, 0xffffff83}, {NoFlag, 0xfffffffd, 0xfffffffd, 0x00007ffe}, {NoFlag, 0x7fffffff, 0x7fffffff, 0x80000000}, {NoFlag, 0xffffff82, 0xffffff82, 0x7fffffff}, {NoFlag, 0xffffffe0, 0xffffffe0, 0xffffff83}, {NoFlag, 0xffff8000, 0xffff8000, 0xffff8000}, {NoFlag, 0x00000001, 0x00000001, 0x7fffffff}, {NoFlag, 0xfffffffe, 0xfffffffe, 0xffffffff}, {NoFlag, 0xffffff82, 0xffffff82, 0xffffffff}, {NoFlag, 0xffffffff, 0xffffffff, 0xfffffffe}, {NoFlag, 0xaaaaaaaa, 0xaaaaaaaa, 0x0000007d}, {NoFlag, 0xffff8001, 0xffff8001, 0xfffffffe}, {NoFlag, 0x00007ffe, 0x00007ffe, 0x0000007d}, {NoFlag, 0xffffff82, 0xffffff82, 0xfffffffe}, {NoFlag, 0x00000000, 0x00000000, 0x00007ffd}, {NoFlag, 0xaaaaaaaa, 0xaaaaaaaa, 0xffff8002}, {NoFlag, 0x0000007f, 0x0000007f, 0xffffff82}, {NoFlag, 0x00007fff, 0x00007fff, 0x33333333}, {NoFlag, 0xfffffffd, 0xfffffffd, 0x80000000}, {NoFlag, 0x00000000, 0x00000000, 0xfffffffd}, {NoFlag, 0x0000007d, 0x0000007d, 0x0000007f}, {NoFlag, 0xfffffffd, 0xfffffffd, 0x0000007e}, {NoFlag, 0xffffffe0, 0xffffffe0, 0x55555555}, {NoFlag, 0xffffffff, 0xffffffff, 0x80000000}, {NoFlag, 0xffffffe0, 0xffffffe0, 0x0000007e}, {NoFlag, 0xffffff81, 0xffffff81, 0x00007ffd}, {NoFlag, 0x00000020, 0x00000020, 0xffff8001}, {NoFlag, 0x00007fff, 0x00007fff, 0xffffff83}, {NoFlag, 0x33333333, 0x33333333, 0x00000000}, {NoFlag, 0xffff8000, 0xffff8000, 0xffffff82}, {NoFlag, 0xffff8001, 0xffff8001, 0x0000007e}, {NoFlag, 0xffffff80, 0xffffff80, 0x00000001}, {NoFlag, 0x80000000, 0x80000000, 0xcccccccc}, {NoFlag, 0x00000002, 0x00000002, 0x00007ffd}, {NoFlag, 0x7ffffffe, 0x7ffffffe, 0x80000001}, {NoFlag, 0x00000020, 0x00000020, 0x00007ffe}, {NoFlag, 0xffff8000, 0xffff8000, 0xfffffffd}, {NoFlag, 0x7fffffff, 0x7fffffff, 0xffff8001}, {NoFlag, 0x00000000, 0x00000000, 0xffffff83}, {NoFlag, 0x0000007f, 0x0000007f, 0x00000020}, {NoFlag, 0x80000001, 0x80000001, 0xffff8003}, {NoFlag, 0xffff8001, 0xffff8001, 0x0000007f}, {NoFlag, 0x0000007f, 0x0000007f, 0x80000001}, {NoFlag, 0x00000002, 0x00000002, 0x7ffffffe}, {NoFlag, 0xffffff82, 0xffffff82, 0xffffff83}, {NoFlag, 0x00007ffd, 0x00007ffd, 0x7fffffff}, {NoFlag, 0x7ffffffe, 0x7ffffffe, 0xfffffffe}, {NoFlag, 0xffffff82, 0xffffff82, 0xffff8000}, {NoFlag, 0xfffffffe, 0xfffffffe, 0xffff8000}, {NoFlag, 0xffff8002, 0xffff8002, 0xffffff81}, {NoFlag, 0x33333333, 0x33333333, 0x7fffffff}, {NoFlag, 0x80000001, 0x80000001, 0x00007fff}, {NoFlag, 0xffff8002, 0xffff8002, 0xcccccccc}, {NoFlag, 0xffffffff, 0xffffffff, 0x00000002}, {NoFlag, 0x33333333, 0x33333333, 0xffffff81}, {NoFlag, 0xfffffffd, 0xfffffffd, 0xffffff80}, {NoFlag, 0x55555555, 0x55555555, 0xaaaaaaaa}, {NoFlag, 0x33333333, 0x33333333, 0xffffff82}, {NoFlag, 0xffffff80, 0xffffff80, 0xaaaaaaaa}, {NoFlag, 0x0000007e, 0x0000007e, 0x00000020}, {NoFlag, 0xffffff83, 0xffffff83, 0x00007ffd}, {NoFlag, 0xffffff82, 0xffffff82, 0xaaaaaaaa}, {NoFlag, 0xffff8003, 0xffff8003, 0xffffffff}, {NoFlag, 0xaaaaaaaa, 0xaaaaaaaa, 0xfffffffe}, {NoFlag, 0xaaaaaaaa, 0xaaaaaaaa, 0x00000000}, {NoFlag, 0xaaaaaaaa, 0xaaaaaaaa, 0x0000007f}, {NoFlag, 0x0000007f, 0x0000007f, 0x0000007d}, {NoFlag, 0xfffffffd, 0xfffffffd, 0x55555555}, {NoFlag, 0xffffffff, 0xffffffff, 0x00000020}, {NoFlag, 0x00007ffe, 0x00007ffe, 0xffffff83}, {NoFlag, 0x7fffffff, 0x7fffffff, 0x55555555}, {NoFlag, 0x55555555, 0x55555555, 0xcccccccc}, {NoFlag, 0xffffffe0, 0xffffffe0, 0xffff8003}, {NoFlag, 0x7ffffffe, 0x7ffffffe, 0x00007ffe}, {NoFlag, 0x00007ffd, 0x00007ffd, 0xffff8002}, {NoFlag, 0x00007ffd, 0x00007ffd, 0x00000001}, {NoFlag, 0x00000000, 0x00000000, 0x00007ffe}, {NoFlag, 0xffffff80, 0xffffff80, 0x00000020}, {NoFlag, 0xffff8000, 0xffff8000, 0x0000007d}, {NoFlag, 0xffff8003, 0xffff8003, 0x00000000}, {NoFlag, 0x0000007e, 0x0000007e, 0x80000000}, {NoFlag, 0xfffffffd, 0xfffffffd, 0x00000000}, {NoFlag, 0xffffff80, 0xffffff80, 0xffffffff}, {NoFlag, 0xcccccccc, 0xcccccccc, 0x0000007f}, {NoFlag, 0x7ffffffd, 0x7ffffffd, 0x00000000}, {NoFlag, 0x00007fff, 0x00007fff, 0x00000000}, {NoFlag, 0x0000007f, 0x0000007f, 0x00000001}, {NoFlag, 0xffffffff, 0xffffffff, 0xffffff82}, {NoFlag, 0x00007ffe, 0x00007ffe, 0x00007ffd}, {NoFlag, 0xaaaaaaaa, 0xaaaaaaaa, 0x33333333}, {NoFlag, 0xffffff82, 0xffffff82, 0x55555555}, {NoFlag, 0xffff8003, 0xffff8003, 0x0000007e}, {NoFlag, 0xffffff83, 0xffffff83, 0x00000002}, {NoFlag, 0xffffff82, 0xffffff82, 0x33333333}, {NoFlag, 0x55555555, 0x55555555, 0xffffffff}, {NoFlag, 0xaaaaaaaa, 0xaaaaaaaa, 0x80000001}, {NoFlag, 0xffffff83, 0xffffff83, 0xffffffe0}, {NoFlag, 0x00000001, 0x00000001, 0xffffffe0}, {NoFlag, 0x33333333, 0x33333333, 0x33333333}, {NoFlag, 0x55555555, 0x55555555, 0x00000001}, {NoFlag, 0xffffff83, 0xffffff83, 0x00007fff}, {NoFlag, 0x00000002, 0x00000002, 0xfffffffd}, {NoFlag, 0xffffffe0, 0xffffffe0, 0xffff8002}, {NoFlag, 0x80000000, 0x80000000, 0x00007ffd}, {NoFlag, 0xffffff83, 0xffffff83, 0xfffffffe}, {NoFlag, 0x80000001, 0x80000001, 0xffffffff}, {NoFlag, 0xffff8003, 0xffff8003, 0x00000020}, {NoFlag, 0xffffff82, 0xffffff82, 0xcccccccc}, {NoFlag, 0x00000020, 0x00000020, 0x7fffffff}, {NoFlag, 0xffffff80, 0xffffff80, 0x55555555}, {NoFlag, 0x00000001, 0x00000001, 0x00000020}, {NoFlag, 0xffff8001, 0xffff8001, 0x00007fff}, {NoFlag, 0x00000020, 0x00000020, 0xaaaaaaaa}, {NoFlag, 0x55555555, 0x55555555, 0x7fffffff}, {NoFlag, 0xfffffffe, 0xfffffffe, 0x7fffffff}, {NoFlag, 0x00007fff, 0x00007fff, 0x55555555}, {NoFlag, 0x55555555, 0x55555555, 0x0000007d}, {NoFlag, 0xcccccccc, 0xcccccccc, 0x7ffffffe}, {NoFlag, 0xffff8002, 0xffff8002, 0x00007ffe}, {NoFlag, 0xfffffffe, 0xfffffffe, 0xffffff81}, {NoFlag, 0xffffff81, 0xffffff81, 0x0000007d}, {NoFlag, 0x00000020, 0x00000020, 0x0000007e}, {NoFlag, 0xffffffff, 0xffffffff, 0x00007ffe}, {NoFlag, 0xffff8002, 0xffff8002, 0x0000007e}}; static const Inputs kRdIsRm[] = {{NoFlag, 0x55555555, 0x7ffffffe, 0x55555555}, {NoFlag, 0xfffffffe, 0x00000001, 0xfffffffe}, {NoFlag, 0xffffff82, 0xffffff82, 0xffffff82}, {NoFlag, 0xffff8000, 0xffff8003, 0xffff8000}, {NoFlag, 0x00000001, 0x00000000, 0x00000001}, {NoFlag, 0xffffff81, 0x00007fff, 0xffffff81}, {NoFlag, 0x0000007d, 0xffff8002, 0x0000007d}, {NoFlag, 0x80000000, 0xffff8000, 0x80000000}, {NoFlag, 0xffffff80, 0x00000020, 0xffffff80}, {NoFlag, 0x55555555, 0xffffff81, 0x55555555}, {NoFlag, 0x00007ffd, 0xffffff82, 0x00007ffd}, {NoFlag, 0x55555555, 0x00007fff, 0x55555555}, {NoFlag, 0x7ffffffd, 0xffff8000, 0x7ffffffd}, {NoFlag, 0xffffffff, 0xffffff83, 0xffffffff}, {NoFlag, 0x00000000, 0xffffffff, 0x00000000}, {NoFlag, 0xffff8002, 0x33333333, 0xffff8002}, {NoFlag, 0x00007ffd, 0xaaaaaaaa, 0x00007ffd}, {NoFlag, 0x55555555, 0xffff8000, 0x55555555}, {NoFlag, 0x80000001, 0xffffffff, 0x80000001}, {NoFlag, 0x0000007d, 0xffffff83, 0x0000007d}, {NoFlag, 0x0000007e, 0xffffff82, 0x0000007e}, {NoFlag, 0xcccccccc, 0x0000007d, 0xcccccccc}, {NoFlag, 0xffff8002, 0xffffffff, 0xffff8002}, {NoFlag, 0xffffff81, 0x0000007f, 0xffffff81}, {NoFlag, 0xffff8000, 0xffffff83, 0xffff8000}, {NoFlag, 0xffffffff, 0xffffffe0, 0xffffffff}, {NoFlag, 0xfffffffd, 0x80000001, 0xfffffffd}, {NoFlag, 0x55555555, 0x80000000, 0x55555555}, {NoFlag, 0xffff8000, 0x0000007d, 0xffff8000}, {NoFlag, 0xaaaaaaaa, 0xffff8003, 0xaaaaaaaa}, {NoFlag, 0x00000001, 0x00007ffd, 0x00000001}, {NoFlag, 0x0000007e, 0x7ffffffe, 0x0000007e}, {NoFlag, 0x00000020, 0x00007ffd, 0x00000020}, {NoFlag, 0xffffff81, 0x7ffffffd, 0xffffff81}, {NoFlag, 0xffffff83, 0x0000007f, 0xffffff83}, {NoFlag, 0x00000001, 0x0000007e, 0x00000001}, {NoFlag, 0xffffff82, 0xfffffffd, 0xffffff82}, {NoFlag, 0xffff8003, 0x7ffffffe, 0xffff8003}, {NoFlag, 0x00000002, 0x00000002, 0x00000002}, {NoFlag, 0xffffff83, 0xffff8001, 0xffffff83}, {NoFlag, 0xffff8002, 0xfffffffe, 0xffff8002}, {NoFlag, 0xffffff80, 0xffffff81, 0xffffff80}, {NoFlag, 0x7fffffff, 0xffffff81, 0x7fffffff}, {NoFlag, 0x00000020, 0xffffff81, 0x00000020}, {NoFlag, 0x0000007f, 0xffffffff, 0x0000007f}, {NoFlag, 0x0000007d, 0xcccccccc, 0x0000007d}, {NoFlag, 0x00007fff, 0x55555555, 0x00007fff}, {NoFlag, 0xffff8003, 0x00007ffd, 0xffff8003}, {NoFlag, 0x80000001, 0x80000001, 0x80000001}, {NoFlag, 0xffffffff, 0xfffffffd, 0xffffffff}, {NoFlag, 0xffff8000, 0xfffffffe, 0xffff8000}, {NoFlag, 0xcccccccc, 0x0000007f, 0xcccccccc}, {NoFlag, 0x00000001, 0x00000002, 0x00000001}, {NoFlag, 0xffffff82, 0xffffff81, 0xffffff82}, {NoFlag, 0xfffffffd, 0x00007ffd, 0xfffffffd}, {NoFlag, 0x80000001, 0x33333333, 0x80000001}, {NoFlag, 0xffffff82, 0xffff8002, 0xffffff82}, {NoFlag, 0xffff8003, 0xfffffffd, 0xffff8003}, {NoFlag, 0xffffff81, 0x00000020, 0xffffff81}, {NoFlag, 0xffff8001, 0xffff8003, 0xffff8001}, {NoFlag, 0x00000001, 0x80000001, 0x00000001}, {NoFlag, 0xfffffffd, 0x00000002, 0xfffffffd}, {NoFlag, 0xffff8003, 0x7ffffffd, 0xffff8003}, {NoFlag, 0x0000007e, 0xaaaaaaaa, 0x0000007e}, {NoFlag, 0x7ffffffe, 0x7fffffff, 0x7ffffffe}, {NoFlag, 0x00007ffd, 0x00007ffe, 0x00007ffd}, {NoFlag, 0x00007fff, 0x80000001, 0x00007fff}, {NoFlag, 0x00007fff, 0xfffffffe, 0x00007fff}, {NoFlag, 0x00000001, 0xffffff80, 0x00000001}, {NoFlag, 0x55555555, 0xcccccccc, 0x55555555}, {NoFlag, 0x7ffffffd, 0xffffffe0, 0x7ffffffd}, {NoFlag, 0xffffff81, 0xfffffffe, 0xffffff81}, {NoFlag, 0xffffff82, 0x00007ffe, 0xffffff82}, {NoFlag, 0xffffff82, 0x80000001, 0xffffff82}, {NoFlag, 0x0000007f, 0xffff8001, 0x0000007f}, {NoFlag, 0x7ffffffd, 0xffffff83, 0x7ffffffd}, {NoFlag, 0xffffff82, 0xcccccccc, 0xffffff82}, {NoFlag, 0x00000020, 0xffffff83, 0x00000020}, {NoFlag, 0x00007ffe, 0x80000000, 0x00007ffe}, {NoFlag, 0x0000007f, 0xffff8000, 0x0000007f}, {NoFlag, 0xffffff82, 0x33333333, 0xffffff82}, {NoFlag, 0x7ffffffd, 0x7ffffffd, 0x7ffffffd}, {NoFlag, 0xffffff80, 0xffff8001, 0xffffff80}, {NoFlag, 0x00000002, 0xaaaaaaaa, 0x00000002}, {NoFlag, 0xffffffff, 0x7fffffff, 0xffffffff}, {NoFlag, 0xfffffffd, 0xfffffffe, 0xfffffffd}, {NoFlag, 0x00000020, 0x00000001, 0x00000020}, {NoFlag, 0x55555555, 0x00000001, 0x55555555}, {NoFlag, 0x55555555, 0xffffff80, 0x55555555}, {NoFlag, 0xffffffff, 0x00007fff, 0xffffffff}, {NoFlag, 0x00000020, 0xaaaaaaaa, 0x00000020}, {NoFlag, 0x00000002, 0x00007ffe, 0x00000002}, {NoFlag, 0x00000001, 0xcccccccc, 0x00000001}, {NoFlag, 0xffff8001, 0x00000000, 0xffff8001}, {NoFlag, 0x00000001, 0xffff8000, 0x00000001}, {NoFlag, 0xffffffe0, 0x00007fff, 0xffffffe0}, {NoFlag, 0xfffffffe, 0x00007fff, 0xfffffffe}, {NoFlag, 0xffffff83, 0x00000001, 0xffffff83}, {NoFlag, 0x00007fff, 0xffff8002, 0x00007fff}, {NoFlag, 0x7ffffffd, 0x7ffffffe, 0x7ffffffd}, {NoFlag, 0x80000001, 0xaaaaaaaa, 0x80000001}, {NoFlag, 0x80000001, 0xcccccccc, 0x80000001}, {NoFlag, 0x00007ffe, 0xffffffe0, 0x00007ffe}, {NoFlag, 0x00007ffe, 0xfffffffd, 0x00007ffe}, {NoFlag, 0x55555555, 0xaaaaaaaa, 0x55555555}, {NoFlag, 0xffffffe0, 0x00000001, 0xffffffe0}, {NoFlag, 0x0000007e, 0x00007fff, 0x0000007e}, {NoFlag, 0xfffffffe, 0xfffffffd, 0xfffffffe}, {NoFlag, 0x33333333, 0x0000007d, 0x33333333}, {NoFlag, 0xffffff81, 0x7fffffff, 0xffffff81}, {NoFlag, 0x0000007e, 0x0000007d, 0x0000007e}, {NoFlag, 0x00000001, 0xffffff81, 0x00000001}, {NoFlag, 0x80000000, 0x00000002, 0x80000000}, {NoFlag, 0x0000007d, 0xffff8003, 0x0000007d}, {NoFlag, 0x7ffffffe, 0x00007ffd, 0x7ffffffe}, {NoFlag, 0x7ffffffe, 0xaaaaaaaa, 0x7ffffffe}, {NoFlag, 0x00000000, 0xffff8000, 0x00000000}, {NoFlag, 0x33333333, 0x00000002, 0x33333333}, {NoFlag, 0xffffff81, 0xffffff83, 0xffffff81}, {NoFlag, 0x7ffffffe, 0x00007ffe, 0x7ffffffe}, {NoFlag, 0x80000000, 0x0000007d, 0x80000000}, {NoFlag, 0x00000020, 0x00000002, 0x00000020}, {NoFlag, 0x33333333, 0x80000001, 0x33333333}, {NoFlag, 0xffffff83, 0x00007ffd, 0xffffff83}, {NoFlag, 0x00007ffd, 0xffffff83, 0x00007ffd}, {NoFlag, 0xffff8001, 0x80000000, 0xffff8001}, {NoFlag, 0x00000000, 0x80000000, 0x00000000}, {NoFlag, 0xffffffe0, 0xffffffff, 0xffffffe0}, {NoFlag, 0x80000000, 0xffffff83, 0x80000000}, {NoFlag, 0x00000020, 0xffffff80, 0x00000020}, {NoFlag, 0x7ffffffd, 0xffff8001, 0x7ffffffd}, {NoFlag, 0x80000001, 0xffff8003, 0x80000001}, {NoFlag, 0x00007ffe, 0x7fffffff, 0x00007ffe}, {NoFlag, 0x7fffffff, 0x00000002, 0x7fffffff}, {NoFlag, 0xffffff83, 0xffff8003, 0xffffff83}, {NoFlag, 0xaaaaaaaa, 0xcccccccc, 0xaaaaaaaa}, {NoFlag, 0x0000007f, 0xffffff80, 0x0000007f}, {NoFlag, 0x80000001, 0x00007ffd, 0x80000001}, {NoFlag, 0xffff8000, 0x80000001, 0xffff8000}, {NoFlag, 0x00007fff, 0x00007ffd, 0x00007fff}, {NoFlag, 0x0000007e, 0x0000007f, 0x0000007e}, {NoFlag, 0x00000002, 0x0000007d, 0x00000002}, {NoFlag, 0x80000001, 0x7fffffff, 0x80000001}, {NoFlag, 0x0000007e, 0xffffff81, 0x0000007e}, {NoFlag, 0x7ffffffe, 0xffff8001, 0x7ffffffe}, {NoFlag, 0x7fffffff, 0x80000001, 0x7fffffff}, {NoFlag, 0x7ffffffd, 0x0000007f, 0x7ffffffd}, {NoFlag, 0xffffff81, 0xffffff81, 0xffffff81}, {NoFlag, 0x00000001, 0xfffffffd, 0x00000001}, {NoFlag, 0x00000001, 0xffffffff, 0x00000001}, {NoFlag, 0x7ffffffd, 0x55555555, 0x7ffffffd}, {NoFlag, 0x55555555, 0x0000007f, 0x55555555}, {NoFlag, 0x55555555, 0xffff8003, 0x55555555}, {NoFlag, 0xaaaaaaaa, 0x00007ffd, 0xaaaaaaaa}, {NoFlag, 0x0000007e, 0x33333333, 0x0000007e}, {NoFlag, 0xfffffffe, 0x80000001, 0xfffffffe}, {NoFlag, 0xfffffffe, 0xffff8000, 0xfffffffe}, {NoFlag, 0xffffffe0, 0xffffff81, 0xffffffe0}, {NoFlag, 0x7fffffff, 0x0000007f, 0x7fffffff}, {NoFlag, 0xffff8003, 0x0000007f, 0xffff8003}, {NoFlag, 0xffffff82, 0x00007ffd, 0xffffff82}, {NoFlag, 0x33333333, 0xffffffff, 0x33333333}, {NoFlag, 0xffffffe0, 0xcccccccc, 0xffffffe0}, {NoFlag, 0xffffff83, 0x7ffffffd, 0xffffff83}, {NoFlag, 0x0000007e, 0xcccccccc, 0x0000007e}, {NoFlag, 0x00000002, 0xfffffffd, 0x00000002}, {NoFlag, 0x00007fff, 0xcccccccc, 0x00007fff}, {NoFlag, 0x7fffffff, 0x00007fff, 0x7fffffff}, {NoFlag, 0xffffffe0, 0x33333333, 0xffffffe0}, {NoFlag, 0x0000007f, 0x0000007d, 0x0000007f}, {NoFlag, 0x0000007f, 0xffffffe0, 0x0000007f}, {NoFlag, 0x00007fff, 0xffff8000, 0x00007fff}, {NoFlag, 0x7fffffff, 0xffffffff, 0x7fffffff}, {NoFlag, 0xffff8000, 0x7ffffffd, 0xffff8000}, {NoFlag, 0xcccccccc, 0x0000007e, 0xcccccccc}, {NoFlag, 0x33333333, 0xffff8003, 0x33333333}, {NoFlag, 0x55555555, 0x00000002, 0x55555555}, {NoFlag, 0x00000001, 0x00000001, 0x00000001}, {NoFlag, 0xaaaaaaaa, 0x33333333, 0xaaaaaaaa}, {NoFlag, 0x7ffffffd, 0x00000001, 0x7ffffffd}, {NoFlag, 0xffffff82, 0xffff8000, 0xffffff82}, {NoFlag, 0x0000007d, 0x55555555, 0x0000007d}, {NoFlag, 0xffff8000, 0x7ffffffe, 0xffff8000}, {NoFlag, 0x7fffffff, 0xffffffe0, 0x7fffffff}, {NoFlag, 0x7fffffff, 0xffff8003, 0x7fffffff}, {NoFlag, 0xffffff82, 0xaaaaaaaa, 0xffffff82}, {NoFlag, 0xfffffffd, 0xffffff80, 0xfffffffd}, {NoFlag, 0x7ffffffd, 0x80000001, 0x7ffffffd}, {NoFlag, 0x00000000, 0x00007ffd, 0x00000000}, {NoFlag, 0xffffffff, 0xffffff80, 0xffffffff}, {NoFlag, 0xffffff80, 0xcccccccc, 0xffffff80}, {NoFlag, 0x00007ffe, 0x55555555, 0x00007ffe}, {NoFlag, 0xffff8000, 0xffff8000, 0xffff8000}, {NoFlag, 0xffffffff, 0xffff8000, 0xffffffff}, {NoFlag, 0x80000001, 0x0000007d, 0x80000001}, {NoFlag, 0xffffffe0, 0xffff8002, 0xffffffe0}, {NoFlag, 0xfffffffe, 0xffffffe0, 0xfffffffe}, {NoFlag, 0x80000000, 0xffff8003, 0x80000000}, {NoFlag, 0x80000001, 0xffffff81, 0x80000001}, {NoFlag, 0xffffffe0, 0x00007ffe, 0xffffffe0}}; static const Inputs kRdIsNotRnIsNotRm[] = { {NoFlag, 0x0000007e, 0x0000007e, 0x0000007d}, {NoFlag, 0x55555555, 0x00000002, 0xffff8002}, {NoFlag, 0xffffffe0, 0x80000001, 0x00000000}, {NoFlag, 0x55555555, 0xffffff83, 0x00000002}, {NoFlag, 0xffffffe0, 0xffffffe0, 0x00000002}, {NoFlag, 0x00000000, 0x80000001, 0xffffff82}, {NoFlag, 0x80000001, 0x00007fff, 0x0000007f}, {NoFlag, 0xffffff80, 0x0000007d, 0x7ffffffe}, {NoFlag, 0xaaaaaaaa, 0x00000020, 0xffff8002}, {NoFlag, 0x33333333, 0x55555555, 0x00000001}, {NoFlag, 0x7ffffffe, 0x33333333, 0x00000000}, {NoFlag, 0x80000000, 0x7ffffffd, 0x55555555}, {NoFlag, 0xcccccccc, 0xffff8001, 0x7ffffffe}, {NoFlag, 0x00000020, 0xffffff83, 0xffff8003}, {NoFlag, 0x00007fff, 0xffffffe0, 0xffffff81}, {NoFlag, 0xffff8000, 0xffff8001, 0x0000007e}, {NoFlag, 0x33333333, 0x0000007e, 0x00000020}, {NoFlag, 0x0000007f, 0xfffffffd, 0xaaaaaaaa}, {NoFlag, 0xffffff83, 0xffffff82, 0x7ffffffd}, {NoFlag, 0x0000007e, 0xcccccccc, 0x7fffffff}, {NoFlag, 0xffff8001, 0x80000001, 0xffffffff}, {NoFlag, 0xffffff81, 0x00000020, 0x7ffffffe}, {NoFlag, 0xffffff83, 0xffffff81, 0xffffffe0}, {NoFlag, 0xffffffe0, 0xffffff81, 0xfffffffd}, {NoFlag, 0x80000001, 0xffffffff, 0xffffffff}, {NoFlag, 0x7ffffffe, 0xffff8000, 0xcccccccc}, {NoFlag, 0xffffff80, 0x00007ffe, 0xffffff82}, {NoFlag, 0x0000007e, 0x0000007d, 0xffff8003}, {NoFlag, 0xffff8002, 0xffffff81, 0x0000007e}, {NoFlag, 0x00007fff, 0x7ffffffd, 0xfffffffe}, {NoFlag, 0x00007ffe, 0x80000001, 0xffffff81}, {NoFlag, 0xffffff81, 0x00007ffd, 0xfffffffd}, {NoFlag, 0x00000020, 0x7fffffff, 0xffff8003}, {NoFlag, 0x0000007e, 0x0000007d, 0x33333333}, {NoFlag, 0xcccccccc, 0xffff8000, 0x00007ffe}, {NoFlag, 0x00007fff, 0xffff8000, 0x00000020}, {NoFlag, 0x00007ffd, 0x00007fff, 0xffffffe0}, {NoFlag, 0x7ffffffd, 0x00000000, 0x00007ffe}, {NoFlag, 0xffffff82, 0x33333333, 0x00000001}, {NoFlag, 0x7ffffffe, 0xffffff80, 0x00000020}, {NoFlag, 0x00007fff, 0xffffff83, 0x00007ffd}, {NoFlag, 0xffff8001, 0xffffffff, 0x80000001}, {NoFlag, 0x00000002, 0xffffff81, 0xcccccccc}, {NoFlag, 0x55555555, 0x0000007f, 0xffff8001}, {NoFlag, 0x80000000, 0x00000020, 0x80000000}, {NoFlag, 0xffffff83, 0x00007fff, 0xffffff80}, {NoFlag, 0x33333333, 0x7ffffffe, 0x7ffffffd}, {NoFlag, 0xffffff80, 0xffffffff, 0x00000001}, {NoFlag, 0x00007ffd, 0x7ffffffd, 0xffffff83}, {NoFlag, 0x33333333, 0xffff8001, 0xffffffe0}, {NoFlag, 0xffff8001, 0xffffff80, 0x00007ffd}, {NoFlag, 0xffffffe0, 0x00007fff, 0x00007ffe}, {NoFlag, 0x0000007d, 0x00000000, 0xffff8000}, {NoFlag, 0x7ffffffe, 0xaaaaaaaa, 0x7ffffffe}, {NoFlag, 0x0000007e, 0x00007ffd, 0xffffffe0}, {NoFlag, 0xfffffffd, 0xffffffe0, 0xffffff83}, {NoFlag, 0x00000001, 0xffffffe0, 0x7ffffffd}, {NoFlag, 0xfffffffd, 0xffff8002, 0x80000000}, {NoFlag, 0x00000020, 0xffffffff, 0x80000000}, {NoFlag, 0x00000001, 0x80000001, 0xffff8003}, {NoFlag, 0xffff8003, 0xaaaaaaaa, 0xffffff81}, {NoFlag, 0x0000007f, 0xfffffffd, 0xffffffe0}, {NoFlag, 0x00007ffe, 0xffffff80, 0x00007ffe}, {NoFlag, 0xffff8002, 0xffff8003, 0xffffffff}, {NoFlag, 0x7ffffffe, 0xffffff82, 0xffff8000}, {NoFlag, 0xffff8000, 0x00000002, 0x80000000}, {NoFlag, 0xffffff80, 0xffffff82, 0xffffff81}, {NoFlag, 0x00000000, 0xcccccccc, 0x00007ffd}, {NoFlag, 0x55555555, 0x00007ffe, 0x7fffffff}, {NoFlag, 0x00000002, 0xffffff81, 0xaaaaaaaa}, {NoFlag, 0x00007ffd, 0x0000007e, 0x00000002}, {NoFlag, 0xffffff83, 0x0000007e, 0xffffff80}, {NoFlag, 0xcccccccc, 0x00007ffe, 0xaaaaaaaa}, {NoFlag, 0x7ffffffe, 0x55555555, 0xffff8003}, {NoFlag, 0xfffffffd, 0x00000001, 0xffffff80}, {NoFlag, 0x00007ffd, 0x55555555, 0x80000001}, {NoFlag, 0x0000007f, 0x00000000, 0x0000007e}, {NoFlag, 0x7fffffff, 0xaaaaaaaa, 0x00000000}, {NoFlag, 0x7ffffffd, 0xffffff81, 0xcccccccc}, {NoFlag, 0xffffffe0, 0xcccccccc, 0xfffffffd}, {NoFlag, 0x00000002, 0xffff8000, 0x7ffffffd}, {NoFlag, 0xffffffe0, 0xffff8000, 0x80000001}, {NoFlag, 0x7ffffffd, 0xffff8003, 0xffff8001}, {NoFlag, 0x33333333, 0x00007ffd, 0x80000000}, {NoFlag, 0x7ffffffd, 0x00007fff, 0xcccccccc}, {NoFlag, 0xffffffff, 0xffffff80, 0x00007ffe}, {NoFlag, 0xffffff83, 0x7ffffffd, 0xaaaaaaaa}, {NoFlag, 0xfffffffd, 0xffff8003, 0x0000007f}, {NoFlag, 0xfffffffe, 0xfffffffe, 0xfffffffd}, {NoFlag, 0x00007fff, 0xfffffffe, 0x55555555}, {NoFlag, 0x7ffffffd, 0xfffffffe, 0xfffffffe}, {NoFlag, 0xfffffffe, 0xffffffff, 0x00007fff}, {NoFlag, 0x7ffffffd, 0x0000007e, 0x00007ffd}, {NoFlag, 0x7ffffffd, 0xffffffe0, 0x00000002}, {NoFlag, 0xffffffff, 0x00007ffd, 0xffffff81}, {NoFlag, 0xffff8001, 0x00000020, 0xfffffffd}, {NoFlag, 0x00007fff, 0x0000007d, 0xffffff83}, {NoFlag, 0x00000002, 0x55555555, 0x7ffffffe}, {NoFlag, 0x00007fff, 0x00007ffe, 0x00000002}, {NoFlag, 0x80000001, 0x7fffffff, 0x00007ffd}, {NoFlag, 0x0000007f, 0xffffffff, 0x00000001}, {NoFlag, 0xffff8001, 0x33333333, 0xffffff83}, {NoFlag, 0x00007fff, 0xcccccccc, 0x33333333}, {NoFlag, 0x33333333, 0xffffff80, 0x00000001}, {NoFlag, 0x00007fff, 0xcccccccc, 0x00007ffd}, {NoFlag, 0xffff8002, 0xfffffffd, 0x7ffffffe}, {NoFlag, 0x00007ffe, 0x7ffffffe, 0xffffff83}, {NoFlag, 0xffffffe0, 0x0000007f, 0xffff8001}, {NoFlag, 0x80000000, 0x00007fff, 0xffffff80}, {NoFlag, 0x7fffffff, 0x00007fff, 0x7ffffffe}, {NoFlag, 0xffff8002, 0x55555555, 0xffff8001}, {NoFlag, 0xffffff80, 0x00000000, 0xffffff80}, {NoFlag, 0x00007ffd, 0x00007fff, 0x00000002}, {NoFlag, 0x00000000, 0x55555555, 0xffff8003}, {NoFlag, 0x0000007f, 0xffff8003, 0x00000020}, {NoFlag, 0x00000000, 0xffff8002, 0x7fffffff}, {NoFlag, 0x00007fff, 0x55555555, 0x00000000}, {NoFlag, 0x7fffffff, 0x00007ffe, 0xffffff81}, {NoFlag, 0x0000007e, 0x80000001, 0x00007ffe}, {NoFlag, 0x7ffffffd, 0xaaaaaaaa, 0x00000020}, {NoFlag, 0xfffffffd, 0xfffffffe, 0x00000002}, {NoFlag, 0xffffff80, 0xffff8000, 0xffff8002}, {NoFlag, 0x0000007d, 0x00007fff, 0xaaaaaaaa}, {NoFlag, 0xfffffffd, 0xffffff80, 0x00007ffd}, {NoFlag, 0xffffff82, 0x80000000, 0xffffff80}, {NoFlag, 0xffffffe0, 0x55555555, 0xfffffffd}, {NoFlag, 0xffffffff, 0xffffffff, 0x00007ffd}, {NoFlag, 0x0000007e, 0xfffffffe, 0xffffff80}, {NoFlag, 0xffff8000, 0xffffff82, 0xffff8002}, {NoFlag, 0xaaaaaaaa, 0x7ffffffe, 0xffff8000}, {NoFlag, 0x55555555, 0xffff8003, 0xffffff80}, {NoFlag, 0x7ffffffe, 0x00000020, 0xffffffe0}, {NoFlag, 0x00000001, 0xffff8001, 0xffffffe0}, {NoFlag, 0xcccccccc, 0xffff8000, 0xffff8002}, {NoFlag, 0x80000000, 0x00000002, 0x7ffffffe}, {NoFlag, 0x00000002, 0x0000007f, 0xffffff81}, {NoFlag, 0xffffffff, 0x00000001, 0x7fffffff}, {NoFlag, 0xffffff83, 0x00000000, 0x33333333}, {NoFlag, 0xffff8000, 0xffffff83, 0xcccccccc}, {NoFlag, 0x80000000, 0x00000020, 0x00007ffd}, {NoFlag, 0xffffff81, 0xcccccccc, 0x00000000}, {NoFlag, 0xffffffff, 0xffff8000, 0x00007fff}, {NoFlag, 0xffff8003, 0xcccccccc, 0x00007ffe}, {NoFlag, 0xffffffff, 0xfffffffd, 0x7ffffffe}, {NoFlag, 0xffff8003, 0xaaaaaaaa, 0x55555555}, {NoFlag, 0x00000000, 0xaaaaaaaa, 0xffffff81}, {NoFlag, 0x0000007f, 0xfffffffe, 0xffff8000}, {NoFlag, 0x00000001, 0xffffffe0, 0xfffffffd}, {NoFlag, 0x33333333, 0x33333333, 0xfffffffd}, {NoFlag, 0xffffff82, 0xffff8002, 0x80000001}, {NoFlag, 0x55555555, 0xffffff83, 0xffffff83}, {NoFlag, 0xffffff83, 0xffff8002, 0x00000020}, {NoFlag, 0x0000007d, 0x7fffffff, 0x0000007f}, {NoFlag, 0x00000000, 0xcccccccc, 0xffff8000}, {NoFlag, 0x00000002, 0x7ffffffe, 0x00007fff}, {NoFlag, 0xffffff82, 0x7ffffffd, 0x7ffffffd}, {NoFlag, 0xaaaaaaaa, 0xfffffffd, 0xffff8002}, {NoFlag, 0xfffffffd, 0x00000002, 0x7fffffff}, {NoFlag, 0xfffffffe, 0xfffffffe, 0x00000020}, {NoFlag, 0x80000001, 0x0000007e, 0x00007ffe}, {NoFlag, 0x00007ffd, 0x00007ffd, 0xfffffffd}, {NoFlag, 0xffff8000, 0x0000007f, 0x00000002}, {NoFlag, 0x7ffffffd, 0x80000000, 0x7ffffffd}, {NoFlag, 0x0000007d, 0x00007fff, 0x80000001}, {NoFlag, 0xffffffff, 0x80000000, 0xaaaaaaaa}, {NoFlag, 0x00000000, 0xaaaaaaaa, 0xffff8001}, {NoFlag, 0xaaaaaaaa, 0xffffffe0, 0xffff8003}, {NoFlag, 0xffffff82, 0xffffffff, 0x00007ffd}, {NoFlag, 0x00000001, 0xffffff81, 0x00000001}, {NoFlag, 0x7fffffff, 0xaaaaaaaa, 0x80000001}, {NoFlag, 0x7fffffff, 0xffff8000, 0xffff8000}, {NoFlag, 0xaaaaaaaa, 0x00007ffd, 0xaaaaaaaa}, {NoFlag, 0x0000007f, 0x7ffffffe, 0x80000000}, {NoFlag, 0x00007ffd, 0x00007ffe, 0xffffff81}, {NoFlag, 0x0000007d, 0x0000007d, 0xffff8002}, {NoFlag, 0x80000001, 0x00000002, 0xffffff81}, {NoFlag, 0xffff8000, 0xfffffffd, 0x7ffffffd}, {NoFlag, 0xfffffffe, 0x00000020, 0xffffff80}, {NoFlag, 0x00000020, 0x7fffffff, 0xffffffe0}, {NoFlag, 0xffff8002, 0xffff8002, 0x0000007f}, {NoFlag, 0xffff8003, 0x7fffffff, 0xffff8002}, {NoFlag, 0x00000020, 0xfffffffd, 0x00000020}, {NoFlag, 0x7ffffffd, 0xffffffe0, 0x0000007e}, {NoFlag, 0x00000020, 0x00000020, 0x7ffffffe}, {NoFlag, 0xfffffffe, 0x0000007f, 0xffff8000}, {NoFlag, 0x80000001, 0x80000001, 0x0000007d}, {NoFlag, 0x55555555, 0x0000007f, 0x00007ffd}, {NoFlag, 0x55555555, 0xffffffe0, 0xffffff82}, {NoFlag, 0xffff8001, 0x0000007e, 0xffff8002}, {NoFlag, 0xffffffe0, 0x55555555, 0x0000007f}, {NoFlag, 0xffff8000, 0x7fffffff, 0x7ffffffe}, {NoFlag, 0xffffffff, 0xfffffffe, 0xffffff80}, {NoFlag, 0xffff8001, 0xffff8002, 0x33333333}, {NoFlag, 0x7ffffffd, 0xfffffffd, 0xaaaaaaaa}, {NoFlag, 0xaaaaaaaa, 0xfffffffd, 0x00000020}, {NoFlag, 0x0000007f, 0x00007ffe, 0x55555555}, {NoFlag, 0x00000020, 0x00000020, 0x00000002}, {NoFlag, 0x80000001, 0xffff8002, 0xfffffffe}, {NoFlag, 0x7fffffff, 0x80000001, 0xffff8002}, {NoFlag, 0x00000020, 0x0000007e, 0x33333333}}; static const Inputs kRotations[] = { {NoFlag, 0xabababab, 0xabababab, 0x00000000}, {NoFlag, 0xabababab, 0xabababab, 0x00000001}, {NoFlag, 0xabababab, 0xabababab, 0x00000002}, {NoFlag, 0xabababab, 0xabababab, 0x00000020}, {NoFlag, 0xabababab, 0xabababab, 0x0000007d}, {NoFlag, 0xabababab, 0xabababab, 0x0000007e}, {NoFlag, 0xabababab, 0xabababab, 0x0000007f}, {NoFlag, 0xabababab, 0xabababab, 0x00007ffd}, {NoFlag, 0xabababab, 0xabababab, 0x00007ffe}, {NoFlag, 0xabababab, 0xabababab, 0x00007fff}, {NoFlag, 0xabababab, 0xabababab, 0x33333333}, {NoFlag, 0xabababab, 0xabababab, 0x55555555}, {NoFlag, 0xabababab, 0xabababab, 0x7ffffffd}, {NoFlag, 0xabababab, 0xabababab, 0x7ffffffe}, {NoFlag, 0xabababab, 0xabababab, 0x7fffffff}, {NoFlag, 0xabababab, 0xabababab, 0x80000000}, {NoFlag, 0xabababab, 0xabababab, 0x80000001}, {NoFlag, 0xabababab, 0xabababab, 0xaaaaaaaa}, {NoFlag, 0xabababab, 0xabababab, 0xcccccccc}, {NoFlag, 0xabababab, 0xabababab, 0xffff8000}, {NoFlag, 0xabababab, 0xabababab, 0xffff8001}, {NoFlag, 0xabababab, 0xabababab, 0xffff8002}, {NoFlag, 0xabababab, 0xabababab, 0xffff8003}, {NoFlag, 0xabababab, 0xabababab, 0xffffff80}, {NoFlag, 0xabababab, 0xabababab, 0xffffff81}, {NoFlag, 0xabababab, 0xabababab, 0xffffff82}, {NoFlag, 0xabababab, 0xabababab, 0xffffff83}, {NoFlag, 0xabababab, 0xabababab, 0xffffffe0}, {NoFlag, 0xabababab, 0xabababab, 0xfffffffd}, {NoFlag, 0xabababab, 0xabababab, 0xfffffffe}, {NoFlag, 0xabababab, 0xabababab, 0xffffffff}}; // A loop will be generated for each element of this array. static const TestLoopData kTests[] = {{{eq, r0, r0, r0, ROR, 0}, "eq r0 r0 r0 ROR 0", "Condition_eq_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{ne, r0, r0, r0, ROR, 0}, "ne r0 r0 r0 ROR 0", "Condition_ne_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{cs, r0, r0, r0, ROR, 0}, "cs r0 r0 r0 ROR 0", "Condition_cs_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{cc, r0, r0, r0, ROR, 0}, "cc r0 r0 r0 ROR 0", "Condition_cc_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{mi, r0, r0, r0, ROR, 0}, "mi r0 r0 r0 ROR 0", "Condition_mi_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{pl, r0, r0, r0, ROR, 0}, "pl r0 r0 r0 ROR 0", "Condition_pl_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{vs, r0, r0, r0, ROR, 0}, "vs r0 r0 r0 ROR 0", "Condition_vs_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{vc, r0, r0, r0, ROR, 0}, "vc r0 r0 r0 ROR 0", "Condition_vc_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{hi, r0, r0, r0, ROR, 0}, "hi r0 r0 r0 ROR 0", "Condition_hi_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{ls, r0, r0, r0, ROR, 0}, "ls r0 r0 r0 ROR 0", "Condition_ls_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{ge, r0, r0, r0, ROR, 0}, "ge r0 r0 r0 ROR 0", "Condition_ge_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{lt, r0, r0, r0, ROR, 0}, "lt r0 r0 r0 ROR 0", "Condition_lt_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{gt, r0, r0, r0, ROR, 0}, "gt r0 r0 r0 ROR 0", "Condition_gt_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{le, r0, r0, r0, ROR, 0}, "le r0 r0 r0 ROR 0", "Condition_le_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{al, r0, r0, r0, ROR, 0}, "al r0 r0 r0 ROR 0", "Condition_al_r0_r0_r0_ROR_0", ARRAY_SIZE(kCondition), kCondition}, {{al, r3, r3, r4, ROR, 0}, "al r3 r3 r4 ROR 0", "RdIsRn_al_r3_r3_r4_ROR_0", ARRAY_SIZE(kRdIsRn), kRdIsRn}, {{al, r2, r2, r12, ROR, 0}, "al r2 r2 r12 ROR 0", "RdIsRn_al_r2_r2_r12_ROR_0", ARRAY_SIZE(kRdIsRn), kRdIsRn}, {{al, r8, r8, r5, ROR, 0}, "al r8 r8 r5 ROR 0", "RdIsRn_al_r8_r8_r5_ROR_0", ARRAY_SIZE(kRdIsRn), kRdIsRn}, {{al, r14, r14, r0, ROR, 0}, "al r14 r14 r0 ROR 0", "RdIsRn_al_r14_r14_r0_ROR_0", ARRAY_SIZE(kRdIsRn), kRdIsRn}, {{al, r11, r11, r10, ROR, 0}, "al r11 r11 r10 ROR 0", "RdIsRn_al_r11_r11_r10_ROR_0", ARRAY_SIZE(kRdIsRn), kRdIsRn}, {{al, r12, r12, r10, ROR, 0}, "al r12 r12 r10 ROR 0", "RdIsRn_al_r12_r12_r10_ROR_0", ARRAY_SIZE(kRdIsRn), kRdIsRn}, {{al, r4, r4, r8, ROR, 0}, "al r4 r4 r8 ROR 0", "RdIsRn_al_r4_r4_r8_ROR_0", ARRAY_SIZE(kRdIsRn), kRdIsRn}, {{al, r5, r5, r14, ROR, 0}, "al r5 r5 r14 ROR 0", "RdIsRn_al_r5_r5_r14_ROR_0", ARRAY_SIZE(kRdIsRn), kRdIsRn}, {{al, r0, r0, r6, ROR, 0}, "al r0 r0 r6 ROR 0", "RdIsRn_al_r0_r0_r6_ROR_0", ARRAY_SIZE(kRdIsRn), kRdIsRn}, {{al, r12, r12, r1, ROR, 0}, "al r12 r12 r1 ROR 0", "RdIsRn_al_r12_r12_r1_ROR_0", ARRAY_SIZE(kRdIsRn), kRdIsRn}, {{al, r6, r11, r6, ROR, 0}, "al r6 r11 r6 ROR 0", "RdIsRm_al_r6_r11_r6_ROR_0", ARRAY_SIZE(kRdIsRm), kRdIsRm}, {{al, r11, r9, r11, ROR, 0}, "al r11 r9 r11 ROR 0", "RdIsRm_al_r11_r9_r11_ROR_0", ARRAY_SIZE(kRdIsRm), kRdIsRm}, {{al, r0, r8, r0, ROR, 0}, "al r0 r8 r0 ROR 0", "RdIsRm_al_r0_r8_r0_ROR_0", ARRAY_SIZE(kRdIsRm), kRdIsRm}, {{al, r2, r11, r2, ROR, 0}, "al r2 r11 r2 ROR 0", "RdIsRm_al_r2_r11_r2_ROR_0", ARRAY_SIZE(kRdIsRm), kRdIsRm}, {{al, r9, r4, r9, ROR, 0}, "al r9 r4 r9 ROR 0", "RdIsRm_al_r9_r4_r9_ROR_0", ARRAY_SIZE(kRdIsRm), kRdIsRm}, {{al, r14, r10, r14, ROR, 0}, "al r14 r10 r14 ROR 0", "RdIsRm_al_r14_r10_r14_ROR_0", ARRAY_SIZE(kRdIsRm), kRdIsRm}, {{al, r7, r0, r7, ROR, 0}, "al r7 r0 r7 ROR 0", "RdIsRm_al_r7_r0_r7_ROR_0", ARRAY_SIZE(kRdIsRm), kRdIsRm}, {{al, r4, r9, r4, ROR, 0}, "al r4 r9 r4 ROR 0", "RdIsRm_al_r4_r9_r4_ROR_0", ARRAY_SIZE(kRdIsRm), kRdIsRm}, {{al, r6, r10, r6, ROR, 0}, "al r6 r10 r6 ROR 0", "RdIsRm_al_r6_r10_r6_ROR_0", ARRAY_SIZE(kRdIsRm), kRdIsRm}, {{al, r7, r6, r7, ROR, 0}, "al r7 r6 r7 ROR 0", "RdIsRm_al_r7_r6_r7_ROR_0", ARRAY_SIZE(kRdIsRm), kRdIsRm}, {{al, r3, r9, r10, ROR, 0}, "al r3 r9 r10 ROR 0", "RdIsNotRnIsNotRm_al_r3_r9_r10_ROR_0", ARRAY_SIZE(kRdIsNotRnIsNotRm), kRdIsNotRnIsNotRm}, {{al, r7, r12, r5, ROR, 0}, "al r7 r12 r5 ROR 0", "RdIsNotRnIsNotRm_al_r7_r12_r5_ROR_0", ARRAY_SIZE(kRdIsNotRnIsNotRm), kRdIsNotRnIsNotRm}, {{al, r8, r5, r6, ROR, 0}, "al r8 r5 r6 ROR 0", "RdIsNotRnIsNotRm_al_r8_r5_r6_ROR_0", ARRAY_SIZE(kRdIsNotRnIsNotRm), kRdIsNotRnIsNotRm}, {{al, r0, r6, r0, ROR, 0}, "al r0 r6 r0 ROR 0", "RdIsNotRnIsNotRm_al_r0_r6_r0_ROR_0", ARRAY_SIZE(kRdIsNotRnIsNotRm), kRdIsNotRnIsNotRm}, {{al, r11, r7, r8, ROR, 0}, "al r11 r7 r8 ROR 0", "RdIsNotRnIsNotRm_al_r11_r7_r8_ROR_0", ARRAY_SIZE(kRdIsNotRnIsNotRm), kRdIsNotRnIsNotRm}, {{al, r12, r2, r3, ROR, 0}, "al r12 r2 r3 ROR 0", "RdIsNotRnIsNotRm_al_r12_r2_r3_ROR_0", ARRAY_SIZE(kRdIsNotRnIsNotRm), kRdIsNotRnIsNotRm}, {{al, r7, r4, r10, ROR, 0}, "al r7 r4 r10 ROR 0", "RdIsNotRnIsNotRm_al_r7_r4_r10_ROR_0", ARRAY_SIZE(kRdIsNotRnIsNotRm), kRdIsNotRnIsNotRm}, {{al, r9, r6, r1, ROR, 0}, "al r9 r6 r1 ROR 0", "RdIsNotRnIsNotRm_al_r9_r6_r1_ROR_0", ARRAY_SIZE(kRdIsNotRnIsNotRm), kRdIsNotRnIsNotRm}, {{al, r10, r14, r3, ROR, 0}, "al r10 r14 r3 ROR 0", "RdIsNotRnIsNotRm_al_r10_r14_r3_ROR_0", ARRAY_SIZE(kRdIsNotRnIsNotRm), kRdIsNotRnIsNotRm}, {{al, r14, r3, r6, ROR, 0}, "al r14 r3 r6 ROR 0", "RdIsNotRnIsNotRm_al_r14_r3_r6_ROR_0", ARRAY_SIZE(kRdIsNotRnIsNotRm), kRdIsNotRnIsNotRm}, {{al, r0, r1, r2, ROR, 0}, "al r0 r1 r2 ROR 0", "Rotations_al_r0_r1_r2_ROR_0", ARRAY_SIZE(kRotations), kRotations}, {{al, r0, r1, r2, ROR, 8}, "al r0 r1 r2 ROR 8", "Rotations_al_r0_r1_r2_ROR_8", ARRAY_SIZE(kRotations), kRotations}, {{al, r0, r1, r2, ROR, 16}, "al r0 r1 r2 ROR 16", "Rotations_al_r0_r1_r2_ROR_16", ARRAY_SIZE(kRotations), kRotations}, {{al, r0, r1, r2, ROR, 24}, "al r0 r1 r2 ROR 24", "Rotations_al_r0_r1_r2_ROR_24", ARRAY_SIZE(kRotations), kRotations}}; // We record all inputs to the instructions as outputs. This way, we also check // that what shouldn't change didn't change. struct TestResult { size_t output_size; const Inputs* outputs; }; // These headers each contain an array of `TestResult` with the reference output // values. The reference arrays are names `kReference{mnemonic}`. #include "a32/traces/simulator-cond-rd-rn-operand-rm-ror-amount-a32-sxtab.h" #include "a32/traces/simulator-cond-rd-rn-operand-rm-ror-amount-a32-sxtab16.h" #include "a32/traces/simulator-cond-rd-rn-operand-rm-ror-amount-a32-sxtah.h" #include "a32/traces/simulator-cond-rd-rn-operand-rm-ror-amount-a32-uxtab.h" #include "a32/traces/simulator-cond-rd-rn-operand-rm-ror-amount-a32-uxtab16.h" #include "a32/traces/simulator-cond-rd-rn-operand-rm-ror-amount-a32-uxtah.h" // The maximum number of errors to report in detail for each test. static const unsigned kErrorReportLimit = 8; typedef void (MacroAssembler::*Fn)(Condition cond, Register rd, Register rn, const Operand& op); static void TestHelper(Fn instruction, const char* mnemonic, const TestResult reference[]) { SETUP(); masm.SetT32(false); START(); // Data to compare to `reference`. TestResult* results[ARRAY_SIZE(kTests)]; // Test cases for memory bound instructions may allocate a buffer and save its // address in this array. byte* scratch_memory_buffers[ARRAY_SIZE(kTests)]; // Generate a loop for each element in `kTests`. Each loop tests one specific // instruction. for (unsigned i = 0; i < ARRAY_SIZE(kTests); i++) { // Allocate results on the heap for this test. results[i] = new TestResult; results[i]->outputs = new Inputs[kTests[i].input_size]; results[i]->output_size = kTests[i].input_size; uintptr_t input_address = reinterpret_cast<uintptr_t>(kTests[i].inputs); uintptr_t result_address = reinterpret_cast<uintptr_t>(results[i]->outputs); scratch_memory_buffers[i] = NULL; Label loop; UseScratchRegisterScope scratch_registers(&masm); // Include all registers from r0 ro r12. scratch_registers.Include(RegisterList(0x1fff)); // Values to pass to the macro-assembler. Condition cond = kTests[i].operands.cond; Register rd = kTests[i].operands.rd; Register rn = kTests[i].operands.rn; Register rm = kTests[i].operands.rm; ShiftType ror = kTests[i].operands.ror; uint32_t amount = kTests[i].operands.amount; Operand op(rm, ror, amount); scratch_registers.Exclude(rd); scratch_registers.Exclude(rn); scratch_registers.Exclude(rm); // Allocate reserved registers for our own use. Register input_ptr = scratch_registers.Acquire(); Register input_end = scratch_registers.Acquire(); Register result_ptr = scratch_registers.Acquire(); // Initialize `input_ptr` to the first element and `input_end` the address // after the array. __ Mov(input_ptr, input_address); __ Add(input_end, input_ptr, sizeof(kTests[i].inputs[0]) * kTests[i].input_size); __ Mov(result_ptr, result_address); __ Bind(&loop); { UseScratchRegisterScope temp_registers(&masm); Register nzcv_bits = temp_registers.Acquire(); Register saved_q_bit = temp_registers.Acquire(); // Save the `Q` bit flag. __ Mrs(saved_q_bit, APSR); __ And(saved_q_bit, saved_q_bit, QFlag); // Set the `NZCV` and `Q` flags together. __ Ldr(nzcv_bits, MemOperand(input_ptr, offsetof(Inputs, apsr))); __ Orr(nzcv_bits, nzcv_bits, saved_q_bit); __ Msr(APSR_nzcvq, nzcv_bits); } __ Ldr(rd, MemOperand(input_ptr, offsetof(Inputs, rd))); __ Ldr(rn, MemOperand(input_ptr, offsetof(Inputs, rn))); __ Ldr(rm, MemOperand(input_ptr, offsetof(Inputs, rm))); (masm.*instruction)(cond, rd, rn, op); { UseScratchRegisterScope temp_registers(&masm); Register nzcv_bits = temp_registers.Acquire(); __ Mrs(nzcv_bits, APSR); // Only record the NZCV bits. __ And(nzcv_bits, nzcv_bits, NZCVFlag); __ Str(nzcv_bits, MemOperand(result_ptr, offsetof(Inputs, apsr))); } __ Str(rd, MemOperand(result_ptr, offsetof(Inputs, rd))); __ Str(rn, MemOperand(result_ptr, offsetof(Inputs, rn))); __ Str(rm, MemOperand(result_ptr, offsetof(Inputs, rm))); // Advance the result pointer. __ Add(result_ptr, result_ptr, sizeof(kTests[i].inputs[0])); // Loop back until `input_ptr` is lower than `input_base`. __ Add(input_ptr, input_ptr, sizeof(kTests[i].inputs[0])); __ Cmp(input_ptr, input_end); __ B(ne, &loop); } END(); RUN(); if (Test::generate_test_trace()) { // Print the results. for (size_t i = 0; i < ARRAY_SIZE(kTests); i++) { printf("static const Inputs kOutputs_%s_%s[] = {\n", mnemonic, kTests[i].identifier); for (size_t j = 0; j < results[i]->output_size; j++) { printf(" { "); printf("0x%08" PRIx32, results[i]->outputs[j].apsr); printf(", "); printf("0x%08" PRIx32, results[i]->outputs[j].rd); printf(", "); printf("0x%08" PRIx32, results[i]->outputs[j].rn); printf(", "); printf("0x%08" PRIx32, results[i]->outputs[j].rm); printf(" },\n"); } printf("};\n"); } printf("static const TestResult kReference%s[] = {\n", mnemonic); for (size_t i = 0; i < ARRAY_SIZE(kTests); i++) { printf(" {\n"); printf(" ARRAY_SIZE(kOutputs_%s_%s),\n", mnemonic, kTests[i].identifier); printf(" kOutputs_%s_%s,\n", mnemonic, kTests[i].identifier); printf(" },\n"); } printf("};\n"); } else { // Check the results. unsigned total_error_count = 0; for (size_t i = 0; i < ARRAY_SIZE(kTests); i++) { bool instruction_has_errors = false; for (size_t j = 0; j < kTests[i].input_size; j++) { uint32_t apsr = results[i]->outputs[j].apsr; uint32_t rd = results[i]->outputs[j].rd; uint32_t rn = results[i]->outputs[j].rn; uint32_t rm = results[i]->outputs[j].rm; uint32_t apsr_input = kTests[i].inputs[j].apsr; uint32_t rd_input = kTests[i].inputs[j].rd; uint32_t rn_input = kTests[i].inputs[j].rn; uint32_t rm_input = kTests[i].inputs[j].rm; uint32_t apsr_ref = reference[i].outputs[j].apsr; uint32_t rd_ref = reference[i].outputs[j].rd; uint32_t rn_ref = reference[i].outputs[j].rn; uint32_t rm_ref = reference[i].outputs[j].rm; if (((apsr != apsr_ref) || (rd != rd_ref) || (rn != rn_ref) || (rm != rm_ref)) && (++total_error_count <= kErrorReportLimit)) { // Print the instruction once even if it triggered multiple failures. if (!instruction_has_errors) { printf("Error(s) when testing \"%s %s\":\n", mnemonic, kTests[i].operands_description); instruction_has_errors = true; } // Print subsequent errors. printf(" Input: "); printf("0x%08" PRIx32, apsr_input); printf(", "); printf("0x%08" PRIx32, rd_input); printf(", "); printf("0x%08" PRIx32, rn_input); printf(", "); printf("0x%08" PRIx32, rm_input); printf("\n"); printf(" Expected: "); printf("0x%08" PRIx32, apsr_ref); printf(", "); printf("0x%08" PRIx32, rd_ref); printf(", "); printf("0x%08" PRIx32, rn_ref); printf(", "); printf("0x%08" PRIx32, rm_ref); printf("\n"); printf(" Found: "); printf("0x%08" PRIx32, apsr); printf(", "); printf("0x%08" PRIx32, rd); printf(", "); printf("0x%08" PRIx32, rn); printf(", "); printf("0x%08" PRIx32, rm); printf("\n\n"); } } } if (total_error_count > kErrorReportLimit) { printf("%u other errors follow.\n", total_error_count - kErrorReportLimit); } // TODO: Do this check for the simulator too when it is ready. #ifndef VIXL_INCLUDE_SIMULATOR VIXL_CHECK(total_error_count == 0); #endif } for (size_t i = 0; i < ARRAY_SIZE(kTests); i++) { delete[] results[i]->outputs; delete results[i]; delete scratch_memory_buffers[i]; } TEARDOWN(); } // Instantiate tests for each instruction in the list. #define TEST(mnemonic) \ static void Test_##mnemonic() { \ TestHelper(&MacroAssembler::mnemonic, #mnemonic, kReference##mnemonic); \ } \ static Test test_##mnemonic( \ "AARCH32_SIMULATOR_COND_RD_RN_OPERAND_RM_ROR_AMOUNT_A32_" #mnemonic, \ &Test_##mnemonic); FOREACH_INSTRUCTION(TEST) #undef TEST } // aarch32 } // vixl
[ "scott.wakeling@linaro.org" ]
scott.wakeling@linaro.org
9dedbdd1f0682e609e4e6c8421dd7960bb0792ff
5456502f97627278cbd6e16d002d50f1de3da7bb
/ios/chrome/browser/browser_state/browser_state_info_cache_observer.h
81ea6ec067a1644a74a9d36d6f87f05cc8d693ed
[ "BSD-3-Clause" ]
permissive
TrellixVulnTeam/Chromium_7C66
72d108a413909eb3bd36c73a6c2f98de1573b6e5
c8649ab2a0f5a747369ed50351209a42f59672ee
refs/heads/master
2023-03-16T12:51:40.231959
2017-12-20T10:38:26
2017-12-20T10:38:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,023
h
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef IOS_CHROME_BROWSER_BROWSER_STATE_BROWSER_STATE_INFO_CACHE_OBSERVER_H_ #define IOS_CHROME_BROWSER_BROWSER_STATE_BROWSER_STATE_INFO_CACHE_OBSERVER_H_ #include "base/macros.h" #include "base/strings/string16.h" namespace base { class FilePath; } // Observes changes in BrowserStateInfoCache. class BrowserStateInfoCacheObserver { public: BrowserStateInfoCacheObserver() {} virtual ~BrowserStateInfoCacheObserver() {} // Called when a BrowserState has been added. virtual void OnBrowserStateAdded(const base::FilePath& path) = 0; // Called when a BrowserState has been removed. virtual void OnBrowserStateWasRemoved(const base::FilePath& path) = 0; private: DISALLOW_COPY_AND_ASSIGN(BrowserStateInfoCacheObserver); }; #endif // IOS_CHROME_BROWSER_BROWSER_STATE_BROWSER_STATE_INFO_CACHE_OBSERVER_H_
[ "lixiaodonglove7@aliyun.com" ]
lixiaodonglove7@aliyun.com
37036cf87adb0dd1ebabfcaf4450dfc21b036150
7e206171aff10918b71adf2ed7c85d68558d6b39
/examples/ME/W_4j/P0_Sigma_sm_uxcx_mumvmxuuxcxdx_W_4j.h
c38fcae346d840c95a06071a20f4e2f5e9b8c7fc
[]
no_license
matt-komm/momenta
934d62f407abcce25e7c813c0ae9002d308f09cf
c52c63fad5ab38dc54e71636f3182d5fbcd308bc
refs/heads/master
2021-01-01T05:31:11.499532
2014-04-01T20:01:29
2014-04-01T20:01:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,941
h
//========================================================================== // This file has been automatically generated for C++ Standalone by // MadGraph 5 v. 2.0.0.beta3, 2013-02-14 // By the MadGraph Development Team // Please visit us at https://launchpad.net/madgraph5 //========================================================================== #ifndef MG5_Sigma_sm_uxcx_mumvmxuuxcxdx_H #define MG5_Sigma_sm_uxcx_mumvmxuuxcxdx_H #include <complex> #include <vector> #include "Parameters_sm.h" using namespace std; //========================================================================== // A class for calculating the matrix elements for // Process: u~ c~ > w- u u~ c~ d~ WEIGHTED=6 // * Decay: w- > mu- vm~ WEIGHTED=2 // Process: u~ s~ > w- u u~ s~ d~ WEIGHTED=6 // * Decay: w- > mu- vm~ WEIGHTED=2 // Process: c~ d~ > w- c c~ d~ s~ WEIGHTED=6 // * Decay: w- > mu- vm~ WEIGHTED=2 //-------------------------------------------------------------------------- class P0_Sigma_sm_uxcx_mumvmxuuxcxdx_W_4j { public: // Constructor. P0_Sigma_sm_uxcx_mumvmxuuxcxdx_W_4j() {} // Initialize process. virtual void initProc(string param_card_name); // Calculate flavour-independent parts of cross section. virtual void sigmaKin(); // Evaluate sigmaHat(sHat). virtual double sigmaHat(); // Info on the subprocess. virtual string name() const {return "u~ c~ > mu- vm~ u u~ c~ d~ (sm)";} virtual int code() const {return 0;} const vector<double> & getMasses() const {return mME;} // Get and set momenta for matrix element evaluation vector < double * > getMomenta(){return p;} void setMomenta(vector < double * > & momenta){p = momenta;} void setInitial(int inid1, int inid2){id1 = inid1; id2 = inid2;} // Get matrix element vector const double * getMatrixElements() const {return matrix_element;} // Constants for array limits static const int ninitial = 2; static const int nexternal = 8; static const int nprocesses = 2; private: // Private functions to calculate the matrix element for all subprocesses // Calculate wavefunctions void calculate_wavefunctions(const int perm[], const int hel[]); static const int nwavefuncs = 37; std::complex<double> w[nwavefuncs][18]; static const int namplitudes = 32; std::complex<double> amp[namplitudes]; double matrix_uxcx_wmuuxcxdx_wm_mumvmx(); // Store the matrix element value from sigmaKin double matrix_element[nprocesses]; // Color flows, used when selecting color double * jamp2[nprocesses]; // Pointer to the model parameters Parameters_sm * pars; // vector with external particle masses vector<double> mME; // vector with momenta (to be changed each event) vector < double * > p; // Initial particle ids int id1, id2; }; #endif // MG5_Sigma_sm_uxcx_mumvmxuuxcxdx_H
[ "Matthias.Komm@cern.ch" ]
Matthias.Komm@cern.ch
dcef0cd68b0c765e0e142e4b7d6c655b2f8725cc
c636136096c92ddb07ce97d3960bf0289d70b57a
/Medusa/MedusaCore/Core/Geometry/Graph/GraphEdge.cpp
0915a185d893973bb01edc789cfca44e9b3fe5ac
[ "MIT" ]
permissive
johndpope/Medusa
6a5a08e0c3f216dcab3b23db2f7bcf4d05845bce
22aa6719a001330fea51a6822fec01150eb8aabc
refs/heads/master
2020-12-30T20:51:14.718429
2015-12-15T12:31:22
2015-12-15T12:31:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
406
cpp
// Copyright (c) 2015 fjz13. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. #include "MedusaCorePreCompiled.h" #include "GraphEdge.h" MEDUSA_BEGIN; GraphEdge::GraphEdge(GraphNode* from, GraphNode* to, float weight/*=1.f*/) :mIndex(0), mFrom(from), mTo(to), mWeight(weight) { } GraphEdge::~GraphEdge() { } MEDUSA_END;
[ "fjz13@live.cn" ]
fjz13@live.cn
e31ffc933237ee41a933149c40b83a4945ba3b04
63926f6bc3dd5b3573d4e22c7d5ac0bc1a5e253c
/Plugins/GeoGlue/Source/VoxelExtension/Private/GRDReader.cpp
95da2c2f704fe112add349005e9a1cd9bf4d1a7d
[]
no_license
chaiyuntian/MPlugins
8c024cf3cb815614aa4c5eaf7d6d1e0f5af9eb6b
9050f15e0ac92657dbf63b403d873e87485892d2
refs/heads/main
2023-01-10T23:07:38.428583
2020-11-10T04:02:52
2020-11-10T04:02:52
309,244,097
2
0
null
null
null
null
UTF-8
C++
false
false
4,617
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "GRDReader.h" DEFINE_LOG_CATEGORY_STATIC(LogGRDReader, Log, All); // space and return static void JumpOverWhiteSpace(const uint8*& BufferPos) { while (*BufferPos) { if (*BufferPos == 13 && *(BufferPos + 1) == 10) { BufferPos += 2; continue; } else if (*BufferPos <= ' ') { // Skip tab, space and invisible characters ++BufferPos; continue; } break; } } static void GetLineContent(const uint8*& BufferPos, char Line[256], bool bStopOnWhitespace) { JumpOverWhiteSpace(BufferPos); char* LinePtr = Line; uint32 i; for (i = 0; i < 255; ++i) { if (*BufferPos == 0) { break; } else if (*BufferPos == '\r' && *(BufferPos + 1) == '\n') { BufferPos += 2; break; } else if (*BufferPos == '\n') { ++BufferPos; break; } else if (bStopOnWhitespace && (*BufferPos <= ' ')) { // tab, space, invisible characters ++BufferPos; break; } *LinePtr++ = *BufferPos++; } Line[i] = 0; } // @return success static bool GetFloat(const uint8*& BufferPos, float& ret) { char Line[256]; GetLineContent(BufferPos, Line, true); ret = FCStringAnsi::Atof(Line); return true; } static bool GetInt(const uint8*& BufferPos, int32& ret) { char Line[256]; GetLineContent(BufferPos, Line, true); ret = FCStringAnsi::Atoi(Line); return true; } #define PARSE_FLOAT(x) float x; if(!GetFloat(BufferPos, x)){ UE_LOG(LogGRDReader, Warning, TEXT("Value parsing error: Error reading GRD file float value!")) return false;} #define PARSE_INT(x) int32 x; if(!GetInt(BufferPos, x)){ UE_LOG(LogGRDReader, Warning, TEXT("Value parsing error: Error reading GRD file int value!")) return false;} bool FGRDReader::Load(FString FilePath, TArray<float>& ValuArray, FGRDHeaderInfo& HeaderInfo) { TArray<uint8> Bytes; if (!FFileHelper::LoadFileToArray(Bytes, *FilePath, FILEREAD_Silent)) { UE_LOG(LogGRDReader, Warning, TEXT("Error reading GRD file")); return false; } const uint8* BufferPos = Bytes.GetData(); char Line1[256]; GetLineContent(BufferPos, Line1, false); // Check the first line if (FCStringAnsi::Stricmp(Line1, "DSAA") != 0) { UE_LOG(LogGRDReader, Warning, TEXT("GRD File Format Error: the first line should be DSAA!")); return false; } PARSE_INT(GridsX); PARSE_INT(GridsY); PARSE_FLOAT(XMin); PARSE_FLOAT(XMax); PARSE_FLOAT(YMin); PARSE_FLOAT(YMax); PARSE_FLOAT(ZMin); PARSE_FLOAT(ZMax); HeaderInfo.GridsX = GridsX; HeaderInfo.GridsY = GridsY; HeaderInfo.XRange = FGridValueRange(XMin,XMax); HeaderInfo.YRange = FGridValueRange(YMin, YMax); HeaderInfo.ZRange = FGridValueRange(ZMin, ZMax); ValuArray.Empty(GridsX * GridsY); for (uint32 y = 0; y < (uint32)GridsY; ++y) { for (uint32 x = 0; x < (uint32)GridsX; ++x) { PARSE_FLOAT(Value); ValuArray.Add(Value); } } return true; } void FGRDReader::ResampleData(const TArray<float>& SourceData, uint32 SrcWidth, uint32 SrcHeight, TArray<float>& DstData, uint32 DstWidth, uint32 DstHeight) { DstData.Empty(DstWidth * DstHeight); DstData.AddUninitialized(DstWidth * DstHeight); const float* SrcData = SourceData.GetData(); const float DestToSrcScaleX = (float)SrcWidth / (float)DstWidth; const float DestToSrcScaleY = (float)SrcHeight / (float)DstHeight; for (uint32 Y = 0; Y < (uint32)DstHeight; ++Y) { const float SrcY = (float)Y * DestToSrcScaleY; for (uint32 X = 0; X < (uint32)DstWidth; ++X) { const int32 Index = X + DstWidth * Y; const float SrcX = (float)X * DestToSrcScaleX; DstData[Index] = SampleGrid(SrcData, SrcWidth, SrcHeight, SrcX, SrcY); } } } float FGRDReader::SampleGrid(const float* HeightValues, int Width, int Height, float X, float Y) { const int64 TexelX0 = FMath::FloorToInt(X); const int64 TexelY0 = FMath::FloorToInt(Y); const int64 TexelX1 = FMath::Min<int64>(TexelX0 + 1, Width - 1); const int64 TexelY1 = FMath::Min<int64>(TexelY0 + 1, Height - 1); checkSlow(TexelX0 >= 0 && TexelX0 < Width); checkSlow(TexelY0 >= 0 && TexelY0 < Height); const float FracX1 = FMath::Frac(X); const float FracY1 = FMath::Frac(Y); const float FracX0 = 1.0f - FracX1; const float FracY0 = 1.0f - FracY1; const float Value00 = HeightValues[TexelY0 * Width + TexelX0]; const float Value01 = HeightValues[TexelY1 * Width + TexelX0]; const float Value10 = HeightValues[TexelY0 * Width + TexelX1]; const float Value11 = HeightValues[TexelY1 * Width + TexelX1]; return Value00 * (FracX0 * FracY0) + Value01 * (FracX0 * FracY1) + Value10 * (FracX1 * FracY0) + Value11 * (FracX1 * FracY1); }
[ "tianyunchai@126.com" ]
tianyunchai@126.com
8d1ecdc81f8b03429632f5c0c08abbc779451a3d
3ff1fe3888e34cd3576d91319bf0f08ca955940f
/cls/include/tencentcloud/cls/v20201016/model/HistogramInfo.h
f042aace4bc1b0da4d3050de913b8f2d7d5309ff
[ "Apache-2.0" ]
permissive
TencentCloud/tencentcloud-sdk-cpp
9f5df8220eaaf72f7eaee07b2ede94f89313651f
42a76b812b81d1b52ec6a217fafc8faa135e06ca
refs/heads/master
2023-08-30T03:22:45.269556
2023-08-30T00:45:39
2023-08-30T00:45:39
188,991,963
55
37
Apache-2.0
2023-08-17T03:13:20
2019-05-28T08:56:08
C++
UTF-8
C++
false
false
3,738
h
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved. * * 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 TENCENTCLOUD_CLS_V20201016_MODEL_HISTOGRAMINFO_H_ #define TENCENTCLOUD_CLS_V20201016_MODEL_HISTOGRAMINFO_H_ #include <string> #include <vector> #include <map> #include <tencentcloud/core/utils/rapidjson/document.h> #include <tencentcloud/core/utils/rapidjson/writer.h> #include <tencentcloud/core/utils/rapidjson/stringbuffer.h> #include <tencentcloud/core/AbstractModel.h> namespace TencentCloud { namespace Cls { namespace V20201016 { namespace Model { /** * 直方图详细信息 */ class HistogramInfo : public AbstractModel { public: HistogramInfo(); ~HistogramInfo() = default; void ToJsonObject(rapidjson::Value &value, rapidjson::Document::AllocatorType& allocator) const; CoreInternalOutcome Deserialize(const rapidjson::Value &value); /** * 获取统计周期内的日志条数 * @return Count 统计周期内的日志条数 * */ int64_t GetCount() const; /** * 设置统计周期内的日志条数 * @param _count 统计周期内的日志条数 * */ void SetCount(const int64_t& _count); /** * 判断参数 Count 是否已赋值 * @return Count 是否已赋值 * */ bool CountHasBeenSet() const; /** * 获取按 period 取整后的 unix timestamp: 单位毫秒 * @return BTime 按 period 取整后的 unix timestamp: 单位毫秒 * */ int64_t GetBTime() const; /** * 设置按 period 取整后的 unix timestamp: 单位毫秒 * @param _bTime 按 period 取整后的 unix timestamp: 单位毫秒 * */ void SetBTime(const int64_t& _bTime); /** * 判断参数 BTime 是否已赋值 * @return BTime 是否已赋值 * */ bool BTimeHasBeenSet() const; private: /** * 统计周期内的日志条数 */ int64_t m_count; bool m_countHasBeenSet; /** * 按 period 取整后的 unix timestamp: 单位毫秒 */ int64_t m_bTime; bool m_bTimeHasBeenSet; }; } } } } #endif // !TENCENTCLOUD_CLS_V20201016_MODEL_HISTOGRAMINFO_H_
[ "tencentcloudapi@tencent.com" ]
tencentcloudapi@tencent.com
878eef755e78f3fd401ad0397c8f687a4b1513ea
9fad4848e43f4487730185e4f50e05a044f865ab
/src/components/scheduler/child/idle_helper_unittest.cc
37a6e1b2f303cebe17368d396b09471b7d88783e
[ "BSD-3-Clause" ]
permissive
dummas2008/chromium
d1b30da64f0630823cb97f58ec82825998dbb93e
82d2e84ce3ed8a00dc26c948219192c3229dfdaa
refs/heads/master
2020-12-31T07:18:45.026190
2016-04-14T03:17:45
2016-04-14T03:17:45
56,194,439
4
0
null
null
null
null
UTF-8
C++
false
false
41,926
cc
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/scheduler/child/idle_helper.h" #include <utility> #include "base/callback.h" #include "base/macros.h" #include "base/test/simple_test_tick_clock.h" #include "cc/test/ordered_simple_task_runner.h" #include "components/scheduler/base/real_time_domain.h" #include "components/scheduler/base/task_queue.h" #include "components/scheduler/base/task_queue_manager.h" #include "components/scheduler/base/test_time_source.h" #include "components/scheduler/child/scheduler_helper.h" #include "components/scheduler/child/scheduler_tqm_delegate_for_test.h" #include "components/scheduler/child/scheduler_tqm_delegate_impl.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" using testing::_; using testing::AnyNumber; using testing::AtLeast; using testing::Exactly; using testing::Invoke; using testing::Return; namespace scheduler { namespace { void AppendToVectorTestTask(std::vector<std::string>* vector, std::string value) { vector->push_back(value); } void AppendToVectorIdleTestTask(std::vector<std::string>* vector, std::string value, base::TimeTicks deadline) { AppendToVectorTestTask(vector, value); } void NullTask() { } void NullIdleTask(base::TimeTicks deadline) { } void AppendToVectorReentrantTask(base::SingleThreadTaskRunner* task_runner, std::vector<int>* vector, int* reentrant_count, int max_reentrant_count) { vector->push_back((*reentrant_count)++); if (*reentrant_count < max_reentrant_count) { task_runner->PostTask( FROM_HERE, base::Bind(AppendToVectorReentrantTask, base::Unretained(task_runner), vector, reentrant_count, max_reentrant_count)); } } void IdleTestTask(int* run_count, base::TimeTicks* deadline_out, base::TimeTicks deadline) { (*run_count)++; *deadline_out = deadline; } int max_idle_task_reposts = 2; void RepostingIdleTestTask(SingleThreadIdleTaskRunner* idle_task_runner, int* run_count, base::TimeTicks* deadline_out, base::TimeTicks deadline) { if ((*run_count + 1) < max_idle_task_reposts) { idle_task_runner->PostIdleTask( FROM_HERE, base::Bind(&RepostingIdleTestTask, base::Unretained(idle_task_runner), run_count, deadline_out)); } *deadline_out = deadline; (*run_count)++; } void RepostingUpdateClockIdleTestTask( SingleThreadIdleTaskRunner* idle_task_runner, int* run_count, base::SimpleTestTickClock* clock, base::TimeDelta advance_time, std::vector<base::TimeTicks>* deadlines, base::TimeTicks deadline) { if ((*run_count + 1) < max_idle_task_reposts) { idle_task_runner->PostIdleTask( FROM_HERE, base::Bind(&RepostingUpdateClockIdleTestTask, base::Unretained(idle_task_runner), run_count, clock, advance_time, deadlines)); } deadlines->push_back(deadline); (*run_count)++; clock->Advance(advance_time); } void RepeatingTask(base::SingleThreadTaskRunner* task_runner, int num_repeats, base::TimeDelta delay) { if (num_repeats > 1) { task_runner->PostDelayedTask( FROM_HERE, base::Bind(&RepeatingTask, base::Unretained(task_runner), num_repeats - 1, delay), delay); } } void UpdateClockIdleTestTask(base::SimpleTestTickClock* clock, int* run_count, base::TimeTicks set_time, base::TimeTicks deadline) { clock->Advance(set_time - clock->NowTicks()); (*run_count)++; } void UpdateClockToDeadlineIdleTestTask(base::SimpleTestTickClock* clock, int* run_count, base::TimeTicks deadline) { UpdateClockIdleTestTask(clock, run_count, deadline, deadline); } void EndIdlePeriodIdleTask(IdleHelper* idle_helper, base::TimeTicks deadline) { idle_helper->EndIdlePeriod(); } scoped_refptr<SchedulerTqmDelegate> CreateTaskRunnerDelegate( base::MessageLoop* message_loop, scoped_refptr<cc::OrderedSimpleTaskRunner> mock_task_runner, scoped_ptr<TestTimeSource> test_time_source) { if (message_loop) return SchedulerTqmDelegateImpl::Create(message_loop, std::move(test_time_source)); return SchedulerTqmDelegateForTest::Create(mock_task_runner, std::move(test_time_source)); } }; // namespace class IdleHelperForTest : public IdleHelper, public IdleHelper::Delegate { public: explicit IdleHelperForTest( SchedulerHelper* scheduler_helper, base::TimeDelta required_quiescence_duration_before_long_idle_period) : IdleHelper(scheduler_helper, this, "test.idle", TRACE_DISABLED_BY_DEFAULT("test.idle"), "TestSchedulerIdlePeriod", required_quiescence_duration_before_long_idle_period) {} ~IdleHelperForTest() override {} // SchedulerHelperDelegate implementation: MOCK_METHOD2(CanEnterLongIdlePeriod, bool(base::TimeTicks now, base::TimeDelta* next_long_idle_period_delay_out)); MOCK_METHOD0(IsNotQuiescent, void()); MOCK_METHOD0(OnIdlePeriodStarted, void()); MOCK_METHOD0(OnIdlePeriodEnded, void()); }; class BaseIdleHelperTest : public testing::Test { public: BaseIdleHelperTest( base::MessageLoop* message_loop, base::TimeDelta required_quiescence_duration_before_long_idle_period) : clock_(new base::SimpleTestTickClock()), mock_task_runner_( message_loop ? nullptr : new cc::OrderedSimpleTaskRunner(clock_.get(), false)), message_loop_(message_loop), main_task_runner_(CreateTaskRunnerDelegate( message_loop, mock_task_runner_, make_scoped_ptr(new TestTimeSource(clock_.get())))), scheduler_helper_( new SchedulerHelper(main_task_runner_, "test.idle", TRACE_DISABLED_BY_DEFAULT("test.idle"), TRACE_DISABLED_BY_DEFAULT("test.idle.debug"))), idle_helper_(new IdleHelperForTest( scheduler_helper_.get(), required_quiescence_duration_before_long_idle_period)), default_task_runner_(scheduler_helper_->DefaultTaskRunner()), idle_task_runner_(idle_helper_->IdleTaskRunner()) { clock_->Advance(base::TimeDelta::FromMicroseconds(5000)); } ~BaseIdleHelperTest() override {} void SetUp() override { EXPECT_CALL(*idle_helper_, OnIdlePeriodStarted()).Times(AnyNumber()); EXPECT_CALL(*idle_helper_, OnIdlePeriodEnded()).Times(AnyNumber()); EXPECT_CALL(*idle_helper_, CanEnterLongIdlePeriod(_, _)) .Times(AnyNumber()) .WillRepeatedly(Return(true)); } void TearDown() override { DCHECK(!mock_task_runner_.get() || !message_loop_.get()); if (mock_task_runner_.get()) { // Check that all tests stop posting tasks. mock_task_runner_->SetAutoAdvanceNowToPendingTasks(true); while (mock_task_runner_->RunUntilIdle()) { } } else { message_loop_->RunUntilIdle(); } } void RunUntilIdle() { // Only one of mock_task_runner_ or message_loop_ should be set. DCHECK(!mock_task_runner_.get() || !message_loop_.get()); if (mock_task_runner_.get()) mock_task_runner_->RunUntilIdle(); else message_loop_->RunUntilIdle(); } template <typename E> static void CallForEachEnumValue(E first, E last, const char* (*function)(E)) { for (E val = first; val < last; val = static_cast<E>(static_cast<int>(val) + 1)) { (*function)(val); } } static void CheckAllTaskQueueIdToString() { CallForEachEnumValue<IdleHelper::IdlePeriodState>( IdleHelper::IdlePeriodState::FIRST_IDLE_PERIOD_STATE, IdleHelper::IdlePeriodState::IDLE_PERIOD_STATE_COUNT, &IdleHelper::IdlePeriodStateToString); } bool IsInIdlePeriod() const { return idle_helper_->IsInIdlePeriod( idle_helper_->SchedulerIdlePeriodState()); } protected: static base::TimeDelta maximum_idle_period_duration() { return base::TimeDelta::FromMilliseconds( IdleHelper::kMaximumIdlePeriodMillis); } static base::TimeDelta retry_enable_long_idle_period_delay() { return base::TimeDelta::FromMilliseconds( IdleHelper::kRetryEnableLongIdlePeriodDelayMillis); } static base::TimeDelta minimum_idle_period_duration() { return base::TimeDelta::FromMilliseconds( IdleHelper::kMinimumIdlePeriodDurationMillis); } base::TimeTicks CurrentIdleTaskDeadline() { return idle_helper_->CurrentIdleTaskDeadline(); } void CheckIdlePeriodStateIs(const char* expected) { EXPECT_STREQ(expected, IdleHelper::IdlePeriodStateToString( idle_helper_->SchedulerIdlePeriodState())); } scoped_ptr<base::SimpleTestTickClock> clock_; // Only one of mock_task_runner_ or message_loop_ will be set. scoped_refptr<cc::OrderedSimpleTaskRunner> mock_task_runner_; scoped_ptr<base::MessageLoop> message_loop_; scoped_refptr<SchedulerTqmDelegate> main_task_runner_; scoped_ptr<SchedulerHelper> scheduler_helper_; scoped_ptr<IdleHelperForTest> idle_helper_; scoped_refptr<base::SingleThreadTaskRunner> default_task_runner_; scoped_refptr<SingleThreadIdleTaskRunner> idle_task_runner_; DISALLOW_COPY_AND_ASSIGN(BaseIdleHelperTest); }; class IdleHelperTest : public BaseIdleHelperTest { public: IdleHelperTest() : BaseIdleHelperTest(nullptr, base::TimeDelta()) {} ~IdleHelperTest() override {} TaskQueueManager* task_queue_manager() const { return scheduler_helper_->GetTaskQueueManagerForTesting(); } private: DISALLOW_COPY_AND_ASSIGN(IdleHelperTest); }; TEST_F(IdleHelperTest, TestPostIdleTask) { int run_count = 0; base::TimeTicks expected_deadline = clock_->NowTicks() + base::TimeDelta::FromMilliseconds(2300); base::TimeTicks deadline_in_task; clock_->Advance(base::TimeDelta::FromMilliseconds(100)); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); RunUntilIdle(); EXPECT_EQ(0, run_count); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), expected_deadline); RunUntilIdle(); EXPECT_EQ(1, run_count); EXPECT_EQ(expected_deadline, deadline_in_task); } TEST_F(IdleHelperTest, TestPostIdleTask_EndIdlePeriod) { int run_count = 0; base::TimeTicks deadline_in_task; clock_->Advance(base::TimeDelta::FromMilliseconds(100)); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); RunUntilIdle(); EXPECT_EQ(0, run_count); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); idle_helper_->EndIdlePeriod(); RunUntilIdle(); EXPECT_EQ(0, run_count); } TEST_F(IdleHelperTest, TestRepostingIdleTask) { base::TimeTicks actual_deadline; int run_count = 0; max_idle_task_reposts = 2; idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&RepostingIdleTestTask, base::RetainedRef(idle_task_runner_), &run_count, &actual_deadline)); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); RunUntilIdle(); EXPECT_EQ(1, run_count); // Reposted tasks shouldn't run until next idle period. RunUntilIdle(); EXPECT_EQ(1, run_count); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); RunUntilIdle(); EXPECT_EQ(2, run_count); } TEST_F(IdleHelperTest, TestIdleTaskExceedsDeadline) { int run_count = 0; // Post two UpdateClockToDeadlineIdleTestTask tasks. idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&UpdateClockToDeadlineIdleTestTask, clock_.get(), &run_count)); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&UpdateClockToDeadlineIdleTestTask, clock_.get(), &run_count)); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); RunUntilIdle(); // Only the first idle task should execute since it's used up the deadline. EXPECT_EQ(1, run_count); idle_helper_->EndIdlePeriod(); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); RunUntilIdle(); // Second task should be run on the next idle period. EXPECT_EQ(2, run_count); } TEST_F(IdleHelperTest, TestPostIdleTaskAfterWakeup) { base::TimeTicks deadline_in_task; int run_count = 0; idle_task_runner_->PostIdleTaskAfterWakeup( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); RunUntilIdle(); // Shouldn't run yet as no other task woke up the scheduler. EXPECT_EQ(0, run_count); // Must start a new idle period before idle task runs. idle_task_runner_->PostIdleTaskAfterWakeup( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); RunUntilIdle(); // Another after wakeup idle task shouldn't wake the scheduler. EXPECT_EQ(0, run_count); default_task_runner_->PostTask(FROM_HERE, base::Bind(&NullTask)); RunUntilIdle(); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); RunUntilIdle(); // Execution of default task queue task should trigger execution of idle task. EXPECT_EQ(2, run_count); } TEST_F(IdleHelperTest, TestPostIdleTaskAfterWakeupWhileAwake) { base::TimeTicks deadline_in_task; int run_count = 0; idle_task_runner_->PostIdleTaskAfterWakeup( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); default_task_runner_->PostTask(FROM_HERE, base::Bind(&NullTask)); RunUntilIdle(); // Must start a new idle period before idle task runs. idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); RunUntilIdle(); // Should run as the scheduler was already awakened by the normal task. EXPECT_EQ(1, run_count); } TEST_F(IdleHelperTest, TestPostIdleTaskWakesAfterWakeupIdleTask) { base::TimeTicks deadline_in_task; int run_count = 0; idle_task_runner_->PostIdleTaskAfterWakeup( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); RunUntilIdle(); // Must start a new idle period before after-wakeup idle task runs. idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); RunUntilIdle(); // Normal idle task should wake up after-wakeup idle task. EXPECT_EQ(2, run_count); } class IdleHelperTestWithIdlePeriodObserver : public BaseIdleHelperTest { public: IdleHelperTestWithIdlePeriodObserver() : BaseIdleHelperTest(nullptr, base::TimeDelta()) {} ~IdleHelperTestWithIdlePeriodObserver() override {} void SetUp() override { // Don't set expectations on IdleHelper::Delegate. } TaskQueueManager* task_queue_manager() const { return scheduler_helper_->GetTaskQueueManagerForTesting(); } void ExpectIdlePeriodStartsButNeverEnds() { EXPECT_CALL(*idle_helper_, OnIdlePeriodStarted()).Times(1); EXPECT_CALL(*idle_helper_, OnIdlePeriodEnded()).Times(0); } void ExpectIdlePeriodStartsAndEnds(const testing::Cardinality& cardinality) { EXPECT_CALL(*idle_helper_, OnIdlePeriodStarted()).Times(cardinality); EXPECT_CALL(*idle_helper_, OnIdlePeriodEnded()).Times(cardinality); } private: DISALLOW_COPY_AND_ASSIGN(IdleHelperTestWithIdlePeriodObserver); }; TEST_F(IdleHelperTestWithIdlePeriodObserver, TestEnterButNotExitIdlePeriod) { ExpectIdlePeriodStartsButNeverEnds(); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); } TEST_F(IdleHelperTestWithIdlePeriodObserver, TestEnterAndExitIdlePeriod) { BaseIdleHelperTest* fixture = this; ON_CALL(*idle_helper_, OnIdlePeriodStarted()) .WillByDefault( Invoke([fixture]() { EXPECT_TRUE(fixture->IsInIdlePeriod()); })); ON_CALL(*idle_helper_, OnIdlePeriodEnded()) .WillByDefault( Invoke([fixture]() { EXPECT_FALSE(fixture->IsInIdlePeriod()); })); ExpectIdlePeriodStartsAndEnds(Exactly(1)); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); idle_helper_->EndIdlePeriod(); } class IdleHelperWithMessageLoopTest : public BaseIdleHelperTest { public: IdleHelperWithMessageLoopTest() : BaseIdleHelperTest(new base::MessageLoop(), base::TimeDelta()) {} ~IdleHelperWithMessageLoopTest() override {} void PostFromNestedRunloop(std::vector< std::pair<SingleThreadIdleTaskRunner::IdleTask, bool>>* tasks) { base::MessageLoop::ScopedNestableTaskAllower allow(message_loop_.get()); for (std::pair<SingleThreadIdleTaskRunner::IdleTask, bool>& pair : *tasks) { if (pair.second) { idle_task_runner_->PostIdleTask(FROM_HERE, pair.first); } else { idle_task_runner_->PostNonNestableIdleTask(FROM_HERE, pair.first); } } idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); message_loop_->RunUntilIdle(); } void SetUp() override { EXPECT_CALL(*idle_helper_, OnIdlePeriodStarted()).Times(AnyNumber()); EXPECT_CALL(*idle_helper_, OnIdlePeriodEnded()).Times(AnyNumber()); } private: DISALLOW_COPY_AND_ASSIGN(IdleHelperWithMessageLoopTest); }; TEST_F(IdleHelperWithMessageLoopTest, NonNestableIdleTaskDoesntExecuteInNestedLoop) { std::vector<std::string> order; idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&AppendToVectorIdleTestTask, &order, std::string("1"))); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&AppendToVectorIdleTestTask, &order, std::string("2"))); std::vector<std::pair<SingleThreadIdleTaskRunner::IdleTask, bool>> tasks_to_post_from_nested_loop; tasks_to_post_from_nested_loop.push_back(std::make_pair( base::Bind(&AppendToVectorIdleTestTask, &order, std::string("3")), false)); tasks_to_post_from_nested_loop.push_back(std::make_pair( base::Bind(&AppendToVectorIdleTestTask, &order, std::string("4")), true)); tasks_to_post_from_nested_loop.push_back(std::make_pair( base::Bind(&AppendToVectorIdleTestTask, &order, std::string("5")), true)); default_task_runner_->PostTask( FROM_HERE, base::Bind(&IdleHelperWithMessageLoopTest::PostFromNestedRunloop, base::Unretained(this), base::Unretained(&tasks_to_post_from_nested_loop))); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); RunUntilIdle(); // Note we expect task 3 to run last because it's non-nestable. EXPECT_THAT(order, testing::ElementsAre(std::string("1"), std::string("2"), std::string("4"), std::string("5"), std::string("3"))); } TEST_F(IdleHelperTestWithIdlePeriodObserver, TestLongIdlePeriod) { base::TimeTicks expected_deadline = clock_->NowTicks() + maximum_idle_period_duration(); base::TimeTicks deadline_in_task; int run_count = 0; idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); EXPECT_CALL(*idle_helper_, CanEnterLongIdlePeriod(_, _)) .Times(1) .WillRepeatedly(Return(true)); ExpectIdlePeriodStartsButNeverEnds(); RunUntilIdle(); EXPECT_EQ(0, run_count); // Shouldn't run yet as no idle period. idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(1, run_count); // Should have run in a long idle time. EXPECT_EQ(expected_deadline, deadline_in_task); } TEST_F(IdleHelperTest, TestLongIdlePeriodWithPendingDelayedTask) { base::TimeDelta pending_task_delay = base::TimeDelta::FromMilliseconds(30); base::TimeTicks expected_deadline = clock_->NowTicks() + pending_task_delay; base::TimeTicks deadline_in_task; int run_count = 0; idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); default_task_runner_->PostDelayedTask(FROM_HERE, base::Bind(&NullTask), pending_task_delay); idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(1, run_count); // Should have run in a long idle time. EXPECT_EQ(expected_deadline, deadline_in_task); } TEST_F(IdleHelperTest, TestLongIdlePeriodWithLatePendingDelayedTask) { base::TimeDelta pending_task_delay = base::TimeDelta::FromMilliseconds(10); base::TimeTicks deadline_in_task; int run_count = 0; default_task_runner_->PostDelayedTask(FROM_HERE, base::Bind(&NullTask), pending_task_delay); // Advance clock until after delayed task was meant to be run. clock_->Advance(base::TimeDelta::FromMilliseconds(20)); // Post an idle task and then EnableLongIdlePeriod. Since there is a late // pending delayed task this shouldn't actually start an idle period. idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(0, run_count); // After the delayed task has been run we should trigger an idle period. clock_->Advance(maximum_idle_period_duration()); RunUntilIdle(); EXPECT_EQ(1, run_count); } TEST_F(IdleHelperTestWithIdlePeriodObserver, TestLongIdlePeriodRepeating) { mock_task_runner_->SetAutoAdvanceNowToPendingTasks(true); std::vector<base::TimeTicks> actual_deadlines; int run_count = 0; EXPECT_CALL(*idle_helper_, CanEnterLongIdlePeriod(_, _)) .Times(4) .WillRepeatedly(Return(true)); ExpectIdlePeriodStartsAndEnds(AtLeast(2)); max_idle_task_reposts = 3; base::TimeTicks clock_before(clock_->NowTicks()); base::TimeDelta idle_task_runtime(base::TimeDelta::FromMilliseconds(10)); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&RepostingUpdateClockIdleTestTask, base::RetainedRef(idle_task_runner_), &run_count, clock_.get(), idle_task_runtime, &actual_deadlines)); // Check each idle task runs in their own idle period. idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(3, run_count); EXPECT_THAT( actual_deadlines, testing::ElementsAre( clock_before + maximum_idle_period_duration(), clock_before + idle_task_runtime + maximum_idle_period_duration(), clock_before + (2 * idle_task_runtime) + maximum_idle_period_duration())); max_idle_task_reposts = 5; idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&RepostingUpdateClockIdleTestTask, base::RetainedRef(idle_task_runner_), &run_count, clock_.get(), idle_task_runtime, &actual_deadlines)); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&EndIdlePeriodIdleTask, base::Unretained(idle_helper_.get()))); // Ensure that reposting tasks stop after EndIdlePeriod is called. RunUntilIdle(); EXPECT_EQ(4, run_count); } TEST_F(IdleHelperTest, TestLongIdlePeriodDoesNotWakeScheduler) { base::TimeTicks deadline_in_task; int run_count = 0; // Start a long idle period and get the time it should end. idle_helper_->EnableLongIdlePeriod(); // The scheduler should not run the enable_next_long_idle_period task if // there are no idle tasks and no other task woke up the scheduler, thus // the idle period deadline shouldn't update at the end of the current long // idle period. base::TimeTicks idle_period_deadline = CurrentIdleTaskDeadline(); clock_->Advance(maximum_idle_period_duration()); RunUntilIdle(); base::TimeTicks new_idle_period_deadline = CurrentIdleTaskDeadline(); EXPECT_EQ(idle_period_deadline, new_idle_period_deadline); // Posting a after-wakeup idle task also shouldn't wake the scheduler or // initiate the next long idle period. idle_task_runner_->PostIdleTaskAfterWakeup( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); RunUntilIdle(); new_idle_period_deadline = CurrentIdleTaskDeadline(); EXPECT_EQ(idle_period_deadline, new_idle_period_deadline); EXPECT_EQ(0, run_count); // Running a normal task should initiate a new long idle period though. default_task_runner_->PostTask(FROM_HERE, base::Bind(&NullTask)); RunUntilIdle(); new_idle_period_deadline = CurrentIdleTaskDeadline(); EXPECT_EQ(idle_period_deadline + maximum_idle_period_duration(), new_idle_period_deadline); EXPECT_EQ(1, run_count); } TEST_F(IdleHelperTestWithIdlePeriodObserver, TestLongIdlePeriodWhenNotCanEnterLongIdlePeriod) { base::TimeDelta delay = base::TimeDelta::FromMilliseconds(1000); base::TimeDelta halfDelay = base::TimeDelta::FromMilliseconds(500); base::TimeTicks delayOver = clock_->NowTicks() + delay; base::TimeTicks deadline_in_task; int run_count = 0; ON_CALL(*idle_helper_, CanEnterLongIdlePeriod(_, _)) .WillByDefault(Invoke( [delay, delayOver](base::TimeTicks now, base::TimeDelta* next_long_idle_period_delay_out) { if (now >= delayOver) return true; *next_long_idle_period_delay_out = delay; return false; })); EXPECT_CALL(*idle_helper_, CanEnterLongIdlePeriod(_, _)).Times(2); EXPECT_CALL(*idle_helper_, OnIdlePeriodStarted()).Times(AnyNumber()); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); // Make sure Idle tasks don't run until the delay has occurred. idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(0, run_count); clock_->Advance(halfDelay); RunUntilIdle(); EXPECT_EQ(0, run_count); // Delay is finished, idle task should run. clock_->Advance(halfDelay); RunUntilIdle(); EXPECT_EQ(1, run_count); } TEST_F(IdleHelperTest, TestLongIdlePeriodImmediatelyRestartsIfMaxDeadline) { std::vector<base::TimeTicks> actual_deadlines; int run_count = 0; base::TimeTicks clock_before(clock_->NowTicks()); base::TimeDelta idle_task_runtime(base::TimeDelta::FromMilliseconds(10)); // The second idle period should happen immediately after the first the // they have max deadlines. max_idle_task_reposts = 2; idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&RepostingUpdateClockIdleTestTask, base::RetainedRef(idle_task_runner_), &run_count, clock_.get(), idle_task_runtime, &actual_deadlines)); idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(2, run_count); EXPECT_THAT( actual_deadlines, testing::ElementsAre( clock_before + maximum_idle_period_duration(), clock_before + idle_task_runtime + maximum_idle_period_duration())); } TEST_F(IdleHelperTest, TestLongIdlePeriodRestartWaitsIfNotMaxDeadline) { base::TimeTicks actual_deadline; int run_count = 0; base::TimeDelta pending_task_delay(base::TimeDelta::FromMilliseconds(20)); base::TimeDelta idle_task_duration(base::TimeDelta::FromMilliseconds(10)); base::TimeTicks expected_deadline(clock_->NowTicks() + pending_task_delay + maximum_idle_period_duration() + retry_enable_long_idle_period_delay()); // Post delayed task to ensure idle period doesn't have a max deadline. default_task_runner_->PostDelayedTask(FROM_HERE, base::Bind(&NullTask), pending_task_delay); max_idle_task_reposts = 2; idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&RepostingIdleTestTask, base::RetainedRef(idle_task_runner_), &run_count, &actual_deadline)); idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(1, run_count); clock_->Advance(idle_task_duration); // Next idle period shouldn't happen until the pending task has been run. RunUntilIdle(); EXPECT_EQ(1, run_count); // Once the pending task is run the new idle period should start. clock_->Advance(pending_task_delay - idle_task_duration); // Since the idle period tried to start before the pending task ran we have to // wait for the idle helper to retry starting the long idle period. clock_->Advance(retry_enable_long_idle_period_delay()); RunUntilIdle(); EXPECT_EQ(2, run_count); EXPECT_EQ(expected_deadline, actual_deadline); } TEST_F(IdleHelperTest, TestLongIdlePeriodPaused) { mock_task_runner_->SetAutoAdvanceNowToPendingTasks(true); std::vector<base::TimeTicks> actual_deadlines; int run_count = 0; // If there are no idle tasks posted we should start in the paused state. idle_helper_->EnableLongIdlePeriod(); CheckIdlePeriodStateIs("in_long_idle_period_paused"); // There shouldn't be any delayed tasks posted by the idle helper when paused. base::TimeTicks next_pending_delayed_task; EXPECT_FALSE(scheduler_helper_->real_time_domain()->NextScheduledRunTime( &next_pending_delayed_task)); // Posting a task should transition us to the an active state. max_idle_task_reposts = 2; base::TimeTicks clock_before(clock_->NowTicks()); base::TimeDelta idle_task_runtime(base::TimeDelta::FromMilliseconds(10)); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&RepostingUpdateClockIdleTestTask, base::RetainedRef(idle_task_runner_), &run_count, clock_.get(), idle_task_runtime, &actual_deadlines)); RunUntilIdle(); EXPECT_EQ(2, run_count); EXPECT_THAT( actual_deadlines, testing::ElementsAre( clock_before + maximum_idle_period_duration(), clock_before + idle_task_runtime + maximum_idle_period_duration())); // Once all task have been run we should go back to the paused state. CheckIdlePeriodStateIs("in_long_idle_period_paused"); EXPECT_FALSE(scheduler_helper_->real_time_domain()->NextScheduledRunTime( &next_pending_delayed_task)); idle_helper_->EndIdlePeriod(); CheckIdlePeriodStateIs("not_in_idle_period"); } TEST_F(IdleHelperTest, TestLongIdlePeriodWhenShutdown) { base::TimeTicks deadline_in_task; int run_count = 0; idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); scheduler_helper_->Shutdown(); // We shouldn't be able to enter a long idle period when shutdown idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); CheckIdlePeriodStateIs("not_in_idle_period"); EXPECT_EQ(0, run_count); } void TestCanExceedIdleDeadlineIfRequiredTask(IdleHelperForTest* idle_helper, bool* can_exceed_idle_deadline_out, int* run_count, base::TimeTicks deadline) { *can_exceed_idle_deadline_out = idle_helper->CanExceedIdleDeadlineIfRequired(); (*run_count)++; } TEST_F(IdleHelperTest, CanExceedIdleDeadlineIfRequired) { int run_count = 0; bool can_exceed_idle_deadline = false; // Should return false if not in an idle period. EXPECT_FALSE(idle_helper_->CanExceedIdleDeadlineIfRequired()); // Should return false for short idle periods. idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&TestCanExceedIdleDeadlineIfRequiredTask, idle_helper_.get(), &can_exceed_idle_deadline, &run_count)); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), clock_->NowTicks() + base::TimeDelta::FromMilliseconds(10)); RunUntilIdle(); EXPECT_EQ(1, run_count); EXPECT_FALSE(can_exceed_idle_deadline); // Should return false for a long idle period which is shortened due to a // pending delayed task. default_task_runner_->PostDelayedTask(FROM_HERE, base::Bind(&NullTask), base::TimeDelta::FromMilliseconds(10)); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&TestCanExceedIdleDeadlineIfRequiredTask, idle_helper_.get(), &can_exceed_idle_deadline, &run_count)); idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(2, run_count); EXPECT_FALSE(can_exceed_idle_deadline); // Next long idle period will be for the maximum time, so // CanExceedIdleDeadlineIfRequired should return true. clock_->Advance(maximum_idle_period_duration()); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&TestCanExceedIdleDeadlineIfRequiredTask, idle_helper_.get(), &can_exceed_idle_deadline, &run_count)); RunUntilIdle(); EXPECT_EQ(3, run_count); EXPECT_TRUE(can_exceed_idle_deadline); } class IdleHelperWithQuiescencePeriodTest : public BaseIdleHelperTest { public: enum { kQuiescenceDelayMs = 100, kLongIdlePeriodMs = 50, }; IdleHelperWithQuiescencePeriodTest() : BaseIdleHelperTest( nullptr, base::TimeDelta::FromMilliseconds(kQuiescenceDelayMs)) {} ~IdleHelperWithQuiescencePeriodTest() override {} void SetUp() override { EXPECT_CALL(*idle_helper_, OnIdlePeriodStarted()).Times(AnyNumber()); EXPECT_CALL(*idle_helper_, OnIdlePeriodEnded()).Times(AnyNumber()); EXPECT_CALL(*idle_helper_, CanEnterLongIdlePeriod(_, _)) .Times(AnyNumber()) .WillRepeatedly(Return(true)); EXPECT_CALL(*idle_helper_, IsNotQuiescent()).Times(AnyNumber()); } void MakeNonQuiescent() { // Run an arbitrary task so we're deemed to be not quiescent. default_task_runner_->PostTask(FROM_HERE, base::Bind(NullTask)); RunUntilIdle(); } private: DISALLOW_COPY_AND_ASSIGN(IdleHelperWithQuiescencePeriodTest); }; class IdleHelperWithQuiescencePeriodTestWithIdlePeriodObserver : public IdleHelperWithQuiescencePeriodTest { public: IdleHelperWithQuiescencePeriodTestWithIdlePeriodObserver() : IdleHelperWithQuiescencePeriodTest() {} ~IdleHelperWithQuiescencePeriodTestWithIdlePeriodObserver() override {} void SetUp() override { // Don't set expectations on IdleHelper::Delegate. } private: DISALLOW_COPY_AND_ASSIGN( IdleHelperWithQuiescencePeriodTestWithIdlePeriodObserver); }; TEST_F(IdleHelperWithQuiescencePeriodTest, LongIdlePeriodStartsImmediatelyIfQuiescent) { base::TimeTicks actual_deadline; int run_count = 0; max_idle_task_reposts = 1; idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&RepostingIdleTestTask, base::RetainedRef(idle_task_runner_), &run_count, &actual_deadline)); idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(1, run_count); } TEST_F(IdleHelperWithQuiescencePeriodTestWithIdlePeriodObserver, LongIdlePeriodDoesNotStartsImmediatelyIfBusy) { MakeNonQuiescent(); EXPECT_CALL(*idle_helper_, OnIdlePeriodStarted()).Times(0); EXPECT_CALL(*idle_helper_, OnIdlePeriodEnded()).Times(0); EXPECT_CALL(*idle_helper_, CanEnterLongIdlePeriod(_, _)).Times(0); EXPECT_CALL(*idle_helper_, IsNotQuiescent()).Times(AtLeast(1)); base::TimeTicks actual_deadline; int run_count = 0; max_idle_task_reposts = 1; idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&RepostingIdleTestTask, base::RetainedRef(idle_task_runner_), &run_count, &actual_deadline)); idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(0, run_count); scheduler_helper_->Shutdown(); } TEST_F(IdleHelperWithQuiescencePeriodTest, LongIdlePeriodStartsAfterQuiescence) { MakeNonQuiescent(); mock_task_runner_->SetAutoAdvanceNowToPendingTasks(true); // Run a repeating task so we're deemed to be busy for the next 400ms. default_task_runner_->PostTask( FROM_HERE, base::Bind(&RepeatingTask, base::Unretained(default_task_runner_.get()), 10, base::TimeDelta::FromMilliseconds(40))); int run_count = 0; // In this scenario EnableLongIdlePeriod deems us not to be quiescent 5x in // a row. base::TimeTicks expected_deadline = clock_->NowTicks() + base::TimeDelta::FromMilliseconds( 5 * kQuiescenceDelayMs + kLongIdlePeriodMs); base::TimeTicks deadline_in_task; idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(1, run_count); EXPECT_EQ(expected_deadline, deadline_in_task); } TEST_F(IdleHelperWithQuiescencePeriodTest, QuescienceCheckedForAfterLongIdlePeriodEnds) { mock_task_runner_->SetAutoAdvanceNowToPendingTasks(true); idle_task_runner_->PostIdleTask(FROM_HERE, base::Bind(&NullIdleTask)); idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); // Post a normal task to make the scheduler non-quiescent. default_task_runner_->PostTask(FROM_HERE, base::Bind(&NullTask)); RunUntilIdle(); // Post an idle task. The idle task won't run initially because the system is // not judged to be quiescent, but should be run after the quiescence delay. int run_count = 0; base::TimeTicks deadline_in_task; base::TimeTicks expected_deadline = clock_->NowTicks() + base::TimeDelta::FromMilliseconds(kQuiescenceDelayMs + kLongIdlePeriodMs); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(1, run_count); EXPECT_EQ(expected_deadline, deadline_in_task); } TEST_F(IdleHelperTest, NoShortIdlePeriodWhenDeadlineTooClose) { int run_count = 0; base::TimeTicks deadline_in_task; idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); base::TimeDelta half_a_ms(base::TimeDelta::FromMicroseconds(50)); base::TimeTicks less_than_min_deadline( clock_->NowTicks() + minimum_idle_period_duration() - half_a_ms); base::TimeTicks more_than_min_deadline( clock_->NowTicks() + minimum_idle_period_duration() + half_a_ms); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), less_than_min_deadline); RunUntilIdle(); EXPECT_EQ(0, run_count); idle_helper_->StartIdlePeriod( IdleHelper::IdlePeriodState::IN_SHORT_IDLE_PERIOD, clock_->NowTicks(), more_than_min_deadline); RunUntilIdle(); EXPECT_EQ(1, run_count); } TEST_F(IdleHelperTest, NoLongIdlePeriodWhenDeadlineTooClose) { int run_count = 0; base::TimeTicks deadline_in_task; base::TimeDelta half_a_ms(base::TimeDelta::FromMicroseconds(50)); base::TimeDelta less_than_min_deadline_duration( minimum_idle_period_duration() - half_a_ms); base::TimeDelta more_than_min_deadline_duration( minimum_idle_period_duration() + half_a_ms); idle_task_runner_->PostIdleTask( FROM_HERE, base::Bind(&IdleTestTask, &run_count, &deadline_in_task)); default_task_runner_->PostDelayedTask(FROM_HERE, base::Bind(&NullTask), less_than_min_deadline_duration); idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(0, run_count); idle_helper_->EndIdlePeriod(); clock_->Advance(maximum_idle_period_duration()); RunUntilIdle(); EXPECT_EQ(0, run_count); default_task_runner_->PostDelayedTask(FROM_HERE, base::Bind(&NullTask), more_than_min_deadline_duration); idle_helper_->EnableLongIdlePeriod(); RunUntilIdle(); EXPECT_EQ(1, run_count); } } // namespace scheduler
[ "dummas@163.com" ]
dummas@163.com
e0b578bbe6c8b1ff7c14d6f83a6f9d179dc5b411
b1e5f089be9b6086db51f31015674ad1a0b61b09
/unit-tests/test_compression.cc
f74a07fc1858c49332b538fd9cc29265fc9c6a0e
[ "Zlib", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "BSD-3-Clause" ]
permissive
tdiazcu/kingdb
87532a54843c2ae401ad4e9b8b07980b6bf413bc
50be18b6b65c028e9495c96c56d603e863822bd6
refs/heads/master
2021-01-17T06:30:18.059043
2015-04-10T21:45:34
2015-04-10T21:45:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,991
cc
#include "algorithm/compressor.h" #include "algorithm/lz4.h" char* MakeValue(const std::string& key, int size_value) { int size_key = key.size(); char *str = new char[size_value+1]; str[size_value] = '\0'; int i = 0; for (i = 0; i < size_value / size_key; i++) { memcpy(str + i*size_key, key.c_str(), size_key); } if (size_value % size_key != 0) { memcpy(str + i*size_key, key.c_str(), size_value % size_key); } return str; } int VerifyValue(const std::string& key, int size_value, const char* value) { int size_key = key.size(); int i = 0; bool error = false; for (i = 0; i < size_value / size_key; i++) { if (memcmp(value + i*size_key, key.c_str(), size_key)) { std::string value2(value + i*size_key, size_key); printf("diff i:%d size:%d key:[%s], value:[%s]\n", i, size_key, key.c_str(), value2.c_str()); error = true; } } if (size_value % size_key != 0) { if (memcmp(value + i*size_key, key.c_str(), size_value % size_key)) { std::string value2(value, size_value % size_key); printf("diff remainder size:%d key:[%s], value:[%s]\n", size_value % size_key, key.c_str(), value2.c_str()); error = true; } } if (error) return -1; return 0; } int main() { kdb::CompressorLZ4 lz4; char* raw = nullptr; char *compressed = nullptr; uint64_t size_value = 442837; uint64_t size_compressed = 0; uint64_t size_chunk = 64*1024; uint64_t offset_chunk_compressed = 0; uint64_t SIZE_BUFFER = 1024*1024; std::string key("0x10c095000-0"); raw = MakeValue(key, size_value); lz4.ResetThreadLocalStorage(); compressed = new char[SIZE_BUFFER]; auto num_chunks = size_value / size_chunk; char *comp; if (size_value % size_chunk) num_chunks += 1; for(auto chunk = 0; chunk < num_chunks; chunk++) { uint64_t size_chunk_current = 0; size_chunk_current = size_chunk; if (chunk == num_chunks - 1) { size_chunk_current = size_value % size_chunk; } fprintf(stderr, "step:%d size:%" PRIu64 "\n", chunk, size_chunk_current); offset_chunk_compressed = lz4.size_compressed(); kdb::Status s = lz4.Compress(raw + chunk * size_chunk, size_chunk_current, &comp, &size_compressed); if (!s.IsOK()) { fprintf(stderr, "%s\n", s.ToString().c_str()); exit(-1); } fprintf(stderr, "step %d - %p size_compressed:%" PRIu64 " offset:%" PRIu64 "\n", chunk, comp, size_compressed, offset_chunk_compressed); memcpy(compressed + offset_chunk_compressed, comp, size_compressed); fprintf(stderr, "step %d - size_compressed:%" PRIu64 "\n", chunk, size_compressed); } size_compressed = lz4.size_compressed(); fprintf(stderr, "--- stream compressed data (size:%" PRIu64 "):\n", size_compressed); for (auto i = 0; i < size_compressed; i++) { fprintf(stderr, "%c", compressed[i]); } fprintf(stderr, "\n--- done\n"); char *uncompressed; uint64_t size_out; uint64_t size_out_total = 0; char *frame; uint64_t size_frame; int step = 0; char *uncompressed_full = new char[1024*1024]; while(true) { kdb::Status s1 = lz4.Uncompress(compressed, size_compressed, &uncompressed, &size_out, &frame, &size_frame); fprintf(stderr, "stream uncompressed step: %d size:%" PRIu64 "\n", step, size_out); if (!s1.IsOK()) { fprintf(stderr, "%s\n", s1.ToString().c_str()); break; } memcpy(uncompressed_full + size_out_total, uncompressed, size_out); size_out_total += size_out; step += 1; } fprintf(stderr, "stream uncompressed size: %" PRIu64 "\n", size_out_total); int ret = VerifyValue(key, size_value, uncompressed_full); if (ret == 0) { fprintf(stderr, "Verify(): ok\n"); } return 0; }
[ "emmanuel.goossaert@gmail.com" ]
emmanuel.goossaert@gmail.com
355ee9b07a02683373fe53f59f9cbc4bc88835a1
3e2711b2bb02bf80cb2f4443cc08eaa3f09c8c2f
/codevs1082_zkw_0.cpp
fbfb8570adaa098bcee6423cf84aabb6c0b1206d
[]
no_license
liangsheng/new
2a13f9efd84c2f2d922ac578d41528a71df6e1f4
3c5f46c214b4fbf66719f1dc0bed82196214f620
refs/heads/master
2021-01-18T22:34:38.451489
2016-06-13T09:26:43
2016-06-13T09:26:43
35,537,393
0
0
null
null
null
null
UTF-8
C++
false
false
2,473
cpp
#include <bits/stdc++.h> #define file_r(x) freopen(x, "r", stdin) #define file_w(x) freopen(x, "w", stdout) #define rep(i, n) for (int i = 0; i < n; i++) #define FOR(i, n, m) for (int i = n; i <= m; i++) #define repe(i, u) for (int i = head[u]; ~i; i = nxt[i]) #define FORD(i, n, m) for (int i = n; i >= m; i--) #define repit(i, c) for (__typeof__((c).begin()) i = (c).begin(); i != (c).end(); i++) #define pause cout << " press ant key to continue...", cin >> chh #define pb push_back #define mp make_pair #define ins insert #define X first #define Y second #define be begin #define nb rbegin #define er erase #define SZ(c) c.size() #define ins insert #define sc(n) cout << #n << "= " << n, system("pause") #define sc2(n, m) cout << #n << "= " << n << " " << #m << "= " << m, system("pause") #define sc3(n, m, k) cout << #n << "= " << n << " " << #m << "= " << m << " " << #k << "= " << k, system("pause") #define sc4(n, m, k, b) cout << #n << "= " << n << " " << #m << "= " << m << " " << #k << "= " << k << " " << #b << "= " << b, system("pause") using namespace std; int chh; typedef long long LL; const int N = 200005, M = 262144; int n, m; LL a[M * 2 + 1], b[M * 2 + 1]; void init() { memset(a, 0, sizeof(a)); memset(b, 0, sizeof(b)); } void add(LL a[], int x, LL y) { for (a[x += M] += y, x >>= 1; x; x >>= 1) { a[x] = a[x << 1] + a[x << 1 | 1]; } } LL gao(LL a[], int s, int t) { LL ans = 0; for (s = s + M - 1, t = t + M + 1; s ^ t ^ 1; s >>= 1, t >>= 1) { if (~s & 1) ans += a[s ^ 1]; if (t & 1) ans += a[t ^ 1]; } return ans; } int h[N]; int main() { int f, l, r, x; LL al, ar; while (~scanf("%d", &n)) { init(); FOR (i, 1, n) scanf("%d", &h[i]); h[0] = 0; FOR (i, 1, n) { add(a, i, h[i] - h[i - 1]); add(b, i, (LL) i * (h[i] - h[i - 1])); } scanf("%d", &m); while (m--) { scanf("%d", &f); if (f == 1) { scanf("%d %d %d", &l, &r, &x); add(a, l, x), add(a, r + 1, -x); add(b, l, x * l), add(b, r + 1, (r + 1) * (-x)); } else { scanf("%d %d", &l, &r); ar = (r + 1) * gao(a, 1, r) - gao(b, 1, r); if (l == 1) al = 0; else al = l * gao(a, 1, l - 1) - gao(b, 1, l - 1); printf("%lld\n", ar - al); } } } return 0; }
[ "904491908@qq.com" ]
904491908@qq.com
951b8cdc8c9a42c5a5ba7993fba3f0b49f772fcb
958b35b8188909abfb5c5fc466fd4fb461735a21
/chapter4/4-3.cpp
afc35ab8295d34677faf1466245d86e42817dfea
[]
no_license
1303575952/Teach-Yourself-Cpp-in-One-Hour-a-Day
af89f85fd26e2d0d639fcc879ccbee67bd6aa072
7324b5d2032b8fc127e506359f7c05b96a0c9884
refs/heads/master
2020-05-16T23:12:27.812340
2019-04-28T08:21:42
2019-04-28T08:21:42
183,356,020
5
2
null
null
null
null
UTF-8
C++
false
false
677
cpp
#include <iostream> using namespace std; int main() { int threeRowsThreeColumns[3][3] = {{-501, 205, 2011}, {989, 101, 206}, {303, 456, 596}}; cout << "Row 0: " << threeRowsThreeColumns[0][0] << " " << threeRowsThreeColumns[0][1] << " " << threeRowsThreeColumns[0][2] << endl; cout << "Row 1: " << threeRowsThreeColumns[1][0] << " " << threeRowsThreeColumns[1][1] << " " << threeRowsThreeColumns[1][2] << endl; cout << "Row 2: " << threeRowsThreeColumns[2][0] << " " << threeRowsThreeColumns[2][1] << " " << threeRowsThreeColumns[2][2] << endl; return 0; }
[ "1303575952@qq.com" ]
1303575952@qq.com
5abdb50948be3d16a33c166288a4b16fcd214e2a
bc047c426fc1e2f619173a26cff72394b2a223b2
/esp015/test2.0 esp8266/Blink/Blink.ino
6eef7b91ca699677d707b6ccdda52bca7fc74933
[]
no_license
MathieuAuclair/ArduinoTest
4587375d8191e12afaa811c046d7ca2f65f85548
ee6592768f398d5d189742d4293fec5fdb66d511
refs/heads/master
2021-04-30T18:14:44.087896
2017-05-29T23:31:04
2017-05-29T23:31:04
80,334,724
1
2
null
null
null
null
UTF-8
C++
false
false
1,179
ino
// Basic serial communication with ESP8266 // Uses serial monitor for communication with ESP8266 // // Pins // Arduino pin 2 (RX) to ESP8266 TX // Arduino pin 3 to voltage divider then to ESP8266 RX // Connect GND from the Arduiono to GND on the ESP8266 // Pull ESP8266 CH_PD HIGH // // When a command is entered in to the serial monitor on the computer // the Arduino will relay it to the ESP8266 // #include <SoftwareSerial.h> SoftwareSerial ESPserial(2, 3); // RX | TX void setup() { Serial.begin(115200); // communication with the host computer //while (!Serial) { ; } // Start the software serial for communication with the ESP8266 ESPserial.begin(115200); Serial.println(""); Serial.println("Remember to to set Both NL & CR in the serial monitor."); Serial.println("Ready"); Serial.println(""); } void loop() { // listen for communication from the ESP8266 and then write it to the serial monitor if ( ESPserial.available() ) { Serial.write( ESPserial.read() ); } // listen for user input and send it to the ESP8266 if ( Serial.available() ) { ESPserial.write( Serial.read() ); } }
[ "mathiass12@hotmail.com" ]
mathiass12@hotmail.com
973e7e7b9b342e7b3b6980eadebaabefdecc65f8
794312de5e5e928080e75730ef56f6fff7baf918
/snake.h
46994497f95b3b9604b51f90c75fc5d552bb2656
[]
no_license
ampaul5653/Snake-Game
d67190e531d623c4111ac354cd826a3698184325
d283b065e78f44e6ea9ad5175e172f5328542d29
refs/heads/master
2023-01-08T14:32:38.957168
2020-11-08T01:23:58
2020-11-08T01:23:58
310,962,151
0
0
null
null
null
null
UTF-8
C++
false
false
1,438
h
/*--------------------------------------------------------- file: snake.h by: Adam Paul org: COP 2001, Spring 2020 for: Header file for a snake class object ---------------------------------------------------------*/ #pragma once #include "block.h" #include "snakedefs.h" class Snake { private: Block head; //root of the snake body Block* tail; //pointer to last block in body Block prevTail; // for erasing and appending Block speed; // travelling velocity in the x/y axis int size; // number of body blocks in snake Direction current; // curent direction snake is traveling Direction next; // direction player has input public: //------------------------------------------- // Constructors //------------------------------------------- Snake(); Snake(int startColumn, int startRow); //------------------------------------------- // Accessors //------------------------------------------- Block* getHead(); Block* getTail(); Block* getPrevTail(); int getSize(); Direction getCurrentDirection(); Direction getNextDirection(); //------------------------------------------- // Methods //------------------------------------------- void setDirections(int input); void turn(); void move(); bool isMoving(); void grow(); void collisions(); bool intersects(Block other, bool withHead); }; // end class Snake
[ "adammpaul4@gmail.com" ]
adammpaul4@gmail.com
85720b3af0ca2b3f998827c156d451a7f2317ac2
7f583eade8a277b27364b0e6ec900fb48bb07b02
/Queue-master/src/cppQueue.cpp
2f58ce524c8c38e1469321d4131a264faf1d4c33
[ "BSD-3-Clause", "MIT" ]
permissive
tcafiero/IoTWArduinoLibraries
727c4ef7f5cfb456c8d2831303fee7e50a0c2ebc
6cdfc5a14cdefdee8635e3c4296dcea25dfe5840
refs/heads/master
2020-03-23T14:56:16.074734
2018-09-17T17:02:49
2018-09-17T17:02:49
141,709,263
0
0
null
null
null
null
UTF-8
C++
false
false
2,988
cpp
/*!\file cppQueue.cpp ** \author SMFSW ** \version 1.5 ** \date 2018/03/14 ** \copyright BSD 3-Clause License (c) 2017-2018, SMFSW ** \brief Queue handling library (designed on Arduino) ** \details Queue handling library (designed on Arduino) ** This library was designed for Arduino, yet may be compiled without change with gcc for other purporses/targets **/ extern "C" { #include <string.h> #include <stdlib.h> } #include "cppQueue.h" #define INC_IDX(ctr, end, start) if (ctr < (end-1)) { ctr++; } \ else { ctr = start; } //!< Increments buffer index \b ctr rolling back to \b start when limit \b end is reached #define DEC_IDX(ctr, end, start) if (ctr > (start)) { ctr--; } \ else { ctr = end-1; } //!< Decrements buffer index \b ctr rolling back to \b end when limit \b start is reached Queue::Queue(const uint16_t size_rec, const uint16_t nb_recs, const QueueType type, const bool overwrite) { rec_nb = nb_recs; rec_sz = size_rec; impl = type; ovw = overwrite; init = 0; if (queue) { free(queue); } // Free existing data (if any) queue = (uint8_t *) malloc(nb_recs * size_rec); if (queue == NULL) { return; } // Return here if Queue not allocated init = QUEUE_INITIALIZED; flush(); } Queue::~Queue() { if (init == QUEUE_INITIALIZED) free(queue); } void Queue::flush(void) { in = 0; out = 0; cnt = 0; } bool Queue::push(const void * record) { if ((!ovw) && isFull()) { return false; } uint8_t * pStart = queue + (rec_sz * in); memcpy(pStart, record, rec_sz); INC_IDX(in, rec_nb, 0); if (!isFull()) { cnt++; } // Increase records count else if (ovw) // Queue is full and overwrite is allowed { if (impl == FIFO) { INC_IDX(out, rec_nb, 0); } // as oldest record is overwritten, increment out //else if (impl == LIFO) {} // Nothing to do in this case } return true; } bool Queue::pop(void * record) { uint8_t * pStart; if (isEmpty()) { return false; } // No more records if (impl == FIFO) { pStart = queue + (rec_sz * out); INC_IDX(out, rec_nb, 0); } else if (impl == LIFO) { DEC_IDX(in, rec_nb, 0); pStart = queue + (rec_sz * in); } else { return false; } memcpy(record, pStart, rec_sz); cnt--; // Decrease records count return true; } bool Queue::peek(void * record) { uint8_t * pStart; if (isEmpty()) { return false; } // No more records if (impl == FIFO) { pStart = queue + (rec_sz * out); // No change on out var as it's just a peek } else if (impl == LIFO) { uint16_t rec = in; // Temporary var for peek (no change on in with DEC_IDX) DEC_IDX(rec, rec_nb, 0); pStart = queue + (rec_sz * rec); } else { return false; } memcpy(record, pStart, rec_sz); return true; } bool Queue::drop(void) { if (isEmpty()) { return false; } // No more records if (impl == FIFO) { INC_IDX(out, rec_nb, 0); } else if (impl == LIFO) { DEC_IDX(in, rec_nb, 0); } else { return false; } cnt--; // Decrease records count return true; }
[ "tcafiero@hotmail.com" ]
tcafiero@hotmail.com
49eca508e33e89312fac9dad4a4a15d805bc2460
0a7c429c78853d865ff19f2a75f26690b8e61b9c
/Legacy/SAL/Interfaces/IBuilder.h
d97bf684760b8696ca005721be8a38c114d0e854
[]
no_license
perryiv/cadkit
2a896c569b1b66ea995000773f3e392c0936c5c0
723db8ac4802dd8d83ca23f058b3e8ba9e603f1a
refs/heads/master
2020-04-06T07:43:30.169164
2018-11-13T03:58:57
2018-11-13T03:58:57
157,283,008
2
2
null
null
null
null
UTF-8
C++
false
false
1,041
h
/////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2002, Perry L. Miller IV // All rights reserved. // BSD License: http://www.opensource.org/licenses/bsd-license.html // /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // // Interface for a component that builds a scene. // /////////////////////////////////////////////////////////////////////////////// #ifndef _SAL_INTERFACE_BUILDER_H_ #define _SAL_INTERFACE_BUILDER_H_ #include "Usul/Interfaces/IUnknown.h" namespace SAL { namespace Interfaces { struct INode; struct IBuilder : public Usul::Interfaces::IUnknown { /// Smart-pointer definitions. USUL_DECLARE_QUERY_POINTERS ( IBuilder ); /// Id for this interface. enum { IID = 1282381398 }; // Build the scene. virtual INode * buildScene() const = 0; }; }; // namespace Interfaces }; // namespace SAL #endif // _SAL_INTERFACE_BUILDER_H_
[ "pep4@73d323f7-f32a-0410-a0ec-c7cf9bc3a937" ]
pep4@73d323f7-f32a-0410-a0ec-c7cf9bc3a937
cf3d672edc41aee1e64c97c1c6856dcd849f8a15
617a25be1df450b4eea55c12440315268adde10d
/MyFieldWidget.h
fefd9fafeecabaa1adcfd082683b8cc0a2014801
[]
no_license
ZhangMingdong/TrendDetectionVis
34250407efd675bd8ca8fe4e64a7ab7b8152740c
9a0aa01b2023250d1b0f3a42f525e33ba501957b
refs/heads/master
2021-08-29T16:16:12.815141
2017-12-13T05:51:44
2017-12-13T05:51:44
111,173,115
0
0
null
null
null
null
UTF-8
C++
false
false
816
h
#pragma once #include "def.h" #include "ContourGenerator.h" #include "EnsembleIntersections.h" #include "GLFont.h" #include "MyGLWidget.h" #include "Field2D.h" #include<vector> #include<unordered_map> class MeteModel; class MyFieldWidget : public MyGLWidget { Q_OBJECT public: MyFieldWidget(QWidget *parent = 0); ~MyFieldWidget(); protected: MeteModel* _pModelE = NULL; int _nCurrentGroup = 0; public: void SetModelE(MeteModel* pModelE); protected: // paint the content virtual void paint(); virtual void init(); protected: virtual void mouseDoubleClickEvent(QMouseEvent *event); //================2dField================ FIELD2D::Field2D* _pField = NULL; int _nGridWidth=0; int _nGridHeight=0; int _nEns=0; // generate sequences for trend detection -- ensembles void generateField(); };
[ "zhangmingdong0408@gmail.com" ]
zhangmingdong0408@gmail.com
a135172edc7f4c59f7585eb11871c2f3e70126e1
c10025e21323f2b6719a6431cac74d4dd16c35cc
/engine/src/rendering/transform.cpp
195983d3d4717b1981dd8cef75e6700d8299dac2
[]
no_license
rockz-lab/3D_rendering
259a53500601a17dd3890c06a635cb14c3cc859d
3ea49f04a6a4ee2014364ebb9d3ca727c801e454
refs/heads/main
2023-02-19T22:36:42.507469
2021-01-24T15:18:59
2021-01-24T15:18:59
310,270,434
0
0
null
null
null
null
UTF-8
C++
false
false
461
cpp
#include "transform.h" Transform::Transform() { this->pos = glm::vec3(0.0, 0.0, 0.0); this->rpy = glm::vec3(0.0, 0.0, 0.0); this->scale = glm::vec3(1.0, 1.0, 1.0); } Transform::Transform(glm::vec3 pos, glm::vec3 rpy) { this->pos = pos; this->rpy = rpy; this->scale = glm::vec3(1.0, 1.0, 1.0); } Transform::Transform(glm::vec3 pos, glm::vec3 rpy, glm::vec3 scale) { this->pos = pos; this->rpy = rpy; this->scale = scale; }
[ "uzdpx@student.kit.edu" ]
uzdpx@student.kit.edu
6e463a20c9c4af785e7d70cc6bb5d3e87a0a2232
66e7e96aeee14bf491e02b369b4cea910f627717
/CMVS/CMVS_CN_PATCH/dllmain.cpp
13022418257d056064948d97ba116c1f2a8fef3e
[]
no_license
jszhtian/Fragment
58416e703596898d57a3de5ec4644b8ee88d7482
5f62905e50274bc0ae9f9464eedb1f1d4604e254
refs/heads/master
2022-09-28T10:49:53.847423
2022-09-17T12:47:23
2022-09-17T12:47:23
75,670,679
48
5
null
null
null
null
UTF-8
C++
false
false
8,182
cpp
// dllmain.cpp : 定义 DLL 应用程序的入口点。 #include "framework.h" #include "TransText.h" DWORD str_off = 0; CHAR CopyStr[0x1000] = { 0 }; CHAR* FileName = nullptr; TransText transtext; wchar_t wout[0x100]; bool isAllAscii(string s) { for (unsigned char ch : s) { if (ch >> 7) // whether the first bit is 1 { return false; } } return true; } //char trans[] = "友達だと思っていたやつが親に言われて態度を変え、面倒くさいと距離を置き、あげくには教師にまで特別扱いされれば誰だってトラ"; void __stdcall ProcessPushStr(UINT str, UINT off) { str_off = off; if (strlen((char*)(str + off)) == 0) return; if (isAllAscii((char*)(str + off))) return; //cout << "0x" << hex << off << "|"<< strlen((char*)(str + off)) << "|" << wtoc(ctow((char*)(str + off), 932), 936) << endl; #if(0) //TODO: Add Func Map str_off = off; cout << "0x" << hex << off << "|" << wtoc(ctow((char*)(str + off), 932), 936) << endl; ///* if (off == 0x980) { lstrcpyA(CopyStr, "- 心1 -"); str_off = (UINT)CopyStr - str; } else if (off == 0x8E4) { lstrcpyA(CopyStr, "中文测试123ABCabc"); str_off = (UINT)CopyStr - str; } else if (off == 0x8F3) { lstrcpyA(CopyStr, "中文测试"); str_off = (UINT)CopyStr - str; } else if (off == 0x16C) { lstrcpyA(CopyStr, "库洛的时钟"); str_off = (UINT)CopyStr - str; } // */ #endif #if(0) if (off == 0x980) { lstrcpyA(CopyStr, "- 心1 -"); str_off = (UINT)CopyStr - str; } else if (off == 0x8E4) { lstrcpyA(CopyStr, "中文测试123ABCabc"); str_off = (UINT)CopyStr - str; } else if (off == 0x8F3) { lstrcpyA(CopyStr, "中文测试"); str_off = (UINT)CopyStr - str; } else if (off == 0x16C) { lstrcpyA(CopyStr, "库洛的时钟"); str_off = (UINT)CopyStr - str; } else { strcpy(CopyStr, trans); str_off = (UINT)CopyStr - str; } #endif #if(1) auto newText = transtext.Query((char*)(str + off), off); if (newText.length() != 0) { if (newText.length() > 0x78) { cout << "OOM: 0x" << hex << off << " | " << wtoc(ctow((char*)(str + off), 932), 936) << endl; } else { lstrcpyA(CopyStr, newText.c_str()); str_off = (UINT)CopyStr - str; //cout << "Replace: 0x" << hex << off << " | " << wtoc(ctow((char*)(str + off), 932), 936) << endl; } } else { cout << "Skip 0x" << hex << str_off << " | " << wtoc(ctow((char*)(str + off), 932), 936) << endl; } #endif return; } PVOID HookAddr_pPorcessPushStr = (PVOID)0x458282; PVOID JmpOut_pPorcessPushStr = (PVOID)0x458289; __declspec(naked)void ASM_ProcessPushStr() { __asm { mov ecx, dword ptr ds : [esi + edx * 4 + 0x3AFC] ; pushad; pushfd; push eax; push ecx; call ProcessPushStr; popfd; popad; mov eax, str_off; jmp JmpOut_pPorcessPushStr } } PVOID HookAddr_pPorcessPushStr2 = (PVOID)0x45E570; PVOID JmpOut_pPorcessPushStr2 = (PVOID)0x45E577; __declspec(naked)void ASM_ProcessPushStr2() { __asm { mov eax, dword ptr ds : [ecx + eax * 4 + 0x3AFC] ; pushad; pushfd; push edx; push eax; call ProcessPushStr; popfd; popad; mov edx, str_off; jmp JmpOut_pPorcessPushStr2 } } PBYTE NTAPI LoadImageRedirect(LPCSTR lpFileName, LPBYTE Buffer) { //TODO: FileIO PBYTE ImageBuffer; SIZE_T Size; ImageBuffer = NULL; Size = 0; static wchar_t fnmbuffer[256]; memset(fnmbuffer, 0, sizeof(wchar_t) * 256); static wchar_t filePath[256]; memset(filePath, 0, sizeof(wchar_t) * 256); if (lpFileName) { size_t nu = strlen(lpFileName); size_t n = (size_t)MultiByteToWideChar(CP_ACP, 0, lpFileName, int(nu), NULL, 0); memset(fnmbuffer, 0, sizeof(wchar_t) * 256); MultiByteToWideChar(CP_ACP, 0, lpFileName, int(nu), fnmbuffer, int(n)); } wcscpy(filePath, L"project\\"); wcscat(filePath, fnmbuffer); wcscat(filePath, L".bmp"); HANDLE pFile = CreateFile(filePath, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); if (pFile == INVALID_HANDLE_VALUE) { cout << "SKIP_IMG:" << lpFileName << endl; return Buffer; } auto fileSize = GetFileSize(pFile, NULL); ImageBuffer = new BYTE[fileSize]; ReadFile(pFile, ImageBuffer, fileSize, &Size, NULL); memcpy(Buffer, ImageBuffer + 0x36, Size - 0x36); CloseHandle(pFile); delete[] ImageBuffer; cout << "REPLACE_IMG:" << lpFileName << endl; return Buffer; } LPVOID DetouredLoadImage_Start = (LPVOID)0x0050BE46; __declspec(naked) VOID DetouredLoadImage() { __asm { mov eax, dword ptr[esp + 0x15C] pushad push ebx push eax call LoadImageRedirect popad ; original code here pop edi pop esi pop ebp mov eax, ebx pop ebx add esp, 0x48 retn 0xC } } void InlinePatch() { DetourTransactionBegin(); DetourAttach(&HookAddr_pPorcessPushStr, ASM_ProcessPushStr); DetourAttach(&HookAddr_pPorcessPushStr2, ASM_ProcessPushStr2); DetourAttach(&DetouredLoadImage_Start, DetouredLoadImage); if (DetourTransactionCommit() != NOERROR) { MessageBox(NULL, L"Patch hook error", L"Patch", MB_OK | MB_ICONERROR); ExitProcess(-1); } } PVOID g_pOldCreateFontA = CreateFontA; typedef HFONT (WINAPI* PfuncCreateFontA)(int nHeight, int nWidth, int nEscapement, int nOrientation, int fnWeight, DWORD fdwltalic, DWORD fdwUnderline, DWORD fdwStrikeOut, DWORD fdwCharSet, DWORD fdwOutputPrecision, DWORD fdwClipPrecision, DWORD fdwQuality, DWORD fdwPitchAndFamily, LPCTSTR lpszFace); HFONT WINAPI HookCreateFontA(int nHeight, int nWidth, int nEscapement, int nOrientation, int fnWeight, DWORD fdwltalic, DWORD fdwUnderline, DWORD fdwStrikeOut, DWORD fdwCharSet, DWORD fdwOutputPrecision, DWORD fdwClipPrecision, DWORD fdwQuality, DWORD fdwPitchAndFamily, LPCTSTR lpszFace) { return CreateFontW(nHeight, nWidth, nEscapement, nOrientation, fnWeight, fdwltalic, fdwUnderline, fdwStrikeOut, GB2312_CHARSET, fdwOutputPrecision, fdwClipPrecision, fdwQuality, fdwPitchAndFamily, L"SimHei"); } PVOID g_pOldSetWindowTextA = SetWindowTextA; typedef bool (WINAPI* PfuncSetWindowTextA)(HWND hWnd, LPCSTR lpString); bool WINAPI HookSetWindowTextA(HWND hw, LPCSTR lpString) { //cout << lpString << endl; for (int i = 0; i < lstrlenA(lpString);) { UINT c1 = lpString[i] & 0xFF; if (c1 == 0x81 && (UINT)lpString[i + 1] == 0x40) { memcpy((void*)(lpString + i), "\xA1\xA1", 2); i += 2; } else i++; } return ((PfuncSetWindowTextA)g_pOldSetWindowTextA)(hw, lpString); } void Init() { DetourTransactionBegin(); DetourAttach(&g_pOldCreateFontA, HookCreateFontA); DetourAttach(&g_pOldSetWindowTextA, HookSetWindowTextA); DetourTransactionCommit(); } BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: make_console(); InlinePatch(); Init(); transtext.LoadFromFile(); case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; } extern "C" __declspec(dllexport) void dummy(void) { return; }
[ "jszhtian@hotmail.com" ]
jszhtian@hotmail.com
14c1001ee14a348d2de96127e009ee027027471a
d5f97a6069977aced6cd9736bf26afe2709b359f
/C++/Algorithm/Dynamic programming/6_count_all_palindrom_substring.cpp
c4a065bfca6fbaf507ac30921227b0b084d56b62
[]
no_license
aayushrai/Data_Structure_And_Algorithm
3bd159256f2a996e298b66c4f9bcd681d19bf056
99ee16acf2a5546b0dec56f25eeb23c9476861b9
refs/heads/master
2023-07-13T02:54:05.907882
2021-08-23T11:19:25
2021-08-23T11:19:25
203,412,716
0
0
null
null
null
null
UTF-8
C++
false
false
3,017
cpp
// memoization (top down approach) // create all the possible substring // example aba -> a,ab,aba,b,ba,a // for each string each string is palindrom or not, if palindrom then increament the counter // the function which checking string ispalindrom we apply memoization in that // abba -> check for a__a , -> then we check for _bb_ // bb is already checked before for palindrom so we use memoization for that to save time // #include<iostream> // #include<bits/stdc++.h> // using namespace std; // vector<vector<int>> dp; // int isPalindrom(int i,int j,string S,int N){ // if(i>j) // return 1; // if(dp[i][j]!=-1) // return dp[i][j]; // if(S[i]==S[j]) // return dp[i][j] = isPalindrom(i+1,j-1,S,N); // return dp[i][j]=0; // } // int CountAllPalindromSubstring(string S, int N) // { // dp.resize(N,vector<int>(N,-1)); // int count = 0; // for(int i=0;i<N;i++){ // for(int j=i;j<N;j++){ // cout << i << " " << j << endl; // if(isPalindrom(i,j,S,N)){ // count++; // } // } // } // return count; // } // int main(){ // string s = "abaab"; // cout << CountAllPalindromSubstring(s,s.length()); // return 0; // } //-------------------------------------------------------------------------------------------------------------------------------------------------- // tabulation (bottom up approach) // a b c b // a T F F F // b x T F T // c x x T F // b x x x T // // row 0 col 0 say start from a and end at a // row 0 col 1 say start from a and end at b // row 1 col 1 say start from b and end at b // 5 palindrom a,b,c,d,bcb (all the T is table is palindrom) #include<iostream> #include<bits/stdc++.h> using namespace std; vector<vector<bool>> dp; int CountAllPalindromSubstring(string S, int N) { dp.resize(N,vector<bool>(N,false)); int count = 0; for(int col=0;col<N;col++){ for(int start=0,end=col;start<N,end<N;start++,end++){ // length 1 palindrom if(start==end){ dp[start][end] = true; count++; } // length 2 palindrom else if(col == 1){ if(S[start] == S[end]){ dp[start][end] = true; count++; } else{ dp[start][end] = false; } } // length greater then 2 else if(S[start] == S[end]){ dp[start][end] = dp[start+1][end-1]; if(dp[start][end]){ count++; } } else if(S[start] != S[end]){ dp[start][end] = false; } } } return count; } int main(){ string s = "abbaeae"; cout << CountAllPalindromSubstring(s,s.length()); return 0; }
[ "www.aayushrai@gmail.com" ]
www.aayushrai@gmail.com
7ada1ebe8636f9d0a55f827b35795629595e5d2e
2f046ba12c84472c0369f7274a9c45fa0718b48f
/lib-network/src/linux/networktcp.cpp
012b138cfe42aff41df0fed028c11d7a815f7aa9
[ "MIT" ]
permissive
Kamal-Sonani/GD32207C-EVAL-board-DMX512-RDM
3beaf3390f78925d0465ad56f6e400cda842a6f8
354ba04c02aa99c47138232c01b5f12ba74a54ab
refs/heads/main
2023-09-03T14:26:12.402763
2021-11-09T11:06:34
2021-11-09T11:06:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,008
cpp
/* * network.cpp * * Should move to lib-network * */ #include <stdio.h> #include <string.h> #include <sys/socket.h> #include <arpa/inet.h> #include <unistd.h> #include <poll.h> #include <cassert> #include "network.h" #define MAX_PORTS_ALLOWED 2 #define MAX_SEGMENT_LENGTH 1400 static uint16_t s_ports_allowed[MAX_PORTS_ALLOWED]; static struct pollfd pollfds[MAX_PORTS_ALLOWED][2]; static uint8_t s_ReadBuffer[MAX_SEGMENT_LENGTH]; int32_t Network::TcpBegin(uint16_t nLocalPort) { int32_t i; for (i = 0; i < MAX_PORTS_ALLOWED; i++) { if (s_ports_allowed[i] == nLocalPort) { perror("TcpBegin: connection already exists"); return -2; } if (s_ports_allowed[i] == 0) { break; } } if (i == MAX_PORTS_ALLOWED) { perror("TcpBegin: too many connections"); return -1; } s_ports_allowed[i] = nLocalPort; memset(&pollfds[i], 0, sizeof(pollfds)); int serverfd = socket(AF_INET, SOCK_STREAM, 0); if (serverfd == -1) { perror("Could not create socket"); return -1; } int flag = 1; if (-1 == setsockopt(serverfd, SOL_SOCKET, SO_REUSEADDR, &flag, sizeof(flag))) { perror("setsockopt fail"); } struct sockaddr_in server; server.sin_family = AF_INET; server.sin_addr.s_addr = INADDR_ANY; server.sin_port = htons(nLocalPort); if (bind(serverfd, (struct sockaddr*) &server, sizeof(server)) < 0) { perror("bind failed"); return -2; } listen(serverfd, 0); pollfds[i][0].fd = serverfd; pollfds[i][0].events = POLLIN | POLLPRI; printf("Network::TcpBegin -> i=%d\n", i); return i; } int32_t Network::TcpEnd(const int32_t nHandle) { assert(nHandle < MAX_PORTS_ALLOWED); close(pollfds[nHandle][0].fd); close(pollfds[nHandle][1].fd); return -1; } uint16_t Network::TcpRead(const int32_t nHandle, const uint8_t **ppBuffer) { assert(nHandle < MAX_PORTS_ALLOWED); const int poll_result = poll(pollfds[nHandle], 2, 0); if (poll_result <= 0) { return poll_result; } if (pollfds[nHandle][0].revents & POLLIN) { struct sockaddr_in client; int c = sizeof(struct sockaddr_in); const int clientfd = accept(pollfds[nHandle][0].fd, (struct sockaddr*) &client, (socklen_t*) &c); if (clientfd < 0) { perror("accept failed"); return clientfd; } pollfds[nHandle][1].fd = clientfd; pollfds[nHandle][1].events = POLLIN | POLLPRI; } if ((pollfds[nHandle][1].fd > 0) && (pollfds[nHandle][1].revents & POLLIN)) { const int bytes = read(pollfds[nHandle][1].fd, s_ReadBuffer, MAX_SEGMENT_LENGTH); if (bytes <= 0) { perror("read failed"); pollfds[nHandle][1].fd = 0; pollfds[nHandle][1].events = 0; pollfds[nHandle][1].revents = 0; } else { *ppBuffer = reinterpret_cast<uint8_t*>(&s_ReadBuffer); return static_cast<uint16_t>(bytes); } } return 0; } void Network::TcpWrite(const int32_t nHandle, const uint8_t *pBuffer, uint16_t nLength) { assert(nHandle < MAX_PORTS_ALLOWED); const int c = write(pollfds[nHandle][1].fd, pBuffer, nLength); if (c < 0) { perror("write"); } }
[ "arjan.van.vught@gmail.com" ]
arjan.van.vught@gmail.com
a5f6a470878fa209cf4f6f09678f12dc4b6aa7ef
753cf6d6998732a371fafc0223e5717fa9f35a21
/src/model/include/room.h
3fe0b8948de17ca742d1ce1e9d2f06c2f5afb9e3
[]
no_license
eeng321/Adventure2016
ae2470450c8637072d3f8530d67bfdf8a35e5107
3a2257163e4934a960757bfb5541385f9bead3c8
refs/heads/master
2020-04-29T00:50:20.926124
2019-03-17T08:47:26
2019-03-17T08:47:26
175,710,013
0
0
null
null
null
null
UTF-8
C++
false
false
2,860
h
//room.h #ifndef ROOM_H #define ROOM_H #include <string> #include <vector> #include <memory> #include "door.h" #include "id.h" #include "extendedDescription.h" class RoomModel; class Room { private: std::string area; roomId id; std::string name; std::vector<std::string> mainDescription; std::vector<extendedDescription> extendedDescriptions; std::vector<Door> doors; std::vector<npcId> npcList; std::vector<std::string> playerList; std::vector<itemId> itemList; bool navigable; public: Room(); Room(const std::string& areaIn, const roomId& idIn, const std::string& nameIn, const std::vector<std::string>& descriptionIn, const std::vector<extendedDescription>& extendedDescriptionsIn, const std::vector<Door>& doorsIn, const std::vector<npcId>& npcListIn, const std::vector<std::string>& playerListIn, const std::vector<itemId>& itemListIn, bool navigabilityIn); Room(const std::string& areaIn, const roomId& idIn, const std::string& nameIn, const std::vector<std::string>& descriptionIn, const std::vector<extendedDescription>& extendedDescriptionsIn, const std::vector<Door>& doorsIn); void build(const std::string& areaIn, const roomId& idIn, const std::string& nameIn, const std::vector<std::string>& descriptionIn, const std::vector<extendedDescription>& extendedDescriptionIn, const std::vector<Door>& doorsIn, const std::vector<npcId>& npcListIn, const std::vector<std::string>& playerListIn, const std::vector<itemId>& itemListIn, bool navigabilityIn); void build(const std::string& areaIn, const roomId& idIn, const std::string& nameIn, const std::vector<std::string>& descriptionIn, const std::vector<extendedDescription>& extendedDescriptionIn, const std::vector<Door>& doorsIn, bool navigabilityIn); void setModel(const RoomModel& model); RoomModel getModel() const; std::string getArea() const; std::vector<std::string> getDescription() const; roomId getId() const; std::string getName() const; std::vector<extendedDescription> getExtendedDescriptions() const; std::vector<std::string> getExtendedDescriptionByKey(std::string key) const; std::vector<Door> getDoors() const; std::vector<npcId> getNpcList() const; std::vector<std::string> getPlayerList() const; std::vector<itemId> getItemList() const; /* Navigation management */ void makeUnnavigable(); void makeNavigable(); bool isNavigable() const; /* Player Management */ void addPlayer(std::string player); void removePlayer(std::string player); roomId getRoomInDirection(Direction d) const; Door getDoor(Direction d) const; /* NPC management */ void addNpc(npcId npc); void removeNpc(npcId npc); /* Object management */ void addItem(itemId item); void removeItem(itemId item); };//Room class #endif
[ "bha33@sfu.ca" ]
bha33@sfu.ca
d4f198d4e28f907e476b92e736382c50b73a813b
6d4453247bc38b8bd3b8f73c4e3cd2a6d6f2d790
/ceng242 - Programming Languages/242-3/pokemon.h
09eaab2dc4b5dea507ab5946de7fdcc1b6e8143e
[]
no_license
ArthurDayne24/metu-ceng-hws
eff99539b150f7485478dfe2cab712f6f7630a2c
8b3f22237305610230786803cc1277a836aef2b5
refs/heads/master
2020-12-09T21:20:01.845857
2019-05-05T17:45:12
2019-05-05T17:45:12
233,419,683
2
0
null
2020-01-12T16:08:42
2020-01-12T16:08:41
null
UTF-8
C++
false
false
701
h
#ifndef POKEMON_H #define POKEMON_H #include <string> using namespace std; class Pokemon { private: string name; string type; int numberOfExperiences; int evolutionBound; friend bool decide(const Pokemon & pk1, const Pokemon & pk2); public: mutable int t_ref_cnt; //stores how many trainers have this pokemon Pokemon(const string &, const string &, int); Pokemon(const Pokemon &); ~Pokemon(); const string & getName() const; bool operator>>(const Pokemon &); friend Pokemon operator&(Pokemon &, Pokemon &); Pokemon& operator=(const Pokemon &); }; #endif
[ "onur.tirtir@ceng.metu.edu.tr" ]
onur.tirtir@ceng.metu.edu.tr
4de45d5bdc8ad90f309a2ce5312aa2edf19755f3
d7e7dfa5fcd6365350d2457453ffec6bdaa9e795
/src/mqttthread.hpp
b9b47a4f32782e4a2463265b561a4e0e24cd2aab
[]
no_license
hairymnstr/mqttalk
31a43804d39a3554e40a7b329b84758641edfbcf
fde27514e82344b167bc6d351f21760556ec483d
refs/heads/master
2021-01-18T20:30:18.470607
2019-10-20T15:35:48
2019-10-20T15:35:48
30,833,616
0
2
null
null
null
null
UTF-8
C++
false
false
617
hpp
#include <QObject> #include <QString> #ifndef MQTTTHREAD_H_ #define MQTTTHREAD_H_ class MQTTThread : public QObject { Q_OBJECT public: virtual ~MQTTThread(); void onConnect(struct mosquitto *mosq, int result); void onMessage(struct mosquitto *mosq, const struct mosquitto_message *message); void onSubscribe(struct mosquitto *mosq, int mid, int qos_count, const int *granted_qos); public slots: void startUp(QString hostname, int port, QString username); void stop(); signals: void messageReceived(struct mosquitto_message *message); private: bool stopThread; }; #endif /* ifndef MQTTTHREAD_H_ */
[ "nathan@nathandumont.com" ]
nathan@nathandumont.com
08ac3a9914f79d201e47266fbc36e89ec966b69a
6146923541cd6c16b7d565957251668147767cfd
/system/setFieldsDict
8777b3cd94478e0425c7e21b42999aafdb8013e7
[]
no_license
OmarMahfoze17/CCP-WSI
46f1006e8007ffca1f5a5f5c26cd3a10f5f1ce77
0a3c14c3a90d71a402d84e593ca5a893be644a9c
refs/heads/master
2023-08-03T06:02:46.878919
2021-09-17T16:29:05
2021-09-17T16:29:05
403,786,826
0
0
null
null
null
null
UTF-8
C++
false
false
922
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 8 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; location "system"; object setFieldsDict; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // defaultFieldValues ( volScalarFieldValue alpha.water 0 ); regions ( boxToCell { box (-.1 0 -1) (.1 .008 1); fieldValues ( volScalarFieldValue alpha.water 1 ); } ); // ************************************************************************* //
[ "omar-ahmed.mahfoze@stfc.ac.uk" ]
omar-ahmed.mahfoze@stfc.ac.uk
739e64683f118c3c5d625fdfbe2fb6a62b66ea93
93deb00f6967a21639a97d788932fa8b9386802d
/ThayXuan/[VuAnhHuy][FM].cpp
9d70941ca48ae31e2ae23763daea33834d90ecba
[]
no_license
yakuza-h/cpp
54f07d4e3a44ec1eb3ac34f778bc224d1f12c2ab
48e09ac64b1ea8ed3051fa8e7b776d8ba8505b90
refs/heads/master
2022-03-29T14:27:11.608876
2020-02-03T05:48:56
2020-02-03T05:48:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
414
cpp
#include <bits/stdc++.h> using namespace std; long long n,m,a[1000001],ans; int main () { freopen ("FM.INP","r",stdin); freopen ("FM.OUT","w",stdout); cin >> n >> m; for (int i = 1; i <= n; i ++) cin >> a[i]; ans = 0; sort(a+1,a+1+n); for (int i = 1; i <= n; i ++) { long long j = upper_bound(a+1,a+1+n,m-a[i])-a; j --; ans += j; if (j >= i) ans --; } ans /= 2; cout << ans; }
[ "vuanhhuyhl@gmail.com" ]
vuanhhuyhl@gmail.com
a477968d480527c30e8d3bba77cdf534e1b6110e
9e491b20094318b48571c0750dee875b09c69c86
/Задание_4/Задание_4.cpp
643ffad975685c7a92a81ea46d47376125fe8d66
[]
no_license
Maxytrewq312/Lab_Rab5
72fd066ab5c4ea26df3e88065e70e6be4e74663e
51fb0a362dc0a9cbc9abb6414225e75cf65ef4f6
refs/heads/master
2023-01-03T22:36:34.937239
2020-10-27T14:00:17
2020-10-27T14:00:17
307,718,249
0
0
null
null
null
null
UTF-8
C++
false
false
465
cpp
// Задание_4.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы. // #include <iostream> using namespace std; int main() { setlocale(0, ""); double const PI = 3.141592653589793; double R; cout << "Введите радиус: "; cin >> R; double S = PI * (R * R); cout << "Площадь круга равна: " << S; return 0; }
[ "Максим@DESKTOP-TSPOI6V" ]
Максим@DESKTOP-TSPOI6V
6fc8ea5e1481c1a1b38b4ac7dfbcb36235dffcbb
794c6ad094d50dab94c0878702b5212ad0eee849
/public_library/src/old/runtime_error.cpp
9798f12a2901a32ddd2bc79466d9fa35cf1a8395
[]
no_license
boris-r-v/mpkpen-2.0
fdf9ce2a0ca96de66334a1b4e0645beb48b5f669
27bf9273f3916c607436df41fa156049e4b0c786
refs/heads/master
2021-06-03T23:54:06.728757
2021-05-17T12:30:51
2021-05-17T12:30:51
123,535,481
0
0
null
null
null
null
UTF-8
C++
false
false
145
cpp
#include <runtime_error.h> namespace mp = MpkPen::Public; mp::RuntimeError::RuntimeError( std::string const& _s): std::runtime_error( _s ) { }
[ "borisrozhkin@gmail.com" ]
borisrozhkin@gmail.com
1083bc37ffcf6b77457c1b6125bf0d8d19292f11
c8bb140f3bce3ca44eb31d8a7ba99a5151e2a51e
/Mattrix/src/CalculationUtil/src/Expression.cpp
ade2103cd671ec641c22961c6a576cb9d09c40de
[]
no_license
MHokinson38/Mattrix
6f8114cf7bfc98b0949640e0d9748f9960b27aec
5f6a5371acd99063b110bd20fcc6e26d3fa98b81
refs/heads/master
2020-12-21T18:11:11.823123
2020-01-27T15:39:55
2020-01-27T15:39:55
236,517,788
1
0
null
null
null
null
UTF-8
C++
false
false
6,641
cpp
// // Expression.cpp // Mattrix // // Created by Matthew Hokinson on 11/30/19. // //Libraries #include <stdio.h> #include <iostream> #include <vector> #include <string> #include <exception> //My Files #include <CalculationUtil/interface/Operations/Operation.h> #include <CalculationUtil/interface/Operations/OperationType.h> #include <CalculationUtil/interface/Operations/ArithmeticOperation.h> #include <CalculationUtil/interface/Operations/FunctionalOperation.h> #include <CalculationUtil/interface/Expression.h> #include <MatrixUtil/interface/Matrix.h> #include <MatrixUtil/interface/Exceptions/InvalidSyntaxException.h> #include <RandomUtils/interface/CoolUtilities.h> //================== // Constructors //================== CalculationUtil::Expression::Expression(const std::string & input) { setInputLine(input); } //================== // Setup //================== void CalculationUtil::Expression::setInputLine(const std::string &input) { reset(); inputLine = input; RandomUtils::removeWhiteSpace(inputLine); RandomUtils::removeExcessParentheses(inputLine); //Takes off parentheses in from and back in needed getBaseOperation(); parseInputLine(); } void CalculationUtil::Expression::reset() { internalExpressions.clear(); operations.clear(); } //================== // Evaluation //================== MatrixUtil::Matrix CalculationUtil::Expression::evaluate() { if(isBase) { return baseMatrix; //This is the "base case for recursion" } else if(baseOperation.isFunctional()) { //If the base operation is functional, there should only be two internal expressions // The base, and the exponent if(internalExpressions.size() > 2) { throw MatrixUtil::InvalidSyntaxException("Invalid Syntax"); } MatrixUtil::Matrix base = internalExpressions[0].evaluate(); Operation* opToPerform = baseOperation.isTranspose() ? new FunctionalOperation(baseOperation, base) : new FunctionalOperation(baseOperation, base, internalExpressions[1].evaluate().getScalarValue()); return opToPerform->perform(); } else { MatrixUtil::Matrix currentResult = internalExpressions[0].evaluate(); for(int i = 0; i < internalExpressions.size() - 1; ++i) { Operation* opToPerform = new ArithmeticOperation(operations[i], currentResult, internalExpressions[i+1].evaluate()); currentResult = opToPerform->perform(); } return currentResult; } } //================== // Parsing //================== void CalculationUtil::Expression::getBaseOperation() { int numOpenParentheses = 0; bool hasParenthese = false; OperationType lowestOp(OperationType::OpType::empty); for(int i = 0; i < inputLine.size(); ++i) { if(inputLine[i] == INVERSE_CHARACTER && i == 0) { continue; //This is a minus sign, not subtraction (i.e. -5) } if(inputLine[i] == OPENING_PARENTHESE) { hasParenthese = true; numOpenParentheses++; } else if(inputLine[i] == CLOSING_PARENTHESE) { numOpenParentheses--; } else if(OperationType::isOperationCharacter(inputLine[i]) && numOpenParentheses == 0) { if(OperationType::getPemdasFromChar(inputLine[i]) < lowestOp.getHierarchyLevel()) { if(OperationType(inputLine[i]).getOperation() == OperationType::OpType::subtract && OperationType(inputLine[i-1]).getOperation() == OperationType::OpType::exponent) { continue; } else if(OperationType(inputLine[i]).getOperation() == OperationType::OpType::transpose && i == 0) { continue; } lowestOp = OperationType(inputLine[i]); } // Going to use try to avoid putting in extra bounds check and will catch out of bounds if(lowestOp.isExponent()) { try { if(inputLine[i+1] == TRANSPOSE_CHARACTER) { lowestOp = OperationType(OperationType::OpType::transpose); } } catch(const std::out_of_range & excp) { continue; //Do nothing, just thought this would be cooler than manual bounds check } } } } //Do Parentheses Syntax Check if(numOpenParentheses != 0) { throw MatrixUtil::InvalidSyntaxException("Invalid Parentheses!"); } isBase = lowestOp.isNull() && !hasParenthese; baseOperation = lowestOp; } void CalculationUtil::Expression::parseInputLine() { std::string newPartialExp = ""; if(isBase) { baseMatrix = MatrixUtil::Matrix(inputLine); } else { std::string currentInternalExp = ""; int numOpenParentheses = 0; for(int i = 0; i < inputLine.size(); ++i) { if(inputLine[i] == OPENING_PARENTHESE) { numOpenParentheses++; } else if(inputLine[i] == CLOSING_PARENTHESE) { numOpenParentheses--; } else if(OperationType::isOperationCharacter(inputLine[i]) && OperationType(inputLine[i]).getHierarchyLevel() == baseOperation.getHierarchyLevel() && numOpenParentheses == 0) { internalExpressions.push_back(Expression(currentInternalExp)); operations.push_back(OperationType(inputLine[i])); currentInternalExp = ""; if(baseOperation.isTranspose()) {break;} //We are going to ignore the T continue; } currentInternalExp += inputLine[i]; if(i == (inputLine.size() - 1)) { internalExpressions.push_back(Expression(currentInternalExp)); } } } } //================== // Stream overloads //================== std::istream& CalculationUtil::operator>>(std::istream& is, Expression & exp) { std::string inputLine = ""; char currentChar; while(is.get(currentChar)) {inputLine += currentChar;} exp = Expression(inputLine); return is; }
[ "matthew@hokinson.com" ]
matthew@hokinson.com
63b9704678560e92832b277f5c248fd82cd2deeb
8d8467edb812bf829602db4dcc39ff4085268ef5
/include/motion_primitive_library/primitive/poly_solver.h
dcc8ccd0d90c6e2a51559b2391775201c6c47782
[ "Apache-2.0" ]
permissive
SiChiTong/motion_primitive_library
e3648f49507001770954714d390bad07f52e7b7c
12a5a59132b714956018d271747010e88476b583
refs/heads/master
2021-05-02T15:14:31.565963
2018-02-07T23:50:31
2018-02-07T23:50:31
120,692,418
3
1
null
2018-02-08T01:07:30
2018-02-08T01:07:30
null
UTF-8
C++
false
false
1,349
h
/** * @file poly_solver.h * @brief Trajectory generator back-end */ #ifndef POLY_SOLVER_H #define POLY_SOLVER_H #include <stdio.h> #include <iostream> #include <memory> #include <Eigen/Core> #include <Eigen/StdVector> #include <Eigen/LU> #include <motion_primitive_library/primitive/poly_traj.h> /** * @brief Trajectory generator back-end class * * Given intermediate waypoints and associated time allocation, generate the n-th order polynomials */ class PolySolver { public: /** * @brief Simple constructor * @param smooth_derivative_order The max derivative we want continuous * @param minimize_derivative The derivative to minimize */ PolySolver(unsigned int smooth_derivative_order, unsigned int minimize_derivative); /** * @brief Solve the trajector as defined in constructor * @param waypoints Intermediate waypoints that the trajectory pass through * @param dts Time allocation for each segment * * Note that the element in dts is the time for that segment */ bool solve(const std::vector<Waypoint>& waypoints, const std::vector<decimal_t> &dts); ///Get the solved trajectory std::shared_ptr<PolyTraj> getTrajectory(); private: unsigned int N_; unsigned int R_; bool debug_; std::shared_ptr<PolyTraj> ptraj_; }; #endif
[ "lskwdlskwd@gmail.com" ]
lskwdlskwd@gmail.com
c13d0fdd0fc12ddd2667bf113ab6515fbe7fa5ce
0f457762985248f4f6f06e29429955b3fd2c969a
/irrlicht/sdk/irr_bullet/BulletFpsCamAnimator.cpp
cb032f3e69ff87eca1975d828ecc7cfaf75b60b1
[]
no_license
tk8812/ukgtut
f19e14449c7e75a0aca89d194caedb9a6769bb2e
3146ac405794777e779c2bbb0b735b0acd9a3f1e
refs/heads/master
2021-01-01T16:55:07.417628
2010-11-15T16:02:53
2010-11-15T16:02:53
37,515,002
0
0
null
null
null
null
UHC
C++
false
false
13,440
cpp
//저작권: //물리 fps 애니메이터 //수정 2008.8.12 //미구현 사항 : 점푸구현 // //수정 2009.8.6 #pragma warning (disable:4819) #include "CBulletAnimatorManager.h" #include "BulletFpsCamAnimator.h" #include "IVideoDriver.h" #include "ISceneManager.h" #include "Keycodes.h" #include "ICursorControl.h" #include "ICameraSceneNode.h" #include "btBulletDynamicsCommon.h" #include "BulletCollision/Gimpact/btGImpactShape.h" #include "BulletCollision/Gimpact/btGImpactCollisionAlgorithm.h" namespace irr { namespace scene { //! constructor CBulletFpsCamAnimator::CBulletFpsCamAnimator(gui::ICursorControl* cursorControl, f32 rotateSpeed, f32 moveSpeed, f32 jumpSpeed, SKeyMap* keyMapArray, u32 keyMapSize, bool noVerticalMovement) : CursorControl(cursorControl), MaxVerticalAngle(88.0f), MoveSpeed(moveSpeed/1000.0f), RotateSpeed(rotateSpeed), JumpSpeed(jumpSpeed), LastAnimationTime(0), firstUpdate(true), NoVerticalMovement(noVerticalMovement) { #ifdef _DEBUG setDebugName("CCameraSceneNodeAnimatorFPS"); #endif if (CursorControl) CursorControl->grab(); allKeysUp(); // create key map if (!keyMapArray || !keyMapSize) { // create default key map KeyMap.push_back(SCamKeyMap(0, irr::KEY_UP)); KeyMap.push_back(SCamKeyMap(1, irr::KEY_DOWN)); KeyMap.push_back(SCamKeyMap(2, irr::KEY_LEFT)); KeyMap.push_back(SCamKeyMap(3, irr::KEY_RIGHT)); KeyMap.push_back(SCamKeyMap(4, irr::KEY_KEY_J)); } else { // create custom key map setKeyMap(keyMapArray, keyMapSize); } m_LocalPos = irr::core::vector3df(0,0,0); } //! destructor CBulletFpsCamAnimator::~CBulletFpsCamAnimator() { if (CursorControl) CursorControl->drop(); } //! It is possible to send mouse and key events to the camera. Most cameras //! may ignore this input, but camera scene nodes which are created for //! example with scene::ISceneManager::addMayaCameraSceneNode or //! scene::ISceneManager::addFPSCameraSceneNode, may want to get this input //! for changing their position, look at target or whatever. //! 아래의이벤트핸들러가 호출되는 이유는 현재활성화된 카메라노드에 자식으로 붙어있는 애니매이터는 //! 무조건 이밴트핸들러가 호출이된다. bool CBulletFpsCamAnimator::OnEvent(const SEvent& evt) { switch(evt.EventType) { case EET_KEY_INPUT_EVENT: for (u32 i=0; i<KeyMap.size(); ++i) { if (KeyMap[i].keycode == evt.KeyInput.Key) { CursorKeys[KeyMap[i].action] = evt.KeyInput.PressedDown; return true; } } break; case EET_MOUSE_INPUT_EVENT: if (evt.MouseInput.Event == EMIE_MOUSE_MOVED) { CursorPos = CursorControl->getRelativePosition(); return true; } break; default: break; } return false; } //------------------------------------------------------------------------------ //! CreateInstance //! Creates CBulletChracterAnimator or returns NULL //! CBulletObjectAnimator와 달리 각회전을 제한(서있는상태를 유지하기위해서는 쓰러짐을 제어하기위해서...) CBulletFpsCamAnimator* CBulletFpsCamAnimator::createInstance( ISceneManager* pSceneManager, ISceneNode* pSceneNode, gui::ICursorControl *CursorControl, CBulletAnimatorManager* pBulletMgr, CBulletObjectAnimatorGeometry* pGeom, CBulletObjectAnimatorParams* pPhysicsParam) { //CursorControl = CursorControl; // get node scaling core::vector3df scaling = pSceneNode->getScale(); btStridingMeshInterface* triangleMesh = NULL; // prepare collision shape btCollisionShape* collisionShape = CreateBulletCollisionShape(pSceneManager, pGeom, scaling, triangleMesh); if (collisionShape == NULL) return NULL; CBulletFpsCamAnimator* bulletAnimator = new CBulletFpsCamAnimator(CursorControl,100.f,50.f); bulletAnimator->geometry = *pGeom; bulletAnimator->physicsParams = *pPhysicsParam; bulletAnimator->bulletMesh = triangleMesh; bulletAnimator->collisionShape = collisionShape; bulletAnimator->sceneNode = pSceneNode; bulletAnimator->sceneManager = pSceneManager; bulletAnimator->bulletMgr = pBulletMgr; bulletAnimator->CursorControl = CursorControl; bulletAnimator->InitPhysics(); //추가 물리 속성 //쓰러짐 제어를 위해 각회전 제한 bulletAnimator->getRigidBody()->setAngularFactor(0.0f); bulletAnimator->getRigidBody()->setSleepingThresholds (0.0, 0.0); return bulletAnimator; } void CBulletFpsCamAnimator::animateNode(ISceneNode* node, u32 timeMs) { if (node->getType() != ESNT_CAMERA) return; ICameraSceneNode* camera = static_cast<ICameraSceneNode*>(node); if (firstUpdate) { if (CursorControl && camera) { CursorControl->setPosition(0.5f, 0.5f); CursorPos = CenterCursor = CursorControl->getRelativePosition(); } LastAnimationTime = timeMs; firstUpdate = false; } // get time f32 timeDiff = (f32) ( timeMs - LastAnimationTime ); LastAnimationTime = timeMs; // update position core::vector3df pos = camera->getPosition(); // Update rotation core::vector3df target = (camera->getTarget() - camera->getAbsolutePosition()); core::vector3df relativeRotation = target.getHorizontalAngle(); if (CursorControl) { if (CursorPos != CenterCursor) { relativeRotation.Y -= (0.5f - CursorPos.X) * RotateSpeed; relativeRotation.X -= (0.5f - CursorPos.Y) * RotateSpeed; // X < MaxVerticalAngle or X > 360-MaxVerticalAngle if (relativeRotation.X > MaxVerticalAngle*2 && relativeRotation.X < 360.0f-MaxVerticalAngle) { relativeRotation.X = 360.0f-MaxVerticalAngle; } else if (relativeRotation.X > MaxVerticalAngle && relativeRotation.X < 360.0f-MaxVerticalAngle) { relativeRotation.X = MaxVerticalAngle; } // reset cursor position CursorControl->setPosition(0.5f, 0.5f); CenterCursor = CursorControl->getRelativePosition(); //ggf::irr_util::DebugOutputFmt(NULL,"test %f \n",relativeRotation.Y); } } // set target target.set(0,0,100); core::vector3df movedir = target; core::matrix4 mat; mat.setRotationDegrees(core::vector3df(relativeRotation.X, relativeRotation.Y, 0)); mat.transformVect(target); if (NoVerticalMovement) { mat.setRotationDegrees(core::vector3df(0, relativeRotation.Y, 0)); mat.transformVect(movedir); } else { movedir = target; } movedir.normalize(); //if (CursorKeys[0]) //pos += movedir * timeDiff * MoveSpeed; //if (CursorKeys[1]) //pos -= movedir * timeDiff * MoveSpeed; // strafing //core::vector3df strafevect = target; //strafevect = strafevect.crossProduct(camera->getUpVector()); //if (NoVerticalMovement) // strafevect.Y = 0.0f; //strafevect.normalize(); if (CursorKeys[2]) { //pos += strafevect * timeDiff * MoveSpeed; //ggf::irr_util::DebugOutputFmt(NULL,"test %f \n",relativeRotation.Y); } if (CursorKeys[3]) //pos -= strafevect * timeDiff * MoveSpeed; // jumping ( need's a gravity , else it's a fly to the World-UpVector ) if (CursorKeys[4]) { //pos += camera->getUpVector() * timeDiff * JumpSpeed; } // write translation //camera->setPosition(pos); /////////////////////////gbox///////////////////////// //gbox patch 08.07.27 rotation bug fix camera->setRotation(mat.getRotationDegrees()); /////////////////////////gbox///////////////////////// // write right target TargetVector = target; //target += pos; //camera->setTarget(target); irr::f32 Speed = 0;// = timeDiff * MoveSpeed; irr::f32 Strife_Speed = 0; irr::f32 Angle = relativeRotation.Y; if (CursorKeys[0]) { //Speed = timeDiff * MoveSpeed; Speed = MoveSpeed; } if (CursorKeys[1]) { //Speed = -(timeDiff * MoveSpeed); Speed = -MoveSpeed; } if (CursorKeys[2]) { Strife_Speed = MoveSpeed; //Strife_Speed = (timeDiff * MoveSpeed); } if (CursorKeys[3]) { Strife_Speed = -MoveSpeed; //Strife_Speed = -(timeDiff * MoveSpeed); } //전처리 스탭(충돌 처리) { btTransform xform; rigidBody->getMotionState()->getWorldTransform (xform); btVector3 down = -xform.getBasis()[1]; //Y축 정보 btVector3 forward = xform.getBasis()[2]; //Z축 정보 down.normalize (); forward.normalize(); forward.setX(-forward.getX()); //오른손좌표계롤 왼손좌표계로... m_raySource[0] = xform.getOrigin(); m_raySource[1] = xform.getOrigin(); m_rayTarget[0] = m_raySource[0] + down * ((geometry.Capsule.hight * 0.5f) + geometry.Capsule.radius ) * btScalar(1.1); m_rayTarget[1] = m_raySource[1] + forward * (geometry.Capsule.radius ) * btScalar(1.1); class ClosestNotMe : public btCollisionWorld::ClosestRayResultCallback { public: ClosestNotMe (btRigidBody* me) : btCollisionWorld::ClosestRayResultCallback(btVector3(0.0, 0.0, 0.0), btVector3(0.0, 0.0, 0.0)) { m_me = me; } virtual btScalar AddSingleResult(btCollisionWorld::LocalRayResult& rayResult,bool normalInWorldSpace) { if (rayResult.m_collisionObject == m_me) return 1.0; return ClosestRayResultCallback::addSingleResult (rayResult, normalInWorldSpace ); } protected: btRigidBody* m_me; }; ClosestNotMe rayCallback(rigidBody); { btDynamicsWorld* dynamicsWorld = bulletMgr->getBulletWorldByID(bulletWorldID)->getWorld(); int i = 0; for (i = 0; i < 2; i++) { rayCallback.m_closestHitFraction = 1.0; dynamicsWorld->rayTest (m_raySource[i], m_rayTarget[i], rayCallback); if (rayCallback.hasHit()) { m_rayLambda[i] = rayCallback.m_closestHitFraction; //충돌비율값 } else { m_rayLambda[i] = 1.0; //충돌하지않음 } } } } //후처리 { btTransform xform; rigidBody->getMotionState()->getWorldTransform (xform); xform.setRotation (btQuaternion (btVector3(0.0, 1.0, 0.0), Angle * irr::core::DEGTORAD)); btVector3 linearVelocity = rigidBody->getLinearVelocity(); if(m_rayLambda[0] < 1.0) { linearVelocity.setY(0); } btVector3 forwardDir = xform.getBasis()[2]; btVector3 SideDir = xform.getBasis()[0]; //축변환 및 정규화 forwardDir.normalize (); forwardDir.setX(-forwardDir.getX()); SideDir.normalize(); SideDir.setX(-SideDir.getX()); btVector3 velocity = (forwardDir * Speed); velocity += (SideDir * Strife_Speed); irr::core::vector3df fowardvec = irr::core::vector3df(forwardDir.getX(),forwardDir.getY(),forwardDir.getZ()); irr::core::vector3df sidevec = irr::core::vector3df(-SideDir.getX(),SideDir.getY(),SideDir.getZ()); //ggf::irr_util::DebugOutputFmt(NULL,"%f %f, %f, %f\n",Angle,velocity.getX(),velocity.getY(),velocity.getZ()); //ggf::irr_util::DebugOutputFmt(NULL,"%f/%f %f, %f, %f\n",fowardvec.getHorizontalAngle().Y, sidevec.getHorizontalAngle().Y,SideDir.getX(),SideDir.getY(),SideDir.getZ()); velocity.setY(linearVelocity.getY()); rigidBody->setLinearVelocity (velocity); rigidBody->getMotionState()->setWorldTransform (xform); rigidBody->setCenterOfMassTransform (xform); //camera->setTarget(target); } //물리엔진 변환적용 if (physicsParams.mass != 0.0f && rigidBody && rigidBody->getMotionState()) { btTransform xform; rigidBody->getMotionState()->getWorldTransform (xform); btVector3 forwardDir = xform.getBasis()[2]; forwardDir.normalize (); // set pos btVector3 p = rigidBody->getCenterOfMassPosition(); irr::core::vector3df vforward = irr::core::vector3df(-forwardDir.getX(),forwardDir.getY(),forwardDir.getZ()); irr::core::vector3df eye_pos = core::vector3df(p.getX(), p.getY(), p.getZ()) + m_LocalPos; sceneNode->setPosition(eye_pos); camera->setTarget(eye_pos + TargetVector); } } void CBulletFpsCamAnimator::allKeysUp() { for (u32 i=0; i<6; ++i) CursorKeys[i] = false; } //! Sets the rotation speed void CBulletFpsCamAnimator::setRotateSpeed(f32 speed) { RotateSpeed = speed; } //! Sets the movement speed void CBulletFpsCamAnimator::setMoveSpeed(f32 speed) { MoveSpeed = speed; } //! Gets the rotation speed f32 CBulletFpsCamAnimator::getRotateSpeed() const { return RotateSpeed; } // Gets the movement speed f32 CBulletFpsCamAnimator::getMoveSpeed() const { return MoveSpeed; } //! Sets the keyboard mapping for this animator void CBulletFpsCamAnimator::setKeyMap(SKeyMap *map, u32 count) { // clear the keymap KeyMap.clear(); // add actions for (u32 i=0; i<count; ++i) { switch(map[i].Action) { case EKA_MOVE_FORWARD: KeyMap.push_back(SCamKeyMap(0, map[i].KeyCode)); break; case EKA_MOVE_BACKWARD: KeyMap.push_back(SCamKeyMap(1, map[i].KeyCode)); break; case EKA_STRAFE_LEFT: KeyMap.push_back(SCamKeyMap(2, map[i].KeyCode)); break; case EKA_STRAFE_RIGHT: KeyMap.push_back(SCamKeyMap(3, map[i].KeyCode)); break; case EKA_JUMP_UP: KeyMap.push_back(SCamKeyMap(4, map[i].KeyCode)); break; default: break; } } } //! Sets whether vertical movement should be allowed. void CBulletFpsCamAnimator::setVerticalMovement(bool allow) { NoVerticalMovement = !allow; } } // namespace scene } // namespace irr
[ "gbox3d@58f0f68e-7603-11de-abb5-1d1887d8974b" ]
gbox3d@58f0f68e-7603-11de-abb5-1d1887d8974b
3128d4a5ce3fc6ea77f2ef0b56c9f0abdba07c24
ba4c8a718594f43fb2c5a2ec11c066274ec70445
/openCV/sources/modules/highgui/src/cap_gstreamer.cpp
769de7fd5f50e87b5154fd2f4fcea221f71fbc69
[ "BSD-3-Clause" ]
permissive
jayparekhjp/openCV-Facial-Recognition
d7d83e1cd93a878d91e129dd5f754a50fde973a2
c351d55863bbc40c3225f55152dcd044f778119f
refs/heads/master
2020-04-02T03:18:43.346991
2018-10-20T23:45:42
2018-10-20T23:45:42
153,957,654
0
1
null
null
null
null
UTF-8
C++
false
false
54,644
cpp
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, install, // copy or use the software. // // // Intel License Agreement // For Open Source Computer Vision Library // // Copyright (C) 2008, 2011, Nils Hasler, all rights reserved. // Third party copyrights are property of their respective owners. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // // * Redistribution's of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // * Redistribution's 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. // // * The name of Intel Corporation may not be used to endorse or promote products // derived from this software without specific prior written permission. // // This software is provided by the copyright holders and contributors "as is" and // any express or implied warranties, including, but not limited to, the implied // warranties of merchantability and fitness for a particular purpose are disclaimed. // In no event shall the Intel Corporation or contributors be liable for any direct, // indirect, incidental, special, exemplary, or consequential damages // (including, but not limited to, procurement of substitute goods or services; // loss of use, data, or profits; or business interruption) however caused // and on any theory of liability, whether in contract, strict liability, // or tort (including negligence or otherwise) arising in any way out of // the use of this software, even if advised of the possibility of such damage. // //M*/ /*! * \file cap_gstreamer.cpp * \author Nils Hasler <hasler@mpi-inf.mpg.de> * Max-Planck-Institut Informatik * \author Dirk Van Haerenborgh <vhdirk@gmail.com> * * \brief Use GStreamer to read/write video */ #include "precomp.hpp" #include <unistd.h> #include <string.h> #include <gst/gst.h> #include <gst/gstbuffer.h> #include <gst/video/video.h> #include <gst/app/gstappsink.h> #include <gst/app/gstappsrc.h> #include <gst/riff/riff-media.h> #include <gst/pbutils/missing-plugins.h> #define VERSION_NUM(major, minor, micro) (major * 1000000 + minor * 1000 + micro) #define FULL_GST_VERSION VERSION_NUM(GST_VERSION_MAJOR, GST_VERSION_MINOR, GST_VERSION_MICRO) #if FULL_GST_VERSION >= VERSION_NUM(0,10,32) #include <gst/pbutils/encoding-profile.h> //#include <gst/base/gsttypefindhelper.h> #endif #ifdef NDEBUG #define CV_WARN(message) #else #define CV_WARN(message) fprintf(stderr, "warning: %s (%s:%d)\n", message, __FILE__, __LINE__) #endif #if GST_VERSION_MAJOR == 0 #define COLOR_ELEM "ffmpegcolorspace" #define COLOR_ELEM_NAME "ffmpegcsp" #elif FULL_GST_VERSION < VERSION_NUM(1,5,0) #define COLOR_ELEM "videoconvert" #define COLOR_ELEM_NAME COLOR_ELEM #else #define COLOR_ELEM "autovideoconvert" #define COLOR_ELEM_NAME COLOR_ELEM #endif void toFraction(double decimal, double &numerator, double &denominator); void handleMessage(GstElement * pipeline); static cv::Mutex gst_initializer_mutex; /*! * \brief The gst_initializer class * Initializes gstreamer once in the whole process */ class gst_initializer { public: static void init() { gst_initializer_mutex.lock(); static gst_initializer init; gst_initializer_mutex.unlock(); } private: gst_initializer() { gst_init(NULL, NULL); // gst_debug_set_active(1); // gst_debug_set_colored(1); // gst_debug_set_default_threshold(GST_LEVEL_INFO); } }; /*! * \brief The CvCapture_GStreamer class * Use GStreamer to capture video */ class CvCapture_GStreamer : public CvCapture { public: CvCapture_GStreamer() { init(); } virtual ~CvCapture_GStreamer() { close(); } virtual bool open( int type, const char* filename ); virtual void close(); virtual double getProperty(int); virtual bool setProperty(int, double); virtual bool grabFrame(); virtual IplImage* retrieveFrame(int); protected: void init(); bool reopen(); bool isPipelinePlaying(); void startPipeline(); void stopPipeline(); void restartPipeline(); void setFilter(const char* prop, int type, int v1, int v2 = 0); void removeFilter(const char *filter); static void newPad(GstElement *myelement, GstPad *pad, gpointer data); GstElement* pipeline; GstElement* uridecodebin; GstElement* v4l2src; GstElement* color; GstElement* sink; #if GST_VERSION_MAJOR > 0 GstSample* sample; GstMapInfo* info; #endif GstBuffer* buffer; GstCaps* caps; IplImage* frame; gint64 duration; gint width; gint height; double fps; }; /*! * \brief CvCapture_GStreamer::init * inits the class */ void CvCapture_GStreamer::init() { pipeline = NULL; uridecodebin = NULL; v4l2src = NULL; color = NULL; sink = NULL; #if GST_VERSION_MAJOR > 0 sample = NULL; info = new GstMapInfo; #endif buffer = NULL; caps = NULL; frame = NULL; duration = -1; width = -1; height = -1; fps = -1; } /*! * \brief CvCapture_GStreamer::close * Closes the pipeline and destroys all instances */ void CvCapture_GStreamer::close() { if (isPipelinePlaying()) this->stopPipeline(); if(pipeline) { gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_NULL); gst_object_unref(GST_OBJECT(pipeline)); pipeline = NULL; } duration = -1; width = -1; height = -1; fps = -1; } /*! * \brief CvCapture_GStreamer::grabFrame * \return * Grabs a sample from the pipeline, awaiting consumation by retreiveFrame. * The pipeline is started if it was not running yet */ bool CvCapture_GStreamer::grabFrame() { if(!pipeline) return false; // start the pipeline if it was not in playing state yet if(!this->isPipelinePlaying()) this->startPipeline(); // bail out if EOS if(gst_app_sink_is_eos(GST_APP_SINK(sink))) return false; #if GST_VERSION_MAJOR == 0 if(buffer) gst_buffer_unref(buffer); buffer = gst_app_sink_pull_buffer(GST_APP_SINK(sink)); #else if(sample) gst_sample_unref(sample); sample = gst_app_sink_pull_sample(GST_APP_SINK(sink)); if(!sample) return false; buffer = gst_sample_get_buffer(sample); #endif if(!buffer) return false; return true; } /*! * \brief CvCapture_GStreamer::retrieveFrame * \return IplImage pointer. [Transfer Full] * Retreive the previously grabbed buffer, and wrap it in an IPLImage structure */ IplImage * CvCapture_GStreamer::retrieveFrame(int) { if(!buffer) return 0; //construct a frame header if we did not have any yet if(!frame) { #if GST_VERSION_MAJOR == 0 GstCaps* buffer_caps = gst_buffer_get_caps(buffer); #else GstCaps* buffer_caps = gst_sample_get_caps(sample); #endif // bail out in no caps assert(gst_caps_get_size(buffer_caps) == 1); GstStructure* structure = gst_caps_get_structure(buffer_caps, 0); // bail out if width or height are 0 if(!gst_structure_get_int(structure, "width", &width) || !gst_structure_get_int(structure, "height", &height)) { gst_caps_unref(buffer_caps); return 0; } int depth = 3; #if GST_VERSION_MAJOR > 0 depth = 0; const gchar* name = gst_structure_get_name(structure); const gchar* format = gst_structure_get_string(structure, "format"); if (!name || !format) return 0; // we support 3 types of data: // video/x-raw, format=BGR -> 8bit, 3 channels // video/x-raw, format=GRAY8 -> 8bit, 1 channel // video/x-bayer -> 8bit, 1 channel // bayer data is never decoded, the user is responsible for that // everything is 8 bit, so we just test the caps for bit depth if (strcasecmp(name, "video/x-raw") == 0) { if (strcasecmp(format, "BGR") == 0) { depth = 3; } else if(strcasecmp(format, "GRAY8") == 0){ depth = 1; } } else if (strcasecmp(name, "video/x-bayer") == 0) { depth = 1; } #endif if (depth > 0) { frame = cvCreateImageHeader(cvSize(width, height), IPL_DEPTH_8U, depth); } else { gst_caps_unref(buffer_caps); return 0; } gst_caps_unref(buffer_caps); } // gstreamer expects us to handle the memory at this point // so we can just wrap the raw buffer and be done with it #if GST_VERSION_MAJOR == 0 frame->imageData = (char *)GST_BUFFER_DATA(buffer); #else // the data ptr in GstMapInfo is only valid throughout the mapifo objects life. // TODO: check if reusing the mapinfo object is ok. gboolean success = gst_buffer_map(buffer,info, (GstMapFlags)GST_MAP_READ); if (!success){ //something weird went wrong here. abort. abort. //fprintf(stderr,"GStreamer: unable to map buffer"); return 0; } frame->imageData = (char*)info->data; gst_buffer_unmap(buffer,info); #endif return frame; } /*! * \brief CvCapture_GStreamer::isPipelinePlaying * \return if the pipeline is currently playing. */ bool CvCapture_GStreamer::isPipelinePlaying() { GstState current, pending; GstClockTime timeout = 5*GST_SECOND; if(!GST_IS_ELEMENT(pipeline)){ return false; } GstStateChangeReturn ret = gst_element_get_state(GST_ELEMENT(pipeline),&current, &pending, timeout); if (!ret){ //fprintf(stderr, "GStreamer: unable to query pipeline state\n"); return false; } return current == GST_STATE_PLAYING; } /*! * \brief CvCapture_GStreamer::startPipeline * Start the pipeline by setting it to the playing state */ void CvCapture_GStreamer::startPipeline() { CV_FUNCNAME("icvStartPipeline"); __BEGIN__; //fprintf(stderr, "relinked, pausing\n"); GstStateChangeReturn status = gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_PLAYING); if (status == GST_STATE_CHANGE_ASYNC) { // wait for status update status = gst_element_get_state(pipeline, NULL, NULL, GST_CLOCK_TIME_NONE); } if (status == GST_STATE_CHANGE_FAILURE) { handleMessage(pipeline); gst_object_unref(pipeline); pipeline = NULL; CV_ERROR(CV_StsError, "GStreamer: unable to start pipeline\n"); return; } //printf("state now playing\n"); handleMessage(pipeline); __END__; } /*! * \brief CvCapture_GStreamer::stopPipeline * Stop the pipeline by setting it to NULL */ void CvCapture_GStreamer::stopPipeline() { CV_FUNCNAME("icvStopPipeline"); __BEGIN__; //fprintf(stderr, "restarting pipeline, going to ready\n"); if(gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_NULL) == GST_STATE_CHANGE_FAILURE) { CV_ERROR(CV_StsError, "GStreamer: unable to stop pipeline\n"); gst_object_unref(pipeline); pipeline = NULL; return; } __END__; } /*! * \brief CvCapture_GStreamer::restartPipeline * Restart the pipeline */ void CvCapture_GStreamer::restartPipeline() { handleMessage(pipeline); this->stopPipeline(); this->startPipeline(); } /*! * \brief CvCapture_GStreamer::setFilter * \param prop the property name * \param type glib property type * \param v1 the value * \param v2 second value of property type requires it, else NULL * Filter the output formats by setting appsink caps properties */ void CvCapture_GStreamer::setFilter(const char *prop, int type, int v1, int v2) { //printf("GStreamer: setFilter \n"); if(!caps || !( GST_IS_CAPS (caps) )) { if(type == G_TYPE_INT) { #if GST_VERSION_MAJOR == 0 caps = gst_caps_new_simple("video/x-raw-rgb", prop, type, v1, NULL); #else caps = gst_caps_new_simple("video/x-raw","format",G_TYPE_STRING,"BGR", prop, type, v1, NULL); #endif } else { #if GST_VERSION_MAJOR == 0 caps = gst_caps_new_simple("video/x-raw-rgb", prop, type, v1, v2, NULL); #else caps = gst_caps_new_simple("video/x-raw","format",G_TYPE_STRING,"BGR", prop, type, v1, v2, NULL); #endif } } else { #if GST_VERSION_MAJOR > 0 if (! gst_caps_is_writable(caps)) caps = gst_caps_make_writable (caps); #endif if(type == G_TYPE_INT){ gst_caps_set_simple(caps, prop, type, v1, NULL); }else{ gst_caps_set_simple(caps, prop, type, v1, v2, NULL); } } #if GST_VERSION_MAJOR > 0 caps = gst_caps_fixate(caps); #endif gst_app_sink_set_caps(GST_APP_SINK(sink), caps); //printf("filtering with %s\n", gst_caps_to_string(caps)); } /*! * \brief CvCapture_GStreamer::removeFilter * \param filter filter to remove * remove the specified filter from the appsink template caps */ void CvCapture_GStreamer::removeFilter(const char *filter) { if(!caps) return; #if GST_VERSION_MAJOR > 0 if (! gst_caps_is_writable(caps)) caps = gst_caps_make_writable (caps); #endif GstStructure *s = gst_caps_get_structure(caps, 0); gst_structure_remove_field(s, filter); gst_app_sink_set_caps(GST_APP_SINK(sink), caps); } /*! * \brief CvCapture_GStreamer::newPad link dynamic padd * \param pad * \param data * decodebin creates pads based on stream information, which is not known upfront * on receiving the pad-added signal, we connect it to the colorspace conversion element */ void CvCapture_GStreamer::newPad(GstElement * /*elem*/, GstPad *pad, gpointer data) { GstPad *sinkpad; GstElement *color = (GstElement *) data; sinkpad = gst_element_get_static_pad (color, "sink"); if (!sinkpad){ //fprintf(stderr, "Gstreamer: no pad named sink\n"); return; } gst_pad_link (pad, sinkpad); gst_object_unref (sinkpad); } /*! * \brief CvCapture_GStreamer::open Open the given file with gstreamer * \param type CvCapture type. One of CV_CAP_GSTREAMER_* * \param filename Filename to open in case of CV_CAP_GSTREAMER_FILE * \return boolean. Specifies if opening was succesful. * * In case of CV_CAP_GSTREAMER_V4L(2), a pipelin is constructed as follows: * v4l2src ! autoconvert ! appsink * * * The 'filename' parameter is not limited to filesystem paths, and may be one of the following: * * - a normal filesystem path: * e.g. video.avi or /path/to/video.avi or C:\\video.avi * - an uri: * e.g. file:///path/to/video.avi or rtsp:///path/to/stream.asf * - a gstreamer pipeline description: * e.g. videotestsrc ! videoconvert ! appsink * the appsink name should be either 'appsink0' (the default) or 'opencvsink' * * When dealing with a file, CvCapture_GStreamer will not drop frames if the grabbing interval * larger than the framerate period. (Unlike the uri or manual pipeline description, which assume * a live source) * * The pipeline will only be started whenever the first frame is grabbed. Setting pipeline properties * is really slow if we need to restart the pipeline over and over again. * * TODO: the 'type' parameter is imo unneeded. for v4l2, filename 'v4l2:///dev/video0' can be used. * I expect this to be the same for CV_CAP_GSTREAMER_1394. Is anyone actually still using v4l (v1)? * */ bool CvCapture_GStreamer::open( int type, const char* filename ) { CV_FUNCNAME("cvCaptureFromCAM_GStreamer"); __BEGIN__; gst_initializer::init(); bool file = false; bool stream = false; bool manualpipeline = false; char *uri = NULL; uridecodebin = NULL; GstElementFactory * testfac; GstStateChangeReturn status; int cameraID = -1; if (type == CV_CAP_GSTREAMER_V4L || type == CV_CAP_GSTREAMER_V4L2) { cameraID = static_cast<int>(reinterpret_cast<intptr_t>(filename)); } std::stringstream stdstream; std::string stdfilename; if (type == CV_CAP_GSTREAMER_V4L) { testfac = gst_element_factory_find("v4lsrc"); if (!testfac){ return false; } g_object_unref(G_OBJECT(testfac)); stdstream << "v4lsrc device=/dev/video" << cameraID << " ! " << COLOR_ELEM << " ! appsink"; stdfilename = stdstream.str(); filename = stdfilename.c_str(); } else if (type == CV_CAP_GSTREAMER_V4L2) { testfac = gst_element_factory_find("v4l2src"); if (!testfac){ return false; } g_object_unref(G_OBJECT(testfac)); stdstream << "v4l2src device=/dev/video" << cameraID << " ! " << COLOR_ELEM << " ! appsink"; stdfilename = stdstream.str(); filename = stdfilename.c_str(); } // test if we have a valid uri. If so, open it with an uridecodebin // else, we might have a file or a manual pipeline. // if gstreamer cannot parse the manual pipeline, we assume we were given and // ordinary file path. if(!gst_uri_is_valid(filename)) { uri = realpath(filename, NULL); stream = false; if(uri) { uri = g_filename_to_uri(uri, NULL, NULL); if(uri) { file = true; } else { CV_WARN("GStreamer: Error opening file\n"); close(); return false; } } else { GError *err = NULL; uridecodebin = gst_parse_launch(filename, &err); if(!uridecodebin) { fprintf(stderr, "GStreamer: Error opening bin: %s\n", err->message); return false; } stream = true; manualpipeline = true; } } else { stream = true; uri = g_strdup(filename); } bool element_from_uri = false; if(!uridecodebin) { // At this writing, the v4l2 element (and maybe others too) does not support caps renegotiation. // This means that we cannot use an uridecodebin when dealing with v4l2, since setting // capture properties will not work. // The solution (probably only until gstreamer 1.2) is to make an element from uri when dealing with v4l2. gchar * protocol = gst_uri_get_protocol(uri); if (!strcasecmp(protocol , "v4l2")) { #if GST_VERSION_MAJOR == 0 uridecodebin = gst_element_make_from_uri(GST_URI_SRC, uri, "src"); #else uridecodebin = gst_element_make_from_uri(GST_URI_SRC, uri, "src", NULL); #endif element_from_uri = true; } else { uridecodebin = gst_element_factory_make("uridecodebin", NULL); g_object_set(G_OBJECT(uridecodebin), "uri", uri, NULL); } g_free(protocol); if(!uridecodebin) { //fprintf(stderr, "GStreamer: Error opening bin: %s\n", err->message); close(); return false; } } if (manualpipeline) { GstIterator *it = gst_bin_iterate_elements(GST_BIN(uridecodebin)); GstElement *element = NULL; gboolean done = false; gchar* name = NULL; #if GST_VERSION_MAJOR > 0 GValue value = G_VALUE_INIT; #endif while (!done) { #if GST_VERSION_MAJOR > 0 switch (gst_iterator_next (it, &value)) { case GST_ITERATOR_OK: element = GST_ELEMENT (g_value_get_object (&value)); #else switch (gst_iterator_next (it, (gpointer *)&element)) { case GST_ITERATOR_OK: #endif name = gst_element_get_name(element); if (name) { if (strstr(name, "opencvsink") != NULL || strstr(name, "appsink") != NULL) { sink = GST_ELEMENT ( gst_object_ref (element) ); } else if (strstr(name, COLOR_ELEM_NAME) != NULL) { color = GST_ELEMENT ( gst_object_ref (element) ); } else if (strstr(name, "v4l") != NULL) { v4l2src = GST_ELEMENT ( gst_object_ref (element) ); } g_free(name); done = sink && color && v4l2src; } #if GST_VERSION_MAJOR > 0 g_value_unset (&value); #endif break; case GST_ITERATOR_RESYNC: gst_iterator_resync (it); break; case GST_ITERATOR_ERROR: case GST_ITERATOR_DONE: done = TRUE; break; } } gst_iterator_free (it); if (!sink) { CV_ERROR(CV_StsError, "GStreamer: cannot find appsink in manual pipeline\n"); return false; } pipeline = uridecodebin; } else { pipeline = gst_pipeline_new(NULL); // videoconvert (in 0.10: ffmpegcolorspace, in 1.x autovideoconvert) //automatically selects the correct colorspace conversion based on caps. color = gst_element_factory_make(COLOR_ELEM, NULL); sink = gst_element_factory_make("appsink", NULL); gst_bin_add_many(GST_BIN(pipeline), uridecodebin, color, sink, NULL); if(element_from_uri) { if(!gst_element_link(uridecodebin, color)) { CV_ERROR(CV_StsError, "GStreamer: cannot link color -> sink\n"); gst_object_unref(pipeline); pipeline = NULL; return false; } } else { g_signal_connect(uridecodebin, "pad-added", G_CALLBACK(newPad), color); } if(!gst_element_link(color, sink)) { CV_ERROR(CV_StsError, "GStreamer: cannot link color -> sink\n"); gst_object_unref(pipeline); pipeline = NULL; return false; } } //TODO: is 1 single buffer really high enough? gst_app_sink_set_max_buffers (GST_APP_SINK(sink), 1); gst_app_sink_set_drop (GST_APP_SINK(sink), stream); //do not emit signals: all calls will be synchronous and blocking gst_app_sink_set_emit_signals (GST_APP_SINK(sink), 0); #if GST_VERSION_MAJOR == 0 caps = gst_caps_new_simple("video/x-raw-rgb", "bpp", G_TYPE_INT, 24, "red_mask", G_TYPE_INT, 0x0000FF, "green_mask", G_TYPE_INT, 0x00FF00, "blue_mask", G_TYPE_INT, 0xFF0000, NULL); #else // support 1 and 3 channel 8 bit data, as well as bayer (also 1 channel, 8bit) caps = gst_caps_from_string("video/x-raw, format=(string){BGR, GRAY8}; video/x-bayer,format=(string){rggb,bggr,grbg,gbrg}"); #endif gst_app_sink_set_caps(GST_APP_SINK(sink), caps); gst_caps_unref(caps); { status = gst_element_set_state(GST_ELEMENT(pipeline), file ? GST_STATE_PAUSED : GST_STATE_PLAYING); if (status == GST_STATE_CHANGE_ASYNC) { // wait for status update status = gst_element_get_state(pipeline, NULL, NULL, GST_CLOCK_TIME_NONE); } if (status == GST_STATE_CHANGE_FAILURE) { handleMessage(pipeline); gst_object_unref(pipeline); pipeline = NULL; CV_ERROR(CV_StsError, "GStreamer: unable to start pipeline\n"); return false; } GstFormat format; format = GST_FORMAT_DEFAULT; #if GST_VERSION_MAJOR == 0 if(!gst_element_query_duration(sink, &format, &duration)) #else if(!gst_element_query_duration(sink, format, &duration)) #endif { handleMessage(pipeline); CV_WARN("GStreamer: unable to query duration of stream"); duration = -1; } GstPad* pad = gst_element_get_static_pad(color, "src"); #if GST_VERSION_MAJOR == 0 GstCaps* buffer_caps = gst_pad_get_caps(pad); #else GstCaps* buffer_caps = gst_pad_get_current_caps(pad); #endif const GstStructure *structure = gst_caps_get_structure (buffer_caps, 0); if (!gst_structure_get_int (structure, "width", &width)) { CV_WARN("Cannot query video width\n"); } if (!gst_structure_get_int (structure, "height", &height)) { CV_WARN("Cannot query video heigth\n"); } gint num = 0, denom=1; if(!gst_structure_get_fraction(structure, "framerate", &num, &denom)) { CV_WARN("Cannot query video fps\n"); } fps = (double)num/(double)denom; // GST_DEBUG_BIN_TO_DOT_FILE(GST_BIN(pipeline), GST_DEBUG_GRAPH_SHOW_ALL, "pipeline") stopPipeline(); } __END__; return true; } /*! * \brief CvCapture_GStreamer::getProperty retreive the requested property from the pipeline * \param propId requested property * \return property value * * There are two ways the properties can be retreived. For seek-based properties we can query the pipeline. * For frame-based properties, we use the caps of the lasst receivef sample. This means that some properties * are not available until a first frame was received */ double CvCapture_GStreamer::getProperty( int propId ) { GstFormat format; gint64 value; gboolean status; #if GST_VERSION_MAJOR == 0 #define FORMAT &format #else #define FORMAT format #endif if(!pipeline) { CV_WARN("GStreamer: no pipeline"); return 0; } switch(propId) { case CV_CAP_PROP_POS_MSEC: format = GST_FORMAT_TIME; status = gst_element_query_position(sink, FORMAT, &value); if(!status) { CV_WARN("GStreamer: unable to query position of stream"); return 0; } return value * 1e-6; // nano seconds to milli seconds case CV_CAP_PROP_POS_FRAMES: format = GST_FORMAT_DEFAULT; status = gst_element_query_position(sink, FORMAT, &value); if(!status) { CV_WARN("GStreamer: unable to query position of stream"); return 0; } return value; case CV_CAP_PROP_POS_AVI_RATIO: format = GST_FORMAT_PERCENT; status = gst_element_query_position(sink, FORMAT, &value); if(!status) { CV_WARN("GStreamer: unable to query position of stream"); return 0; } return ((double) value) / GST_FORMAT_PERCENT_MAX; case CV_CAP_PROP_FRAME_WIDTH: return width; case CV_CAP_PROP_FRAME_HEIGHT: return height; case CV_CAP_PROP_FPS: return fps; case CV_CAP_PROP_FOURCC: break; case CV_CAP_PROP_FRAME_COUNT: return duration; case CV_CAP_PROP_FORMAT: case CV_CAP_PROP_MODE: case CV_CAP_PROP_BRIGHTNESS: case CV_CAP_PROP_CONTRAST: case CV_CAP_PROP_SATURATION: case CV_CAP_PROP_HUE: if (v4l2src) { const gchar * propName = propId == CV_CAP_PROP_BRIGHTNESS ? "brightness" : propId == CV_CAP_PROP_CONTRAST ? "contrast" : propId == CV_CAP_PROP_SATURATION ? "saturation" : propId == CV_CAP_PROP_HUE ? "hue" : NULL; if (propName) { gint32 value32 = 0; g_object_get(G_OBJECT(v4l2src), propName, &value32, NULL); return value32; } } case CV_CAP_PROP_GAIN: case CV_CAP_PROP_CONVERT_RGB: break; case CV_CAP_GSTREAMER_QUEUE_LENGTH: if(!sink) { CV_WARN("GStreamer: there is no sink yet"); return false; } return gst_app_sink_get_max_buffers(GST_APP_SINK(sink)); default: CV_WARN("GStreamer: unhandled property"); break; } #undef FORMAT return 0; } /*! * \brief CvCapture_GStreamer::setProperty * \param propId * \param value * \return success * Sets the desired property id with val. If the pipeline is running, * it is briefly stopped and started again after the property was set */ bool CvCapture_GStreamer::setProperty( int propId, double value ) { GstFormat format; GstSeekFlags flags; if(!pipeline) { CV_WARN("GStreamer: no pipeline"); return false; } bool wasPlaying = this->isPipelinePlaying(); if (wasPlaying) this->stopPipeline(); switch(propId) { case CV_CAP_PROP_POS_MSEC: format = GST_FORMAT_TIME; flags = (GstSeekFlags) (GST_SEEK_FLAG_FLUSH|GST_SEEK_FLAG_ACCURATE); if(!gst_element_seek_simple(GST_ELEMENT(pipeline), format, flags, (gint64) (value * GST_MSECOND))) { CV_WARN("GStreamer: unable to seek"); } break; case CV_CAP_PROP_POS_FRAMES: format = GST_FORMAT_DEFAULT; flags = (GstSeekFlags) (GST_SEEK_FLAG_FLUSH|GST_SEEK_FLAG_ACCURATE); if(!gst_element_seek_simple(GST_ELEMENT(pipeline), format, flags, (gint64) value)) { CV_WARN("GStreamer: unable to seek"); } break; case CV_CAP_PROP_POS_AVI_RATIO: format = GST_FORMAT_PERCENT; flags = (GstSeekFlags) (GST_SEEK_FLAG_FLUSH|GST_SEEK_FLAG_ACCURATE); if(!gst_element_seek_simple(GST_ELEMENT(pipeline), format, flags, (gint64) (value * GST_FORMAT_PERCENT_MAX))) { CV_WARN("GStreamer: unable to seek"); } break; case CV_CAP_PROP_FRAME_WIDTH: if(value > 0) setFilter("width", G_TYPE_INT, (int) value, 0); else removeFilter("width"); break; case CV_CAP_PROP_FRAME_HEIGHT: if(value > 0) setFilter("height", G_TYPE_INT, (int) value, 0); else removeFilter("height"); break; case CV_CAP_PROP_FPS: if(value > 0) { double num=0, denom = 1; toFraction(value, num, denom); setFilter("framerate", GST_TYPE_FRACTION, value, denom); } else removeFilter("framerate"); break; case CV_CAP_PROP_FOURCC: case CV_CAP_PROP_FRAME_COUNT: case CV_CAP_PROP_FORMAT: case CV_CAP_PROP_MODE: case CV_CAP_PROP_BRIGHTNESS: case CV_CAP_PROP_CONTRAST: case CV_CAP_PROP_SATURATION: case CV_CAP_PROP_HUE: if (v4l2src) { const gchar * propName = propId == CV_CAP_PROP_BRIGHTNESS ? "brightness" : propId == CV_CAP_PROP_CONTRAST ? "contrast" : propId == CV_CAP_PROP_SATURATION ? "saturation" : propId == CV_CAP_PROP_HUE ? "hue" : NULL; if (propName) { gint32 value32 = cv::saturate_cast<gint32>(value); g_object_set(G_OBJECT(v4l2src), propName, &value32, NULL); return true; } } case CV_CAP_PROP_GAIN: case CV_CAP_PROP_CONVERT_RGB: break; case CV_CAP_GSTREAMER_QUEUE_LENGTH: if(!sink) break; gst_app_sink_set_max_buffers(GST_APP_SINK(sink), (guint) value); break; default: CV_WARN("GStreamer: unhandled property"); } if (wasPlaying) this->startPipeline(); return false; } /*! * \brief cvCreateCapture_GStreamer * \param type * \param filename * \return */ CvCapture* cvCreateCapture_GStreamer(int type, const char* filename ) { CvCapture_GStreamer* capture = new CvCapture_GStreamer; if( capture->open( type, filename )) return capture; delete capture; return 0; } /*! * \brief The CvVideoWriter_GStreamer class * Use Gstreamer to write video */ class CvVideoWriter_GStreamer : public CvVideoWriter { public: CvVideoWriter_GStreamer() { init(); } virtual ~CvVideoWriter_GStreamer() { close(); } virtual bool open( const char* filename, int fourcc, double fps, CvSize frameSize, bool isColor ); virtual void close(); virtual bool writeFrame( const IplImage* image ); protected: void init(); const char* filenameToMimetype(const char* filename); GstElement* pipeline; GstElement* source; GstElement* encodebin; GstElement* file; GstBuffer* buffer; int input_pix_fmt; int num_frames; double framerate; }; /*! * \brief CvVideoWriter_GStreamer::init * initialise all variables */ void CvVideoWriter_GStreamer::init() { pipeline = NULL; source = NULL; encodebin = NULL; file = NULL; buffer = NULL; num_frames = 0; framerate = 0; } /*! * \brief CvVideoWriter_GStreamer::close * ends the pipeline by sending EOS and destroys the pipeline and all * elements afterwards */ void CvVideoWriter_GStreamer::close() { GstStateChangeReturn status; if (pipeline) { handleMessage(pipeline); if (gst_app_src_end_of_stream(GST_APP_SRC(source)) != GST_FLOW_OK) { CV_WARN("Cannot send EOS to GStreamer pipeline\n"); return; } //wait for EOS to trickle down the pipeline. This will let all elements finish properly GstBus* bus = gst_element_get_bus(pipeline); GstMessage *msg = gst_bus_timed_pop_filtered(bus, GST_CLOCK_TIME_NONE, (GstMessageType)(GST_MESSAGE_ERROR | GST_MESSAGE_EOS)); if (GST_MESSAGE_TYPE(msg) == GST_MESSAGE_ERROR) { CV_WARN("Error during VideoWriter finalization\n"); return; } if(msg != NULL) { gst_message_unref(msg); g_object_unref(G_OBJECT(bus)); } status = gst_element_set_state (pipeline, GST_STATE_NULL); if (status == GST_STATE_CHANGE_ASYNC) { // wait for status update GstState st1; GstState st2; status = gst_element_get_state(pipeline, &st1, &st2, GST_CLOCK_TIME_NONE); } if (status == GST_STATE_CHANGE_FAILURE) { handleMessage (pipeline); gst_object_unref (GST_OBJECT (pipeline)); pipeline = NULL; CV_WARN("Unable to stop gstreamer pipeline\n"); return; } gst_object_unref (GST_OBJECT (pipeline)); pipeline = NULL; } } /*! * \brief CvVideoWriter_GStreamer::filenameToMimetype * \param filename * \return mimetype * Resturns a container mime type for a given filename by looking at it's extension */ const char* CvVideoWriter_GStreamer::filenameToMimetype(const char *filename) { //get extension const char *ext = strrchr(filename, '.'); if(!ext || ext == filename) return NULL; ext += 1; //exclude the dot // return a container mime based on the given extension. // gstreamer's function returns too much possibilities, which is not useful to us //return the appropriate mime if (strncasecmp(ext,"avi", 3) == 0) return (const char*)"video/x-msvideo"; if (strncasecmp(ext,"mkv", 3) == 0 || strncasecmp(ext,"mk3d",4) == 0 || strncasecmp(ext,"webm",4) == 0 ) return (const char*)"video/x-matroska"; if (strncasecmp(ext,"wmv", 3) == 0) return (const char*)"video/x-ms-asf"; if (strncasecmp(ext,"mov", 3) == 0) return (const char*)"video/x-quicktime"; if (strncasecmp(ext,"ogg", 3) == 0 || strncasecmp(ext,"ogv", 3) == 0) return (const char*)"application/ogg"; if (strncasecmp(ext,"rm", 3) == 0) return (const char*)"vnd.rn-realmedia"; if (strncasecmp(ext,"swf", 3) == 0) return (const char*)"application/x-shockwave-flash"; if (strncasecmp(ext,"mp4", 3) == 0) return (const char*)"video/x-quicktime, variant=(string)iso"; //default to avi return (const char*)"video/x-msvideo"; } /*! * \brief CvVideoWriter_GStreamer::open * \param filename filename to output to * \param fourcc desired codec fourcc * \param fps desired framerate * \param frameSize the size of the expected frames * \param is_color color or grayscale * \return success * * We support 2 modes of operation. Either the user enters a filename and a fourcc * code, or enters a manual pipeline description like in CvVideoCapture_Gstreamer. * In the latter case, we just push frames on the appsink with appropriate caps. * In the former case, we try to deduce the correct container from the filename, * and the correct encoder from the fourcc profile. * * If the file extension did was not recognize, an avi container is used * */ bool CvVideoWriter_GStreamer::open( const char * filename, int fourcc, double fps, CvSize frameSize, bool is_color ) { CV_FUNCNAME("CvVideoWriter_GStreamer::open"); // check arguments assert (filename); assert (fps > 0); assert (frameSize.width > 0 && frameSize.height > 0); // init gstreamer gst_initializer::init(); // init vars bool manualpipeline = true; int bufsize = 0; GError *err = NULL; const char* mime = NULL; GstStateChangeReturn stateret; GstCaps* caps = NULL; GstCaps* videocaps = NULL; #if FULL_GST_VERSION >= VERSION_NUM(0,10,32) GstCaps* containercaps = NULL; GstEncodingContainerProfile* containerprofile = NULL; GstEncodingVideoProfile* videoprofile = NULL; #endif GstIterator* it = NULL; gboolean done = FALSE; GstElement *element = NULL; gchar* name = NULL; #if GST_VERSION_MAJOR == 0 GstElement* splitter = NULL; GstElement* combiner = NULL; #endif // we first try to construct a pipeline from the given string. // if that fails, we assume it is an ordinary filename __BEGIN__; encodebin = gst_parse_launch(filename, &err); manualpipeline = (encodebin != NULL); if(manualpipeline) { #if GST_VERSION_MAJOR == 0 it = gst_bin_iterate_sources(GST_BIN(encodebin)); if(gst_iterator_next(it, (gpointer *)&source) != GST_ITERATOR_OK) { CV_ERROR(CV_StsError, "GStreamer: cannot find appsink in manual pipeline\n"); return false; } #else it = gst_bin_iterate_sources (GST_BIN(encodebin)); GValue value = G_VALUE_INIT; while (!done) { switch (gst_iterator_next (it, &value)) { case GST_ITERATOR_OK: element = GST_ELEMENT (g_value_get_object (&value)); name = gst_element_get_name(element); if (name){ if(strstr(name, "opencvsrc") != NULL || strstr(name, "appsrc") != NULL) { source = GST_ELEMENT ( gst_object_ref (element) ); done = TRUE; } g_free(name); } g_value_unset (&value); break; case GST_ITERATOR_RESYNC: gst_iterator_resync (it); break; case GST_ITERATOR_ERROR: case GST_ITERATOR_DONE: done = TRUE; break; } } gst_iterator_free (it); if (!source){ CV_ERROR(CV_StsError, "GStreamer: cannot find appsrc in manual pipeline\n"); return false; } #endif pipeline = encodebin; } else { pipeline = gst_pipeline_new (NULL); // we just got a filename and a fourcc code. // first, try to guess the container from the filename //encodebin = gst_element_factory_make("encodebin", NULL); //proxy old non existing fourcc ids. These were used in previous opencv versions, //but do not even exist in gstreamer any more if (fourcc == CV_FOURCC('M','P','1','V')) fourcc = CV_FOURCC('M', 'P', 'G' ,'1'); if (fourcc == CV_FOURCC('M','P','2','V')) fourcc = CV_FOURCC('M', 'P', 'G' ,'2'); if (fourcc == CV_FOURCC('D','R','A','C')) fourcc = CV_FOURCC('d', 'r', 'a' ,'c'); //create encoder caps from fourcc videocaps = gst_riff_create_video_caps(fourcc, NULL, NULL, NULL, NULL, NULL); if (!videocaps){ CV_ERROR( CV_StsUnsupportedFormat, "Gstreamer Opencv backend does not support this codec."); } //create container caps from file extension mime = filenameToMimetype(filename); if (!mime) { CV_ERROR( CV_StsUnsupportedFormat, "Gstreamer Opencv backend does not support this file type."); } #if FULL_GST_VERSION >= VERSION_NUM(0,10,32) containercaps = gst_caps_from_string(mime); //create encodebin profile containerprofile = gst_encoding_container_profile_new("container", "container", containercaps, NULL); videoprofile = gst_encoding_video_profile_new(videocaps, NULL, NULL, 1); gst_encoding_container_profile_add_profile(containerprofile, (GstEncodingProfile *) videoprofile); #endif //create pipeline elements encodebin = gst_element_factory_make("encodebin", NULL); #if FULL_GST_VERSION >= VERSION_NUM(0,10,32) g_object_set(G_OBJECT(encodebin), "profile", containerprofile, NULL); #endif source = gst_element_factory_make("appsrc", NULL); file = gst_element_factory_make("filesink", NULL); g_object_set(G_OBJECT(file), "location", filename, NULL); } if (is_color) { input_pix_fmt = GST_VIDEO_FORMAT_BGR; bufsize = frameSize.width * frameSize.height * 3; #if GST_VERSION_MAJOR == 0 caps = gst_video_format_new_caps(GST_VIDEO_FORMAT_BGR, frameSize.width, frameSize.height, int(fps), 1, 1, 1); #else caps = gst_caps_new_simple("video/x-raw", "format", G_TYPE_STRING, "BGR", "width", G_TYPE_INT, frameSize.width, "height", G_TYPE_INT, frameSize.height, "framerate", GST_TYPE_FRACTION, int(fps), 1, NULL); caps = gst_caps_fixate(caps); #endif } else { #if FULL_GST_VERSION >= VERSION_NUM(0,10,29) input_pix_fmt = GST_VIDEO_FORMAT_GRAY8; bufsize = frameSize.width * frameSize.height; #if GST_VERSION_MAJOR == 0 caps = gst_video_format_new_caps(GST_VIDEO_FORMAT_GRAY8, frameSize.width, frameSize.height, int(fps), 1, 1, 1); #else caps = gst_caps_new_simple("video/x-raw", "format", G_TYPE_STRING, "GRAY8", "width", G_TYPE_INT, frameSize.width, "height", G_TYPE_INT, frameSize.height, "framerate", GST_TYPE_FRACTION, int(fps), 1, NULL); caps = gst_caps_fixate(caps); #endif #else CV_Assert(!"Gstreamer 0.10.29 or newer is required for grayscale input"); #endif } gst_app_src_set_caps(GST_APP_SRC(source), caps); gst_app_src_set_stream_type(GST_APP_SRC(source), GST_APP_STREAM_TYPE_STREAM); gst_app_src_set_size (GST_APP_SRC(source), -1); g_object_set(G_OBJECT(source), "format", GST_FORMAT_TIME, NULL); g_object_set(G_OBJECT(source), "block", 1, NULL); g_object_set(G_OBJECT(source), "is-live", 0, NULL); if(!manualpipeline) { g_object_set(G_OBJECT(file), "buffer-size", bufsize, NULL); gst_bin_add_many(GST_BIN(pipeline), source, encodebin, file, NULL); if(!gst_element_link_many(source, encodebin, file, NULL)) { CV_ERROR(CV_StsError, "GStreamer: cannot link elements\n"); } } #if GST_VERSION_MAJOR == 0 // HACK: remove streamsplitter and streamcombiner from // encodebin pipeline to prevent early EOF event handling // We always fetch BGR or gray-scale frames, so combiner->spliter // endge in graph is useless. it = gst_bin_iterate_recurse (GST_BIN(encodebin)); while (!done) { switch (gst_iterator_next (it, (void**)&element)) { case GST_ITERATOR_OK: name = gst_element_get_name(element); if (strstr(name, "streamsplitter")) splitter = element; else if (strstr(name, "streamcombiner")) combiner = element; break; case GST_ITERATOR_RESYNC: gst_iterator_resync (it); break; case GST_ITERATOR_ERROR: done = true; break; case GST_ITERATOR_DONE: done = true; break; } } gst_iterator_free (it); if (splitter && combiner) { gst_element_unlink(splitter, combiner); GstPad* src = gst_element_get_pad(combiner, "src"); GstPad* sink = gst_element_get_pad(combiner, "encodingsink"); GstPad* srcPeer = gst_pad_get_peer(src); GstPad* sinkPeer = gst_pad_get_peer(sink); gst_pad_unlink(sinkPeer, sink); gst_pad_unlink(src, srcPeer); gst_pad_link(sinkPeer, srcPeer); src = gst_element_get_pad(splitter, "encodingsrc"); sink = gst_element_get_pad(splitter, "sink"); srcPeer = gst_pad_get_peer(src); sinkPeer = gst_pad_get_peer(sink); gst_pad_unlink(sinkPeer, sink); gst_pad_unlink(src, srcPeer); gst_pad_link(sinkPeer, srcPeer); } #endif stateret = gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_PLAYING); if(stateret == GST_STATE_CHANGE_FAILURE) { handleMessage(pipeline); CV_ERROR(CV_StsError, "GStreamer: cannot put pipeline to play\n"); } framerate = fps; num_frames = 0; handleMessage(pipeline); __END__; return true; } /*! * \brief CvVideoWriter_GStreamer::writeFrame * \param image * \return * Pushes the given frame on the pipeline. * The timestamp for the buffer is generated from the framerate set in open * and ensures a smooth video */ bool CvVideoWriter_GStreamer::writeFrame( const IplImage * image ) { CV_FUNCNAME("CvVideoWriter_GStreamer::writerFrame"); GstClockTime duration, timestamp; GstFlowReturn ret; int size; __BEGIN__; handleMessage(pipeline); if (input_pix_fmt == GST_VIDEO_FORMAT_BGR) { if (image->nChannels != 3 || image->depth != IPL_DEPTH_8U) { CV_ERROR(CV_StsUnsupportedFormat, "cvWriteFrame() needs images with depth = IPL_DEPTH_8U and nChannels = 3."); } } #if FULL_GST_VERSION >= VERSION_NUM(0,10,29) else if (input_pix_fmt == GST_VIDEO_FORMAT_GRAY8) { if (image->nChannels != 1 || image->depth != IPL_DEPTH_8U) { CV_ERROR(CV_StsUnsupportedFormat, "cvWriteFrame() needs images with depth = IPL_DEPTH_8U and nChannels = 1."); } } #endif else { CV_ERROR(CV_StsUnsupportedFormat, "cvWriteFrame() needs BGR or grayscale images\n"); return false; } size = image->imageSize; duration = ((double)1/framerate) * GST_SECOND; timestamp = num_frames * duration; //gst_app_src_push_buffer takes ownership of the buffer, so we need to supply it a copy #if GST_VERSION_MAJOR == 0 buffer = gst_buffer_try_new_and_alloc (size); if (!buffer) { CV_ERROR(CV_StsBadSize, "Cannot create GStreamer buffer"); } memcpy(GST_BUFFER_DATA (buffer), (guint8*)image->imageData, size); GST_BUFFER_DURATION(buffer) = duration; GST_BUFFER_TIMESTAMP(buffer) = timestamp; #else buffer = gst_buffer_new_allocate (NULL, size, NULL); GstMapInfo info; gst_buffer_map(buffer, &info, (GstMapFlags)GST_MAP_READ); memcpy(info.data, (guint8*)image->imageData, size); gst_buffer_unmap(buffer, &info); GST_BUFFER_DURATION(buffer) = duration; GST_BUFFER_PTS(buffer) = timestamp; GST_BUFFER_DTS(buffer) = timestamp; #endif //set the current number in the frame GST_BUFFER_OFFSET(buffer) = num_frames; ret = gst_app_src_push_buffer(GST_APP_SRC(source), buffer); if (ret != GST_FLOW_OK) { CV_WARN("Error pushing buffer to GStreamer pipeline"); return false; } //GST_DEBUG_BIN_TO_DOT_FILE(GST_BIN(pipeline), GST_DEBUG_GRAPH_SHOW_ALL, "pipeline"); ++num_frames; __END__; return true; } /*! * \brief cvCreateVideoWriter_GStreamer * \param filename * \param fourcc * \param fps * \param frameSize * \param isColor * \return * Constructor */ CvVideoWriter* cvCreateVideoWriter_GStreamer(const char* filename, int fourcc, double fps, CvSize frameSize, int isColor ) { CvVideoWriter_GStreamer* wrt = new CvVideoWriter_GStreamer; if( wrt->open(filename, fourcc, fps,frameSize, isColor)) return wrt; delete wrt; return 0; } // utility functions /*! * \brief toFraction * \param decimal * \param numerator * \param denominator * Split a floating point value into numerator and denominator */ void toFraction(double decimal, double &numerator, double &denominator) { double dummy; double whole; decimal = modf (decimal, &whole); for (denominator = 1; denominator<=100; denominator++){ if (modf(denominator * decimal, &dummy) < 0.001f) break; } numerator = denominator * decimal; } /*! * \brief handleMessage * Handles gstreamer bus messages. Mainly for debugging purposes and ensuring clean shutdown on error */ void handleMessage(GstElement * pipeline) { CV_FUNCNAME("handlemessage"); GError *err = NULL; gchar *debug = NULL; GstBus* bus = NULL; GstStreamStatusType tp; GstElement * elem = NULL; GstMessage* msg = NULL; __BEGIN__; bus = gst_element_get_bus(pipeline); while(gst_bus_have_pending(bus)) { msg = gst_bus_pop(bus); //printf("Got %s message\n", GST_MESSAGE_TYPE_NAME(msg)); if(gst_is_missing_plugin_message(msg)) { CV_ERROR(CV_StsError, "GStreamer: your gstreamer installation is missing a required plugin\n"); } else { switch (GST_MESSAGE_TYPE (msg)) { case GST_MESSAGE_STATE_CHANGED: GstState oldstate, newstate, pendstate; gst_message_parse_state_changed(msg, &oldstate, &newstate, &pendstate); //fprintf(stderr, "state changed from %s to %s (pending: %s)\n", gst_element_state_get_name(oldstate), // gst_element_state_get_name(newstate), gst_element_state_get_name(pendstate)); break; case GST_MESSAGE_ERROR: gst_message_parse_error(msg, &err, &debug); fprintf(stderr, "GStreamer Plugin: Embedded video playback halted; module %s reported: %s\n", gst_element_get_name(GST_MESSAGE_SRC (msg)), err->message); g_error_free(err); g_free(debug); gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_NULL); break; case GST_MESSAGE_EOS: //fprintf(stderr, "reached the end of the stream."); break; case GST_MESSAGE_STREAM_STATUS: gst_message_parse_stream_status(msg,&tp,&elem); //fprintf(stderr, "stream status: elem %s, %i\n", GST_ELEMENT_NAME(elem), tp); break; default: //fprintf(stderr, "unhandled message %s\n",GST_MESSAGE_TYPE_NAME(msg)); break; } } gst_message_unref(msg); } gst_object_unref(GST_OBJECT(bus)); __END__ }
[ "thatindiangeek@gmail.com" ]
thatindiangeek@gmail.com
aee4717369544eee556b41e359ebe0c5c19eb42d
5d6e6beb365e5e52db41394826ccfbc3e51bcfb7
/libnano2/nanosoft/xmlparser.h
ab3e0a9d24b8305f1ff0df3dec3ed7418206596d
[ "MIT" ]
permissive
zolotov-av/nanosoft
86d600d60ec74ae5b456a9d5afd7697883ac57ee
2aebb09d7d8a424d4de9b57d7586dbb72eed9fa0
refs/heads/master
2021-03-19T08:37:57.683170
2020-05-27T14:34:29
2020-05-27T14:39:26
97,500,048
1
1
null
null
null
null
UTF-8
C++
false
false
3,136
h
#ifndef NANOSOFT_XMLPARSER_H #define NANOSOFT_XMLPARSER_H #include <nanosoft/error.h> #include <nanosoft/xml_types.h> #include <string.h> #include <expat.h> #include <map> #include <string> namespace nanosoft { /** * XML парсер */ class XMLParser { public: /** * Конструктор */ XMLParser(); /** * Деструктор */ virtual ~XMLParser(); /** * Парсинг XML * * Если включена компрессия, то данные сначала распаковываются * * @param data буфер с данными * @param len длина буфера с данными * @param isFinal TRUE - последний кусок, FALSE - будет продолжение * @return TRUE - успешно, FALSE - ошибка парсинга */ bool parseXML(const char *data, size_t len, bool isFinal); /** * Сбросить парсер, начать парсить новый поток */ void resetParser(); protected: /** * Обработчик открытия тега */ virtual void onStartElement(const std::string &name, const attributes_t &attributes) = 0; /** * Обработчик символьных данных */ virtual void onCharacterData(const std::string &cdata) = 0; /** * Обработчик закрытия тега */ virtual void onEndElement(const std::string &name) = 0; /** * Обработчик ошибок парсера */ virtual void onParseError(const char *message) = 0; private: /** * Парсер expat */ XML_Parser parser; /** * Признак парсинга * TRUE - парсер в состоянии обработка куска файла */ bool parsing; /** * Признак необходимости перенинициализации парсера * TRUE - парсер должен быть переинициализован перед * обработкой следующего куска файла */ bool resetNeed; /** * Инициализация парсера */ bool initParser(); /** * Реальная переинициализация парсера */ bool realResetParser(); /** * Парсинг XML * * @param buf буфер с данными * @param len длина буфера с данными * @param isFinal TRUE - последний кусок, FALSE - будет продолжение * @return TRUE - успешно, FALSE - ошибка парсинга */ bool realParseXML(const char *buf, size_t len, bool isFinal); /** * Обработчик открытия тега */ static void startElementCallback(void *user_data, const XML_Char *name, const XML_Char **atts); /** * Отработчик символьных данных */ static void characterDataCallback(void *user_data, const XML_Char *s, int len); /** * Отбработчик закрытия тега */ static void endElementCallback(void *user_data, const XML_Char *name); }; } #endif // NANOSOFT_XMLPARSER_H
[ "shade@shamangrad.net" ]
shade@shamangrad.net
d84c474e40602785a42da7cb0e9e1397dae59f74
8dc84558f0058d90dfc4955e905dab1b22d12c08
/content/browser/payments/payment_instrument_icon_fetcher.h
e3c5f8e608d5da488fd5d1e8d3e07bb24e31b5dc
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
1,188
h
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_PAYMENTS_PAYMENT_INSTRUMENT_ICON_FETCHER_H_ #define CONTENT_BROWSER_PAYMENTS_PAYMENT_INSTRUMENT_ICON_FETCHER_H_ #include <string> #include <vector> #include "base/callback_forward.h" #include "base/macros.h" #include "base/memory/ref_counted.h" #include "third_party/blink/public/common/manifest/manifest.h" #include "third_party/blink/public/platform/modules/payments/payment_app.mojom.h" namespace content { class PaymentInstrumentIconFetcher { public: using PaymentInstrumentIconFetcherCallback = base::OnceCallback<void(const std::string&)>; // Should be called on IO thread. static void Start( const GURL& scope, std::unique_ptr<std::vector<std::pair<int, int>>> provider_hosts, const std::vector<blink::Manifest::Icon>& icons, PaymentInstrumentIconFetcherCallback callback); private: DISALLOW_IMPLICIT_CONSTRUCTORS(PaymentInstrumentIconFetcher); }; } // namespace content #endif // CONTENT_BROWSER_PAYMENTS_PAYMENT_INSTRUMENT_ICON_FETCHER_H_
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
13c680de8f3cff1e42ebe539300b80771791881a
d158de2ad6ce474eaf425ddb3d16a768a62d01d9
/devc_v2/datastructues/knap_sack_using_profit_weight_ration.cpp
4898d441e38224c29b1159adca23d42080395f3f
[]
no_license
VijayNandakumarkumar/CodingPractise
4cc3eb91590890788a0e18bbcb77375c0c4b51a5
32cc3601dc2a3d55ccdbafb2d3673ec330f1fd16
refs/heads/master
2022-10-07T23:21:42.951250
2022-10-05T17:32:32
2022-10-05T17:32:32
215,368,848
1
1
null
2020-12-08T20:48:17
2019-10-15T18:27:22
C++
UTF-8
C++
false
false
1,027
cpp
/* Coded by following algo of abul dahir. */ #include<bits/stdc++.h> using namespace std; typedef pair<int, int> ipair; int knap_sack_wpr(vector<pair<double, ipair> > &wp, int W) { int max_profit = INT_MIN; do { int w = 0, i = 0, p=0; for(int i=0;i<(int)wp.size() && w<=W;i++){ if ((w + wp[i].second.first) <= W) { cout<<"weight = "<<w<<" profit = "<<p<<"\n"; w += wp[i].second.first; p += wp[i].second.second; } } max_profit = max(max_profit, p); cout<<"profit = "<<p<<"max_profit = "<<max_profit<<"\n"; }while(next_permutation(wp.begin(), wp.end())); return max_profit; } int main(){ vector<int> vt{60, 100, 120}; vector<int> wt{10, 20, 30}; vector<pair<double, ipair> > wp; for (int i = 0;i<(int)wt.size();i++) { double wpr = vt[i]/wt[i]; wp.push_back({wpr, {wt[i], vt[i]}}); } int W = 50; sort(wp.begin(), wp.end()); cout<<knap_sack_wpr(wp, W); return 0; }
[ "vijay.nandakumar30@gmail.com" ]
vijay.nandakumar30@gmail.com
a21e611eb1c322cc234663420ca1d269fc13f72f
0cda2dcf353c9dbb42e7b820861929948b9942ea
/fileedit/2009/Paintball.cpp
7c277d96d64130a31d498ef5cc06a536a7564c12
[]
no_license
naoyat/topcoder
618853a31fa339ac6aa8e7099ceedcdd1eb67c64
ec1a691cd0f56359f3de899b03eada9efa01f31d
refs/heads/master
2020-05-30T23:14:10.356754
2010-01-17T04:03:52
2010-01-17T04:03:52
176,567
1
1
null
null
null
null
UTF-8
C++
false
false
12,173
cpp
#line 2 "Paintball.cpp" #include <iostream> #include <sstream> #include <cstdio> #include <cmath> #include <cctype> #include <algorithm> #include <string> #include <vector> #include <deque> #include <stack> #include <queue> #include <list> #include <map> #include <set> // BEGIN CUT HERE #include "cout.h" // END CUT HERE using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<vector<int> > vvi; typedef vector<string> vs; typedef vector<long long> vll; #define sz(a) int((a).size()) #define pb push_back #define all(c) (c).begin(),(c).end() #define mset(arr,val) memset(arr,val,sizeof(arr)) #define tr(c,i) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); i++) #define rep(var,n) for(int var=0;var<(n);var++) #define forr(var,from,to) for(int var=(from);var<=(to);var++) #define found(s,e) ((s).find(e)!=(s).end()) #define remove_(c,val) (c).erase(remove((c).begin(),(c).end(),(val)),(c).end()) #define lastc(str) (*((str).end()-1)) vector<string> split(string str, int delim=' ') { vector<string> result; const char *s = str.c_str(); if (delim == ' ') { for (const char *p=s; *p; p++) { if (*p == delim) s++; else break; } if (!*s) return result; for (const char *p=s; *p; p++) { if (*p == delim) { if (s < p) { string a(s,p-s); result.push_back(a); } s = p + 1; } } if (*s) result.push_back(s); } else { for (const char *p=s; *p; p++) { if (*p == delim) { string a(s,p-s); result.push_back(a); s = p + 1; if (*s == '\0') result.push_back(""); } } if (*s) result.push_back(s); } return result; } bool GreaterTeam(const pair<string,int>& t1, const pair<string,int>& t2){ if(t1.second > t2.second) return true; if(t1.second < t2.second) return false; if(t1.first <= t2.first) return true; return false; } class Paintball { public: vector<string> getLeaderboard(vector<string> players, vector<string> messages) { map<string,int> teams; map<string,string> player_team; map<string,int> player_point; tr(players,it){ vector<string> s=split(*it); player_team[s[0]] = s[1]; player_point[s[0]] = 0; teams[s[1]]=0; } tr(messages,it){ vector<string> s=split(*it); string p1=s[0], p2=s[2]; if(p1==p2){ player_point[p1]--; }else{ string t1=player_team[p1], t2=player_team[p2]; if(t1==t2){ player_point[p1]--; }else{ player_point[p1]++; player_point[p2]--; } } } tr(player_point,it){ string p=it->first; string t=player_team[p]; teams[t] += player_point[p]; } vector<pair<string,int> > ts(all(teams)); sort(all(ts),GreaterTeam); vector<string> res; tr(ts,it){ stringstream ss; ss << it->first << " " << it->second; res.pb(ss.str()); vector<pair<string,int> > ps; tr(player_team,jt){ if(jt->second == it->first){ ps.pb(make_pair(jt->first,player_point[jt->first])); } } sort(all(ps),GreaterTeam); tr(ps,jt){ stringstream ss2; ss2 << " " << jt->first << " " << jt->second; res.pb(ss2.str()); } } return res; } }; // BEGIN CUT HERE #include <time.h> clock_t start_time; void timer_clear() { start_time = clock(); } string timer() { clock_t end_time = clock(); double interval = (double)(end_time - start_time)/CLOCKS_PER_SEC; ostringstream os; os << " (" << interval*1000 << " msec)"; return os.str(); } template <typename T> string print_array(const vector<T> &V) { ostringstream os; os << "{ "; for (typename vector<T>::const_iterator iter = V.begin(); iter != V.end(); ++iter) os << '\"' << *iter << "\","; os << " }"; return os.str(); } int verify_case(const vector <string> &Expected, const vector <string> &Received) { if (Expected == Received) cerr << "PASSED" << timer() << endl; else { cerr << "FAILED" << timer() << endl; cerr << "\tExpected: " << print_array(Expected) << endl; cerr << "\tReceived: " << print_array(Received) << endl; } return 0;} template<int N> struct Case_ {}; char Test_(...); int Test_(Case_<0>) { timer_clear(); string players_[] = {"A RED", "B BLUE"}; vector <string> players(players_, players_+sizeof(players_)/sizeof(*players_)); string messages_[] = {"A SPLATTERED B"}; vector <string> messages(messages_, messages_+sizeof(messages_)/sizeof(*messages_)); string RetVal_[] = {"RED 1", " A 1", "BLUE -1", " B -1" }; vector <string> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, Paintball().getLeaderboard(players, messages)); } int Test_(Case_<1>) { timer_clear(); string players_[] = {"LISA RED", "BART RED", "HOMER BLUE", "MARGE BLUE", "MAGGIE GREEN"}; vector <string> players(players_, players_+sizeof(players_)/sizeof(*players_)); string messages_[] = {"MAGGIE SPLATTERED HOMER", "MAGGIE SPLATTERED MARGE"}; vector <string> messages(messages_, messages_+sizeof(messages_)/sizeof(*messages_)); string RetVal_[] = {"GREEN 2", " MAGGIE 2", "RED 0", " BART 0", " LISA 0", "BLUE -2", " HOMER -1", " MARGE -1" }; vector <string> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, Paintball().getLeaderboard(players, messages)); } int Test_(Case_<2>) { timer_clear(); string players_[] = {"TODD STRIKEFORCE", "BART OMEGA", "DATA STRIKEFORCE", "MILHOUSE OMEGA", "NELSON DISCOVERYCHANNEL", "MARTIN DISCOVERYCHANNEL"}; vector <string> players(players_, players_+sizeof(players_)/sizeof(*players_)); string messages_[] = {"BART SPLATTERED MARTIN","TODD SPLATTERED MARTIN"}; vector <string> messages(messages_, messages_+sizeof(messages_)/sizeof(*messages_)); string RetVal_[] = {"OMEGA 1", " BART 1", " MILHOUSE 0", "STRIKEFORCE 1", " TODD 1", " DATA 0", "DISCOVERYCHANNEL -2", " NELSON 0", " MARTIN -2" }; vector <string> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, Paintball().getLeaderboard(players, messages)); } int Test_(Case_<3>) { timer_clear(); string players_[] = {"DR COHO", "ST COHO", "PE COHO"}; vector <string> players(players_, players_+sizeof(players_)/sizeof(*players_)); string messages_[] = {"DR SPLATTERED ST", "ST SPLATTERED PE"}; vector <string> messages(messages_, messages_+sizeof(messages_)/sizeof(*messages_)); string RetVal_[] = {"COHO -2", " PE 0", " DR -1", " ST -1" }; vector <string> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, Paintball().getLeaderboard(players, messages)); } int Test_(Case_<4>) { timer_clear(); string players_[] = {"A B", "AA AA", "AAA AAA"}; vector <string> players(players_, players_+sizeof(players_)/sizeof(*players_)); string messages_[] = {"A SPLATTERED AAA", "A SPLATTERED AAA", "A SPLATTERED AAA", "AA SPLATTERED AAA", "AA SPLATTERED AAA"}; vector <string> messages(messages_, messages_+sizeof(messages_)/sizeof(*messages_)); string RetVal_[] = {"B 3", " A 3", "AA 2", " AA 2", "AAA -5", " AAA -5" }; vector <string> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, Paintball().getLeaderboard(players, messages)); } template<int N> void Run_() { cerr << "Test Case #" << N << "..." << flush; Test_(Case_<N>()); Run_<sizeof(Test_(Case_<N+1>()))==1 ? -1 : N+1>(); } template<> void Run_<-1>() {} int main() { Run_<0>(); } // END CUT HERE // BEGIN CUT HERE /* // PROBLEM STATEMENT // For his birthday, Bart received the brand new video game "Paintball!". In this game, a person plays on teams over the Internet against various competitors, attempting to hit their opponents with paint balls. Each player earns a point each time that they "splatter" an opponent with a paintball, and lose a point for each time they get "splattered". Due to the way that the game is played, it is also possible to accidentally splatter yourself or a teammate. In that case, the shooter loses a point, and the person who was splattered (if not the shooter) does not lose any points. A team's score is simply the sum of the scores of its players. Although Bart loves the game, he is disappointed that the game does not provide a leaderboard during gameplay. However, it does provide the list of players, formatted as "NAME TEAM" (where NAME is the player's name, and TEAM is his team), and a series of messages, each formatted as "NAME1 SPLATTERED NAME2" (all quotes for clarity), where NAME1 indicates the name of the person who shot the paintball, and NAME2 indicates the name of the person who got splattered. Bart would like to have an updated scoreboard, and that is where you come in. All teams will receive a rank number from 1 to M (the total number of teams), based on the team scores (with 1 corresponding to the highest score). If multiple teams have the same score, then the team with the name that comes first alphabetically will receive a lower rank number. For each team (in order from 1 to M), its leaderboard entry will be formatted as follows: The first line will be "TEAM SCORE" (quotes for clarity), where TEAM is the team name, and SCORE is the team score (with no extra leading zeroes). Let N be the number of players on the team. Assign rank numbers to the N players from 1 to N, giving a lower rank number to a higher score. If multiple players have the same score, assign the player whose name comes first alphabetically to the lower rank number. From the player with rank 1 to rank N, output a line with 2 spaces, the player's name, a single space, and then the player's score (with no extra leading zeroes). Thus, if player A from team RED splatters player B from team BLUE (and they are the only players in the game), the leaderboard will be: RED 1 A 1 BLUE -1 B -1 You are to generate the leaderboard and return it. DEFINITION Class:Paintball Method:getLeaderboard Parameters:vector <string>, vector <string> Returns:vector <string> Method signature:vector <string> getLeaderboard(vector <string> players, vector <string> messages) NOTES -A SCORE of 0 should be output as 0, not as -0. CONSTRAINTS -players will contain between 1 and 50 elements, inclusive. -Each element of players will contain between 3 and 50 characters, inclusive. -Each element of players will be formatted as "NAME TEAM" (quotes for clarity). -In each element of players, NAME will consist of uppercase characters ('A'-'Z') and will contain at least 1 character. -There will be no duplicate NAMEs in players. -In each element of players, TEAM will consist of uppercase characters ('A'-'Z') and will contain at least 1 character. -messages will contain between 1 and 50 elements, inclusive. -Each element of messages will contain between 14 and 50 characters, inclusive. -Each element of messages will be formatted as described in the problem statement. -In each element of messages, NAME1 and NAME2 will be NAMEs found in players. EXAMPLES 0) {"A RED", "B BLUE"} {"A SPLATTERED B"} Returns: {"RED 1", " A 1", "BLUE -1", " B -1" } The example from the statement. 1) {"LISA RED", "BART RED", "HOMER BLUE", "MARGE BLUE", "MAGGIE GREEN"} {"MAGGIE SPLATTERED HOMER", "MAGGIE SPLATTERED MARGE"} Returns: {"GREEN 2", " MAGGIE 2", "RED 0", " BART 0", " LISA 0", "BLUE -2", " HOMER -1", " MARGE -1" } 2) {"TODD STRIKEFORCE", "BART OMEGA", "DATA STRIKEFORCE", "MILHOUSE OMEGA", "NELSON DISCOVERYCHANNEL", "MARTIN DISCOVERYCHANNEL"} {"BART SPLATTERED MARTIN","TODD SPLATTERED MARTIN"} Returns: {"OMEGA 1", " BART 1", " MILHOUSE 0", "STRIKEFORCE 1", " TODD 1", " DATA 0", "DISCOVERYCHANNEL -2", " NELSON 0", " MARTIN -2" } 3) {"DR COHO", "ST COHO", "PE COHO"} {"DR SPLATTERED ST", "ST SPLATTERED PE"} Returns: {"COHO -2", " PE 0", " DR -1", " ST -1" } Don't shoot your teammates! 4) {"A B", "AA AA", "AAA AAA"} {"A SPLATTERED AAA", "A SPLATTERED AAA", "A SPLATTERED AAA", "AA SPLATTERED AAA", "AA SPLATTERED AAA"} Returns: {"B 3", " A 3", "AA 2", " AA 2", "AAA -5", " AAA -5" } */ // END CUT HERE
[ "naoya_t@users.sourceforge.jp" ]
naoya_t@users.sourceforge.jp
eab22b6f5664d5cc25930f1a54b6f6d005924707
8947812c9c0be1f0bb6c30d1bb225d4d6aafb488
/02_Library/Include/XMCocos2D-v3/network/HttpResponse.h
874d89299c33671ff3263711829f93a72b034122
[ "MIT" ]
permissive
alissastanderwick/OpenKODE-Framework
cbb298974e7464d736a21b760c22721281b9c7ec
d4382d781da7f488a0e7667362a89e8e389468dd
refs/heads/master
2021-10-25T01:33:37.821493
2016-07-12T01:29:35
2016-07-12T01:29:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,329
h
/* ----------------------------------------------------------------------------------- * * File HttpResponse.h * Ported By Young-Hwan Mun * Contact xmsoft77@gmail.com * * ----------------------------------------------------------------------------------- * * Copyright (c) 2010-2014 XMSoft * Copyright (c) 2010-2012 cocos2d-x.org * * http://www.cocos2d-x.org * * ----------------------------------------------------------------------------------- * * 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. * * --------------------------------------------------------------------------------- */ #ifndef __HttpResponse_h__ #define __HttpResponse_h__ #include "network/HttpRequest.h" namespace network { /** * @brief defines the object which users will receive at onHttpCompleted(sender, HttpResponse) callback * Please refer to samples/TestCpp/Classes/ExtensionTest/NetworkTest/HttpClientTest.cpp as a sample * @since v2.0.2 */ class HttpResponse : public cocos2d::Object { public : /** * Constructor, it's used by HttpClient internal, users don't need to create HttpResponse manually * @param request the corresponding HttpRequest which leads to this response */ HttpResponse ( HttpRequest* pRequest ) { m_pHttpRequest = pRequest; if ( m_pHttpRequest ) { m_pHttpRequest->retain ( ); } m_bSucceed = false; m_aResponseData.clear ( ); m_aErrorBuffer.clear ( ); } /** * Destructor, it will be called in HttpClient internal, * users don't need to desturct HttpResponse object manully */ virtual ~HttpResponse ( KDvoid ) { if ( m_pHttpRequest ) { m_pHttpRequest->release ( ); } } /** Override autorelease method to prevent developers from calling it */ cocos2d::Object* autorelease ( KDvoid ) { CCASSERT ( false, "HttpResponse is used between network thread and ui thread therefore, autorelease is forbidden here" ); return KD_NULL; } // getters, will be called by users /** * Get the corresponding HttpRequest object which leads to this response * There's no paired setter for it, coz it's already setted in class constructor */ inline HttpRequest* getHttpRequest ( KDvoid ) { return m_pHttpRequest; } /** * To see if the http reqeust is returned successfully, * Althrough users can judge if (http return code = 200), we want an easier way * If this getter returns false, you can call getResponseCode and getErrorBuffer to find more details */ inline KDbool isSucceed ( KDvoid ) { return m_bSucceed; }; /** Get the http response raw data */ inline std::vector<KDchar>* getResponseData ( KDvoid ) { return &m_aResponseData; } /** get the Rawheader **/ inline std::vector<KDchar>* getResponseHeader ( KDvoid ) { return &m_aResponseHeader; } /** Get the http response errorCode * I know that you want to see http 200 :) */ inline KDint getResponseCode ( KDvoid ) { return m_nResponseCode; } /** * Get the rror buffer which will tell you more about the reason why http request failed */ inline const KDchar* getErrorBuffer ( KDvoid ) { return m_aErrorBuffer.c_str ( ); } // setters, will be called by HttpClient // users should avoid invoking these methods /** * Set if the http request is returned successfully, * Althrough users can judge if (http code == 200), we want a easier way * This setter is mainly used in HttpClient, users mustn't set it directly */ inline KDvoid setSucceed ( KDbool bValue ) { m_bSucceed = bValue; }; /** * Set the http response raw buffer, is used by HttpClient */ inline KDvoid setResponseData ( std::vector<KDchar>* pData ) { m_aResponseData = *pData; } /** * Set the http response Header raw buffer, is used by HttpClient */ inline KDvoid setResponseHeader ( std::vector<KDchar>* pData ) { m_aResponseHeader = *pData; } /** * Set the http response errorCode */ inline KDvoid setResponseCode ( KDint nValue ) { m_nResponseCode = nValue; } /** * Set the error buffer which will tell you more the reason why http request failed */ inline KDvoid setErrorBuffer ( const KDchar* pValue ) { m_aErrorBuffer.clear ( ); m_aErrorBuffer.assign ( pValue ); }; protected : KDbool initWithRequest ( HttpRequest* pRequest ); // properties HttpRequest* m_pHttpRequest; /// the corresponding HttpRequest pointer who leads to this response KDbool m_bSucceed; /// to indecate if the http reqeust is successful simply std::vector<KDchar> m_aResponseData; /// the returned raw data. You can also dump it as a string std::vector<KDchar> m_aResponseHeader; /// the returned raw header data. You can also dump it as a string KDint m_nResponseCode; /// the status code returned from libcurl, e.g. 200, 404 std::string m_aErrorBuffer; /// if _responseCode != 200, please read _errorBuffer to find the reason }; } #endif // __HttpResponse_h__
[ "mcodegeeks@gmail.com" ]
mcodegeeks@gmail.com
2879611e1e15c17c1b77a8b264988832cde8db0d
2d7930d9fbea2f8492b47f2b4a4bfca501f1add7
/TwoChoice/States.cpp
5ac5089cb8356aebf7975c52a2af377e1980380c
[]
no_license
danieldkato/ArduFSM
e5963351af58b6f07d76be813caceb4cb9dc10b0
fd5418c857b1852e09805e497fb92d29e80e6f4b
refs/heads/master
2022-02-03T09:11:33.102805
2021-10-07T01:21:37
2021-10-07T01:21:37
52,998,161
0
0
null
2016-03-02T21:36:05
2016-03-02T21:36:05
null
UTF-8
C++
false
false
18,602
cpp
/* Implementation file for declaring protocol-specific states. This implements a two-alternative choice task with two lick ports. Defines the following: * param_abbrevs, which defines the shorthand for the trial parameters * param_values, which define the defaults for those parameters * results_abbrevs, results_values, default_results_values * implements the state functions and state objects */ #include "States.h" #include "Arduino.h" #include "hwconstants.h" #ifndef __HWCONSTANTS_H_USE_STEPPER_DRIVER #include "Stepper.h" #endif #ifndef __HWCONSTANTS_H_USE_IR_DETECTOR #include "mpr121.h" #endif #ifdef __HWCONSTANTS_H_USE_IR_DETECTOR #include "ir_detector.h" #endif // include this one just to get __TRIAL_SPEAK_YES #include "chat.h" //#define EXTRA_180DEG_ROT extern STATE_TYPE next_state; // These should go into some kind of Protocol.h or something char* param_abbrevs[N_TRIAL_PARAMS] = { "STPPOS", "MRT", "RWSD", "SRVPOS", "ITI", "2PSTP", "SRVFAR", "SRVTT", "RWIN", "IRI", "RD_L", "RD_R", "SRVST", "PSW", "TOE", "TO", "STPSPD", "STPFR", "STPIP", "ISRND", "TOUT", "RELT", "STPHAL", "HALPOS", "DIRDEL", "OPTO", }; long param_values[N_TRIAL_PARAMS] = { 1, 1, 1, 1, 3000, 0, 1900, 4500, 45000, 500, 40, 40, 1000, 1, 1, 6000, 20, 50, 50, 0, 6, 3, 0, 50, 0, 0, }; // Whether to report on each trial // Currently, manually match this up with Python-side // Later, maybe make this settable by Python, and default to all True // Similarly, find out which are required on each trial, and error if they're // not set. Currently all that are required_ET are also reported_ET. bool param_report_ET[N_TRIAL_PARAMS] = { 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, }; char* results_abbrevs[N_TRIAL_RESULTS] = {"RESP", "OUTC"}; long results_values[N_TRIAL_RESULTS] = {0, 0}; long default_results_values[N_TRIAL_RESULTS] = {0, 0}; // Global, persistent variable to remember where the stepper is long sticky_stepper_position = 0; //// State definitions #ifndef __HWCONSTANTS_H_USE_STEPPER_DRIVER extern Stepper* stimStepper; #endif //// StateResponseWindow void StateResponseWindow::update(uint16_t touched) { my_touched = touched; } void StateResponseWindow::loop() { int current_response; bool licking_l; bool licking_r; unsigned long time = millis(); // get the licking state // overridden in FakeResponseWindow set_licking_variables(licking_l, licking_r); // Turn off laser if we've been in the state for long enough if ((time - (timer - duration)) > 3000) { digitalWrite(__HWCONSTANTS_H_OPTO, 1); } // transition if max rewards reached if (my_rewards_this_trial >= param_values[tpidx_MRT]) { next_state = INTER_TRIAL_INTERVAL; flag_stop = 1; return; } // Do nothing if both or neither are being licked. // Otherwise, assign current_response. if (!licking_l && !licking_r) return; else if (licking_l && licking_r) return; else if (licking_l && !licking_r) current_response = LEFT; else if (!licking_l && licking_r) current_response = RIGHT; else Serial.println("ERR this should never happen"); // Only assign result if this is the first response if (results_values[tridx_RESPONSE] == 0) results_values[tridx_RESPONSE] = current_response; // Move to reward state, or error if TOE is set, or otherwise stay if ((current_response == LEFT) && (param_values[tpidx_REWSIDE] == LEFT)) { // Hit on left next_state = REWARD_L; my_rewards_this_trial++; results_values[tridx_OUTCOME] = OUTCOME_HIT; } else if ((current_response == RIGHT) && (param_values[tpidx_REWSIDE] == RIGHT)) { // Hit on right next_state = REWARD_R; my_rewards_this_trial++; results_values[tridx_OUTCOME] = OUTCOME_HIT; } else if (param_values[tpidx_TERMINATE_ON_ERR] == __TRIAL_SPEAK_NO) { // Error made, TOE is false // Decide how to deal with this non-TOE case } else { // Error made, TOE is true next_state = ERROR; // The type of error depends on whether it's gonogo or 2AFC if (param_values[tpidx_REWSIDE] == NOGO) { // Response should have been nogo, so he made a false positive or a spoil if (current_response == RIGHT) { // Licked when he shouldn't have done anything results_values[tridx_OUTCOME] = OUTCOME_ERROR; } else { // Licked the wrong pipe results_values[tridx_OUTCOME] = OUTCOME_SPOIL; } } else { // 2AFC task, so it's an error for licking the wrong way results_values[tridx_OUTCOME] = OUTCOME_ERROR; } } } void StateResponseWindow::s_finish() { // Turn off laser, if it was on digitalWrite(__HWCONSTANTS_H_OPTO, 1); // If response is still not set, mark as a nogo response if (results_values[tridx_RESPONSE] == 0) { // The response was nogo results_values[tridx_RESPONSE] = NOGO; // Outcome depends on what he was supposed to do if (param_values[tpidx_REWSIDE] == NOGO) { // Correctly did nothing on a NOGO trial results_values[tridx_OUTCOME] = OUTCOME_HIT; } else { // If this is a 2AFC task, then this is a spoil. // If this is a gonogo task, then this is a miss. // No way to tell which is which right now, so just call it a spoil // regardless. results_values[tridx_OUTCOME] = OUTCOME_SPOIL; } // In any case the trial is over next_state = INTER_TRIAL_INTERVAL; } } void StateResponseWindow::set_licking_variables(bool &licking_l, bool &licking_r) { /* Gets the current licking status from the touched variable for each port */ licking_l = (get_touched_channel(my_touched, 0) == 1); licking_r = (get_touched_channel(my_touched, 1) == 1); } //// StateFakeResponsewindow // Differs only in that it randomly fakes a response void StateFakeResponseWindow::set_licking_variables(bool &licking_l, bool &licking_r) { /* Fakes a response by randomly choosing lick status for each */ licking_l = (random(0, 10000) < 3); licking_r = (random(0, 10000) < 3); } //// Interrotation pause void StateInterRotationPause::s_finish() { next_state = ROTATE_STEPPER2; } //// StateErrorTimeout void StateErrorTimeout::s_finish() { next_state = INTER_TRIAL_INTERVAL; } void StateErrorTimeout::s_setup() { // Turn off laser, if it was on digitalWrite(__HWCONSTANTS_H_OPTO, 1); my_linServo.write(param_values[tpidx_SRV_FAR]); } //// Wait for servo move void StateWaitForServoMove::update(Servo linServo) { // Actually this belongs in the constructor. my_linServo = linServo; } void StateWaitForServoMove::s_setup() { my_linServo.write(param_values[tpidx_SRVPOS]); //~ next_state = ROTATE_STEPPER1; } void StateWaitForServoMove::loop() { unsigned long time = millis(); // First set opto if ( (param_values[tpidx_OPTO] == __TRIAL_SPEAK_YES) && ((time - timer) > -2000)) { digitalWrite(__HWCONSTANTS_H_OPTO, 0); } // Now set direct delivery if ((param_values[tpidx_DIRECT_DELIVERY] == __TRIAL_SPEAK_NO) || (direct_delivery_delivered == 1)) { return; } if ((time - timer) > -500) { if (param_values[tpidx_REWSIDE] == LEFT) { Serial.print(time); Serial.println(" EV DDR_L"); digitalWrite(L_REWARD_VALVE, HIGH); delay(param_values[tpidx_REWARD_DUR_L]); digitalWrite(L_REWARD_VALVE, LOW); } else if (param_values[tpidx_REWSIDE] == RIGHT) { Serial.print(time); Serial.println(" EV DDR_R"); digitalWrite(R_REWARD_VALVE, HIGH); delay(param_values[tpidx_REWARD_DUR_R]); digitalWrite(R_REWARD_VALVE, LOW); } direct_delivery_delivered = 1; } } void StateWaitForServoMove::s_finish() { next_state = RESPONSE_WINDOW; } //// Inter-trial interval void StateInterTrialInterval::s_setup() { // Turn off laser, if it was on digitalWrite(__HWCONSTANTS_H_OPTO, 1); // First-time code: Report results for(int i=0; i < N_TRIAL_RESULTS; i++) { Serial.print(time_of_last_call); Serial.print(" TRLR "); Serial.print(results_abbrevs[i]); Serial.print(" "); Serial.println(results_values[i]); } } void StateInterTrialInterval::s_finish() { next_state = WAIT_TO_START_TRIAL; } //// Non-class states int state_rotate_stepper1(STATE_TYPE& next_state) { /* Start rotating the stepper motor. The first rotation is always the same amount. The second rotation later achieves the final position. The house light is also turned off now. */ //~ digitalWrite(__HWCONSTANTS_H_HOUSE_LIGHT, LOW); rotate(param_values[tpidx_STEP_FIRST_ROTATION]); // Rotate randomly +180 or -180 to confuse the subject // This should be its own state but let's keep it simple for now // Could get this as a trial param int steps = random(0, 2); // convert to steps, +100 or -100 steps = steps * 200 - 100; // rotate #ifdef EXTRA_180DEG_ROT delay(50); // between 1st and intermediate rotate(steps); #endif next_state = INTER_ROTATION_PAUSE; return 0; } int state_rotate_stepper2(STATE_TYPE& next_state) { /* The second rotation goes to the final position */ // Calculate how much more we need to rotate long remaining_rotation = param_values[tpidx_STPPOS] - sticky_stepper_position; int step_size = 1; int actual_steps = remaining_rotation; digitalWrite(__HWCONSTANTS_H_HOUSE_LIGHT, LOW); // Take a shorter negative rotation, if available // For instance, to go from 0 to 150, it's better to go -50 if (remaining_rotation > 100) remaining_rotation -= 200; // convoluted way to determine step_size if (remaining_rotation < 0) step_size = -1; // Perform the rotation if (param_values[tpidx_STP_HALL] == __TRIAL_SPEAK_YES) { // Rotate to sensor if available, otherwise regular rotation if (param_values[tpidx_STPPOS] == param_values[tpidx_STP_POSITIVE_STPPOS]) actual_steps = rotate_to_sensor(step_size, 1, param_values[tpidx_STPPOS], 1); else if (param_values[tpidx_STPPOS] == ((param_values[tpidx_STP_POSITIVE_STPPOS] + 100) % 200)) actual_steps = rotate_to_sensor(step_size, 0, param_values[tpidx_STPPOS], 1); else if (param_values[tpidx_STPPOS] == 199) { // Rotate to negative reading on second sensor actual_steps = rotate_to_sensor(step_size, 0, param_values[tpidx_STPPOS], 2); } else if (param_values[tpidx_STPPOS] == 100) { // Rotate to positive reading on second sensor actual_steps = rotate_to_sensor(step_size, 1, param_values[tpidx_STPPOS], 2); } else { // no sensor available rotate(remaining_rotation); } if (actual_steps != remaining_rotation) { Serial.print(millis()); Serial.print(" DBG STPERR "); Serial.println(actual_steps - remaining_rotation); } } else { // This is the old rotation function rotate(remaining_rotation); } next_state = MOVE_SERVO; return 0; } int rotate_to_sensor(int step_size, bool positive_peak, long set_position, int hall_sensor_id) { /* Rotate to a position where the Hall effect sensor detects a peak. step_size : typically 1 or -1, the number of steps to use between checks positive_peak : whether to stop when a positive or negative peak detected set_position : will set "sticky_stepper_position" to this afterwards hall_sensor_id : 1 or 2, depending on which hall sensor to read */ bool keep_going = 1; int sensor; int prev_sensor = sensor; int actual_steps = 0; #ifdef __HWCONSTANTS_H_USE_STEPPER_DRIVER long nondirectional_steps = 0; #endif // Keep track of the previous values int sensor_history[__HWCONSTANTS_H_SENSOR_HISTORY_SZ] = {0}; int sensor_history_idx = 0; if (hall_sensor_id == 1) { sensor = analogRead(__HWCONSTANTS_H_HALL1); } else if (hall_sensor_id == 2) { sensor = analogRead(__HWCONSTANTS_H_HALL2); } // Store in circular buffer sensor_history[sensor_history_idx] = sensor; sensor_history_idx = (sensor_history_idx + 1) % __HWCONSTANTS_H_SENSOR_HISTORY_SZ; #ifndef __HWCONSTANTS_H_USE_STEPPER_DRIVER digitalWrite(TWOPIN_ENABLE_STEPPER, HIGH); delay(__HWCONSTANTS_H_STP_POST_ENABLE_DELAY); #endif #ifdef __HWCONSTANTS_H_USE_STEPPER_DRIVER #ifdef __HWCONSTANTS_H_INVERT_STEPPER_DIRECTION // Step forwards or backwards if (step_size < 0) { nondirectional_steps = -step_size * __HWCONSTANTS_H_MICROSTEP; digitalWrite(__HWCONSTANTS_H_STEP_DIR, HIGH); } else { nondirectional_steps = step_size * __HWCONSTANTS_H_MICROSTEP; digitalWrite(__HWCONSTANTS_H_STEP_DIR, LOW); } #endif #ifndef __HWCONSTANTS_H_INVERT_STEPPER_DIRECTION // Step forwards or backwards if (step_size < 0) { nondirectional_steps = -step_size * __HWCONSTANTS_H_MICROSTEP; digitalWrite(__HWCONSTANTS_H_STEP_DIR, LOW); } else { nondirectional_steps = step_size * __HWCONSTANTS_H_MICROSTEP; digitalWrite(__HWCONSTANTS_H_STEP_DIR, HIGH); } #endif #endif // iterate till target found while (keep_going) { // Rotate the correct number of steps #ifdef __HWCONSTANTS_H_USE_STEPPER_DRIVER for (int i=0; i<nondirectional_steps; i++) { rotate_one_step(); } #endif #ifndef __HWCONSTANTS_H_USE_STEPPER_DRIVER stimStepper->step(step_size); #endif actual_steps += step_size; // update sensor and store previous value prev_sensor = sensor; if (hall_sensor_id == 1) { sensor = analogRead(__HWCONSTANTS_H_HALL1); } else if (hall_sensor_id == 2) { sensor = analogRead(__HWCONSTANTS_H_HALL2); } // Store in circular buffer sensor_history[sensor_history_idx] = sensor; sensor_history_idx = (sensor_history_idx + 1) % __HWCONSTANTS_H_SENSOR_HISTORY_SZ; // test if peak found if (positive_peak && (prev_sensor > (512 + __HWCONSTANTS_H_HALL_THRESH)) && ((sensor - prev_sensor) < -2)) { // Positive peak: sensor is high, but decreasing keep_going = 0; } else if (!positive_peak && (prev_sensor < (512 - __HWCONSTANTS_H_HALL_THRESH)) && ((sensor - prev_sensor) > 2)) { // Negative peak: sensor is low, but increasing keep_going = 0; } // Quit if >400 steps have been taken if (abs(actual_steps) > 400) { Serial.print(millis()); Serial.println(" DBG STEPS400"); keep_going = 0; } } // Dump the circular buffer Serial.print(millis()); Serial.print(" SENH "); for (int i=0; i<__HWCONSTANTS_H_SENSOR_HISTORY_SZ; i++) { Serial.print(sensor_history[ (sensor_history_idx + i + 1) % __HWCONSTANTS_H_SENSOR_HISTORY_SZ]); Serial.print(" "); } Serial.println(""); // Undo the last step to reach peak exactly #ifdef __HWCONSTANTS_H_USE_STEPPER_DRIVER #ifdef __HWCONSTANTS_H_INVERT_STEPPER_DIRECTION // Step forwards or backwards if (step_size < 0) { digitalWrite(__HWCONSTANTS_H_STEP_DIR, LOW); } else { digitalWrite(__HWCONSTANTS_H_STEP_DIR, HIGH); } #endif #ifndef __HWCONSTANTS_H_INVERT_STEPPER_DIRECTION // Step forwards or backwards if (step_size < 0) { digitalWrite(__HWCONSTANTS_H_STEP_DIR, HIGH); } else { digitalWrite(__HWCONSTANTS_H_STEP_DIR, LOW); } #endif rotate_one_step(); #endif // Disable H-bridge to prevent overheating #ifndef __HWCONSTANTS_H_USE_STEPPER_DRIVER digitalWrite(TWOPIN_ENABLE_STEPPER, LOW); #endif // update to specified position sticky_stepper_position = set_position; return actual_steps; } int rotate(long n_steps) { /* Low-level rotation function I think positive n_steps means CCW and negative n_steps means CW. It does on L2, at least. */ #ifdef __HWCONSTANTS_H_USE_STEPPER_DRIVER // This incorporates microstepping and will always be positive long nondirectional_steps = 0; #ifdef __HWCONSTANTS_H_INVERT_STEPPER_DIRECTION // Step forwards or backwards if (n_steps < 0) { nondirectional_steps = -n_steps * __HWCONSTANTS_H_MICROSTEP; digitalWrite(__HWCONSTANTS_H_STEP_DIR, HIGH); } else { nondirectional_steps = n_steps * __HWCONSTANTS_H_MICROSTEP; digitalWrite(__HWCONSTANTS_H_STEP_DIR, LOW); } #endif #ifndef __HWCONSTANTS_H_INVERT_STEPPER_DIRECTION // Step forwards or backwards if (n_steps < 0) { nondirectional_steps = -n_steps * __HWCONSTANTS_H_MICROSTEP; digitalWrite(__HWCONSTANTS_H_STEP_DIR, LOW); } else { nondirectional_steps = n_steps * __HWCONSTANTS_H_MICROSTEP; digitalWrite(__HWCONSTANTS_H_STEP_DIR, HIGH); } #endif // Rotate the correct number of steps for (int i=0; i<nondirectional_steps; i++) { rotate_one_step(); } #endif #ifndef __HWCONSTANTS_H_USE_STEPPER_DRIVER // Enable the stepper according to the type of setup digitalWrite(TWOPIN_ENABLE_STEPPER, HIGH); // Sometimes the stepper spins like crazy without a delay here delay(__HWCONSTANTS_H_STP_POST_ENABLE_DELAY); // BLOCKING CALL // // Replace this with more iterations of smaller steps stimStepper->step(n_steps); // Disable H-bridge to prevent overheating delay(__HWCONSTANTS_H_STP_POST_ENABLE_DELAY); digitalWrite(TWOPIN_ENABLE_STEPPER, LOW); #endif // update sticky_stepper_position sticky_stepper_position = sticky_stepper_position + n_steps; // keep it in the range [0, 200) sticky_stepper_position = (sticky_stepper_position + 200) % 200; return 0; } #ifdef __HWCONSTANTS_H_USE_STEPPER_DRIVER void rotate_one_step() { // Pulse the step pin, then delay the specified number of microseconds digitalWrite(__HWCONSTANTS_H_STEP_PIN, HIGH); delayMicroseconds(__HWCONSTANTS_H_STEP_HALFDELAY_US / __HWCONSTANTS_H_MICROSTEP); digitalWrite(__HWCONSTANTS_H_STEP_PIN, LOW); delayMicroseconds(__HWCONSTANTS_H_STEP_HALFDELAY_US / __HWCONSTANTS_H_MICROSTEP); } #endif //// Post-reward state void StatePostRewardPause::s_finish() { next_state = RESPONSE_WINDOW; } // The reward states use delay because they need to be millisecond-precise int state_reward_l(STATE_TYPE& next_state) { digitalWrite(L_REWARD_VALVE, HIGH); delay(param_values[tpidx_REWARD_DUR_L]); digitalWrite(L_REWARD_VALVE, LOW); next_state = POST_REWARD_PAUSE; return 0; } int state_reward_r(STATE_TYPE& next_state) { digitalWrite(R_REWARD_VALVE, HIGH); delay(param_values[tpidx_REWARD_DUR_R]); digitalWrite(R_REWARD_VALVE, LOW); next_state = POST_REWARD_PAUSE; return 0; }
[ "xrodgers@gmail.com" ]
xrodgers@gmail.com
1156e205c3905c8a7cdf33add20d444e77db7a1a
dd2d38732611466e18135f11778653731335e881
/1400LOG/test/main.cpp
6fa222a8f0fd69662687da8887eb62f6fe7bf950
[]
no_license
wwlong/tools_study
d4fe05e52fca0ee6a6a7ea6a11ffbd787e79afb6
05dbde02b71faadd90e8b753e23b8e8377c97a17
refs/heads/master
2021-04-03T08:39:27.776935
2018-12-26T05:50:26
2018-12-26T05:50:26
124,504,077
0
0
null
null
null
null
UTF-8
C++
false
false
602
cpp
#include <stdio.h> #include <string.h> #include "1400log.h" int main() { const char *logname = "log.txt"; LP_DG_LOG logHandler = log_init(logname); if(NULL == logHandler) { printf("logHandler init failed\n"); return -1; } log_enable(logHandler); int count = 0; while(1) { char msg[1024]; memset(msg, 0, sizeof(msg)); sprintf(msg, "hello_%d", count ++); log_save(logHandler, msg); count ++; if(count > 100) { break; } } //清理资源 log_deinit(logHandler); return 0; }
[ "wenlongwang@deepglint.com" ]
wenlongwang@deepglint.com
497a4c8ca495dde0e71d1dd4d9cb4ca260458eb5
99df2b728f7786f8df7a4c7c340e28c361d20171
/src/common.cpp
47ef40543d36c31dfc03209191ad698c86f6209f
[]
no_license
sunnyss12/text_query
df9e4d3f053c74e93ed1552bf2b8f2a28f310aa3
f9a4168ca361bdd10cd6d3f54c06474ce17c4280
refs/heads/master
2021-01-10T19:01:51.579621
2015-08-18T07:28:16
2015-08-18T07:28:16
37,717,879
0
0
null
null
null
null
UTF-8
C++
false
false
192
cpp
#include "common.h" bool isFileExist(const char* filepath) { std::fstream fin; fin.open(filepath,std::fstream::in); if(!fin) return false; else return true; }
[ "yinjing@localhost.localdomain" ]
yinjing@localhost.localdomain
8dd075ba9733bb14458b362a620d54af549fd00c
ccf2b344aac357dcdb7bf8e6be6b0791080d9d96
/externals/sfzCore/src/sfz/math/ProjectionMatrices.cpp
185f55b35a54ae4ebb5e0674acb016f0902dd2ec
[ "LicenseRef-scancode-khronos", "MIT", "Zlib", "LicenseRef-scancode-unknown-license-reference", "BSL-1.0" ]
permissive
ambigeV/Linear-Genetic-Programming-Cuda
fa087fb5033db490299d9477459af749ce5d629a
8d078318d240993619c01126905a821bbf0a9d23
refs/heads/master
2020-04-28T00:43:07.226540
2017-02-19T09:15:29
2017-02-19T09:15:29
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
6,315
cpp
// Copyright (c) Peter Hillerström (skipifzero.com, peter@hstroem.se) // // This software is provided 'as-is', without any express or implied // warranty. In no event will the authors be held liable for any damages // arising from the use of this software. // // Permission is granted to anyone to use this software for any purpose, // including commercial applications, and to alter it and redistribute it // freely, subject to the following restrictions: // // 1. The origin of this software must not be misrepresented; you must not // claim that you wrote the original software. If you use this software // in a product, an acknowledgment in the product documentation would be // appreciated but is not required. // 2. Altered source versions must be plainly marked as such, and must not be // misrepresented as being the original software. // 3. This notice may not be removed or altered from any source distribution. #include "sfz/math/ProjectionMatrices.hpp" #include "sfz/math/MathSupport.hpp" namespace sfz { // GL View matrix (OGL right-handed, negative z into screen, positive x to the right) // ------------------------------------------------------------------------------------------------ mat4 viewMatrixGL(const vec3& origin, const vec3& dir, const vec3& up) noexcept { vec3 zAxis = -normalize(dir); // Away from screen vec3 xAxis = normalize(cross(up, zAxis)); // To the right vec3 yAxis = cross(zAxis, xAxis); // Up return mat4(xAxis.x, xAxis.y, xAxis.z, -dot(xAxis, origin), yAxis.x, yAxis.y, yAxis.z, -dot(yAxis, origin), zAxis.x, zAxis.y, zAxis.z, -dot(zAxis, origin), 0.0f, 0.0f, 0.0f, 1.0f); } // Projection matrices (Standard OpenGL [-1, 1] right-handed clip space, GL view space) // ------------------------------------------------------------------------------------------------ mat4 orthogonalProjectionGL(float l, float b, float r, float t, float n, float f) noexcept { return mat4( 2.0f / (r - l), 0.0f, 0.0f, -((r + l) / (r - l)), 0.0f, 2.0f / (t - b), 0.0f, -((t + b) / (t - b)), 0.0f, 0.0f, -2.0f / (f - n), -(f + n) / (f - n), 0.0f, 0.0f, 0.0f, 1.0f ); } mat4 orthogonalProjectionGL(vec3 leftBottomNear, vec3 rightTopFar) noexcept { return orthogonalProjectionGL(leftBottomNear.x, leftBottomNear.y, rightTopFar.x, rightTopFar.y, leftBottomNear.z, rightTopFar.z); } mat3 orthogonalProjection2DGL(vec2 center, vec2 dimensions) noexcept { float a = 2.0f / dimensions.x; float b = 2.0f / dimensions.y; return mat3( a, 0.0f, -(center.x * a), 0.0f, b, -(center.y * b), 0.0f, 0.0f, 1.0f ); } mat4 perspectiveProjectionGL(float l, float b, float r, float t, float n, float f) noexcept { return mat4( 2.0f * n / (r - l), 0.0f, (r + l) / (r - l), 0.0f, 0.0f, 2.0f * n / (t - b), (t + b) / (t - b), 0.0f, 0.0f, 0.0f, -(f + n) / (f - n), -2.0f * f * n / (f - n), 0.0f, 0.0f, -1.0f, 0.0f ); } mat4 perspectiveProjectionGL(float yFovDeg, float aspectRatio, float zNear, float zFar) noexcept { float yMax = zNear * std::tan(yFovDeg * (PI / 360.0f)); float xMax = yMax * aspectRatio; return perspectiveProjectionGL(-xMax, -yMax, xMax, yMax, zNear, zFar); } // Projection matrices (D3D/Vulkan [0, 1] left-handed clip space, GL view space) // ------------------------------------------------------------------------------------------------ mat4 perspectiveProjectionVkD3d(float l, float b, float r, float t, float n, float f) noexcept { return mat4( (2.0f * n) / (r - l), 0.0f, (l + r) / (r - l), 0.0f, 0.0f, (2.0f * n) / (t - b), (t + b) / (t - b), 0.0f, 0.0f, 0.0f, f / (n - f), n * f / (n - f), 0.0f, 0.0f, -1.0f, 0.0f ); } mat4 perspectiveProjectionVkD3d(float yFovDeg, float aspectRatio, float zNear, float zFar) noexcept { float yFov = sfz::DEG_TO_RAD * yFovDeg; float yMax = std::tan(yFov * 0.5f) * zNear; float xMax = yMax * aspectRatio; return perspectiveProjectionVkD3d(-xMax, -yMax, xMax, yMax, zNear, zFar); } mat4 reverseInfinitePerspectiveProjectionVkD3d(float l, float b, float r, float t, float n) noexcept { // Non infinite version, essentially: // {1, 0, 0, 0} // {0, 1, 0, 0} // {0, 0, -1, 1} // {0, 0, 1, 0} * perspectiveProjectionVkD3d() /*return mat4{ {(2.0f * n) / (r - l), 0.0f, (l + r) / (r - l), 0.0f}, {0.0f, (2.0f * n) / (t - b), (t + b) / (t - b), 0.0f}, {0.0f, 0.0f, (-f / (n - f)) - 1.0f, -n * f / (n - f)}, {0.0f, 0.0f, f / (n - f), n * f / (n - f)} };*/ // Same as above, but let f -> inf. // http://www.geometry.caltech.edu/pubs/UD12.pdf /*return mat4{ {(2.0f * n) / (r - l), 0.0f, (l + r) / (r - l), 0.0f}, {0.0f, (2.0f * n) / (t - b), (t + b) / (t - b), 0.0f}, {0.0f, 0.0f, 0.0f, n}, {0.0f, 0.0f, -1.0f, -n} };*/ // {1, 0, 0, 0} // {0, -1, 0, 0} // {0, 0, 1, 0} // {0, 0, 0, 1} * before // In order to flip the screen vertically and make the result correct on OpenGL with // glClipControl(GL_UPPER_LEFT, GL_ZERO_TO_ONE), also needs to change front face to clockwise, // i.e. glFrontFace(GL_CW) return mat4( (2.0f * n) / (r - l), 0.0f, (l + r) / (r - l), 0.0f, 0.0f, (-2.0f * n) / (t - b), -(t + b) / (t - b), 0.0f, 0.0f, 0.0f, 0.0f, n, 0.0f, 0.0f, -1.0f, -n ); } mat4 reverseInfinitePerspectiveProjectionVkD3d(float yFovDeg, float aspect, float zNear) noexcept { float yFov = sfz::DEG_TO_RAD * yFovDeg; float yMax = std::tan(yFov * 0.5f) * zNear; float xMax = yMax * aspect; return reverseInfinitePerspectiveProjectionVkD3d(-xMax, -yMax, xMax, yMax, zNear); } } // namespace sfz
[ "peter@hstroem.se" ]
peter@hstroem.se
31b2c80725750fcc0b98bb4cb49769bfe565a07f
0e015fe4e6bfb99d2271e51b14b545566bfdea42
/cpp/prison_break.cpp
dd7dfbee0e6cc7de21cfc0b5c7acd3b453bf4c04
[]
no_license
vivekdhir77/Everyday
1b11d3d5e26ea991d78fe9101c657fdac13826c0
fb7041cf0a07ccda21c5a1532f6fb37cc1823bfa
refs/heads/main
2023-04-23T20:24:34.713597
2021-05-13T19:12:54
2021-05-13T19:12:54
339,680,007
0
0
null
null
null
null
UTF-8
C++
false
false
435
cpp
#include<iostream> #include<cmath> #include<string> #include<vector> #include<algorithm> #define max(a,b) (a>b?a:b) #define min(a,b) (a>b?b:a) #define FA(i,start,end) for(int i=start; i<end; i++) #define FD(i,start,end) for(int i=start; i>=end; i--) typedef long int li; typedef long long int ll; using namespace std; int main() { int n; cin>>n; while(n--){ int a=0,b=0; cin>>a>>b; cout<< a*b; } }
[ "vivekdhir77@gmail.com" ]
vivekdhir77@gmail.com
2021e5b527e027c58cd67c17267d4690659604f8
3084462cc596f0d513edd65a9d7dd514a7284cc0
/DP/11.EggDrop.cpp
6e95de32fc3c7f4768ebf3fce233b62ff372cd28
[]
no_license
atlas25git/DSA_Mastery
8d330f120a040105ff3932701009f289963ec2b3
97236ff9ada502af2ee2526c8568d3163e4daa2e
refs/heads/master
2023-07-07T14:22:43.127799
2021-08-04T14:44:49
2021-08-04T14:44:49
303,709,740
5
0
null
null
null
null
UTF-8
C++
false
false
5,226
cpp
// Suppose you have N eggs and you want to determine from which floor in a K-floor building you can drop an egg such that it doesn't break. You have to determine the minimum number of attempts you need in order find the critical floor in the worst case while using the best strategy.There are few rules given below. // An egg that survives a fall can be used again. // A broken egg must be discarded. // The effect of a fall is the same for all eggs. // If the egg doesn't break at a certain floor, it will not break at any floor below. // If the eggs breaks at a certain floor, it will break at any floor above. // For more description on this problem see wiki page // Input: // The first line of input is T denoting the number of testcases.Then each of the T lines contains two positive integer N and K where 'N' is the number of eggs and 'K' is number of floor in building. // Output: // For each test case, print a single line containing one integer the minimum number of attempt you need in order find the critical floor. // Constraints: // 1<=T<=30 // 1<=N<=10 // 1<=K<=50 // Example: // Input: // 2 // 2 10 // 3 5 // Output: // 4 // 3 #include <bits/stdc++.h> using namespace std; //********************************************RECURSIVE**************************************************************** int flr(int k,int n) { //Here notice the fact that we are asked for the min attempts for the worst case //of finding out the threshold floor. //Step 2> Base cases: if(k>1 && n==1)return k;//We aren't considering the case of 0 eggs because just at when the //egg count is to be reduced by ,the base case will be hit, and would return rem. k if(k==1 && n>=1) return 1;//if just one floor is left ,then all we need is one trial if(k==0 && n>=1) return 0; // if (k == 1 || k == 0) // return k; // if (n == 1) // return k; //Here we are iteratively try for all the k floors and out of them will choose the min. no of trials required //for a worst case scenario //It is like we are dropping from say nth floor, and we iterate all of the k floors to find //this optimized nth floor int res=9999; for(int i=1;i<=k;i++) { int sub_res=max( //1. Egg Breaks flr(i-1,n-1), //2. Doesn't Breaks flr(k-i,n) ); res=min(res,sub_res); } return res +1; } //***********************************************************DP****************************************************** int flrdp(int f,int e) { //since 2 dimensions are changing in the rec. call, therefore 2 dimension dp table //we will need f+1, for f values which ranges from 0,f, //and since e ranges from 1 to e, using e elements could suffice but for the sake of //using it with index no, not by -1, we do this int dp[f+1][e+1]; int res; // **********dp-table************** // 0 1 2 3 1.Since we are using the egg col index-1 we ill ignore for e=0, // 0 #|0|0|0 as it is also not defined by our base case. // 1 #|1|1|1 // 2 #|2| | // 3 #|3| | // 4 #|4| | // 5 #|5| | for(int i=1;i<=e;i++) { dp[0][i]=0; dp[1][i]=1; } for(int i=2;i<=f;i++) dp[i][1]=i; for(int i=2;i<=f;i++) { for(int j=2;j<=e;j++) { dp[i][j]= INT_MAX; for(int x =1;x<=i;x++) { // dp[i][j]= min(dp[i][j], // 1+max(dp[i-1][j-1], // dp[i-x][j]) // ); res = 1 + max( dp[i-1][j-1], dp[i-x][j]); if (res < dp[i][j]) dp[i][j] = res; // res = 1 + max( // dp[i - 1][x - 1], // dp[i][j - x]); // if (res < dp[i][j]) // dp[i][j] = res; // int r = 1+max(dp[i-1][j-1], // dp[i-x][j]); // if(dp[i][j]< r) dp[i][j]=r; } } } return dp[f][e]; } int res(int n, int f) { int dp[n + 1][f + 1]; int res; for (int i = 1; i <= n; i++) { dp[i][1] = 1; dp[i][0] = 0; } for (int j = 1; j <= f; j++) dp[1][j] = j; for (int i = 2; i <= n; i++) { for (int j = 2; j <= f; j++) { dp[i][j] = INT_MAX; for (int x = 1; x <= j; x++) { res = 1 + max( dp[i - 1][x - 1], dp[i][j - x]); if (res < dp[i][j]) dp[i][j] = res; } } } return dp[n][f]; } int main() { freopen("input.txt","r",stdin); int t;cin>>t; while(t--){ int n,k; cin>>n>>k; cout<<flrdp(k,n)<<"\n"; } return 1; }
[ "atlas.sarthak@gmail.com" ]
atlas.sarthak@gmail.com
bfb6e6958bf5aa43c3ea1e520d920e73a5ed121a
a12d2d667fe2c6a6c4ee941e7e893db3a327c400
/ATOINFODlg.cpp
6268e3f47391f7f7be290a46a3ca51ed6d8bef0a
[]
no_license
zhanghua1984/DC_ATOinfo
926c27ba172e3bc113a9b716833a88d1137d99ca
82c84d1fe8dc6e7370513042fca90a293b296374
refs/heads/master
2020-12-02T07:55:49.678635
2017-07-10T07:28:38
2017-07-10T07:28:38
96,748,406
0
0
null
null
null
null
GB18030
C++
false
false
40,567
cpp
// ATOINFODlg.cpp : implementation file // #include "stdafx.h" #include "ATOINFO.h" #include "ATOINFODlg.h" #include "Includes.h" #include "COMPORT.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif BOOL m_bWorking; BOOL m_bHighSpeed; extern BOOL m_bThreadRXrunning; extern BOOL m_bThreadTXrunning; extern HANDLE hCom; //串口 extern BYTE m_byteRXbuffer[BUFFERLENTH]; BYTE m_byteFrame[24]; extern BYTE m_byteWriteFrame1[24]; extern BYTE m_byteWriteFrame2[24]; extern BYTE m_byteWriteFrame3[24]; extern BYTE m_byteWriteFrame4[24]; BOOL m_bConnectCom; //串口是否连接 BOOL m_bDealing; extern BOOL m_bSendPackage; #define MAXQSIZE 10000 ///////////////////////////////////////////////////////////////////////////// // CAboutDlg dialog used for App About class CAboutDlg : public CDialog { public: CAboutDlg(); // Dialog Data //{{AFX_DATA(CAboutDlg) enum { IDD = IDD_ABOUTBOX }; //}}AFX_DATA // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CAboutDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: //{{AFX_MSG(CAboutDlg) //}}AFX_MSG DECLARE_MESSAGE_MAP() }; CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD) { //{{AFX_DATA_INIT(CAboutDlg) //}}AFX_DATA_INIT } void CAboutDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CAboutDlg) //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CAboutDlg, CDialog) //{{AFX_MSG_MAP(CAboutDlg) // No message handlers //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CATOINFODlg dialog CATOINFODlg::CATOINFODlg(CWnd* pParent /*=NULL*/) : CDialog(CATOINFODlg::IDD, pParent) { //{{AFX_DATA_INIT(CATOINFODlg) //}}AFX_DATA_INIT // Note that LoadIcon does not require a subsequent DestroyIcon in Win32 m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); } void CATOINFODlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CATOINFODlg) DDX_Control(pDX, IDC_EDITSEEDATAA4, m_CSeeDataAA4); DDX_Control(pDX, IDC_EDITSEEDATAA3, m_CSeeDataAA3); DDX_Control(pDX, IDC_EDITSEEDATAA2, m_CSeeDataAA2); DDX_Control(pDX, IDC_EDITSEEDATAA1, m_CSeeDataAA1); DDX_Control(pDX, IDC_COMBOFRAMESTYLEBBYTE4, m_CBByte4); DDX_Control(pDX, IDC_COMBOFRAMESTYLEBBYTE3, m_CBByte3); DDX_Control(pDX, IDC_COMBOFRAMESTYLEBBYTE2, m_CBByte2); DDX_Control(pDX, IDC_COMBOFRAMESTYLEBBYTE1, m_CBByte1); DDX_Control(pDX, IDC_COMBOFRAMESTYLEABYTE4, m_CAByte4); DDX_Control(pDX, IDC_COMBOFRAMESTYLEABYTE3, m_CAByte3); DDX_Control(pDX, IDC_COMBOFRAMESTYLEABYTE2, m_CAByte2); DDX_Control(pDX, IDC_COMBOFRAMESTYLEABYTE1, m_CAByte1); DDX_Control(pDX, IDC_COMBODATABITBBYTE4, m_CDataBByte4); DDX_Control(pDX, IDC_COMBODATABITBBYTE3, m_CDataBByte3); DDX_Control(pDX, IDC_COMBODATABITBBYTE2, m_CDataBByte2); DDX_Control(pDX, IDC_COMBODATABITBBYTE1, m_CDataBByte1); DDX_Control(pDX, IDC_COMBODATABITABYTE4, m_CDataAByte4); DDX_Control(pDX, IDC_COMBODATABITABYTE3, m_CDataAByte3); DDX_Control(pDX, IDC_COMBODATABITABYTE2, m_CDataAByte2); DDX_Control(pDX, IDC_COMBODATABITABYTE1, m_CDataAByte1); DDX_Control(pDX, IDC_EDITSEEDATAB, m_CSeeDataB); DDX_Control(pDX, IDC_DATA1, m_CData1); DDX_Control(pDX, IDC_DECDATA, m_CDecData); DDX_Control(pDX, IDC_HEXDATA, m_CHexData); DDX_Control(pDX, IDC_RICHEDITDEBUGINFO, m_Cdebuginfo); DDX_Control(pDX, IDC_COMBODATABIT, m_CDataBit); DDX_Control(pDX, IDC_COMBOFRAMESTYLE, m_CFrameStyle); DDX_Control(pDX, IDC_RICHEDITTX, m_CTX); DDX_Control(pDX, IDC_BUTTONCOM, m_CcomButton); DDX_Control(pDX, IDC_EDITRX, m_CRXCounterByte); DDX_Control(pDX, IDC_RICHEDITRX, m_CRX); DDX_Control(pDX, IDC_COMBOLOCAL, m_CLocalAddr); DDX_Control(pDX, IDC_COMBOTARGET, m_CTargetAddr); DDX_Control(pDX, IDC_COMBOMODE, m_Cmode); DDX_Control(pDX, IDC_COMBOCOMPORTNUMBER, m_Ccomportnumber); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CATOINFODlg, CDialog) //{{AFX_MSG_MAP(CATOINFODlg) ON_WM_SYSCOMMAND() ON_WM_PAINT() ON_WM_QUERYDRAGICON() ON_MESSAGE(WM_UCOM_WRITE,OnWriteComPortMSG) ON_BN_CLICKED(IDC_BUTTONCOM, OnButtoncom) ON_CBN_SELCHANGE(IDC_COMBOCOMPORTNUMBER, OnSelchangeCombocomportnumber) ON_CBN_SELCHANGE(IDC_COMBOMODE, OnSelchangeCombomode) ON_CBN_SELCHANGE(IDC_COMBOTARGET, OnSelchangeCombotarget) ON_CBN_SELCHANGE(IDC_COMBOLOCAL, OnSelchangeCombolocal) ON_CBN_SELCHANGE(IDC_COMBOFRAMESTYLE, OnSelchangeComboframestyle) ON_CBN_SELCHANGE(IDC_COMBODATABIT, OnSelchangeCombodatabit) //}}AFX_MSG_MAP ON_MESSAGE(WM_RX,OnThreadRXMessage) ON_MESSAGE(WM_FINDAVACOMPORT,OnReceiveAComPort) END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CATOINFODlg message handlers BOOL CATOINFODlg::OnInitDialog() { CDialog::OnInitDialog(); // Add "About..." menu item to system menu. // IDM_ABOUTBOX must be in the system command range. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); ASSERT(IDM_ABOUTBOX < 0xF000); CMenu* pSysMenu = GetSystemMenu(FALSE); if (pSysMenu != NULL) { CString strAboutMenu; strAboutMenu.LoadString(IDS_ABOUTBOX); if (!strAboutMenu.IsEmpty()) { pSysMenu->AppendMenu(MF_SEPARATOR); pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu); } } // Set the icon for this dialog. The framework does this automatically // when the application's main window is not a dialog SetIcon(m_hIcon, TRUE); // Set big icon SetIcon(m_hIcon, FALSE); // Set small icon // TODO: Add extra initialization here Init(); return TRUE; // return TRUE unless you set the focus to a control } void CATOINFODlg::OnSysCommand(UINT nID, LPARAM lParam) { if ((nID & 0xFFF0) == IDM_ABOUTBOX) { CAboutDlg dlgAbout; dlgAbout.DoModal(); } else { CDialog::OnSysCommand(nID, lParam); } } // If you add a minimize button to your dialog, you will need the code below // to draw the icon. For MFC applications using the document/view model, // this is automatically done for you by the framework. void CATOINFODlg::OnPaint() { if (IsIconic()) { CPaintDC dc(this); // device context for painting SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0); // Center icon in client rectangle int cxIcon = GetSystemMetrics(SM_CXICON); int cyIcon = GetSystemMetrics(SM_CYICON); CRect rect; GetClientRect(&rect); int x = (rect.Width() - cxIcon + 1) / 2; int y = (rect.Height() - cyIcon + 1) / 2; // Draw the icon dc.DrawIcon(x, y, m_hIcon); } else { CDialog::OnPaint(); } } // The system calls this to obtain the cursor to display while the user drags // the minimized window. HCURSOR CATOINFODlg::OnQueryDragIcon() { return (HCURSOR) m_hIcon; } LRESULT CATOINFODlg::OnThreadRXMessage(WPARAM wParam,LPARAM lParam) //接收串口消息 { static int m_snc=0; m_snc+=wParam; CString m_temp; m_temp.Format("%d",m_snc); m_CRXCounterByte.SetWindowText(m_temp); for (int i=0;i<24;i++) { m_byteFrame[i]=m_byteRXbuffer[i]; m_temp.Format("%02X",m_byteRXbuffer[i]); m_strshowRX+=m_temp; } //命令解析 FrameParse(m_byteFrame); m_strshowRX+="\r\n"; m_CRX.SetSel(-1, -1); m_CRX.ReplaceSel( (LPCTSTR)m_strshowRX); m_CRX.PostMessage(WM_VSCROLL, SB_BOTTOM,0); m_strshowRX.Empty(); /* //判断缓冲区内是否够一帧数据 for (int m_nc=QueueLenth(q);m_nc>=24;) { //出队 检查是否收到0xfc if(DeQueue(q,m_byteFrame[0])!=0) { AfxMessageBox("读缓冲区失败"); } if(DeQueue(q,m_byteFrame[1])!=0) { AfxMessageBox("读缓冲区失败"); } if ((m_byteFrame[0]==0xfc)&&(m_byteFrame[1]==0x0c)) { m_strshowRX+="FC0C"; for (int j=2;j<23;j++) { DeQueue(q,m_byteFrame[j]); m_temp.Format("%02X",m_byteFrame[j]); m_strshowRX+=m_temp; } //命令解析 FrameParse(m_byteFrame); m_strshowRX+="\r\n"; m_CRX.SetSel(-1, -1); m_CRX.ReplaceSel( (LPCTSTR)m_strshowRX); m_CRX.PostMessage(WM_VSCROLL, SB_BOTTOM,0); m_nc-=24; m_strshowRX.Empty(); } else { m_nc=m_nc-2; } } if (m_strshowRX.GetLength()>1024) { m_strshowRX.Empty(); } */ //以上算法中用到内存拷贝,速度缓慢 /* //指针算法 byte * m_bytep; m_bytep=&m_byteRXbuffer[0]; m_bDealing=TRUE; //屏蔽COM口再次写入数据 for (int i=0;i<(int)wParam;i++) { if (0xFC==*m_bytep) //找到帧开始头 { m_byteFrame[0]=0xFC; i++; m_bytep++; if (0x0C==*m_bytep) //帧头确认 { m_byteFrame[1]=0x0C; i++; m_bytep++; m_strshowRX+="FC0C"; for (int j=2;j<24;j++) //连续读取22个字节 { m_byteFrame[j]=*m_bytep; i++; m_bytep++; m_temp.Format("%02X",m_byteFrame[j]); m_strshowRX+=m_temp; } /* if (CRC16CHECK(m_byteFrame,22,2)) { //命令解析 FrameParse(m_byteFrame); m_strshowRX+="\r\n"; m_CRX.SetSel(-1, -1); m_CRX.ReplaceSel( (LPCTSTR)m_strshowRX); m_CRX.PostMessage(WM_VSCROLL, SB_BOTTOM,0); m_strshowRX.Empty(); } */ // if (0xFC==*m_bytep) // { /* //命令解析 FrameParse(m_byteFrame); m_strshowRX+="\r\n"; m_CRX.SetSel(-1, -1); m_CRX.ReplaceSel( (LPCTSTR)m_strshowRX); m_CRX.PostMessage(WM_VSCROLL, SB_BOTTOM,0); m_strshowRX.Empty(); m_bytep--; // } // else // { // m_bytep-=22; // } } } m_bytep++; } m_bDealing=FALSE; */ return 0; } void CATOINFODlg::Init()//初始化数据 { CCOMPORT m_comport; m_comport.InitPort(); //串口初始化 m_Cmode.InsertString(0,"应用"); m_Cmode.InsertString(1,"平台"); m_Cmode.InsertString(2,"公用"); m_Cmode.InsertString(3,"解码"); m_Cmode.InsertString(4,"Flash Clear1"); m_Cmode.InsertString(5,"Flash Clear2"); m_Cmode.SetCurSel(0); m_nmsgstatus=0; // ATP_MPM_A地址:0x93 // ATP_MPM_B地址:0xA3 // ATP_MPM_C地址:0xB3 // ATP_MPM_D地址:0xC3 // ATO_MPM地址: 0xD3 m_CTargetAddr.InsertString(0,"ATP_MPM_A"); m_CTargetAddr.InsertString(1,"ATP_MPM_B"); m_CTargetAddr.InsertString(2,"ATP_MPM_C"); m_CTargetAddr.InsertString(3,"ATP_MPM_D"); m_CTargetAddr.InsertString(4,"ATP_MPM"); m_CTargetAddr.SetCurSel(0); m_ntargetaddr=0; m_CLocalAddr.InsertString(0,"0x02"); m_CLocalAddr.SetCurSel(0); m_CFrameStyle.InsertString(0,"70"); m_CFrameStyle.InsertString(1,"E0"); m_CFrameStyle.InsertString(2,"E1"); m_CFrameStyle.InsertString(3,"E2"); m_CFrameStyle.SetCurSel(0); m_CDataBit.InsertString(0,"DATABYTE 1"); m_CDataBit.InsertString(1,"DATABYTE 2"); m_CDataBit.InsertString(2,"DATABYTE 3"); m_CDataBit.InsertString(3,"DATABYTE 4"); m_CDataBit.InsertString(4,"DATABYTE 5"); m_CDataBit.InsertString(5,"DATABYTE 6"); m_CDataBit.InsertString(6,"DATABYTE 7"); m_CDataBit.InsertString(7,"DATABYTE 8"); m_CDataBit.InsertString(8,"DATABYTE 9"); m_CDataBit.InsertString(9,"DATABYTE 10"); m_CDataBit.InsertString(10,"DATABYTE 11"); m_CDataBit.InsertString(11,"DATABYTE 12"); m_CDataBit.InsertString(12,"DATABYTE 13"); m_CDataBit.InsertString(13,"DATABYTE 14"); m_CDataBit.InsertString(14,"DATABYTE 15"); m_CDataBit.InsertString(15,"DATABYTE 16"); m_CDataBit.InsertString(16,"DATABYTE 1+2"); m_CDataBit.InsertString(17,"DATABYTE 3+4"); m_CDataBit.InsertString(18,"DATABYTE 5+6"); m_CDataBit.InsertString(19,"DATABYTE 7+8"); m_CDataBit.InsertString(20,"DATABYTE 9+10"); m_CDataBit.InsertString(21,"DATABYTE 11+12"); m_CDataBit.InsertString(22,"DATABYTE 13+14"); m_CDataBit.InsertString(23,"DATABYTE 15+16"); m_CDataBit.InsertString(24,"DATABYTE 2+3"); m_CDataBit.InsertString(25,"DATABYTE 4+5"); m_CDataBit.InsertString(26,"DATABYTE 6+7"); m_CDataBit.InsertString(27,"DATABYTE 8+9"); m_CDataBit.InsertString(28,"DATABYTE 10+11"); m_CDataBit.InsertString(29,"DATABYTE 12+13"); m_CDataBit.InsertString(30,"DATABYTE 14+15"); m_CDataBit.SetCurSel(0); InitFrame(); if (!ConnectionDB()) { AfxMessageBox("数据库连接失败"); } m_nFramestyle=0; m_nDataByte=0; m_nSeeDataAA1=0; m_nSeeDataB=0; CString m_str; m_str.Format("%02X",m_nSeeDataAA1); m_CSeeDataAA1.SetWindowText(m_str); m_str.Format("%08X",m_nSeeDataB); m_CSeeDataB.SetWindowText(m_str); m_CAByte1.InsertString(0,"70"); m_CAByte1.InsertString(1,"E0"); m_CAByte1.InsertString(2,"E1"); m_CAByte1.InsertString(3,"E2"); m_CAByte1.SetCurSel(0); m_CAByte2.InsertString(0,"70"); m_CAByte2.InsertString(1,"E0"); m_CAByte2.InsertString(2,"E1"); m_CAByte2.InsertString(3,"E2"); m_CAByte2.SetCurSel(0); m_CAByte3.InsertString(0,"70"); m_CAByte3.InsertString(1,"E0"); m_CAByte3.InsertString(2,"E1"); m_CAByte3.InsertString(3,"E2"); m_CAByte3.SetCurSel(0); m_CAByte4.InsertString(0,"70"); m_CAByte4.InsertString(1,"E0"); m_CAByte4.InsertString(2,"E1"); m_CAByte4.InsertString(3,"E2"); m_CAByte4.SetCurSel(0); m_CBByte1.InsertString(0,"70"); m_CBByte1.InsertString(1,"E0"); m_CBByte1.InsertString(2,"E1"); m_CBByte1.InsertString(3,"E2"); m_CBByte1.SetCurSel(0); m_CBByte2.InsertString(0,"70"); m_CBByte2.InsertString(1,"E0"); m_CBByte2.InsertString(2,"E1"); m_CBByte2.InsertString(3,"E2"); m_CBByte2.SetCurSel(0); m_CBByte3.InsertString(0,"70"); m_CBByte3.InsertString(1,"E0"); m_CBByte3.InsertString(2,"E1"); m_CBByte3.InsertString(3,"E2"); m_CBByte3.SetCurSel(0); m_CBByte4.InsertString(0,"70"); m_CBByte4.InsertString(1,"E0"); m_CBByte4.InsertString(2,"E1"); m_CBByte4.InsertString(3,"E2"); m_CBByte4.SetCurSel(0); m_CDataAByte1.InsertString(0,"BYTE 1"); m_CDataAByte1.InsertString(1,"BYTE 2"); m_CDataAByte1.InsertString(2,"BYTE 3"); m_CDataAByte1.InsertString(3,"BYTE 4"); m_CDataAByte1.InsertString(4,"BYTE 5"); m_CDataAByte1.InsertString(5,"BYTE 6"); m_CDataAByte1.InsertString(6,"BYTE 7"); m_CDataAByte1.InsertString(7,"BYTE 8"); m_CDataAByte1.InsertString(8,"BYTE 9"); m_CDataAByte1.InsertString(9,"BYTE 10"); m_CDataAByte1.InsertString(10,"BYTE 11"); m_CDataAByte1.InsertString(11,"BYTE 12"); m_CDataAByte1.InsertString(12,"BYTE 13"); m_CDataAByte1.InsertString(13,"BYTE 14"); m_CDataAByte1.InsertString(14,"BYTE 15"); m_CDataAByte1.InsertString(15,"BYTE 16"); m_CDataAByte1.SetCurSel(0); m_CDataAByte2.InsertString(0,"BYTE 1"); m_CDataAByte2.InsertString(1,"BYTE 2"); m_CDataAByte2.InsertString(2,"BYTE 3"); m_CDataAByte2.InsertString(3,"BYTE 4"); m_CDataAByte2.InsertString(4,"BYTE 5"); m_CDataAByte2.InsertString(5,"BYTE 6"); m_CDataAByte2.InsertString(6,"BYTE 7"); m_CDataAByte2.InsertString(7,"BYTE 8"); m_CDataAByte2.InsertString(8,"BYTE 9"); m_CDataAByte2.InsertString(9,"BYTE 10"); m_CDataAByte2.InsertString(10,"BYTE 11"); m_CDataAByte2.InsertString(11,"BYTE 12"); m_CDataAByte2.InsertString(12,"BYTE 13"); m_CDataAByte2.InsertString(13,"BYTE 14"); m_CDataAByte2.InsertString(14,"BYTE 15"); m_CDataAByte2.InsertString(15,"BYTE 16"); m_CDataAByte2.SetCurSel(0); m_CDataAByte3.InsertString(0,"BYTE 1"); m_CDataAByte3.InsertString(1,"BYTE 2"); m_CDataAByte3.InsertString(2,"BYTE 3"); m_CDataAByte3.InsertString(3,"BYTE 4"); m_CDataAByte3.InsertString(4,"BYTE 5"); m_CDataAByte3.InsertString(5,"BYTE 6"); m_CDataAByte3.InsertString(6,"BYTE 7"); m_CDataAByte3.InsertString(7,"BYTE 8"); m_CDataAByte3.InsertString(8,"BYTE 9"); m_CDataAByte3.InsertString(9,"BYTE 10"); m_CDataAByte3.InsertString(10,"BYTE 11"); m_CDataAByte3.InsertString(11,"BYTE 12"); m_CDataAByte3.InsertString(12,"BYTE 13"); m_CDataAByte3.InsertString(13,"BYTE 14"); m_CDataAByte3.InsertString(14,"BYTE 15"); m_CDataAByte3.InsertString(15,"BYTE 16"); m_CDataAByte3.SetCurSel(0); m_CDataAByte4.InsertString(0,"BYTE 1"); m_CDataAByte4.InsertString(1,"BYTE 2"); m_CDataAByte4.InsertString(2,"BYTE 3"); m_CDataAByte4.InsertString(3,"BYTE 4"); m_CDataAByte4.InsertString(4,"BYTE 5"); m_CDataAByte4.InsertString(5,"BYTE 6"); m_CDataAByte4.InsertString(6,"BYTE 7"); m_CDataAByte4.InsertString(7,"BYTE 8"); m_CDataAByte4.InsertString(8,"BYTE 9"); m_CDataAByte4.InsertString(9,"BYTE 10"); m_CDataAByte4.InsertString(10,"BYTE 11"); m_CDataAByte4.InsertString(11,"BYTE 12"); m_CDataAByte4.InsertString(12,"BYTE 13"); m_CDataAByte4.InsertString(13,"BYTE 14"); m_CDataAByte4.InsertString(14,"BYTE 15"); m_CDataAByte4.InsertString(15,"BYTE 16"); m_CDataAByte4.SetCurSel(0); m_CDataBByte1.InsertString(0,"BYTE 1"); m_CDataBByte1.InsertString(1,"BYTE 2"); m_CDataBByte1.InsertString(2,"BYTE 3"); m_CDataBByte1.InsertString(3,"BYTE 4"); m_CDataBByte1.InsertString(4,"BYTE 5"); m_CDataBByte1.InsertString(5,"BYTE 6"); m_CDataBByte1.InsertString(6,"BYTE 7"); m_CDataBByte1.InsertString(7,"BYTE 8"); m_CDataBByte1.InsertString(8,"BYTE 9"); m_CDataBByte1.InsertString(9,"BYTE 10"); m_CDataBByte1.InsertString(10,"BYTE 11"); m_CDataBByte1.InsertString(11,"BYTE 12"); m_CDataBByte1.InsertString(12,"BYTE 13"); m_CDataBByte1.InsertString(13,"BYTE 14"); m_CDataBByte1.InsertString(14,"BYTE 15"); m_CDataBByte1.InsertString(15,"BYTE 16"); m_CDataBByte1.SetCurSel(0); m_CDataBByte2.InsertString(0,"BYTE 1"); m_CDataBByte2.InsertString(1,"BYTE 2"); m_CDataBByte2.InsertString(2,"BYTE 3"); m_CDataBByte2.InsertString(3,"BYTE 4"); m_CDataBByte2.InsertString(4,"BYTE 5"); m_CDataBByte2.InsertString(5,"BYTE 6"); m_CDataBByte2.InsertString(6,"BYTE 7"); m_CDataBByte2.InsertString(7,"BYTE 8"); m_CDataBByte2.InsertString(8,"BYTE 9"); m_CDataBByte2.InsertString(9,"BYTE 10"); m_CDataBByte2.InsertString(10,"BYTE 11"); m_CDataBByte2.InsertString(11,"BYTE 12"); m_CDataBByte2.InsertString(12,"BYTE 13"); m_CDataBByte2.InsertString(13,"BYTE 14"); m_CDataBByte2.InsertString(14,"BYTE 15"); m_CDataBByte2.InsertString(15,"BYTE 16"); m_CDataBByte2.SetCurSel(0); m_CDataBByte3.InsertString(0,"BYTE 1"); m_CDataBByte3.InsertString(1,"BYTE 2"); m_CDataBByte3.InsertString(2,"BYTE 3"); m_CDataBByte3.InsertString(3,"BYTE 4"); m_CDataBByte3.InsertString(4,"BYTE 5"); m_CDataBByte3.InsertString(5,"BYTE 6"); m_CDataBByte3.InsertString(6,"BYTE 7"); m_CDataBByte3.InsertString(7,"BYTE 8"); m_CDataBByte3.InsertString(8,"BYTE 9"); m_CDataBByte3.InsertString(9,"BYTE 10"); m_CDataBByte3.InsertString(10,"BYTE 11"); m_CDataBByte3.InsertString(11,"BYTE 12"); m_CDataBByte3.InsertString(12,"BYTE 13"); m_CDataBByte3.InsertString(13,"BYTE 14"); m_CDataBByte3.InsertString(14,"BYTE 15"); m_CDataBByte3.InsertString(15,"BYTE 16"); m_CDataBByte3.SetCurSel(0); m_CDataBByte4.InsertString(0,"BYTE 1"); m_CDataBByte4.InsertString(1,"BYTE 2"); m_CDataBByte4.InsertString(2,"BYTE 3"); m_CDataBByte4.InsertString(3,"BYTE 4"); m_CDataBByte4.InsertString(4,"BYTE 5"); m_CDataBByte4.InsertString(5,"BYTE 6"); m_CDataBByte4.InsertString(6,"BYTE 7"); m_CDataBByte4.InsertString(7,"BYTE 8"); m_CDataBByte4.InsertString(8,"BYTE 9"); m_CDataBByte4.InsertString(9,"BYTE 10"); m_CDataBByte4.InsertString(10,"BYTE 11"); m_CDataBByte4.InsertString(11,"BYTE 12"); m_CDataBByte4.InsertString(12,"BYTE 13"); m_CDataBByte4.InsertString(13,"BYTE 14"); m_CDataBByte4.InsertString(14,"BYTE 15"); m_CDataBByte4.InsertString(15,"BYTE 16"); m_CDataBByte4.SetCurSel(0); } LRESULT CATOINFODlg::OnReceiveAComPort(WPARAM wParam, LPARAM lParam) //找到串口并添加 { static int m_nindex=0; CString m_strport; m_strport.Format("COM%d",lParam); m_Ccomportnumber.InsertString(m_nindex,m_strport); m_nindex++; m_Ccomportnumber.SetCurSel(0); return 0; } void CATOINFODlg::OnButtoncom() //串口操作按钮 { // TODO: Add your control notification handler code here if (m_bConnectCom==TRUE) //串口关闭 { m_CcomButton.SetWindowText("打开串口"); OnSelchangeCombocomportnumber(); } else { m_CcomButton.SetWindowText("关闭串口"); m_bConnectCom=TRUE; CString m_strsel; int m_nselcom=m_Ccomportnumber.GetCurSel(); m_Ccomportnumber.GetLBText(m_nselcom,m_strsel); m_strsel.Delete(0,3); CCOMPORT m_comport; m_comport.OpenPort(atoi(m_strsel)); } } void CATOINFODlg::OnSelchangeCombocomportnumber()//选择串口号 { // TODO: Add your control notification handler code here //结束线程 if (m_bConnectCom==TRUE) { m_bThreadRXrunning=FALSE; m_bThreadTXrunning=FALSE; CloseHandle(hCom); m_bConnectCom=FALSE; m_CcomButton.SetWindowText("打开串口"); } } void CATOINFODlg::OnSelchangeCombomode() //串口功能选择 { // TODO: Add your control notification handler code here m_nmsgstatus=m_Cmode.GetCurSel(); switch (m_nmsgstatus) { case 0: { char m_char[]=Defcmd_UartAppOpen; for(int i=0;i<COMMANDLENTH;i++) { m_byteWriteFrame1[i+DATASTART]=m_char[i]; } break; } case 1: { char m_char[]=Defcmd_UartPlanOpen; for(int i=0;i<COMMANDLENTH;i++) { m_byteWriteFrame1[i+DATASTART]=m_char[i]; } break; } case 2: { char m_char[]=Defcmd_UartComOpen; for(int i=0;i<COMMANDLENTH;i++) { m_byteWriteFrame1[i+DATASTART]=m_char[i]; } break; } case 3: { char m_char[]=Defcmd_DspBDebugOpen; for(int i=0;i<COMMANDLENTH;i++) { m_byteWriteFrame1[i+DATASTART]=m_char[i]; } break; } case 4: { char m_char[]=Defcmd_FlashClear1; for(int i=0;i<COMMANDLENTH;i++) { m_byteWriteFrame1[i+DATASTART]=m_char[i]; } break; } case 5: { char m_char[]=Defcmd_FlashClear2; for(int i=0;i<COMMANDLENTH;i++) { m_byteWriteFrame1[i+DATASTART]=m_char[i]; } break; } } //填入第二帧数据 CString m_str; m_CData1.GetWindowText(m_str); m_byteWriteFrame2[0x06]=(unsigned char)strtol(m_str,NULL,16); m_bSendPackage=TRUE; //发送数据 } void CATOINFODlg::InitFrame()//帧值初始化 { m_byteWriteFrame1[0x00]=FRAME_HEAD1; m_byteWriteFrame2[0x00]=FRAME_HEAD1; m_byteWriteFrame3[0x00]=FRAME_HEAD1; m_byteWriteFrame4[0x00]=FRAME_HEAD1; m_byteWriteFrame1[0x01]=FRAME_HEAD2; m_byteWriteFrame2[0x01]=FRAME_HEAD2; m_byteWriteFrame3[0x01]=FRAME_HEAD2; m_byteWriteFrame4[0x01]=FRAME_HEAD2; m_byteWriteFrame1[0x02]=LOCAL_ADDRESS; m_byteWriteFrame2[0x02]=LOCAL_ADDRESS; m_byteWriteFrame3[0x02]=LOCAL_ADDRESS; m_byteWriteFrame4[0x02]=LOCAL_ADDRESS; m_byteWriteFrame1[0x05]=FRAME_SEQUENCE_70; m_byteWriteFrame2[0x05]=FRAME_SEQUENCE_E0; m_byteWriteFrame3[0x05]=FRAME_SEQUENCE_E1; m_byteWriteFrame4[0x05]=FRAME_SEQUENCE_E2; // ATP_MPM_A地址:0x93 // ATP_MPM_B地址:0xA3 // ATP_MPM_C地址:0xB3 // ATP_MPM_D地址:0xC3 // ATO_MPM地址: 0xD3 // ATO // 我是A4 下位机44 switch (m_CTargetAddr.GetCurSel()) { case 0: { m_byteWriteFrame1[0x03]=ATP_MPM_A; m_byteWriteFrame2[0x03]=ATP_MPM_A; m_byteWriteFrame3[0x03]=ATP_MPM_A; m_byteWriteFrame4[0x03]=ATP_MPM_A; break; } case 1: { m_byteWriteFrame1[0x03]=ATP_MPM_B; m_byteWriteFrame2[0x03]=ATP_MPM_B; m_byteWriteFrame3[0x03]=ATP_MPM_B; m_byteWriteFrame4[0x03]=ATP_MPM_B; break; } case 2: { m_byteWriteFrame1[0x03]=ATP_MPM_C; m_byteWriteFrame2[0x03]=ATP_MPM_C; m_byteWriteFrame3[0x03]=ATP_MPM_C; m_byteWriteFrame4[0x03]=ATP_MPM_C; break; } case 3: { m_byteWriteFrame1[0x03]=ATP_MPM_D; m_byteWriteFrame2[0x03]=ATP_MPM_D; m_byteWriteFrame3[0x03]=ATP_MPM_D; m_byteWriteFrame4[0x03]=ATP_MPM_D; break; } case 4: { m_byteWriteFrame1[0x03]=ATP_MPM; m_byteWriteFrame2[0x03]=ATP_MPM; m_byteWriteFrame3[0x03]=ATP_MPM; m_byteWriteFrame4[0x03]=ATP_MPM; break; } } OnSelchangeCombomode(); } void CATOINFODlg::OnSelchangeCombotarget() //目标板 { // TODO: Add your control notification handler code here switch (m_CTargetAddr.GetCurSel()) { case 0: { m_byteWriteFrame1[0x03]=ATP_MPM_A; m_byteWriteFrame2[0x03]=ATP_MPM_A; m_byteWriteFrame3[0x03]=ATP_MPM_A; m_byteWriteFrame4[0x03]=ATP_MPM_A; break; } case 1: { m_byteWriteFrame1[0x03]=ATP_MPM_B; m_byteWriteFrame2[0x03]=ATP_MPM_B; m_byteWriteFrame3[0x03]=ATP_MPM_B; m_byteWriteFrame4[0x03]=ATP_MPM_B; break; } case 2: { m_byteWriteFrame1[0x03]=ATP_MPM_C; m_byteWriteFrame2[0x03]=ATP_MPM_C; m_byteWriteFrame3[0x03]=ATP_MPM_C; m_byteWriteFrame4[0x03]=ATP_MPM_C; break; } case 3: { m_byteWriteFrame1[0x03]=ATP_MPM_D; m_byteWriteFrame2[0x03]=ATP_MPM_D; m_byteWriteFrame3[0x03]=ATP_MPM_D; m_byteWriteFrame4[0x03]=ATP_MPM_D; break; } case 4: { m_byteWriteFrame1[0x03]=ATP_MPM; m_byteWriteFrame2[0x03]=ATP_MPM; m_byteWriteFrame3[0x03]=ATP_MPM; m_byteWriteFrame4[0x03]=ATP_MPM; break; } } m_bSendPackage=TRUE; //发送数据 } void CATOINFODlg::OnSelchangeCombolocal() //本机地址 { // TODO: Add your control notification handler code here switch (m_CLocalAddr.GetCurSel()) { case 0: { m_byteWriteFrame1[0x02]=LOCAL_ADDRESS; m_byteWriteFrame2[0x02]=LOCAL_ADDRESS; m_byteWriteFrame3[0x02]=LOCAL_ADDRESS; m_byteWriteFrame4[0x02]=LOCAL_ADDRESS; break; } } m_bSendPackage=TRUE; //发送数据 } LRESULT CATOINFODlg::OnWriteComPortMSG(WPARAM wParam, LPARAM lParam)//串口信息发送显示 { //显示发送信息 CString m_str; CString m_strf1,m_strf2,m_strf3,m_strf4; for (int i=0;i<24;i++) { m_str.Format("%02X",m_byteWriteFrame1[i]); m_strf1+=m_str; m_str.Format("%02X",m_byteWriteFrame2[i]); m_strf2+=m_str; m_str.Format("%02X",m_byteWriteFrame3[i]); m_strf3+=m_str; m_str.Format("%02X",m_byteWriteFrame4[i]); m_strf4+=m_str; } m_strf1+="\r\n"; m_strf2+="\r\n"; m_strf3+="\r\n"; m_strf4+="\r\n"; m_str=m_strf1+m_strf2+m_strf3+m_strf4; //文件写入记录 m_CTX.ReplaceSel(m_str); m_CTX.PostMessage(WM_VSCROLL, SB_BOTTOM,0); return 0; } BOOL CATOINFODlg::ConnectionDB()//数据库连接 { m_pConnection.CreateInstance(__uuidof(Connection)); CString m_strSQL; m_strSQL="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=debuginfo.mdb"; try { m_pConnection->Open((_bstr_t)m_strSQL,"","",adModeUnknown); } catch(_com_error e) { CString m_strError; m_strError.Format("数据库连接异常,异常信息: %s , %s",e.Description(),e.ErrorMessage()); AfxMessageBox(m_strError); return FALSE; } return TRUE; } void CATOINFODlg::FrameParse(byte *m_frame)//帧解析 { //帧序列 switch (m_nFramestyle) { case 0: { //70帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_70) { if ((m_nDataByte>=0)&&(m_nDataByte<=15)) { //第N位数据 SearchCode((BYTE)m_byteFrame[DATASTART+m_nDataByte]); } else if ((m_nDataByte>=16)&&(m_nDataByte<=23)) { //第N_N+1位数据 N为基数 WORD m_wordcode=m_byteFrame[DATASTART+(m_nDataByte-16)*2+1]; m_wordcode=m_wordcode<<8; m_wordcode+=m_byteFrame[DATASTART+(m_nDataByte-16)*2]; SearchCode(m_wordcode); } else if ((m_nDataByte>=24)&&(m_nDataByte<=30)) { //第N_N+1位数据 N为偶数 WORD m_wordcode=m_byteFrame[DATASTART+(m_nDataByte-24)*2+2]; m_wordcode=m_wordcode<<8; m_wordcode+=m_byteFrame[DATASTART+(m_nDataByte-24)*2+1]; SearchCode(m_wordcode); } } break; } case 1: { //E0帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E0) { if ((m_nDataByte>=0)&&(m_nDataByte<=15)) { //第N位数据 SearchCode((BYTE)m_byteFrame[DATASTART+m_nDataByte]); } else if ((m_nDataByte>=16)&&(m_nDataByte<=23)) { //第N_N+1位数据 N为基数 WORD m_wordcode=m_byteFrame[DATASTART+(m_nDataByte-16)*2+1]; m_wordcode=m_wordcode<<8; m_wordcode+=m_byteFrame[DATASTART+(m_nDataByte-16)*2]; SearchCode(m_wordcode); } else if ((m_nDataByte>=24)&&(m_nDataByte<=30)) { //第N_N+1位数据 N为偶数 WORD m_wordcode=m_byteFrame[DATASTART+(m_nDataByte-24)*2+2]; m_wordcode=m_wordcode<<8; m_wordcode+=m_byteFrame[DATASTART+(m_nDataByte-24)*2+1]; SearchCode(m_wordcode); } } break; } case 2: { //E1帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E1) { if ((m_nDataByte>=0)&&(m_nDataByte<=15)) { //第N位数据 SearchCode((BYTE)m_byteFrame[DATASTART+m_nDataByte]); } else if ((m_nDataByte>=16)&&(m_nDataByte<=23)) { //第N_N+1位数据 N为基数 WORD m_wordcode=m_byteFrame[DATASTART+(m_nDataByte-16)*2+1]; m_wordcode=m_wordcode<<8; m_wordcode+=m_byteFrame[DATASTART+(m_nDataByte-16)*2]; SearchCode(m_wordcode); } else if ((m_nDataByte>=24)&&(m_nDataByte<=30)) { //第N_N+1位数据 N为偶数 WORD m_wordcode=m_byteFrame[DATASTART+(m_nDataByte-24)*2+2]; m_wordcode=m_wordcode<<8; m_wordcode+=m_byteFrame[DATASTART+(m_nDataByte-24)*2+1]; SearchCode(m_wordcode); } } break; } case 3: { //E2帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E2) { if ((m_nDataByte>=0)&&(m_nDataByte<=15)) { //第N位数据 SearchCode((BYTE)m_byteFrame[DATASTART+m_nDataByte]); } else if ((m_nDataByte>=16)&&(m_nDataByte<=23)) { //第N_N+1位数据 N为基数 WORD m_wordcode=m_byteFrame[DATASTART+(m_nDataByte-16)*2+1]; m_wordcode=m_wordcode<<8; m_wordcode+=m_byteFrame[DATASTART+(m_nDataByte-16)*2]; SearchCode(m_wordcode); } else if ((m_nDataByte>=24)&&(m_nDataByte<=30)) { //第N_N+1位数据 N为偶数 WORD m_wordcode=m_byteFrame[DATASTART+(m_nDataByte-24)*2+2]; m_wordcode=m_wordcode<<8; m_wordcode+=m_byteFrame[DATASTART+(m_nDataByte-24)*2+1]; SearchCode(m_wordcode); } } break; } } //数据提取 SeeData(); } BOOL CATOINFODlg::OpenRecordSet(_RecordsetPtr &recPtr, CString &strSQL)//打开记录集 { // CATOINFODlg* pApp=(CATOINFODlg*) AfxGetApp(); m_pRecordset.CreateInstance(__uuidof(Recordset)); _variant_t sql; sql.SetString(strSQL); try { recPtr->Open(sql,m_pConnection.GetInterfacePtr(),adOpenDynamic,adLockOptimistic,adCmdText); } catch (_com_error e) { AfxMessageBox(e.Description()); } return TRUE; } void CATOINFODlg::SearchCode(int m_ncode)//搜索错误码 { CString m_strSQL; _variant_t m_value; m_strSQL="select * from info"; if (!OpenRecordSet(m_pRecordset,m_strSQL)) { AfxMessageBox("打开表失败!"); } m_pRecordset->MoveFirst(); try { while(!m_pRecordset->adoEOF) { m_value=m_pRecordset->GetFields()->GetItem("VALUEHEX")->Value; m_strSQL=VariantToCString(m_value); if (m_ncode==(int)strtoul(m_strSQL,NULL,16)) { static int m_sncounter=0; CString m_strtemp; m_strtemp.Format("%d ",m_sncounter); m_value=m_pRecordset->GetFields()->GetItem("CHINADECRIBE")->Value; m_strSQL=VariantToCString(m_value); m_strSQL+="\r\n"; m_strSQL.Insert(0,m_strtemp); m_Cdebuginfo.ReplaceSel(m_strSQL); m_Cdebuginfo.PostMessage(WM_VSCROLL, SB_BOTTOM,0); m_sncounter++; break; } m_pRecordset->MoveNext(); } } catch(_com_error e) { AfxMessageBox("查询错误"); } m_strSQL.Format("%08X",m_ncode); m_CHexData.SetWindowText(m_strSQL); m_strSQL.Format("%d",m_ncode); m_CDecData.SetWindowText(m_strSQL); } void CATOINFODlg::SearchCode(BYTE m_bytecode)//搜索错误码 { CString m_strSQL; _variant_t m_value; m_strSQL="select * from info"; if (!OpenRecordSet(m_pRecordset,m_strSQL)) { AfxMessageBox("打开表失败!"); } m_pRecordset->MoveFirst(); try { while(!m_pRecordset->adoEOF) { m_value=m_pRecordset->GetFields()->GetItem("VALUEHEX")->Value; m_strSQL=VariantToCString(m_value); if (m_bytecode==strtoul(m_strSQL,NULL,16)) { static int m_sncounter=0; CString m_strtemp; m_strtemp.Format("%d ",m_sncounter); m_value=m_pRecordset->GetFields()->GetItem("CHINADECRIBE")->Value; m_strSQL=VariantToCString(m_value); m_strSQL+="\r\n"; m_strSQL.Insert(0,m_strtemp); m_Cdebuginfo.ReplaceSel(m_strSQL); m_Cdebuginfo.PostMessage(WM_VSCROLL, SB_BOTTOM,0); m_sncounter++; break; } m_pRecordset->MoveNext(); } } catch(_com_error e) { AfxMessageBox("查询错误"); } m_strSQL.Format("%02X",m_bytecode); m_CHexData.SetWindowText(m_strSQL); m_strSQL.Format("%d",m_bytecode); m_CDecData.SetWindowText(m_strSQL); } void CATOINFODlg::SearchCode(WORD m_wordcode)//搜索错误码 { CString m_strSQL; _variant_t m_value; m_strSQL="select * from info"; if (!OpenRecordSet(m_pRecordset,m_strSQL)) { AfxMessageBox("打开表失败!"); } m_pRecordset->MoveFirst(); try { while(!m_pRecordset->adoEOF) { m_value=m_pRecordset->GetFields()->GetItem("VALUEHEX")->Value; m_strSQL=VariantToCString(m_value); if (m_wordcode==strtoul(m_strSQL,NULL,16)) { static int m_sncounter=0; CString m_strtemp; m_strtemp.Format("%d ",m_sncounter); m_value=m_pRecordset->GetFields()->GetItem("CHINADECRIBE")->Value; m_strSQL=VariantToCString(m_value); m_strSQL+="\r\n"; m_strSQL.Insert(0,m_strtemp); m_Cdebuginfo.ReplaceSel(m_strSQL); m_Cdebuginfo.PostMessage(WM_VSCROLL, SB_BOTTOM,0); m_sncounter++; break; } m_pRecordset->MoveNext(); } } catch(_com_error e) { AfxMessageBox("查询错误"); } m_strSQL.Format("%04X",m_wordcode); m_CHexData.SetWindowText(m_strSQL); m_strSQL.Format("%d",m_wordcode); m_CDecData.SetWindowText(m_strSQL); } CString CATOINFODlg::VariantToCString(const _variant_t &var)//数值转换 { CString m_strValue; switch(var.vt) { case VT_BSTR: { m_strValue=var.bstrVal; break; } case VT_LPSTR: { break; } case VT_LPWSTR: { m_strValue=(LPCTSTR)(_bstr_t)var; break; } case VT_I1: { break; } case VT_UI1: { m_strValue.Format("%d",var.bVal); break; } case VT_I2: { m_strValue.Format("%d",var.iVal); break; } case VT_UI2: { m_strValue.Format("%d",var.uiVal); break; } case VT_INT: { m_strValue.Format("%d",var.intVal); break; } case VT_I4: { break; } case VT_I8: { m_strValue.Format("%d",var.lVal); break; } case VT_UINT: { m_strValue.Format("%d",var.uintVal); break; } case VT_UI4: { break; } case VT_UI8: { m_strValue.Format("%d",var.ulVal); break; } case VT_VOID: { m_strValue.Format("%8x",var.byref); break; } case VT_R4: { m_strValue.Format("%.4f",var.fltVal); break; } case VT_R8: { m_strValue.Format("%.8f",var.dblVal); break; } case VT_DECIMAL: { m_strValue.Format("%.8f",(double)var); break; } case VT_CY: { COleCurrency cy=var.cyVal; m_strValue=cy.Format(); break; } case VT_BLOB: { break; } case VT_BLOB_OBJECT: { break; } case VT_BOOL: { m_strValue=var.boolVal?"TRUE":"FALSE"; break; } case VT_DATE: { DATE dt=var.date; COleDateTime da=COleDateTime(dt); m_strValue=da.Format("%Y-%m-%d %H:%M:%S"); break; } case VT_NULL: { break; } case VT_EMPTY: { m_strValue=""; break; } case VT_UNKNOWN: { m_strValue="VT_UNKNOWN"; break; } } return m_strValue; } void CATOINFODlg::OnSelchangeComboframestyle() //帧序列号选择 { // TODO: Add your control notification handler code here m_nFramestyle=m_CFrameStyle.GetCurSel(); } void CATOINFODlg::OnSelchangeCombodatabit() //解析位选择 { // TODO: Add your control notification handler code here m_nDataByte=m_CDataBit.GetCurSel(); } void CATOINFODlg::SeeData() { //提取数据A的字节 //字节1 switch (m_CAByte1.GetCurSel()) { case 0: { //70帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_70) { m_nSeeDataAA1=m_byteFrame[DATASTART+m_CDataAByte1.GetCurSel()]; } break; } case 1: { //E0帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E0) { m_nSeeDataAA1=m_byteFrame[DATASTART+m_CDataAByte1.GetCurSel()]; } break; } case 2: { //E1帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E1) { m_nSeeDataAA1=m_byteFrame[DATASTART+m_CDataAByte1.GetCurSel()]; } break; } case 3: { //E2帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E2) { m_nSeeDataAA1=m_byteFrame[DATASTART+m_CDataAByte1.GetCurSel()]; } break; } } CString m_str; m_str.Format("%02X",m_nSeeDataAA1); m_CSeeDataAA1.SetWindowText(m_str); //字节2 switch (m_CAByte2.GetCurSel()) { case 0: { //70帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_70) { m_nSeeDataAA2=m_byteFrame[DATASTART+m_CDataAByte2.GetCurSel()]; } break; } case 1: { //E0帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E0) { m_nSeeDataAA2=m_byteFrame[DATASTART+m_CDataAByte2.GetCurSel()]; } break; } case 2: { //E1帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E1) { m_nSeeDataAA2=m_byteFrame[DATASTART+m_CDataAByte2.GetCurSel()]; } break; } case 3: { //E2帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E2) { m_nSeeDataAA2=m_byteFrame[DATASTART+m_CDataAByte2.GetCurSel()]; } break; } } m_str.Format("%02X",m_nSeeDataAA2); m_CSeeDataAA2.SetWindowText(m_str); //字节3 switch (m_CAByte3.GetCurSel()) { case 0: { //70帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_70) { m_nSeeDataAA3=m_byteFrame[DATASTART+m_CDataAByte3.GetCurSel()]; } break; } case 1: { //E0帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E0) { m_nSeeDataAA3=m_byteFrame[DATASTART+m_CDataAByte3.GetCurSel()]; } break; } case 2: { //E1帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E1) { m_nSeeDataAA3=m_byteFrame[DATASTART+m_CDataAByte3.GetCurSel()]; } break; } case 3: { //E2帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E2) { m_nSeeDataAA3=m_byteFrame[DATASTART+m_CDataAByte3.GetCurSel()]; } break; } } m_str.Format("%02X",m_nSeeDataAA3); m_CSeeDataAA3.SetWindowText(m_str); //字节4 switch (m_CAByte4.GetCurSel()) { case 0: { //70帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_70) { m_nSeeDataAA4=m_byteFrame[DATASTART+m_CDataAByte4.GetCurSel()]; } break; } case 1: { //E0帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E0) { m_nSeeDataAA4=m_byteFrame[DATASTART+m_CDataAByte4.GetCurSel()]; } break; } case 2: { //E1帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E1) { m_nSeeDataAA4=m_byteFrame[DATASTART+m_CDataAByte4.GetCurSel()]; } break; } case 3: { //E2帧 if (m_byteFrame[FRAMEPOS]==FRAME_SEQUENCE_E2) { m_nSeeDataAA4=m_byteFrame[DATASTART+m_CDataAByte4.GetCurSel()]; } break; } } m_str.Format("%02X",m_nSeeDataAA4); m_CSeeDataAA4.SetWindowText(m_str); } BOOL CATOINFODlg::CRC16CHECK(unsigned char *pchMsg, unsigned int wDataLen,unsigned int wCrcLen) { unsigned int wCRCTalbeAbs[] = { 0x0000, 0xCC01, 0xD801, 0x1400, 0xF001, 0x3C00, 0x2800, 0xE401, 0xA001, 0x6C00, 0x7800, 0xB401, 0x5000, 0x9C01, 0x8801, 0x4400 }; unsigned int wCRC = 0xFFFF; unsigned int i = 0; unsigned char chChar = 0; unsigned int wDataCrc; for (i = 0; i < wDataLen; i++) { chChar = *pchMsg++; wCRC = wCRCTalbeAbs[(chChar ^ wCRC) & 15] ^ (wCRC >> 4); wCRC = wCRCTalbeAbs[((chChar >> 4) ^ wCRC) & 15] ^ (wCRC >> 4); } chChar=*pchMsg++; wDataCrc=*pchMsg; wDataCrc=wDataCrc<<8; wDataCrc+=chChar; if (wCRC==wDataCrc) { return TRUE; } else { return FALSE; } }
[ "zhanghua@transpad.cn" ]
zhanghua@transpad.cn
cd8f2bc8d229e3e46b1825382da2e33033d248da
f110c5c30a6b625a896b6e540a1542145c7b1e23
/Count and Say.cpp
7ea724a12a402847c6fc2b40b07ffb3b777046b8
[]
no_license
Yotta2/Leetcode
19ef7aad0b7cbf1bd2f3d7ab67289ba6dcf6259b
97072c0456fdcf0fbe5dccb7961cc0373be7bf8f
refs/heads/master
2021-01-24T06:29:42.359787
2014-01-12T22:54:37
2014-01-12T22:54:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,335
cpp
#include <iostream> #include <string> #include <cstring> #include <fstream> #include <set> #include <stack> #include <vector> #include <list> #include <cstdlib> #include <climits> #include <algorithm> #include <cmath> #include <unordered_map> #include <unordered_set> #include <map> #include <time.h> #include <functional> #include <queue> #include <cctype> #include <sstream> #define EPS 1e-6 #define SIZE 11000 using namespace std; class Solution { public: string countAndSay(int n) { string curr = "1"; for (int i = 0; i < n - 1; i++) curr = genNext(curr); return curr; } private: string genNext(string str) { int i = 0; string next; while (i < str.size()) { int count = 1; char digit = str[i]; while (true) { if (i + 1 >= str.size() || str[i] != str[i + 1]) break; i++; count++; } string str; stringstream ss; ss << count; ss >> str; next += str; next += digit; i++; } return next; } }; int main() { ofstream fout("sol.out"); ifstream fin("sol.in"); Solution sol; cout << sol.countAndSay(100) << endl; return 0; }
[ "cloudsweet1989@gmail.com" ]
cloudsweet1989@gmail.com
029e9fe36a4294145ffe0e13f09d82ccbbc9ac83
21e0743677b95c3a26341c40ec9a68b9585bebaa
/src/BkgKinematics.cpp
871be06a6b4dfc74dc497b3e5786d6030ee41aa6
[]
no_license
qbuat/GravitonHunter
031a597f19f61e84113da94192bd628731a0cfde
c46ac7fd9e9c10dbd15581c87941a8926e08a6ec
refs/heads/master
2021-01-15T13:33:43.905954
2016-03-01T20:19:10
2016-03-01T20:19:10
52,906,765
0
0
null
null
null
null
UTF-8
C++
false
false
20,597
cpp
#include "BkgKinematics.h" #include <TError.h> #include <TLegend.h> #include <RooRealVar.h> #include <RooDataHist.h> #include <RooHistPdf.h> #include <RooAddPdf.h> #include <RooFitResult.h> #include <RooPlot.h> #include "ToolsTreeReader.h" #include "ToolsUtilities.h" #include "ToolsCommons.h" #include "ToolsExtendedCanvas.h" #include "ToolsSignificanceHist.h" ///////////////////////////////////////////////////////////// BkgKinematics::BkgKinematics(TString datafile,TString mcfile) ///////////////////////////////////////////////////////////// { SetMCFile(mcfile); SetDataFile(datafile); SetEtaCategory("NONE"); SetIsoCut(5); SetPtCuts(50,50); InitMaps(); std::cout << "Enter FillDataHists()" << std::endl; FillDataHists(); std::cout << "Enter FillMCHists()" << std::endl; FillMCHists(); } //////////////////////////////////////////////////////////////////////////// BkgKinematics::BkgKinematics(TString datafile,TString mcfile,TString etacat) /////////////////////////////////////////////////////////////////////////// { SetMCFile(mcfile); SetDataFile(datafile); SetEtaCategory(etacat); SetPurityModifier(0.); InitMaps(); SetPtCuts(50,50); SetIsoCut(5); std::cout << "Enter FillDataHists()" << std::endl; FillDataHists(); std::cout << "Enter FillMCHists()" << std::endl; FillMCHists(); std::map<TString,TString>::iterator it; for ( it=m_hname.begin() ; it != m_hname.end(); it++ ) BuildTotalBkgHist( (*it).second ); } ////////////////////////////////////////////// BkgKinematics::BkgKinematics(TString histsfile) ////////////////////////////////////////////// { InitFromHistsFile(histsfile); } ///////////////////////////////////// BkgKinematics::~BkgKinematics() //////////////////////////////////// { delete m_hmgg; } ////////////////////////////// void BkgKinematics::InitMaps() ////////////////////////////// { m_hname["pT"] = "pT"; m_hname["pT_L"] = "pT_L"; m_hname["pT_SL"] = "pT_SL"; m_hname["eta_L"] = "eta_L"; m_hname["eta_SL"] = "eta_SL"; m_hname["mgg"] = "mgg"; m_hname["ptgg"] = "ptgg"; m_hname["costhetastar"] = "costhetastar"; m_hname["deltaphi"] = "deltaphi"; m_title["pT"] = "p_{T}^{#gamma} [GeV]"; m_title["pT_L"] = "p_{T}^{#gamma,leading} [GeV]"; m_title["pT_SL"] = "p_{T}^{#gamma,subleading} [GeV]"; m_title["eta_L"] = "#eta^{#gamma,leading}"; m_title["eta_SL"] = "#eta^{#gamma,subleading}"; m_title["mgg"] = "m_{#gamma#gamma} [GeV]"; m_title["ptgg"] = "p_{T,#gamma#gamma} [GeV]"; m_title["costhetastar"] = "cos(#theta*)"; m_title["deltaphi"] = "#Delta #phi_{#gamma#gamma}"; m_Nbins["pT"] = 110; m_Nbins["pT_L"] = 110; m_Nbins["pT_SL"] = 110; m_Nbins["eta_L"] = 60; m_Nbins["eta_SL"] = 60; m_Nbins["mgg"] = 130; m_Nbins["ptgg"] = 50; m_Nbins["costhetastar"] = 200; m_Xmin["pT"] = 30; m_Xmax["pT"] = 260; m_Xmin["pT_L"] = 40; m_Xmax["pT_L"] = 260; m_Xmin["pT_SL"] = 30; m_Xmax["pT_SL"] = 250; m_Xmin["eta_L"] = -3; m_Xmax["eta_L"] = 3; m_Xmin["eta_SL"] = -3; m_Xmax["eta_SL"] = 3; // m_Xmin["mgg"] = 140; m_Xmax["mgg"] = 400; m_Xmin["mgg"] = Commons::binning[Commons::norm_bin.first]; m_Xmax["mgg"] = Commons::binning[Commons::norm_bin.second]; m_Xmin["ptgg"] = 0; m_Xmax["ptgg"] = 600; m_Xmin["costhetastar"] = -1; m_Xmax["costhetastar"] = 1; m_hD["pT"] = new TH1D(m_hname["pT"]+"D","",m_Nbins["pT"],m_Xmin["pT"],m_Xmax["pT"]); m_hD["pT_L"] = new TH1D(m_hname["pT_L"]+"D","",m_Nbins["pT_L"],m_Xmin["pT_L"],m_Xmax["pT_L"]); m_hD["pT_SL"] = new TH1D(m_hname["pT_SL"]+"D","",m_Nbins["pT_SL"],m_Xmin["pT_SL"],m_Xmax["pT_SL"]); m_hD["eta_L"] = new TH1D(m_hname["eta_L"]+"D","",m_Nbins["eta_L"],m_Xmin["eta_L"],m_Xmax["eta_L"]); m_hD["eta_SL"] = new TH1D(m_hname["eta_SL"]+"D","",m_Nbins["eta_SL"],m_Xmin["eta_SL"],m_Xmax["eta_SL"]); m_hD["mgg"] = new TH1D(m_hname["mgg"]+"D","",m_Nbins["mgg"],m_Xmin["mgg"],m_Xmax["mgg"]); m_hD["ptgg"] = new TH1D(m_hname["ptgg"]+"D","",m_Nbins["ptgg"],m_Xmin["ptgg"],m_Xmax["ptgg"]); m_hD["costhetastar"] = new TH1D(m_hname["costhetastar"]+"D","",m_Nbins["costhetastar"],m_Xmin["costhetastar"],m_Xmax["costhetastar"]); //-------------------------------------------------------------------------------------------------------------------------------------- m_hB["pT"] = new TH1D(m_hname["pT"]+"B","",m_Nbins["pT"],m_Xmin["pT"],m_Xmax["pT"]); m_hB["pT_L"] = new TH1D(m_hname["pT_L"]+"B","",m_Nbins["pT_L"],m_Xmin["pT_L"],m_Xmax["pT_L"]); m_hB["pT_SL"] = new TH1D(m_hname["pT_SL"]+"B","",m_Nbins["pT_SL"],m_Xmin["pT_SL"],m_Xmax["pT_SL"]); m_hB["eta_L"] = new TH1D(m_hname["eta_L"]+"B","",m_Nbins["eta_L"],m_Xmin["eta_L"],m_Xmax["eta_L"]); m_hB["eta_SL"] = new TH1D(m_hname["eta_SL"]+"B","",m_Nbins["eta_SL"],m_Xmin["eta_SL"],m_Xmax["eta_SL"]); m_hB["mgg"] = new TH1D(m_hname["mgg"]+"B","",m_Nbins["mgg"],m_Xmin["mgg"],m_Xmax["mgg"]); m_hB["ptgg"] = new TH1D(m_hname["ptgg"]+"B","",m_Nbins["ptgg"],m_Xmin["ptgg"],m_Xmax["ptgg"]); m_hB["costhetastar"] = new TH1D(m_hname["costhetastar"]+"B","",m_Nbins["costhetastar"],m_Xmin["costhetastar"],m_Xmax["costhetastar"]); //-------------------------------------------------------------------------------------------------------------------------------------- m_hI["pT"] = new TH1D(m_hname["pT"]+"I","",m_Nbins["pT"],m_Xmin["pT"],m_Xmax["pT"]); m_hI["pT_L"] = new TH1D(m_hname["pT_L"]+"I","",m_Nbins["pT_L"],m_Xmin["pT_L"],m_Xmax["pT_L"]); m_hI["pT_SL"] = new TH1D(m_hname["pT_SL"]+"I","",m_Nbins["pT_SL"],m_Xmin["pT_SL"],m_Xmax["pT_SL"]); m_hI["eta_L"] = new TH1D(m_hname["eta_L"]+"I","",m_Nbins["eta_L"],m_Xmin["eta_L"],m_Xmax["eta_L"]); m_hI["eta_SL"] = new TH1D(m_hname["eta_SL"]+"I","",m_Nbins["eta_SL"],m_Xmin["eta_SL"],m_Xmax["eta_SL"]); m_hI["mgg"] = new TH1D(m_hname["mgg"]+"I","",m_Nbins["mgg"],m_Xmin["mgg"],m_Xmax["mgg"]); m_hI["ptgg"] = new TH1D(m_hname["ptgg"]+"I","",m_Nbins["ptgg"],m_Xmin["ptgg"],m_Xmax["ptgg"]); m_hI["costhetastar"] = new TH1D(m_hname["costhetastar"]+"I","",m_Nbins["costhetastar"],m_Xmin["costhetastar"],m_Xmax["costhetastar"]); //--------------------------------------------------------------------------------------------------------------------------------------- m_hGJ["pT"] = new TH1D(m_hname["pT"]+"GJ","",m_Nbins["pT"],m_Xmin["pT"],m_Xmax["pT"]); m_hGJ["pT_L"] = new TH1D(m_hname["pT_L"]+"GJ","",m_Nbins["pT_L"],m_Xmin["pT_L"],m_Xmax["pT_L"]); m_hGJ["pT_SL"] = new TH1D(m_hname["pT_SL"]+"GJ","",m_Nbins["pT_SL"],m_Xmin["pT_SL"],m_Xmax["pT_SL"]); m_hGJ["eta_L"] = new TH1D(m_hname["eta_L"]+"GJ","",m_Nbins["eta_L"],m_Xmin["eta_L"],m_Xmax["eta_L"]); m_hGJ["eta_SL"] = new TH1D(m_hname["eta_SL"]+"GJ","",m_Nbins["eta_SL"],m_Xmin["eta_SL"],m_Xmax["eta_SL"]); m_hGJ["mgg"] = new TH1D(m_hname["mgg"]+"GJ","",m_Nbins["mgg"],m_Xmin["mgg"],m_Xmax["mgg"]); m_hGJ["ptgg"] = new TH1D(m_hname["ptgg"]+"GJ","",m_Nbins["ptgg"],m_Xmin["ptgg"],m_Xmax["ptgg"]); m_hGJ["costhetastar"] = new TH1D(m_hname["costhetastar"]+"GJ","",m_Nbins["costhetastar"],m_Xmin["costhetastar"],m_Xmax["costhetastar"]); //--------------------------------------------------------------------------------------------------------------------------------------- m_hJG["pT"] = new TH1D(m_hname["pT"]+"JG","",m_Nbins["pT"],m_Xmin["pT"],m_Xmax["pT"]); m_hJG["pT_L"] = new TH1D(m_hname["pT_L"]+"JG","",m_Nbins["pT_L"],m_Xmin["pT_L"],m_Xmax["pT_L"]); m_hJG["pT_SL"] = new TH1D(m_hname["pT_SL"]+"JG","",m_Nbins["pT_SL"],m_Xmin["pT_SL"],m_Xmax["pT_SL"]); m_hJG["eta_L"] = new TH1D(m_hname["eta_L"]+"JG","",m_Nbins["eta_L"],m_Xmin["eta_L"],m_Xmax["eta_L"]); m_hJG["eta_SL"] = new TH1D(m_hname["eta_SL"]+"JG","",m_Nbins["eta_SL"],m_Xmin["eta_SL"],m_Xmax["eta_SL"]); m_hJG["mgg"] = new TH1D(m_hname["mgg"]+"JG","",m_Nbins["mgg"],m_Xmin["mgg"],m_Xmax["mgg"]); m_hJG["ptgg"] = new TH1D(m_hname["ptgg"]+"JG","",m_Nbins["ptgg"],m_Xmin["ptgg"],m_Xmax["ptgg"]); m_hJG["costhetastar"] = new TH1D(m_hname["costhetastar"]+"JG","",m_Nbins["costhetastar"],m_Xmin["costhetastar"],m_Xmax["costhetastar"]); //--------------------------------------------------------------------------------------------------------------------------------------- m_hJJ["pT"] = new TH1D(m_hname["pT"]+"JJ","",m_Nbins["pT"],m_Xmin["pT"],m_Xmax["pT"]); m_hJJ["pT_L"] = new TH1D(m_hname["pT_L"]+"JJ","",m_Nbins["pT_L"],m_Xmin["pT_L"],m_Xmax["pT_L"]); m_hJJ["pT_SL"] = new TH1D(m_hname["pT_SL"]+"JJ","",m_Nbins["pT_SL"],m_Xmin["pT_SL"],m_Xmax["pT_SL"]); m_hJJ["eta_L"] = new TH1D(m_hname["eta_L"]+"JJ","",m_Nbins["eta_L"],m_Xmin["eta_L"],m_Xmax["eta_L"]); m_hJJ["eta_SL"] = new TH1D(m_hname["eta_SL"]+"JJ","",m_Nbins["eta_SL"],m_Xmin["eta_SL"],m_Xmax["eta_SL"]); m_hJJ["mgg"] = new TH1D(m_hname["mgg"]+"JJ","",m_Nbins["mgg"],m_Xmin["mgg"],m_Xmax["mgg"]); m_hJJ["ptgg"] = new TH1D(m_hname["ptgg"]+"JJ","",m_Nbins["ptgg"],m_Xmin["ptgg"],m_Xmax["ptgg"]); m_hJJ["costhetastar"] = new TH1D(m_hname["costhetastar"]+"JJ","",m_Nbins["costhetastar"],m_Xmin["costhetastar"],m_Xmax["costhetastar"]); m_hmgg = new TH1D("hmgg","hmgg",Commons::nBins,Commons::binning); } ///////////////////////////////////////////////////////// void BkgKinematics::InitFromHistsFile(TString histsfile) //////////////////////////////////////////////////////// { TFile *f = new TFile(histsfile,"read"); m_hname["pT"] = "pT"; m_hname["pT_L"] = "pT_L"; m_hname["pT_SL"] = "pT_SL"; m_hname["eta_L"] = "eta_L"; m_hname["eta_SL"] = "eta_SL"; m_hname["mgg"] = "mgg"; m_hname["ptgg"] = "ptgg"; m_hname["costhetastar"] = "costhetastar"; std::map<TString,TString>::iterator it; for ( it=m_hname.begin() ; it != m_hname.end(); it++ ){ m_hD[(*it).first] = (TH1D*)f->Get( (*it).second+"D" ); m_hB[(*it).first] = (TH1D*)f->Get( "hB"+(*it).second); m_hI[(*it).first] = (TH1D*)f->Get( (*it).second+"I" ); m_hGJ[(*it).first] = (TH1D*)f->Get( (*it).second+"GJ" ); m_hJG[(*it).first] = (TH1D*)f->Get( (*it).second+"JG" ); m_hJJ[(*it).first] = (TH1D*)f->Get( (*it).second+"JJ" ); } } //////////////////////////////////// void BkgKinematics::FillDataHists() //////////////////////////////////// { std::cout << m_ptcut_l << "/" << m_ptcut_sl << std::endl; TFile * f = new TFile(m_filedata,"read"); TChain * trD = (TChain*)f->Get("tree"); TreeReader Rd_D(trD); int nentriesD = (int)trD->GetEntriesFast(); //--------------------------------------------------- for(int entry=0;entry<nentriesD;entry++){ AnalysisTools::Processing(entry,nentriesD,(int)nentriesD/100); Rd_D.GetEntry(entry); double mgg = Rd_D.GetVariable("mgg"); double eta_L = Rd_D.GetVariable("eta_L"); double eta_SL = Rd_D.GetVariable("eta_SL"); if( !Commons::EtaCategory(eta_L,eta_SL,m_etacategory) ) continue; if(mgg<Commons::binning[Commons::norm_bin.first]) continue; if(mgg>Commons::binning[Commons::norm_bin.second]) continue; if( Rd_D.GetVariable("pT_L")<m_ptcut_l) continue; if( Rd_D.GetVariable("pT_SL")<m_ptcut_sl) continue; if( Rd_D.GetVariable("Iso_L")>m_isocut) continue; if( Rd_D.GetVariable("Iso_SL")>m_isocut) continue; std::map<TString,TH1D*>::iterator it; if( (int)Rd_D.GetVariable("IsTight_L") ==1 && (int)Rd_D.GetVariable("IsTight_SL")==1){ for ( it=m_hD.begin() ; it != m_hD.end(); it++ ) if( (*it).first != "pT" ) (*it).second->Fill( Rd_D.GetVariable((*it).first) ); else{ (*it).second->Fill( Rd_D.GetVariable("pT_L") ); (*it).second->Fill( Rd_D.GetVariable("pT_SL") ); } m_hmgg->Fill(mgg); }else if( (int)Rd_D.GetVariable("IsTight_L") ==0 && (int)Rd_D.GetVariable("IsTight_SL")==1) for ( it=m_hJG.begin() ; it != m_hJG.end(); it++ ) if( (*it).first != "pT" ) (*it).second->Fill( Rd_D.GetVariable((*it).first) ); else{ (*it).second->Fill( Rd_D.GetVariable("pT_L") ); (*it).second->Fill( Rd_D.GetVariable("pT_SL") ); } else if( (int)Rd_D.GetVariable("IsTight_L") ==1 && (int)Rd_D.GetVariable("IsTight_SL")==0) for ( it=m_hGJ.begin() ; it != m_hGJ.end(); it++ ) if( (*it).first != "pT" ) (*it).second->Fill( Rd_D.GetVariable((*it).first) ); else{ (*it).second->Fill( Rd_D.GetVariable("pT_L") ); (*it).second->Fill( Rd_D.GetVariable("pT_SL") ); } else if( (int)Rd_D.GetVariable("IsTight_L") ==0 && (int)Rd_D.GetVariable("IsTight_SL")==0) for ( it=m_hJJ.begin() ; it != m_hJJ.end(); it++ ) if( (*it).first != "pT" ) (*it).second->Fill( Rd_D.GetVariable((*it).first) ); else{ (*it).second->Fill( Rd_D.GetVariable("pT_L") ); (*it).second->Fill( Rd_D.GetVariable("pT_SL") ); } } //------------------------------------------------------------ } //////////////////////////////////// void BkgKinematics::FillMCHists() //////////////////////////////////// { TFile* fbkg = new TFile(m_filemcgg,"read"); TTree * trB = (TTree*)fbkg->Get("tree"); TreeReader Rd_B(trB); int nentriesB = (int)trB->GetEntriesFast(); //---------------------------------------------------- for(int entry=0;entry<nentriesB;entry++){ AnalysisTools::Processing(entry,nentriesB,10000); Rd_B.GetEntry(entry); double w_1 = Rd_B.GetVariable("weight"); double w_g = Rd_B.GetVariable("gen_weight"); double w_nlo = Commons::GetkFactor_40_30(Rd_B.GetVariable("truth_mgg")); double mgg = Rd_B.GetVariable("mgg"); double eta_L = Rd_B.GetVariable("eta_L"); double eta_SL = Rd_B.GetVariable("eta_SL"); if( !Commons::EtaCategory(eta_L,eta_SL,m_etacategory) ) continue; if(mgg<Commons::binning[Commons::norm_bin.first]) continue; if(mgg>Commons::binning[Commons::norm_bin.second]) continue; if( (int)Rd_B.GetVariable("IsTight_L")!=1) continue; if( (int)Rd_B.GetVariable("IsTight_SL")!=1) continue; if( Rd_B.GetVariable("pT_L") < m_ptcut_l) continue; if( Rd_B.GetVariable("pT_SL")< m_ptcut_sl) continue; if( Rd_B.GetVariable("Iso_L")>m_isocut) continue; if( Rd_B.GetVariable("Iso_SL")>m_isocut) continue; std::map<TString,TH1D*>::iterator it; for ( it=m_hI.begin() ; it != m_hI.end(); it++ ) if( (*it).first != "pT" ) (*it).second->Fill( Rd_B.GetVariable((*it).first),w_1*w_g*w_nlo ); else{ (*it).second->Fill( Rd_B.GetVariable("pT_L"),w_1*w_g*w_nlo ); (*it).second->Fill( Rd_B.GetVariable("pT_SL"),w_1*w_g*w_nlo ); } } //-------------------------------------------------------------------------- } /////////////////////////////////////////////////// void BkgKinematics::BuildTotalBkgHist(TString var) ////////////////////////////////////////////////// { double sumyields = 0; for(int i=0;i<(int)Commons::yields.size();i++) sumyields+=Commons::yields[i]; double dataNorm = m_hmgg->Integral(Commons::norm_bin.first,Commons::norm_bin.second); double scalepurgg = (1+m_purmod); double scalepurother = (sumyields-(1+m_purmod)*Commons::yields[0])/(sumyields-Commons::yields[0]); if( var != "pT"){ m_hI[var]->Scale((scalepurgg)*Commons::yields[0]/sumyields*dataNorm/m_hI[var]->Integral()); m_hGJ[var]->Scale((scalepurother)*Commons::yields[1]/sumyields*dataNorm/m_hGJ[var]->Integral()); m_hJG[var]->Scale((scalepurother)*Commons::yields[2]/sumyields*dataNorm/m_hJG[var]->Integral()); m_hJJ[var]->Scale((scalepurother)*Commons::yields[3]/sumyields*dataNorm/m_hJJ[var]->Integral()); }else { m_hI[var]->Scale((scalepurgg)*2*Commons::yields[0]/sumyields*dataNorm/m_hI[var]->Integral()); m_hGJ[var]->Scale((scalepurother)*2*Commons::yields[1]/sumyields*dataNorm/m_hGJ[var]->Integral()); m_hJG[var]->Scale((scalepurother)*2*Commons::yields[2]/sumyields*dataNorm/m_hJG[var]->Integral()); m_hJJ[var]->Scale((scalepurother)*2*Commons::yields[3]/sumyields*dataNorm/m_hJJ[var]->Integral()); } m_hB[var] = (TH1D*)m_hI[var]->Clone("hB"+var); m_hB[var]->GetXaxis()->SetTitle(m_title[var]); m_hB[var]->Add(m_hGJ[var]);m_hB[var]->Add(m_hJG[var]);m_hB[var]->Add(m_hJJ[var]); m_hD[var]->GetXaxis()->SetTitle(m_title[var]); // m_hB[var]->GetXaxis()->SetRange(Commons::norm_bin.first,Commons::nBins); // m_hD[var]->GetXaxis()->SetRange(Commons::norm_bin.first,Commons::nBins); std::cout << "---- " << m_hname[var] << " ----" << std::endl; std::cout << "dataNorm = " << dataNorm << std::endl; std::cout << "m_hD->Integral() =" << m_hD[var]->Integral() << std::endl; } /////////////////////////////////////////////// TCanvas* BkgKinematics::DrawHists(TString var) ////////////////////////////////////////////// { m_hB[var]->SetLineColor(4); m_hI[var]->SetLineColor(4);m_hI[var]->SetLineStyle(kDashed); m_hGJ[var]->SetLineColor(3);m_hGJ[var]->SetLineStyle(kDashed); m_hJG[var]->SetLineColor(2);m_hJG[var]->SetLineStyle(kDashed); m_hJJ[var]->SetLineColor(6);m_hJJ[var]->SetLineStyle(kDashed); ExtendedCanvas *cbkg_signi = new ExtendedCanvas("cbkg_signi"+var,"bkg with significance "+var,800,600,2); TPad* p1 = (TPad*)cbkg_signi->GetPad(1); TPad* p2 = (TPad*)cbkg_signi->GetPad(2); double maxhist = m_hB[var]->GetBinContent(m_hB[var]->GetMaximumBin()); if( m_hD[var]->GetBinContent(m_hD[var]->GetMaximumBin())> maxhist ) maxhist = m_hD[var]->GetBinContent(m_hD[var]->GetMaximumBin()); m_hD[var]->GetYaxis()->SetRangeUser(1e-8,maxhist+0.1*maxhist); p1->cd();m_hD[var]->Draw("PE");m_hB[var]->Draw("sameHIST"); m_hI[var]->Draw("sameHIST");m_hGJ[var]->Draw("sameHIST"); m_hJG[var]->Draw("sameHIST");m_hJJ[var]->Draw("sameHIST"); TLegend *leg = new TLegend(0.5,0.82,0.78,0.95); leg->SetFillColor(0); leg->SetNColumns(3); leg->AddEntry(m_hD[var],"Data","lp"); leg->AddEntry(m_hB[var],"total bkg","l"); leg->AddEntry(m_hI[var],"#gamma#gamma bkg","l"); leg->AddEntry(m_hGJ[var],"#gammaj bkg","l"); leg->AddEntry(m_hJG[var],"j#gamma bkg","l"); leg->AddEntry(m_hJJ[var],"jj bkg","l"); leg->Draw("same"); p1->RedrawAxis(); if(m_etacategory != "allcat") cbkg_signi->SetEtaCategoryLabel(0.25,0.88,m_etacategory); p1->Update(); p2->cd(); SignificanceHist SH(*(TH1F*)m_hD[var],*(TH1F*)m_hB[var]); TH1F* hh_signi = SH.GetChiHist(5); hh_signi->SetName("hh_signi");hh_signi->SetTitle("hh_signi"); hh_signi->Draw("HIST"); p2->Update(); return cbkg_signi; } ///////////////////////////////////////////////////// void BkgKinematics::SaveToRootFile(TString filename) ///////////////////////////////////////////////////// { TFile f(filename,"RECREATE"); std::map<TString,TH1D*>::iterator it; for ( it=m_hI.begin() ; it != m_hI.end(); it++ ) f.Add( (*it).second ); for ( it=m_hD.begin() ; it != m_hD.end(); it++ ) f.Add( (*it).second ); for ( it=m_hB.begin() ; it != m_hB.end(); it++ ) f.Add( (*it).second ); for ( it=m_hGJ.begin() ; it != m_hGJ.end(); it++ ) f.Add( (*it).second ); for ( it=m_hJG.begin() ; it != m_hJG.end(); it++ ) f.Add( (*it).second ); for ( it=m_hJJ.begin() ; it != m_hJJ.end(); it++ ) f.Add( (*it).second ); f.Write(); f.Close(); } ///////////////////////////////////////////// TCanvas* BkgKinematics::PurityFitter(TString var) ///////////////////////////////////////////// { TH1D* hred = (TH1D*)m_hGJ[var]->Clone("hred"); hred->Add(m_hJG[var]); hred->Add(m_hJJ[var]); RooRealVar x("x",m_title[var],m_hD[var]->GetBinLowEdge(1),m_hD[var]->GetBinLowEdge(m_hD[var]->GetNbinsX())); RooDataHist data_H("data","data",x,m_hD[var]); RooDataHist irr_H("irr","irr",x,m_hI[var]); RooDataHist red_H("red","red",x,hred); RooHistPdf pdf_irr("pdf_irr","pdf_irr",x,irr_H); RooHistPdf pdf_red("pdf_red","pdf_red",x,red_H); RooRealVar purity("purity","purity",0.5,1); RooAddPdf pdf_tot("pdf_tot","pdf_tot", pdf_irr,pdf_red,purity); RooFitResult* fitres = pdf_tot.fitTo(data_H,RooFit::Save(kTRUE)); fitres->Print("v"); RooPlot * frame = x.frame(); data_H.plotOn(frame,RooFit::Name("data")); pdf_tot.plotOn(frame,RooFit::LineColor(4),RooFit::Name("bkg")); pdf_tot.plotOn(frame,RooFit::Components(pdf_irr),RooFit::LineColor(4),RooFit::LineStyle(kDashed)); pdf_tot.plotOn(frame,RooFit::Components(pdf_red),RooFit::LineColor(2),RooFit::LineStyle(kDashed)); data_H.plotOn(frame,RooFit::Name("data2")); pdf_tot.paramOn(frame); SignificanceHist SID( *(RooHist*)frame->getHist("data"), *(RooCurve*)frame->getCurve("bkg") ); TH1F* hsigni = SID.GetSignificanceHist(5); hsigni->GetXaxis()->SetTitle(x.GetTitle()); ExtendedCanvas *c = new ExtendedCanvas("c"+var,"c"+var,800,600,2); TPad* p1 = (TPad*)c->GetPad(1); TPad* p2 = (TPad*)c->GetPad(2); p1->cd(); frame->Draw(); if(m_etacategory != "allcat") c->SetEtaCategoryLabel(0.25,0.88,m_etacategory); p1->Update(); p2->cd(); hsigni->Draw("HIST"); p2->Update(); return c; }
[ "qbuat@ccage021.in2p3.fr" ]
qbuat@ccage021.in2p3.fr
db3f97d08ffe9933ee6f820ff3a6862d72d7baef
8e138ac4434d268f25c34c262ecf06c3b1ce3c58
/ib_boost/type_traits/is_class.hpp
a867ab1c78e1eaf9f3efed8eb07149f0f9c42e37
[]
no_license
mreppell/Coalescent_Internal_Branches
3366daa31d5ea6eb6c9fc2fea7afd1ee09effff2
d46fd4ca113481a9a689301d2ae86f4c6a0d988b
refs/heads/master
2021-01-10T06:15:03.957670
2017-05-09T19:47:49
2017-05-09T19:47:49
54,134,103
1
0
null
null
null
null
UTF-8
C++
false
false
4,779
hpp
// (C) Copyright Dave Abrahams, Steve Cleary, Beman Dawes, Howard // Hinnant & John Maddock 2000-2003. // Use, modification and distribution are subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt). // // See http://www.boost.org/libs/type_traits for most recent version including documentation. #ifndef BOOST_TT_IS_CLASS_HPP_INCLUDED #define BOOST_TT_IS_CLASS_HPP_INCLUDED #include <ib_boost/type_traits/config.hpp> #include <ib_boost/type_traits/intrinsics.hpp> #ifndef BOOST_IS_CLASS # include <ib_boost/type_traits/is_union.hpp> # include <ib_boost/type_traits/detail/ice_and.hpp> # include <ib_boost/type_traits/detail/ice_not.hpp> #ifdef BOOST_TT_HAS_CONFORMING_IS_CLASS_IMPLEMENTATION # include <ib_boost/type_traits/detail/yes_no_type.hpp> #else # include <ib_boost/type_traits/is_scalar.hpp> # include <ib_boost/type_traits/is_array.hpp> # include <ib_boost/type_traits/is_reference.hpp> # include <ib_boost/type_traits/is_void.hpp> # include <ib_boost/type_traits/is_function.hpp> #endif #endif // BOOST_IS_CLASS #ifdef __EDG_VERSION__ # include <ib_boost/type_traits/remove_cv.hpp> #endif // should be the last #include #include <ib_boost/type_traits/detail/bool_trait_def.hpp> namespace boost { namespace detail { #ifndef BOOST_IS_CLASS #ifdef BOOST_TT_HAS_CONFORMING_IS_CLASS_IMPLEMENTATION // This is actually the conforming implementation which works with // abstract classes. However, enough compilers have trouble with // it that most will use the one in // ib_boost/type_traits/object_traits.hpp. This implementation // actually works with VC7.0, but other interactions seem to fail // when we use it. // is_class<> metafunction due to Paul Mensonides // (leavings@attbi.com). For more details: // http://groups.google.com/groups?hl=en&selm=000001c1cc83%24e154d5e0%247772e50c%40c161550a&rnum=1 #if defined(__GNUC__) && !defined(__EDG_VERSION__) template <class U> ::boost::type_traits::yes_type is_class_tester(void(U::*)(void)); template <class U> ::boost::type_traits::no_type is_class_tester(...); template <typename T> struct is_class_impl { BOOST_STATIC_CONSTANT(bool, value = (::boost::type_traits::ice_and< sizeof(is_class_tester<T>(0)) == sizeof(::boost::type_traits::yes_type), ::boost::type_traits::ice_not< ::boost::is_union<T>::value >::value >::value) ); }; #else template <typename T> struct is_class_impl { template <class U> static ::boost::type_traits::yes_type is_class_tester(void(U::*)(void)); template <class U> static ::boost::type_traits::no_type is_class_tester(...); BOOST_STATIC_CONSTANT(bool, value = (::boost::type_traits::ice_and< sizeof(is_class_tester<T>(0)) == sizeof(::boost::type_traits::yes_type), ::boost::type_traits::ice_not< ::boost::is_union<T>::value >::value >::value) ); }; #endif #else template <typename T> struct is_class_impl { # ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION BOOST_STATIC_CONSTANT(bool, value = (::boost::type_traits::ice_and< ::boost::type_traits::ice_not< ::boost::is_union<T>::value >::value, ::boost::type_traits::ice_not< ::boost::is_scalar<T>::value >::value, ::boost::type_traits::ice_not< ::boost::is_array<T>::value >::value, ::boost::type_traits::ice_not< ::boost::is_reference<T>::value>::value, ::boost::type_traits::ice_not< ::boost::is_void<T>::value >::value, ::boost::type_traits::ice_not< ::boost::is_function<T>::value >::value >::value)); # else BOOST_STATIC_CONSTANT(bool, value = (::boost::type_traits::ice_and< ::boost::type_traits::ice_not< ::boost::is_union<T>::value >::value, ::boost::type_traits::ice_not< ::boost::is_scalar<T>::value >::value, ::boost::type_traits::ice_not< ::boost::is_array<T>::value >::value, ::boost::type_traits::ice_not< ::boost::is_reference<T>::value>::value, ::boost::type_traits::ice_not< ::boost::is_void<T>::value >::value >::value)); # endif }; # endif // BOOST_TT_HAS_CONFORMING_IS_CLASS_IMPLEMENTATION # else // BOOST_IS_CLASS template <typename T> struct is_class_impl { BOOST_STATIC_CONSTANT(bool, value = BOOST_IS_CLASS(T)); }; # endif // BOOST_IS_CLASS } // namespace detail # ifdef __EDG_VERSION__ BOOST_TT_AUX_BOOL_TRAIT_DEF1( is_class,T, boost::detail::is_class_impl<typename boost::remove_cv<T>::type>::value) # else BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_class,T,::boost::detail::is_class_impl<T>::value) # endif } // namespace boost #include <ib_boost/type_traits/detail/bool_trait_undef.hpp> #endif // BOOST_TT_IS_CLASS_HPP_INCLUDED
[ "mreppell@uchicago.edu" ]
mreppell@uchicago.edu
51a5139c26f620cdcdde9ed2c7d96acf40b9f343
c14e92092077be792b4a453a984e5a4b2c4f9e1e
/src/input.cpp
dd02b5149b4bc075971dffc0d3aedc72c2e40970
[]
no_license
AaHigh/FontDemo
d05463f851d43ef993d68f453d40a14b2f01eada
8905c0f468d2e486c36a088692f65d59ce4dedda
refs/heads/master
2021-01-19T20:49:15.951547
2018-03-10T01:21:04
2018-03-10T01:21:04
88,561,660
0
0
null
null
null
null
UTF-8
C++
false
false
17,198
cpp
#include "stdafx.h" U32 gInputMode; static U32 sLastMovement; static U32 sPausedAmount; static bool CALLBACK _terminateAppEnum( HWND hwnd, LPARAM lParam ) { DWORD dwID; GetWindowThreadProcessId( hwnd, &dwID ); if( dwID == ( DWORD ) lParam ) { PostMessage( hwnd, WM_CLOSE, 0, 0 ); } return TRUE; } struct Nugget { U64 usec; U32 msec; U08 data; }; const int sNumNuggets = 1024; static int sNuggetHead; static int sNuggetTail; static Nugget sNuggets[sNumNuggets]; static U32 _pc2ms( U64 val ) // NOTE: this function is not yet tested and has not worked yet { static F64 pff64; static U64 pfu64; if( pff64 == 0.0 ) pff64 = F64(qpf()); if( pfu64 == 0 ) pfu64 = qpf(); static U64 qpc0ms; if( !qpc0ms ) { qpc0ms = qpc(); qpc0ms -= U64((F64(rtmsec())/1000.0)*pff64); } U64 delta_qpc = val - qpc0ms; return U32( ( delta_qpc * 1000ULL ) / pfu64 ); } static void _stuff( U08 data ) { Nugget &n = sNuggets[sNuggetHead]; n.data = data; n.usec = rtusec(); n.msec = rtmsec(); sNuggetHead++; if( sNuggetHead >= sNumNuggets ) sNuggetHead = 0; if( sNuggetHead == sNuggetTail ) { printf( "NUGGET FIFO FULL!\n" ); } } static bool _grab( U32 *msec, U64 *usec, U08 *data ) { if( sNuggetHead == sNuggetTail ) return false; Nugget &n = sNuggets[sNuggetTail]; *msec = n.msec; *data = n.data; *usec = n.usec; sNuggetTail++; if( sNuggetTail >= sNumNuggets ) sNuggetTail = 0; return true; } void input_init( void ) { static RAWINPUTDEVICE *devs; static RAWINPUTDEVICELIST *dList; U32 numDevices = 0; int ndevs = 0; GetRawInputDeviceList( NULL, &numDevices, sizeof( RAWINPUTDEVICELIST ) ); printf( "There are %d raw input devices attached to the system\n", numDevices ); if( !dList ) dList = (RAWINPUTDEVICELIST *) calloc( numDevices, sizeof( RAWINPUTDEVICELIST ) ); if( !devs ) devs = (RAWINPUTDEVICE *) calloc( numDevices, sizeof( RAWINPUTDEVICE ) ); GetRawInputDeviceList( dList, &numDevices, sizeof( RAWINPUTDEVICELIST ) ); if( 1 ) { int i; const char *tname[] = { "MOUSE", "KEYBOARD", "HID" }; for( i=0; i<int(numDevices); i++ ) { printf( "raw input type %s\n", tname[dList[i].dwType] ); // , dList[i].hDevice ); RID_DEVICE_INFO info = {0}; char name[1024] = {0}; U32 di_size = info.cbSize = sizeof( RID_DEVICE_INFO ); GetRawInputDeviceInfo( dList[i].hDevice, RIDI_DEVICEINFO, &info, &di_size ); U32 nm_size = sizeof( name ) - 1; GetRawInputDeviceInfo( dList[i].hDevice, RIDI_DEVICENAME, name, &nm_size ); printf( "device name: %s\n", name ); if( info.dwType == RIM_TYPEMOUSE ) { printf( "mouse id:%d numbut:%d srate:%d hashw:%d\n", info.mouse.dwId, info.mouse.dwNumberOfButtons, info.mouse.dwSampleRate, info.mouse.fHasHorizontalWheel ); static bool mouseregistered; if( !mouseregistered ) { // Register for mouse raw input devs[ndevs].usUsagePage = 1; devs[ndevs].usUsage = 2; devs[ndevs].dwFlags = 0; devs[ndevs].hwndTarget=NULL; ndevs++; mouseregistered = true; } } else if( info.dwType == RIM_TYPEHID ) { if( info.hid.dwVendorId == 0x0801 ) { printf( "Found MagTek card reader\n" ); } printf( "HID vid: %08x, pid: %08x, ver: %d usagepage: %d usage: %d\n", info.hid.dwVendorId, info.hid.dwProductId, info.hid.dwVendorId, info.hid.usUsagePage, info.hid.usUsage ); devs[ndevs].usUsagePage = info.hid.usUsagePage; devs[ndevs].usUsage = info.hid.usUsage; devs[ndevs].dwFlags = 0; devs[ndevs].hwndTarget = NULL; ndevs++; } else if( info.dwType == RIM_TYPEKEYBOARD ) { printf( "keyboard type: %d subtype: %d mode: %d funckeys: %d indicators: %d totalkeys: %d\n", info.keyboard.dwType, info.keyboard.dwSubType, info.keyboard.dwKeyboardMode, info.keyboard.dwNumberOfFunctionKeys, info.keyboard.dwNumberOfIndicators, info.keyboard.dwNumberOfKeysTotal ); static bool keyboardregistered; if( !keyboardregistered ) { devs[ndevs].usUsagePage = 1; devs[ndevs].usUsage = 6; devs[ndevs].dwFlags = 0; devs[ndevs].hwndTarget = NULL; ndevs++; keyboardregistered = true; } } else { printf( "Unknown device type\n" ); } } } if( ndevs ) RegisterRawInputDevices( devs, ndevs, sizeof( RAWINPUTDEVICE ) ); RegisterTouchWindow( get_main_window(), TWF_WANTPALM ); } static void input_remove_callback( const void *_input ) { PlayerInput *input = ( PlayerInput * ) _input; if( input ) delete input; } Alist inputs( input_remove_callback ); PlayerInput::PlayerInput( U64 _input_id, INPUT_TYPE itype ) { t = itype; unused = false; showcursor = true; input_id = _input_id; F32 brpos[3]; brpos[0] = 1920 / 2; brpos[1] = 0; x = brpos[0]; y = brpos[1]; memset( irot, 0, sizeof( irot ) ); buttons = 0; r.top = 0; r.bottom = get_height(); r.left = 0; r.right = get_width(); hscroll = 0; vscroll = 0; memset( mb, 0, sizeof( mb ) ); inputs += this; } PlayerInput::~PlayerInput() { } PlayerInput *PlayerInput::getUnused( U64 new_input_id ) { int i; int uidx = -1; for( i=0; i<inputs; i++ ) { PlayerInput *pi = ( PlayerInput * ) inputs[i]; if( pi->unused ) { pi->input_id = new_input_id; pi->unused = false; return pi; } } return NULL; } PlayerInput *PlayerInput::get( U64 input_id ) { int i; int uidx = -1; for( i=0; i<inputs; i++ ) { PlayerInput *pi = ( PlayerInput * ) inputs[i]; if( pi->input_id == input_id ) return pi; } return NULL; } static bool sDisableTransforms = true; U32 PlayerInput::deliverRawData( U32 ms, int _dx, int _dy, U32 _buttons, bool _showcursor, bool from_network ) { U32 rval = 0; bool moved = false; _dy = (-(_dy)); dx = F32(_dx); dy = F32(_dy); buttons = _buttons; int i; for( i=0; i<sizeof(mb); i++ ) { if( buttons & (1<<(i<<1)) ) mb[i] = 1; else if( buttons & (2<<(i<<1)) ) mb[i] = 0; } if( mb[5] ) { vscroll += ( S32(buttons) >> 16 ); moved = true; } if( mb[6] ) { hscroll += ( S32(buttons) >> 16 ); moved = true; } if( dx != 0 || dy != 0 ) moved = true; F32 tdx = dx; F32 tdy = dy; // perform per-player rotations if( gInputMode == INPUT_MODE_MULTI_MOUSE && !sDisableTransforms ) { tdx = irot[0][0] * dx + irot[1][0] * dy; tdy = irot[0][1] * dx + irot[1][1] * dy; } dx = tdx; dy = tdy; x += dx; y += dy; if( x < r.left ) x = F32(r.left); if( x > r.right ) x = F32(r.right); if( y < r.top ) y = F32(r.top); if( y > r.bottom ) y = F32(r.bottom); F32 tx = x; F32 ty = y; return rval; } U32 timeSinceLastMovement( void ) { return msec() - sLastMovement; } U32 PlayerInput::deliverTouchData( U32 msec, int abs_x, int abs_y, U32 buttons, bool _showcursor ) { U32 rval = 0; static int initted; static Dinfo di; if( !initted ) { di = getDisplayInfo( gCenterScreenIndex ); } abs_x -= di.rect.left; abs_y -= di.rect.top; abs_x = ( abs_x * 1920 ) / get_width(); abs_y = ( abs_y * 1080 ) / get_height(); abs_y = 1080 - abs_y; dx = abs_x - x; dy = abs_y - y; // printf( "deliverTouchData : %08x %08d %.1f %.1f %d %d %u\n", this, msec, x, y, abs_x, abs_y, buttons ); rval = deliverRawData( msec, int(dx), int(-dy), buttons ); showcursor = _showcursor; return rval; } AImage *cursor; // position from the top left of the tip of the cursor // positive x to the right positive y down static F32 _cursor_tip_pos[2] = { 11.0f, 8.0f }; void PlayerInput::draw( void ) { int i; Afont f; static F32 hw,hh; glDepthMask( GL_FALSE ); glDisable( GL_DEPTH_TEST ); if( !cursor ) { cursor = new AImage( file_find( "arrow_cursor.png" ) ); hw = cursor->getWidth() * 0.5f; hh = cursor->getHeight() * 0.5f; } glEnable( GL_TEXTURE_2D ); for( i=0; i<inputs; i++ ) { PlayerInput *pi = ( PlayerInput * ) inputs[i]; if( !pi->showcursor ) continue; cursor->bindtex(); glPushMatrix(); glTranslatef( (F32)pi->getX(), (F32)pi->getY(), 0.0f ); if( gInputMode == INPUT_MODE_MULTI_MOUSE && !sDisableTransforms ) { F32 m[4][4] = {0}; m[0][0] = pi->irot[0][0]; m[0][1] = pi->irot[0][1]; m[1][0] = pi->irot[1][0]; m[1][1] = pi->irot[1][1]; m[2][2] = m[3][3] = 1; glMultMatrixf( &m[0][0] ); } glTranslatef( hw-_cursor_tip_pos[0], -hh+_cursor_tip_pos[1], 0.0f ); draw_textured_frame( 0.0f, 0.0f, hw, hh, 0xffffffff ); // f.pos(0,0); // f.printf( "%08x", pi->getButtons() ); glPopMatrix(); } } void PlayerInput::TouchInput( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam ) { if( gInputMode != INPUT_MODE_MULTI_TOUCH && gInputMode != INPUT_MODE_MULTI_TOUCH_MULTI_MOUSE ) return; int ninputs = (int) wParam; TOUCHINPUT *input; input = ( TOUCHINPUT * ) alloca( sizeof( TOUCHINPUT ) * ninputs ); GetTouchInputInfo( (HTOUCHINPUT) lParam, ninputs, input, sizeof( TOUCHINPUT ) ); int i; for( i=0; i<ninputs; i++ ) { TOUCHINPUT &in = input[i]; U64 unique_id = in.dwID + 0x60000ULL; PlayerInput *pi = PlayerInput::get( unique_id ); if( !pi ) { static int unique_idx; pi = new PlayerInput( unique_id+unique_idx ); } U32 buttons = 0; if( in.dwFlags & TOUCHEVENTF_DOWN ) buttons |= 1; if( in.dwFlags & TOUCHEVENTF_UP ) buttons |= 2; // if( in.dwFlags & TOUCHEVENTF_MOVE ) pi->deliverTouchData( msec(), in.x/100, in.y/100, buttons ); // in.cxContact, in.cyContact, in.dwExtraInfo, in.dwFlags, in.dwID, in.dwMask, in.dwTime, in.hSource, in.x, in.y // printf( "touch input %d: pinput 0x%x %d %d (%02x)\n",i, pi, in.x, in.y, in.dwFlags ); } CloseTouchInputHandle( (HTOUCHINPUT) lParam ); } void PlayerInput::RawInput( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam ) { if( gInputMode != INPUT_MODE_MULTI_MOUSE && gInputMode != INPUT_MODE_MULTI_TOUCH_MULTI_MOUSE ) return; UINT dwSize; GetRawInputData((HRAWINPUT)lParam, RID_INPUT, NULL, &dwSize, sizeof(RAWINPUTHEADER)); LPBYTE lpb = ( LPBYTE ) alloca( dwSize ); if (lpb == NULL) { return; } if (GetRawInputData((HRAWINPUT)lParam, RID_INPUT, lpb, &dwSize, sizeof(RAWINPUTHEADER)) != dwSize ) OutputDebugString (TEXT("GetRawInputData doesn't return correct size !\n")); RAWINPUT* raw = (RAWINPUT*)lpb; if( (raw->header.dwType == RIM_TYPEMOUSE) ) { UINT di_size,rval; if( 0 ) { RID_DEVICE_INFO info; di_size = sizeof( RID_DEVICE_INFO ); rval = GetRawInputDeviceInfo( raw->header.hDevice, RIDI_DEVICEINFO, &info, &di_size ); printf( "mouse id:%d numbut:%d srate:%d hashw:%d\n", info.mouse.dwId, info.mouse.dwNumberOfButtons, info.mouse.dwSampleRate, info.mouse.fHasHorizontalWheel ); } U32 cksum = 0; { char name[1024]; name[0] = 0; di_size = sizeof(name); rval = GetRawInputDeviceInfo( raw->header.hDevice, RIDI_DEVICENAME, &name[0], &di_size ); cksum = cksum_data( 0, name, strlen( name ) ); // printf( "mouse name:%s nlen:%d cksum:%08x\n", name, di_size, cksum ); } if( raw->data.mouse.usButtonData ) { static int a; a = 3; } if( 0 ) printf("Mouse: dv=%x Flg=%08x But=%04x BFlg=%08x BtnDat=%08x RwBut=%08x dx=%04x dy=%04x xtra=%08x\n", raw->header.hDevice, raw->data.mouse.usFlags, raw->data.mouse.ulButtons, raw->data.mouse.usButtonFlags, raw->data.mouse.usButtonData, raw->data.mouse.ulRawButtons, raw->data.mouse.lLastX, raw->data.mouse.lLastY, raw->data.mouse.ulExtraInformation); U64 input_id = cksum; U64 player_id = 0; // Player::input_id_to_player_id( cksum ); if( !player_id ) { static volatile int a; a = 0; } PlayerInput *pi = PlayerInput::get( input_id ); if( !pi ) { RID_DEVICE_INFO info; di_size = sizeof( RID_DEVICE_INFO ); rval = GetRawInputDeviceInfo( raw->header.hDevice, RIDI_DEVICEINFO, &info, &di_size ); printf( "mouse id:%d numbut:%d srate:%d hashw:%d\n", info.mouse.dwId, info.mouse.dwNumberOfButtons, info.mouse.dwSampleRate, info.mouse.fHasHorizontalWheel ); INPUT_TYPE t = INPUT_TYPE_MOUSE; pi = new PlayerInput( input_id, t ); } pi->deliverRawData( msec(), raw->data.mouse.lLastX, raw->data.mouse.lLastY, raw->data.mouse.ulButtons ); } else if( (raw->header.dwType == RIM_TYPEHID) ) { // printf( "RAW HID input received\n" ); // printf( "data size: %d", raw->data.hid.dwSizeHid ); int i; for( i=0; i<int(raw->data.hid.dwSizeHid); i++ ) { // if( !( i&31 ) ) printf( "\n" ); // printf( "%02x ", raw->data.hid.bRawData[i] ); } // printf( "\n" ); } else if( (raw->header.dwType == RIM_TYPEKEYBOARD) ) { static int lastvkey; static int lastflag; // printf( "Raw keyboard data received %d %x\n", raw->data.keyboard.Flags, raw->data.keyboard.VKey ); if( 0 ) { printf(" Kbd: make=%04x Flags:%04x Reserved:%04x ExtraInformation:%08x, msg=%04x VK=%04x \n", raw->data.keyboard.MakeCode, raw->data.keyboard.Flags, raw->data.keyboard.Reserved, raw->data.keyboard.ExtraInformation, raw->data.keyboard.Message, raw->data.keyboard.VKey ); } lastvkey = raw->data.keyboard.VKey; lastflag = raw->data.keyboard.Flags; } } static KeyInput *ki; DWORD WINAPI KeyInput::MyThreadFunction( LPVOID lpParam ) { if( ki ) { printf( "Ki already exists\n" ); } if( !ki ) ki = new KeyInput(); MSG msg; while( 1 ) { if(PeekMessage (&msg, NULL, 0, 0, PM_REMOVE) != 0) { TranslateMessage(&msg); DispatchMessage(&msg); } else { #ifdef TWO_WINDOWS if( GetForegroundWindow() == get_main_window() ) { printf( "Grabbing focus away from main window to the hidden input window\n" ); SetForegroundWindow( hwnd ); } else #endif Sleep(1); } } return 0; } void hidden_window_key_input_init( void ) { static DWORD threadId; if( threadId ) { printf( "Error: Thread already exists\n" ); } CreateThread( NULL, // default security attributes 0, // use default stack size KeyInput::MyThreadFunction, // thread function name 0, // argument to thread function 0, // use default creation flags &threadId); } static LRESULT CALLBACK sMainWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch(msg) { case WM_MOUSEMOVE: case WM_LBUTTONDOWN: case WM_LBUTTONUP: case WM_MOUSEHWHEEL: case WM_MOUSEWHEEL: case WM_LBUTTONDBLCLK: case WM_MBUTTONDOWN: case WM_MBUTTONUP: case WM_MBUTTONDBLCLK: case WM_RBUTTONDOWN: case WM_RBUTTONUP: case WM_RBUTTONDBLCLK: case WM_TOUCH: case WM_KEYDOWN: case WM_KEYUP: // just forward these messages over to the main window as they aren't time sensitive -- just the raw data is of concern to use the timing PostMessage( get_main_window(), msg, wParam, lParam ); break; case WM_INPUT: PlayerInput::RawInput( hwnd, msg, wParam, lParam ); break; default: // printf( "%-6dMSG %4x on win lParam = 0x%08x wParam = %d wnd = %d\n", msec(), msg, lParam, wParam, hwnd ); break; } return DefWindowProc(hwnd, msg, wParam, lParam); } HWND KeyInput::hwnd; WNDCLASSEX KeyInput::wcx; KeyInput::KeyInput() { hwnd = 0; wcx.cbSize = sizeof(wcx); wcx.style = CS_DBLCLKS; wcx.lpfnWndProc = sMainWndProc; wcx.cbClsExtra = 0; wcx.cbWndExtra = 0; wcx.hInstance = 0; wcx.hIcon = LoadIcon(NULL, IDI_APPLICATION); wcx.hCursor = LoadCursor(NULL, IDC_ARROW); wcx.hbrBackground = (HBRUSH) (COLOR_WINDOW); wcx.lpszMenuName = NULL; wcx.lpszClassName = "A"; wcx.hIconSm = LoadIcon(NULL, IDI_APPLICATION); if (!RegisterClassEx(&wcx)) { printf( "Error\n" ); exit(0); } #ifdef TWO_WINDOWS openWindow(); if (!hwnd) { printf( "Error\n" ); exit(0); } ShowWindow(hwnd,SW_SHOW); #endif } KeyInput::~KeyInput() { CloseWindow( hwnd ); hwnd = NULL; } void KeyInput::openWindow( void ) { if( hwnd ) { printf( "Error: window already opened\n" ); CloseWindow( hwnd ); hwnd = NULL; } hwnd = CreateWindowEx(0, "A", "B", WS_POPUP | WS_CLIPCHILDREN | WS_CLIPSIBLINGS, 0, 0, 1, 1, HWND_DESKTOP, 0, 0, 0 ); } void input_draw( void ) { draw_in_screen_coord(); } static int sIndex; static bool sStartPressed; static bool sLeftPressed; static bool sRightPressed; static bool sUpPressed; static bool sDownPressed; static bool sForwardPressed; static bool sBackPressed; static bool sBut1Pressed; static bool sBut2Pressed; bool input_button_pressed( ButtonEnum b ) { if( b == BUTT_START ) return sStartPressed; else if( b == BUTT_MOVE_LEFT ) return sLeftPressed; else if( b == BUTT_MOVE_RIGHT ) return sRightPressed; else if( b == BUTT_MOVE_UP ) return sUpPressed; else if( b == BUTT_MOVE_DOWN ) return sDownPressed; else if( b == BUTT_MOVE_FORWARD ) return sForwardPressed; else if( b == BUTT_MOVE_BACKWARD ) return sBackPressed; else if( b == BUTT_BUTTON1 ) return sBut1Pressed; else if( b == BUTT_BUTTON2 ) return sBut2Pressed; return false; } void input_button_addevent( ButtonEnum b, bool onoff ) { } void input_adjust_for_pause( U32 dtms ) { sPausedAmount += dtms; } void input_write( FILE *f ) { } void input_reset( void ) { }
[ "Aaron_Hightower@comcast.com" ]
Aaron_Hightower@comcast.com
49b0fc7675df8ee1bc7561b6ca07022de23f9cb1
2cb4253482f690a0f8f714219388bab32c26650c
/butils.cpp
85b32c958059401c9b0f92d44fd9dda26c718cae
[]
no_license
bkumpar/BUtils
f6c41aa0cd72c42d8191e2596ec045a63b4e0d0e
10e524399b5945ccd287aeba7c0d7275eb4a06cf
refs/heads/master
2022-10-10T10:46:03.766302
2020-06-11T23:14:34
2020-06-11T23:14:34
271,664,173
0
0
null
null
null
null
UTF-8
C++
false
false
1,714
cpp
// butils.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <string> #include <iostream> #include "BUtils.h" #include <Windows.h> namespace dtu=datetime_utils; bool test_parseDateTime1() { std::wstring datetimeStr(L"2019.06.01. 21:33:59"); tm timeStruct; if(S_OK == dtu::parseDateTime(datetimeStr, timeStruct)) { return (timeStruct.tm_year == 119) && (timeStruct.tm_mon == 5) && (timeStruct.tm_mday == 1) && (timeStruct.tm_hour == 21) && (timeStruct.tm_min == 33) && (timeStruct.tm_sec == 59); } else { return false; } } bool test_parseDateTime2() { std::wstring datetimeStr(L"2019.06.01. 21:33:59"); time_t tt; HRESULT ret = dtu::parseDateTime( datetimeStr, tt); return ret == S_OK; } bool test_parseDateTime3() { std::wstring datetimeStr; FILETIME fileDateTime; HRESULT ret = dtu::parseDateTime(datetimeStr, fileDateTime); return ret == S_OK; } bool test_format() { std::wstring datetimeStr(L"2019.06.01. 21:33:59"); time_t tt; HRESULT ret = dtu::parseDateTime( datetimeStr, tt); std::wstring fmt = L"%Y.%m.%d. %H:%M:%S"; std::wstring timestr = dtu::format(tt, fmt); return timestr==L"2019.06.01. 21:33:59"; } filesize_t convertFileSize(DWORD nFileSizeHigh, DWORD nFileSizeLow) { filesize_t fileSize; fileSize = nFileSizeHigh; fileSize <<= sizeof( nFileSizeHigh ) * 8; fileSize |= nFileSizeLow; return fileSize; } int _tmain(int argc, _TCHAR* argv[]) { if(!test_parseDateTime1()) std::wcout << "test_parseDateTime1 FAILED." << std::endl; if(!test_parseDateTime2()) std::wcout << "test_parseDateTime2 FAILED." << std::endl; if(!test_format()) std::wcout << "test_format FAILED." << std::endl; return 0; }
[ "bkumpar@gmail.com" ]
bkumpar@gmail.com
eaf23f125a1103651f1d82225486ae9f1d667205
dc9959be244ed9285a03a10fbc6046ea75f17f5d
/agency/detail/factory.hpp
4db09103e961ebf96749d434c9f8ae35dcc0d7ea
[]
no_license
sali98/agency
09d708555bd329b32a5dd48ba339d163257ee074
022c69d37064542cde7d20c8401efdace08fa68e
refs/heads/master
2021-01-21T08:25:22.727368
2017-05-12T20:31:34
2017-05-12T20:31:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,099
hpp
#pragma once #include <agency/detail/config.hpp> #include <agency/detail/tuple.hpp> #include <agency/detail/unit.hpp> #include <agency/detail/type_traits.hpp> #include <agency/detail/integer_sequence.hpp> #include <utility> #include <type_traits> namespace agency { namespace detail { // construct is a type of Factory // which creates a T by calling T's constructor with the given Args... template<class T, class... Args> class construct { public: __AGENCY_ANNOTATION construct() : args_() {} __AGENCY_ANNOTATION construct(const tuple<Args...>& args) : args_(args) {} __agency_exec_check_disable__ template<size_t... Indices> __AGENCY_ANNOTATION T impl(index_sequence<Indices...>) const & { return T(detail::get<Indices>(args_)...); } __agency_exec_check_disable__ template<size_t... Indices> __AGENCY_ANNOTATION T impl(index_sequence<Indices...>) && { return T(detail::get<Indices>(std::move(args_))...); } __AGENCY_ANNOTATION T operator()() const & { return impl(make_index_sequence<sizeof...(Args)>()); } __AGENCY_ANNOTATION T operator()() && { return std::move(*this).impl(make_index_sequence<sizeof...(Args)>()); } private: tuple<Args...> args_; }; template<class T, class... Args> __AGENCY_ANNOTATION construct<T,typename std::decay<Args>::type...> make_construct(Args&&... args) { return construct<T,typename std::decay<Args>::type...>(agency::detail::make_tuple(std::forward<Args>(args)...)); } template<class T> __AGENCY_ANNOTATION construct<T,T> make_copy_construct(const T& arg) { return make_construct<T>(arg); } struct unit_factory : construct<unit> {}; // a moving_factory is a factory which moves an object when it is called template<class T> class moving_factory { public: __AGENCY_ANNOTATION moving_factory(moving_factory&& other) = default; // this constructor moves other's value into value_ // so, it acts like a move constructor __AGENCY_ANNOTATION moving_factory(const moving_factory& other) : value_(std::move(other.value_)) {} // XXX this code causes nvcc 8.0 to produce an error message // //__agency_exec_check_disable__ //template<class U, // class = typename std::enable_if< // std::is_constructible<T,U&&>::value // >::type> //__AGENCY_ANNOTATION //moving_factory(U&& value) // : value_(std::forward<U>(value)) //{} // XXX in order to WAR the nvcc 8.0 error above, // instead of perfectly forwarding the value in, // move construct it into value_ instead. __agency_exec_check_disable__ __AGENCY_ANNOTATION moving_factory(T&& value) : value_(std::move(value)) {} __AGENCY_ANNOTATION T operator()() const { return std::move(value_); } private: mutable T value_; }; template<class T> __AGENCY_ANNOTATION moving_factory<decay_t<T>> make_moving_factory(T&& value) { return moving_factory<decay_t<T>>(std::forward<T>(value)); } // a zip_factory is a type of Factory which takes a list of Factories // and creates a tuple whose elements are the results of the given Factories template<class... Factories> struct zip_factory { tuple<Factories...> factory_tuple_; __AGENCY_ANNOTATION zip_factory(const tuple<Factories...>& factories) : factory_tuple_(factories) {} template<size_t... Indices> __AGENCY_ANNOTATION agency::detail::tuple< result_of_t<Factories()>... > impl(agency::detail::index_sequence<Indices...>) { return agency::detail::make_tuple(detail::get<Indices>(factory_tuple_)()...); } __AGENCY_ANNOTATION agency::detail::tuple< result_of_t<Factories()>... > operator()() { return impl(index_sequence_for<Factories...>()); } }; template<class... Factories> __AGENCY_ANNOTATION zip_factory<Factories...> make_zip_factory(const tuple<Factories...>& factory_tuple) { return zip_factory<Factories...>(factory_tuple); } } // end detail } // end agency
[ "jaredhoberock@gmail.com" ]
jaredhoberock@gmail.com
4a78b6c7a618074e424970c1bccbb8e88fc242da
b4a0013a02296600226294639c47c56d08abdb09
/src/vm_tools/vm_memory/CMem.hpp
5725e57a61dfabc22ddb613d408dafd5bd06b5c2
[]
no_license
vincentma0001/vm_tools
817001c34568763504efa1c46945fcf71ea208f4
de9427b6db6953150a966f46f903a7ae9aef5131
refs/heads/main
2023-06-25T16:37:10.076705
2020-11-26T14:03:56
2020-11-26T14:03:56
306,869,378
0
0
null
null
null
null
UTF-8
C++
false
false
4,431
hpp
// ================================================================================================ // // == == // // == CMem.hpp == // // == == // // == ------------------------------------------------------------------------------------------ == // // == == // // == Author : v.m. ( vincent_ma0001@hotmail.com ) == // // == Version : 1.0.0.0 == // // == Create Time : 2020-10-08 13:39:35 == // // == Modify Time : 2020-11-18 17:45:57 == // // == Issue List : == // // == Change List : == // // == [ 0.0.0.0 ] - Basic version == // // == == // // == ------------------------------------------------------------------------------------------ == // // == == // // == Copyright(c) : This file has copyrighted by v.m., the all right will been reserved! == // // == == // // ================================================================================================ // #ifndef __CMEM_HPP__ #define __CMEM_HPP__ // ================================================================================================ // // == Include files : == // // == ------------------------------------------------------------------------------------------ == // // [ Include files ] {{{ //.vm's.function.depend.on.included #include <vm_cfgs.h> //.vm's.function.files.inlcuded #include "CMemPtr.h" // }}} // ================================================================================================ // // ================================================================================================ // // using namespace vm {{{ namespace vm { // ------------------------------------------------------------------------------------------------ // // Class CMem : This class deal with memory operation template< size_t tsztBufSize > class CMem : public CMemPtr { // {{{ // Construct & Destruct : {{{ public: // Construct define inline CMem(); // Destruct define inline virtual ~CMem(); private: // Copy construct define inline CMem ( const CMem &obj ); // Assignment operation inline CMem& operator = ( const CMem &obj ); // }}} ! Construct & Destruct // Menbers : {{{ private: tchar mBuf[tsztBufSize]; // }}} ! Members }; // }}} End of class CMem // ------------------------------------------------------------------------------------------------ // }; // }}} End of namespace vm // ================================================================================================ // // class realization #include "CMem.hpp.inl" // ================================================================================================ // #endif // ! __CMEM_HPP__ // ================================================================================================ // // == Usage : == // // == ------------------------------------------------------------------------------------------ == // // [ Usage ] {{{ /* // }}} */ // ================================================================================================ // // == End of file == // // ================================================================================================ //
[ "vm0001@localhost.localdomain" ]
vm0001@localhost.localdomain
4171d05fe6b31b9fa707c28b1a63d938a7bb4d60
bb41b9c0c26c71c290965d2ffdb46475bc9de27a
/classes/classesAbstraites/main.cpp
8da2a2a4e93a7afe76e20b17e084d49a49910cba
[]
no_license
laganiere/programs
ca457c3371099b761921f39ca314e74f588d8b62
371f339bb9a550f2f39942d8081e78c328df1bb0
refs/heads/master
2021-03-12T23:21:57.936026
2015-11-24T20:46:28
2015-11-24T20:46:28
5,452,171
2
3
null
null
null
null
UTF-8
C++
false
false
516
cpp
#include "forme.h" #include "rectangle.h" #include "cercle.h" int main() { Forme *p[2]; int nf = 2; p[0] = new Cercle(2); p[1] = new Rectangle(4, 5); for (int i = 0; i < nf; i++) { cout << "Périmètre : " << p[i]->getPerimetre(); cout << " / Aire : " << p[i]->getAire() << endl; } /*--------------- résultat ------------------------*\ Périmètre : 12.5664 / Aire : 12.5664 Périmètre : 18 / Aire : 20 \*-------------------------------------------------*/ }
[ "robert@laganiere.name" ]
robert@laganiere.name
3b8be0bddc513c958b52ff9909c734ae0d732fcc
3c325be3820097a67c08d7048ca3552db71e446c
/codeforces/1279B.cpp
179417884416c5f368403cf020e7ee055112a4da
[]
no_license
M45UDrana/DS-Algo-Problem-Solving
2dc2ba53f162675ddc6b549f0c84b702f738a485
5548d514f9ffff7aa618b29fcb8440a8b85afb8b
refs/heads/main
2023-07-17T06:14:51.062413
2021-09-01T18:19:14
2021-09-01T18:19:14
375,086,950
0
0
null
null
null
null
UTF-8
C++
false
false
745
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<string, int> psi; #define ff first #define ss second #define pb(a) push_back(a) #define mp(a,b) make_pair(a,b) #define d(a,b,c) cout<<a<<" "<<b<<" "<<c<<'\n' #define IO ios_base::sync_with_stdio(0);cin.tie(0); const int N = 1e5+7; int main() { IO; int t; cin >> t; while(t--) { ll n, s; cin >> n >> s; ll a, sum = 0, cnt = 0, mx = 0, idx = 0, pidx; for(int i = 0; i < n; i++) { cin >> a; sum += a; if(a > mx) { mx = a; pidx = i+1; } if(sum <= s) cnt = i+1; else if(sum-mx <= s and cnt < i) { cnt = i; idx = pidx; } } cout << idx << endl; } return 0; }
[ "masudranaata@gmail.com" ]
masudranaata@gmail.com
95182d7ef0c1805807ba7cb92b7a533d43d50a33
674ab3a2037fa853b546538a6327841b29f097e0
/CPP/Print.h
a77820e52c644e14ddec3a0b8c4fea17fb343301
[]
no_license
magictaler/magicclock
546bb0ae15263bf784645c15a051af1a19724777
1fa2a784fd1f45ad576966a79aacbd56d25012a2
refs/heads/master
2016-09-06T07:06:06.600983
2012-10-12T13:03:11
2012-10-12T13:03:11
32,116,684
0
0
null
null
null
null
UTF-8
C++
false
false
2,006
h
/* Print.h - Base class that provides print() and println() Copyright (c) 2008 David A. Mellis. All right reserved. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef Print_h #define Print_h #include <inttypes.h> #include <stdio.h> // for size_t #include <avr/pgmspace.h> #define DEC 10 #define HEX 16 #define OCT 8 #define BIN 2 #define BYTE 0 class Print { private: void printNumber(unsigned long, uint8_t); void printFloat(double, uint8_t); public: virtual void write(uint8_t) = 0; virtual void write(const char *str); virtual void write(const uint8_t *buffer, size_t size); void print_p(const prog_char str[]); void println_p(const prog_char str[]); void print(const char[]); void print(char, int = BYTE); void print(unsigned char, int = BYTE); void print(int, int = DEC); void print(unsigned int, int = DEC); void print(long, int = DEC); void print(unsigned long, int = DEC); void print(double, int = 2); void println(const char[]); void println(char, int = BYTE); void println(unsigned char, int = BYTE); void println(int, int = DEC); void println(unsigned int, int = DEC); void println(long, int = DEC); void println(unsigned long, int = DEC); void println(double, int = 2); void println(void); }; #endif
[ "pahomenko@gmail.com@a7294488-2549-328d-09dc-26d589cd9fb3" ]
pahomenko@gmail.com@a7294488-2549-328d-09dc-26d589cd9fb3
92c62019f83ab555ddf4bc6cfc567f1894229d9c
627d4d432c86ad98f669214d9966ae2db1600b31
/src/scripttools/debugging/qscriptbreakpointsmodel.cpp
8be63b95485f5cda80a787809caa2a0d01ae5172
[]
no_license
fluxer/copperspice
6dbab905f71843b8a3f52c844b841cef17f71f3f
07e7d1315d212a4568589b0ab1bd6c29c06d70a1
refs/heads/cs-1.1
2021-01-17T21:21:54.176319
2015-08-26T15:25:29
2015-08-26T15:25:29
39,802,091
6
0
null
2015-07-27T23:04:01
2015-07-27T23:04:00
null
UTF-8
C++
false
false
13,798
cpp
/*********************************************************************** * * Copyright (c) 2012-2015 Barbara Geller * Copyright (c) 2012-2015 Ansel Sermersheim * Copyright (c) 2012-2014 Digia Plc and/or its subsidiary(-ies). * Copyright (c) 2008-2012 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * * This file is part of CopperSpice. * * CopperSpice is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * version 2.1 as published by the Free Software Foundation. * * CopperSpice is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with CopperSpice. If not, see * <http://www.gnu.org/licenses/>. * ***********************************************************************/ #include "qscriptbreakpointsmodel_p.h" #include "qscriptdebuggerjobschedulerinterface_p.h" #include "qscriptdebuggercommandschedulerjob_p.h" #include "qscriptdebuggercommandschedulerfrontend_p.h" #include "qabstractitemmodel_p.h" #include <QtCore/qpair.h> #include <QtCore/qcoreapplication.h> #include <QtGui/qicon.h> #include <QtCore/qdebug.h> QT_BEGIN_NAMESPACE /*! \since 4.5 \class QScriptBreakpointsModel \internal */ class QScriptBreakpointsModelPrivate : public QAbstractItemModelPrivate { Q_DECLARE_PUBLIC(QScriptBreakpointsModel) public: QScriptBreakpointsModelPrivate(); ~QScriptBreakpointsModelPrivate(); QScriptDebuggerJobSchedulerInterface *jobScheduler; QScriptDebuggerCommandSchedulerInterface *commandScheduler; QList<QPair<int, QScriptBreakpointData> > breakpoints; }; QScriptBreakpointsModelPrivate::QScriptBreakpointsModelPrivate() { } QScriptBreakpointsModelPrivate::~QScriptBreakpointsModelPrivate() { } QScriptBreakpointsModel::QScriptBreakpointsModel( QScriptDebuggerJobSchedulerInterface *jobScheduler, QScriptDebuggerCommandSchedulerInterface *commandScheduler, QObject *parent) : QAbstractItemModel(*new QScriptBreakpointsModelPrivate, parent) { Q_D(QScriptBreakpointsModel); d->jobScheduler = jobScheduler; d->commandScheduler = commandScheduler; } QScriptBreakpointsModel::~QScriptBreakpointsModel() { } namespace { class SetBreakpointJob : public QScriptDebuggerCommandSchedulerJob { public: SetBreakpointJob(const QScriptBreakpointData &data, QScriptDebuggerCommandSchedulerInterface *scheduler) : QScriptDebuggerCommandSchedulerJob(scheduler), m_data(data) { } void start() { QScriptDebuggerCommandSchedulerFrontend frontend(commandScheduler(), this); frontend.scheduleSetBreakpoint(m_data); } void handleResponse(const QScriptDebuggerResponse &, int) { finish(); } private: QScriptBreakpointData m_data; }; } // namespace /*! Sets a breakpoint defined by the given \a data. A new row will be inserted into the model if the breakpoint could be successfully set. */ void QScriptBreakpointsModel::setBreakpoint(const QScriptBreakpointData &data) { Q_D(QScriptBreakpointsModel); QScriptDebuggerJob *job = new SetBreakpointJob(data, d->commandScheduler); d->jobScheduler->scheduleJob(job); } namespace { class SetBreakpointDataJob : public QScriptDebuggerCommandSchedulerJob { public: SetBreakpointDataJob(int id, const QScriptBreakpointData &data, QScriptDebuggerCommandSchedulerInterface *scheduler) : QScriptDebuggerCommandSchedulerJob(scheduler), m_id(id), m_data(data) { } void start() { QScriptDebuggerCommandSchedulerFrontend frontend(commandScheduler(), this); frontend.scheduleSetBreakpointData(m_id, m_data); } void handleResponse(const QScriptDebuggerResponse &, int) { finish(); } private: int m_id; QScriptBreakpointData m_data; }; } // namespace /*! Sets the \a data associated with the breakpoint identified by \a id. A dataChanged() signal will be emitted if the breakpoint data could be successfully changed. */ void QScriptBreakpointsModel::setBreakpointData(int id, const QScriptBreakpointData &data) { Q_D(QScriptBreakpointsModel); QScriptDebuggerJob *job = new SetBreakpointDataJob(id, data, d->commandScheduler); d->jobScheduler->scheduleJob(job); } namespace { class DeleteBreakpointJob : public QScriptDebuggerCommandSchedulerJob { public: DeleteBreakpointJob(int id, QScriptDebuggerCommandSchedulerInterface *scheduler) : QScriptDebuggerCommandSchedulerJob(scheduler), m_id(id) { } void start() { QScriptDebuggerCommandSchedulerFrontend frontend(commandScheduler(), this); frontend.scheduleDeleteBreakpoint(m_id); } void handleResponse(const QScriptDebuggerResponse &, int) { finish(); } private: int m_id; }; } // namespace /*! Deletes the breakpoint with the given \a id. The corresponding row in the model will be removed if the breakpoint was successfully deleted. */ void QScriptBreakpointsModel::deleteBreakpoint(int id) { Q_D(QScriptBreakpointsModel); QScriptDebuggerJob *job = new DeleteBreakpointJob(id, d->commandScheduler); d->jobScheduler->scheduleJob(job); } /*! Adds a breakpoint to the model. This function does not actually set a breakpoint (i.e. it doesn't communicate with the debugger). */ void QScriptBreakpointsModel::addBreakpoint(int id, const QScriptBreakpointData &data) { Q_D(QScriptBreakpointsModel); int rowIndex = d->breakpoints.size(); beginInsertRows(QModelIndex(), rowIndex, rowIndex); d->breakpoints.append(qMakePair(id, data)); endInsertRows(); } /*! Modify the \a data of breakpoint \a id. */ void QScriptBreakpointsModel::modifyBreakpoint(int id, const QScriptBreakpointData &data) { Q_D(QScriptBreakpointsModel); for (int i = 0; i < d->breakpoints.size(); ++i) { if (d->breakpoints.at(i).first == id) { d->breakpoints[i] = qMakePair(id, data); emit dataChanged(createIndex(i, 0), createIndex(i, columnCount() - 1)); break; } } } /*! Remove the breakpoint identified by \a id from the model. This function does not delete the breakpoint (i.e. it doesn't communicate with the debugger). */ void QScriptBreakpointsModel::removeBreakpoint(int id) { Q_D(QScriptBreakpointsModel); for (int i = 0; i < d->breakpoints.size(); ++i) { if (d->breakpoints.at(i).first == id) { beginRemoveRows(QModelIndex(), i, i); d->breakpoints.removeAt(i); endRemoveRows(); break; } } } /*! Returns the id of the breakpoint at the given \a row. */ int QScriptBreakpointsModel::breakpointIdAt(int row) const { Q_D(const QScriptBreakpointsModel); return d->breakpoints.at(row).first; } /*! Returns the data for the breakpoint at the given \a row. */ QScriptBreakpointData QScriptBreakpointsModel::breakpointDataAt(int row) const { Q_D(const QScriptBreakpointsModel); return d->breakpoints.at(row).second; } QScriptBreakpointData QScriptBreakpointsModel::breakpointData(int id) const { Q_D(const QScriptBreakpointsModel); for (int i = 0; i < d->breakpoints.size(); ++i) { if (d->breakpoints.at(i).first == id) { return d->breakpoints.at(i).second; } } return QScriptBreakpointData(); } /*! Tries to find a breakpoint with the given \a scriptId and \a lineNumber. Returns the id of the first breakpoint that matches, or -1 if no such breakpoint is found. */ int QScriptBreakpointsModel::resolveBreakpoint(qint64 scriptId, int lineNumber) const { Q_D(const QScriptBreakpointsModel); for (int i = 0; i < d->breakpoints.size(); ++i) { if ((d->breakpoints.at(i).second.scriptId() == scriptId) && (d->breakpoints.at(i).second.lineNumber() == lineNumber)) { return d->breakpoints.at(i).first; } } return -1; } int QScriptBreakpointsModel::resolveBreakpoint(const QString &fileName, int lineNumber) const { Q_D(const QScriptBreakpointsModel); for (int i = 0; i < d->breakpoints.size(); ++i) { if ((d->breakpoints.at(i).second.fileName() == fileName) && (d->breakpoints.at(i).second.lineNumber() == lineNumber)) { return d->breakpoints.at(i).first; } } return -1; } /*! \reimp */ QModelIndex QScriptBreakpointsModel::index(int row, int column, const QModelIndex &parent) const { Q_D(const QScriptBreakpointsModel); if (parent.isValid()) { return QModelIndex(); } if ((row < 0) || (row >= d->breakpoints.size())) { return QModelIndex(); } if ((column < 0) || (column >= columnCount())) { return QModelIndex(); } return createIndex(row, column); } /*! \reimp */ QModelIndex QScriptBreakpointsModel::parent(const QModelIndex &) const { return QModelIndex(); } /*! \reimp */ int QScriptBreakpointsModel::columnCount(const QModelIndex &parent) const { if (!parent.isValid()) { return 6; } return 0; } /*! \reimp */ int QScriptBreakpointsModel::rowCount(const QModelIndex &parent) const { Q_D(const QScriptBreakpointsModel); if (!parent.isValid()) { return d->breakpoints.size(); } return 0; } /*! \reimp */ QVariant QScriptBreakpointsModel::data(const QModelIndex &index, int role) const { Q_D(const QScriptBreakpointsModel); if (!index.isValid() || (index.row() >= d->breakpoints.size())) { return QVariant(); } const QPair<int, QScriptBreakpointData> &item = d->breakpoints.at(index.row()); if (role == Qt::DisplayRole) { if (index.column() == 0) { return item.first; } else if (index.column() == 1) { QString loc = item.second.fileName(); if (loc.isEmpty()) { loc = QString::fromLatin1("<anonymous script, id=%0>").arg(item.second.scriptId()); } loc.append(QString::fromLatin1(":%0").arg(item.second.lineNumber())); return loc; } else if (index.column() == 2) { if (!item.second.condition().isEmpty()) { return item.second.condition(); } } else if (index.column() == 3) { if (item.second.ignoreCount() != 0) { return item.second.ignoreCount(); } } else if (index.column() == 5) { return item.second.hitCount(); } } else if (role == Qt::CheckStateRole) { if (index.column() == 0) { return item.second.isEnabled() ? Qt::Checked : Qt::Unchecked; } else if (index.column() == 4) { return item.second.isSingleShot() ? Qt::Checked : Qt::Unchecked; } } else if (role == Qt::EditRole) { if (index.column() == 2) { return item.second.condition(); } else if (index.column() == 3) { return item.second.ignoreCount(); } } return QVariant(); } /*! \reimp */ bool QScriptBreakpointsModel::setData(const QModelIndex &index, const QVariant &value, int role) { Q_D(QScriptBreakpointsModel); if (!index.isValid() || (index.row() >= d->breakpoints.size())) { return false; } const QPair<int, QScriptBreakpointData> &item = d->breakpoints.at(index.row()); QScriptBreakpointData modifiedData; int col = index.column(); if ((col == 0) || (col == 4)) { if (role == Qt::CheckStateRole) { modifiedData = item.second; if (col == 0) { modifiedData.setEnabled(value.toInt() == Qt::Checked); } else { modifiedData.setSingleShot(value.toInt() == Qt::Checked); } } } else if (col == 2) { if (role == Qt::EditRole) { modifiedData = item.second; modifiedData.setCondition(value.toString()); } } else if (col == 3) { if (role == Qt::EditRole) { modifiedData = item.second; modifiedData.setIgnoreCount(value.toInt()); } } if (!modifiedData.isValid()) { return false; } QScriptDebuggerJob *job = new SetBreakpointDataJob(item.first, modifiedData, d->commandScheduler); d->jobScheduler->scheduleJob(job); return true; } /*! \reimp */ QVariant QScriptBreakpointsModel::headerData(int section, Qt::Orientation orient, int role) const { if (orient == Qt::Horizontal) { if (role == Qt::DisplayRole) { if (section == 0) { return QCoreApplication::translate("QScriptBreakpointsModel", "ID"); } else if (section == 1) { return QCoreApplication::translate("QScriptBreakpointsModel", "Location"); } else if (section == 2) { return QCoreApplication::translate("QScriptBreakpointsModel", "Condition"); } else if (section == 3) { return QCoreApplication::translate("QScriptBreakpointsModel", "Ignore-count"); } else if (section == 4) { return QCoreApplication::translate("QScriptBreakpointsModel", "Single-shot"); } else if (section == 5) { return QCoreApplication::translate("QScriptBreakpointsModel", "Hit-count"); } } } return QVariant(); } /*! \reimp */ Qt::ItemFlags QScriptBreakpointsModel::flags(const QModelIndex &index) const { if (!index.isValid()) { return 0; } Qt::ItemFlags ret = Qt::ItemIsEnabled | Qt::ItemIsSelectable; switch (index.column()) { case 0: ret |= Qt::ItemIsUserCheckable; break; case 1: break; case 2: ret |= Qt::ItemIsEditable; break; case 3: ret |= Qt::ItemIsEditable; break; case 4: ret |= Qt::ItemIsUserCheckable; break; } return ret; } QT_END_NAMESPACE
[ "ansel@copperspice.com" ]
ansel@copperspice.com
4e6c46e4f8244b36a6eca56b8f92f42a2ba679ae
23c38fe74b52456693a4f51a8de29739910bfbfe
/Construct Binary Tree from Inorder and Postorder Traversal.cpp
128310aabb7620e3cd2d99b228518710ed591fc5
[]
no_license
momoliu88/leetCodePoj
892ccd046ab51192abb66d3d3392ebbfb0010dea
b30b635dd6fdb88348bae880274bd9c834e24813
refs/heads/master
2021-01-25T08:37:30.092903
2014-01-06T09:12:24
2014-01-06T09:12:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,153
cpp
#include <iostream> #include <vector> using namespace std; typedef struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }TreeNode; TreeNode * compute(vector<int> &inorder,int s,int e, vector<int> &postorder,int idx) { if(idx<0) return 0; if(s>e) return 0; TreeNode *parent = new TreeNode(postorder[idx]); int i =0; for(i = s;i<=e;i++) if(inorder[i] == postorder[idx]) break; //计算左枝的大小 int lsize = (i-1-s)+1; //计算右枝的大小 int rsize = (e-i-1)+1; parent->left = compute(inorder,s,i-1,postorder,idx-(rsize)-1); if(rsize>0) parent->right = compute(inorder,i+1,e,postorder,idx-1); return parent; } TreeNode *buildTree(vector<int> &inorder, vector<int> &postorder) { int postLen = postorder.size(); if(inorder.size()==0 && postLen==0) return 0; return compute(inorder,0,inorder.size()-1,postorder,postLen-1); } int main(){ vector<int> inorder; inorder.push_back(2); inorder.push_back(3); inorder.push_back(1); vector<int> postorder; postorder.push_back(3); postorder.push_back(2); postorder.push_back(1); buildTree(inorder,postorder); }
[ "liuxiaoqin@ebupt.com" ]
liuxiaoqin@ebupt.com
695f37eafe05120595da5781e718be55f3d75621
41839cd5d7b6f97a922d55a22e21d30785f323fd
/src/mvvmquick/inputviewfactory.cpp
730c196d21b33301570e7632c84c744cd8e62d67
[ "BSD-3-Clause" ]
permissive
ahnan4arch/QtMvvm
02498e2df6a3110adbe3c87d390b0af0630ca537
441d68c6b3208cf7a50c5906782f797f3e5ccf32
refs/heads/master
2022-03-18T13:44:26.628728
2019-11-25T15:03:34
2019-11-25T15:03:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,072
cpp
#include "inputviewfactory.h" #include "inputviewfactory_p.h" #include <QtCore/QCoreApplication> #include <QtCore/QMetaType> #include <QtQml/qqml.h> #include <QtMvvmCore/private/qtmvvm_logging_p.h> #include "formatters_p.h" using namespace QtMvvm; InputViewFactory::InputViewFactory(QObject *parent) : QObject(parent), d(new InputViewFactoryPrivate()) {} InputViewFactory::~InputViewFactory() = default; QUrl InputViewFactory::getInputUrl(const QByteArray &type, const QVariantMap &viewProperties) { Q_UNUSED(viewProperties) QUrl url; if(d->inputAliases.contains(type)) url = getInputUrl(d->inputAliases.value(type), viewProperties); else if(d->simpleInputs.contains(type)) url = d->simpleInputs.value(type); else { logCritical() << "Failed to find any input view for input type:" << type; return QUrl(); } logDebug() << "Found view URL for input of type" << type << "as" << url; return url; } QUrl InputViewFactory::getDelegate(const QByteArray &type, const QVariantMap &viewProperties) { QUrl url; Q_UNUSED(viewProperties) if(d->delegateAliases.contains(type)) url = getDelegate(d->delegateAliases.value(type), viewProperties); else if(d->simpleDelegates.contains(type)) url = d->simpleDelegates.value(type); else if((type == "selection" || type == "list") && !viewProperties.value(QStringLiteral("editable"), false).toBool()) url = QStringLiteral("qrc:/qtmvvm/delegates/ListDelegate.qml"); else url = QStringLiteral("qrc:/qtmvvm/delegates/MsgDelegate.qml"); logDebug() << "Found view URL for delegate of type" << type << "as" << url; return url; } QString QtMvvm::InputViewFactory::format(const QByteArray &type, const QString &formatString, const QVariant &value, const QVariantMap &viewProperties) { if(d->formatterAliases.contains(type)) return format(d->formatterAliases.value(type), formatString, value, viewProperties); else if(d->formatters.contains(type)) return d->formatters.value(type)->format(formatString, value, viewProperties); else return formatString.arg(value.toString()); } void InputViewFactory::addSimpleInput(const QByteArray &type, const QUrl &qmlFileUrl) { d->simpleInputs.insert(type, qmlFileUrl); } void InputViewFactory::addSimpleDelegate(const QByteArray &type, const QUrl &qmlFileUrl) { d->simpleDelegates.insert(type, qmlFileUrl); } void InputViewFactory::addFormatter(const QByteArray &type, Formatter *formatter) { Q_ASSERT_X(formatter, Q_FUNC_INFO, "formatter must not be null"); d->formatters.insert(type, QSharedPointer<Formatter>{formatter}); } void InputViewFactory::addInputAlias(const QByteArray &alias, const QByteArray &targetType) { d->inputAliases.insert(alias, targetType); } void InputViewFactory::addDelegateAlias(const QByteArray &alias, const QByteArray &targetType) { d->delegateAliases.insert(alias, targetType); } void QtMvvm::InputViewFactory::addFormatterAlias(const QByteArray &alias, const QByteArray &targetType) { d->formatterAliases.insert(alias, targetType); } Formatter::Formatter() = default; Formatter::~Formatter() = default; InputViewFactoryPrivate::InputViewFactoryPrivate() : simpleInputs{ {QMetaType::typeName(QMetaType::Bool), QStringLiteral("qrc:/qtmvvm/inputs/CheckBox.qml")}, {"switch", QStringLiteral("qrc:/qtmvvm/inputs/Switch.qml")}, {QMetaType::typeName(QMetaType::QString), QStringLiteral("qrc:/qtmvvm/inputs/TextField.qml")}, {"string", QStringLiteral("qrc:/qtmvvm/inputs/TextField.qml")}, {QMetaType::typeName(QMetaType::Int), QStringLiteral("qrc:/qtmvvm/inputs/SpinBox.qml")}, {QMetaType::typeName(QMetaType::Double), QStringLiteral("qrc:/qtmvvm/inputs/DoubleSpinBox.qml")}, {"number", QStringLiteral("qrc:/qtmvvm/inputs/DoubleSpinBox.qml")}, {"range", QStringLiteral("qrc:/qtmvvm/inputs/Slider.qml")}, {QMetaType::typeName(QMetaType::QTime), QStringLiteral("qrc:/qtmvvm/inputs/TimeEdit.qml")}, {QMetaType::typeName(QMetaType::QDate), QStringLiteral("qrc:/qtmvvm/inputs/DateEdit.qml")}, {QMetaType::typeName(QMetaType::QDateTime), QStringLiteral("qrc:/qtmvvm/inputs/DateTimeEdit.qml")}, {"date", QStringLiteral("qrc:/qtmvvm/inputs/DateTimeEdit.qml")}, {QMetaType::typeName(QMetaType::QColor), QStringLiteral("qrc:/qtmvvm/inputs/ColorEdit.qml")}, {"color", QStringLiteral("qrc:/qtmvvm/inputs/ColorEdit.qml")}, {QMetaType::typeName(QMetaType::QFont), QStringLiteral("qrc:/qtmvvm/inputs/FontEdit.qml")}, {"font", QStringLiteral("qrc:/qtmvvm/inputs/FontEdit.qml")}, {QMetaType::typeName(QMetaType::QUrl), QStringLiteral("qrc:/qtmvvm/inputs/UrlField.qml")}, {"url", QStringLiteral("qrc:/qtmvvm/inputs/UrlField.qml")}, {"selection", QStringLiteral("qrc:/qtmvvm/inputs/ListEdit.qml")}, {"list", QStringLiteral("qrc:/qtmvvm/inputs/ListEdit.qml")}, {"radiolist", QStringLiteral("qrc:/qtmvvm/inputs/RadioListEdit.qml")} }, simpleDelegates{ {QMetaType::typeName(QMetaType::Bool), QStringLiteral("qrc:/qtmvvm/delegates/BoolDelegate.qml")}, {"switch", QStringLiteral("qrc:/qtmvvm/delegates/SwitchDelegate.qml")}, {"range", QStringLiteral("qrc:/qtmvvm/delegates/RangeDelegate.qml")}, {QMetaType::typeName(QMetaType::QColor), QStringLiteral("qrc:/qtmvvm/delegates/ColorDelegate.qml")} }, formatters{ {QMetaType::typeName(QMetaType::Int), QSharedPointer<IntFormatter>::create()}, {QMetaType::typeName(QMetaType::QTime), QSharedPointer<DateTimeFormatter<QTime>>::create()}, {QMetaType::typeName(QMetaType::QDate), QSharedPointer<DateTimeFormatter<QDate>>::create()} } { auto dblFormatter = QSharedPointer<SimpleFormatter<double>>::create(); formatters.insert(QMetaType::typeName(QMetaType::Double), dblFormatter); formatters.insert("number", dblFormatter); auto dateFormatter = QSharedPointer<DateTimeFormatter<QDateTime>>::create(); formatters.insert(QMetaType::typeName(QMetaType::QDateTime), dateFormatter); formatters.insert("date", dateFormatter); auto listFormatter = QSharedPointer<ListFormatter>::create(); formatters.insert("selection", listFormatter); formatters.insert("list", listFormatter); formatters.insert("radiolist", listFormatter); }
[ "Skycoder42@users.noreply.github.com" ]
Skycoder42@users.noreply.github.com
9985a143444374e29911ad5ffff0b04e00f91bcc
82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5
/Airfoil/wingMotion/wingMotion2D_pimpleFoam/2.21/pointDisplacement
61b9f7eab588615fab11f9c55b91ae89fec7edb0
[ "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
706,394
/*--------------------------------*- 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.21"; 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) (-1.781870669e-07 7.633137185e-06 2.775557562e-17) (0 0 0) (0 0 0) (-9.860757233e-08 8.550318973e-05 3.330669074e-16) (4.53718925e-07 7.26828737e-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) (-1.110119898e-05 0.0001200384622 4.857225733e-16) (-6.389768781e-05 0.0007529412679 3.080868893e-15) (-8.353892296e-07 9.912923956e-06 4.163336342e-17) (-0.0001213833542 0.001971011324 7.993605777e-15) (-0.0003016983777 0.004867395031 1.990074772e-14) (-0.0003583328373 0.00659279877 2.695066392e-14) (-0.0001669080313 0.003090042589 1.254552018e-14) (-0.0002038401149 0.006511232955 2.643718577e-14) (-0.0003583790724 0.01139002863 4.65599781e-14) (-0.0003000610209 0.01258580138 5.14449594e-14) (-0.0001759146953 0.007409958584 3.007316618e-14) (-9.221141602e-06 0.008666729419 3.518019209e-14) (-1.421739562e-05 0.01422820014 5.81618087e-14) (9.275569628e-05 0.01404508568 5.741240816e-14) (5.529545491e-05 0.008524926315 3.461120279e-14) (0.0001902753186 0.006535132673 2.653433029e-14) (0.0003356929202 0.01142347632 4.669875597e-14) (0.0003690258026 0.009981223384 4.081457394e-14) (0.0002005138314 0.005470639451 2.220446049e-14) (0.0001182926652 0.0019961246 8.10462808e-15) (0.0002932000079 0.004909599703 2.006728117e-14) (0.0002207639956 0.00328016069 1.340594302e-14) (6.913767501e-05 0.001034995283 4.204969706e-15) (0 0 0) (1.164487048e-05 0.0001292734643 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) (-3.100424074e-05 0.0002450577979 1.026956298e-15) (-0.0001693933634 0.001427415071 6.009082121e-15) (-4.011987401e-05 0.0003405156457 1.415534356e-15) (-0.0005729724585 0.006068200132 2.534084054e-14) (-0.0009168530547 0.00964393963 4.057865155e-14) (-0.001170606352 0.01342579165 5.648259638e-14) (-0.0007882212707 0.009101027821 3.802513859e-14) (-0.001229382034 0.01946702224 8.129608098e-14) (-0.001628338619 0.02562468668 1.078026557e-13) (-0.001640991536 0.02947803517 1.240119119e-13) (-0.001265326739 0.02286649899 9.550693569e-14) (-0.0009985572388 0.03129187922 1.307010056e-13) (-0.0012444255 0.03880727942 1.632582958e-13) (-0.0009907950379 0.04092037124 1.721539578e-13) (-0.0008014854183 0.03323618718 1.388195114e-13) (-2.749154158e-05 0.03582740796 1.496441859e-13) (-3.034278123e-05 0.04371307776 1.839223218e-13) (0.0003095243096 0.04340971467 1.826455653e-13) (0.0002488273919 0.03554441488 1.48464574e-13) (0.0009487710923 0.03135129228 1.309646835e-13) (0.001187978379 0.03887277381 1.635774849e-13) (0.001389831915 0.03623414685 1.524752546e-13) (0.001099844345 0.0289405924 1.209032874e-13) (0.00119724917 0.01956308758 8.17262924e-14) (0.001588305178 0.02573645015 1.083022561e-13) (0.001507126588 0.02168763915 9.126033262e-14) (0.001105968296 0.01604578661 6.702971511e-14) (0.0005661136869 0.006145859757 2.567390744e-14) (0.0009047082386 0.00974599659 4.100886297e-14) (0.0006400810948 0.006361686565 2.678413047e-14) (0.0003555735371 0.003561039803 1.487698853e-14) (0 0 0) (3.077730254e-05 0.000247750397 1.054711873e-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) (-1.333880736e-05 8.597140307e-05 3.747002708e-16) (0 0 0) (-0.0005680115288 0.00439088177 1.888766921e-14) (-0.0008443774645 0.006468440304 2.803313137e-14) (-0.001322012558 0.01080893914 4.685141164e-14) (-0.0009704651977 0.008001718772 3.441691376e-14) (-0.002222946897 0.02290157545 9.850453786e-14) (-0.002698949626 0.02760783165 1.196404087e-13) (-0.003021658361 0.03371495619 1.4610535e-13) (-0.002540734257 0.02854959102 1.227906665e-13) (-0.002906026412 0.04485014383 1.929012505e-13) (-0.003315288039 0.05081432559 2.201849814e-13) (-0.003176269807 0.05559834429 2.409045186e-13) (-0.002811612288 0.04955422054 2.131211874e-13) (-0.001962015722 0.06016082037 2.587513537e-13) (-0.002168704916 0.0660565795 2.862293735e-13) (-0.001687562721 0.06819319402 2.955136136e-13) (-0.001534314089 0.0624058447 2.68410294e-13) (-3.566783002e-05 0.06527403435 2.807754029e-13) (-3.761370079e-05 0.07086757712 3.07129322e-13) (0.0005315133024 0.0705852565 3.059219544e-13) (0.0004842590166 0.0649681992 2.794708909e-13) (0.001892201059 0.06022974576 2.591260539e-13) (0.002094729886 0.06611993872 2.866179516e-13) (0.002515696107 0.06332895441 2.745303984e-13) (0.002258900871 0.05734606851 2.467331894e-13) (0.002846805117 0.04498792822 1.935812621e-13) (0.003251033695 0.0509202384 2.207678484e-13) (0.003277046185 0.04560218043 1.977168429e-13) (0.002837921364 0.03984277394 1.714461906e-13) (0.002182497832 0.02289743583 9.853229344e-14) (0.0027176828 0.02818442442 1.222216772e-13) (0.00234631213 0.02243760527 9.731104811e-14) (0.001860990516 0.01797334875 7.735478924e-14) (0.0006468588939 0.005070594646 2.182976022e-14) (0.0009664104786 0.007515010083 3.258504577e-14) (0.00054565235 0.003994255443 1.731947918e-14) (0.0003118906735 0.002301196507 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) (-6.165215231e-05 0.0003689426114 1.637578961e-15) (-0.0001402105024 0.0008324481872 3.73312492e-15) (-0.0004980974975 0.003111181341 1.391942117e-14) (-0.0003348470218 0.002108033751 9.353628982e-15) (-0.001970550179 0.01470747941 6.525335827e-14) (-0.002331514553 0.01726558454 7.718825579e-14) (-0.003007905687 0.02374557717 1.061650767e-13) (-0.002607379304 0.0207461781 9.203748874e-14) (-0.004131054418 0.04103819927 1.820071871e-13) (-0.004562620965 0.04492597931 2.008393452e-13) (-0.004816556966 0.05169565987 2.31065167e-13) (-0.004402598444 0.04771149561 2.115807529e-13) (-0.004381735182 0.06542140671 2.900180096e-13) (-0.004650778635 0.06866612932 3.067962551e-13) (-0.004306793666 0.07268802239 3.247402347e-13) (-0.004072513479 0.06945880423 3.079064781e-13) (-0.00260972312 0.077594926 3.439887264e-13) (-0.002692177178 0.07912779513 3.535088888e-13) (-0.002046879499 0.07987961228 3.568811913e-13) (-0.00199928011 0.07884705368 3.495537193e-13) (-4.799560218e-05 0.08008787496 3.551048344e-13) (-5.280134033e-05 0.08029310182 3.587685704e-13) (0.0006153360258 0.08027702045 3.587130593e-13) (0.0006118994615 0.07997366014 3.546191119e-13) (0.002535395579 0.0777233721 3.447103714e-13) (0.002609198616 0.07919894289 3.539946114e-13) (0.003217695805 0.07788617049 3.481659405e-13) (0.003106647637 0.0758859047 3.365918655e-13) (0.004315816793 0.06550870349 2.906563878e-13) (0.004590760255 0.06883589025 3.078509669e-13) (0.004826983063 0.06427509619 2.875200078e-13) (0.004492576909 0.06042576598 2.68146616e-13) (0.004177483067 0.04217008332 1.87183602e-13) (0.00460295949 0.04608564595 2.061684157e-13) (0.004223007228 0.03906032099 1.747352263e-13) (0.003788589648 0.03533014356 1.568190022e-13) (0.002070802395 0.01571787753 6.974976152e-14) (0.00244038455 0.01837305021 8.21842594e-14) (0.001760791231 0.01248144648 5.583034035e-14) (0.001442896161 0.01031152117 4.576894419e-14) (9.536563507e-05 0.0005794989598 2.567390744e-15) (0.0001638253768 0.0009873551659 4.413136523e-15) (4.159271252e-06 2.387195621e-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) (-5.86793163e-06 3.044840793e-05 1.526556659e-16) (-1.601194924e-07 8.377685161e-07 0) (0 0 0) (-0.0004402203856 0.00255144049 1.168509733e-14) (-0.000555640892 0.003194325127 1.475208844e-14) (-0.001153021214 0.006973574412 3.219646771e-14) (-0.0009837020084 0.005998100542 2.747801986e-14) (-0.003199182678 0.02312496089 1.058736432e-13) (-0.00348196711 0.02496276055 1.152133944e-13) (-0.004232426789 0.03234261766 1.492556079e-13) (-0.004010772152 0.03090580369 1.414840467e-13) (-0.005561667248 0.05342126374 2.445127434e-13) (-0.005788314541 0.05512547625 2.543520949e-13) (-0.005948126324 0.06170409101 2.846889391e-13) (-0.00574419139 0.06010479203 2.750855099e-13) (-0.005208301223 0.07443929881 3.406858129e-13) (-0.005309883027 0.07517053743 3.468197951e-13) (-0.004786018164 0.07712096027 3.558264794e-13) (-0.004727660044 0.07698343624 3.523015213e-13) (-0.002786384513 0.0784234078 0) (-0.002817712131 0.07777567732 0) (-0.002481102337 0.07777902285 0) (-0.002126297024 0.07779687383 0) (-0.002107809378 0.07811749233 0) (-0.002102457158 0.07843042872 0) (-6.707080091e-05 0.07842829211 0) (-6.936007702e-05 0.0781170958 0) (0.0002715692894 0.07811486057 0) (0.0002720119287 0.0784260412 0) (0.002674234619 0.07838262094 0) (0.002682058357 0.07806293233 0) (0.002692263715 0.07773827425 0) (0.003031337802 0.07772600259 0) (0.003365534005 0.0777199275 0) (0.003355498225 0.078361871 0) (0.005128775696 0.07488765306 3.430450368e-13) (0.005214870087 0.07555370105 3.488875855e-13) (0.005625578657 0.07251953366 3.348987754e-13) (0.005498258547 0.07144325866 3.272798699e-13) (0.005593020977 0.05464037989 2.503275365e-13) (0.005797490214 0.05615610306 2.593758541e-13) (0.005512088857 0.04931369245 2.277900091e-13) (0.005260107727 0.04746303139 2.174510572e-13) (0.003407581282 0.02501722252 1.146166495e-13) (0.003726931179 0.02713686728 1.253441795e-13) (0.002939034815 0.02015059566 9.306444504e-14) (0.002647015997 0.01829846316 8.383571615e-14) (0.0005903781212 0.003472139133 1.590394483e-14) (0.0007379226191 0.004304479277 1.987299214e-14) (0.0002644318016 0.001469248855 6.786238238e-15) (0.0001799211102 0.001007888893 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) (-5.287342694e-05 0.000265309365 1.276756478e-15) (-3.013100049e-05 0.0001524757102 7.21644966e-16) (-2.464978398e-05 0.0001257830653 5.967448757e-16) (-0.0007983578403 0.004475872819 2.117750419e-14) (-0.0008279510919 0.004602758661 2.195466031e-14) (-0.001533248016 0.008966483536 4.277134202e-14) (-0.001492859475 0.008804530245 4.1661119e-14) (-0.004020234823 0.02809521445 1.32893696e-13) (-0.004083257158 0.02829267187 1.349476086e-13) (-0.004863796347 0.03591491008 1.712796571e-13) (-0.004797220093 0.03572730265 1.689759443e-13) (-0.006240410113 0.05787387761 2.736838534e-13) (-0.00629975584 0.05791909061 2.76195733e-13) (-0.006387379609 0.06393937619 3.048949981e-13) (-0.006335599001 0.06398105529 3.025635298e-13) (-0.005453901193 0.07505673298 3.54938301e-13) (-0.00547229528 0.0746138938 3.558264794e-13) (-0.004853139393 0.07523236379 0) (-0.004847625478 0.07586488301 3.587685704e-13) (-0.002854117344 0.07585872072 0) (-0.002858320066 0.07553762678 0) (-0.002526267978 0.0755371341 0) (-0.002522098068 0.07585772243 0) (0.002700445993 0.07582781874 0) (0.002700023556 0.07550981216 0) (0.00303196468 0.07550608246 0) (0.003032733233 0.07582361577 0) (0.005333578174 0.07542170143 3.570199691e-13) (0.00534231553 0.07497602932 3.57880392e-13) (0.005882910274 0.07344701082 3.50622309e-13) (0.005853432657 0.07364049498 3.486100297e-13) (0.006370920946 0.06023755973 2.851885395e-13) (0.006451209244 0.06051716619 2.889216644e-13) (0.006233757921 0.05400481103 2.578215419e-13) (0.006142535436 0.05364024362 2.539496391e-13) (0.004377174008 0.03109958615 1.472155731e-13) (0.004477000996 0.03155053472 1.506017533e-13) (0.003637305826 0.02413169425 1.151856388e-13) (0.003543181213 0.02370127959 1.121880366e-13) (0.001070668065 0.006092130735 2.883804306e-14) (0.001209060758 0.006822097515 3.25572902e-14) (0.000576735845 0.003099686628 1.47937218e-14) (0.0004747786582 0.002573219556 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) (-8.679416305e-05 0.0004208247321 2.095545959e-15) (-7.839271523e-05 0.0003834042483 1.887379142e-15) (-6.877283325e-05 0.0003392649847 1.665334537e-15) (-0.0009836548006 0.005330289563 2.609024108e-14) (-0.001017093989 0.00546439245 2.69784195e-14) (-0.001773740729 0.01002444313 4.947431353e-14) (-0.001731996633 0.009873062329 4.832245715e-14) (-0.00433442239 0.02926958706 1.431910146e-13) (-0.004385412095 0.02935747534 1.448702269e-13) (-0.005156634098 0.03678065688 1.814798312e-13) (-0.005107424065 0.03674967968 1.797728633e-13) (-0.006469082833 0.05791977579 2.833011603e-13) (-0.006502990426 0.05770547328 2.846889391e-13) (-0.006549085986 0.06325405073 3.120559366e-13) (-0.006522112501 0.06356357929 3.10917958e-13) (-0.005505937828 0.07302076303 3.571865026e-13) (-0.005513007768 0.07243957601 3.574085472e-13) (-0.004869800861 0.07271250618 0) (-0.00486604015 0.0733409056 0) (-0.002875730534 0.07332692082 0) (-0.002877801817 0.07301250403 0) (-0.002546592965 0.07301022306 0) (-0.002544477988 0.07332463954 0) (0.002689500092 0.07329079034 0) (0.002687269694 0.07297452494 0) (0.003018417956 0.07297192398 0) (0.003020705444 0.07328802875 0) (0.005341208125 0.07325859425 3.58726937e-13) (0.005336488953 0.07263627168 3.587685704e-13) (0.005931482651 0.07179722816 3.546468674e-13) (0.005927736273 0.07231005698 3.541056337e-13) (0.006659268513 0.06098757244 2.98691627e-13) (0.00669611679 0.06083349518 3.00523495e-13) (0.006541770866 0.05486678524 2.710331959e-13) (0.006493619643 0.05490766952 2.688960166e-13) (0.004835158718 0.03323863602 1.627586954e-13) (0.00490674234 0.03344974107 1.652150639e-13) (0.004073020122 0.02613611761 1.290773044e-13) (0.003999196427 0.02587905207 1.267042027e-13) (0.00138662454 0.007630134271 3.735900478e-14) (0.001443080604 0.007873432317 3.887168365e-14) (0.0007442118621 0.003867301394 1.909583602e-14) (0.0007015768882 0.003677017134 1.799949079e-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.0001280310633 0.0005991584561 3.094746681e-15) (-0.0001154291654 0.0005450450542 2.789435349e-15) (-0.0001042088742 0.0004964653989 2.511879593e-15) (-0.001100290936 0.00575874334 2.917110997e-14) (-0.001133990161 0.005882689987 3.007316618e-14) (-0.001918124886 0.01046652102 5.351274979e-14) (-0.001876772303 0.01033234464 5.234701561e-14) (-0.004509979844 0.02940166177 1.489364188e-13) (-0.00455926998 0.02945694904 1.505462421e-13) (-0.005324073899 0.03664370787 1.872668687e-13) (-0.005276745949 0.03664768835 1.856292897e-13) (-0.006585867718 0.05687352887 2.88033486e-13) (-0.006617888674 0.05662584666 2.89337998e-13) (-0.006640374039 0.06182599013 3.159139617e-13) (-0.006615151031 0.06216542755 3.14845372e-13) (-0.005530689738 0.07065747301 3.57880392e-13) (-0.005536520039 0.07006323024 3.580469254e-13) (-0.004883843959 0.07020418839 0) (-0.004880430319 0.07083092991 0) (-0.002891416507 0.07081701283 0) (-0.002893289544 0.07050381806 0) (-0.002562531656 0.07050161321 0) (-0.002561565902 0.07065822494 0) (-0.002560601103 0.0708147056 0) (0.002668035978 0.07076346085 0) (0.002664853031 0.07044839672 0) (0.002995626438 0.07044632284 0) (0.002998852336 0.0707612847 0) (0.005317579943 0.07073957972 3.587408148e-13) (0.005309903932 0.0700986968 3.586853037e-13) (0.005892802437 0.06914411699 3.538280779e-13) (0.005907194814 0.06985668837 3.542999227e-13) (0.006655163501 0.05900749618 2.992883719e-13) (0.006626186764 0.05827131914 2.982059044e-13) (0.00646436828 0.05246353696 2.684796829e-13) (0.006495984661 0.05315933683 2.696176615e-13) (0.004852732497 0.03225500419 1.635774849e-13) (0.004820441951 0.031767828 1.625366508e-13) (0.003989184711 0.02474001848 1.265654248e-13) (0.004019414279 0.02514298836 1.274952366e-13) (0.001404288245 0.00746611313 3.784472735e-14) (0.001386003503 0.007304778749 3.735900478e-14) (0.0007020705444 0.003523822435 1.801336857e-14) (0.0007150196172 0.003620423833 1.834643548e-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.0001833453313 0.0008271556428 4.440892099e-15) (-0.0001683617001 0.0007666426416 4.066191828e-15) (-0.0001538691074 0.0007071254786 3.705369345e-15) (-0.00123933201 0.006257032817 3.286260153e-14) (-0.001276436556 0.006385216248 3.386180225e-14) (-0.002091013202 0.01100164461 5.832834216e-14) (-0.002046273133 0.01086620443 5.709321904e-14) (-0.004709898402 0.02960463367 1.554728568e-13) (-0.00476178123 0.02965235382 1.571520691e-13) (-0.005517687129 0.03659543313 1.939420846e-13) (-0.005468216059 0.0366095866 1.922351167e-13) (-0.006714326494 0.055855881 2.93265412e-13) (-0.006747007463 0.05559366575 2.945838018e-13) (-0.006741224546 0.06042645906 3.202021981e-13) (-0.006715837664 0.06078087893 3.191197306e-13) (-0.005552440454 0.0682599356 3.584216257e-13) (-0.005557206364 0.06765252999 3.58532648e-13) (-0.004896839167 0.06769576101 0) (-0.004893699597 0.06832286865 0) (-0.002905908554 0.06830904787 0) (-0.002907594376 0.06799556043 0) (-0.002577404603 0.06799334515 0) (-0.002576525281 0.0681500886 0) (-0.002575631607 0.06830680282 0) (0.002640137331 0.06824657771 0) (0.002636054576 0.06793195709 0) (0.002966510007 0.06793022052 0) (0.002970664947 0.06824475322 0) (0.005275171787 0.06805415382 3.578387586e-13) (0.005256670254 0.06729117925 3.571171137e-13) (0.005776130098 0.06566861977 3.48526763e-13) (0.005817188289 0.0666639577 3.5055292e-13) (0.006406649331 0.05495416412 2.889910533e-13) (0.006276741532 0.0533878056 2.833566715e-13) (0.006092412955 0.04780106373 2.536998389e-13) (0.006199175063 0.04905602948 2.579603198e-13) (0.004469677694 0.02869843228 1.50879309e-13) (0.00435797374 0.02773508903 1.471739397e-13) (0.003531802946 0.02114635062 1.122019144e-13) (0.003636291307 0.02196648655 1.154770723e-13) (0.001132975082 0.005814134172 3.055888875e-14) (0.00107218207 0.005452668439 2.892130979e-14) (0.00047660206 0.002307975538 1.224020885e-14) (0.000517386921 0.002528320314 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.0002317169451 0.001006344341 5.606626274e-15) (-0.0002396343226 0.001050822544 5.787037516e-15) (-0.000218754364 0.0009684805618 5.287437155e-15) (-0.001397699489 0.006797400035 3.706757123e-14) (-0.001445107925 0.006960855229 3.833044993e-14) (-0.002292013645 0.01161084398 6.392109064e-14) (-0.002235887779 0.01143599294 6.236677841e-14) (-0.004927186107 0.02981735439 1.625505286e-13) (-0.004990189633 0.02990605265 1.645905634e-13) (-0.005734366878 0.03659506835 2.013944567e-13) (-0.005674795748 0.03657099956 1.993544219e-13) (-0.006849268368 0.05480979148 2.987332604e-13) (-0.00688729687 0.05456811488 3.002736948e-13) (-0.006848945462 0.05901870746 3.247679903e-13) (-0.006819982711 0.05936045854 3.235189894e-13) (-0.00556988229 0.06581158286 3.587408148e-13) (-0.005573605181 0.06519093298 3.587685704e-13) (-0.00490891141 0.06518806973 0) (-0.004905903981 0.06581503268 0) (-0.00291844622 0.06580144737 0) (-0.002919855108 0.06548798705 0) (-0.002590291072 0.06548584915 0) (-0.002589557075 0.06564263735 0) (-0.002588809363 0.06579930894 0) (0.002605102052 0.06573573281 0) (0.002600109274 0.06542215294 0) (0.002930450099 0.06542067938 0) (0.002935544828 0.06573425851 0) (0.005177285863 0.06474397215 3.534394999e-13) (0.005137962364 0.06375111022 3.513717095e-13) (0.005563951414 0.06124286337 3.375633106e-13) (0.00563084712 0.06248742728 3.411437799e-13) (0.005909158899 0.04897952028 2.673833377e-13) (0.005812277863 0.04775756005 2.632338791e-13) (0.005500983709 0.04166934898 2.296635104e-13) (0.005673622225 0.04336213669 2.367273044e-13) (0.003852438062 0.02386344949 1.302430386e-13) (0.003611074417 0.0221630396 1.221245327e-13) (0.002796979658 0.01614727563 8.895661985e-14) (0.003039060312 0.01770781487 9.664491429e-14) (0.0007606787259 0.003763141185 2.053912596e-14) (0.0006643171524 0.003255766347 1.793010185e-14) (0.0002157073259 0.001006593724 5.551115123e-15) (0.0002715083842 0.001278932676 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.0004119142803 0.00171924694 9.93649607e-15) (-0.0003755500577 0.001583433117 9.076073226e-15) (-0.0003214208659 0.001368795063 7.771561172e-15) (-0.001597404714 0.00747168131 4.235500839e-14) (-0.00171601371 0.007946442287 4.550526622e-14) (-0.002600383168 0.01266257765 7.249756351e-14) (-0.002455713935 0.01207899868 6.847300504e-14) (-0.005203110685 0.03026525316 1.715155795e-13) (-0.005297185945 0.03050035635 1.745825706e-13) (-0.006010656381 0.03684555033 2.108868635e-13) (-0.005934535886 0.03675307297 2.082778394e-13) (-0.007012402515 0.05388848643 3.053390873e-13) (-0.007030788847 0.05347100523 3.059913434e-13) (-0.006976371596 0.0576906403 3.301525719e-13) (-0.006943095887 0.05802056498 3.287509154e-13) (-0.005584033427 0.06331214831 0) (-0.005587899729 0.06268524987 0) (-0.004922219184 0.06268072244 0) (-0.004920345086 0.06299406285 0) (-0.004918558162 0.06330743303 0) (-0.002929017169 0.06329390537 0) (-0.002929676435 0.06313737879 0) (-0.0027648503 0.06313636778 0) (-0.002764205916 0.06329285077 0) (-6.965697339e-05 0.0632359117 0) (-7.204195194e-05 0.06315786001 0) (-7.390213735e-05 0.06307978993 0) (8.74878733e-05 0.0630804498 0) (9.198123914e-05 0.06323645325 0) (0.002557875887 0.0632309047 0) (0.002550474973 0.06291865322 0) (0.002542943615 0.06260649009 0) (0.003205575298 0.06260331029 0) (0.003219796144 0.06322803595 0) (0.002888959601 0.06322944029 0) (0.004983839005 0.06038976319 3.427258477e-13) (0.004903477506 0.05894206794 3.378547442e-13) (0.005204024032 0.0554124009 3.176348073e-13) (0.00533763094 0.05730834727 3.252537129e-13) (0.0053250186 0.04259377496 2.417371858e-13) (0.005134891043 0.04070019588 2.332994908e-13) (0.004749821008 0.03469299412 1.988548215e-13) (0.004949082245 0.03648371084 2.070565941e-13) (0.002993045685 0.01786122479 1.013356066e-13) (0.002812886563 0.01662688823 9.528489109e-14) (0.002054977427 0.01142290252 6.54476473e-14) (0.002213499407 0.01242265802 7.047140649e-14) (0.000314084302 0.001495869252 8.479328351e-15) (0.0002553140099 0.001204226261 6.89726054e-15) (2.023912734e-05 9.089131261e-05 5.273559367e-16) (3.866848486e-05 0.0001753514637 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.0003906138032 0.001571543118 9.478529073e-15) (-0.0004414183266 0.001794649515 1.071365219e-14) (-0.0004716806917 0.001937683667 1.143529715e-14) (-0.001899787363 0.008574396452 5.062616992e-14) (-0.001838673479 0.008212737442 4.898859096e-14) (-0.002739564812 0.01286957353 7.677192215e-14) (-0.002812796056 0.01335196688 7.882583475e-14) (-0.005527497427 0.03104352864 1.832006769e-13) (-0.005437139823 0.03021636633 1.801753191e-13) (-0.006136392249 0.03631439273 2.165212454e-13) (-0.00622511 0.03723106332 2.19685381e-13) (-0.007146687096 0.05309263963 3.132633042e-13) (-0.007084825425 0.05206902096 3.104183577e-13) (-0.006972762787 0.05575302087 3.323868958e-13) (-0.007019299335 0.05673792285 3.347599975e-13) (-0.005525891473 0.06079787203 0) (-0.005530457606 0.06017087674 0) (-0.004862915158 0.06016601532 0) (-0.004860632622 0.06047944014 0) (-0.004858349025 0.06079301061 0) (-0.002855750809 0.06077842656 0) (-0.002858034406 0.06046485609 0) (-0.002524277747 0.06046242549 0) (-0.002523135418 0.06061928354 0) (-0.00252199415 0.06077599596 0) (-0.00268887248 0.06077721126 0) (-0.0001856251892 0.0607589812 0) (-0.0001867661783 0.06060226879 0) (-0.0001879083675 0.06044541073 0) (0.0001458585474 0.06044298005 0) (0.0001481421443 0.06075655052 0) (0.002484501389 0.06073953584 0) (0.002479935255 0.06011254054 0) (0.003135778184 0.05987790255 3.574085472e-13) (0.003149617589 0.06068666503 3.585048924e-13) (0.004666295841 0.05476532132 3.236022561e-13) (0.004555046802 0.05304688869 3.166911178e-13) (0.004751498492 0.0489448184 2.922107001e-13) (0.004886926155 0.05075847208 2.999267501e-13) (0.004472132131 0.03447739414 2.03725925e-13) (0.004291991802 0.03278147953 1.957184415e-13) (0.003813105908 0.02681130361 1.600664046e-13) (0.004074696889 0.0289314237 1.709465902e-13) (0.002122135409 0.01218319783 7.197020757e-14) (0.001848900441 0.01050966253 6.272760089e-14) (0.001254702371 0.006705217577 4.002354004e-14) (0.001429962048 0.007718518449 4.558853295e-14) (5.255684721e-05 0.0002406570755 1.415534356e-15) (2.373884693e-05 0.0001076137253 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) (-9.125811195e-05 0.0003517075475 2.220446049e-15) (-0.000165576745 0.0006451346422 4.024558464e-15) (-0.0002459770791 0.0009688052823 5.967448757e-15) (-0.001409223644 0.006097928641 3.755329381e-14) (-0.001204228884 0.005155093266 3.20993232e-14) (-0.001959219434 0.008820837951 5.490052857e-14) (-0.002215784804 0.01008377178 6.208922265e-14) (-0.004764229877 0.02564539836 1.578737141e-13) (-0.004418063949 0.02352808612 1.464106614e-13) (-0.00511451242 0.02900054906 1.804528749e-13) (-0.005465278396 0.03132422506 1.92804106e-13) (-0.006573461476 0.04676639316 2.878253191e-13) (-0.006284562299 0.04422883333 2.751687767e-13) (-0.006312159892 0.04831484777 3.005928839e-13) (-0.006559029154 0.0507553355 3.123751258e-13) (-0.005483185048 0.05765952207 3.549105454e-13) (-0.005395366824 0.05609679367 3.490541189e-13) (-0.004838943043 0.05716888383 3.557432127e-13) (-0.004873654096 0.05825004253 3.585742814e-13) (-0.002874017463 0.05827015409 0) (-0.002878584657 0.05764301315 0) (-0.002211056773 0.05763815184 0) (-0.002206489579 0.05826529278 0) (-0.002540260803 0.05826772349 0) (-0.000203891364 0.05825070873 0) (-0.0002084585577 0.05762356779 0) (0.0004590736952 0.05761870644 0) (0.000463640889 0.05824584738 0) (0.002445148567 0.05771223981 3.55590557e-13) (0.002404302162 0.05620289992 3.500533197e-13) (0.002964973871 0.054476563 3.393396675e-13) (0.003037880881 0.05638722935 3.474442956e-13) (0.004180352357 0.04720488942 2.90906188e-13) (0.003999711661 0.04467922304 2.783329123e-13) (0.004056714862 0.0400621415 2.495781359e-13) (0.004267437588 0.04260475886 2.625677453e-13) (0.003548587048 0.02627756183 1.619260281e-13) (0.00329553517 0.0241373565 1.503519531e-13) (0.002786322169 0.01879034862 1.170452624e-13) (0.003033395407 0.02068220686 1.274397254e-13) (0.001182272485 0.006515860065 4.013456234e-14) (0.001015562596 0.005536302809 3.447242491e-14) (0.0005190154694 0.002660202579 1.657007864e-14) (0.0007052075606 0.003654265059 2.250977182e-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) (-2.241757609e-06 8.449872547e-06 5.551115123e-17) (-0.000536148551 0.002220826897 1.429412144e-14) (-0.0003366453919 0.001378893878 8.978928712e-15) (-0.0007824403142 0.003371166086 2.195466031e-14) (-0.001074323178 0.004680696953 3.012867733e-14) (-0.003112392707 0.01604439148 1.032229857e-13) (-0.002624394789 0.01338105665 8.708311849e-14) (-0.003239356078 0.01758826889 1.144501161e-13) (-0.003759572802 0.02063691432 1.32768796e-13) (-0.005057877225 0.03446009208 2.216560269e-13) (-0.004544466158 0.03063042575 1.992850329e-13) (-0.004725534841 0.03463948668 2.253613962e-13) (-0.005206599874 0.03857795007 2.481487238e-13) (-0.004776316196 0.04803679502 3.090028233e-13) (-0.004445165418 0.0442291076 2.877559302e-13) (-0.004111536024 0.04646147627 3.02285974e-13) (-0.004386640691 0.05010653746 3.223393774e-13) (-0.002768925617 0.05347376349 3.440719931e-13) (-0.002637324289 0.0503803517 3.27862737e-13) (-0.002049192826 0.05089279346 3.312211616e-13) (-0.002145600196 0.05387097647 3.466393839e-13) (-0.0002086855815 0.0535175991 3.444605712e-13) (-0.0001978216689 0.05044230026 3.283762151e-13) (0.0004079564237 0.04959921579 3.229083667e-13) (0.0004281223786 0.05283608491 3.401168236e-13) (0.002134071083 0.04826198042 3.107375468e-13) (0.00199178174 0.04447669297 2.896155538e-13) (0.002383244353 0.04180332052 2.722266856e-13) (0.002573306915 0.04570713563 2.942923683e-13) (0.003235936209 0.03492058036 2.248617959e-13) (0.002915632177 0.03108132967 2.02421413e-13) (0.002848101468 0.02684436566 1.748323708e-13) (0.003197445758 0.03050497319 1.964262086e-13) (0.002338964927 0.01655491628 1.065952882e-13) (0.001979749943 0.01384771774 9.017786518e-14) (0.001541555221 0.009930569523 6.46566134e-14) (0.001874096833 0.01221517408 7.864542351e-14) (0.0004673444317 0.002463554144 1.586231146e-14) (0.0003008858635 0.001568012609 1.021405183e-14) (6.738925204e-05 0.0003302626343 2.15105711e-15) (0.0001558103271 0.0007723419464 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) (-1.968088896e-06 7.787534262e-06 5.551115123e-17) (0 0 0) (-2.026615959e-05 8.338317968e-05 5.689893001e-16) (-0.0001197507406 0.0004985406727 3.358424649e-15) (-0.001205811575 0.005945289329 4.00651734e-14) (-0.0008045379257 0.00392160638 2.675637489e-14) (-0.001196734479 0.006214386627 4.236888618e-14) (-0.001667766373 0.008759042708 5.902223155e-14) (-0.002839612836 0.01852991907 1.248445791e-13) (-0.002268424215 0.01464219727 9.983680549e-14) (-0.002505805065 0.01759868813 1.199873534e-13) (-0.003075382552 0.02183199313 1.470767952e-13) (-0.00316198626 0.03049692633 2.054606485e-13) (-0.002678692199 0.02557497237 1.74360526e-13) (-0.002553352106 0.02770411971 1.888766921e-13) (-0.002988734973 0.03274995917 2.206429484e-13) (-0.002000639239 0.03713460028 2.502165142e-13) (-0.00173474264 0.03192758044 2.177008573e-13) (-0.001356911676 0.03255411367 2.219890938e-13) (-0.001562809826 0.03777414102 2.54546384e-13) (-0.0001389843213 0.03722097075 2.508687702e-13) (-0.0001150194128 0.03201404219 2.183531134e-13) (0.0002838788681 0.03103218701 2.116640196e-13) (0.0003206834287 0.03621229108 2.44082532e-13) (0.001438008786 0.0307585969 2.073619054e-13) (0.001226536405 0.02582520524 1.761646384e-13) (0.001412834607 0.0234256108 1.598027266e-13) (0.001675202319 0.02819171148 1.90056304e-13) (0.001843536233 0.01890654392 1.274536032e-13) (0.001480422129 0.01498004902 1.021960294e-13) (0.001342492324 0.0120220136 8.201772594e-14) (0.001714302553 0.0155544042 1.048605647e-13) (0.0009269206731 0.006251051241 4.213296378e-14) (0.0006255742969 0.004166674542 2.842170943e-14) (0.0003682462011 0.002260272274 1.541822225e-14) (0.0006129382182 0.003808565863 2.567390744e-14) (5.138311308e-06 2.585582012e-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) (-5.199580514e-05 0.0002445812092 1.734723476e-15) (0 0 0) (-3.779764334e-05 0.0001871872083 1.33226763e-15) (-0.0001873049492 0.0009390164706 6.633582572e-15) (-0.0007963793501 0.004970525125 3.515243652e-14) (-0.0004448012046 0.002743932131 1.965094754e-14) (-0.0005985294026 0.00402080694 2.87964097e-14) (-0.0009843826598 0.006689103209 4.730937864e-14) (-0.00127978083 0.0118502791 8.379408278e-14) (-0.0008845297636 0.008104270301 5.803690861e-14) (-0.0008952232093 0.009335073336 6.684930387e-14) (-0.001266920288 0.01334600402 9.438283488e-14) (-0.0009161297711 0.01646317909 1.164346397e-13) (-0.0006704510803 0.01195133536 8.558431741e-14) (-0.0005290539536 0.01236055017 8.852640843e-14) (-0.0007204426388 0.01694399152 1.198346977e-13) (-4.988036118e-05 0.01653255349 1.169342401e-13) (-3.371574322e-05 0.01201090569 8.601452883e-14) (0.0001201727647 0.01138138844 8.151812558e-14) (0.0001608766717 0.01578955796 1.116884363e-13) (0.0006003325065 0.01202993405 8.509859484e-14) (0.0004187056546 0.008252267881 5.910549827e-14) (0.0004443248253 0.006926347382 4.961309141e-14) (0.0006566720189 0.0103961193 7.353839759e-14) (0.000531745919 0.005164220163 3.652633751e-14) (0.0003011736955 0.002885197689 2.066402605e-14) (0.0002059101032 0.00174821622 1.25177646e-14) (0.0004135296844 0.003558020793 2.517430708e-14) (4.731497305e-05 0.0003034984022 2.15105711e-15) (1.328065573e-07 8.412537571e-07 0) (0 0 0) (5.530370193e-07 3.270932836e-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 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.845814043e-06 3.785804468e-05 2.775557562e-16) (-0.0001046072091 0.0009261880616 6.89726054e-15) (-1.17912638e-05 0.0001030962508 7.771561172e-16) (-2.574159763e-05 0.0002565039357 1.929012505e-15) (-0.0001323224288 0.001334850562 9.93649607e-15) (-0.0001351209953 0.002342993007 1.743050149e-14) (-4.392305586e-05 0.0007532407922 5.676015213e-15) (-3.758896694e-05 0.0008486570701 6.397660179e-15) (-0.0001102655975 0.002515261979 1.872113575e-14) (-5.429965833e-06 0.00236825191 1.762479052e-14) (-1.69010033e-06 0.000767102129 5.787037516e-15) (7.433658904e-06 0.0006280859704 4.732325642e-15) (2.441366744e-05 0.002109750203 1.569577801e-14) (5.176739455e-05 0.0009731968755 7.244205236e-15) (6.394617176e-06 0.0001185096417 8.881784197e-16) (1.178118973e-06 1.73266987e-05 1.387778781e-16) (3.923417938e-05 0.0005849936646 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.002542286584 0.07363955067 0) (-0.002873582929 0.07364181771 0) (0.002691668625 0.07360656098 0) (0.002360496644 0.07360990493 0) (0.002359406421 0.07345220172 0) (0.002358399659 0.07329395899 0) (0.002367458652 0.07583388779 0) (0.002367827699 0.07551456328 0) (-0.002559636304 0.07097118626 0) (-0.002558670233 0.07112784168 0) (-0.002889543363 0.07113022216 0) (0.002671163426 0.07107890407 0) (0.00234052184 0.07108107895 0) (0.002339008402 0.0709232623 0) (0.002337451589 0.07076548965 0) (0.002357362814 0.07313558539 0) (0.002356296523 0.07297716831 0) (-0.002574738251 0.06846347334 0) (-0.002573844365 0.06862021669 0) (-0.002904193815 0.06862250596 0) (0.002643853856 0.06856090969 0) (0.002313441057 0.0685625003 0) (0.002311641423 0.06840538486 0) (0.002309769816 0.06824838646 0) (0.002335865542 0.07060770266 0) (0.002334297028 0.07045032336 0) (-0.002588061862 0.06595595139 0) (-0.002587299586 0.06611262287 0) (-0.002917008841 0.06611482009 0) (0.002610093876 0.0660491816 0) (0.002279883493 0.06605056682 0) (0.002274700848 0.06573691551 0) (0.0023057298 0.06793363444 0) (-0.002763574719 0.0634495232 0) (-0.002928371407 0.06345057769 0) (-6.771335958e-05 0.06331409769 0) (-0.0001489090002 0.06331387336 0) (-0.0001506891624 0.06323567161 0) (9.612363261e-05 0.06339266315 0) (-6.570915807e-05 0.06339228324 0) (0.002564536353 0.06354348199 0) (0.002234485012 0.06354470584 0) (0.002227693679 0.06323215862 0) (0.002270174023 0.06542331768 0) (-0.002687730151 0.06093406932 0) (-0.002854608481 0.06093528462 0) (-0.0001844836363 0.06091583926 0) (-0.0003513709065 0.06091705463 0) (-0.0003525103224 0.06076019655 0) (-0.000152724253 0.06315754455 0) (0.0001504257411 0.06107012099 0) (-4.464323168e-06 0.06106629685 0) (-0.0001607542842 0.06106000682 0) (0.002506732376 0.06136016861 0) (0.002176552076 0.0613616847 0) (0.001844392616 0.06136343368 0) (0.00183459569 0.06105217552 0) (0.001826985784 0.06073922644 0) (0.002220249389 0.06291995116 0) (-0.002517037095 0.07617866637 0) (-0.002849142848 0.07617979011 0) (-0.000401639077 0.07843051015 0) (-0.0004048661305 0.07811918958 0) (0.002699918068 0.07614732691 0) (0.002366927153 0.07615290529 0) (0.002334183408 0.07839071952 0) (0.002340800605 0.07807335556 0) (0.001370821061 0.07457147306 0) (0.001370973257 0.07465137185 0) (0.001287398994 0.07465202855 0) (0.001287019201 0.07457207753 0) (0.001368443991 0.075852667 0) (0.001201625055 0.07585623793 0) (0.001203305878 0.07569443907 0) (0.001369897917 0.07569131199 0) (0.003022989644 0.07360368203 0) (0.005345220913 0.07387198065 3.586575481e-13) (0.004683237454 0.07390548414 0) (0.004678278893 0.07327460281 0) (0.004694850994 0.07580218903 0) (0.004691414066 0.07517024969 0) (-0.004876972562 0.07145772936 0) (-0.005525076687 0.07125448267 3.577416141e-13) (-0.003220635489 0.0711325314 0) (-0.003222465045 0.07081930719 0) (-0.003207114159 0.07332920306 0) (-0.003209156102 0.07301481518 0) (0.001338072441 0.0720362193 0) (0.001339021834 0.07211518448 0) (0.001244914996 0.07211576787 0) (0.0012439937 0.07203686074 0) (0.001361870858 0.07330168236 0) (0.00127528346 0.0733019925 0) (0.001277103994 0.07322297802 0) (0.001362542873 0.07322255971 0) (0.003002008382 0.07107665489 0) (0.005324559317 0.07137495684 3.587824482e-13) (0.004661284271 0.07138099841 0) (0.004654758169 0.07075087132 0) (0.004673069343 0.07264325723 0) (-0.004890486888 0.06895001945 0) (-0.005547462076 0.06886489303 3.583244812e-13) (-0.003234863787 0.068624783 0) (-0.003236534939 0.06831131002 0) (-0.003224279931 0.07050609743 0) (-0.002898842198 0.06956335937 0) (-0.002568288423 0.06956112687 0) (-0.002567321184 0.06971794251 0) (-0.002566368935 0.06987469999 0) (-0.00289700999 0.06987694769 0) (-0.001577125092 0.06955444757 0) (-0.001576852602 0.06963286421 0) (-0.001576836552 0.06971126815 0) (-0.001741956251 0.06971236869 0) (-0.00174279241 0.0695555521 0) (-0.001569246371 0.07080790838 0) (-0.001734508588 0.07080903909 0) (-0.001735604042 0.07065261765 0) (-0.001570457915 0.07065154605 0) (-0.001569815308 0.07072978521 0) (0.001334179547 0.06951066987 0) (0.001334441792 0.06958947984 0) (0.001251155737 0.0695899116 0) (0.001251358094 0.06951109824 0) (0.001344231135 0.07077209655 0) (0.001259260755 0.07077284643 0) (0.001256136616 0.0706940573 0) (0.001342256943 0.07069321165 0) (0.002974498305 0.06855912806 0) (0.005289524739 0.06876505809 3.582828478e-13) (0.004633426029 0.06886366345 0) (0.004625603879 0.06823557036 0) (0.004647993595 0.07012199856 0) (-0.004902911752 0.06644190835 0) (-0.005565497564 0.06642449994 3.586575481e-13) (-0.003247285999 0.066117036 0) (-0.003248679792 0.0658036484 0) (-0.003238162503 0.06799782217 0) (-0.002912478237 0.06705493666 0) (-0.00258252213 0.06705263569 0) (-0.002581700959 0.06720939413 0) (-0.002580864906 0.06736619615 0) (-0.002910894259 0.0673684394 0) (-0.001594708175 0.06704603904 0) (-0.001593763131 0.06712440708 0) (-0.001676831011 0.06712499747 0) (-0.001677532937 0.06704661308 0) (-0.001587814209 0.06830027897 0) (-0.00175189735 0.0683013137 0) (-0.001752951232 0.06814460065 0) (-0.001588999276 0.06814355231 0) (-0.001588530381 0.06822193839 0) (0.001304754205 0.06699574958 0) (0.001307002498 0.06715267241 0) (0.001142576931 0.06715328724 0) (0.001140500179 0.06699631947 0) (0.001320694622 0.06825299687 0) (0.001155868458 0.06825380397 0) (0.001154844816 0.06817504324 0) (0.001154019645 0.06809613541 0) (0.001318843879 0.06809566332 0) (-0.004916886692 0.06362094969 0) (-0.004915156965 0.06393446594 0) (-0.005580399731 0.0639391067 0) (-0.002927753819 0.06360738131 0) (-0.003257900323 0.06360953802 0) (-0.003259338763 0.06329601965 0) (-0.003250059657 0.06549017331 0) (-0.002923862562 0.06454770645 0) (-0.00275906598 0.06454663739 0) (-0.002758404486 0.06470346982 0) (-0.002923215739 0.06470452442 0) (-0.001600758611 0.06453882825 0) (-0.001601921318 0.06461737186 0) (-0.001688547241 0.06461819206 0) (-0.001688142806 0.0645397268 0) (-0.001597896008 0.06579270428 0) (-0.001683250993 0.06579344241 0) (-0.001684214016 0.06571520558 0) (-0.00159941809 0.06571450066 0) (-4.495597043e-05 0.06448865283 0) (3.709410368e-05 0.06448846312 0) (3.690233671e-05 0.06456713075 0) (-4.594365069e-05 0.06456753017 0) (0.001264184969 0.06448701323 0) (0.001267202232 0.06464372654 0) (0.001102876176 0.06464400566 0) (0.001099987504 0.06448734966 0) (0.001286403778 0.06574057352 0) (0.001122297779 0.0657410695 0) (0.001119780893 0.06558426515 0) (0.001283958258 0.06558376865 0) (-0.004856065428 0.06110658108 0) (-0.004903148555 0.0614113933 0) (-0.005569694582 0.06141707768 0) (-0.002853467213 0.06109199703 0) (-0.003187238437 0.06109442774 0) (-0.003189522033 0.06078085727 0) (-0.003260776037 0.0629826615 0) (-0.002930396185 0.06298054679 0) (-0.002935292277 0.06204024353 0) (-0.002770379074 0.06203918819 0) (-0.002769456589 0.0621958585 0) (-0.002934369686 0.06219692841 0) (-0.001614055737 0.06203174306 0) (-0.001608499069 0.06210955317 0) (-0.001693862368 0.06211034962 0) (-0.001697634826 0.06203233716 0) (-0.00160070599 0.06328465425 0) (-0.001689454122 0.06328566469 0) (-0.001691478327 0.06320771233 0) (-0.001604014134 0.06320679862 0) (-0.002537977206 0.05858129396 0) (-0.002871733866 0.05858372456 0) (-0.0002016077671 0.0585642792 0) (-0.0005353746218 0.05856670988 0) (-0.0005376582187 0.05825313941 0) (-0.0003536501341 0.06060348413 0) (-0.001541575573 0.07457950425 0) (-0.001542871384 0.07442157095 0) (-0.001377146416 0.07442058253 0) (-0.001376496826 0.07449958048 0) (-0.00137594474 0.0745783898 0) (-0.001551216175 0.07331771191 0) (-0.001384854985 0.07331648581 0) (-0.001384349862 0.07339504641 0) (-0.001384280079 0.07347382865 0) (-0.00155023066 0.0734750372 0) (-0.001524603254 0.07586044644 0) (-0.001527713129 0.07569881603 0) (-0.001360911442 0.07570107652 0) (-0.001357801028 0.07586238096 0) (-0.001374509323 0.07473689303 0) (-0.001540146873 0.07473788519 0) (0.00136173399 0.07338088849 0) (0.001274443954 0.07338111636 0) (0.001286793871 0.07449233658 0) (0.001370511725 0.07449179681 0) (0.002696988168 0.07455701013 0) (0.002365354041 0.0745608949 0) (0.002364651678 0.07440245041 0) (0.002364017968 0.07424343301 0) (0.002695436059 0.07423988336 0) (0.001370464819 0.07441235606 0) (0.001536465576 0.07441063737 0) (0.001536981466 0.07456947647 0) (0.001446865205 0.0733012236 0) (0.001447063636 0.07338047099 0) (-0.001568604825 0.0708860019 0) (-0.001568064062 0.07096425637 0) (-0.001733413135 0.07096546053 0) (-0.001561004228 0.07206167242 0) (-0.001726033309 0.07206281599 0) (-0.001727130778 0.07190611782 0) (-0.001562145283 0.07190498913 0) (-0.002883770547 0.07207091229 0) (-0.002885719269 0.07175732481 0) (-0.002554729094 0.07175501631 0) (-0.002552736784 0.0720685889 0) (-0.001397613772 0.07190392201 0) (-0.001397067078 0.071982191 0) (-0.001396291404 0.07206050201 0) (-0.001486191599 0.0708073181 0) (-0.001485504903 0.07088541129 0) (-0.001552345848 0.07316059159 0) (-0.001386010344 0.0731594385 0) (-0.00138517326 0.07323798212 0) (-0.001395640454 0.07213888677 0) (-0.001394864965 0.07221737257 0) (-0.001559789183 0.07221851538 0) (0.001346261174 0.07085084995 0) (0.001262458113 0.07085148938 0) (0.001244041541 0.07195783003 0) (0.00133799855 0.07195707296 0) (0.002679796694 0.07202637528 0) (0.002514374906 0.07202759454 0) (0.002513033801 0.07186944164 0) (0.002678426673 0.07186825172 0) (0.0014295848 0.07195637685 0) (0.001429870193 0.07203556534 0) (0.001428267014 0.07077142629 0) (0.001429598389 0.07085024304 0) (0.001446900334 0.07322204733 0) (0.001430693194 0.07211457514 0) (0.002681121432 0.0721842807 0) (0.002515685079 0.07218550006 0) (-0.001587142049 0.06837857618 0) (-0.001586397279 0.06845684373 0) (-0.001750756719 0.06845793873 0) (-0.001743760603 0.06939860538 0) (-0.001577889808 0.06939744111 0) (-0.001577229165 0.06947595688 0) (-0.00290066069 0.06924965443 0) (-0.002570165703 0.06924734953 0) (-0.002569227275 0.06940420907 0) (-0.001492987822 0.06947529969 0) (-0.001493029287 0.06955380601 0) (-0.001506247383 0.06829977235 0) (-0.001505336474 0.06837805325 0) (-0.001486879858 0.07072921035 0) (-0.001493382852 0.06963225634 0) (0.001322476885 0.06841012701 0) (0.001157528062 0.0684108913 0) (0.001156704086 0.06833234759 0) (0.001250745061 0.06943231996 0) (0.001333430853 0.06943186344 0) (0.002654754033 0.06950365986 0) (0.002324224507 0.06950522219 0) (0.002322510775 0.06934790221 0) (0.002320769716 0.06919083003 0) (0.002651225996 0.06918920998 0) (0.001332535193 0.06935327656 0) (0.001497560995 0.06935248257 0) (0.001499274409 0.06950975886 0) (0.001485367966 0.06825220545 0) (0.001487196729 0.06840932068 0) (0.001426963814 0.07069247825 0) (0.001500857805 0.06966718174 0) (0.001418073717 0.06966774093 0) (0.001334876611 0.0696681866 0) (0.002658093794 0.06981825676 0) (0.002327697362 0.06982009486 0) (0.002326011698 0.06966262902 0) (-0.001596541416 0.06587090913 0) (-0.001682360898 0.0658716652 0) (-0.001678205521 0.06696825762 0) (-0.001595651657 0.06696768555 0) (-0.002914016824 0.06674166663 0) (-0.002584132797 0.06673946814 0) (-0.002583342558 0.0668959792 0) (-0.001512554542 0.06696710952 0) (-0.001511116191 0.06704541571 0) (-0.001510358675 0.06579183374 0) (-0.001508197537 0.06586998902 0) (-0.001507085895 0.06822143266 0) (-0.001509678978 0.0671237656 0) (0.001288991421 0.06589749387 0) (0.001124760168 0.06589799077 0) (0.00113845952 0.06683930774 0) (0.001302770346 0.06683873743 0) (-0.001599130126 0.06336284292 0) (-0.0016886512 0.06336391725 0) (-0.001688626584 0.06446129714 0) (-0.001601448991 0.06446042922 0) (-0.002924509066 0.06439093217 0) (-0.002759712484 0.06438986312 0) (-0.0001255100118 0.06448840926 0) (-0.0001271278338 0.06441027916 0) (-4.568458811e-05 0.06441028321 0) (-0.001512691908 0.06445944784 0) (-0.00151135082 0.06453779844 0) (-0.001513093241 0.06328373946 0) (-0.001509895757 0.0633617998 0) (-0.001512787692 0.06571369498 0) (-0.001513277838 0.06461639131 0) (-0.0001278860151 0.06456768996 0) (0.001236165338 0.0632361169 0) (0.001243852562 0.06354848281 0) (0.0009151450291 0.06354923079 0) (0.0009111364156 0.06339299077 0) (0.0009069806245 0.06323694118 0) (0.001096796848 0.06433082696 0) (0.001260988063 0.06433043231 0) (3.633402701e-05 0.06441009373 0) (-0.001520972683 0.06076957986 0) (-0.001520128116 0.06092775095 0) (-0.001602807291 0.06092791611 0) (-0.001686030381 0.06092779393 0) (-0.001687511933 0.06077035574 0) (-0.001702047479 0.06195441676 0) (-0.001619915344 0.06195393515 0) (-0.002936272701 0.06188361734 0) (-0.002771344721 0.06188259102 0) (-0.0001147174302 0.06199128596 0) (-0.0002741585139 0.06198978168 0) (-0.0002811985245 0.06183494743 0) (-0.0001219800364 0.06183652616 0) (-0.001548120851 0.0619537473 0) (-0.001541680551 0.06203149272 0) (-0.001354497786 0.0607683675 0) (-0.001354688744 0.06092654613 0) (-0.001437875677 0.06092758889 0) (-0.001517979312 0.06320601185 0) (-0.001534844631 0.06210916243 0) (-0.0001073113905 0.06214616124 0) (-0.0002671891118 0.06214482036 0) (-0.004862084162 0.07397011923 0) (-0.0054971996 0.07358155585 3.568811913e-13) (-0.003205010459 0.07364407113 0) (-0.003186164932 0.07585983122 0) (-0.003190218705 0.07553919033 0) (-0.002866817194 0.07458684975 0) (-0.002535314275 0.07458494825 0) (-0.002532627334 0.07490190363 0) (-0.002864159212 0.07490382865 0) (-0.001705714228 0.07473891617 0) (-0.001707144225 0.07458055708 0) (-0.00169059782 0.07586061506 0) (-0.001693817397 0.07569852112 0) (0.0006962933143 0.07521795281 0) (0.0006909298206 0.07529666829 0) (0.0006072749254 0.07529265309 0) (0.0006330460833 0.07522840217 0) (0.0006934771135 0.07587164793 0) (0.0006063037815 0.07587410097 0) (0.0006057837278 0.07578989016 0) (0.0006934958679 0.0757886232 0) (-0.002550713755 0.07238237975 0) (-0.002881805987 0.07238467443 0) (-0.001724920215 0.07221965969 0) (-0.001716929887 0.07331884591 0) (-0.00171805956 0.07316172559 0) (0.0006372083134 0.06763053803 0) (0.0006345670917 0.06770966045 0) (0.0005471266815 0.06771623981 0) (0.0005337348289 0.06765054668 0) (0.002940404936 0.06604762087 0) (0.00520926425 0.06565392663 3.550215677e-13) (0.004600058487 0.06635203235 3.587824482e-13) (0.004588725895 0.06569548962 3.586159147e-13) (0.004617490229 0.06760745025 0) (-7.033165638e-05 0.06513976755 0) (3.208551686e-05 0.06511991225 0) (3.233494365e-05 0.0651985621 0) (-5.262862936e-05 0.06520484668 0) (0.0006204631108 0.06511478257 0) (0.0006230290906 0.06527152831 0) (0.0004588652296 0.06527187906 0) (0.0004576867318 0.06519345446 0) (0.0004567094342 0.06511505752 0) (0.0006307781397 0.06574198361 0) (0.0005487677867 0.0657421876 0) (0.0005475385258 0.06566379249 0) (0.0006295545985 0.0656635739 0) (4.640977619e-05 0.06199223905 0) (5.378848717e-05 0.0621470417 0) (0.001200383237 0.0619891223 0) (0.001209998533 0.06230044005 0) (0.0008782650658 0.06230208397 0) (0.0008668190105 0.06199137673 0) (0.000902709775 0.06308089242 0) (0.0008983670584 0.06292497528 0) (0.001227999612 0.06292404578 0) (-0.001715827857 0.07347617034 0) (-0.001708425524 0.07442261639 0) (-0.00286909679 0.07427182857 0) (-0.002537682764 0.07426972089 0) (-0.0008869539002 0.07394383551 0) (-0.0008930450105 0.07386503886 0) (-0.0008196822834 0.07386459198 0) (-0.0008128675086 0.07394355815 0) (-0.0008555436565 0.07587111132 0) (-0.0008587809396 0.07578758599 0) (-0.0007749443542 0.07578914988 0) (-0.0007711292098 0.07587382382 0) (-0.0008682588315 0.07521373586 0) (-0.000784986505 0.0752142189 0) (-0.0007836466766 0.07529479651 0) (-0.0008681274165 0.07529418099 0) (0.001536374241 0.07568809546 0) (0.001535646404 0.07584815296 0) (0.001537427123 0.07472867148 0) (0.001371304185 0.07473101299 0) (0.002698378914 0.07487397932 0) (0.002366827994 0.07487728962 0) (0.002366128049 0.07471917719 0) (0.0006318555356 0.06582052547 0) (0.0005497800673 0.06582078819 0) (0.000636976528 0.06637051092 0) (0.0005519770478 0.06637146493 0) (0.000552331087 0.0662926796 0) (0.0006365207117 0.06629192084 0) (0.00262370401 0.0669900477 0) (0.002293378385 0.06699160854 0) (0.002289010919 0.06667789303 0) (0.002619278923 0.06667642 0) (0.001467160852 0.06683810829 0) (0.001469279841 0.06699507575 0) (0.001450687038 0.06574001798 0) (0.001453344377 0.0658969087 0) (0.001483523791 0.06809497381 0) (0.001471442204 0.06715199921 0) (0.002628059669 0.06730414198 0) (0.002297675893 0.06730571781 0) (-5.648849837e-05 0.06386159175 0) (-0.0001396691603 0.06386209556 0) (-0.0001401100956 0.06378338885 0) (-5.766939296e-05 0.06378313803 0) (-0.0007437683663 0.06261226307 0) (-0.0006585401197 0.06261132196 0) (-0.0006551264262 0.06268887095 0) (-0.0007396816938 0.06268982172 0) (-8.909499777e-05 0.06261227273 0) (-8.357363097e-05 0.06276787543 0) (-0.000244148201 0.06276678723 0) (-0.0002468203474 0.06268888328 0) (-0.0002494197101 0.06261115358 0) (-7.053213453e-05 0.07718361977 0) (-0.0002519684958 0.07718342486 0) (-0.0002530020149 0.07702770792 0) (-7.17966842e-05 0.07702788703 0) (-0.001467705341 0.0771693443 0) (-0.001495141897 0.07683471232 0) (-0.001325424543 0.07683813572 0) (-0.0011504439 0.07684608405 0) (-0.001136455031 0.07701195612 0) (-0.001122846025 0.0771752675 0) (-0.00135324396 0.07602593159 0) (-0.001521748311 0.07602067084 0) (0.001366917718 0.07601368783 0) (0.001199798925 0.07601748408 0) (0.001337921589 0.0771475037 0) (0.0009899939183 0.07716045156 0) (0.0009918484656 0.07700290751 0) (0.00100238868 0.07683963001 0) (0.001180846578 0.07682785514 0) (0.001351791286 0.07682141193 0) (0.0001177129997 0.07702518877 0) (0.0001177428091 0.07718108198 0) (0.0006733790302 0.07511629345 0) (0.001371729195 0.07520977277 0) (0.001205483504 0.07521205837 0) (0.001205354054 0.07513168314 0) (0.001205234319 0.07505144184 0) (0.001371839457 0.07504951338 0) (0.0007769448882 0.07513436902 0) (0.0007789170116 0.07521556978 0) (0.0007798160907 0.07578762607 0) (0.0007791563444 0.07587003342 0) (0.0007775264134 0.07529642071 0) (0.001371628201 0.07536950484 0) (0.001205606351 0.0753713271 0) (0.001205522431 0.0752918036 0) (0.001366373834 0.07266860562 0) (0.001287851834 0.0726694105 0) (0.001286442498 0.07259028845 0) (0.001365025774 0.07258949769 0) (0.001366659014 0.07274776499 0) (0.0012876257 0.07274855903 0) (0.001341089618 0.07014072134 0) (0.001259026649 0.07014110049 0) (0.001257599016 0.07006206596 0) (0.001340106197 0.07006168358 0) (0.001341360764 0.07021995363 0) (0.001258937236 0.0702204228 0) (0.0006416514361 0.06699944259 0) (0.000643235855 0.06707780597 0) (0.0005599166196 0.06707828167 0) (0.0005560211074 0.06700037206 0) (0.0005665942993 0.06754982259 0) (0.0006442205785 0.06755042248 0) (0.001313069083 0.06762410126 0) (0.001148530445 0.06762478974 0) (0.00114651113 0.06746790894 0) (0.001311137154 0.06746721982 0) (0.0007281375602 0.06754982592 0) (0.0007252157769 0.0676290232 0) (0.0007267167741 0.06699853179 0) (0.0007275985834 0.06707701682 0) (0.0006542977109 0.0682589569 0) (0.0006405012943 0.06818591132 0) (0.0007271811557 0.06817949772 0) (0.0007323828005 0.06825755803 0) (0.0007243459476 0.06770778316 0) (0.001315017987 0.06778111366 0) (0.001150486737 0.06778181665 0) (0.001149461773 0.06770327441 0) (-0.001610652863 0.06516620559 0) (-0.001691325968 0.06516663288 0) (-0.001692217124 0.06508826444 0) (-0.001612053559 0.06508786999 0) (-0.002263112795 0.06517011239 0) (-0.002263860402 0.06501345537 0) (-0.002099995514 0.06501245136 0) (-0.002099189756 0.06516909339 0) (-0.002266073668 0.06454354236 0) (-0.002102267037 0.06454253878 0) (-0.002101518264 0.064699356 0) (-0.00226535413 0.06470034524 0) (0.0006089300288 0.06448792541 0) (0.0006120077191 0.06464453633 0) (0.0004487406755 0.06464463294 0) (0.0004458739561 0.06448799136 0) (0.0004555066013 0.06503669135 0) (0.0004543675333 0.06495828102 0) (0.0006178261899 0.06495809562 0) (-4.322097113e-05 0.06503933294 0) (3.57659113e-05 0.06504008314 0) (-0.001633853895 0.0626603723 0) (-0.001710961067 0.06266045319 0) (-0.001711967783 0.06258221668 0) (-0.001636243482 0.06258224782 0) (-0.002274612575 0.06266302868 0) (-0.002275345298 0.06250641525 0) (-0.002112237014 0.0625055187 0) (-0.002111577218 0.0626621181 0) (-0.002277939147 0.06203624283 0) (-0.002114801734 0.06203534608 0) (-0.002114202395 0.06211364381 0) (-0.002113777935 0.06219192826 0) (-0.00227698764 0.06219289837 0) (-0.002271606312 0.06328983142 0) (-0.00227230874 0.06313337799 0) (-0.002108836453 0.06313246423 0) (-0.002108003264 0.06328887301 0) (-0.002110728192 0.06281870156 0) (-0.002273865393 0.06281962744 0) (-0.001630140543 0.06273826867 0) (-0.001708746889 0.06273849156 0) (-0.0008729623828 0.07457547107 0) (-0.0008617757599 0.07449455463 0) (-0.000758436416 0.07447452657 0) (-0.0007975423236 0.07457592536 0) (-0.0008056211841 0.07402198226 0) (-0.0008803903256 0.07402230829 0) (-0.0015468591 0.07394800045 0) (-0.001381463711 0.07394695616 0) (-0.001380703655 0.07402592273 0) (-0.001379981707 0.07410465652 0) (-0.001545535423 0.07410576022 0) (-0.0009636563869 0.07402288555 0) (-0.0009686959225 0.07394428515 0) (-0.0009555111959 0.07457593678 0) (-0.0009497419062 0.0744957429 0) (-0.0008583371816 0.07331032099 0) (-0.0008538881289 0.07338443963 0) (-0.0009420520485 0.07339047079 0) (-0.0009393132948 0.07331174092 0) (-0.0009732903478 0.07386540478 0) (-0.001548125475 0.07379010917 0) (-0.001382846417 0.07378889095 0) (-0.001382203087 0.07386782923 0) (-0.001535009384 0.07521613583 0) (-0.001369270018 0.07521552454 0) (-0.001366833136 0.07537714325 0) (-0.001532563124 0.07537764232 0) (-0.0009522671413 0.07529439175 0) (-0.0009525215756 0.07521385429 0) (-0.0009407472382 0.07586663927 0) (-0.0009427029708 0.07578568919 0) (-0.0008782995885 0.07465559627 0) (-0.0009589044711 0.07465579148 0) (-0.0009518728537 0.07513353311 0) (-0.0008665029432 0.07513344448 0) (-0.00153693186 0.07505595241 0) (-0.001371174345 0.07505523321 0) (-0.0007827186556 0.07513342712 0) (-0.0008018724187 0.07465594127 0) (0.001368419849 0.07393555251 0) (0.001284363898 0.07393626661 0) (0.001284938622 0.07385698446 0) (0.00136843808 0.07385605594 0) (0.00136861881 0.07401487273 0) (0.001284322548 0.07401558858 0) (-0.001564785689 0.0714344238 0) (-0.001481518383 0.0714338174 0) (-0.001481306138 0.07151216165 0) (-0.001564317217 0.07151275162 0) (-0.0009224700131 0.07205776507 0) (-0.000995634665 0.07205821051 0) (-0.0009988899047 0.0719800195 0) (-0.0009260078011 0.07197957612 0) (-0.001565166986 0.07135606621 0) (-0.001481819577 0.07135545923 0) (-0.00155609919 0.07268920415 0) (-0.001390495241 0.07268799813 0) (-0.001389658977 0.07276662914 0) (-0.001388988958 0.07284523223 0) (-0.001554838119 0.07284636721 0) (-0.0008930587173 0.07268415704 0) (-0.0008892521742 0.0727626499 0) (-0.0009647218325 0.07276318495 0) (-0.0009683185429 0.07268470513 0) (-0.0009414411762 0.07323335236 0) (-0.0008630859242 0.07323265065 0) (-0.0009189684238 0.07213598341 0) (-0.0009923775447 0.07213645976 0) (-0.0009718142289 0.0726062974 0) (-0.0008968149991 0.07260576577 0) (-0.001557344212 0.07253224489 0) (-0.001391961535 0.07253105504 0) (-0.001391182206 0.07260946799 0) (0.001357423328 0.07140357334 0) (0.001279496741 0.07140393693 0) (0.001278304626 0.07132484243 0) (0.001356628819 0.07132447594 0) (0.001357168991 0.07148264925 0) (0.001279067738 0.07148302868 0) (0.001437309746 0.07140312265 0) (0.001437433976 0.07148218123 0) (0.002013040861 0.07139925028 0) (0.002014408867 0.07155709712 0) (0.001849234248 0.07155825632 0) (0.001847938851 0.07140037982 0) (0.002018356921 0.07203122139 0) (0.001852993284 0.07203242566 0) (0.001851738929 0.07187418473 0) (0.002017073543 0.07187299524 0) (0.002007100972 0.07076761872 0) (0.002008643539 0.07092543516 0) (0.001843555776 0.0709265209 0) (0.001841998539 0.07076869 0) (0.001846540762 0.07124240211 0) (0.002011613748 0.07124128735 0) (0.001436660987 0.07132403875 0) (0.001446680602 0.07266787513 0) (0.001447169578 0.07274701845 0) (0.002023266453 0.07266337024 0) (0.00202440387 0.07282155376 0) (0.00185911369 0.07282284488 0) (0.001858005297 0.07266464659 0) (0.002027485381 0.07329668932 0) (0.001862049983 0.07329803977 0) (0.001861114346 0.07313956348 0) (0.002026506158 0.07313822792 0) (0.00201962372 0.07218917092 0) (0.001854245624 0.07219038986 0) (0.001856795483 0.07250652186 0) (0.002022085874 0.07250525986 0) (0.0014456385 0.07258877953 0) (-0.001582023214 0.06892726535 0) (-0.001498648026 0.06892667273 0) (-0.001497671153 0.06900501141 0) (-0.001581167119 0.06900561948 0) (-0.001582672814 0.06884886602 0) (-0.001499604934 0.06884827564 0) (-0.001574143348 0.07018148354 0) (-0.001491884927 0.07018094275 0) (-0.001491170212 0.07025928334 0) (-0.001573529021 0.07025983943 0) (-0.001574772345 0.07010311319 0) (-0.00149258966 0.07010257295 0) (0.00132761355 0.06888166459 0) (0.001244775044 0.06888215134 0) (0.001244121549 0.06880341705 0) (0.001326804322 0.06880294599 0) (0.000741666931 0.06833480209 0) (0.0006680376478 0.068335047 0) (0.001328199731 0.06896035568 0) (0.001245148904 0.06896088768 0) (-0.001601101413 0.06641975617 0) (-0.001520589972 0.06641933006 0) (-0.001520579429 0.06649777774 0) (-0.00160092338 0.06649820263 0) (-0.001600496096 0.06634127488 0) (-0.001518993247 0.06634078329 0) (-0.001588166798 0.06767306364 0) (-0.001501718243 0.06767228843 0) (-0.001502381923 0.06775075558 0) (-0.001588162187 0.0677514968 0) (-0.001588544044 0.06759466233 0) (-0.001501958584 0.06759388612 0) (0.0006399629739 0.06692099256 0) (0.0007256243896 0.06691993178 0) (0.0007206674441 0.06636987231 0) (0.0007213712786 0.06644851885 0) (0.0006372094322 0.06644929198 0) (0.001296087061 0.06636802676 0) (0.00129837542 0.06652505125 0) (0.001134122957 0.0665256357 0) (0.001131860283 0.06636853819 0) (0.0005512937767 0.06645044201 0) (0.0005526591522 0.06692232749 0) (-0.001619425933 0.06391353781 0) (-0.001699560687 0.06391388835 0) (-0.00170074313 0.06383552204 0) (-0.001621510941 0.06383523633 0) (-0.002268947048 0.06391698626 0) (-0.00226965234 0.06376013958 0) (-0.00210619483 0.0637591968 0) (-0.002105460515 0.0639160287 0) (-0.002107357608 0.06344553078 0) (-0.002270960656 0.06344648918 0) (-0.002266807558 0.06438676872 0) (-0.002103059185 0.06438576556 0) (-0.002104668685 0.06407275822 0) (-0.002268228146 0.06407370175 0) (-0.00161678499 0.06399177698 0) (-0.001697985325 0.06399220811 0) (-5.538257061e-05 0.06394003145 0) (-0.0001391706435 0.06394072903 0) (-0.001539953538 0.06391323578 0) (-0.0015358801 0.06399137713 0) (-0.001543468023 0.06383504667 0) (-0.00153062901 0.06516582672 0) (-0.001528160959 0.06524412542 0) (-0.001609112137 0.0652445693 0) (-0.001532891491 0.06508755566 0) (-0.0001005981562 0.06502910368 0) (2.571413099e-05 0.06386143006 0) (2.714239316e-05 0.06393975089 0) (0.0005955623768 0.06386195551 0) (0.0005991943325 0.064018475 0) (0.0004362122198 0.06401849672 0) (0.0004325361468 0.06386191928 0) (0.0004426102948 0.06433164396 0) (0.0006058072174 0.06433151873 0) (-0.002278977404 0.06187967532 0) (-0.002115999774 0.06187883799 0) (-0.002115342497 0.06195709161 0) (-0.002247257554 0.06139126509 0) (-0.002083522679 0.06139640851 0) (-0.002103757104 0.06148393204 0) (-0.002113757677 0.06156471022 0) (-0.002276897496 0.06156327657 0) (-0.001590454816 0.0613934877 0) (-0.00162051771 0.06148162172 0) (-0.001698242844 0.06148084777 0) (-0.001670118113 0.06139077614 0) (-0.001550079849 0.06141394897 0) (-0.001570333557 0.06148482471 0) (-0.0007725981633 0.06136231938 0) (-0.0007707615199 0.06144031681 0) (-0.0008494667848 0.06143915673 0) (-0.0008513540852 0.06136120337 0) (-0.0007505445272 0.06198459931 0) (-0.0008317494225 0.06198440417 0) (-0.0008333732427 0.06190623042 0) (-0.0007524585738 0.06190657332 0) (-0.001557646163 0.06266038535 0) (-0.001552231405 0.06273810911 0) (-0.0008223534253 0.06269560897 0) (-0.0008439519064 0.0626312282 0) (-0.0007488125349 0.06206262663 0) (-0.0008306101709 0.06206263972 0) (-0.0008225071383 0.06253210202 0) (-0.0007433267859 0.06253309841 0) (-0.001562366229 0.06258245262 0) (-0.0002550538445 0.06245556627 0) (-9.472101576e-05 0.06245669993 0) (-0.0006595498056 0.06253267765 0) (-0.0006701834872 0.06198512103 0) (-0.0006679272068 0.06206294061 0) (0.0003468258746 0.07588966813 0) (0.0002444088381 0.07589034221 0) (0.0003362728043 0.07579218046 0) (0.0002922397219 0.06543041042 0) (0.0002935581436 0.06550884857 0) (0.0002064938136 0.06551026914 0) (0.0002052936814 0.06543187382 0) (0.0003010023826 0.06574324914 0) (0.0002198553489 0.06574319924 0) (0.0002178498366 0.0656650137 0) (0.000299770527 0.06566489775 0) (-0.004872049545 0.05891173344 0) (-0.005525220825 0.05876626992 3.578665142e-13) (-0.00286945133 0.05889714939 0) (-0.003203222554 0.0588995801 0) (-0.003536993778 0.05890201081 0) (-0.003541559911 0.05827501551 0) (-0.00319180563 0.0604672868 0) (-0.002864884136 0.05952429033 0) (-0.002531127477 0.05952185972 0) (-0.00252884388 0.05983543019 0) (-0.002862600539 0.0598378608 0) (-0.001529824 0.05951456767 0) (-0.001527540403 0.05982813814 0) (-0.001861301432 0.05983056877 0) (-0.001863585029 0.0595169983 0) (-0.001688713579 0.06061335247 0) (-0.001521939052 0.06061228357 0) (0.000468207022 0.05887284268 0) (0.0001344416238 0.05887527335 0) (-0.000199325231 0.05887770402 0) (0.002466959289 0.05876301945 3.581995811e-13) (0.001803272984 0.05886311998 0) (0.00179829825 0.05822210247 3.586991815e-13) (0.001814689908 0.06043082668 0) (0.001812407372 0.06011740185 0) (-0.000513534198 0.07589050817 0) (-0.0005216879132 0.07579948633 0) (-0.0004168092459 0.07578662942 0) (-0.0004242740431 0.07590200582 0) (0.0003005045806 0.06582209378 0) (0.0002168511076 0.06582267386 0) (0.0003019195125 0.06605818412 0) (0.0002244032574 0.06605729212 0) (0.000222353946 0.06597909234 0) (0.0003027053704 0.06597929369 0) (0.0005797904275 0.06323724115 0) (0.0005839938567 0.06339323214 0) (0.0004210576074 0.06339315157 0) (0.0004168889206 0.06323713119 0) (0.0004288951627 0.06370556007 0) (0.0005918865444 0.06370561111 0) (2.420004521e-05 0.06378312442 0) (0.001149441252 0.0607492585 0) (0.001164858664 0.06105748987 0) (0.0008324182099 0.06105845438 0) (0.0008156743972 0.06075168917 0) (0.0008543100267 0.06168111418 0) (0.001190713339 0.06167790692 0) (3.876684255e-05 0.06183755484 0) (-7.959606886e-05 0.07656068594 0) (-0.0002729268155 0.07655714757 0) (-0.0002796003598 0.0763999744 0) (-0.0001757191159 0.07640445696 0) (-7.687533633e-05 0.07640524752 0) (-0.0008137136639 0.0765385682 0) (-0.0008288267054 0.0763705312 0) (-0.0006538711227 0.07637803839 0) (-0.0006330890514 0.07654731438 0) (-0.0007664820614 0.07595874382 0) (-0.0008511735585 0.07595598833 0) (0.0006922395967 0.07595511913 0) (0.0006056585377 0.07595829973 0) (0.0006684746942 0.07653085751 0) (0.0004913621689 0.07653957119 0) (0.0004989149581 0.07637827736 0) (0.000678501493 0.07636608062 0) (2.923211994e-05 0.07640309693 0) (0.0001264121706 0.07639950969 0) (0.0001208470225 0.07655693511 0) (0.001350614554 0.07235203091 0) (0.001262408159 0.07235262959 0) (0.001253026799 0.07227343451 0) (0.001345005891 0.07227288119 0) (0.00102331436 0.0733030264 0) (0.001030177342 0.07322441215 0) (0.0011057427 0.07322381814 0) (0.001100185214 0.07330249571 0) (0.001047134143 0.07298782388 0) (0.001120939704 0.07298718444 0) (0.001116406757 0.07306614585 0) (0.001042250513 0.07306683155 0) (0.001365196915 0.07298499779 0) (0.001364360747 0.07306417989 0) (0.001281419789 0.07306479848 0) (0.001283388244 0.07298569553 0) (0.001336223244 0.0698256986 0) (0.001251529876 0.06982628625 0) (0.001250687044 0.06974755334 0) (0.001335353665 0.06974689305 0) (0.0009886592773 0.06982978822 0) (0.0009863006428 0.06975131395 0) (0.00107593235 0.06974983099 0) (0.001077209914 0.06982845879 0) (0.001006384619 0.06951173163 0) (0.001086191415 0.0695117476 0) (0.00108366038 0.06959100031 0) (0.001002180912 0.06959130238 0) (0.00101402646 0.07077486541 0) (0.001007439978 0.07069624715 0) (0.001083144653 0.07069578321 0) (0.001089229484 0.07077431774 0) (0.0009848028349 0.07046644327 0) (0.001072287207 0.07046030055 0) (0.001072155791 0.07053905513 0) (0.0009921601763 0.07054051161 0) (0.001339202645 0.07045681282 0) (0.001339407558 0.07053555038 0) (0.001251746139 0.07053658204 0) (0.001251950271 0.07045781236 0) (-0.001672427074 0.06767372097 0) (-0.001672881512 0.06759532022 0) (-0.002249469087 0.06767758832 0) (-0.002250392526 0.06752078693 0) (-0.002085756258 0.06751970447 0) (-0.002084803796 0.06767649109 0) (-0.002253089704 0.06705042592 0) (-0.002088584515 0.06704934442 0) (-0.002087646723 0.06720611658 0) (-0.002252195605 0.06720719839 0) (-0.00224576225 0.06830458987 0) (-0.002246699618 0.06814787597 0) (-0.00208194694 0.06814677811 0) (-0.002080980445 0.06830349179 0) (-0.002083865898 0.06783327781 0) (-0.002248560318 0.06783437525 0) (-0.001672074587 0.06775212246 0) (-0.002259856817 0.06579720462 0) (-0.002260677352 0.06564053357 0) (-0.002096506824 0.0656394982 0) (-0.002095613574 0.06579615416 0) (-0.002098309904 0.06532590967 0) (-0.002262320329 0.0653269293 0) (-0.001690347214 0.06524502981 0) (-0.001614428649 0.06234553678 0) (-0.001698305671 0.06234622045 0) (-0.001693069796 0.06226718109 0) (-0.001605764143 0.06226629768 0) (-0.001949336501 0.06234809229 0) (-0.001949210167 0.06226943971 0) (-0.001865567101 0.06226883057 0) (-0.001866610565 0.0623475481 0) (-0.001950863706 0.06203438523 0) (-0.001867526385 0.06203379288 0) (-0.001866111974 0.06211201186 0) (-0.001949973292 0.06211265172 0) (-0.001355162673 0.06061106901 0) (-0.001196057145 0.05951213699 0) (-0.001193773548 0.05982570746 0) (-0.0001947580386 0.05950484496 0) (-0.0001924744458 0.05981841543 0) (-0.000526241295 0.05982084611 0) (-0.0005285248919 0.05950727564 0) (0.001365879994 0.07361879415 0) (0.001281682663 0.07361949471 0) (0.001278153443 0.07354008223 0) (0.001363993053 0.07353969014 0) (0.001041204513 0.07362260057 0) (0.001001204864 0.073522276 0) (0.001104317609 0.07354053256 0) (0.001116125667 0.073620948 0) (0.001095897952 0.07338119317 0) (0.001016059801 0.07338087156 0) (0.001451756745 0.07393490191 0) (0.001452057339 0.07401417769 0) (0.002031207212 0.07392974986 0) (0.002032082152 0.0740878916 0) (0.001866560428 0.07408938832 0) (0.001865728651 0.07393117345 0) (0.00203399406 0.07456442374 0) (0.001868399599 0.07456593265 0) (0.001867854325 0.0744070588 0) (0.002033419424 0.07440551806 0) (0.002028449086 0.07345501976 0) (0.001862984771 0.07345639955 0) (0.001864922715 0.07377250686 0) (0.002030386818 0.07377109795 0) (0.001451555981 0.07385533411 0) (0.001352033845 0.07108752029 0) (0.001271360846 0.07108796214 0) (0.001268561704 0.07100919978 0) (0.001350207283 0.07100870714 0) (0.001038034752 0.07108894766 0) (0.001032597532 0.07101053951 0) (0.001106341845 0.07101008985 0) (0.001111375555 0.07108869029 0) (0.00109524054 0.07085272172 0) (0.001020576474 0.07085307612 0) (0.001346151087 0.07171973317 0) (0.001341737066 0.0717988248 0) (0.001250017248 0.07179958015 0) (0.001258194485 0.07172043198 0) (-0.001747214384 0.06892835184 0) (-0.0017484003 0.06877150867 0) (-0.001583493241 0.06877040968 0) (-0.002241923698 0.06893167786 0) (-0.002242905713 0.0687748332 0) (-0.002078022063 0.06877371981 0) (-0.00207701092 0.06893056426 0) (-0.002079999915 0.06846013255 0) (-0.002244810743 0.06846124541 0) (-0.001266101044 0.06829850412 0) (-0.001263064482 0.06837666758 0) (-0.001343297743 0.06837709167 0) (-0.001345389291 0.06829889219 0) (-0.001253958634 0.06861123084 0) (-0.001336889609 0.06861182022 0) (-0.001339027049 0.06853351912 0) (-0.001256985531 0.06853299447 0) (-0.001584950372 0.06861352478 0) (-0.001585666755 0.06853515507 0) (-0.001503446202 0.06853461456 0) (-0.001502496895 0.06861296801 0) (0.001003655761 0.06943342027 0) (0.001085135441 0.06943314733 0) (0.0009855296389 0.06920004422 0) (0.001074590635 0.06919859455 0) (0.001077865551 0.06927688737 0) (0.0009910419002 0.06927795662 0) (0.001330472051 0.0691961776 0) (0.001331392576 0.06927477887 0) (0.001248152731 0.06927535594 0) (0.001246869765 0.06919678644 0) (0.001492495589 0.06888092991 0) (0.001494135227 0.06903807564 0) (0.001328888259 0.06903890037 0) (0.001987138233 0.06887844916 0) (0.001988864196 0.06903544861 0) (0.001823935156 0.06903632929 0) (0.00182222312 0.06887924234 0) (0.001994090128 0.06950704381 0) (0.001829132277 0.06950796838 0) (0.001827433321 0.06935067743 0) (0.001992391172 0.06934975285 0) (0.001423497365 0.07014048533 0) (0.001424029397 0.07021954094 0) (0.00200089571 0.07013754755 0) (0.00200249558 0.07029523249 0) (0.001837407605 0.0702962891 0) (0.001835895333 0.07013863266 0) (0.001840411855 0.07061081562 0) (0.002005543629 0.07060977325 0) (0.001995848827 0.06966453824 0) (0.001830847177 0.06966544857 0) (0.001834221369 0.06998077348 0) (0.001999252042 0.06997984837 0) (0.001422689247 0.07006151911 0) (-0.001682458618 0.06642024671 0) (-0.001682461879 0.06634179898 0) (-0.00225654534 0.06642391775 0) (-0.002257322711 0.06626717356 0) (-0.002093050658 0.06626607919 0) (-0.002092214923 0.06642283753 0) (-0.002094735207 0.06595276653 0) (-0.002259036708 0.06595381742 0) (-0.002253968389 0.06689376986 0) (-0.002089506893 0.06689268868 0) (-0.002091320824 0.06657961 0) (-0.002255695041 0.06658067598 0) (-0.001682120589 0.06649866287 0) (-0.001598489722 0.0667331786 0) (-0.001516919983 0.06673267196 0) (-0.001515451182 0.06681075945 0) (-0.001597539305 0.06681128444 0) (-0.001273858497 0.06673129511 0) (-0.001269614897 0.06680920217 0) (-0.001351274935 0.06680970948 0) (-0.001354598492 0.06673173745 0) (-0.001257681529 0.0670434244 0) (-0.001341729272 0.06704406562 0) (-0.00134488423 0.06696584475 0) (-0.001261635858 0.06696523849 0) (-0.001258357415 0.06578941592 0) (-0.001253418141 0.06586744901 0) (-0.001329785995 0.06586804886 0) (-0.001334201059 0.06578999739 0) (-0.001238938442 0.06609691903 0) (-0.001326129993 0.06610287028 0) (-0.001323564208 0.06602438928 0) (-0.001243598225 0.0660230641 0) (-0.001595797117 0.06610591197 0) (-0.001595198234 0.06602754725 0) (-0.001506222474 0.06602659341 0) (-0.001507734224 0.06610500847 0) (-0.001589261282 0.06798677524 0) (-0.001507154225 0.06798625011 0) (-0.001507816767 0.06806467356 0) (-0.001589351551 0.06806517995 0) (-0.001269113148 0.06798509917 0) (-0.001272054163 0.06806365573 0) (-0.001348564592 0.06806387792 0) (-0.001345757464 0.0679853369 0) (-0.001347284857 0.06822060389 0) (-0.001268969084 0.06822028116 0) (-0.001253727095 0.06712162488 0) (-0.001338579928 0.06712231565 0) (-0.001241843189 0.06735625529 0) (-0.001329150723 0.06735708046 0) (-0.001332281133 0.06727883029 0) (-0.001245806362 0.06727805488 0) (-0.001590943808 0.06735954046 0) (-0.00159187585 0.06728115776 0) (-0.001506813291 0.06728046546 0) (-0.001505399381 0.06735881553 0) (0.001129417146 0.06621166048 0) (0.001293748893 0.06621116285 0) (0.0007198527368 0.06629140136 0) (0.0007945349413 0.06574173777 0) (0.0007968228766 0.06589870401 0) (0.0006329726795 0.06589912531 0) (-0.0003508414016 0.06416376236 0) (-0.0002933711868 0.06417432594 0) (-0.000317484402 0.06427415611 0) (-5.061993884e-05 0.06417520894 0) (-4.940962269e-05 0.06425382266 0) (-0.0001330653342 0.06425431536 0) (-0.0001336557662 0.06417558061 0) (-0.001608304116 0.0642259224 0) (-0.001523243225 0.06422520098 0) (-0.001519318584 0.06430311037 0) (-0.001605667784 0.06430392856 0) (-0.001614526159 0.06359934699 0) (-0.001606774915 0.06352030387 0) (-0.001521040118 0.06351951929 0) (-0.001534954727 0.06359904424 0) (-0.001604267655 0.06547958597 0) (-0.001520479158 0.06547894665 0) (-0.001517897611 0.06555722995 0) (-0.001602636842 0.06555791989 0) (-0.00127909043 0.06547727611 0) (-0.001273908857 0.06555538026 0) (-0.001348381388 0.06555583522 0) (-0.001353139244 0.06547771342 0) (-0.001338873488 0.06571200605 0) (-0.00126353459 0.06571151565 0) (-0.001320342087 0.06485423295 0) (-0.001384937593 0.06485314491 0) (-0.001375835597 0.06477417935 0) (-0.001325514145 0.06478243543 0) (-0.001611909269 0.06485328307 0) (-0.001608883675 0.06477474046 0) (-0.001527051672 0.06477424647 0) (-0.001532914585 0.06485298452 0) (-5.479997715e-05 0.06480622964 0) (-0.0001576828354 0.06482617572 0) (-0.0001296777318 0.06472550156 0) (-5.003963926e-05 0.06472607223 0) (-0.001603293615 0.06130413678 0) (-0.001495105406 0.06128732726 0) (-0.002184652417 0.06124384707 0) (-0.0020174828 0.06124262965 0) (-0.002031393167 0.06131453701 0) (-0.002188208361 0.06077356514 0) (-0.002021285278 0.06077249517 0) (-0.002020056624 0.06092920694 0) (-0.00218702234 0.06093042288 0) (-0.001951928467 0.06195617827 0) (-0.001869260683 0.06195564906 0) (-0.001955052475 0.06172120733 0) (-0.001874393722 0.06172080927 0) (-0.001873007378 0.0617991741 0) (-0.00195421947 0.06179959075 0) (-0.001637714751 0.06172022172 0) (-0.00163234604 0.06179822255 0) (-0.001711354575 0.06179841924 0) (-0.001715142657 0.06172026125 0) (-0.0006726348237 0.06190731743 0) (-0.0006170885996 0.06136460968 0) (-0.0006087374633 0.06151974025 0) (-0.0007648460256 0.06151679888 0) (-0.0001470426113 0.06137343581 0) (-0.0001386594936 0.06152783789 0) (-0.000296640376 0.06152558015 0) (-0.0003034249295 0.06137058383 0) (-0.001568523197 0.06172021304 0) (-0.001562210928 0.06179817787 0) (-0.001084402855 0.06167106944 0) (-0.001080611472 0.06174828068 0) (-0.001158242746 0.06175139493 0) (-0.001181520954 0.06168896355 0) (-0.0008532636789 0.06076398897 0) (-0.0008522699065 0.06092084811 0) (-0.001019578676 0.06092235785 0) (-0.001020308438 0.06076535114 0) (-0.0008603475493 0.06128547197 0) (-0.0007813996186 0.06128635354 0) (-0.00161719993 0.06297260008 0) (-0.00153545947 0.06297213589 0) (-0.001529635185 0.06305029362 0) (-0.001612682781 0.06305086929 0) (-0.001522408601 0.06226060741 0) (-0.001516625695 0.06232628313 0) (0.0006916401712 0.07554080954 0) (0.0006050656874 0.075541893 0) (0.0006049907183 0.07545979869 0) (0.0006904574869 0.07545781006 0) (0.0004300211271 0.07579676783 0) (0.0004319807202 0.07588204801 0) (0.0006926350034 0.07562341422 0) (0.0006056067191 0.07562378438 0) (0.0006601303837 0.06794066648 0) (0.000591879777 0.06793908071 0) (0.0005770685482 0.06786388689 0) (0.0006509550124 0.06786375663 0) (0.0006605768249 0.06801916924 0) (0.0006057335504 0.06800940219 0) (0.0002906042308 0.06511603415 0) (0.0002912211811 0.06519455023 0) (0.0002058180847 0.06519568197 0) (0.0002054307208 0.06511709138 0) (0.0002064082694 0.06535292274 0) (0.0002921038971 0.06535175974 0) (-1.511160446e-05 0.06534313148 0) (4.229382117e-05 0.06535325857 0) (1.438066554e-05 0.0654535825 0) (-0.0009032720315 0.07362952247 0) (-0.0008372776342 0.07363049838 0) (-0.0008314089216 0.07370795666 0) (-0.0009024388924 0.07370812438 0) (-0.0008939045193 0.07355001607 0) (-0.000842610911 0.07355816312 0) (-0.0008652935215 0.0755403153 0) (-0.0007820957563 0.07554056001 0) (-0.0007798352781 0.07562355601 0) (-0.0008632400341 0.07562308851 0) (-0.0005359451874 0.07554075846 0) (-0.0005087227432 0.0756077899 0) (-0.0006118944292 0.0756260398 0) (-0.0006167627947 0.07554414352 0) (-0.0006008521643 0.07588230084 0) (-0.0006062424449 0.07579533815 0) (-0.0006212922595 0.07546238315 0) (-0.0005610230007 0.07547221556 0) (-0.0008668667108 0.07545729391 0) (-0.0007832755238 0.07545796105 0) (0.0003021254777 0.06637306602 0) (0.0003009005861 0.06629467088 0) (0.0003828612082 0.06629443812 0) (0.0003812188889 0.06637352414 0) (0.000384464879 0.06605784515 0) (0.0003825302405 0.06613699155 0) (0.0002970829207 0.06613805078 0) (0.0006348251407 0.06605609471 0) (0.000635582333 0.06613466804 0) (0.0005522056887 0.06613526067 0) (0.0005519514683 0.06605655259 0) (0.0001951156513 0.06615768433 0) (0.0002451753495 0.06636319778 0) (0.0002285723158 0.06629416349 0) (-0.0003865202999 0.06386253871 0) (-0.0003876520858 0.06378412833 0) (-0.0003061190698 0.06378421913 0) (-0.0003073352094 0.06386334573 0) (-0.0003901737658 0.06354906561 0) (-0.000307919566 0.06354884528 0) (-0.0003062182381 0.06362690195 0) (-0.0003872717829 0.06362674941 0) (-6.206470708e-05 0.06354843852 0) (-6.052224931e-05 0.06362654004 0) (-0.0001419476473 0.06362650672 0) (-0.0001435319444 0.06354842007 0) (-0.0004637851699 0.06362516555 0) (-0.0004706677372 0.06354869052 0) (-0.0004460453769 0.06385289314 0) (-0.0004664873218 0.06378792135 0) (-0.0003972999238 0.06323614214 0) (-0.0003973872232 0.06331495466 0) (-0.0004809595601 0.06331547589 0) (-0.0004802876223 0.06323654259 0) (-0.0004801889611 0.06347289013 0) (-0.0003950991819 0.06347193546 0) (-0.0007398163888 0.06293872609 0) (-0.0006430242133 0.06292087805 0) (-0.000640986023 0.06299915074 0) (-0.0007186444105 0.06300254193 0) (-0.0004006693642 0.0629220698 0) (-0.0003991635928 0.06300043376 0) (-0.0004803450791 0.06300025302 0) (-0.0004816126316 0.06292179993 0) (-0.0004804685967 0.06315789225 0) (-0.0003976640908 0.06315753683 0) (-0.0004101557307 0.06261025591 0) (-0.0004075784267 0.06268795663 0) (-0.0004889366435 0.06268790827 0) (-0.0004914880499 0.06261016365 0) (-0.0004834168661 0.06284345271 0) (-0.0004026217309 0.06284378192 0) (-0.000720028322 0.0628403111 0) (-0.0006443355649 0.06284241071 0) (0.0007496170834 0.0748724701 0) (0.0007777910821 0.0749749636 0) (0.0007163529729 0.0749850313 0) (0.001032525725 0.07489207833 0) (0.001034124866 0.07497246325 0) (0.0009468848182 0.07497255531 0) (0.0009440592775 0.07489196812 0) (0.001037091242 0.0752141892 0) (0.0009515140798 0.07521441916 0) (0.0009504018583 0.07513389524 0) (0.001036404021 0.07513382385 0) (0.001026215005 0.07457252617 0) (0.001029227637 0.07465260366 0) (0.0009428872424 0.07465323099 0) (0.0009367884836 0.07457218408 0) (0.0009432041137 0.07481194191 0) (0.001031541649 0.07481215065 0) (0.001037515503 0.07529424622 0) (0.00095194995 0.07529507035 0) (0.001037274064 0.07553609311 0) (0.000952943886 0.07553695194 0) (0.0009524087488 0.07545666997 0) (0.001036930024 0.07545605152 0) (0.0007786896662 0.07545695194 0) (0.0007799462424 0.07553889782 0) (0.001062883918 0.07267189362 0) (0.001065448132 0.07259259698 0) (0.001135603654 0.07259195498 0) (0.00113455204 0.07267115322 0) (0.001071866119 0.07233487865 0) (0.001119848685 0.07243357205 0) (0.001069534729 0.07244174537 0) (0.001356809871 0.07243133659 0) (0.001273312979 0.07243201748 0) (0.00128512743 0.07290671076 0) (0.001365888501 0.0729059624 0) (0.001051722145 0.07290902229 0) (0.001125087332 0.07290831322 0) (0.00113203149 0.07275024563 0) (0.00105958812 0.07275093342 0) (0.001020799141 0.07014145171 0) (0.001013043807 0.07006313326 0) (0.001093785286 0.07006289482 0) (0.001098437941 0.07014157086 0) (0.00108180571 0.06990672742 0) (0.0009958607911 0.06990765919 0) (0.001337381486 0.06990434183 0) (0.001253269236 0.06990492525 0) (0.0009196529324 0.06990822874 0) (0.0009092785969 0.06983128392 0) (0.0009496881891 0.07014129958 0) (0.0009396273465 0.07006320184 0) (0.0009273552513 0.06959066753 0) (0.0009304992043 0.06951117732 0) (0.0008989629746 0.06975760126 0) (0.001024724773 0.07022049717 0) (0.0009584560354 0.07021945044 0) (0.001254110049 0.07037878084 0) (0.001339857529 0.07037793791 0) (0.0009780219247 0.07040052721 0) (0.001080502043 0.07038071515 0) (0.001099249743 0.07022084291 0) (0.000639746313 0.06731444181 0) (0.0005514786779 0.06731603136 0) (0.0005533178281 0.06723697304 0) (0.0006402936338 0.06723559682 0) (0.0006426575443 0.06739279554 0) (0.000557678956 0.06739361831 0) (0.0007269709854 0.06731323855 0) (0.0007283547914 0.06739205492 0) (0.0009798199194 0.06731101847 0) (0.0009806480037 0.06738992628 0) (0.0008976480458 0.06739044334 0) (0.0008967787571 0.06731147757 0) (0.0009828126529 0.06762576355 0) (0.0008985779847 0.06762653721 0) (0.0008984879457 0.06754797359 0) (0.0009820084589 0.06754733622 0) (0.0007381518586 0.06794113241 0) (0.0007368413659 0.06801998296 0) (0.0009868076179 0.06793972938 0) (0.0009871775045 0.06801832009 0) (0.0009031951954 0.06801894626 0) (0.0009033495194 0.06794033717 0) (0.0009891641584 0.06825491605 0) (0.0009042757345 0.06825551969 0) (0.0009024919391 0.06817677906 0) (0.0009879481605 0.06817614215 0) (0.0009836479623 0.06770426348 0) (0.0008991339768 0.06770508287 0) (0.0009022004684 0.06786195605 0) (0.0009859189507 0.06786130267 0) (0.0007336833595 0.0678633435 0) (3.231695547e-05 0.06480469217 0) (3.257856406e-05 0.06488341475 0) (-5.436653613e-05 0.06488490728 0) (0.0002872651349 0.06480172854 0) (0.0002883274361 0.06488019769 0) (0.0002044706986 0.06488086664 0) (0.0002037835212 0.06480230737 0) (0.0002055678572 0.0650383222 0) (0.0002900827688 0.06503742998 0) (-0.001949487908 0.0626613018 0) (-0.001949854111 0.06258301693 0) (-0.001869428176 0.0625826497 0) (-0.001869076431 0.06266094924 0) (-0.001867903637 0.0624259907 0) (-0.001949436039 0.06242642425 0) (-0.001627125176 0.06242492178 0) (-0.001705261306 0.06242511212 0) (-0.001700148489 0.06297317503 0) (-0.001703137017 0.0628948073 0) (-0.001621641238 0.06289434489 0) (-0.001946928755 0.06297471005 0) (-0.001947602613 0.06289617981 0) (-0.001866332475 0.06289573361 0) (-0.001865250922 0.06297424631 0) (-0.001868317839 0.06273911473 0) (-0.001948976592 0.06273951279 0) (-0.0008602771373 0.07425693704 0) (-0.0007829166305 0.07425624257 0) (-0.0007746419647 0.07433387267 0) (-0.0008549704662 0.07433541897 0) (-0.0008668804315 0.0741786102 0) (-0.0007907457127 0.07417799748 0) (-0.0009487173251 0.07425803263 0) (-0.0009533573733 0.07417948758 0) (-0.001211055138 0.07426109376 0) (-0.001212212589 0.07418215922 0) (-0.001127175319 0.07418139428 0) (-0.001125377567 0.07426025133 0) (-0.001216093293 0.07394588293 0) (-0.001133444548 0.0739453393 0) (-0.001131359879 0.07402419425 0) (-0.001214794569 0.07402481644 0) (-0.001209418701 0.07457739991 0) (-0.001209475288 0.07449842968 0) (-0.0011243905 0.07449778965 0) (-0.001125237206 0.07457712476 0) (-0.001124156641 0.07433930193 0) (-0.001210152959 0.07434017581 0) (-0.000945542316 0.07433680682 0) (-0.0009771295016 0.07362943405 0) (-0.0009676033441 0.07354991192 0) (-0.001218180104 0.07363053408 0) (-0.001216964916 0.07355159683 0) (-0.00113268123 0.0735509539 0) (-0.001135799131 0.07363002153 0) (-0.00121337758 0.07331498941 0) (-0.001123628665 0.07331400081 0) (-0.00112513268 0.07339267799 0) (-0.001213926598 0.07339360138 0) (-0.001217285621 0.0738667593 0) (-0.001135316819 0.07386624975 0) (-0.001137055127 0.07370875516 0) (-0.001218581491 0.0737092178 0) (-0.0009789591216 0.07370820099 0) (-0.0008652858784 0.07489316498 0) (-0.0009525485845 0.07489414567 0) (-0.0009557249518 0.07481458497 0) (-0.0008709398393 0.07481399519 0) (-0.001206881097 0.07489524922 0) (-0.001207786751 0.07481548991 0) (-0.001124467898 0.07481496179 0) (-0.001123266407 0.0748947437 0) (-0.001125727966 0.07465633639 0) (-0.001209113908 0.07465665235 0) (-0.0007776064449 0.07489180693 0) (-0.0007724838567 0.07497081164 0) (-0.0008622577566 0.07497256946 0) (-0.0007868805831 0.07481333496 0) (0.001026200927 0.07393759323 0) (0.001033858677 0.07385951209 0) (0.001117237704 0.07385884662 0) (0.001113052074 0.07393749964 0) (0.001122349957 0.07370063215 0) (0.001046539317 0.07370214555 0) (0.001367445247 0.07369772572 0) (0.001284304178 0.0736986662 0) (0.0009794328426 0.07370426555 0) (0.0009881334354 0.07363238156 0) (0.0009473342175 0.07393726454 0) (0.0009587262265 0.07386035055 0) (0.001038322169 0.07425741332 0) (0.001034398563 0.07433584595 0) (0.0009516770529 0.07433679794 0) (0.0009605842982 0.07425929031 0) (0.0009349123377 0.07449216239 0) (0.001025427618 0.07449280679 0) (0.001023086307 0.07401631127 0) (0.0009359052642 0.07401110556 0) (0.0009602910644 0.07417982513 0) (0.001036130641 0.07417768523 0) (0.001370064987 0.07425345348 0) (0.00128678958 0.07425414732 0) (0.001286070508 0.07417440851 0) (0.001369542216 0.07417366954 0) (0.001118073114 0.07417636022 0) (0.001119852335 0.07425587284 0) (0.001111608438 0.07401646768 0) (-0.000937069217 0.07174508537 0) (-0.001007252575 0.07174530518 0) (-0.001005915124 0.07166655639 0) (-0.0009406398382 0.07166718797 0) (-0.001236337029 0.07174612873 0) (-0.00123445164 0.07166741964 0) (-0.001154760278 0.07166698493 0) (-0.001157941576 0.07174574716 0) (-0.001222155953 0.07143159358 0) (-0.00113104204 0.07143063873 0) (-0.001138395417 0.07150931482 0) (-0.001226064359 0.07151011349 0) (-0.00123365159 0.0720594778 0) (-0.001234865545 0.07198118453 0) (-0.001155642943 0.07198078237 0) (-0.001153836538 0.07205902762 0) (-0.001158287223 0.07182428482 0) (-0.001236580832 0.07182465108 0) (-0.0009332956701 0.07182344738 0) (-0.001005137589 0.07182372297 0) (-0.001222526933 0.07111805287 0) (-0.001224301826 0.07103973457 0) (-0.001134138754 0.07103881578 0) (-0.00113160662 0.071117114 0) (-0.001230051624 0.07080520513 0) (-0.001142199383 0.070804376 0) (-0.00113944206 0.07088239585 0) (-0.001228083583 0.0708832453 0) (-0.001220160985 0.0713531313 0) (-0.001127745338 0.07135212328 0) (-0.00112932208 0.07119541403 0) (-0.001220984963 0.07119638744 0) (-0.0008766491567 0.07299762464 0) (-0.0009531262438 0.07299822528 0) (-0.0009569925783 0.07291992221 0) (-0.0008807731741 0.072919338 0) (-0.001217410653 0.07300079082 0) (-0.001218844133 0.0729223535 0) (-0.001131765153 0.07292154456 0) (-0.001129589104 0.07299994734 0) (-0.001223086981 0.07268674984 0) (-0.001138148218 0.07268605844 0) (-0.001136072846 0.07276463673 0) (-0.001221695921 0.07276536224 0) (-0.001213724878 0.07323650049 0) (-0.00112397305 0.07323551187 0) (-0.001127436965 0.07307846681 0) (-0.001215996609 0.07307935936 0) (-0.0008723500489 0.07307595369 0) (-0.0009491677297 0.07307658595 0) (-0.0009079565188 0.07237127561 0) (-0.0009821803173 0.07237168506 0) (-0.0009857164652 0.07229332132 0) (-0.0009118525124 0.07229289992 0) (-0.00122844 0.07237330368 0) (-0.001229773198 0.07229483651 0) (-0.001148103072 0.07229431456 0) (-0.001146117603 0.07237274786 0) (-0.001151963957 0.07213735978 0) (-0.00123238478 0.07213782893 0) (-0.001224445256 0.07260823915 0) (-0.001140168854 0.07260759627 0) (-0.00114413195 0.07245100637 0) (-0.001227109637 0.07245158153 0) (-0.0009041091465 0.07244937491 0) (-0.0009786571996 0.07244985955 0) (0.001056187505 0.07140498059 0) (0.001052125229 0.07132557199 0) (0.001124251578 0.0713253526 0) (0.001127525787 0.07140454846 0) (0.001116195833 0.07116758359 0) (0.001043438559 0.0711679678 0) (0.001353774294 0.07116650884 0) (0.001273989403 0.07116690053 0) (0.001267989397 0.07164121377 0) (0.001351182743 0.0716406516 0) (0.001064941562 0.07163463796 0) (0.001115100812 0.07164202132 0) (0.001068142688 0.07174099831 0) (0.001129275399 0.0714835952 0) (0.001059330713 0.07148398806 0) (-0.001229470039 0.0692372654 0) (-0.001232391968 0.06915904284 0) (-0.001144436426 0.06915819838 0) (-0.001140702019 0.0692363859 0) (-0.001241625982 0.06892448052 0) (-0.001156069903 0.06892375549 0) (-0.001152143246 0.06900194161 0) (-0.001238507435 0.06900270165 0) (-0.001227140628 0.06955112684 0) (-0.001224315308 0.06947248373 0) (-0.001132209061 0.06947139057 0) (-0.001135293521 0.06955005013 0) (-0.001137089529 0.06931463256 0) (-0.001226787893 0.06931556253 0) (-0.001175306666 0.06853247247 0) (-0.001171527004 0.06861067422 0) (-0.001186822885 0.06829813068 0) (-0.001182927345 0.06837624419 0) (-0.001244750779 0.06884620117 0) (-0.001160001246 0.06884552572 0) (-0.001167738179 0.06868893416 0) (-0.001250922573 0.06868952539 0) (-0.001238492914 0.07049249516 0) (-0.001240665096 0.07041422344 0) (-0.001157278257 0.07041363073 0) (-0.001154193314 0.07049183754 0) (-0.001247201927 0.070179423 0) (-0.001166585835 0.07017896699 0) (-0.001163481853 0.07025718823 0) (-0.001245029745 0.07025769472 0) (-0.001232096855 0.07072716553 0) (-0.001145106612 0.07072637181 0) (-0.001151128761 0.0705700445 0) (-0.001236333946 0.0705707524 0) (-0.00125248824 0.06986613657 0) (-0.001249656459 0.0697875808 0) (-0.001172617555 0.06978732563 0) (-0.001175587592 0.06986589697 0) (-0.001146445753 0.06962908888 0) (-0.001234073597 0.06962993095 0) (-0.001249313045 0.07010113627 0) (-0.001169638949 0.07010073082 0) (-0.00117481597 0.06994425171 0) (-0.001252540642 0.06994454101 0) (0.000989569231 0.06856973823 0) (0.0009890527075 0.06864861214 0) (0.000901489216 0.06864989069 0) (0.0009033204477 0.06857074504 0) (0.0009928332002 0.06888392786 0) (0.0009104409714 0.06888429485 0) (0.0009078319647 0.06880604088 0) (0.0009921398789 0.06880532494 0) (0.0009905950437 0.06833339708 0) (0.0009068669743 0.06833393401 0) (0.0009067823277 0.06849131078 0) (0.0009908061595 0.06849078626 0) (0.0006944233086 0.06848117607 0) (0.0007488066394 0.06849078626 0) (0.0007143169164 0.0685916533 0) (0.000904649248 0.06927900817 0) (0.0008959962558 0.06920162842 0) (0.0009240007529 0.06943344689 0) (0.0009903993226 0.0689631216 0) (0.0009067664518 0.06896373066 0) (0.0008923921081 0.06912352735 0) (0.0009834558578 0.0691216844 0) (-0.001289522037 0.06641866685 0) (-0.001286452691 0.06649693204 0) (-0.001363758228 0.06649717459 0) (-0.001364846215 0.06641877845 0) (-0.001357943288 0.06665364905 0) (-0.001278178681 0.06665327207 0) (-0.001599432461 0.06665492706 0) (-0.001518366331 0.06665446778 0) (-0.00120525953 0.06665291582 0) (-0.00120050231 0.06673095023 0) (-0.001219533735 0.06641846303 0) (-0.001214787 0.06649665773 0) (-0.00118728588 0.06696475529 0) (-0.00118300531 0.06704293883 0) (-0.001195826891 0.0668087522 0) (-0.001289295287 0.06634020288 0) (-0.001224194533 0.06634106877 0) (-0.001511247829 0.06618354007 0) (-0.001597279844 0.06618431226 0) (-0.001234964485 0.06616220011 0) (-0.001336838331 0.0661818621 0) (-0.001362209913 0.06634018041 0) (-0.001228975127 0.06766922434 0) (-0.001232026513 0.0677478254 0) (-0.001323415055 0.06774886964 0) (-0.001320630092 0.06767028508 0) (-0.001339029641 0.06790656342 0) (-0.001258583846 0.06790612322 0) (-0.001588753122 0.06790835291 0) (-0.001505692524 0.06790776258 0) (-0.001185644884 0.06790608725 0) (-0.001196270205 0.06798507846 0) (-0.001148610187 0.06766788169 0) (-0.001144511421 0.06774190093 0) (-0.001190663506 0.0682199585 0) (-0.001196893424 0.06806350163 0) (-0.001170142998 0.06727751842 0) (-0.001165831843 0.06735570174 0) (-0.00117872474 0.06712112237 0) (-0.001230725262 0.06759090585 0) (-0.001152898377 0.06759025168 0) (-0.001161520688 0.06743388505 0) (-0.001237910601 0.06743445593 0) (-0.001504040921 0.06743715143 0) (-0.001590038088 0.0674379088 0) (-0.001326096047 0.06743533119 0) (-0.001321125203 0.06759189919 0) (0.0002717350606 0.06647362647 0) (0.000640026034 0.06668505168 0) (0.0005552547898 0.06668594577 0) (0.0005534716878 0.06660770034 0) (0.0006390356284 0.06660665483 0) (0.0003213655123 0.06668499823 0) (0.0003044178641 0.06661104343 0) (0.0003815153071 0.06660982654 0) (0.0003910150106 0.06668647186 0) (0.0003754122338 0.06645358721 0) (0.0003932951527 0.06676456801 0) (0.0003373203057 0.06675461984 0) (0.0006400518837 0.0667636012 0) (0.0005548124099 0.06676460065 0) (-0.0004122000266 0.06396274443 0) (-0.0001352666131 0.06409718828 0) (-5.21438508e-05 0.06409671402 0) (-0.0003712108667 0.0640963431 0) (-0.000299385353 0.0640973348 0) (-0.0003103073537 0.06394306773 0) (-0.001611087018 0.06414799013 0) (-0.001527374149 0.06414736592 0) (-0.001543889523 0.0636781688 0) (-0.001620301976 0.06367824462 0) (-0.001299632073 0.06516481447 0) (-0.001294525916 0.06524296286 0) (-0.001367321376 0.06524330365 0) (-0.001371989252 0.0651651375 0) (-0.001357876817 0.0653995769 0) (-0.001284235592 0.06539917169 0) (-0.001605892642 0.06540125201 0) (-0.001523054773 0.06540067787 0) (-0.001535047731 0.06493127303 0) (-0.001613235868 0.06493152201 0) (-0.001314802296 0.06493112559 0) (-0.001384345777 0.06493120966 0) (-0.001376556315 0.06508701431 0) (-0.001304698799 0.06508668035 0) (-0.0001393861154 0.0648912214 0) (-0.001716732796 0.06164191247 0) (-0.001640730605 0.0616421018 0) (-0.001954895316 0.06164278756 0) (-0.001874498827 0.06164237685 0) (-0.001918839853 0.06139571897 0) (-0.001835915744 0.06139438682 0) (-0.001859176797 0.06148231108 0) (-0.00194064829 0.06148310832 0) (-0.001106379448 0.06136496864 0) (-0.00109568909 0.06143950792 0) (-0.001189197746 0.06144383018 0) (-0.001223965435 0.06137792859 0) (-0.001164083325 0.0615915998 0) (-0.001085514117 0.06159287739 0) (-0.001574345968 0.06164246313 0) (-0.001071493374 0.06198712599 0) (-0.001094112568 0.06192378678 0) (-0.0009971471827 0.06190592291 0) (-0.0009940686245 0.06198385302 0) (-0.001002170594 0.06167093666 0) (-0.0009997019923 0.06174871101 0) (-0.0007598696045 0.06167233272 0) (-0.0007570625511 0.06175038134 0) (-0.0008371947756 0.06174947927 0) (-0.0008394111528 0.06167133896 0) (-0.001541148307 0.06289397717 0) (-0.000777212075 0.06282916284 0) (-0.0007452860208 0.06229766747 0) (-0.0008277005488 0.06229777244 0) (-0.0008284138359 0.06221922793 0) (-0.0007461391256 0.06221912397 0) (-0.000989707987 0.06206103099 0) (-0.001048761264 0.06205077024 0) (-0.000745070092 0.06237631756 0) (-0.0008282889394 0.06237677795 0) (-0.001556233481 0.0624253668 0) (0.003032193015 0.07614343602 0) (0.005306949357 0.07563580067 3.550770789e-13) (0.004696472876 0.07643744741 3.587824482e-13) (0.004627479591 0.07712548814 3.532729664e-13) (0.004672053355 0.07726635222 3.56770169e-13) (0.0001272237301 0.06558855136 0) (0.0001388716674 0.06566437995 0) (6.973530763e-05 0.06566256759 0) (5.07034312e-05 0.0655896184 0) (0.0001436337016 0.06574187542 0) (8.75353188e-05 0.06573156403 0) (0.002895402026 0.06354207744 0) (0.005047059539 0.06164308695 3.464173393e-13) (0.004525208662 0.06336102867 3.56048524e-13) (0.004486346484 0.06235973539 3.538835891e-13) (0.004572421529 0.06497742615 3.581163144e-13) (0.0001160249124 0.06584199323 0) (-0.0001453128601 0.06347033485 0) (-6.406742367e-05 0.06347045687 0) (-0.0003106661615 0.0634710584 0) (-0.000314388066 0.06323572768 0) (-0.0003135640898 0.06331427139 0) (0.001448307164 0.0655832272 0) (0.001593250545 0.0644860296 0) (0.001599187142 0.06479920934 0) (0.001270264007 0.06480035214 0) (0.002583652058 0.0644823417 0) (0.002589384648 0.06479550836 0) (0.002259420586 0.064796717 0) (0.002253702879 0.06448359393 0) (-7.972306797e-05 0.07624952923 0) (-0.0001818812503 0.07624834769 0) (-0.0001941936853 0.07616843405 0) (-8.478321205e-05 0.076171749 0) (-0.0004812752265 0.07622812689 0) (-0.0004881493681 0.07614620881 0) (-0.0003885141559 0.07615755041 0) (-0.0003804798373 0.0762385774 0) (-0.0004144980951 0.07598758347 0) (-0.0005038952858 0.07597886884 0) (0.0003417621863 0.07597455117 0) (0.0002486639966 0.07598423638 0) (0.0003209479047 0.07622945215 0) (0.0002272715547 0.07623514766 0) (0.0002288885513 0.07615478447 0) (0.0003244560667 0.07614777306 0) (2.849510032e-05 0.07616807365 0) (2.8806557e-05 0.07624662109 0) (0.002699302663 0.07709882282 0) (0.002363251302 0.07710815798 0) (0.00236528247 0.07678906649 0) (0.002699473899 0.07678233601 0) (0.001691257251 0.07680975061 0) (0.001683025283 0.07713338351 0) (0.001534141168 0.07600946247 0) (0.001371803235 0.07488993961 0) (0.001288412564 0.07489080617 0) (0.001288106569 0.07481158869 0) (0.001371521268 0.07481062146 0) (0.001118533523 0.07481238084 0) (0.001119292332 0.07489217616 0) (0.001115033637 0.0745723964 0) (0.001116535786 0.07465246305 0) (-0.001738939718 0.07018258172 0) (-0.001740037399 0.07002585443 0) (-0.001575328415 0.07002475688 0) (-0.002234027599 0.07018592506 0) (-0.00223502333 0.07002919702 0) (-0.002069935779 0.07002808215 0) (-0.002068910919 0.07018480998 0) (-0.00223801137 0.06955889639 0) (-0.002072967512 0.06955778184 0) (-0.002071956581 0.06971459716 0) (-0.002237015003 0.06971571182 0) (-0.002230003953 0.07081242909 0) (-0.002231012233 0.07065597788 0) (-0.002065822837 0.0706548477 0) (-0.002064799993 0.07081129881 0) (-0.002067886166 0.07034152324 0) (-0.002233017304 0.07034265299 0) (-0.001572914694 0.07033819531 0) (-0.001737827578 0.07033929435 0) (0.0002829134778 0.06448798379 0) (0.0002841086043 0.06456629175 0) (0.0002021501526 0.06456642253 0) (0.0002012356938 0.06448805427 0) (0.0002033229114 0.06472365906 0) (0.0002860731049 0.06472324578 0) (3.430712216e-05 0.06472537058 0) (0.0006282962089 0.065585179 0) (0.0007918897837 0.06558491979 0) (0.0007840420152 0.0651145089 0) (0.0007867562331 0.06527120986 0) (0.001275929708 0.06511353386 0) (0.001278649009 0.06527013282 0) (0.00111439236 0.06527054251 0) (0.001111754514 0.06511392839 0) (-0.001944371618 0.06328784157 0) (-0.001944721877 0.06320974593 0) (-0.001862141585 0.0632092028 0) (-0.001861441993 0.06328726676 0) (-0.001864154593 0.06305278804 0) (-0.001946109042 0.06305326835 0) (-0.001697116055 0.06305157157 0) (0.001114655434 0.07449266384 0) (0.001118562975 0.07433482519 0) (0.001370251294 0.07433303595 0) (0.001286933225 0.07433367185 0) (-0.002239008586 0.06940196445 0) (-0.002073979292 0.06940085001 0) (-0.002076000731 0.06908727763 0) (-0.002240957203 0.06908839154 0) (-0.001580566324 0.0690839172 0) (-0.001746029529 0.06908504937 0) (-0.00157914897 0.06924054021 0) (-0.00149489015 0.0692398829 0) (-0.001494035193 0.06931828073 0) (-0.001578283818 0.06931893797 0) (-0.001317914489 0.06931657573 0) (-0.001319712898 0.06923822847 0) (-0.001318245272 0.06955215444 0) (-0.001316526525 0.06947356308 0) (-0.00132191543 0.06963078914 0) (-0.001331600365 0.0698665088 0) (-0.001329902722 0.06978801955 0) (-0.001576324146 0.06986802884 0) (-0.001576647398 0.0697896417 0) (-0.001494179357 0.06978908482 0) (-0.001494156024 0.06986748871 0) (-0.001696764401 0.0635998585 0) (-0.001692866325 0.06352112019 0) (-0.001943602713 0.06360142307 0) (-0.001943576845 0.06352297513 0) (-0.001861331427 0.063522449 0) (-0.001861779449 0.06360092915 0) (-0.001860988404 0.063365551 0) (-0.00194380162 0.06336611039 0) (-0.0002016141533 0.06448688068 0) (-0.0002068098838 0.0644097525 0) (-0.0002149801249 0.06433330141 0) (-0.0001310872804 0.06433269045 0) (-4.774648979e-05 0.0643322146 0) (-0.001437644503 0.06328313174 0) (-0.001431776214 0.06336053177 0) (-0.001426125313 0.06343448144 0) (-0.001511476461 0.06344034646 0) (-0.001600881127 0.06344140538 0) (-4.726791151e-05 0.06464657017 0) (-0.0001289881838 0.06464662639 0) (-0.000208138127 0.06465062561 0) (-0.0002267033415 0.06458645579 0) (3.195141872e-05 0.06417489891 0) (3.338574725e-05 0.06425345274 0) (0.0002768956669 0.06417505225 0) (0.0002785191974 0.06425338622 0) (0.0001971098994 0.06425332366 0) (0.0001954308122 0.06417496096 0) (0.0001999727513 0.06440983419 0) (0.0002815777135 0.06440976424 0) (-0.001626149042 0.06187615909 0) (-0.001555122698 0.06187609336 0) (-0.001608184382 0.06312896385 0) (-0.001523685569 0.06312826109 0) (-0.001450082926 0.06312795811 0) (-0.001443522272 0.06320562983 0) (-0.001604666261 0.06218765258 0) (-0.001528250005 0.0621864989 0) (0.0006878085939 0.07537567914 0) (0.0005813208607 0.07535638828 0) (0.0006405274538 0.0677871035 0) (0.0005618780098 0.06778860844 0) (0.0001189107794 0.06511846429 0) (0.0001191411664 0.06519709971 0) (0.0001215594578 0.06527516573 0) (3.897018604e-05 0.06527547588 0) (-3.358682529e-05 0.06527483908 0) (0.0003826167392 0.0656644692 0) (0.0003837078509 0.06574289444 0) (0.0003774626446 0.06542933826 0) (0.0003787580815 0.06550782027 0) (0.0006257582972 0.06542828742 0) (0.0006270476962 0.06550674034 0) (0.0005449507771 0.06550685757 0) (0.0005436193536 0.06542843408 0) (-0.0008982608808 0.07378642518 0) (-0.0008255041368 0.07378596815 0) (0.002034524525 0.07472326419 0) (0.001868901466 0.07472484614 0) (0.002035724445 0.0752000302 0) (0.00186988589 0.07520202153 0) (0.001869515516 0.07504316389 0) (0.002035352543 0.07504096282 0) (0.001537826908 0.07504756757 0) (0.001537781449 0.07520732545 0) (0.0005514593472 0.06597797734 0) (0.0006338387862 0.06597765414 0) (0.000385264163 0.06597899832 0) (0.0003841064705 0.06582163059 0) (-0.0005620082793 0.063236526 0) (-0.0005601184618 0.06331462499 0) (-0.0006197448813 0.06330486364 0) (-0.0006406820633 0.0632402887 0) (-0.0005843463918 0.06341438318 0) (-0.0006972281674 0.0630670988 0) (-0.0006382379695 0.06307709783 0) (-0.0006613898346 0.06317661514 0) (-0.0005611855954 0.06307869233 0) (-0.0005628710489 0.0631580554 0) (0.001361521629 0.07649512746 0) (0.001191313131 0.07650226298 0) (0.001195138835 0.07633998693 0) (0.001363068107 0.07633548099 0) (0.000851498225 0.07635760957 0) (0.0008446087983 0.07652119257 0) (0.0007779464433 0.07595229665 0) (0.0006949138487 0.07505113248 0) (0.0007770799909 0.07505452057 0) (0.0008623709385 0.0750535892 0) (0.000863614147 0.07513389952 0) (0.0008649613464 0.07521488927 0) (0.0008316914908 0.07455326178 0) (0.0008623200732 0.07465500478 0) (0.000804250494 0.07466581989 0) (0.0008603081336 0.07473373664 0) (0.0007864810523 0.07473522102 0) (0.0006425464115 0.06715653549 0) (0.0005592189679 0.06715708406 0) (0.0004817636994 0.06715636641 0) (0.0004800544514 0.06707806219 0) (0.0004710023753 0.06700128252 0) (0.0005112347327 0.06754016125 0) (0.0004968234059 0.0674694797 0) (0.0005660563638 0.06747095637 0) (0.0006459199885 0.06747117584 0) (0.0009762068301 0.06699688964 0) (0.0009771075731 0.06707537453 0) (0.0008946354525 0.06707577123 0) (0.0008937608193 0.06699727159 0) (0.0008959954265 0.06723271509 0) (0.0009788211426 0.06723227212 0) (0.000726814848 0.06723439868 0) (0.0006274641186 0.06811972039 0) (0.0007300628443 0.06809999486 0) (0.0008164298886 0.06809882697 0) (0.00081550591 0.06817795145 0) (0.0008185072566 0.0682564793 0) (-4.722969907e-05 0.0649616572 0) (3.53054075e-05 0.06496144939 0) (0.0001202381038 0.06496052499 0) (0.0001201570544 0.06503939573 0) (-0.0008543468907 0.07441444479 0) (-0.0007662783042 0.07440812302 0) (-0.0007444529229 0.07458486041 0) (-0.0008736004241 0.07410045899 0) (-0.0007980970557 0.07409995283 0) (-0.0009584543954 0.07410119347 0) (-0.001044071008 0.07410200632 0) (-0.001047543816 0.07402354016 0) (-0.001050921057 0.07394479657 0) (-0.0008498262279 0.0734499968 0) (-0.0009527907025 0.07346989979 0) (-0.001040552114 0.07347080109 0) (-0.001033984662 0.07339160638 0) (-0.001031467392 0.07331286356 0) (-0.00105395347 0.07386580286 0) (-0.00105621405 0.07378699288 0) (-0.0009769746849 0.07378669255 0) (-0.00120334077 0.07521538669 0) (-0.001204205252 0.07513508089 0) (-0.001120883486 0.07513455275 0) (-0.001120170996 0.07521498782 0) (-0.001122173695 0.07497478857 0) (-0.001205808595 0.074975319 0) (-0.000950659027 0.07497380896 0) (-0.0008634303992 0.0750527488 0) (-0.0007757547199 0.07505147526 0) (-0.0006721696699 0.07503118615 0) (-0.0007048200688 0.07513421874 0) (-0.000704386617 0.07521453787 0) (-0.0007346056342 0.07465723416 0) (-0.0007235349809 0.07473459339 0) (-0.00079605515 0.07473473554 0) (-0.0008763006326 0.07473488153 0) (-0.0009437325589 0.07159511313 0) (-0.0009943101522 0.07158748521 0) (-0.0009483037656 0.07148882102 0) (-0.001067173987 0.07158763715 0) (-0.001050988527 0.07150853262 0) (-0.001039201473 0.07142966403 0) (-0.0009512068952 0.07142377976 0) (-0.001074809098 0.07205862688 0) (-0.001077378569 0.07198040175 0) (-0.001079780126 0.07190223366 0) (-0.001002093745 0.07190188638 0) (-0.0009295419339 0.07190148911 0) (-0.001048730836 0.07095974604 0) (-0.001052041102 0.07088159913 0) (-0.00097566014 0.07088099918 0) (-0.0009721197573 0.07095914442 0) (-0.0010554378 0.07080358394 0) (-0.0009792317158 0.0708029707 0) (-0.001035430184 0.07135111599 0) (-0.0009545101293 0.07134979843 0) (-0.001036450857 0.07127276306 0) (-0.0009579803341 0.07127208964 0) (-0.0008849927859 0.07284112489 0) (-0.0009608749335 0.07284161925 0) (-0.001046883858 0.07284236214 0) (-0.001049921191 0.07276389281 0) (-0.001052830782 0.07268536429 0) (-0.001032235387 0.07323440683 0) (-0.001034627202 0.0731559765 0) (-0.0009451504278 0.07315501901 0) (-0.0008677979172 0.07315442655 0) (-0.000915483251 0.07221434752 0) (-0.0009891019925 0.07221483996 0) (-0.001069528536 0.07221532372 0) (-0.001072186772 0.07213690989 0) (-0.001055656614 0.07260693711 0) (-0.001058430622 0.07252862608 0) (-0.0009752375949 0.07252802023 0) (-0.0009004699383 0.07252749029 0) (-0.00132601887 0.0690035283 0) (-0.001328205616 0.06892525669 0) (-0.001321736524 0.06915995567 0) (-0.001579684649 0.06916218375 0) (-0.001495775162 0.06916155811 0) (-0.001501537075 0.06869136507 0) (-0.001584181238 0.06869193781 0) (-0.001334744569 0.06869016496 0) (-0.001330398507 0.06884694143 0) (-0.001326854254 0.07025821778 0) (-0.001328278147 0.07017989692 0) (-0.001322556677 0.07049313649 0) (-0.00132398629 0.07041483023 0) (-0.001571686145 0.07049489253 0) (-0.001572285908 0.07041653653 0) (-0.001489731938 0.07041597902 0) (-0.00148901566 0.07049433417 0) (-0.001078282571 0.07033486986 0) (-0.001082179992 0.0702566981 0) (-0.001008268189 0.07025624722 0) (-0.001004054827 0.07033440212 0) (-0.001086092084 0.07017851188 0) (-0.001012513592 0.07017809256 0) (-0.001059123904 0.07072562911 0) (-0.0009833145778 0.07072513528 0) (-0.00106288961 0.07064754378 0) (-0.0009874111066 0.07064702323 0) (-0.001088713817 0.06970831054 0) (-0.001043755166 0.06960937724 0) (-0.001037816811 0.0697161983 0) (-0.001089989505 0.07010034012 0) (-0.001016760558 0.07009992334 0) (-0.001093814211 0.07002215326 0) (-0.001021004505 0.07002176867 0) (-0.001493809469 0.06994587567 0) (-0.001575899049 0.06994640067 0) (-0.001331684809 0.06994491347 0) (-0.001329653977 0.07010157571 0) (0.0008166612291 0.06872939316 0) (0.0008250474531 0.06880654181 0) (0.0007510579001 0.06880671651 0) (0.000738101978 0.06873088288 0) (0.0008321500845 0.0688840348 0) (0.0007640108033 0.0688825356 0) (0.0008236137028 0.06833446748 0) (0.0008271270211 0.06841249639 0) (0.0007496502529 0.06841202649 0) (0.0006816592098 0.06841048252 0) (0.000830061382 0.06896322602 0) (0.0007759888307 0.0689538903 0) (0.0007937525716 0.06906410631 0) (0.001245926757 0.06911809795 0) (0.001329465066 0.06911750414 0) (0.00107322799 0.0691200839 0) (0.001077124698 0.0688833577 0) (0.001075934163 0.06896228021 0) (-0.00194248331 0.06391513311 0) (-0.001942952418 0.0638367179 0) (-0.00186176956 0.0638362869 0) (-0.001861242195 0.06391470168 0) (-0.001862096392 0.06367940834 0) (-0.001943497608 0.0636798555 0) (-0.001699803499 0.06367854686 0) (-0.001692826338 0.06422661076 0) (-0.001694515988 0.0641485977 0) (-0.001940479936 0.06422822497 0) (-0.001940946816 0.06415011561 0) (-0.001859254525 0.06414963721 0) (-0.001858612978 0.06422773072 0) (-0.001860612986 0.06399310116 0) (-0.001941985073 0.0639935481 0) (-0.001461044466 0.06391298156 0) (-0.00145560709 0.06399101102 0) (-0.00145007984 0.06406898156 0) (-0.001531626594 0.06406944435 0) (-0.001613946397 0.06406995646 0) (-0.001622242101 0.06375683759 0) (-0.001545487492 0.06375674471 0) (-0.001470470911 0.06375679556 0) (-0.001466208243 0.06383492097 0) (-0.0001197658707 0.06496096198 0) (-0.001636674973 0.06156299821 0) (-0.001712736588 0.0615626491 0) (-0.001791080988 0.06156284095 0) (-0.001778113743 0.06148142943 0) (-0.001752689284 0.06139257181 0) (-0.001309746915 0.06137890286 0) (-0.001283851792 0.06145927397 0) (-0.001356324227 0.06136957082 0) (-0.00157693332 0.0615635827 0) (-0.0008416513063 0.06159353382 0) (-0.0007624056265 0.06159450061 0) (-0.001003705967 0.06159290791 0) (-0.001021572246 0.06136381212 0) (-0.001011770786 0.06143869286 0) (-0.001487896688 0.06266038718 0) (-0.001481565649 0.06273792948 0) (-0.001475517024 0.06281569232 0) (-0.001546738608 0.06281594882 0) (-0.001625979641 0.06281622003 0) (-0.0007287992413 0.06276473829 0) (-0.0007996143895 0.06276340423 0) (-0.0008822122337 0.06252213732 0) (-0.0009045362522 0.06245832988 0) (-0.0008261309542 0.06245470021 0) (-0.0007439090999 0.06245453838 0) (-0.001635198003 0.06250380701 0) (-0.001563996406 0.06250420609 0) (-0.00150085368 0.06250540667 0) (-0.001494474211 0.06258259906 0) (-0.0006626700029 0.06229742994 0) (-0.0006616669137 0.06237576843 0) (-0.0004203172467 0.06229853432 0) (-0.0004178031773 0.06237635203 0) (-0.0004980177538 0.06237574186 0) (-0.0005003877421 0.06229790853 0) (-0.0004937264857 0.06253199437 0) (-0.000412926769 0.06253235268 0) (0.0001175774273 0.06543357587 0) (0.0001182061351 0.06551210644 0) (3.176494541e-05 0.06551869309 0) (0.0002116738446 0.06558776156 0) (0.000296538831 0.06558693962 0) (-0.0005268834618 0.07571446312 0) (-0.0004545294357 0.07572150715 0) (-0.0003253170774 0.07590121446 0) (0.0003008221701 0.06590090335 0) (0.0002167238765 0.06590160319 0) (0.0001329287317 0.0659075297 0) (0.0001677155772 0.06604726176 0) (0.0001506288235 0.06597840578 0) (0.0006863134921 0.07620118003 0) (0.000598754664 0.07620649892 0) (0.0006021144772 0.07612384942 0) (0.0006885744015 0.07611963529 0) (0.0004214024062 0.07613789393 0) (0.0004172796013 0.07622057374 0) (0.0004311563209 0.07596644616 0) (0.001154125368 0.07219505158 0) (0.00116055657 0.07227394771 0) (0.001072350177 0.07226934664 0) (0.001072896137 0.07219491488 0) (0.00117469674 0.07235319553 0) (0.001151621689 0.07203746062 0) (0.001152149641 0.07211635604 0) (0.001073128162 0.07211697522 0) (0.00107317309 0.07203794453 0) (0.00103639356 0.07314578804 0) (0.001111237135 0.07314508277 0) (0.001194894659 0.07314445896 0) (0.00119103853 0.07322335719 0) (0.001187499586 0.0733022094 0) (0.001201996325 0.07298641935 0) (0.001198626143 0.07306544512 0) (0.0009998541203 0.07061800029 0) (0.001076923977 0.07061739533 0) (0.001164880946 0.07061634695 0) (0.001169177912 0.07069498189 0) (0.001173834617 0.07077361421 0) (0.001162642685 0.07045900166 0) (0.001162111067 0.07053780285 0) (0.001008679928 0.07345530938 0) (0.001096213824 0.07346036688 0) (0.00118631338 0.07346052637 0) (0.00119123636 0.07354032195 0) (0.0011977687 0.07362010582 0) (0.001185350929 0.07338116802 0) (0.001027131232 0.07093173831 0) (0.00110110026 0.07093134527 0) (0.0011830751 0.07093086481 0) (0.001187306237 0.07100966044 0) (0.001191309321 0.07108834121 0) (0.001178518252 0.07085214437 0) (0.001152439155 0.07187951047 0) (0.001151494786 0.0719586351 0) (0.001072718942 0.07195938357 0) (0.001071311544 0.07188072759 0) (0.001170686889 0.07172118578 0) (0.001157843128 0.07180035337 0) (0.001069969618 0.07180606197 0) (-0.001265602658 0.06688714006 0) (-0.001348057591 0.06688769685 0) (-0.001431067213 0.0668882868 0) (-0.001433316452 0.06681023413 0) (-0.001435612191 0.06673219635 0) (-0.001248491762 0.06594551133 0) (-0.001325851131 0.06594616209 0) (-0.00141572228 0.06594716615 0) (-0.001418297365 0.06586897019 0) (-0.001421581097 0.06579086678 0) (-0.001417298296 0.06610395661 0) (-0.001414838831 0.06602547638 0) (-0.0002781726215 0.06440878656 0) (-0.0002983630067 0.06433913753 0) (-0.0002585783092 0.06447638625 0) (-0.0002158108509 0.06417561087 0) (-0.0002169831897 0.06425491194 0) (-0.001429315612 0.06438040746 0) (-0.001434206718 0.06430238858 0) (-0.001359750526 0.06430189005 0) (-0.001354260931 0.06437989 0) (-0.001439256653 0.06422456021 0) (-0.001365222297 0.06422413757 0) (-0.001421976527 0.06453676887 0) (-0.001424849148 0.06445851682 0) (-0.001348738871 0.06445794797 0) (-0.001343207521 0.06453548154 0) (-0.00146287731 0.06359930585 0) (-0.001421109659 0.06350000253 0) (-0.001412852334 0.06360765148 0) (-0.001268720108 0.06563346979 0) (-0.001343617812 0.06563394241 0) (-0.001428885411 0.0656346799 0) (-0.001432632925 0.06555649248 0) (-0.001436383353 0.06547830508 0) (-0.001425176188 0.06571280934 0) (-0.001433780548 0.06469450773 0) (-0.001423893456 0.0646153471 0) (-0.001337930711 0.06460946306 0) (-0.001333259094 0.06467494297 0) (-0.00145706858 0.06485292738 0) (-0.001447853088 0.06477394643 0) (-0.0001891863748 0.0647161326 0) (-0.001863630655 0.06131273266 0) (-0.001778376249 0.06131138353 0) (-0.001851188051 0.06108528048 0) (-0.001767147505 0.06108525105 0) (-0.001765352405 0.06116374399 0) (-0.001849845506 0.06116363106 0) (-0.001518625605 0.06108926722 0) (-0.0015147769 0.06117094953 0) (-0.001596112355 0.06116702668 0) (-0.00159978309 0.06108738219 0) (-0.001706751312 0.06187651304 0) (-0.0017888513 0.06187700898 0) (-0.001791882566 0.06179877265 0) (-0.001794244297 0.06172047318 0) (-0.001075131925 0.06182510093 0) (-0.001134198551 0.06181460724 0) (-0.001441322908 0.06109103468 0) (-0.001446529603 0.06117788073 0) (-0.001189293104 0.06108293625 0) (-0.001191789706 0.06116291696 0) (-0.001279256674 0.06116704957 0) (-0.001274882078 0.06108574433 0) (-0.001226598795 0.06129513048 0) (-0.001136725085 0.06129607813 0) (-0.001463174689 0.06297187164 0) (-0.001456783851 0.06305002524 0) (0.0005032671406 0.07552529457 0) (0.0005334137942 0.0754652619 0) (0.0004089294275 0.07568837544 0) (0.0005165272382 0.07570589584 0) (0.0005174011951 0.07579210262 0) (0.0005183483193 0.07587775631 0) (0.000519905719 0.07562580966 0) (0.0004446978493 0.07563129203 0) (0.0001216020708 0.06535381708 0) (-0.0006099656425 0.07571008982 0) (-0.0006937796691 0.07570782358 0) (-0.0006962772922 0.07562426418 0) (-0.0006991398714 0.07554179109 0) (-0.0006985454665 0.07537641144 0) (-0.0006991871513 0.07529449895 0) (-0.0006149223065 0.07528826897 0) (-0.0005964527462 0.07535640411 0) (-0.000632404593 0.07521490067 0) (-0.0007003994453 0.07545983357 0) (0.0002960024671 0.06621708901 0) (0.0002113800957 0.06622322546 0) (-0.0003881306747 0.06370561124 0) (-0.000486547616 0.06372415568 0) (-0.0005210457388 0.06361446936 0) (-0.0005420591809 0.06354762283 0) (-0.0003974433011 0.06339385434 0) (-0.0004830474916 0.06339497297 0) (-0.0005637212336 0.06347871277 0) (-0.0005626404782 0.06292151612 0) (-0.0005612131422 0.06299990978 0) (-0.0006488808514 0.06276527779 0) (-0.0005674826745 0.06276541326 0) (-0.0005642950182 0.06284312411 0) (0.0008549461552 0.07489166017 0) (0.0008600177461 0.0749732622 0) (0.001031005321 0.07473250518 0) (0.0009443738693 0.07473276612 0) (0.0008545135591 0.07481165855 0) (0.0007677311166 0.07480618631 0) (0.001067808298 0.0725144816 0) (0.001132993077 0.07251288538 0) (0.001205538581 0.07251202206 0) (0.001210341411 0.0725911194 0) (0.001211050309 0.07267026112 0) (0.001192669667 0.07243273586 0) (0.001055974636 0.07283015031 0) (0.001128845562 0.07282937201 0) (0.001207702117 0.07282850643 0) (0.001205032269 0.07290749797 0) (0.001209829323 0.07274940232 0) (0.001004402621 0.06998537474 0) (0.001087777809 0.06998478212 0) (0.001171710281 0.06998411261 0) (0.001175363262 0.0700625192 0) (0.001177876654 0.07014144386 0) (0.0009296471177 0.0699857735 0) (0.000992301485 0.06967171555 0) (0.0008897243161 0.06969160115 0) (0.0008743109716 0.06958152824 0) (0.0008634298725 0.06950959751 0) (0.001018514734 0.07030016993 0) (0.00096624139 0.0702914911 0) (0.001092587071 0.07030056266 0) (0.00117359288 0.07030022034 0) (0.001167279724 0.07037973362 0) (0.001177692679 0.07022078143 0) (0.0004648702879 0.06732245901 0) (0.0004503939216 0.0672568466 0) (0.0004260442589 0.06714648921 0) (0.0004106174865 0.06707657244 0) (0.0003941128843 0.06700245421 0) (0.0004808122376 0.06739471701 0) (0.000819929076 0.06794091556 0) (0.0008191055344 0.06801963148 0) (-0.001054904435 0.07362962175 0) (-0.001048826982 0.07355034322 0) (-0.001056974261 0.07370840501 0) (-0.0006985595957 0.07489027143 0) (-0.000684682537 0.07496419032 0) (-0.0006487118734 0.07514387755 0) (-0.0007116676425 0.07481294889 0) (0.00104200907 0.07378107781 0) (0.001121446078 0.0737799167 0) (0.001202680356 0.07377894641 0) (0.001201074978 0.07385810498 0) (0.001199235615 0.07393713417 0) (0.001202068693 0.07369955638 0) (0.0009699604514 0.07378217055 0) (0.001028812711 0.07441402851 0) (0.0009412574691 0.07441403984 0) (0.0008622485312 0.0744135811 0) (0.0008774757944 0.07433770244 0) (0.0008922618923 0.07426204547 0) (0.0008467333894 0.0744865299 0) (0.001028067707 0.07409652882 0) (0.0009252457966 0.07407800797 0) (0.0009058116222 0.07419041747 0) (-0.001081976065 0.0717454998 0) (-0.001078464475 0.07166669148 0) (-0.001081654983 0.07182398891 0) (-0.001042219615 0.07111623 0) (-0.001045451976 0.07103798056 0) (-0.0009685758253 0.07103737701 0) (-0.0009650434387 0.07111562426 0) (-0.001039113857 0.07119449491 0) (-0.0009615110521 0.07119387151 0) (-0.001040707694 0.07299903788 0) (-0.001043800873 0.07292070005 0) (-0.001037603471 0.07307749216 0) (-0.001063999106 0.07237219352 0) (-0.001066799861 0.07229380986 0) (-0.001061196606 0.07245041695 0) (0.001047790184 0.0712469082 0) (0.001120376949 0.07124651067 0) (0.001198432127 0.0712462044 0) (0.001201343019 0.07132511161 0) (0.001203401926 0.07140422893 0) (0.001195076597 0.07116724218 0) (0.00106243133 0.07156194715 0) (0.001127438844 0.07156260981 0) (0.00119961336 0.07156240462 0) (0.001187656278 0.07164172597 0) (0.001203535213 0.07148333114 0) (-0.001235415422 0.06908087927 0) (-0.00114824188 0.06908005508 0) (-0.001072070432 0.06907948579 0) (-0.001067965059 0.06915761235 0) (-0.001063894427 0.06923576828 0) (-0.001080586924 0.06892324948 0) (-0.0010763255 0.06900140402 0) (-0.001224747185 0.06939398086 0) (-0.00113388701 0.06939298417 0) (-0.001055739711 0.06939232766 0) (-0.001051503421 0.06947003087 0) (-0.001047385297 0.06954410823 0) (-0.001059820459 0.06931398245 0) (-0.00126001648 0.06845480184 0) (-0.001179094643 0.06845432904 0) (-0.001105464038 0.06845386564 0) (-0.001101387687 0.06853200697 0) (-0.001097307999 0.06861020654 0) (-0.001113883451 0.06829775971 0) (-0.001109605186 0.06837582674 0) (-0.001247858416 0.06876787801 0) (-0.001163914081 0.06876723755 0) (-0.001089115627 0.06876673652 0) (-0.001084848773 0.06884503667 0) (-0.001093225186 0.06868843521 0) (-0.00107053714 0.07049122831 0) (-0.001074405539 0.07041304177 0) (-0.0009998690316 0.07041257178 0) (-0.0009956818856 0.07049072687 0) (-0.001242846017 0.07033595178 0) (-0.001160374957 0.07033540944 0) (-0.001066689344 0.07056938587 0) (-0.000991509304 0.07056888206 0) (-0.001100054112 0.06986572558 0) (-0.001099409153 0.0697872877 0) (-0.001033858997 0.06978806293 0) (-0.001029600069 0.06986547467 0) (-0.001242880467 0.06970882153 0) (-0.0011620198 0.06970834918 0) (-0.001251214331 0.07002286258 0) (-0.001172506989 0.07002250787 0) (-0.00109739413 0.06994397918 0) (-0.001025299215 0.06994364349 0) (0.000816818881 0.06857184108 0) (0.0008126181926 0.06865142637 0) (0.0007256358169 0.06865790044 0) (0.0008246879257 0.06849157364 0) (0.000997722406 0.06935568573 0) (0.0009145494505 0.06935624774 0) (0.0008400822153 0.06935662984 0) (0.0008283235241 0.06927959315 0) (0.0008161765805 0.06920324384 0) (0.0008517996736 0.06943340466 0) (0.0009859228376 0.06904263608 0) (0.000897403529 0.06904406724 0) (0.000804377226 0.06913002351 0) (-0.001282448737 0.06657513215 0) (-0.001361131638 0.06657544299 0) (-0.00143997901 0.0665757696 0) (-0.00144150059 0.06649743488 0) (-0.001441646581 0.06641898819 0) (-0.001437888388 0.06665404191 0) (-0.001210021755 0.06657479405 0) (-0.001191563113 0.06688662999 0) (-0.001279098476 0.06626117109 0) (-0.001228524057 0.06626916316 0) (-0.001352017472 0.06626114865 0) (-0.001432488132 0.06626157447 0) (-0.001423937489 0.06618270032 0) (-0.001439024844 0.06634039026 0) (-0.001243113312 0.06782684911 0) (-0.00114089596 0.06780715548 0) (-0.001134979346 0.06791399126 0) (-0.001130998016 0.06798588485 0) (-0.001271278171 0.06814201044 0) (-0.001194239373 0.0681417407 0) (-0.001122450204 0.06814142181 0) (-0.001118165371 0.06821959075 0) (-0.001126732124 0.06806325284 0) (-0.001249772554 0.06719983992 0) (-0.001174442607 0.06719932046 0) (-0.001234100247 0.06751267202 0) (-0.001157209639 0.0675120538 0) (0.0002875239931 0.06653927302 0) (0.0003744061645 0.06653263946 0) (0.0004635528214 0.06653075221 0) (0.0004671492627 0.06660879508 0) (0.0004713730807 0.06668658577 0) (0.0004660148925 0.06637262987 0) (0.0004636731946 0.06645188119 0) (0.000465632101 0.06684506699 0) (0.0004642654437 0.06692400534 0) (0.0003776239799 0.06693049149 0) (0.0003626064561 0.06686497042 0) (0.0004711157742 0.06676525387 0) (-0.0003923307298 0.06402728344 0) (-0.0003082203871 0.06402123811 0) (-0.0002226362558 0.06402010506 0) (-0.0002182725836 0.06409755974 0) (-0.0002237255877 0.06386282423 0) (-0.000224407442 0.06394181586 0) (-0.001383255313 0.06399074628 0) (-0.001377160159 0.06406869813 0) (-0.001389308548 0.06391275044 0) (-0.001444579867 0.06414680666 0) (-0.001371079493 0.06414646073 0) (-0.001471535489 0.06367841382 0) (-0.001407327289 0.06367951926 0) (-0.001401387346 0.06375675854 0) (-0.001395348675 0.06383475449 0) (-0.001289380754 0.06532106728 0) (-0.00136260565 0.06532144033 0) (-0.001443850922 0.06532190091 0) (-0.00144755485 0.06524369861 0) (-0.001451188975 0.06516548124 0) (-0.001440122235 0.06540010304 0) (-0.001309757289 0.06500867726 0) (-0.001380867654 0.06500900578 0) (-0.001457537153 0.06500918544 0) (-0.001459024252 0.06493118547 0) (-0.001454629288 0.06508727702 0) (-0.001794888283 0.06164204469 0) (-0.001092511473 0.06151684014 0) (-0.001173522161 0.06151651251 0) (-0.001250218807 0.06151896452 0) (-0.001223215385 0.06158112116 0) (-0.0009979447879 0.06182700031 0) (-0.0009164128802 0.06182749894 0) (-0.0009152572326 0.06190618588 0) (-0.0009133337049 0.06198431376 0) (-0.001469389298 0.06289371675 0) (-0.0009124076425 0.06214127534 0) (-0.0009096860454 0.06221898959 0) (-0.0009875241047 0.06222230925 0) (-0.00100998449 0.06215937671 0) (-0.0009055822423 0.0622963005 0) (-0.0009647836519 0.0622860991 0) (-0.0009123294775 0.06206260854 0) (-0.0009264215862 0.06239516011 0) (-0.001506690027 0.06243399268 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.048281211e-05 0.0003348319476 1.346145417e-15) (-2.576031655e-06 3.750876103e-05 1.526556659e-16) (-7.018949574e-05 0.001015009644 4.121702979e-15) (0 0 0) (0 0 0) (-4.571528503e-05 0.0008518505597 3.441691376e-15) (-8.979405799e-05 0.002884006976 1.162958618e-14) (-8.51435703e-05 0.002203199041 8.881784197e-15) (-0.0002116109422 0.005443438201 2.209343819e-14) (0 0 0) (0 0 0) (-8.218730558e-05 0.003478586384 1.401656569e-14) (-4.832663473e-06 0.004337722047 1.748601264e-14) (-3.648260901e-05 0.004234415694 1.7069679e-14) (-7.341649688e-05 0.008518002216 3.458344722e-14) (0 0 0) (-6.171768475e-07 7.218241016e-05 2.91433544e-16) (2.706134968e-05 0.004238983262 1.708355679e-14) (8.367140413e-05 0.002898819524 1.168509733e-14) (7.460943613e-05 0.003490918267 1.407207684e-14) (0.0001602890186 0.007429115552 3.015643291e-14) (0 0 0) (1.708721054e-07 8.123530123e-06 2.775557562e-17) (8.067861794e-05 0.002219290595 8.937295348e-15) (2.026147646e-05 0.0003444291841 1.387778781e-15) (4.442793279e-05 0.0008654807638 3.497202528e-15) (0.0001612779916 0.003118040478 1.265654248e-14) (0 0 0) (0 0 0) (2.726421855e-06 4.110905063e-05 1.665334537e-16) (0 0 0) (0 0 0) (1.009186832e-06 1.232336277e-05 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.0002992516541 0.003191113064 1.323940957e-14) (-0.0001471184237 0.001449181871 6.022959909e-15) (-0.0003576471058 0.003498433363 1.462718835e-14) (0 0 0) (-0.00046774491 0.005437103296 2.255140519e-14) (-0.0008667400676 0.01380968732 5.72597525e-14) (-0.0007675959446 0.01088483333 4.513056595e-14) (-0.001131853686 0.01594813961 6.661338148e-14) (-0.0002256823236 0.003241910024 1.325328736e-14) (-0.0009182091805 0.01669227505 6.922240559e-14) (-0.000763361713 0.02403389004 9.965639425e-14) (-0.0008650328076 0.0218961029 9.078848784e-14) (-0.001146476577 0.02886842052 1.205702205e-13) (-0.0003886611179 0.009942388362 4.06341627e-14) (-0.0006189068602 0.02576272214 1.068312105e-13) (-2.375599269e-05 0.02808591476 1.164623953e-13) (-0.000238255908 0.02781702494 1.153521723e-13) (-0.0003035138589 0.03552895897 1.48395185e-13) (-0.000120824128 0.0140357341 5.73707748e-14) (0.000191092975 0.02783070837 1.154076834e-13) (0.000721714257 0.02408571826 9.989231664e-14) (0.0005746533221 0.02580272855 1.06997744e-13) (0.0007493411908 0.0332818473 1.390276783e-13) (0.0002749026061 0.01261231675 5.155598171e-14) (0.0008267679954 0.02195823991 9.106604359e-14) (0.0008429153054 0.01388822346 5.75928194e-14) (0.0008889673023 0.01676822144 6.955547249e-14) (0.001227548984 0.02295736357 9.590939154e-14) (0.0003460050131 0.006636398109 2.713107516e-14) (0.0007495215284 0.01096283808 4.546363286e-14) (0.000296608516 0.003244670291 1.346145417e-14) (0.0004607334627 0.005502739009 2.281508316e-14) (0.0007754369281 0.009189766793 3.838596108e-14) (6.388669549e-05 0.0007745646796 3.16413562e-15) (0.000147407256 0.001487359312 6.161737787e-15) (0 0 0) (0 0 0) (4.168919777e-05 0.0003613866944 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.000327844725 0.002553777332 1.090794122e-14) (-9.761203114e-05 0.0007158336079 3.053113318e-15) (-0.0002419331719 0.001759553705 7.577272143e-15) (0 0 0) (-0.0006486945788 0.00538824777 2.300937219e-14) (-0.001757109029 0.01822937952 7.782663403e-14) (-0.001399833016 0.01340901916 5.72597525e-14) (-0.001835380926 0.0174571074 7.509270983e-14) (-0.0006458964623 0.006274169829 2.639555241e-14) (-0.002062076572 0.02333180159 9.961476088e-14) (-0.002480169357 0.03853383828 1.645072967e-13) (-0.002435039357 0.03364895795 1.436489816e-13) (-0.002891772389 0.03969137762 1.707106678e-13) (-0.001540771053 0.02157138726 9.076073226e-14) (-0.002426609428 0.04305065914 1.837974217e-13) (-0.001734237302 0.05350213355 2.284145095e-13) (-0.002043761962 0.05059916082 2.16021645e-13) (-0.002327384968 0.05725801085 2.462613446e-13) (-0.001443549938 0.03615396916 1.521005544e-13) (-0.001363397819 0.05577403166 2.381150832e-13) (-3.407879828e-05 0.05871810806 2.507161145e-13) (-0.0004979144673 0.05838454678 2.492728246e-13) (-0.0005555420557 0.06495189256 2.793876241e-13) (-0.0003699802917 0.04339280923 1.825761764e-13) (0.000429851799 0.05840191012 2.493560913e-13) (0.001668294059 0.05357281939 2.287892098e-13) (0.001296345047 0.0558268187 2.38392639e-13) (0.001463687795 0.06245636463 2.687017275e-13) (0.0009323773444 0.04097023563 1.724037579e-13) (0.001979540796 0.05068789602 2.164657342e-13) (0.002426651697 0.03866921106 1.651456749e-13) (0.002368443367 0.04317271236 1.843941666e-13) (0.002748292655 0.04967620751 2.137456878e-13) (0.001595443813 0.02958203907 1.244837566e-13) (0.002387398242 0.03379502519 1.44342871e-13) (0.001730839573 0.01834552002 7.835398996e-14) (0.002029215586 0.02348092123 1.002808947e-13) (0.002499221435 0.02866910325 1.233735336e-13) (0.001151330304 0.01353746134 5.696831895e-14) (0.001377304757 0.01345821255 5.74817971e-14) (0.0003760429805 0.002971931934 1.269817584e-14) (0.0006930369878 0.005848398081 2.498001805e-14) (0.001043250143 0.008723056172 3.755329381e-14) (0.0001699829975 0.001462091548 6.147859999e-15) (0.0001345392145 0.001000485073 4.274358645e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0001913577778 0.001214153095 5.342948306e-15) (-1.176229391e-05 7.094345883e-05 3.053113318e-16) (-0.00160188003 0.01204991073 5.305478279e-14) (-0.001038248659 0.007354259491 3.239075674e-14) (-0.001343856303 0.00944515347 4.191091918e-14) (-0.0004846397487 0.00349027727 1.512678871e-14) (-0.002190135508 0.01756564403 7.732703367e-14) (-0.003618149741 0.03635542685 1.599692601e-13) (-0.003257194098 0.03015156977 1.32699407e-13) (-0.003725441703 0.03416536546 1.515593206e-13) (-0.002288758282 0.02161002952 9.364731213e-14) (-0.00393480784 0.04317450363 1.899591595e-13) (-0.004045282326 0.06104398466 2.685351941e-13) (-0.004149661035 0.05568665482 2.449707104e-13) (-0.00453923222 0.0602400503 2.670641486e-13) (-0.00333707307 0.04548627815 1.970923424e-13) (-0.003810539936 0.06566865269 2.88880031e-13) (-0.00249593658 0.07488157288 3.29430927e-13) (-0.00301494275 0.07257105717 3.192446307e-13) (-0.003174496373 0.0756882122 3.355371536e-13) (-0.002588305695 0.06324858972 2.740585536e-13) (-0.001923207014 0.0765275081 3.366751322e-13) (-4.371487973e-05 0.07840531379 3.449879271e-13) (-0.000683984336 0.07821011392 3.441136265e-13) (-0.000707703725 0.07997366442 3.545774785e-13) (-0.0006067055191 0.07057102977 3.058386877e-13) (0.0005966152622 0.07821646267 3.441830154e-13) (0.002416637937 0.07489802756 3.296390938e-13) (0.001838392469 0.07654884793 3.368971768e-13) (0.001912209016 0.07884462115 3.496647416e-13) (0.001612863512 0.06823888336 2.957911693e-13) (0.002941774934 0.07256928567 3.194111642e-13) (0.004008756882 0.06152430346 2.708527846e-13) (0.003763171031 0.0660831039 2.908923102e-13) (0.004015378697 0.06986512772 3.099465129e-13) (0.003108846703 0.05569367443 2.414596301e-13) (0.004127435611 0.05617244571 2.473021787e-13) (0.003715255422 0.03781649804 1.665612093e-13) (0.003985264523 0.04423131942 1.948025075e-13) (0.004431813285 0.04876261966 2.164518564e-13) (0.002968336454 0.03369039485 1.460775945e-13) (0.003323470817 0.03124857541 1.376260217e-13) (0.001692920823 0.01295410343 5.705158568e-14) (0.002277397006 0.01858003465 8.182343691e-14) (0.00270059001 0.02185404633 9.699185899e-14) (0.00143445172 0.01189481216 5.158373728e-14) (0.001125379846 0.008107415225 3.570754803e-14) (2.83665325e-05 0.0001737585748 7.632783294e-16) (0.0002418919074 0.001559703595 6.869504965e-15) (0.0004012459712 0.002566619954 1.139366379e-14) (2.868101387e-05 0.0001878599601 8.187894807e-16) (-0.0007994131059 0.004913889089 2.231548279e-14) (-0.0003203373749 0.001871644336 8.507083926e-15) (-0.002985196478 0.02175604976 9.880984919e-14) (-0.002221826196 0.01524854748 6.926403895e-14) (-0.002424818461 0.01650634324 7.55784324e-14) (-0.001650892381 0.01151246468 5.148659277e-14) (-0.003718371128 0.02888830416 1.312006059e-13) (-0.005280464726 0.05114597083 2.322586568e-13) (-0.004901945621 0.04387331404 1.992295218e-13) (-0.005198073359 0.04613944322 2.111921749e-13) (-0.004160211397 0.03784260964 1.691702334e-13) (-0.005487795001 0.05791021149 2.629563234e-13) (-0.005078991883 0.0733201339 3.328726184e-13) (-0.005370852103 0.06903924561 3.13471471e-13) (-0.005556327477 0.07077340316 3.239214452e-13) (-0.004885231795 0.06406673399 2.862848847e-13) (-0.004633360241 0.07629476166 3.463340725e-13) (-0.002764399834 0.07905621882 0) (-0.003440980944 0.07896407401 3.583938701e-13) (-0.00346922255 0.07841196572 0) (-0.00330036358 0.07773164911 3.472638843e-13) (-0.002085813466 0.07905784584 0) (-6.515558512e-05 0.07873947658 0) (-0.0003990446467 0.0787417625 0) (-0.0007202172787 0.08028535192 3.587130593e-13) (0.0002706168367 0.07873707499 0) (0.002660149977 0.07901659767 0) (0.001979799073 0.07902867471 0) (0.00199255999 0.07839893151 0) (0.001959433406 0.07990187847 3.571032359e-13) (0.00333944884 0.07894807822 3.585465258e-13) (0.00500199324 0.07361317511 3.345240751e-13) (0.004545205812 0.0763794518 3.470557175e-13) (0.004229388372 0.07274698955 3.252675906e-13) (0.005325999473 0.06975321667 3.169964291e-13) (0.005315037601 0.05235674519 2.379624275e-13) (0.005493428771 0.05898402999 2.680772271e-13) (0.005743715692 0.06117420549 2.802619248e-13) (0.004834968749 0.05276148617 2.36033415e-13) (0.004964770699 0.04517720788 2.053218706e-13) (0.003046965102 0.02255865297 1.025290963e-13) (0.003827520608 0.03021609409 1.373207104e-13) (0.004112410012 0.032189906 1.47479251e-13) (0.003107283158 0.02494123669 1.115635362e-13) (0.00232157932 0.01618271112 7.355227538e-14) (0.000438461366 0.002599778616 1.180999742e-14) (0.000959366599 0.005986694447 2.72004641e-14) (0.001178601044 0.007294850712 3.341771304e-14) (0.0005789082013 0.0036727997 1.643130076e-14) (-0.001413412168 0.008406454347 3.944067295e-14) (-0.0007404945976 0.004186481785 1.965094754e-14) (-0.003897387296 0.02747045736 1.288691376e-13) (-0.003057417138 0.0202974423 9.522937994e-14) (-0.00317002564 0.02086703665 9.871270468e-14) (-0.002679413689 0.01809080995 8.350264924e-14) (-0.004668946633 0.03507258307 1.645211745e-13) (-0.006125762846 0.05731044706 2.687849943e-13) (-0.005816556987 0.05030439136 2.359501483e-13) (-0.005940774804 0.05093293841 2.408628852e-13) (-0.005388942349 0.04742793592 2.188527137e-13) (-0.00623509701 0.06352681266 2.979283487e-13) (-0.005416339936 0.07526163845 3.529537773e-13) (-0.005862556477 0.07267039959 3.407829574e-13) (-0.005924148438 0.07274547234 3.440026042e-13) (-0.005695270167 0.0718950561 3.317068842e-13) (-0.004837089397 0.07645068843 3.585465258e-13) (-0.00318124666 0.07618118038 0) (-0.00348948868 0.07776913595 0) (-0.002833036643 0.07713740249 0) (-0.002497149806 0.07714147572 0) (-0.002490540855 0.07745897931 0) (-0.002825333108 0.07745720814 0) (-0.001449018598 0.07749050172 0) (-0.001795864779 0.07748395358 0) (-0.001818061492 0.07715602709 0) (-0.001424603539 0.07843163869 0) (-0.001766923363 0.07843002429 0) (-0.001771616793 0.07811754919 0) (-0.001435416134 0.07811731469 0) (0.0002970808357 0.0771771615 0) (0.0002844840149 0.07749143751 0) (-7.017113e-05 0.07749490878 0) (0.001327506329 0.07746733934 0) (0.0009819429235 0.07747693458 0) (0.001306933103 0.07841294044 0) (0.0009659726494 0.07841798697 0) (0.0009675385037 0.07810580128 0) (0.001311203174 0.07809948246 0) (0.00303342457 0.07709254582 0) (0.003033016306 0.07740848525 0) (0.002696978671 0.07741770524 0) (0.004031993942 0.07708042203 0) (0.004032933243 0.07770940129 0) (0.003366794067 0.07740295212 0) (0.003366295478 0.07708848892 0) (0.004024628247 0.07820341078 3.581579477e-13) (0.005795692084 0.07348328626 3.450018049e-13) (0.006236368451 0.0594280287 2.790406795e-13) (0.006281063677 0.06525122171 3.063799214e-13) (0.006393867855 0.06590985121 3.120420589e-13) (0.005941829058 0.06275603891 2.898514762e-13) (0.005991585206 0.05273641348 2.476074901e-13) (0.004215574493 0.03019408153 1.417477247e-13) (0.004952375551 0.03781834904 1.775524172e-13) (0.005117215443 0.03876531302 1.83519866e-13) (0.0044472012 0.03452163067 1.594557819e-13) (0.003392099112 0.02287661836 1.073863221e-13) (0.000984708008 0.00564990521 2.65204525e-14) (0.001712822023 0.01034237988 4.854450175e-14) (0.001825274986 0.01093031016 5.173639295e-14) (0.001383139392 0.008490863872 3.920475056e-14) (-0.001676696379 0.009639753377 4.676814491e-14) (-0.0009397352911 0.005135903191 2.49245069e-14) (-0.004266504227 0.02906081667 1.409705686e-13) (-0.003406873555 0.02185959101 1.060540544e-13) (-0.003474066404 0.02210000814 1.081357226e-13) (-0.00322717012 0.021062493 1.004751837e-13) (-0.005041842644 0.03659418748 1.774969061e-13) (-0.006424142914 0.05803037737 2.814415367e-13) (-0.006152469528 0.05139000741 2.492311912e-13) (-0.0062059607 0.05138231185 2.513267372e-13) (-0.006005385877 0.0510457713 2.434163981e-13) (-0.006486537673 0.06378568547 3.093358902e-13) (-0.00600315148 0.07172625028 3.478606292e-13) (-0.006020065643 0.0712741417 3.486377853e-13) (-0.00595523604 0.07246296464 3.455430386e-13) (-0.005487779355 0.07413393493 3.565203688e-13) (-0.004857950697 0.07459970299 0) (-0.004193840122 0.07459559628 0) (-0.004191314895 0.07491234601 0) (-0.004188761833 0.07522891784 0) (-0.004182876643 0.07586303855 0) (-0.004186123316 0.07554522397 0) (-0.002861385341 0.07522072076 0) (-0.002529690116 0.07521922569 0) (-0.002197945512 0.07521851094 0) (-0.002196187399 0.07537792506 0) (-0.002193879946 0.0755387713 0) (-0.002189628986 0.07585848893 0) (0.003028525817 0.07455387763 0) (0.003029975085 0.0748708828 0) (0.0040236353 0.07454466148 0) (0.004025629571 0.0748605033 0) (0.003693558301 0.07486436212 0) (0.003691851457 0.07454798803 0) (0.004030055672 0.07581027017 0) (0.003697752907 0.07581434129 0) (0.00369690739 0.07549623977 0) (0.004029095089 0.07549236845 0) (0.005924285901 0.07282319081 3.535782778e-13) (0.006635928619 0.06125833616 2.974565039e-13) (0.006594925623 0.06639025365 3.223810108e-13) (0.006612368072 0.06604547187 3.234634782e-13) (0.006459803253 0.06607141405 3.154282391e-13) (0.006465510891 0.05511146626 2.676053823e-13) (0.004800891644 0.03327640727 1.615652057e-13) (0.005522991308 0.04082346144 1.982164433e-13) (0.005556771586 0.04073854948 1.994931997e-13) (0.005218452048 0.03921353994 1.87183602e-13) (0.003965908242 0.0258775078 1.256217352e-13) (0.001364993063 0.007574531979 3.67622599e-14) (0.002183218773 0.01275067023 6.189493362e-14) (0.002210021836 0.01279951092 6.267208974e-14) (0.001987131289 0.01180018144 5.631606292e-14) (-0.001843021826 0.01023632614 5.141720383e-14) (-0.001072928089 0.005665125832 2.844946501e-14) (-0.004469393309 0.02939780826 1.476041511e-13) (-0.003607792062 0.02235783143 1.122713034e-13) (-0.003648083964 0.02240788747 1.135203043e-13) (-0.003524533917 0.02222778841 1.096900348e-13) (-0.005237657015 0.03670347078 1.842831443e-13) (-0.006558975339 0.05716088679 2.869510185e-13) (-0.006312518646 0.0508831173 2.554345624e-13) (-0.006344428623 0.05067864132 2.566696855e-13) (-0.006246196829 0.05125897301 2.528949272e-13) (-0.006593751255 0.06253701445 3.139433158e-13) (-0.006055248768 0.06973290633 3.500810752e-13) (-0.006065683194 0.06920314432 3.504974089e-13) (-0.006033204766 0.07077713303 3.491928968e-13) (-0.005519199972 0.07184860291 3.575889584e-13) (-0.004873439331 0.0720848924 0) (-0.00420963886 0.07208020388 0) (-0.004207805486 0.07239395241 0) (-0.004205957334 0.07270772996 0) (-0.004202123801 0.07333612884 0) (-0.004204063581 0.07302176935 0) (-0.002879826862 0.07269843646 0) (-0.002548676479 0.07269612679 0) (-0.00221770108 0.07269378927 0) (-0.002216629664 0.07285091001 0) (-0.002215558672 0.0730079725 0) (-0.002213386393 0.07332225747 0) (-0.002214472479 0.07316512227 0) (0.003010786021 0.07202395027 0) (0.003013464413 0.07233973176 0) (0.002682431606 0.07234218622 0) (0.004004424175 0.07201669947 0) (0.004007247255 0.07233234882 0) (0.003675908596 0.07233480551 0) (0.00367312889 0.07201911215 0) (0.004014965092 0.073280118 0) (0.003683482168 0.07328276509 0) (0.003681078907 0.07296676311 0) (0.004012518669 0.07296418917 0) (0.005920697654 0.07056276298 3.547162564e-13) (0.006692137853 0.05982129436 3.007455396e-13) (0.006630920808 0.06466489404 3.251010572e-13) (0.006602020372 0.06386832495 3.23935323e-13) (0.006637544345 0.06577183781 3.249067682e-13) (0.006540573642 0.05396668688 2.713107516e-13) (0.004912404976 0.03292964944 1.655203752e-13) (0.005626860347 0.04023463942 2.022548795e-13) (0.005570337525 0.03949684246 2.003119892e-13) (0.0056231286 0.04088479243 2.019495682e-13) (0.004079896243 0.02574032523 1.293687379e-13) (0.001449564302 0.007773972374 3.905209489e-14) (0.002283722995 0.01289183872 6.478151349e-14) (0.002230367447 0.01248236182 6.32827124e-14) (0.002276381218 0.01307239361 6.454559109e-14) (-0.002003888226 0.01073895989 5.589972929e-14) (-0.001204351875 0.006136212399 3.194666753e-14) (-0.004660416088 0.02956600213 1.538491556e-13) (-0.003798216019 0.0227059558 1.181693632e-13) (-0.003847756916 0.02279113618 1.196959198e-13) (-0.003697185921 0.02250713694 1.150468609e-13) (-0.005420934731 0.03663227154 1.906114155e-13) (-0.006682831302 0.05612291274 2.919886555e-13) (-0.006460605886 0.05019607871 2.61152211e-13) (-0.006498490278 0.0500174808 2.626093787e-13) (-0.006382700794 0.05051996191 2.581546088e-13) (-0.006691254303 0.06113850091 3.180788966e-13) (-0.006100478634 0.06764400686 3.519406988e-13) (-0.006111415977 0.06711382814 3.52384788e-13) (-0.006077420281 0.06868665112 3.509831314e-13) (-0.005542186585 0.06946659209 3.581857033e-13) (-0.004887201251 0.06957718429 0) (-0.004223619034 0.06957252649 0) (-0.004221918011 0.06988610121 0) (-0.004220202954 0.07019960299 0) (-0.004216746257 0.0708262568 0) (-0.00421848864 0.07051300282 0) (-0.002895149396 0.07019043385 0) (-0.002564450189 0.07018817117 0) (-0.002563498151 0.07034489952 0) (-0.00239822137 0.07034376871 0) (-0.00239920243 0.07018705513 0) (-0.002395266064 0.07081357436 0) (-0.002396245321 0.07065710838 0) (0.00298549969 0.06950177553 0) (0.002988838602 0.06981625592 0) (0.003978170941 0.06949575524 0) (0.003981582357 0.06981019141 0) (0.00365051692 0.06981216546 0) (0.003647120175 0.06949774375 0) (0.003991956805 0.07075475148 0) (0.003660805255 0.07075690094 0) (0.003657492608 0.0704420271 0) (0.003988615242 0.07043990698 0) (0.005847531708 0.06754321047 3.519406988e-13) (0.0064898632 0.05613616065 2.925160114e-13) (0.006471958833 0.06110062074 3.183842079e-13) (0.006406240668 0.05998194246 3.154421169e-13) (0.006576866173 0.06311261054 3.229777557e-13) (0.00629827995 0.05026556834 2.619293671e-13) (0.004596152694 0.02977035407 1.550981565e-13) (0.005324792707 0.03680047351 1.917355164e-13) (0.005203095854 0.03564838827 1.874472799e-13) (0.005536905136 0.03892791941 1.992017662e-13) (0.003762286369 0.02292962479 1.194461197e-13) (0.001219870087 0.006316428054 3.290423489e-14) (0.002009199452 0.0109524667 5.703770789e-14) (0.001903169389 0.01028226504 5.404010572e-14) (0.002207325391 0.01224636561 6.264433416e-14) (-0.002209646449 0.01140978602 6.163125565e-14) (-0.001376810367 0.006759653858 3.652633751e-14) (-0.004891291937 0.02988628783 1.613847944e-13) (-0.004032562966 0.02322175948 1.254135684e-13) (-0.004066435908 0.02319358215 1.264544025e-13) (-0.003899792668 0.02288542644 1.213057432e-13) (-0.005638270391 0.03668874873 1.98105421e-13) (-0.006819161019 0.05510857625 2.975258928e-13) (-0.006628435551 0.0495697875 2.676192601e-13) (-0.006662067139 0.04933621738 2.688960166e-13) (-0.006537926645 0.04984510559 2.641359353e-13) (-0.006794706374 0.05972889144 3.224642775e-13) (-0.006142861577 0.06550081973 3.536476667e-13) (-0.006155095894 0.06497757405 3.541750226e-13) (-0.006122426397 0.06658318363 3.52842755e-13) (-0.005561659105 0.06704158462 3.586159147e-13) (-0.00489990549 0.0670687111 0) (-0.004236279685 0.06706403842 0) (-0.004234783094 0.06737754179 0) (-0.004233256843 0.06769111778 0) (-0.00423013205 0.06831819639 0) (-0.00423170157 0.06800467898 0) (-0.002909266058 0.06768201464 0) (-0.002579149213 0.06767978532 0) (-0.002578284137 0.06783657257 0) (-0.002413371252 0.06783547354 0) (-0.002414250892 0.0676786864 0) (-0.002410645901 0.06830570326 0) (-0.002411554245 0.06814897458 0) (0.002953999763 0.06698838512 0) (0.002958384445 0.06730246463 0) (0.00394641766 0.06698357558 0) (0.003950595895 0.06729730703 0) (0.003619659416 0.06729898884 0) (0.003615275795 0.06698505497 0) (0.003963050109 0.06823944871 0) (0.003632100338 0.0682413054 0) (0.003628109 0.06792723759 0) (0.003959103206 0.06792548253 0) (0.005691858609 0.06367779073 3.443495489e-13) (0.006087780437 0.05090139568 2.752659212e-13) (0.006150661195 0.05616113084 3.037015084e-13) (0.006013632413 0.05444475434 2.972344593e-13) (0.006307628175 0.05857108261 3.108763247e-13) (0.005823406785 0.04490167284 2.428057755e-13) (0.004003020584 0.02502297416 1.352806756e-13) (0.004749978132 0.03169192485 1.713629239e-13) (0.00459360972 0.03037348668 1.657840532e-13) (0.005088655182 0.03456055174 1.834088437e-13) (0.003177556287 0.01868498275 1.010025397e-13) (0.0008336720499 0.004162737782 2.250977182e-14) (0.001527794671 0.008032371939 4.340972026e-14) (0.001428745876 0.007442446388 4.060640713e-14) (0.001824607399 0.009769519204 5.181965967e-14) (-0.002457843758 0.01220981872 6.854239398e-14) (-0.001587897004 0.007500984934 4.210520821e-14) (-0.005166562816 0.03035585154 1.703498453e-13) (-0.004312218744 0.02388289503 1.340316746e-13) (-0.00427536457 0.02344405165 1.328798183e-13) (-0.004130230996 0.02333028853 1.284250484e-13) (-0.005897575641 0.0368946433 2.070288385e-13) (-0.006982642997 0.05421421364 3.041733532e-13) (-0.00682944664 0.049079226 2.753630657e-13) (-0.006862999022 0.04881916413 2.766120666e-13) (-0.006708600185 0.04919155259 2.706862512e-13) (-0.006918441264 0.05841553958 3.277378369e-13) (-0.006190057833 0.0633734637 3.55590557e-13) (-0.006201050084 0.06282551082 3.560068906e-13) (-0.006166425626 0.06444238311 3.546329896e-13) (-0.005577029147 0.06456593592 0) (-0.004911975718 0.06456129654 0) (-0.004910421293 0.06487474123 0) (-0.004247752457 0.0645566632 0) (-0.004246314335 0.06487013787 0) (-0.004578236735 0.0648724386 0) (-0.004579733009 0.06455897891 0) (-0.004242073745 0.06581043134 0) (-0.004576785109 0.06518576752 0) (-0.004244906615 0.06518343798 0) (-0.004243497409 0.06549694199 0) (-0.00292123529 0.06517446826 0) (-0.002591744819 0.06517222894 0) (-0.002591025281 0.06532903181 0) (-0.002426563572 0.06532797976 0) (-0.002427297781 0.06517116243 0) (-0.002424245704 0.06579825614 0) (-0.002425022545 0.06564158477 0) (0.002914152773 0.06448082328 0) (0.002919827318 0.06479401949 0) (0.003906863865 0.06447627378 0) (0.003917789847 0.06510256733 0) (0.003255828548 0.06510580051 0) (0.003250342279 0.06479245727 0) (0.003244697181 0.06447930454 0) (0.00392794763 0.06572937625 0) (0.003266073929 0.06573263792 0) (0.003260906697 0.06541910302 0) (0.005424392093 0.05872588048 3.300415496e-13) (0.005462563014 0.04409120661 2.477879013e-13) (0.005643444803 0.04978286837 2.797762022e-13) (0.005518702084 0.04825496622 2.738781424e-13) (0.005927586917 0.05320735151 2.932792897e-13) (0.005155527921 0.03835499876 2.155359224e-13) (0.003238225966 0.01950802886 1.096067681e-13) (0.003986739527 0.02564263339 1.44079193e-13) (0.003743379314 0.02385162922 1.353361867e-13) (0.004366424792 0.02860935872 1.576655473e-13) (0.002447713067 0.01386852235 7.790990075e-14) (0.0004291484962 0.002063629449 1.160183061e-14) (0.0009785705141 0.004955288211 2.783884234e-14) (0.0008093302883 0.004059067102 2.303712776e-14) (0.001229175346 0.006343344721 3.49442697e-14) (-0.002767681291 0.01322743481 7.729927809e-14) (-0.001857122577 0.008440256503 4.932165787e-14) (-0.005496012713 0.03106059147 1.814520756e-13) (-0.004651373478 0.02478114459 1.447730824e-13) (-0.004690405389 0.02482810261 1.465355615e-13) (-0.004454793019 0.0241810463 1.384170556e-13) (-0.006203376172 0.03732551266 2.180200465e-13) (-0.007159714548 0.05345887261 3.122363479e-13) (-0.007056167782 0.04876616393 2.84827717e-13) (-0.00705485875 0.0484925377 2.861044734e-13) (-0.006899087859 0.04857100129 2.77958212e-13) (-0.007043177615 0.05719206352 3.340383525e-13) (-0.006213510976 0.06119936483 3.574918139e-13) (-0.006173091846 0.06060566377 3.576305918e-13) (-0.006212583459 0.06227890647 3.564371021e-13) (-0.00559221675 0.06205646125 0) (-0.004926305118 0.06205366539 0) (-0.004924209797 0.06236738288 0) (-0.004261178231 0.06204911286 0) (-0.004259156262 0.06236275806 0) (-0.004591573744 0.06236507696 0) (-0.004593639406 0.06205143208 0) (-0.004253839819 0.06330278152 0) (-0.004586067965 0.06330509904 0) (-0.00458781109 0.06299174311 0) (-0.004255510123 0.06298942506 0) (-0.002931863648 0.0626670432 0) (-0.002766994138 0.06266598818 0) (-0.002766275873 0.06282261628 0) (-0.002931116148 0.06282368565 0) (-0.002437570391 0.06282058659 0) (-0.00243828855 0.06266397305 0) (-0.002435471412 0.0632908063 0) (-0.002436130148 0.06313435255 0) (7.237580546e-05 0.06261294658 0) (7.779593735e-05 0.06276860828 0) (0.0005604816823 0.06261367407 0) (0.0005657592957 0.06276936593 0) (0.0004025798218 0.06276928713 0) (0.0003974793631 0.06261352115 0) (0.0004124390356 0.06308109831 0) (0.0005753564573 0.06308119358 0) (0.003171949301 0.06135597956 0) (0.004745832095 0.05613216951 3.283068262e-13) (0.004342748497 0.05904836267 3.453348718e-13) (0.004286381621 0.05780400866 3.415462357e-13) (0.004444858292 0.06133462208 3.515521207e-13) (0.005006747087 0.0524352467 3.066852328e-13) (0.004730557103 0.03681244321 2.153000001e-13) (0.005007694253 0.04261195476 2.492311912e-13) (0.004789165487 0.04037899522 2.386008058e-13) (0.005345112472 0.04632117935 2.655098363e-13) (0.004287695667 0.03073525625 1.797589855e-13) (0.002298321811 0.01332452108 7.790990075e-14) (0.003025420951 0.01872999375 1.095235014e-13) (0.002828660006 0.01734246627 1.024597074e-13) (0.003548286683 0.02239446867 1.283417816e-13) (0.001578350318 0.008603968139 5.03069808e-14) (0.0001218180756 0.0005633851169 3.302913498e-15) (0.0004711928217 0.002294733311 1.341982081e-14) (0.0003339229348 0.001610119271 9.506284648e-15) (0.0007124390558 0.003538614373 2.027544799e-14) (-0.002436098369 0.01120523099 6.825096044e-14) (-0.001588197806 0.006946074666 4.232725281e-14) (-0.005052564452 0.02748959028 1.674077543e-13) (-0.00423021809 0.02169473338 1.321304177e-13) (-0.003954130823 0.02006360054 1.235123115e-13) (-0.004602200022 0.02410718567 1.437600039e-13) (-0.005754677193 0.03333790377 2.030042801e-13) (-0.006801349538 0.0489152178 2.978312041e-13) (-0.006650354898 0.04426340794 2.695066392e-13) (-0.006391887308 0.04208684112 2.590289094e-13) (-0.006980611242 0.04747153456 2.830097268e-13) (-0.006747962542 0.05279090857 3.214373212e-13) (-0.006083097867 0.05776104688 3.517186542e-13) (-0.005989533568 0.05624045594 3.461397835e-13) (-0.006164089528 0.05985097444 3.568534357e-13) (-0.005534788972 0.05954123894 3.587685704e-13) (-0.004867482351 0.05953887438 0) (-0.004199954468 0.05953401306 0) (-0.004197670871 0.05984758353 0) (-0.004195387274 0.060161154 0) (-0.004529158498 0.06016358471 0) (-0.004190821141 0.0607881493 0) (-0.004524592365 0.06079058001 0) (-0.004526875962 0.06047700954 0) (-0.004193104738 0.06047457883 0) (-0.002860316942 0.06015143127 0) (-0.002526560283 0.06014900066 0) (-0.002525419015 0.06030571308 0) (-0.002192789059 0.06014656995 0) (-0.002191647791 0.06030328237 0) (-0.002358526121 0.06030449767 0) (-0.002359667389 0.06014778525 0) (-0.002355101256 0.06077478055 0) (-0.002356242524 0.06061806814 0) (-0.002189364194 0.06061685283 0) (0.0001390088175 0.05950241429 0) (0.0001412924143 0.05981598476 0) (0.001140307925 0.05949512226 0) (0.001142591522 0.05980869273 0) (0.0008088246673 0.05981112341 0) (0.0008065410704 0.05949755294 0) (0.0008133908004 0.06043811871 0) (0.001147157655 0.06043568803 0) (0.003087139424 0.05786325889 3.527456105e-13) (0.004323851231 0.04934069445 3.008426841e-13) (0.004046209981 0.05311424661 3.238381785e-13) (0.003933374086 0.05110163778 3.149147609e-13) (0.004201790853 0.05626501725 3.358979761e-13) (0.004437754343 0.04477757307 2.730177195e-13) (0.003759509808 0.02814054206 1.715572129e-13) (0.004147436347 0.03396870244 2.071121052e-13) (0.003942132533 0.03194272275 1.968425423e-13) (0.004617686308 0.03858004667 2.30343522e-13) (0.003309498124 0.02281104265 1.390693116e-13) (0.00146835886 0.008181052167 4.986289159e-14) (0.002104131785 0.01252207988 7.632783294e-14) (0.001799489495 0.01059309107 6.526723606e-14) (0.002543885689 0.01544340536 9.217626662e-14) (0.0008777744851 0.004595376044 2.80053758e-14) (0 0 0) (9.288581156e-05 0.0004344911212 2.650657471e-15) (4.335547904e-05 0.0002007287027 1.235123115e-15) (0.0002517942331 0.001201993075 7.174816297e-15) (-0.001376695294 0.006064682805 3.860800568e-14) (-0.0007559779312 0.003166311527 2.01505479e-14) (-0.003582214037 0.01866873039 1.187661081e-13) (-0.002846028048 0.01398060128 8.895661985e-14) (-0.00241667641 0.01174225234 7.555067683e-14) (-0.003625658131 0.01820048534 1.132705041e-13) (-0.00425302995 0.02360051461 1.501299085e-13) (-0.005523584239 0.03804115086 2.419592304e-13) (-0.005248582626 0.03345734563 2.12815876e-13) (-0.004758203512 0.03000556357 1.930122728e-13) (-0.006070617409 0.03954228718 2.460115445e-13) (-0.005634831617 0.04220371576 2.684380496e-13) (-0.005045901633 0.0513051823 3.263500581e-13) (-0.005381566329 0.04888211429 3.10917958e-13) (-0.005054925649 0.04541974049 2.921551889e-13) (-0.005846218087 0.05428632487 3.377575997e-13) (-0.004600062974 0.05312654221 3.379518887e-13) (-0.00285118863 0.0557024063 3.54410945e-13) (-0.00347936631 0.05522645865 3.513578317e-13) (-0.003361889384 0.05276041981 3.394506898e-13) (-0.003546127105 0.05764787457 0) (-0.002201654332 0.0559362516 3.559375017e-13) (-0.0002137786727 0.05572177002 3.546607452e-13) (-0.0008774705908 0.05594270284 3.560346462e-13) (-0.000856196123 0.05389071282 3.468336729e-13) (-0.000871423617 0.05825557008 0) (-0.0008759908107 0.05762842914 0) (0.0004434053138 0.05527001919 3.518157987e-13) (0.002250455115 0.05149895192 3.278904925e-13) (0.001692927395 0.05325865121 3.390621117e-13) (0.001616780371 0.05027381843 3.236577673e-13) (0.001782230253 0.05720268341 3.56242813e-13) (0.002734121173 0.04914443563 3.129163595e-13) (0.003525899253 0.03850407028 2.45192755e-13) (0.003390254013 0.04260564837 2.713107516e-13) (0.003139491509 0.0389874138 2.510491814e-13) (0.003787518522 0.04868346131 3.03271297e-13) (0.003518718257 0.03396921882 2.163130786e-13) (0.002683793274 0.01921757076 1.223604551e-13) (0.003083372075 0.02415817465 1.538214001e-13) (0.002732951043 0.021163744 1.362798763e-13) (0.003693707472 0.02960335868 1.844080444e-13) (0.002198762841 0.0144977324 9.230116671e-14) (0.0006488618551 0.003459383572 2.202404925e-14) (0.001133048788 0.006451558536 4.107825191e-14) (0.0008912584092 0.005017283084 3.229361223e-14) (0.001596249907 0.009294440373 5.788425295e-14) (0.0002672479311 0.001339742736 8.520961714e-15) (0 0 0) (0 0 0) (0 0 0) (4.155470197e-06 1.903161034e-05 1.249000903e-16) (-0.0002899029585 0.001220991549 8.132383655e-15) (-5.536800996e-05 0.0002216597973 1.471045508e-15) (-0.00165454257 0.00825051469 5.495603972e-14) (-0.001136409669 0.005340006072 3.556877015e-14) (-0.0007656941853 0.003557185526 2.398081733e-14) (-0.001978337878 0.009506906406 6.186717805e-14) (-0.002177055343 0.01156249243 7.699396676e-14) (-0.003420763169 0.0225650959 1.502409308e-13) (-0.003088349712 0.01885206925 1.255384685e-13) (-0.002513172919 0.0151739787 1.022376628e-13) (-0.004226216353 0.02636418921 1.715294573e-13) (-0.003646228407 0.02616254592 1.741939926e-13) (-0.0036269546 0.0353412056 2.353117701e-13) (-0.00374793066 0.03262254479 2.17201257e-13) (-0.003237808303 0.02789084242 1.879052469e-13) (-0.004668388379 0.0414993969 2.699923618e-13) (-0.003402360739 0.03765839276 2.507438701e-13) (-0.002245852826 0.04206176964 2.801092691e-13) (-0.002696295264 0.04101918734 2.731426196e-13) (-0.002394293323 0.03608186596 2.431110868e-13) (-0.003188536241 0.04949968362 3.22103455e-13) (-0.001751804494 0.04268975313 2.843142388e-13) (-0.000161760961 0.04214436075 2.807337696e-13) (-0.0006947059037 0.04273053175 2.846334279e-13) (-0.0006164912594 0.0378171136 2.548516953e-13) (-0.0008173863437 0.05092231865 3.31457084e-13) (0.0003539394671 0.04114537374 2.74100187e-13) (0.001639682928 0.0356066701 2.372407826e-13) (0.001270639112 0.037876894 2.523536935e-13) (0.001124220011 0.03296898985 2.222527717e-13) (0.00151981887 0.04665463684 3.037847751e-13) (0.001928977697 0.0329329873 2.194355808e-13) (0.002210763167 0.02297391509 1.530858773e-13) (0.002221123583 0.02654750106 1.769001612e-13) (0.001882029419 0.02219274241 1.496303081e-13) (0.002857382815 0.0350489085 2.282618539e-13) (0.002096783862 0.01927250539 1.284250484e-13) (0.001261678319 0.008614119864 5.739853037e-14) (0.001601885209 0.01196138136 7.970013538e-14) (0.001234656316 0.009104688606 6.136757769e-14) (0.002362522699 0.01807827592 1.17725274e-13) (0.0008986354619 0.005652089753 3.765043832e-14) (5.841496534e-05 0.0002974221176 1.984523657e-15) (0.0002550934675 0.001386645091 9.24260668e-15) (0.0001123694971 0.0006036061661 4.066191828e-15) (0.0006565467049 0.003653570869 2.37865283e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0002120702363 0.001009696928 7.063793994e-15) (-5.395886341e-05 0.0002419747007 1.693090113e-15) (0 0 0) (-0.0004510685927 0.002071413152 1.412758799e-14) (-0.0004399107561 0.002231934424 1.55986335e-14) (-0.001228705335 0.007756856041 5.41788836e-14) (-0.0009759258279 0.005697596033 3.980149543e-14) (-0.0005863069634 0.003383427941 2.392530618e-14) (-0.001957220383 0.01168739394 7.970013538e-14) (-0.001442220361 0.009910474713 6.922240559e-14) (-0.001721117876 0.01610232451 1.124794702e-13) (-0.001695776833 0.01415847513 9.889311592e-14) (-0.001234887457 0.01020111161 7.213674103e-14) (-0.002714512222 0.02314208341 1.577765696e-13) (-0.001677054443 0.017842812 1.246364123e-13) (-0.001182032338 0.02140967128 1.495609192e-13) (-0.001399180944 0.02052938719 1.434130592e-13) (-0.00107863485 0.01568757467 1.109390357e-13) (-0.002069383307 0.03090272366 2.107064523e-13) (-0.0009274190775 0.02195299267 1.533634331e-13) (-6.930403507e-05 0.02148714404 1.501299085e-13) (-0.0003574446593 0.02199205226 1.536548666e-13) (-0.0002751308413 0.01697908951 1.200983757e-13) (-0.0005317079373 0.03259736436 2.223082829e-13) (0.0002027892865 0.02064393047 1.442457265e-13) (0.0008004768319 0.01631042586 1.139643935e-13) (0.0006484375289 0.01802375338 1.259409244e-13) (0.0004949467213 0.0135041981 9.552081348e-14) (0.0009684955237 0.02791649149 1.904310043e-13) (0.0008947931132 0.01438785832 1.005306949e-13) (0.0008126881794 0.008001843503 5.591360708e-14) (0.0008984937654 0.01015962945 7.099876242e-14) (0.0006182373964 0.00689216836 4.875266857e-14) (0.0015414856 0.01792803516 1.222910662e-13) (0.0006798158115 0.00592786578 4.142519661e-14) (0.0001739542754 0.001129937298 7.896461263e-15) (0.0003380492532 0.002399548098 1.676436767e-14) (0.0001492219047 0.001045740507 7.396860902e-15) (0.000893049721 0.006502901487 4.435340983e-14) (5.100610103e-05 0.000305434813 2.137179322e-15) (0 0 0) (0 0 0) (0 0 0) (2.410019214e-05 0.0001279179673 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) (-3.782325985e-05 0.0002276983678 1.679212325e-15) (-2.716092446e-06 1.510919543e-05 1.110223025e-16) (0 0 0) (-0.0002857543598 0.001629527298 1.167121955e-14) (-9.858326004e-05 0.0006465638216 4.74620343e-15) (-0.000286084516 0.002563369475 1.883215806e-14) (-0.0002342313306 0.001870513051 1.373900993e-14) (-6.885622998e-05 0.000543199417 4.038436252e-15) (-0.0008283714677 0.006768721145 4.847511281e-14) (-0.0003176559622 0.003241854424 2.381428388e-14) (-0.00027319279 0.004784772901 3.513855873e-14) (-0.0003102376671 0.004385950108 3.222422329e-14) (-0.0001482917626 0.002074157307 1.543210004e-14) (-0.0007835929019 0.01129435645 8.087974734e-14) (-0.0002188348656 0.005036716004 3.69981823e-14) (-1.172591009e-05 0.004821763735 3.541611449e-14) (-8.147635807e-05 0.005055696409 3.713696017e-14) (-4.083271322e-05 0.00252835488 1.881828027e-14) (-0.0002001884648 0.01239079892 8.873457524e-14) (4.999639562e-05 0.004439028109 3.261280135e-14) (0.000138517746 0.002643760134 1.942890293e-14) (0.0001283163114 0.003317513479 2.436939539e-14) (5.434043447e-05 0.001382103159 1.028344077e-14) (0.000353452734 0.009467348468 6.780687123e-14) (0.0001289275677 0.001950152184 1.432187702e-14) (2.862264581e-05 0.000266919808 1.956768081e-15) (6.603421383e-05 0.0007059866929 5.19029264e-15) (4.98404336e-06 5.257564831e-05 3.885780586e-16) (0.0003799097381 0.004175847168 2.990663273e-14) (3.30978331e-06 2.737232934e-05 1.942890293e-16) (0 0 0) (0 0 0) (0 0 0) (3.392415979e-05 0.0002347238308 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) (-1.414397924e-06 1.101626326e-05 8.326672685e-17) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-4.407731662e-05 0.0006094051764 4.593547764e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-1.389983962e-05 0.0008560147364 6.453171331e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (1.10431627e-05 0.0002766421476 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.002212284469 0.07347956734 0) (-0.002211137155 0.07363710992 0) (-0.00220881202 0.07395238421 0) (-0.002540020873 0.07395466517 0) (-0.002210005042 0.07379456522 0) (-0.002871361123 0.0739569034 0) (0.002693526395 0.07392365931 0) (0.002362294459 0.07392677066 0) (0.00236144483 0.07376810439 0) (0.002195894189 0.07376963046 0) (0.002196729255 0.07392829683 0) (0.00219292078 0.07329533888 0) (0.002193913507 0.07345365454 0) (0.002035003442 0.07583902604 0) (0.002035754113 0.07567810393 0) (0.002036103524 0.07551808311 0) (0.002201918029 0.0751967895 0) (0.002367672252 0.07519521826 0) (0.002035750302 0.07535958073 0) (0.002699565196 0.0751908728 0) (-0.002229010238 0.07096888041 0) (-0.002394301478 0.07097002589 0) (-0.002225979671 0.07143902051 0) (-0.002391314604 0.07144016631 0) (-0.00239231044 0.07128342371 0) (-0.002226990072 0.07128227801 0) (-0.002887653852 0.07144367898 0) (-0.002557689066 0.07128456983 0) (-0.002556707688 0.0714413271 0) (0.002674162657 0.07139474149 0) (0.002508814963 0.07139613499 0) (0.00234349258 0.07139700396 0) (0.002342021774 0.07123904135 0) (0.002176788686 0.07124017184 0) (0.00217823015 0.07139810554 0) (0.002172247099 0.07076654712 0) (0.00217378956 0.07092434899 0) (0.002191912639 0.07313690681 0) (0.002188614996 0.07266209325 0) (0.002189752306 0.0728202622 0) (0.002684922252 0.07265818756 0) (0.002355159 0.07281897023 0) (0.002354006913 0.07266077225 0) (0.002519455073 0.07265917411 0) (-0.002409723522 0.068462359 0) (-0.002406923863 0.06893279209 0) (-0.00240787675 0.06877594722 0) (-0.002902434217 0.06893612394 0) (-0.002572935172 0.06877706188 0) (-0.002572011521 0.0689338924 0) (0.002647597494 0.06887496474 0) (0.002317200108 0.06887667176 0) (0.00231537177 0.06871961479 0) (0.001985251425 0.06872136348 0) (0.00215028284 0.06872054032 0) (0.002152140095 0.06887756795 0) (0.001979647774 0.06824990212 0) (0.002144739568 0.06824936983 0) (0.002146610327 0.06840625171 0) (0.001981636745 0.06840701619 0) (0.002170675404 0.07060873089 0) (0.00216588025 0.07013628778 0) (0.002167597483 0.07029408838 0) (0.002661584607 0.07013359539 0) (0.002332757962 0.07029298755 0) (0.002331026801 0.07013527444 0) (-0.002423469181 0.06595488382 0) (-0.002421065093 0.06642499936 0) (-0.002421842465 0.06626825516 0) (-0.002915527344 0.06642825075 0) (-0.002586507862 0.06626933783 0) (-0.002585730597 0.06642606746 0) (0.002614708087 0.06636277879 0) (0.002284498659 0.06636429509 0) (0.001954521412 0.06636569318 0) (0.001949789837 0.06605198032 0) (0.001944621226 0.06573825608 0) (0.001977773622 0.06809255418 0) (0.00197576839 0.06793520719 0) (0.001971748348 0.06762119785 0) (0.002301680629 0.06761962531 0) (0.001973794727 0.06777819498 0) (0.002632137226 0.06761804895 0) (-0.002434840215 0.06344747874 0) (-0.002432841277 0.06391796135 0) (-0.002433517335 0.06376112903 0) (-0.002926401705 0.06392104596 0) (-0.002927063092 0.06376422809 0) (-0.002762266403 0.0637631736 0) (-0.002761619474 0.06392000613 0) (-0.0001471322005 0.06339213339 0) (-0.0002292360439 0.0633922798 0) (-0.0002307174138 0.06331388653 0) (-0.0002322468317 0.06323559556 0) (0.0002540519986 0.06323688968 0) (0.000258241712 0.06339299729 0) (0.0002623263499 0.06354907653 0) (0.0001000757349 0.06354874336 0) (0.002247694732 0.0641705895 0) (0.002577658157 0.06416929347 0) (0.001257814171 0.06417401143 0) (0.001587097286 0.06417309905 0) (0.001566543847 0.06323481785 0) (0.001573742346 0.06354727471 0) (0.00193984755 0.065424762 0) (0.0019344475 0.06511125792 0) (0.002264745905 0.06510995945 0) (0.002594827118 0.06510883735 0) (-0.002353944362 0.0609316385 0) (-0.002411924754 0.06139210016 0) (-0.002351647262 0.06124506322 0) (-0.002907886072 0.06139550812 0) (-0.002852325944 0.06124870944 0) (-0.002685447615 0.06124749414 0) (-0.002742416136 0.06139490024 0) (-0.00031114848 0.06121490978 0) (-0.0001553990778 0.06121887332 0) (-0.0007849399553 0.06120481463 0) (-0.0006242983495 0.06120320779 0) (-0.0006863092187 0.06076262747 0) (-0.000685210583 0.06091948584 0) (-0.0003153451856 0.06315730146 0) (-0.0003198927384 0.0629224574 0) (-0.0003181926532 0.06300070343 0) (-7.863204091e-05 0.06292384647 0) (-0.0001545731324 0.06307948895 0) (-0.0002354246171 0.06307916015 0) (-0.0002374120554 0.06300107644 0) (-0.0002393811299 0.06292293433 0) (0.0004819075425 0.06075411985 0) (0.0004841911394 0.06106769032 0) (0.0005043425574 0.06137416854 0) (0.0001737133863 0.06137584811 0) (0.0001626779784 0.0612225286 0) (1.874154371e-06 0.06122166055 0) (1.132086071e-05 0.06137542858 0) (0.002526035789 0.06198280357 0) (0.002195460767 0.06198411862 0) (0.002186202404 0.06167281284 0) (0.00251676265 0.06167146877 0) (0.001522160525 0.06167635247 0) (0.001532770191 0.06198721145 0) (0.001483202281 0.06074682786 0) (0.001497423833 0.06105565055 0) (0.001559158133 0.06292265366 0) (0.001542582211 0.06229854233 0) (0.002534539352 0.06229446441 0) (0.002204080739 0.06229576404 0) (-0.001688169949 0.07601999649 0) (-0.001833012775 0.07682900185 0) (-0.002839847647 0.07681615421 0) (-0.002503846132 0.07682197442 0) (-8.629741742e-05 0.07609501493 0) (-0.000201749233 0.07608992917 0) (-0.0001894159468 0.07599288603 0) (-8.258512101e-05 0.07601913842 0) (-0.0003050071904 0.07608205277 0) (-0.0003219085938 0.07599764804 0) (-0.00109320806 0.07811878425 0) (-0.001079442268 0.07843282457 0) (-0.00111016234 0.07749171895 0) (-0.000419804991 0.07749527024 0) (-0.000436722545 0.07718024787 0) (0.0001370824924 0.07607869777 0) (3.173531778e-05 0.07608906193 0) (3.045876962e-05 0.07601053361 0) (0.0001245404892 0.07597670114 0) (0.002698980531 0.07646658959 0) (0.002365842233 0.07647193017 0) (0.002030833226 0.07648039548 0) (0.002033060456 0.07616022621 0) (0.002033947783 0.07600006893 0) (0.001656384981 0.07809128825 0) (0.001653963869 0.07840483472 0) (0.001672383421 0.07745610325 0) (0.002358784524 0.07742880528 0) (0.001287788388 0.07473189794 0) (0.001203398002 0.07473248921 0) (0.001202692416 0.07465240219 0) (0.001201947771 0.07457235187 0) (0.001033659931 0.07586142082 0) (0.001035613744 0.0756993074 0) (0.001204506669 0.07553292495 0) (0.001036736562 0.07561708639 0) (0.001370766586 0.07553059264 0) (0.004017438522 0.07359575533 0) (0.003685911481 0.07359834448 0) (0.003690055148 0.07423132912 0) (0.004021696794 0.07422847697 0) (0.003026887414 0.0742369015 0) (0.00534507809 0.07444089509 3.58338359e-13) (0.004687409624 0.07453838264 0) (0.004019423871 0.07391237209 0) (0.004027491203 0.07517613198 0) (-0.004215018333 0.07113952545 0) (-0.004213245231 0.07145299768 0) (-0.004211456504 0.07176661545 0) (-0.003215008316 0.07207322259 0) (-0.003216898782 0.07175963469 0) (-0.00387978191 0.0717642874 0) (-0.003877949702 0.07207787572 0) (-0.003885144485 0.07082392928 0) (-0.003883387538 0.07113718315 0) (-0.003872287142 0.073019426 0) (-0.003870332692 0.07333379995 0) (-0.003876087093 0.0723916386 0) (-0.003213072885 0.07238698494 0) (0.001341149878 0.07219399543 0) (0.001247446261 0.07219454675 0) (0.001279265123 0.07314393192 0) (0.001363437511 0.07314340632 0) (0.003995227987 0.07106993148 0) (0.003664047945 0.07107216854 0) (0.003670217256 0.07170330322 0) (0.004001469272 0.07170094912 0) (0.002677043147 0.0717102739 0) (0.003007975384 0.07170800952 0) (0.005330832562 0.07200660643 3.587824482e-13) (0.004667394265 0.07201198787 0) (0.00399841401 0.07138541798 0) (0.004009940636 0.07264818847 0) (-0.004228548179 0.06863168457 0) (-0.004226919872 0.06894527438 0) (-0.004225277212 0.06925883495 0) (-0.003229686942 0.06956563768 0) (-0.003231447177 0.06925193232 0) (-0.003893777391 0.06925650817 0) (-0.003892089978 0.06957021407 0) (-0.003898675816 0.0683158845 0) (-0.003897077486 0.068629358 0) (-0.00388690122 0.07051070454 0) (-0.003890374284 0.06988380324 0) (-0.003227898533 0.06987921176 0) (-0.002402131683 0.0697168269 0) (-0.002403113486 0.06956001137 0) (-0.002400183702 0.07003031242 0) (-0.002565416791 0.07003144291 0) (-0.001741062258 0.0698691266 0) (-0.001905960579 0.06987022553 0) (-0.001906956416 0.06971348292 0) (-0.001907952783 0.0695566675 0) (-0.001899654291 0.07081016895 0) (-0.001900706158 0.07065373262 0) (-0.001901759297 0.07049712152 0) (-0.001736715545 0.07049599241 0) (-0.001571042796 0.07057323364 0) (0.001250768836 0.06966878456 0) (0.001165407417 0.06966963925 0) (0.001167319997 0.06959046388 0) (0.001168434585 0.06951151279 0) (0.001253401238 0.07061525078 0) (0.001340530026 0.07061428126 0) (0.003967011788 0.06855344392 0) (0.003636033737 0.06855541733 0) (0.003643476048 0.06918335298 0) (0.003974483121 0.06918136479 0) (0.00298191329 0.06918731151 0) (0.00530060764 0.06944157376 3.585465258e-13) (0.004640873537 0.06949231276 0) (0.003970666767 0.06886732483 0) (0.003985320341 0.07012546997 0) (-0.004240636154 0.06612383319 0) (-0.004239198244 0.06643727873 0) (-0.004237731311 0.06675070949 0) (-0.003242886262 0.06705718266 0) (-0.003244366699 0.06674389764 0) (-0.003906289429 0.06674842683 0) (-0.003904837909 0.06706174119 0) (-0.003910573605 0.06580814825 0) (-0.003909165142 0.06612155031 0) (-0.003900259793 0.06800238176 0) (-0.003903341317 0.06737524457 0) (-0.003241345978 0.06737068571 0) (-0.002416890025 0.06720829584 0) (-0.00241774043 0.06705152304 0) (-0.002415145203 0.06752188479 0) (-0.002580014289 0.06752299807 0) (-0.001674783387 0.0673601656 0) (-0.001675456183 0.067281781 0) (-0.001922174508 0.06736182159 0) (-0.001923185227 0.0672050354 0) (-0.001758738401 0.06720393976 0) (-0.001758109192 0.06728233923 0) (-0.001757581932 0.06736073945 0) (-0.00192419584 0.06704826377 0) (-0.001759894764 0.06704715463 0) (-0.001759280225 0.06712553965 0) (-0.001916344282 0.06830239478 0) (-0.001917339907 0.0681456813 0) (-0.001918292051 0.06798893838 0) (-0.001753757733 0.06798785667 0) (0.001309118525 0.06731003315 0) (0.001144593708 0.06731061958 0) (0.0009780615677 0.06715377164 0) (0.001071920487 0.06817554519 0) (0.001072935497 0.06825432054 0) (0.001069788642 0.06793921246 0) (0.001070465518 0.06801775724 0) (0.0013169487 0.06793822815 0) (0.001153125307 0.06801733004 0) (0.001152332022 0.06793880068 0) (-0.004252284758 0.0636163136 0) (-0.004584469317 0.06361861624 0) (-0.004581243634 0.06424554847 0) (-0.004249204825 0.06424323233 0) (-0.004913530037 0.06424786641 0) (-0.003254023206 0.06454992152 0) (-0.003255315366 0.06423648948 0) (-0.002925125275 0.06423431789 0) (-0.00391747155 0.06424096211 0) (-0.003916092003 0.06455439351 0) (-0.003921902749 0.06330049525 0) (-0.003920405945 0.06361402776 0) (-0.00391196814 0.0654946587 0) (-0.00391469768 0.06486785394 0) (-0.002922540318 0.06486126936 0) (-0.003252716269 0.06486338258 0) (-0.002429451941 0.06470136551 0) (-0.002430142351 0.06454456242 0) (-0.002428030929 0.06501449074 0) (-0.002757714289 0.06486024378 0) (-0.00259310768 0.06485908872 0) (-0.002592434274 0.06501555693 0) (-0.001692599958 0.06485369592 0) (-0.001691335802 0.06477528266 0) (-0.001937196845 0.06485504026 0) (-0.001937886193 0.06469838282 0) (-0.001855757184 0.0646978721 0) (-0.001773278736 0.06469734427 0) (-0.001773508504 0.0647757937 0) (-0.001773942917 0.06485414266 0) (-0.001938605944 0.06454155081 0) (-0.001856360419 0.06454103925 0) (-0.001856022391 0.06461945541 0) (-0.001938165965 0.06461996623 0) (-0.001931355767 0.06579510359 0) (-0.001932423577 0.06563847804 0) (-0.001768180016 0.06563747127 0) (-0.001767303849 0.06571578155 0) (-0.00176676298 0.06579405059 0) (-0.001933492448 0.06548170684 0) (-0.00176962756 0.06548070283 0) (-0.001768809119 0.06555908636 0) (-0.001686243391 0.06555854333 0) (-0.001687294861 0.06548016149 0) (0.0001193051265 0.06448821398 0) (0.0001197587439 0.06456670212 0) (0.0001197523685 0.06464542666 0) (3.608049216e-05 0.0646460797 0) (0.001108978305 0.06495731527 0) (0.001273125721 0.06495690638 0) (0.000781319801 0.06495790996 0) (0.0007722333772 0.06448781396 0) (0.0007753911715 0.06464442429 0) (0.000958352595 0.0657414478 0) (0.000955732515 0.06558467333 0) (0.0009531588002 0.06542766548 0) (0.001117054465 0.06542728755 0) (0.0012811508 0.06542686446 0) (-0.004188537544 0.06110171977 0) (-0.004522308768 0.06110415048 0) (-0.004595821443 0.06173580719 0) (-0.004263345598 0.06173350243 0) (-0.004928534561 0.06173753106 0) (-0.003265876242 0.0620423306 0) (-0.003267956753 0.06172664671 0) (-0.002937182955 0.0617266265 0) (-0.003931146793 0.061731156 0) (-0.003929008131 0.0620468249 0) (-0.003857049917 0.06078571859 0) (-0.00385476632 0.06109928906 0) (-0.00392350023 0.06298713826 0) (-0.003927029855 0.06236047042 0) (-0.002933503974 0.06235380304 0) (-0.003264014375 0.06235599153 0) (-0.002440707202 0.06219385762 0) (-0.002441615123 0.06203718721 0) (-0.002439035839 0.06250735973 0) (-0.002932640065 0.06251043009 0) (-0.002767755991 0.06250937496 0) (-0.001691792773 0.06218853469 0) (-0.001779366092 0.06218946375 0) (-0.001780518451 0.0621112283 0) (-0.001782849887 0.06203308883 0) (-0.001776619957 0.06328654709 0) (-0.001777799854 0.06320853031 0) (-0.001779387447 0.06313053108 0) (-0.001694143258 0.06312977919 0) (-0.001538957326 0.05826043143 0) (-0.001536673729 0.0585740019 0) (-0.001870434758 0.05857643254 0) (-0.001872718355 0.05826286207 0) (-0.001865868625 0.05920342783 0) (-0.001532107596 0.0592009972 0) (-0.002867167733 0.05921071986 0) (-0.002533411073 0.05920828925 0) (-0.0005308084888 0.05919370517 0) (-0.0001970416344 0.05919127449 0) (-0.001198340742 0.05919856652 0) (-0.001205190472 0.05825800075 0) (-0.001202906875 0.05857157122 0) (-0.0008543360988 0.06060713041 0) (-0.0006874271838 0.06060591488 0) (-0.0008577245529 0.06013684726 0) (-0.0006908403973 0.06013563192 0) (-0.0006897005857 0.06029234434 0) (-0.0008565847412 0.06029355968 0) (-0.0001901908593 0.0601319859 0) (-0.0003547924629 0.06044662607 0) (-0.000521675162 0.06044784141 0) (-0.0005228164301 0.06029112899 0) (-0.0005239576982 0.06013441658 0) (-0.00154419697 0.07426354902 0) (-0.001378519881 0.07426238616 0) (-0.001377758976 0.07434146924 0) (-0.00129445661 0.07434087715 0) (-0.001295227816 0.07426177958 0) (-0.001292871999 0.07457766684 0) (-0.001293341411 0.07449900985 0) (-0.001300159601 0.07339437503 0) (-0.001300235182 0.07331579674 0) (-0.001300983125 0.0736310934 0) (-0.001300792949 0.07355220731 0) (-0.001549228353 0.07363266822 0) (-0.001384003665 0.07355278417 0) (-0.001383786358 0.0736316236 0) (-0.001530236756 0.07553828597 0) (-0.001364200039 0.07553870518 0) (-0.001198341835 0.07553841199 0) (-0.001194518135 0.07570226072 0) (-0.001190329085 0.07586567725 0) (-0.001208671542 0.07473599555 0) (-0.001372909226 0.07489560918 0) (-0.001538642855 0.07489640832 0) (0.001362446253 0.07346029236 0) (0.001275352836 0.0734605188 0) (0.001201691751 0.07449259658 0) (0.001202177558 0.07441330488 0) (0.001286833193 0.07441293598 0) (0.002199014076 0.07440403537 0) (0.002199631492 0.07456281548 0) (0.002197633535 0.07408646748 0) (0.002363199376 0.07408502869 0) (0.001535949123 0.07425172107 0) (0.001701614051 0.0742498883 0) (0.001702232348 0.07440878929 0) (0.001702776784 0.07456754808 0) (0.001696512528 0.07329937639 0) (0.001697418612 0.07345779464 0) (0.001531459639 0.07345925085 0) (0.001530852664 0.07337990448 0) (0.001530625104 0.0733006573 0) (0.001698496392 0.07361578924 0) (0.001532843483 0.07361727236 0) (0.001532021755 0.07353843733 0) (0.001448553885 0.07353910345 0) (0.001449638196 0.07361799483 0) (-0.001730193443 0.07143557013 0) (-0.001731232761 0.07127885697 0) (-0.001565752185 0.07127771011 0) (-0.002061727961 0.07128113274 0) (-0.002060702995 0.07143787513 0) (-0.002063791714 0.07096775002 0) (-0.0022218779 0.07206625223 0) (-0.002222902653 0.07190953897 0) (-0.00205756772 0.07190839316 0) (-0.002056528509 0.07206509176 0) (-0.00205960489 0.07159466068 0) (-0.002224925152 0.07159582094 0) (-0.001563950272 0.07159113844 0) (-0.001729197395 0.07159234186 0) (-0.002555696863 0.07159812785 0) (-0.002390289214 0.07159696696 0) (-0.002389306775 0.07175386987 0) (-0.002223927937 0.07175275288 0) (-0.001563141651 0.07174817371 0) (-0.001398433911 0.0717471053 0) (-0.001398235063 0.07182560986 0) (-0.001316709124 0.07182508897 0) (-0.001316768047 0.07174659795 0) (-0.001314533998 0.07205996487 0) (-0.00131540132 0.07198166909 0) (-0.00131567679 0.07088404342 0) (-0.001316989541 0.07080598392 0) (-0.001311937241 0.07111893705 0) (-0.001313131229 0.07104058539 0) (-0.001566879101 0.07112096846 0) (-0.001567406148 0.07104259738 0) (-0.001484140298 0.07104199099 0) (-0.001483480716 0.07112036111 0) (-0.001553592461 0.07300341386 0) (-0.001387481778 0.07300218959 0) (-0.001386564166 0.07308079087 0) (-0.001302305347 0.07308013356 0) (-0.001303291411 0.07300153277 0) (-0.001300656758 0.07323730836 0) (-0.001313650018 0.07213834793 0) (-0.001310886195 0.0723738604 0) (-0.001311816066 0.07229537573 0) (-0.00155855862 0.07237548931 0) (-0.001394158854 0.0722959317 0) (-0.001393406773 0.0723744031 0) (0.001348277816 0.07092976366 0) (0.001265597135 0.07093032209 0) (0.001245538005 0.07187871595 0) (0.001339027286 0.07187793315 0) (0.002182349901 0.07187180617 0) (0.00218367676 0.07203000287 0) (0.002179627285 0.07155595217 0) (0.002675617308 0.07155248574 0) (0.002510239 0.07155367556 0) (0.001432954405 0.07171907189 0) (0.001431083107 0.07179811587 0) (0.001685107432 0.07171729383 0) (0.001685551336 0.07179624813 0) (0.001602214121 0.07179685503 0) (0.00160185824 0.07171798748 0) (0.001687309761 0.07203370509 0) (0.001603593874 0.07203431475 0) (0.001603016982 0.07195509925 0) (0.001686630919 0.07195449033 0) (0.001676837742 0.07076974714 0) (0.001678497035 0.07092759186 0) (0.001513496552 0.0709286624 0) (0.001512440734 0.07084968343 0) (0.00151148782 0.07077083479 0) (0.001680112848 0.07108546603 0) (0.001515403652 0.07108653445 0) (0.001514479549 0.07100764191 0) (0.001432219672 0.07100818271 0) (0.00143343485 0.071087044 0) (0.001447353887 0.07298432665 0) (0.00144723169 0.07306354725 0) (0.001694888636 0.07298239288 0) (0.001695707864 0.07314088458 0) (0.001530170303 0.07314220664 0) (0.001529971448 0.073062901 0) (0.001529758559 0.07298366828 0) (0.001530295806 0.07322144 0) (0.001687856146 0.07211273147 0) (0.001604227644 0.07211334049 0) (0.001690060975 0.07234948605 0) (0.001606751829 0.0723499471 0) (0.001605886089 0.0722710687 0) (0.001689252539 0.07227047614 0) (0.001434536398 0.072272302 0) (0.001437617828 0.07235142644 0) (0.002518218994 0.07250144283 0) (0.002683684476 0.07250022325 0) (0.002187419958 0.07250399754 0) (0.002184943452 0.07218793784 0) (-0.001749586216 0.06861466549 0) (-0.001914266071 0.06861576283 0) (-0.001915305495 0.06845903511 0) (-0.001908964563 0.06939973567 0) (-0.001910019611 0.06924286241 0) (-0.001744859345 0.06924173245 0) (-0.002571088612 0.06909062096 0) (-0.002405986496 0.06908950599 0) (-0.002404081466 0.06940309378 0) (-0.001493390783 0.06939676748 0) (-0.00140649812 0.06939597447 0) (-0.001406266913 0.06947452249 0) (-0.00140695056 0.06955304805 0) (-0.001425380891 0.06829929995 0) (-0.001424022962 0.06837756304 0) (-0.001422624465 0.06845579669 0) (-0.001504392278 0.06845630478 0) (-0.001488298138 0.07057266017 0) (-0.00132113591 0.07057142824 0) (-0.001318341616 0.0707279247 0) (-0.001408486326 0.06963156525 0) (-0.001410339702 0.06971007019 0) (-0.001493869166 0.0697106785 0) (0.001324317221 0.0685674315 0) (0.001241691779 0.06856797496 0) (0.001158631259 0.06856837594 0) (0.001157980888 0.06848967075 0) (0.001074782749 0.06849017469 0) (0.001074690656 0.06856892899 0) (0.001073941315 0.0683328338 0) (0.001167824995 0.06943280731 0) (0.001165983819 0.06935438753 0) (0.001249568733 0.06935379338 0) (0.002157421845 0.06934882774 0) (0.002159106236 0.0695061188 0) (0.002153851388 0.06903455295 0) (0.002318984223 0.06903365623 0) (0.001495790384 0.06919535236 0) (0.00166080681 0.06919447105 0) (0.001662519058 0.06935158712 0) (0.001664217801 0.06950884895 0) (0.001816765219 0.06840779448 0) (0.001814790601 0.06825065119 0) (0.001820364593 0.06872203993 0) (0.001326012175 0.06872437292 0) (0.001490796526 0.06872362439 0) (0.001424411668 0.07045603206 0) (0.001424883003 0.07053475312 0) (0.001673711355 0.07045444956 0) (0.0016751928 0.07061187319 0) (0.001509550955 0.07061287557 0) (0.001508613243 0.07053411422 0) (0.001508127449 0.07045540783 0) (0.001510402979 0.0706918706 0) (0.001665844996 0.06966628608 0) (0.001667560214 0.06982380996 0) (0.001502544106 0.06982473496 0) (0.001501664226 0.06974591493 0) (0.001418865044 0.0697464014 0) (0.001419715901 0.06982523621 0) (0.002329456909 0.0699777058 0) (0.00216431057 0.06997874828 0) (0.002160893957 0.06966359846 0) (-0.001681275899 0.06610665099 0) (-0.001681249183 0.06602831957 0) (-0.001929540669 0.06610834248 0) (-0.001930375449 0.06595171522 0) (-0.001765535386 0.06595061672 0) (-0.001764906707 0.06602894337 0) (-0.001764831579 0.06610725949 0) (-0.001765916471 0.06587228826 0) (-0.001925190934 0.06689162312 0) (-0.001761021043 0.06689050037 0) (-0.001760436269 0.06696879821 0) (-0.001926184544 0.06673518637 0) (-0.001762144883 0.06673418109 0) (-0.001761590299 0.0668123335 0) (-0.00167957791 0.06681180906 0) (-0.001680248903 0.06673367206 0) (-0.002584938555 0.06658282611 0) (-0.002420243923 0.0665817578 0) (-0.002418575423 0.06689486666 0) (-0.001596597415 0.06688941946 0) (-0.001513998295 0.06688886163 0) (-0.001428841673 0.06696648531 0) (-0.001426628711 0.06704475673 0) (-0.00150661823 0.06594825049 0) (-0.001595545927 0.06594920398 0) (-0.001507681395 0.06814306207 0) (-0.001427400177 0.06814262306 0) (-0.001426593494 0.06822099212 0) (-0.001424421362 0.06712305732 0) (-0.001422215469 0.06720135792 0) (-0.001508244678 0.06720211552 0) (-0.001592819544 0.06720277514 0) (0.001291365363 0.06605427014 0) (0.001127212758 0.06605476646 0) (0.0009631904892 0.06605515988 0) (0.0009606576893 0.06589837021 0) (0.0009751349418 0.06691830405 0) (0.0009741087332 0.06683979094 0) (0.0009719345345 0.06668304236 0) (0.001136299249 0.06668247166 0) (0.001300598106 0.06668185775 0) (-0.001689754406 0.06344243129 0) (-0.00177652711 0.06344329626 0) (-0.001776093546 0.06336483079 0) (-0.001938973101 0.06446313487 0) (-0.001856800505 0.06446260926 0) (-0.001857970901 0.06430589706 0) (-0.001939939703 0.06430640662 0) (-0.001691209086 0.06430468261 0) (-0.002760973288 0.06407673672 0) (-0.002925770083 0.06407777664 0) (-0.002432165962 0.06407469172 0) (-0.002430832654 0.0643877739 0) (-0.001603280686 0.06438211133 0) (-0.0015156722 0.06438121114 0) (-0.001601016331 0.06563623932 0) (-0.001515323559 0.06563548417 0) (-0.001519269419 0.06469526139 0) (-0.001605020342 0.06469603153 0) (0.001251062847 0.06386115806 0) (0.001086739733 0.06386164106 0) (0.000922654915 0.06386184559 0) (0.0009189365278 0.06370545782 0) (0.0007552328719 0.06370560131 0) (0.0007588402518 0.0638619462 0) (0.0007431552644 0.06323717295 0) (0.0007473618186 0.06339319304 0) (0.0007692047038 0.06433133377 0) (0.000762474378 0.06401836372 0) (0.001254278658 0.06401753493 0) (0.001090039487 0.0640179445 0) (3.489183688e-05 0.06433186039 0) (0.0001169328811 0.06433167075 0) (0.000118270314 0.06440991941 0) (-0.001601755891 0.06100728838 0) (-0.001519702445 0.06100800168 0) (-0.001852167547 0.06100678159 0) (-0.001768506735 0.06100660928 0) (-0.001854377819 0.06077127965 0) (-0.001769458164 0.06092796455 0) (-0.001853045093 0.06092828197 0) (-0.001785734131 0.06195504078 0) (-0.002769555782 0.06156623808 0) (-0.002934604837 0.06156663898 0) (-0.002440617695 0.06156414844 0) (-0.002442609793 0.06188060481 0) (-0.0004325331197 0.06198792008 0) (-0.0004391676209 0.06183290809 0) (-0.0004458131656 0.06167777967 0) (-0.0002885962214 0.06168021774 0) (-0.0001300602552 0.06168213644 0) (-0.00118744204 0.06076671395 0) (-0.001187135831 0.0609241607 0) (-0.001271238197 0.06092550144 0) (-0.001272264069 0.06100503448 0) (-0.001187999644 0.06100354691 0) (-0.001438738286 0.06100814031 0) (-0.0001007805591 0.06230137789 0) (-0.0002610087904 0.06230012695 0) (-0.0004231464078 0.06222084999 0) (-0.0004262621685 0.06214321144 0) (-0.004200108123 0.07365091017 0) (-0.004198047692 0.07396583682 0) (-0.004195915075 0.07428067556 0) (-0.003198420292 0.07458899522 0) (-0.003200626589 0.07427403904 0) (-0.003864035626 0.0742784771 0) (-0.003861931575 0.07459339324 0) (-0.003868287568 0.07364862475 0) (-0.003854128041 0.07554293 0) (-0.003850911851 0.07586055895 0) (-0.003859362136 0.07491021402 0) (-0.003195791725 0.074905935 0) (-0.002203909372 0.07458358783 0) (-0.002202522728 0.07474199384 0) (-0.002201135798 0.07490043917 0) (-0.002199539218 0.0750596724 0) (-0.001700704612 0.07521680798 0) (-0.001702568346 0.07505689067 0) (-0.002033867841 0.07505872515 0) (-0.002032214903 0.07521769726 0) (-0.002038281677 0.07458264235 0) (-0.002036895511 0.07474098282 0) (-0.002028060084 0.07553821331 0) (-0.001862000424 0.07553858283 0) (-0.0018596219 0.07569918823 0) (-0.001856639626 0.07586069708 0) (-0.002030457691 0.07537698758 0) (-0.001698396343 0.07537776637 0) (0.0006051028968 0.07570600234 0) (0.0006929595041 0.0757059728 0) (-0.002220837628 0.07222309646 0) (-0.002219796613 0.07238004265 0) (-0.002218756765 0.07253682863 0) (-0.001721521509 0.07269035059 0) (-0.00172266458 0.07253339058 0) (-0.002053349116 0.07253566773 0) (-0.002052278867 0.07269262827 0) (-0.002055473672 0.07222193588 0) (-0.002049006361 0.07316399008 0) (-0.002047905816 0.07332111061 0) (-0.002051192674 0.07284977803 0) (-0.001720362388 0.07284751439 0) (0.003937422797 0.06635645232 0) (0.003606267323 0.0663580629 0) (0.003275431416 0.06635955463 0) (0.00327086111 0.06604598625 0) (0.003611010916 0.06667142611 0) (0.003941977478 0.06666987517 0) (0.002949662381 0.06667480047 0) (0.005235621557 0.06650274164 3.56242813e-13) (0.004609106115 0.06698019146 0) (0.003954935717 0.06761122666 0) (0.0004610400648 0.06542871503 0) (0.0004597511961 0.06535033493 0) (0.0003766871551 0.06535085246 0) (0.0003742236755 0.06511538149 0) (0.0003751153616 0.06519382275 0) (0.0004664217397 0.06574249598 0) (0.0004653086754 0.06566405634 0) (0.0004638726007 0.06558566274 0) (0.0005463059278 0.06558533915 0) (0.000536417382 0.06199250117 0) (0.0005430518832 0.06214751315 0) (0.0003795857037 0.06214746557 0) (0.0003729965642 0.06199248238 0) (0.00039187273 0.06245805016 0) (0.0005550683307 0.06245814341 0) (6.637895376e-05 0.062457493 0) (0.001218913234 0.06261215615 0) (0.0008885449978 0.06261326578 0) (0.000549127566 0.06230279138 0) (0.0007387883963 0.06308113946 0) (0.0007342628052 0.06292531103 0) (0.000570529172 0.06292533822 0) (-0.001712281844 0.07394908863 0) (-0.001713518983 0.07379121171 0) (-0.002044466102 0.0737934325 0) (-0.002043272868 0.07395128062 0) (-0.002046789328 0.07347842037 0) (-0.002205131533 0.0744257676 0) (-0.002039533593 0.07442473641 0) (-0.002042051353 0.074109012 0) (-0.002207605176 0.07411010114 0) (-0.00171101653 0.07410683426 0) (-0.002206398119 0.0742678472 0) (-0.0008609709061 0.07570567225 0) (-0.0007774777704 0.07570647557 0) (-0.0006904807645 0.07579221042 0) (-0.0006866283966 0.07587679568 0) (-0.0007830835975 0.07537611532 0) (-0.000867577145 0.07537534113 0) (0.00153774923 0.07536690117 0) (0.001869925877 0.07536151225 0) (0.001868274547 0.07584276089 0) (0.001869026909 0.07568207094 0) (0.001703249872 0.07472650985 0) (0.001703662794 0.07488520988 0) (0.001537770065 0.07488776236 0) (0.002367399373 0.07503574817 0) (0.002201517264 0.07503775875 0) (0.00220024717 0.07472135673 0) (0.0005507213007 0.065899433 0) (0.0004679625807 0.06589987548 0) (0.0004672305436 0.06582115632 0) (0.0004673388889 0.06629363356 0) (0.0004675375138 0.06621490763 0) (0.0005524382746 0.06621399803 0) (0.0006362439309 0.06621331488 0) (0.001963385937 0.06699291934 0) (0.001961078248 0.06683604064 0) (0.00195903346 0.06667926198 0) (0.00146042691 0.06636744168 0) (0.001462720777 0.06652442244 0) (0.001794132276 0.06667996767 0) (0.001629477943 0.06668056961 0) (0.001627199913 0.06652376352 0) (0.00162490647 0.06636684102 0) (0.001798572351 0.06699365352 0) (0.001796308037 0.06683673081 0) (0.001620145767 0.06605312837 0) (0.001617852855 0.06589627869 0) (0.001615166811 0.06573944645 0) (0.001622671497 0.06620994722 0) (0.001458148562 0.0662105919 0) (0.001477584418 0.06762341295 0) (0.001479543411 0.06778041071 0) (0.00180892352 0.06777901697 0) (0.001806949644 0.06762197562 0) (0.001812931649 0.06809339053 0) (0.001965431892 0.06714985821 0) (0.001800647329 0.06715057761 0) (0.001804947276 0.06746502187 0) (0.001969731309 0.06746422964 0) (0.001475669754 0.06746650225 0) (0.001967611366 0.0673071311 0) (-0.000223178202 0.06378384815 0) (-0.0002233705239 0.06370513962 0) (-0.0001408588406 0.06370481546 0) (-5.894925864e-05 0.06370471416 0) (-0.0005741586698 0.06261050354 0) (-0.0005713470919 0.06268817343 0) (-0.0002417301218 0.06284482411 0) (-0.0003221268049 0.06284428809 0) (-0.0003295900758 0.06261067418 0) (-0.0003269924878 0.06268836019 0) (-0.0007800039197 0.0771783987 0) (-0.0007842317064 0.07702126307 0) (-0.0006145688512 0.07702180298 0) (-0.0006122747163 0.07717802052 0) (-0.000620920734 0.07670859859 0) (-0.0007985558683 0.07670355057 0) (-7.504608663e-05 0.07671649962 0) (-0.0002606667881 0.07671542487 0) (-0.001505665341 0.07651209283 0) (-0.001338100257 0.07651357872 0) (-0.001332474359 0.0766752951 0) (-0.001501938651 0.07667162079 0) (-0.0009823193202 0.07669219679 0) (-0.0009931620129 0.07652753984 0) (-0.0009504533067 0.07717745669 0) (-0.000960010097 0.07701737257 0) (-0.0008474469275 0.07603890811 0) (-0.001015157128 0.07603649562 0) (-0.001023668383 0.0758669785 0) (-0.001003241779 0.07636164367 0) (-0.001509910588 0.07635135974 0) (-0.001341762441 0.07635410856 0) (0.001364588555 0.07617546039 0) (0.00119719931 0.07617951961 0) (0.001028264933 0.07618561027 0) (0.00103120001 0.07602363842 0) (0.0006512845948 0.07716661049 0) (0.0006528658772 0.07700954326 0) (0.000821816009 0.07700661603 0) (0.0008211326503 0.07716338106 0) (0.0008353590671 0.07668527196 0) (0.0006594326978 0.07669326185 0) (0.001356503475 0.07665886288 0) (0.001185560601 0.07666615814 0) (0.0001203476335 0.0767129618 0) (0.0004857585368 0.0766989122 0) (0.0004805098509 0.07716999233 0) (0.0004809672115 0.07701359454 0) (0.001121421455 0.07513293525 0) (0.001121673362 0.07521332561 0) (0.001120125084 0.07497232488 0) (0.001204596225 0.07497162233 0) (0.001204378008 0.07489185802 0) (0.0007802102808 0.07562235406 0) (0.0009526168148 0.07561844036 0) (0.0008643520249 0.07586762052 0) (0.0008646781582 0.07578640331 0) (0.000866134083 0.07570372267 0) (0.0009516480503 0.0757006151 0) (0.0008648144807 0.07529632248 0) (0.000865105729 0.07537691501 0) (0.0007770432758 0.07537627897 0) (0.001037246706 0.07537533658 0) (0.001122078422 0.07537234613 0) (0.001122009437 0.0752928735 0) (0.001281982036 0.07251120319 0) (0.001361901287 0.07251046095 0) (0.00136641956 0.07282688448 0) (0.001286593839 0.07282766973 0) (0.001255469543 0.06998345894 0) (0.001338760894 0.06998295432 0) (0.001340800258 0.07029898807 0) (0.001257003022 0.07029962746 0) (0.0009815627316 0.0674687315 0) (0.001065946603 0.06762524551 0) (0.0007294659259 0.06747082958 0) (0.0008141550018 0.06747005261 0) (0.0008136452302 0.06754885364 0) (0.0008126735565 0.0676276289 0) (0.0008107127991 0.066997789 0) (0.0008115132601 0.06707630375 0) (0.000811901444 0.06715480693 0) (0.0007274763011 0.06715562568 0) (0.0008127553872 0.0677062654 0) (0.0008147881759 0.0677845964 0) (0.0007277978835 0.06778578338 0) (0.00115141547 0.06786034503 0) (0.001068926085 0.06786077099 0) (0.001066905285 0.06770368629 0) (-0.001935601591 0.0651680914 0) (-0.001936523863 0.06501145022 0) (-0.001773664021 0.06501043896 0) (-0.001773181304 0.06508872298 0) (-0.001772494049 0.06516709291 0) (-0.001773999929 0.06493231409 0) (-0.001693108464 0.06493187064 0) (-0.002264591853 0.06485701671 0) (-0.002100741529 0.06485601281 0) (0.0006149700614 0.0648013083 0) (0.0004516765898 0.06480137598 0) (0.0002851646555 0.06464470268 0) (0.0003696688314 0.06480153626 0) (0.0003732924534 0.06503691139 0) (0.0003710479991 0.0648799157 0) (0.0004530299659 0.06487981388 0) (-0.00178943644 0.06266066056 0) (-0.001789904594 0.06258237643 0) (-0.001788902702 0.06250395052 0) (-0.001710441893 0.06250374325 0) (-0.002276165196 0.06234983158 0) (-0.002112983666 0.06234899276 0) (-0.001949856523 0.06250468572 0) (-0.002031261822 0.0623485724 0) (-0.002032466305 0.06211317965 0) (-0.002033123795 0.0620348969 0) (-0.002031586665 0.06226996679 0) (-0.002113308297 0.06227041629 0) (-0.00227308696 0.06297651728 0) (-0.002109789552 0.06297559023 0) (-0.001945509067 0.06313165348 0) (-0.001948333879 0.06281776652 0) (-0.001706051769 0.06281657012 0) (-0.001786594219 0.0628169382 0) (-0.001788182979 0.06273877875 0) (-0.00129786838 0.0740253923 0) (-0.001298775536 0.07394642681 0) (-0.001296078171 0.07418281368 0) (-0.001379214503 0.07418340456 0) (-0.001040345063 0.07457663179 0) (-0.001037725912 0.07449687886 0) (-0.00103581879 0.07441735396 0) (-0.000945590659 0.07441596862 0) (-0.001383391287 0.07371027239 0) (-0.001300838667 0.07370972945 0) (-0.001299641835 0.07386727167 0) (-0.001202258869 0.07529594724 0) (-0.001201132167 0.07537645941 0) (-0.0009488120318 0.07553942769 0) (-0.0009503612951 0.07545729168 0) (-0.0011182688 0.07537558649 0) (-0.001034982341 0.07537581017 0) (-0.00103368121 0.07545707408 0) (-0.001032347472 0.07553821541 0) (-0.001119273507 0.07529542592 0) (-0.001028207328 0.07570311634 0) (-0.001025818712 0.07578550754 0) (-0.001030486287 0.07562038264 0) (-0.0009471017267 0.07562127706 0) (-0.0009584788184 0.07473523967 0) (-0.001041843624 0.07473545789 0) (-0.001041985668 0.07465615329 0) (-0.001036591663 0.07521442721 0) (-0.001036813207 0.07513400604 0) (-0.00103677979 0.07505419475 0) (-0.0009507564108 0.07505363674 0) (-0.001205065998 0.07505508822 0) (0.001285220419 0.07377787923 0) (0.001368239225 0.07377675029 0) (0.00136906526 0.07409417657 0) (0.001285011932 0.07409505087 0) (0.001200017719 0.0740957281 0) (0.001198722457 0.07401627022 0) (-0.001312583035 0.07151086009 0) (-0.001310934381 0.07143244402 0) (-0.001316045926 0.07166795559 0) (-0.001481057376 0.0715905202 0) (-0.001398048998 0.07158995938 0) (-0.001398387257 0.07166851155 0) (-0.00148283861 0.07119873136 0) (-0.001566220974 0.0711993386 0) (-0.001310894722 0.07119728982 0) (-0.001310116 0.07135401944 0) (-0.001306203791 0.07276602137 0) (-0.001307174047 0.07268739134 0) (-0.001304250306 0.07292306287 0) (-0.001388107255 0.07292370269 0) (-0.001392668755 0.07245274353 0) (-0.001309961965 0.07245217034 0) (-0.001308110063 0.07260886301 0) (0.001276344573 0.07124589917 0) (0.001355325619 0.0712455279 0) (0.001355137061 0.07156163614 0) (0.00127561319 0.07156206963 0) (0.001683040743 0.07140150788 0) (0.001684103216 0.07155940064 0) (0.00151897229 0.07156055952 0) (0.001519067586 0.07148164499 0) (0.001518637716 0.07140261776 0) (0.001518083035 0.07171845193 0) (0.001518454629 0.07163947713 0) (0.001435029922 0.07164007011 0) (0.002015747851 0.07171495874 0) (0.001850485846 0.07171611858 0) (0.001686141731 0.07187531788 0) (0.002010142625 0.07108328104 0) (0.001845069426 0.07108436668 0) (0.001681657111 0.0712435155 0) (0.001434621959 0.07116605115 0) (0.001517195509 0.07124458211 0) (0.001516401425 0.07116554297 0) (0.001518091014 0.07132354769 0) (0.001692904348 0.07266592177 0) (0.001693983825 0.07282414941 0) (0.001529174588 0.07282548073 0) (0.001528874949 0.07274633603 0) (0.00152824033 0.07266719377 0) (0.00152954673 0.0729045812 0) (0.001447404323 0.07290525223 0) (0.002025483347 0.07297978139 0) (0.001860149581 0.0729810874 0) (0.002020875954 0.07234712056 0) (0.001855541658 0.07234835375 0) (0.001688619829 0.07219159605 0) (0.001691504985 0.07250776929 0) (0.001440889655 0.07243069514 0) (0.001526185996 0.07250910432 0) (0.001524445016 0.07243004295 0) (0.001522877324 0.0723507764 0) (0.001527475056 0.07258811073 0) (-0.001414098026 0.06892599873 0) (-0.001412662481 0.0690043195 0) (-0.001411244945 0.06908256759 0) (-0.001496732571 0.06908329211 0) (-0.001500581093 0.068769835 0) (-0.001416971632 0.06876921154 0) (-0.001415535345 0.06884763427 0) (-0.00140987847 0.07018040379 0) (-0.0014089249 0.07025874264 0) (-0.001407962591 0.07033708143 0) (-0.001490452478 0.07033763847 0) (-0.001493247574 0.07002423194 0) (-0.001411642881 0.07002372504 0) (-0.001410805825 0.07010206475 0) (0.001076809201 0.06880463551 0) (0.001074931768 0.06864763716 0) (0.001325136404 0.06864591698 0) (0.001242501799 0.06864640225 0) (0.001245415384 0.06903947914 0) (0.001160659312 0.0690402566 0) (0.001161102724 0.06896154344 0) (0.001161305188 0.06888274465 0) (-0.001519673603 0.06657616063 0) (-0.001600294276 0.06657658754 0) (-0.001599086826 0.06626278774 0) (-0.001515580772 0.06626216503 0) (-0.001412378162 0.06767136106 0) (-0.001414068311 0.06774987939 0) (-0.001417702164 0.06782849925 0) (-0.001503887211 0.06782925799 0) (-0.001588456251 0.06782991756 0) (-0.001589211015 0.0675162777 0) (-0.001502830912 0.06751550298 0) (-0.001413863573 0.0675145929 0) (-0.001412545787 0.06759294366 0) (0.0007241282726 0.06668429355 0) (0.0007245859411 0.06676273797 0) (0.0008917091163 0.06684014341 0) (0.0008088134914 0.06684058689 0) (0.0008078666728 0.06676217516 0) (0.0008072388135 0.06668376111 0) (0.0008927484327 0.06691865642 0) (0.0009676260116 0.06636902055 0) (0.0009698512426 0.06652617659 0) (0.000805321951 0.06652674848 0) (0.0008042099965 0.06644806122 0) (0.0008033681188 0.06636945938 0) (0.0008062133475 0.06660534996 0) (0.0007232598894 0.06660585212 0) (0.0006378881115 0.06652808435 0) (0.0005516668168 0.06652926574 0) (0.0005528592335 0.06684360154 0) (0.0006395968202 0.06684231444 0) (-0.001780219546 0.06391427184 0) (-0.0017809506 0.06383588768 0) (-0.001781230583 0.06375744196 0) (-0.001701052136 0.0637570911 0) (-0.002270211989 0.06360329185 0) (-0.002106783607 0.06360234928 0) (-0.001943290553 0.06375828718 0) (-0.001943754772 0.06344454324 0) (-0.002267525506 0.06423018431 0) (-0.002103849742 0.06422921081 0) (-0.001939500361 0.06438473465 0) (-0.001941487367 0.06407189027 0) (-0.001696264637 0.06407048312 0) (-0.001778248216 0.06407096365 0) (-0.001779270026 0.06399265442 0) (-5.390443187e-05 0.06401838105 0) (-0.000137671863 0.06401909304 0) (-0.001525618736 0.065322409 0) (-0.001607511803 0.065322918 0) (-0.001613060275 0.06500963348 0) (-0.001534611542 0.06500936804 0) (0.0002698441544 0.06386177867 0) (0.0002732847092 0.06401841608 0) (0.0001104893875 0.06401808687 0) (0.0001088788588 0.06393973824 0) (0.0001072354685 0.06386147724 0) (0.000113881166 0.06417482659 0) (0.000112116043 0.06409644996 0) (3.031538818e-05 0.0640964485 0) (0.0006025194047 0.06417505499 0) (0.000439617502 0.06417509069 0) (0.000279932471 0.0643316489 0) (-0.002279916256 0.06172275752 0) (-0.002117083528 0.0617220232 0) (-0.002116614526 0.06180042384 0) (-0.002035402434 0.06180000719 0) (-0.002035973386 0.06172160729 0) (-0.00203383933 0.06195664371 0) (-0.002022193771 0.06148374587 0) (-0.002001330214 0.06139661102 0) (-0.002035699606 0.06164320124 0) (-0.002116780619 0.06164361694 0) (-0.0008439231832 0.0615157726 0) (-0.0009245358683 0.06151529642 0) (-0.0009296710601 0.06143856105 0) (-0.000939019915 0.0613634294 0) (-0.0008350249759 0.06182782383 0) (-0.0007545595744 0.06182847587 0) (-0.0007475074618 0.06214083183 0) (-0.0008299894877 0.06214106839 0) (-0.0004151514606 0.06245427069 0) (-0.0006605374328 0.06245406231 0) (-0.0005776847585 0.0624537211 0) (-0.0005759659233 0.06253214177 0) (-0.0005059061691 0.06214234951 0) (-0.000585557558 0.06214147306 0) (-0.0005880848413 0.06206364089 0) (-0.000590540229 0.06198588101 0) (-0.0005028000732 0.06222006095 0) (-0.000664185333 0.06221915344 0) (-0.004209087795 0.05827987683 0) (-0.004204521662 0.05890687212 0) (-0.00319865536 0.05952672104 0) (-0.003200938957 0.05921315057 0) (-0.003534710181 0.05921558128 0) (-0.003532426584 0.05952915175 0) (-0.003866183244 0.05953158235 0) (-0.003859333514 0.06047214812 0) (-0.003863899647 0.05984515282 0) (-0.003196371763 0.05984029151 0) (-0.002197356253 0.05951942901 0) (-0.002195072656 0.05983299948 0) (-0.001525258262 0.06014170862 0) (-0.001692139505 0.06014292394 0) (-0.001859017835 0.06014413924 0) (-0.002025910729 0.06014535465 0) (-0.0020224713 0.06061563743 0) (-0.002024769461 0.06030206706 0) (-0.001524124276 0.06029842108 0) (-0.001690998237 0.06029963635 0) (0.001131174598 0.05824098603 0) (0.001135740731 0.05886798132 0) (0.0004727742157 0.05949998362 0) (0.0004704906189 0.05918641315 0) (0.0001367252206 0.05918884382 0) (0.002475368062 0.0594853996 0) (0.001807840178 0.05949026092 0) (0.001480918684 0.06043325739 0) (0.001478636148 0.06011983256 0) (0.001144875119 0.0601222632 0) (0.0005877630846 0.06354940107 0) (0.0004249312744 0.06354926147 0) (0.0002659994816 0.06370545008 0) (0.0001036503309 0.06370498653 0) (2.24617745e-05 0.06370483497 0) (0.0001055890593 0.06378320169 0) (0.001178958336 0.06136737671 0) (0.0008418767775 0.06137085108 0) (0.0005216548768 0.06168299785 0) (2.118016244e-05 0.06152925187 0) (0.0001929288057 0.06168360031 0) (0.0001839401054 0.06152952307 0) (0.000209024606 0.06199258413 0) (0.0002013045874 0.06183791505 0) (-0.0004536369888 0.07655305266 0) (-0.0004640182201 0.07639316097 0) (-0.0003717896311 0.07639706713 0) (-0.000374117044 0.07631868002 0) (-0.0004695120062 0.07631278548 0) (-7.75023069e-05 0.07632740151 0) (-0.0001764875198 0.07632672412 0) (-0.0008395602594 0.07620386056 0) (-0.0007509997809 0.07621028261 0) (-0.0006611884222 0.07621706842 0) (-0.0006572718665 0.07629786759 0) (-0.0005693217713 0.07630167527 0) (-0.0005744559603 0.0762202776 0) (-0.0005658792755 0.07638157923 0) (-0.0005937041051 0.07596943172 0) (-0.0005783452641 0.07613982051 0) (-0.0008440227295 0.07612089953 0) (-0.0007571141432 0.07612589312 0) (0.0006903011917 0.07603814833 0) (0.0006046209714 0.07604102698 0) (0.0005170246711 0.07604560041 0) (0.0005187493193 0.07596161933 0) (0.000312402685 0.07654747101 0) (0.0003170497441 0.07638897883 0) (0.000406609588 0.07638482806 0) (0.0004098200943 0.07630447657 0) (0.0003179880186 0.07631001738 0) (0.0005028398342 0.07629701908 0) (0.0005089958922 0.07621333403 0) (2.945768378e-05 0.0763249301 0) (0.000227261496 0.07631416644 0) (0.0002269468263 0.07639275777 0) (0.00116520639 0.06982723534 0) (0.001164273577 0.06974854678 0) (0.001078934343 0.06967064769 0) (-0.001920167633 0.06767539407 0) (-0.001921163788 0.06751860778 0) (-0.001756454804 0.06751751023 0) (-0.001755840265 0.06759589524 0) (-0.001755429521 0.06767429631 0) (-0.001756952829 0.06743912436 0) (-0.001674096026 0.06743855008 0) (-0.002251301295 0.067364 0) (-0.002086694261 0.06736290319 0) (-0.002247622632 0.06799113284 0) (-0.002082899084 0.06799003519 0) (-0.001919229736 0.06783218079 0) (-0.001754564339 0.06783109813 0) (-0.001671751229 0.06783052416 0) (-0.001754916826 0.06775269664 0) (-0.002261498628 0.06548376056 0) (-0.002097415487 0.06548272583 0) (-0.001934561636 0.06532489194 0) (-0.001688317202 0.06540177945 0) (-0.001771075315 0.06532390525 0) (-0.001770315027 0.06540230377 0) (-0.001771806476 0.06524550652 0) (-0.001782807397 0.06234692323 0) (-0.001780133681 0.06226806275 0) (-0.00194938873 0.06219092043 0) (-0.00186536731 0.06219026484 0) (-0.00135837702 0.06014049329 0) (-0.001357247403 0.06029720579 0) (-0.001023473266 0.06029477506 0) (-0.001024608708 0.0601380626 0) (-0.001021274142 0.06060834614 0) (-0.0008622902902 0.05950970631 0) (-0.0008600066933 0.05982327678 0) (-0.001191492864 0.06013927795 0) (0.001700250514 0.07393265529 0) (0.001700996284 0.07409106014 0) (0.001535402799 0.07409270303 0) (0.001535015456 0.07401351528 0) (0.00153471465 0.07393421038 0) (0.001452443409 0.07409319067 0) (0.002032843441 0.07424642742 0) (0.001867264202 0.07424802652 0) (0.002029482431 0.07361291273 0) (0.001864018328 0.07361432165 0) (0.001699473282 0.07377393024 0) (0.001450576863 0.07369688726 0) (0.00153403746 0.07377522242 0) (0.001533476405 0.07369618159 0) (0.001534397477 0.07385465798 0) (-0.001912127163 0.06892946544 0) (-0.001913196564 0.06877262142 0) (-0.002243858705 0.06861797376 0) (-0.002079018748 0.0686168607 0) (-0.001341163959 0.06845529084 0) (-0.001419810495 0.06861239497 0) (-0.00142121993 0.06853405943 0) (0.00108183537 0.06935500034 0) (0.001161761342 0.06919758103 0) (0.001163715194 0.06927607282 0) (0.001657352125 0.06888009346 0) (0.001659064373 0.06903720954 0) (0.001990664466 0.06919265144 0) (0.001825721074 0.06919356135 0) (0.001670908036 0.07013951375 0) (0.00167230411 0.07029721474 0) (0.001507141192 0.0702979806 0) (0.00150665508 0.07021923052 0) (0.0015060077 0.07014033596 0) (0.001507539493 0.07037667306 0) (0.001424260218 0.07037723585 0) (0.002004004351 0.07045240831 0) (0.001838901599 0.0704534359 0) (0.001997535021 0.0698220769 0) (0.001832533478 0.06982300179 0) (0.001669247469 0.06998149426 0) (0.001420667648 0.06990392464 0) (0.00150430291 0.06998224396 0) (0.001503379656 0.06990346794 0) (0.001505198733 0.07006125323 0) (-0.00192807363 0.06642178781 0) (-0.001928822085 0.06626501427 0) (-0.001764622853 0.06626392044 0) (-0.001764459703 0.06634232331 0) (-0.001764194496 0.06642074 0) (-0.001764610913 0.06618555999 0) (-0.00168165216 0.06618498497 0) (-0.002258216173 0.06611048847 0) (-0.002093885756 0.06610940824 0) (-0.002254831025 0.06673731759 0) (-0.002090413222 0.06673623672 0) (-0.001927150403 0.06657856007 0) (-0.00168093531 0.06665541866 0) (-0.001763270845 0.06657757052 0) (-0.001762729339 0.06665592694 0) (-0.001763798104 0.0664991703 0) (-0.001425622354 0.06798574374 0) (-0.001427314171 0.06806423295 0) (-0.001348611169 0.06814228232 0) (-0.001335430584 0.06720056569 0) (-0.001417834164 0.06735797391 0) (-0.00142001384 0.06727967312 0) (0.0009653762619 0.06621209773 0) (0.0007171509037 0.06605580104 0) (0.0007181739872 0.06613428503 0) (0.0008013981107 0.06621254909 0) (0.0008003017811 0.06613400737 0) (0.000799226266 0.06605552375 0) (0.0008023396338 0.06629103368 0) (-0.001691716527 0.06130900461 0) (-0.001677247902 0.06124175403 0) (-0.001590691143 0.0612440367 0) (-0.001478171673 0.0612765714 0) (-0.002185822814 0.06108713487 0) (-0.00201869583 0.06108606341 0) (-0.001848956578 0.06124169365 0) (-0.001933461061 0.06124201775 0) (-0.001947867677 0.06131378308 0) (-0.001953080509 0.06187798652 0) (-0.001871155188 0.06187750641 0) (-0.0006811771009 0.0616737405 0) (-0.0006777706611 0.06175149345 0) (-0.0005961576651 0.06183052662 0) (-0.0005992158048 0.06175280027 0) (-0.0006024470481 0.0616751043 0) (-0.0005937206808 0.06190835946 0) (-0.0004592158496 0.06136699929 0) (-0.0004529621065 0.06152272773 0) (-0.0008513576945 0.06107770784 0) (-0.001019219245 0.06107951291 0) (-0.001104204605 0.06108100573 0) (-0.001050127181 0.06129501052 0) (-0.001105012281 0.06116010023 0) (-0.0009115544104 0.06122583658 0) (-0.0009958298539 0.0612244112 0) (-0.001019654738 0.0611583134 0) (-0.001372776543 0.06125643224 0) (-0.001350966129 0.06131351434 0) (-0.001417776827 0.06132244866 0) (-0.00146560055 0.06130036665 0) (0.000291893688 0.06527309504 0) (0.0002066780475 0.06527416715 0) (0.0003818394751 0.06621593955 0) (0.0004683725917 0.06605717583 0) (0.0004678008297 0.0661360647 0) (-0.0003061238029 0.06370550923 0) (-0.0002254618499 0.06354855065 0) (-0.0002239985557 0.06362668188 0) (-0.0003981302082 0.06307893225 0) (-0.0004800237567 0.06307897517 0) (-0.0004051879422 0.06276580437 0) (-0.0004860716018 0.06276551951 0) (0.001035440557 0.07505332652 0) (0.0009490095451 0.07505331072 0) (0.0009519420535 0.07537638604 0) (0.0008670323313 0.07553826507 0) (0.0008661550089 0.07545719616 0) (0.001168005293 0.06990576467 0) (0.0008126328254 0.06731223602 0) (0.0008135486139 0.06739118689 0) (0.0008983214297 0.06746930858 0) (0.0009873700528 0.0680971597 0) (0.0009024251461 0.06809780745 0) (0.0009847428354 0.06778280522 0) (0.0009004877772 0.06778357903 0) (0.0008178550051 0.06786271595 0) (0.0001188150504 0.06480331942 0) (0.0001191752723 0.06488198303 0) (0.0002893073569 0.06495875483 0) (0.0002052822032 0.06495949783 0) (-0.001869052127 0.0625042866 0) (-0.00178621124 0.06242552686 0) (-0.001783019962 0.06297373485 0) (-0.001784829414 0.06289527114 0) (-0.001867384051 0.06281733721 0) (-0.001037767229 0.07425920548 0) (-0.001040707434 0.07418047327 0) (-0.001213484751 0.07410347313 0) (-0.001129229056 0.07410278671 0) (-0.001209636311 0.07441931893 0) (-0.001123837856 0.07441847562 0) (-0.001035875523 0.0743381638 0) (-0.001215311157 0.0734724816 0) (-0.001128548117 0.07347168953 0) (-0.001218191002 0.07378783749 0) (-0.001136673377 0.07378737492 0) (-0.001038627408 0.07489429044 0) (-0.001040432375 0.07481464256 0) (-0.001125423109 0.07473559757 0) (0.001203199476 0.0742548289 0) (0.001202031108 0.07417519532 0) (0.001114125175 0.07409625166 0) (-0.001230744039 0.07158872641 0) (-0.001147588879 0.07158812083 0) (-0.001235921779 0.07190294839 0) (-0.001157246691 0.07190256478 0) (-0.001226168263 0.07096144606 0) (-0.001136762325 0.07096056191 0) (-0.001219999351 0.07127472606 0) (-0.001127704481 0.07127373349 0) (-0.001220277507 0.07284393075 0) (-0.001133933815 0.0728431563 0) (-0.001214704693 0.07315795792 0) (-0.001125450647 0.07315701662 0) (-0.001231090906 0.07221629639 0) (-0.001150054223 0.07221579363 0) (-0.001225782187 0.0725298594 0) (-0.001142156705 0.07252923582 0) (-0.001234198386 0.07064899526 0) (-0.001148096356 0.07064823713 0) (0.0009901949005 0.06872705157 0) (0.0009035755747 0.0687281776 0) (0.0009913765711 0.06841191196 0) (0.0009083220887 0.06841234203 0) (-0.001330294136 0.06782767335 0) (-0.001422125193 0.067907154 0) (-0.001415736047 0.0674362753 0) (-0.001323278664 0.06751359821 0) (-0.001951566734 0.06156384948 0) (-0.001870938065 0.06156332056 0) (-0.0009202070305 0.0616709078 0) (-0.0009181730259 0.06174900574 0) (0.004030869602 0.0761280343 0) (0.003698406866 0.07613213921 0) (0.003364794591 0.07677439568 0) (0.003364439262 0.07645760393 0) (0.003698655004 0.07645021202 0) (0.004031119437 0.07644634014 0) (0.003032213071 0.07677818976 0) (0.005269734112 0.07573262009 3.52579077e-13) (0.004691284173 0.07697691021 3.583244812e-13) (0.003881641345 0.06320697102 3.586853037e-13) (0.003895416537 0.06385039185 0) (0.003232901263 0.06385355624 0) (0.003226428436 0.06354074453 0) (0.003238834572 0.06416628448 0) (0.002908231694 0.06416777452 0) (0.005098141919 0.06276034223 3.492761635e-13) (0.004549059026 0.06416679347 3.570754803e-13) (-0.0002274263953 0.06347051046 0) (-0.0003126015402 0.06339284322 0) (0.001440295377 0.06511309424 0) (0.001442994182 0.06526967879 0) (0.001610204222 0.06542601201 0) (0.001607532742 0.06526917965 0) (0.001604818524 0.06511247869 0) (0.00161283116 0.06558272817 0) (0.001923185372 0.06448480661 0) (0.001928932526 0.06479797316 0) (-0.0002848070857 0.0762436164 0) (-0.0002925874213 0.07616386493 0) (-0.0004956197724 0.07606341533 0) (-0.000402690032 0.07607239961 0) (0.0003335441097 0.07606149154 0) (0.0002376961226 0.07607019018 0) (0.000125886716 0.07624235729 0) (0.0001284071902 0.07616205452 0) (0.001529662013 0.07649041025 0) (0.001696182059 0.07648799739 0) (0.002028785839 0.07679925987 0) (0.002024841384 0.07711962955 0) (0.00186695756 0.07600391959 0) (0.001697393238 0.07632830967 0) (0.001699465667 0.07616688389 0) (0.00186655786 0.07616303511 0) (0.001530442711 0.07633161123 0) (0.001203935157 0.07481224828 0) (0.001117782187 0.07473261167 0) (-0.001903881625 0.07018369553 0) (-0.001904935614 0.07002696792 0) (-0.002236019166 0.06987245442 0) (-0.002070960744 0.06987133976 0) (-0.002232007221 0.07049935179 0) (-0.002066846848 0.07049823639 0) (-0.001902827743 0.07034040858 0) (0.0002028181842 0.06464495281 0) (0.000119302127 0.06472440204 0) (0.0007894214626 0.065427984 0) (0.0009477213075 0.06511421994 0) (0.0009504875329 0.06527086225 0) (-0.001863103335 0.06313114074 0) (-0.001781181169 0.06305222747 0) (0.001116144743 0.07441356729 0) (0.001202982215 0.07433419584 0) (-0.002239990707 0.06924510523 0) (-0.002074990648 0.06924397643 0) (-0.001911073387 0.06908616392 0) (-0.001408528875 0.06923912288 0) (-0.001407346326 0.06931750376 0) (-0.001316657132 0.06939502889 0) (-0.001326383715 0.06970942965 0) (-0.001412407144 0.06986698076 0) (-0.001411775293 0.06978854297 0) (-0.001779461103 0.06360041705 0) (-0.001777848569 0.06352184103 0) (-0.001860985249 0.06344398416 0) (0.000115441674 0.06425330668 0) (0.0001985511634 0.06433162983 0) (0.0003806834123 0.06558619574 0) (0.0004623703501 0.06550718223 0) (0.002035152985 0.07488156066 0) (0.001869429343 0.07488333122 0) (0.001703778403 0.07504508457 0) (0.001704019299 0.07520416309 0) (0.0004684970445 0.065978465 0) (0.0003846305556 0.06590039496 0) (0.001018712024 0.07651165895 0) (0.001024382619 0.07634791295 0) (0.0008571977654 0.07619403814 0) (0.0008614206119 0.07603089549 0) (0.0008628739677 0.07594946208 0) (0.0007759499246 0.07603454602 0) (0.0008953653683 0.0671541991 0) (0.0008121068596 0.06723341341 0) (-0.001121440508 0.07505466565 0) (-0.001037290535 0.07497426216 0) (-0.001323852831 0.06908175637 0) (-0.001409853624 0.06916081586 0) (-0.001418396373 0.06869077416 0) (-0.001332583189 0.06876855328 0) (-0.001325420272 0.07033652401 0) (-0.001406040992 0.07049374447 0) (-0.001407000282 0.07041542022 0) (-0.001412258664 0.06994536917 0) (-0.001330872513 0.07002325335 0) (0.001160675815 0.06911892271 0) (0.001074106346 0.06904129475 0) (-0.001862093131 0.06375785607 0) (-0.001780738868 0.0636789615 0) (-0.001776192788 0.06422720332 0) (-0.001777212795 0.06414914169 0) (-0.001859940507 0.06407144206 0) (-0.0009220663405 0.06159299793 0) (-0.001010208058 0.06151667772 0) (-0.0005809824196 0.06229750504 0) (-0.0005792982776 0.06237556183 0) (-0.0004960537641 0.06245382574 0) (0.0005127622344 0.07613050679 0) (0.0004268769853 0.07605263207 0) (-0.001763578233 0.06124136318 0) (-0.001683087091 0.06108594974 0) (-0.001680401444 0.06116472749 0) (-0.001359581962 0.06108883723 0) (-0.001365317375 0.06117248281 0) (-0.001169394677 0.0612256752 0) (-0.001284788345 0.06124807194 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.616104295e-07 4.908134253e-06 2.775557562e-17) (-6.061031397e-06 0.0001321883637 5.273559367e-16) (0 0 0) (-2.091260678e-05 0.0006757404049 2.706168623e-15) (-2.275917066e-05 0.0009686515003 3.871902798e-15) (-1.947162433e-05 0.001213644556 4.857225733e-15) (-6.443111633e-07 4.040417273e-05 1.665334537e-16) (-1.638588741e-06 0.001430897984 5.731526365e-15) (8.667277837e-06 0.001375463829 5.50948176e-15) (1.674563372e-05 0.001218119164 4.871103521e-15) (5.612091176e-07 4.114780737e-05 1.526556659e-16) (1.953840761e-05 0.000682335593 2.733924198e-15) (1.382679209e-05 0.0003832519658 1.540434447e-15) (5.939733995e-06 0.0001364756892 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.0001084331438 0.001164315033 4.801714582e-15) (-0.0002225052761 0.00260397865 1.071365219e-14) (-0.000346446123 0.00445530826 1.834643548e-14) (-0.0001415634063 0.001832740877 7.494005416e-15) (-2.511192907e-05 0.0003273407652 1.318389842e-15) (-0.0005535393622 0.008874336603 3.652633751e-14) (-0.0006120745716 0.01119337978 4.608813331e-14) (-0.0006314347078 0.01343777696 5.533073999e-14) (-0.0003886152501 0.00831781903 3.400058013e-14) (-0.0001987244795 0.004278775113 1.737499034e-14) (-0.0005472986177 0.01731158326 7.127631818e-14) (-0.0004496568118 0.01878747384 7.735478924e-14) (-0.0003232823065 0.01988427523 8.186507028e-14) (-0.0002187244965 0.01348310216 5.512257317e-14) (-0.0001309386227 0.00809385256 3.286260153e-14) (-1.922698647e-05 0.02078984915 8.55981952e-14) (0.0001384764608 0.0205684155 8.46822612e-14) (0.0002863485375 0.01990712143 8.196221479e-14) (0.0001917573567 0.01350123774 5.519196211e-14) (0.0001137712571 0.008107288379 3.291811268e-14) (0.000514920591 0.01735451346 7.144285163e-14) (0.0005802639605 0.01555395678 6.404599073e-14) (0.0006064167057 0.01349412315 5.556666238e-14) (0.0003724950247 0.008360214548 3.418099137e-14) (0.000190333629 0.004307255856 1.748601264e-14) (0.0005378481325 0.008934614 3.679001548e-14) (0.0004506675428 0.006644346941 2.735311977e-14) (0.0003401114131 0.004507243692 1.85546023e-14) (0.0001395995631 0.001864067132 7.632783294e-15) (2.525212275e-05 0.0003396679303 1.387778781e-15) (0.0001084097441 0.001194790094 4.912736884e-15) (2.705443408e-05 0.0002749880585 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.0001438706701 0.001128909419 4.787836794e-15) (-0.0003766514788 0.003151187241 1.335043187e-14) (-0.0006738342596 0.006037909234 2.559064072e-14) (-0.0003860732342 0.003484004718 1.465494393e-14) (-0.0001698495768 0.001543651916 6.439293543e-15) (-0.001316614576 0.01375414727 5.828670879e-14) (-0.001600297488 0.01823066709 7.727152251e-14) (-0.001826944641 0.02288402547 9.69779812e-14) (-0.001384457541 0.01745654585 7.344125308e-14) (-0.0009806284332 0.01244606569 5.198619313e-14) (-0.002049858294 0.03205490612 1.358357871e-13) (-0.002032341453 0.03628482641 1.537658889e-13) (-0.001929156516 0.04012528089 1.70044534e-13) (-0.001578242645 0.03302090518 1.38916656e-13) (-0.001237236136 0.02603492208 1.087324675e-13) (-0.001492431852 0.04630079793 1.962180418e-13) (-0.00118022933 0.0485260106 2.056549375e-13) (-0.0008230789705 0.050135549 2.124689313e-13) (-0.0006948740253 0.04245916297 1.786348847e-13) (-0.0005658462828 0.03466119961 1.447730824e-13) (-3.243767855e-05 0.05144067715 2.180200465e-13) (0.0003707354146 0.05112577775 2.166877788e-13) (0.0007589009441 0.05017055292 2.126632204e-13) (0.0006351635524 0.04249259727 1.787875403e-13) (0.0005121032576 0.03469198676 1.449118603e-13) (0.001430732665 0.04637021395 1.965649865e-13) (0.00168651448 0.04357003305 1.846994779e-13) (0.001872763303 0.04022641167 1.705302566e-13) (0.001528135116 0.03311406862 1.393468674e-13) (0.001194609903 0.0261175968 1.091071677e-13) (0.002002684422 0.0321801907 1.364186542e-13) (0.001939054071 0.02767467933 1.173228181e-13) (0.001793132609 0.02301934578 9.758860386e-14) (0.001357840628 0.01757269075 7.395473123e-14) (0.0009613333994 0.01254145799 5.238864897e-14) (0.001298465044 0.01387819171 5.884182031e-14) (0.0009869681677 0.009732235682 4.125866315e-14) (0.0006675031531 0.006107491347 2.589595205e-14) (0.000384965699 0.003550918519 1.494637747e-14) (0.00017077767 0.00158718197 6.633582572e-15) (0.0001693091353 0.001349930075 5.717648577e-15) (2.707899641e-05 0.0002029797497 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) (-7.999429216e-05 0.0005115267135 2.234323837e-15) (-0.0003442726953 0.002322470317 1.014466289e-14) (-0.0001748301172 0.0011891372 5.148659277e-15) (-4.156142184e-05 0.0002854025678 1.221245327e-15) (-0.001237852652 0.00938922351 4.102274076e-14) (-0.001769149322 0.01431648866 6.253331186e-14) (-0.002235360014 0.01941149064 8.476552793e-14) (-0.00181893053 0.01594504566 6.911138328e-14) (-0.001406495928 0.01242422564 5.344336085e-14) (-0.003169295986 0.03216798677 1.404570904e-13) (-0.003490910395 0.03866172742 1.688094109e-13) (-0.003690434488 0.04495722998 1.962874308e-13) (-0.003238151803 0.03973600626 1.721817133e-13) (-0.002768151043 0.03420704477 1.471323063e-13) (-0.003697464364 0.05626194129 2.456229664e-13) (-0.003511257142 0.06101668427 2.66384137e-13) (-0.003212993358 0.06507152176 2.840921942e-13) (-0.002929495553 0.05975912918 2.589317649e-13) (-0.002615187492 0.05371208585 2.310096558e-13) (-0.002348248405 0.07100814005 3.100297796e-13) (-0.00181844739 0.07294736971 3.18509108e-13) (-0.001247207211 0.07427319827 3.243100233e-13) (-0.001161625162 0.06968829076 3.019945405e-13) (-0.001060236571 0.06400014708 2.75279799e-13) (-4.024098616e-05 0.07529674625 3.288064265e-13) (0.000569507678 0.07505275082 3.277517147e-13) (0.001166946568 0.07429644061 3.244765567e-13) (0.001086596594 0.06971743466 3.021749517e-13) (0.0009891774595 0.06403320748 2.75474088e-13) (0.002270145564 0.07105692472 3.103628465e-13) (0.002744168628 0.06844753415 2.989691827e-13) (0.003140734863 0.0651202393 2.844668945e-13) (0.002858951635 0.05985389927 2.594729986e-13) (0.002548800611 0.05381864832 2.315647674e-13) (0.003663665409 0.05678242411 2.480654571e-13) (0.00373666788 0.05143360229 2.247091402e-13) (0.003679428419 0.0454865097 1.987299214e-13) (0.003182766942 0.03982560654 1.726674359e-13) (0.002720828942 0.03436328046 1.478678291e-13) (0.003224870826 0.03311164282 1.447175713e-13) (0.002838790899 0.02691360576 1.176281295e-13) (0.002369791947 0.02087411616 9.123257705e-14) (0.001907244269 0.01693984459 7.346900865e-14) (0.001459945909 0.01308432518 5.631606292e-14) (0.001320025912 0.01018260545 4.449218771e-14) (0.0008216045351 0.005966560644 2.607636329e-14) (0.0004031637452 0.002765599426 1.208755318e-14) (0.0002177823184 0.001505760473 6.52256027e-15) (8.202947123e-05 0.0005716085842 2.47024623e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-4.529205607e-05 0.0002521721959 1.1379786e-15) (-9.563480138e-05 0.0005281869309 2.414735079e-15) (-3.935057307e-07 2.226367576e-06 1.387778781e-17) (-0.0002055022665 0.001210365595 5.453970608e-15) (-0.0006693398159 0.004147649801 1.869338018e-14) (-0.001259518544 0.008234090459 3.71092046e-14) (-0.001020712861 0.006726085688 3.007316618e-14) (-0.0007803350166 0.005182641429 2.29954944e-14) (-0.00267322186 0.01963968049 8.851253064e-14) (-0.003381433075 0.02648302664 1.193350974e-13) (-0.004022258365 0.0337292655 1.519756543e-13) (-0.003631251438 0.03069449883 1.372235658e-13) (-0.003206128173 0.02731759356 1.211808431e-13) (-0.004946486642 0.04830725622 2.176314684e-13) (-0.005178511018 0.0551072488 2.482736239e-13) (-0.005240138966 0.06127061376 2.760153217e-13) (-0.004949462779 0.05842968721 2.611244554e-13) (-0.004548223336 0.05430108019 2.407518629e-13) (-0.004896618276 0.07146461686 3.218397771e-13) (-0.004482145087 0.07477581057 3.367167656e-13) (-0.003978592747 0.07731440883 3.481243072e-13) (-0.003850266486 0.07572665452 3.383127112e-13) (-0.003669345772 0.07300807054 3.236438895e-13) (-0.00274387481 0.07956733308 3.5826897e-13) (-0.002069648561 0.07968351863 0) (-0.001394372892 0.07968133914 0) (-0.001386225482 0.08019718021 3.583106034e-13) (-0.001361072801 0.07959360443 3.528705106e-13) (-5.771567764e-05 0.07967313418 0) (0.000611917373 0.07966812645 0) (0.001289270678 0.0796624362 0) (0.001286459397 0.08018355988 3.583244812e-13) (0.001267109709 0.0795949208 3.529676551e-13) (0.002646491742 0.07954529434 3.58338359e-13) (0.003294996734 0.07885583182 3.552713679e-13) (0.003892238939 0.07732094331 3.484157407e-13) (0.003764430646 0.07578615252 3.388123115e-13) (0.003605723643 0.07330171093 3.251565683e-13) (0.00482572866 0.07162151891 3.228944889e-13) (0.005103687979 0.06738029099 3.037986529e-13) (0.005228817456 0.06219552024 2.80442336e-13) (0.004909981456 0.05888140607 2.634004126e-13) (0.004538868522 0.05490224458 2.436939539e-13) (0.004984001465 0.04949616727 2.231825835e-13) (0.004617421155 0.04236182615 1.910138714e-13) (0.004108514042 0.03502463689 1.579292253e-13) (0.003714596386 0.03192633275 1.428163143e-13) (0.003286245632 0.02847628762 1.263988914e-13) (0.002789661828 0.02082936123 9.39109901e-14) (0.002066660417 0.01452791702 6.550315845e-14) (0.001314902665 0.008731389093 3.935740622e-14) (0.001121596515 0.007510347829 3.359812428e-14) (0.0008684282137 0.005862853083 2.602085214e-14) (0.0001016673671 0.0005741659728 2.609024108e-15) (0 0 0) (0 0 0) (3.22305741e-06 1.723479713e-05 8.326672685e-17) (0 0 0) (-1.552823272e-05 7.990268929e-05 3.747002708e-16) (-0.0002544511163 0.001370869908 6.439293543e-15) (-0.0002885178282 0.001541425435 7.299716387e-15) (-0.000152389399 0.0008348221871 3.858025011e-15) (-0.0006581476443 0.003752497049 1.745825706e-14) (-0.001298732155 0.007790122325 3.626265954e-14) (-0.002065439532 0.01306963118 6.081246617e-14) (-0.001882346939 0.01201028497 5.54278845e-14) (-0.001666045287 0.01071713568 4.907185769e-14) (-0.003716748887 0.02642375837 1.229433222e-13) (-0.004479601259 0.03394359538 1.579153475e-13) (-0.005131256671 0.04162043214 1.936228955e-13) (-0.004881327894 0.03993192858 1.842692665e-13) (-0.004671108301 0.03853606798 1.764144386e-13) (-0.005954528804 0.05621117405 2.614714001e-13) (-0.006083854491 0.06255167222 2.909616992e-13) (-0.006042269757 0.06820873958 3.172601071e-13) (-0.005914278171 0.06736077131 3.107791802e-13) (-0.005740336513 0.06595258233 3.018557626e-13) (-0.005376853971 0.07541523198 3.507749646e-13) (-0.004820368496 0.07691742293 3.577693697e-13) (-0.004168780476 0.07713064386 0) (-0.004159065027 0.07776354401 3.587824482e-13) (-0.004135479038 0.0782183203 3.579359031e-13) (-7.073360313e-05 0.07780595108 0) (0.0002738672367 0.07780360171 0) (0.0006261905354 0.07779883656 0) (0.0006241965667 0.07811083602 0) (0.000621728302 0.07842270785 0) (0.005714841467 0.07306030431 3.401723347e-13) (0.005997798832 0.06904384232 3.215205879e-13) (0.005875112497 0.06821165382 3.150257832e-13) (0.005709465932 0.06683387254 3.061856324e-13) (0.006045966686 0.05807451746 2.704642066e-13) (0.005781497791 0.05129719373 2.388922393e-13) (0.005334681403 0.04397994022 2.048083925e-13) (0.005054257199 0.04201179195 1.940669847e-13) (0.004716588524 0.03953664879 1.811467643e-13) (0.003998184643 0.02887361125 1.344480083e-13) (0.00318966301 0.0216896486 1.009886619e-13) (0.002357872583 0.01514864206 7.052691764e-14) (0.002137827101 0.01384855093 6.394884622e-14) (0.001884541757 0.01230852132 5.639932965e-14) (0.0004184482144 0.002286934382 1.072752998e-14) (4.780472581e-05 0.0002514754144 1.165734176e-15) (7.62755042e-05 0.0003979452839 1.859623566e-15) (0.0001009602244 0.0005223457921 2.47024623e-15) (2.115105249e-05 0.0001121842167 5.134781489e-16) (-5.676791481e-05 0.0002824468717 1.373900993e-15) (-0.0003796310176 0.001977417053 9.603429163e-15) (-0.0004086970532 0.002110681547 1.032507413e-14) (-0.000306409576 0.001623309273 7.743805597e-15) (-0.000923309133 0.005089206385 2.448041769e-14) (-0.001653787711 0.009588811631 4.612976667e-14) (-0.002494343373 0.01525599436 7.338574193e-14) (-0.002355634075 0.01453118286 6.93195501e-14) (-0.002305915018 0.01434589628 6.786238238e-14) (-0.004232691118 0.02907860161 1.398603455e-13) (-0.005006771826 0.03665419964 1.762895385e-13) (-0.00564824931 0.04425353664 2.128297538e-13) (-0.005517749193 0.04360714337 2.079586503e-13) (-0.005450530929 0.04344567786 2.054745263e-13) (-0.006393233479 0.05826242757 2.801786581e-13) (-0.006459543097 0.06408780158 3.081840338e-13) (-0.006319417772 0.06879333449 3.308187058e-13) (-0.006268272281 0.06885553721 3.283345817e-13) (-0.006225896332 0.0690064485 3.263223025e-13) (0.003031434654 0.07518730239 0) (0.00336332014 0.07518393285 0) (0.00336410683 0.07550195658 0) (0.003364964298 0.07581969913 0) (0.005901357461 0.07310479637 3.519545766e-13) (0.006308365687 0.07037261029 3.388261893e-13) (0.006264628572 0.07043996636 3.362865542e-13) (0.006215869817 0.07043412868 3.334554854e-13) (0.006560408849 0.06104545043 2.93917668e-13) (0.006378091049 0.05480546216 2.638722574e-13) (0.005992751765 0.04783317231 2.302880109e-13) (0.005815536057 0.04680278145 2.234323837e-13) (0.005717214411 0.04638259429 2.195882365e-13) (0.004701233979 0.03285521796 1.581651476e-13) (0.003870511419 0.02546495541 1.225824997e-13) (0.002985671116 0.01855620826 8.931744233e-14) (0.002755779979 0.01727076356 8.243405958e-14) (0.002671668789 0.01688338597 7.99083022e-14) (0.0006861054454 0.003626379167 1.759703494e-14) (0.0001895099321 0.0009642144684 4.635181128e-15) (0.0002127750038 0.001073558209 5.218048216e-15) (0.0002213895651 0.001107625534 5.426215033e-15) (0.0001543826331 0.0007920811432 3.774758284e-15) (-9.541074336e-05 0.000458575494 2.303712776e-15) (-0.0004687454808 0.002358626055 1.185163079e-14) (-0.0004877708853 0.002432895538 1.232347557e-14) (-0.0004308910236 0.002206197934 1.088018564e-14) (-0.001045231333 0.005567212007 2.772782004e-14) (-0.001808726058 0.01013398358 5.045963647e-14) (-0.002671974027 0.01579031957 7.860379014e-14) (-0.002632335326 0.01569183334 7.745193376e-14) (-0.00258489673 0.01554250238 7.605027719e-14) (-0.004427943003 0.02938360049 1.462580057e-13) (-0.005197675211 0.03674818634 1.829092433e-13) (-0.005827295749 0.04408226019 2.193939475e-13) (-0.005789325245 0.04418500231 2.180061687e-13) (-0.005743836873 0.04422542115 2.163408341e-13) (-0.006531399866 0.05743867847 2.858546733e-13) (-0.006571770486 0.0629002259 3.13013504e-13) (-0.006404191463 0.06723343867 3.34593464e-13) (-0.006387351041 0.0676725706 3.338718191e-13) (-0.006367444816 0.06807776261 3.329836407e-13) (0.003016013317 0.07265573267 0) (0.003347307859 0.07265321804 0) (0.003349770331 0.07296935067 0) (0.003352115653 0.07328539676 0) (0.005928889655 0.07121102822 3.548272787e-13) (0.006376812121 0.06894622721 3.43558515e-13) (0.006375565034 0.06947748444 3.432115703e-13) (0.006361655529 0.0698724534 3.421984918e-13) (0.006706368732 0.06043646549 3.01175751e-13) (0.006556590593 0.05454399494 2.71810352e-13) (0.006197308371 0.04787539645 2.385591724e-13) (0.006178344617 0.04812424962 2.377265051e-13) (0.00612009012 0.04806365311 2.353950368e-13) (0.00493154372 0.03333789389 1.661032423e-13) (0.004098942061 0.02608111385 1.299377272e-13) (0.003201076254 0.01923764187 9.58400026e-14) (0.003175491807 0.01924683922 9.50489687e-14) (0.00310342415 0.01896975244 9.287015601e-14) (0.0007492318337 0.003826817 1.92346139e-14) (0.000256073205 0.001259344938 6.272760089e-15) (0.0002496828294 0.001217314098 6.106226635e-15) (0.0002292404212 0.001107934053 5.620504062e-15) (0.0002466651756 0.001223568266 6.036837696e-15) (-0.0001406418449 0.0006522563232 3.400058013e-15) (-0.0005614298685 0.002726120696 1.419697693e-14) (-0.0005866077223 0.002822517176 1.482147738e-14) (-0.0005114059595 0.002528275731 1.293409824e-14) (-0.001169871003 0.006014695723 3.103073354e-14) (-0.001961945438 0.0106099363 5.473399511e-14) (-0.002844408672 0.01622276116 8.366918269e-14) (-0.00279530402 0.01608692199 8.223977055e-14) (-0.002748798529 0.01596097165 8.086586956e-14) (-0.004611115826 0.02952267342 1.522393323e-13) (-0.005373734885 0.03664946462 1.889877144e-13) (-0.005989425859 0.04369720355 2.253197628e-13) (-0.005943844002 0.0437645188 2.236405505e-13) (-0.005900329976 0.04384092737 2.220446049e-13) (-0.006651229793 0.0563843169 2.906980212e-13) (-0.00666650892 0.06149074843 3.170241847e-13) (-0.006473424933 0.0654744785 3.375771884e-13) (-0.006454585796 0.06590278021 3.367583989e-13) (-0.006436271697 0.06633303151 3.359534873e-13) (0.00299238831 0.0701316815 0) (0.00332329269 0.0701295921 0) (0.003326544959 0.07044417507 0) (0.003329828796 0.07075909282 0) (0.005871171176 0.06835303401 3.529398995e-13) (0.006288317674 0.06586615355 3.401168236e-13) (0.006325406084 0.06678575524 3.417821581e-13) (0.0063456674 0.06753476832 3.425315587e-13) (0.006518893895 0.05685721552 2.935984789e-13) (0.006329595839 0.05094327715 2.630534679e-13) (0.005999175725 0.04482016506 2.314259895e-13) (0.006095458999 0.04592594843 2.350203365e-13) (0.006128503522 0.04656400085 2.361583151e-13) (0.004723145515 0.03085984819 1.59317004e-13) (0.003896969901 0.02395935101 1.236788449e-13) (0.003013818627 0.01749745811 9.031664305e-14) (0.003097263365 0.01813948479 9.278688928e-14) (0.003124323716 0.01845707816 9.357792319e-14) (0.000579372902 0.002856807534 1.487698853e-14) (0.00019991215 0.0009492977893 4.898859096e-15) (0.0001532302985 0.0007211558507 3.760880496e-15) (0.0001212770228 0.0005656550937 2.969846591e-15) (0.0002220974944 0.001064025606 5.440092821e-15) (-0.0002105905566 0.000941200155 5.079270338e-15) (-0.0006882388659 0.003220451222 1.740274591e-14) (-0.0007030206155 0.003258601085 1.777744618e-14) (-0.0006135459358 0.002925080013 1.551536677e-14) (-0.001313643027 0.006510455547 3.484712519e-14) (-0.002135664549 0.01113221823 5.956346527e-14) (-0.003037696925 0.01669750991 8.934519791e-14) (-0.002988230934 0.01658006824 8.788803019e-14) (-0.002938506787 0.01645599402 8.643086247e-14) (-0.004813200503 0.0296910265 1.588451592e-13) (-0.005566657714 0.03657170895 1.956351747e-13) (-0.006165821039 0.0433238023 2.317313008e-13) (-0.006121157105 0.04342212885 2.301075996e-13) (-0.006075980491 0.04351076218 2.284561429e-13) (-0.006779197353 0.05532231845 2.958883139e-13) (-0.006766164984 0.06006392972 3.212430322e-13) (-0.006544454747 0.06368917388 3.406441795e-13) (-0.006526830083 0.06414113581 3.39894779e-13) (-0.00650880824 0.06458630458 3.391176229e-13) (0.002962592976 0.06761635608 0) (0.003293266766 0.06761460336 0) (0.003297184752 0.06792859888 0) (0.00330135309 0.06824297127 0) (0.005735817952 0.0646898143 3.465422393e-13) (0.006073950818 0.06158572645 3.299305273e-13) (0.006135420073 0.06272277378 3.329142517e-13) (0.006203704804 0.06393962332 3.362449208e-13) (0.006172002433 0.05205146652 2.788602682e-13) (0.005915125251 0.04600927112 2.464695115e-13) (0.005464610281 0.03943901311 2.112615638e-13) (0.005678045063 0.04134038823 2.194078252e-13) (0.005790965609 0.04252960824 2.236405505e-13) (0.004185755586 0.02640270642 1.414146578e-13) (0.003371100937 0.02000402842 1.071226441e-13) (0.00252372255 0.01413887878 7.571721028e-14) (0.002666747979 0.015075512 7.997769114e-14) (0.002760071383 0.01574337887 8.27532487e-14) (0.0003153941011 0.001499539268 8.10462808e-15) (7.571256832e-05 0.0003467543623 1.859623566e-15) (3.457306989e-05 0.0001568861633 8.465450563e-16) (2.131973407e-05 9.584724393e-05 5.273559367e-16) (0.0001022928285 0.0004727982048 2.511879593e-15) (-0.0003071498554 0.001320967952 7.410738689e-15) (-0.0008483525273 0.003819727356 2.144118216e-14) (-0.0008636540799 0.003850445778 2.182976022e-14) (-0.0007385948306 0.003390868247 1.867950239e-14) (-0.00142543014 0.006799959908 3.780309399e-14) (-0.002267545805 0.01137603727 6.324107904e-14) (-0.003275488076 0.01732632043 9.631184739e-14) (-0.003209765306 0.01714503052 9.438283488e-14) (-0.003148193375 0.01697921125 9.257872247e-14) (-0.005057078036 0.03001021563 1.667693761e-13) (-0.005797434355 0.03663346388 2.035593916e-13) (-0.006374885653 0.04307306234 2.393363285e-13) (-0.006317971974 0.04311514155 2.372685382e-13) (-0.006264077204 0.04317008735 2.353117701e-13) (-0.00692715574 0.05433455602 3.018835182e-13) (-0.006879123491 0.05868203856 3.260447468e-13) (-0.006622353563 0.06191744238 3.440303598e-13) (-0.006601828698 0.06235643296 3.431421813e-13) (-0.006581938631 0.06279737916 3.422817585e-13) (0.002925299128 0.0651073774 0) (0.005506475911 0.06011223772 3.345518307e-13) (0.005746071295 0.05634368477 3.135824933e-13) (0.005845287194 0.05780185981 3.186062525e-13) (0.005917243667 0.05900578358 3.221312106e-13) (0.00565244291 0.0460348527 2.561978407e-13) (0.005314889233 0.03990005416 2.220446049e-13) (0.004803053273 0.0334435168 1.861011345e-13) (0.005009831784 0.03520222122 1.940114736e-13) (0.005213087381 0.03696186179 2.017691569e-13) (0.003388457327 0.02060477873 1.146444051e-13) (0.002582415016 0.01477005432 8.217038161e-14) (0.001786964056 0.009647338584 5.366540545e-14) (0.00198152961 0.01079864204 5.949407633e-14) (0.002210235981 0.01215752521 6.633582572e-14) (8.733151184e-05 0.0003998573929 2.248201625e-15) (3.66890474e-07 1.618598131e-06 1.387778781e-17) (0 0 0) (0 0 0) (8.1646615e-06 3.636278854e-05 2.081668171e-16) (-0.0004458545657 0.001844818291 1.078304113e-14) (-0.001060031421 0.004591970911 2.683964162e-14) (-0.001096287456 0.004715523401 2.783884234e-14) (-0.0009516723705 0.004200678726 2.406408406e-14) (-0.001792960381 0.00821885737 4.754530103e-14) (-0.002693703122 0.01298397657 7.510658762e-14) (-0.00364169955 0.01850537702 1.070116218e-13) (-0.003535556183 0.01815089927 1.039168751e-13) (-0.003370338094 0.01747843485 9.907352716e-14) (-0.005416468399 0.03086602677 1.784544734e-13) (-0.006129632772 0.03718551202 2.149808109e-13) (-0.006668031535 0.04324375599 2.499944696e-13) (-0.006554086201 0.04295289499 2.458172554e-13) (-0.006498036824 0.04302586812 2.438049762e-13) (-0.007121060846 0.05358464372 3.097522239e-13) (-0.007020287768 0.05743733041 3.320260733e-13) (-0.006713424852 0.06018828522 3.479438959e-13) (-0.006687247963 0.06060075878 3.468059173e-13) (-0.006665240398 0.06104160946 3.458761055e-13) (-0.002765555698 0.06297950654 0) (-0.00260103552 0.06297848319 0) (-0.002600330122 0.06313534443 0) (-0.002599685845 0.06329181286 0) (8.286655331e-05 0.06292447643 0) (0.0002449285742 0.06292491293 0) (0.0002496488257 0.06308087102 0) (0.003189743431 0.06197936833 0) (0.003837860914 0.06170537351 3.572142582e-13) (0.00386251045 0.06249046048 3.581579477e-13) (0.004845474777 0.05777016492 3.344824417e-13) (0.005129181378 0.05416579066 3.136241267e-13) (0.005236509518 0.04961367663 2.872702076e-13) (0.005370125923 0.05132274173 2.941952237e-13) (0.005521045273 0.05322225238 3.020639294e-13) (0.004888270794 0.03839101425 2.222805273e-13) (0.0044498496 0.0321984294 1.864064458e-13) (0.003957244853 0.02654346311 1.536687444e-13) (0.004209792831 0.02850734048 1.633831959e-13) (0.004410865487 0.03015054539 1.710992459e-13) (0.002589589258 0.01516025148 8.774925231e-14) (0.001860106503 0.01023994283 5.925815394e-14) (0.001175235845 0.006105481043 3.533284776e-14) (0.001333661539 0.006996439975 4.009292898e-14) (0.00146411753 0.00775531385 4.399258735e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0003234841392 0.001287763273 7.854827899e-15) (-0.0008619306476 0.003592721755 2.189914916e-14) (-0.0007311965593 0.003015430362 1.856848009e-14) (-0.001049704511 0.004468518206 2.665923038e-14) (-0.001733388528 0.007661687891 4.618527782e-14) (-0.00261265092 0.01214516072 7.320533069e-14) (-0.003539377354 0.01734848951 1.045552533e-13) (-0.003682906976 0.01824294681 1.088018564e-13) (-0.003765308293 0.0188469672 1.112443471e-13) (-0.005278077847 0.02902359767 1.74887882e-13) (-0.005979164035 0.03500993547 2.109423747e-13) (-0.006511035525 0.04076683175 2.456090886e-13) (-0.006659947242 0.04214682781 2.51271226e-13) (-0.006743243079 0.04313014667 2.54476995e-13) (-0.00697074637 0.0506796847 3.053252096e-13) (-0.006884009773 0.05444667277 3.280153926e-13) (-0.006598327188 0.05722590909 3.447658825e-13) (-0.006657586276 0.05837885474 3.480549182e-13) (-0.006686333467 0.05927686865 3.497480083e-13) (0.0001435760112 0.06012955523 0) (0.0004773414095 0.06012712456 0) (0.0004796239457 0.06044054938 0) (0.003117906697 0.05899320488 3.558403572e-13) (0.003681071867 0.05740861088 3.46306317e-13) (0.003717841517 0.05853737535 3.49442697e-13) (0.003763624168 0.05982099074 3.534117443e-13) (0.004431910728 0.05109322388 3.08239545e-13) (0.004567983561 0.04657081992 2.80969692e-13) (0.004573589078 0.04179181418 2.521316489e-13) (0.004773363779 0.04401031373 2.627620344e-13) (0.004930497246 0.04589241592 2.711858516e-13) (0.004064642464 0.0307532192 1.855182674e-13) (0.003580800773 0.02492484423 1.503658309e-13) (0.002994032723 0.01931399045 1.165040286e-13) (0.003214740113 0.02094199797 1.250111126e-13) (0.003494927722 0.02299189069 1.358496649e-13) (0.001672047261 0.009410190735 5.676015213e-14) (0.001042191928 0.005513254552 3.325117959e-14) (0.0005144251877 0.002567498291 1.548761119e-14) (0.0006801033672 0.003429004136 2.045585923e-14) (0.0008125526114 0.004138378046 2.443878433e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-3.312219505e-05 0.0001262505478 8.049116929e-16) (-0.0002893536516 0.001154919349 7.355227538e-15) (-0.0001611267037 0.000635998079 4.093947403e-15) (-0.0005856911218 0.002389468753 1.487698853e-14) (-0.0009828296289 0.004161866869 2.620126338e-14) (-0.001675887575 0.007463885577 4.697631173e-14) (-0.002452653207 0.01151803643 7.248368572e-14) (-0.002787001048 0.01323050309 8.235079285e-14) (-0.00308524555 0.0148044765 9.114931032e-14) (-0.004021152743 0.02118468615 1.332822741e-13) (-0.00470798989 0.02640930339 1.661448756e-13) (-0.005273536328 0.03162909939 1.989658438e-13) (-0.005674983134 0.03440579107 2.140787547e-13) (-0.006017258533 0.03687568027 2.269573418e-13) (-0.005934082926 0.04131249225 2.598615767e-13) (-0.006004308669 0.04546114595 2.859656956e-13) (-0.005903305724 0.04899255614 3.081701561e-13) (-0.006160313647 0.05168886614 3.216038547e-13) (-0.006357734826 0.05393596277 3.319566844e-13) (-0.005251671265 0.0539929749 3.396727344e-13) (-0.004750059779 0.05547994548 3.490263634e-13) (-0.004169776854 0.05638706103 3.547717675e-13) (-0.004210658669 0.05761272523 3.58532648e-13) (-0.002882181129 0.05699754552 3.586575481e-13) (-0.002215622906 0.05701115654 0) (-0.001548090653 0.0570062952 0) (-0.00154352452 0.05763329049 0) (-0.0002129572169 0.05698470743 3.587130593e-13) (0.0004536137622 0.05684350235 3.578526364e-13) (0.001112023766 0.0564228209 3.552297345e-13) (0.00112622871 0.05759245814 3.586575481e-13) (0.0023402591 0.05414671476 3.409494909e-13) (0.002864513638 0.05207144177 3.279043703e-13) (0.003294656248 0.04930191017 3.104877466e-13) (0.003435133967 0.05196868735 3.237271562e-13) (0.003544102059 0.05418284698 3.338856969e-13) (0.003781347001 0.04177159905 2.630812235e-13) (0.003806458748 0.03717233466 2.341182803e-13) (0.003678909482 0.03219000687 2.027267243e-13) (0.003952976405 0.03497792168 2.179090242e-13) (0.00418687647 0.0374551478 2.308292446e-13) (0.003005254214 0.02176634994 1.370709102e-13) (0.002505753982 0.01671066306 1.052213872e-13) (0.00194564335 0.01202389081 7.571721028e-14) (0.002204256293 0.01377457821 8.579248423e-14) (0.002434592162 0.0153815997 9.477141294e-14) (0.0008348871792 0.004501306449 2.83384427e-14) (0.0003915198277 0.001984735807 1.249000903e-14) (9.628112513e-05 0.0004606252367 2.900457652e-15) (0.0001638252179 0.0007924210945 4.94049246e-15) (0.0002883639685 0.001410092223 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) (-6.278011866e-05 0.0002450281006 1.595945598e-15) (-0.0001716361061 0.0006950815844 4.579669977e-15) (-0.0005159206987 0.002197908923 1.447453268e-14) (-0.0009909242049 0.004452275188 2.930988785e-14) (-0.001347395637 0.006122206047 3.985700658e-14) (-0.001719740528 0.00790126168 5.084821453e-14) (-0.00213314286 0.01075662577 7.08044734e-14) (-0.002706663383 0.01453541577 9.567346915e-14) (-0.003227809557 0.01853717407 1.220135104e-13) (-0.003783740996 0.02196820842 1.429412144e-13) (-0.004318443402 0.02534651023 1.63050129e-13) (-0.003994345147 0.02663430338 1.752903378e-13) (-0.004201325587 0.03046917595 2.005340338e-13) (-0.004279273449 0.0340176506 2.238764729e-13) (-0.004765461055 0.03828774851 2.490924134e-13) (-0.005203151774 0.04225498216 2.717825964e-13) (-0.004058875056 0.03996211352 2.629979567e-13) (-0.003780519015 0.0422749457 2.7822189e-13) (-0.003409899589 0.04413174397 2.904620988e-13) (-0.003686156164 0.04820772746 3.136796378e-13) (-0.003907815621 0.05166175039 3.323591402e-13) (-0.002460830841 0.04653099336 3.062966547e-13) (-0.001916169959 0.04711830985 3.101824353e-13) (-0.001345423213 0.04732372056 3.115563363e-13) (-0.001438408059 0.05106918223 3.324007736e-13) (-0.001504734876 0.05400321091 3.475275623e-13) (-0.0001818292626 0.04660562758 3.068795218e-13) (0.0003831455617 0.04565945431 3.006761506e-13) (0.0009170599603 0.0442931201 2.916972219e-13) (0.000985899416 0.04835106475 3.148037386e-13) (0.001041869151 0.05177861473 3.333305854e-13) (0.001825842568 0.04022304063 2.649269693e-13) (0.002166986985 0.03751158459 2.470801341e-13) (0.00241198052 0.03437706538 2.264438637e-13) (0.002676650332 0.03864683151 2.516736819e-13) (0.002914318207 0.0426052115 2.743361094e-13) (0.002571314506 0.02706800231 1.783018178e-13) (0.002478247385 0.02306987542 1.519617765e-13) (0.002276772142 0.01899626023 1.251221349e-13) (0.002659335663 0.02246232212 1.462718835e-13) (0.003026044095 0.02586910199 1.665889648e-13) (0.001616821507 0.01117414132 7.359390874e-14) (0.001212426746 0.007718057705 5.082045895e-14) (0.0008061770153 0.00475723489 3.133604487e-14) (0.001085896145 0.006483739663 4.221623051e-14) (0.001376578116 0.00831552657 5.354050536e-14) (0.0001607779383 0.0008282242188 5.453970608e-15) (1.262906507e-05 6.118580725e-05 4.024558464e-16) (0 0 0) (0 0 0) (6.499243835e-06 3.040749766e-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) (-4.179021969e-05 0.0001792471435 1.235123115e-15) (-0.0001759285487 0.0007636151663 5.204170428e-15) (-0.0003890310525 0.00170842553 1.151856388e-14) (-0.0004677931611 0.002253793736 1.555700013e-14) (-0.0007816353232 0.004012428228 2.770006446e-14) (-0.001115506228 0.006126830972 4.227174166e-14) (-0.001591439249 0.008840692044 6.028511024e-14) (-0.00211415096 0.01187665519 8.00193245e-14) (-0.001725231457 0.01101396048 7.600864382e-14) (-0.001955228656 0.0135839879 9.374445664e-14) (-0.002114469977 0.01611249372 1.111749581e-13) (-0.002656646031 0.02046009488 1.39499523e-13) (-0.003209524015 0.02498037798 1.682959327e-13) (-0.002192811839 0.02072519298 1.430106034e-13) (-0.00211090507 0.02268015529 1.565136909e-13) (-0.001954786949 0.02433569763 1.679351103e-13) (-0.002346582721 0.02948918462 2.010613898e-13) (-0.002728500796 0.03461767257 2.332439797e-13) (-0.001458312995 0.02662327813 1.837419106e-13) (-0.001142273773 0.02721641783 1.87835858e-13) (-0.0007993449888 0.02742901038 1.893207813e-13) (-0.0009508088461 0.03277780737 2.235295282e-13) (-0.001096265544 0.0380013878 2.560868184e-13) (-9.135033021e-05 0.02670661348 1.843525332e-13) (0.0002442338066 0.02578189934 1.779687508e-13) (0.0005484611531 0.02449862967 1.691147222e-13) (0.0006498718549 0.02966089959 2.023242685e-13) (0.0007468910052 0.03479255235 2.34534614e-13) (0.001011640238 0.02095721602 1.446898157e-13) (0.001149778361 0.01877586948 1.296185381e-13) (0.001216517232 0.01639225538 1.131733596e-13) (0.001519209019 0.02077064136 1.416922135e-13) (0.001825393061 0.02531503814 1.706690345e-13) (0.001132785627 0.01130749028 7.806255642e-14) (0.0009934570884 0.008779144897 6.060429936e-14) (0.0008059232168 0.006389471269 4.411748744e-14) (0.001140369506 0.009159135678 6.247780071e-14) (0.001505358344 0.01224716712 8.255895967e-14) (0.000370425584 0.002436550434 1.681987882e-14) (0.0001769995815 0.001073100264 7.410738689e-15) (4.240345191e-05 0.0002384520981 1.637578961e-15) (0.0001554552258 0.0008848884186 6.036837696e-15) (0.0003284121846 0.00189215365 1.2753687e-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) (-1.809729598e-05 9.475767712e-05 6.938893904e-16) (-0.0001420091253 0.0007528339351 5.384581669e-15) (-0.0003749290123 0.002011750277 1.423861029e-14) (-0.0001880595617 0.001146258373 8.312794897e-15) (-0.0002991638946 0.00198615523 1.440514374e-14) (-0.000404300024 0.002946925027 2.137179322e-14) (-0.0007304373432 0.005385955968 3.856637232e-14) (-0.001134278584 0.008457942684 5.981326545e-14) (-0.0005492304458 0.004977501116 3.609612609e-14) (-0.0005749693863 0.005932796792 4.30211422e-14) (-0.0005662109515 0.006782715102 4.918287999e-14) (-0.0008604896129 0.010411863 7.45514761e-14) (-0.001198158438 0.01463840945 1.03528297e-13) (-0.0004536159562 0.008017673373 5.814793091e-14) (-0.000359923305 0.00834954086 6.054878821e-14) (-0.0002509011203 0.008470038036 6.142308884e-14) (-0.0003688526549 0.01250862176 8.95811203e-14) (-0.0005027645279 0.01711743476 1.210698208e-13) (-2.103399643e-05 0.008066269095 5.85087534e-14) (8.254584509e-05 0.007558438339 5.481726184e-14) (0.0001681064732 0.006872100324 4.984901381e-14) (0.0002519293033 0.0105234716 7.537026558e-14) (0.0003458075626 0.01477034492 1.044719866e-13) (0.0002626047442 0.005091962889 3.694267114e-14) (0.0002659354557 0.004082790614 2.961519918e-14) (0.0002410726749 0.003063219647 2.221833828e-14) (0.0004301891169 0.00554621176 3.971822871e-14) (0.0006619908859 0.008661113134 6.127043317e-14) (0.0001307316956 0.001235524964 8.965050924e-15) (6.657722848e-05 0.0005578329149 4.05231404e-15) (1.674952691e-05 0.0001260573819 9.159339953e-16) (0.0001101991613 0.0008401565188 6.009082121e-15) (0.0002793025922 0.002157298464 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) (-3.246516184e-05 0.0002309328763 1.720845688e-15) (0 0 0) (0 0 0) (-3.865676224e-09 4.419912619e-08 0) (-3.760425845e-05 0.0004355261134 3.28903571e-15) (-0.0001475019478 0.001728935991 1.28647093e-14) (-2.494773236e-06 4.225990543e-05 3.191891196e-16) (-2.952228061e-06 6.586675848e-05 4.996003611e-16) (-2.314313593e-06 7.561352601e-05 5.828670879e-16) (-2.676520146e-05 0.0008842843616 6.675215936e-15) (-7.735267807e-05 0.002578541748 1.917910275e-14) (-9.884077046e-08 4.544821736e-05 3.469446952e-16) (2.1440141e-07 1.780386469e-05 1.387778781e-16) (1.235376001e-08 4.704619737e-07 0) (1.181378047e-05 0.0004565414021 3.441691376e-15) (4.508764198e-05 0.001772135377 1.318389842e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (2.121116739e-05 0.0002620703355 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.002599054647 0.06344848529 0) (-0.002598393366 0.06360528859 0) (-0.002762942567 0.06360632671 0) (0.002571374349 0.06385643669 0) (0.002241221482 0.06385771953 0) (0.001911067023 0.06385878391 0) (0.001904621946 0.06354578266 0) (0.001897481705 0.06323332538 0) (-0.002520837257 0.06093285391 0) (-0.002519695989 0.06108956632 0) (-0.002686588883 0.06109078173 0) (-0.0003180248187 0.06105285004 0) (-0.0005171458356 0.06107498262 0) (-0.0005182696265 0.06091827008 0) (-0.0005194003037 0.06076141194 0) (-0.0002337427912 0.06315731892 0) (0.001890096203 0.06292119032 0) (0.001882085283 0.06260917633 0) (0.002212558142 0.06260783289 0) (-0.002184766945 0.07617811675 0) (-0.002178065519 0.07650031839 0) (-0.002511781431 0.0764983442 0) (-0.002845217609 0.07649678163 0) (-0.0007373286175 0.07843232853 0) (-0.0007444649342 0.07812041013 0) (-0.0007525903333 0.07780807654 0) (-0.0004093249322 0.07780773233 0) (0.003354486814 0.07360099115 0) (0.003356316622 0.0739182499 0) (0.003024775653 0.07392092654 0) (-0.003218789565 0.0714460031 0) (-0.00355010005 0.0714483285 0) (-0.003551916846 0.07113485659 0) (-0.003553702815 0.07082161749 0) (-0.003538657886 0.07333150102 0) (-0.003540656136 0.07301711283 0) (-0.003542608253 0.0727030593 0) (-0.003211137453 0.07270074729 0) (0.003333028216 0.071074419 0) (0.003336127702 0.07139002264 0) (0.003005050246 0.07139234634 0) (-0.003233162552 0.06893838684 0) (-0.003564182068 0.06894066642 0) (-0.00356583961 0.06862706226 0) (-0.003567467069 0.06831358897 0) (-0.003555488678 0.07050839296 0) (-0.003557275814 0.07019499366 0) (-0.003226096196 0.07019269834 0) (0.003305244387 0.06855730198 0) (0.00330891393 0.06887118279 0) (0.002978212072 0.06887308137 0) (-0.003245848196 0.06643046698 0) (-0.003576605766 0.06643271553 0) (-0.003578029111 0.06611926988 0) (-0.003579422904 0.06580588228 0) (-0.003569065611 0.06800008634 0) (-0.003570635449 0.06768652524 0) (-0.003239776034 0.06768426138 0) (-0.001676158215 0.06720338206 0) (-0.00325662156 0.06392313037 0) (-0.003587510634 0.06392532161 0) (-0.003588905699 0.06361175924 0) (-0.003590358704 0.06329824098 0) (-0.003580802769 0.06549240718 0) (-0.003582153717 0.06517890275 0) (-0.003251410605 0.06517666887 0) (-0.001689795878 0.0646967363 0) (-0.001773049073 0.06461888028 0) (-0.001773125049 0.06454044765 0) (-0.001685235827 0.06563689635 0) (0.001106091408 0.06480070297 0) (0.0009421400804 0.06480103761 0) (0.0009390012974 0.06464423779 0) (0.0009360430347 0.064487626 0) (-0.00323975587 0.06139903193 0) (-0.003571994655 0.06140188843 0) (-0.003521009661 0.06109685845 0) (-0.003523293257 0.06078328798 0) (-0.003591883364 0.06298488346 0) (-0.003593480845 0.06267152647 0) (-0.003262300697 0.06266930398 0) (-0.002605800639 0.06203816442 0) (-0.002604878154 0.06219483473 0) (-0.002604041252 0.06235175327 0) (-0.002768605229 0.06235276237 0) (0.001447641695 0.0734598467 0) (-0.001732315878 0.07112212957 0) (-0.001897548966 0.07112326007 0) (-0.001898602424 0.07096660528 0) (-0.001891237269 0.07206394627 0) (-0.001892305609 0.07190724789 0) (-0.001893360128 0.07175044746 0) (-0.001728185402 0.07174930282 0) (-0.001402286587 0.07080667792 0) (-0.001401390164 0.07088476959 0) (-0.00140050142 0.07096300695 0) (-0.001484827341 0.07096365019 0) (0.001429925887 0.07187721292 0) (0.001517530244 0.0718765458 0) (0.001517699016 0.07195572058 0) (0.001518159393 0.07203493693 0) (0.001430930824 0.07092920543 0) (0.001447066224 0.07314282642 0) (0.001518880549 0.07211396204 0) (0.001519906285 0.07219281015 0) (0.001432199553 0.07219341975 0) (-0.001487589461 0.07065097168 0) (-0.001404138645 0.07065036394 0) (-0.001403203294 0.07072860097 0) (0.001650050049 0.06825141397 0) (0.001651893482 0.06840854365 0) (0.001653766362 0.06856571682 0) (0.001489040798 0.06856653775 0) (0.001425791481 0.07061350012 0) (-0.001681674067 0.06594997686 0) (-0.001678892246 0.06688996052 0) (-0.001773594263 0.06446201787 0) (-0.001774325317 0.06438363371 0) (-0.001689750663 0.06438294496 0) (-0.002760343151 0.06423326351 0) (-0.002595779493 0.06423221071 0) (-0.002595148825 0.06438881032 0) (-0.002594473192 0.06454558439 0) (0.0009328685057 0.06433111774 0) (0.0009293176085 0.06417472874 0) (0.001093503528 0.06417440695 0) (-0.002772254339 0.06172568757 0) (-0.002607661233 0.06172467826 0) (-0.00260676618 0.06188158181 0) (-0.003202847123 0.07395912812 0) (-0.003534464095 0.07396136836 0) (-0.003536583527 0.07364634018 0) (-0.003518254526 0.07586117391 0) (-0.003522114458 0.07554115004 0) (-0.003524884521 0.07522478079 0) (-0.003193091609 0.07522269948 0) (-0.0017042542 0.07489739883 0) (-0.001869866842 0.0748984112 0) (-0.001871297582 0.07473995017 0) (-0.001872698334 0.07458160689 0) (-0.001696074782 0.07553854987 0) (-0.001723791708 0.07237661981 0) (-0.00188906849 0.07237775062 0) (-0.001890167868 0.0722207903 0) (-0.001882425134 0.07331997831 0) (-0.001883554807 0.07316285799 0) (-0.001884670235 0.07300569387 0) (-0.001719204117 0.07300456168 0) (0.0029449897 0.06636117458 0) (0.0002160834316 0.06214746194 0) (0.000222711393 0.06230257593 0) (6.047616244e-05 0.06230215526 0) (-0.001714680225 0.07363375662 0) (-0.001880146449 0.07363487424 0) (-0.001881308646 0.07347728808 0) (-0.001873964994 0.07442367629 0) (-0.001875261028 0.07426571241 0) (-0.001709736228 0.07426463805 0) (0.001537055365 0.07552762362 0) (0.001703709292 0.07552359452 0) (0.00170272938 0.07568503856 0) (0.001702061025 0.07584526386 0) (0.001464969678 0.06668122874 0) (0.001631668905 0.06683742003 0) (0.001633875174 0.06699437229 0) (0.0014556661 0.06605371447 0) (0.00148156151 0.06793752456 0) (0.001646214888 0.06793679154 0) (0.001648191309 0.06809418243 0) (0.001635993844 0.06715129606 0) (0.001638159072 0.06730861276 0) (0.001473607538 0.06730933046 0) (-0.0004406655593 0.07702361558 0) (-0.0004426958495 0.0768676277 0) (-0.0002549218315 0.07687188965 0) (-7.304515183e-05 0.07687219059 0) (-0.001183121049 0.07603344382 0) (-0.001177651128 0.07619654225 0) (-0.001347048241 0.0761914925 0) (-0.001517084947 0.07618421749 0) (0.0001179699384 0.07686927017 0) (0.0003004640798 0.07686412945 0) (0.000297791443 0.0770209381 0) (0.0007803444268 0.0757047742 0) (-0.001692874401 0.06501001082 0) (-0.0009514988075 0.07537549495 0) (-0.001035962957 0.07529495757 0) (-0.0009449063114 0.07570373899 0) (-0.001397172071 0.07143317401 0) (-0.001397564141 0.07151153723 0) (-0.001482281084 0.07127708766 0) (-0.001397416388 0.07127642594 0) (-0.001397103436 0.07135479858 0) (0.001436668827 0.07156111521 0) (0.001435707331 0.07124508817 0) (0.001447352702 0.07282616399 0) (0.001443693938 0.07250976334 0) (0.001160853925 0.06880397975 0) (0.00116004295 0.06872542139 0) (0.001243323576 0.06872484402 0) (0.0007249453145 0.06684128506 0) (0.0008097309976 0.06691917361 0) (0.0007222723682 0.06652725134 0) (2.870610379e-05 0.06401807073 0) (-0.0006659740486 0.06214093719 0) (-0.003525576854 0.06046971751 0) (-0.00352785939 0.06015629269 0) (-0.003194088166 0.06015386198 0) (-0.001855578405 0.06061442202 0) (-0.001856734238 0.06045770971 0) (-0.001689855908 0.06045649441 0) (-0.001523006707 0.06045527932 0) (3.028662179e-05 0.06168329912 0) (-0.0006814772424 0.0759621229 0) (-0.0006750904534 0.07604772047 0) (-0.0007624751713 0.0760417472 0) (-0.001673466922 0.06751693499 0) (-0.001689339437 0.06532341196 0) (-0.001356150224 0.06045406418 0) (-0.001189255873 0.06045284876 0) (-0.001188235885 0.06060970771 0) (0.001451210634 0.07377591301 0) (0.001424210612 0.07029842433 0) (0.001421692322 0.0699826271 0) (-0.001682130053 0.06626336337 0) (-0.001681578765 0.06657706298 0) (0.0007191191657 0.06621287156 0) (-0.0006749892156 0.06182942573 0) (-0.0009410128861 0.06128416595 0) (0.003364840866 0.07613875007 0) (0.003031401069 0.07646269035 0) (0.001445461124 0.06542642524 0) (0.001700484763 0.07600682047 0) (0.001532516635 0.0761703908 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-6.936703977e-05 0.001502887511 6.050715484e-15) (-1.44818005e-05 0.0003771279376 1.512678871e-15) (-6.35553708e-05 0.00394273303 1.589006704e-14) (-1.180025477e-05 0.00137306604 5.495603972e-15) (5.48459546e-05 0.003951494259 1.59317004e-14) (2.065345928e-05 0.0009746467098 3.913536162e-15) (6.658086909e-05 0.001518610345 6.120104423e-15) (3.00615667e-07 5.898131889e-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 0 0) (0 0 0) (-3.788851962e-05 0.0003468029218 1.443289932e-15) (-2.618157083e-05 0.0002597248796 1.082467449e-15) (-0.000630106327 0.008049884582 3.338995747e-14) (-0.0004615105393 0.006586547346 2.711719738e-14) (-0.0009178394791 0.01942307907 8.054668044e-14) (-0.0006092775697 0.01550316248 6.382394613e-14) (-0.0004404681798 0.02703782799 1.121186477e-13) (-0.0001765547411 0.02055670247 8.464062784e-14) (0.0003943947338 0.02706516405 1.122435478e-13) (0.000414624805 0.01882108982 7.749356712e-14) (0.0008837276987 0.01949308078 8.083811398e-14) (0.0005915707006 0.01125321732 4.633793349e-14) (0.0006177656855 0.008123417579 3.36952688e-14) (0.0002199378182 0.002646862932 1.089406343e-14) (3.91306743e-05 0.0003663612995 1.526556659e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-7.494868273e-07 5.192398419e-06 2.775557562e-17) (-1.426669979e-05 0.0001054100178 4.440892099e-16) (-0.001019008588 0.009066229366 3.871902798e-14) (-0.0009982271745 0.009629285876 4.081457394e-14) (-0.002293092912 0.02853093374 1.218053436e-13) (-0.001980006607 0.02754199767 1.167260733e-13) (-0.002278440992 0.04709933126 2.010752675e-13) (-0.001745991193 0.04348411092 1.842692665e-13) (-0.0009461915957 0.05740440054 2.450817327e-13) (-0.0004354537502 0.05110825464 2.166045121e-13) (0.0008784812175 0.05743913213 2.452760217e-13) (0.00111700487 0.04857831141 2.059186155e-13) (0.002216757345 0.04720532277 2.016026235e-13) (0.001980018015 0.03639954944 1.543071226e-13) (0.002252466312 0.028682867 1.22499233e-13) (0.001574284804 0.01836399436 7.78543896e-14) (0.001000034735 0.009062601147 3.87051502e-14) (0.0003704323434 0.003157743503 1.337818745e-14) (9.069970843e-06 6.369349754e-05 2.775557562e-16) (0 0 0) (0 0 0) (-0.0005505644795 0.003685231707 1.623701174e-14) (-0.000746896939 0.005332408908 2.330080573e-14) (-0.002755019277 0.0236746624 1.042221864e-13) (-0.00274061788 0.02565227564 1.120215032e-13) (-0.004114023234 0.04969255857 2.186167913e-13) (-0.003759357884 0.05087148409 2.221001161e-13) (-0.003459904403 0.06951822137 3.058109321e-13) (-0.002819245948 0.06839644864 2.986083603e-13) (-0.00131436349 0.07760670152 3.414490912e-13) (-0.0006499488459 0.07504177659 3.276684479e-13) (0.001227411928 0.07762100336 3.415878691e-13) (0.001738696035 0.07298455854 3.187589082e-13) (0.003404728061 0.06984513658 3.074485111e-13) (0.003467320261 0.06147221064 2.685351941e-13) (0.004117389345 0.05030124386 2.21517249e-13) (0.003501931427 0.03925950932 1.715572129e-13) (0.002833900896 0.02475835421 1.090377788e-13) (0.001850665077 0.01522188262 6.653011475e-14) (0.0006245619699 0.004250419135 1.872113575e-14) (2.26833799e-07 1.400402717e-06 0) (0.0001134572251 0.0007373574561 3.219646771e-15) (-0.001424988491 0.00924090755 4.198030812e-14) (-0.001947200454 0.01347158749 6.071532166e-14) (-0.004371117172 0.03635920773 1.651179193e-13) (-0.004554279702 0.04109525547 1.851574449e-13) (-0.005516739137 0.06393630233 2.903094432e-13) (-0.005161341998 0.06698510745 3.017169847e-13) (-0.004079491402 0.07814076813 3.546885008e-13) (-0.003389211279 0.0788600888 3.550770789e-13) (-0.001407454971 0.07874638263 0) (-0.001401635378 0.07905829606 0) (-0.0007253973535 0.07967766162 0) (-0.0007303169858 0.07905512582 0) (-0.0003965479037 0.079053001 0) (-6.274454692e-05 0.07905068657 0) (-0.001064663587 0.07905694899 0) (-0.001068729576 0.07874543062 0) (0.001302172686 0.07872606699 0) (0.0009631809009 0.07873023984 0) (0.0006125109064 0.07904582724 0) (0.0009626764126 0.07904196628 0) (0.001301119787 0.07903808873 0) (0.0002721401508 0.07904824776 0) (0.001971613551 0.07965468505 0) (0.003980499755 0.07809702022 3.547856453e-13) (0.004410903055 0.07487769604 3.375077995e-13) (0.005495068181 0.06484027745 2.946809463e-13) (0.005190064852 0.05617797013 2.532973831e-13) (0.004459598033 0.03770255322 1.713629239e-13) (0.003486151443 0.02775384025 1.251221349e-13) (0.001606858267 0.01058153556 4.808653475e-14) (0.0002925050415 0.001748508481 7.882583475e-15) (0.0007358300755 0.004629692661 2.087219286e-14) (-0.002207982105 0.01385322152 6.500355809e-14) (-0.002892579772 0.01936808084 9.012235402e-14) (-0.005321890951 0.04279013587 2.007144451e-13) (-0.005632064765 0.04914230574 2.285949208e-13) (-0.006143061921 0.06871390793 3.222422329e-13) (-0.005794062385 0.07248620307 3.37146977e-13) (-0.004175309304 0.07650014247 0) (-0.003170353392 0.07712898178 0) (-0.003174538923 0.07681224851 0) (-0.003510087321 0.07649864793 0) (-0.003507186071 0.076813031 0) (-0.003503444132 0.07712885282 0) (-0.003513423527 0.07618253914 0) (-0.001440813051 0.0778046408 0) (-0.001779160772 0.0778036529 0) (-0.002147335241 0.07747002546 0) (-0.002161179083 0.07714506769 0) (0.0006359625086 0.07748466852 0) (0.001318245886 0.07778454777 0) (0.0009720203168 0.0777926185 0) (0.006129192441 0.06998969585 3.286260153e-13) (0.006117185381 0.06405891621 2.983169267e-13) (0.005555997601 0.04543454065 2.133293542e-13) (0.004728483792 0.03640490939 1.695310559e-13) (0.002537198698 0.01616639751 7.588374373e-14) (0.0008719372759 0.005044501409 2.348121697e-14) (0.001563796282 0.009521103873 4.432565426e-14) (-0.002521864863 0.0152938519 7.419065362e-14) (-0.003375613592 0.02184450613 1.050826093e-13) (-0.005683253185 0.04414309643 2.141065103e-13) (-0.006118864394 0.05155806652 2.47940557e-13) (-0.006341411665 0.06841534679 3.317901509e-13) (-0.005987087528 0.07218688441 3.471389842e-13) (0.003360210977 0.0745510004 0) (0.003361659195 0.07486786138 0) (0.003695476621 0.07517977482 0) (0.006350949394 0.07029729995 3.413380689e-13) (0.00653456293 0.06630287084 3.192446307e-13) (0.006088378976 0.04820375358 2.340627692e-13) (0.005423224526 0.04041524604 1.945665851e-13) (0.00307271792 0.01893943651 9.194034423e-14) (0.001304913153 0.007301842205 3.513855873e-14) (0.002108069891 0.01241465631 5.97577543e-14) (-0.002710731086 0.01587962025 7.974176874e-14) (-0.003566659307 0.02229812818 1.109945469e-13) (-0.005864230838 0.04396702792 2.207400929e-13) (-0.006279834163 0.05107707835 2.541855615e-13) (-0.006420469175 0.06678660749 3.352873534e-13) (-0.006044447549 0.07025775923 3.496508638e-13) (0.003341964791 0.07202153843 0) (0.003344701016 0.07233726125 0) (0.003678558602 0.07265068917 0) (0.006366603571 0.06829529319 3.433225926e-13) (0.006643172644 0.06530453965 3.254341241e-13) (0.006179783441 0.04734614063 2.380040609e-13) (0.005645498738 0.04070707294 2.028377466e-13) (0.003182695611 0.01896415915 9.531264666e-14) (0.001463487107 0.007916611055 3.942679516e-14) (0.002300176335 0.01309670904 6.523948048e-14) (-0.002891278289 0.01634081794 8.504308369e-14) (-0.003748926284 0.02261676729 1.166428065e-13) (-0.006032694318 0.04360686669 2.268879529e-13) (-0.006422683543 0.0503689985 2.596950432e-13) (-0.006491221882 0.06503279746 3.383404668e-13) (-0.006089300085 0.06817003601 3.514827318e-13) (-0.00239724031 0.07050048229 0) (0.003316273628 0.06949977447 0) (0.003319641351 0.06981421095 0) (0.003654211529 0.07012748803 0) (0.006251465458 0.06495534708 3.384792446e-13) (0.006522072558 0.06208038351 3.205768984e-13) (0.005903317721 0.04372953382 2.27859398e-13) (0.005438239241 0.03790943255 1.957323192e-13) (0.002879013996 0.01656831526 8.629208459e-14) (0.001328936149 0.006942584863 3.583244812e-14) (0.002135714092 0.01174558602 6.061817714e-14) (-0.003117568489 0.01697524209 9.167666626e-14) (-0.003951470354 0.02297185171 1.229016888e-13) (-0.006228292329 0.0433429632 2.340211358e-13) (-0.006576843622 0.04966304145 2.656208586e-13) (-0.006562672004 0.06324018581 3.414352134e-13) (-0.00613308935 0.06604729139 3.532729664e-13) (-0.002412462696 0.06799223134 0) (0.003284470077 0.06698669214 0) (0.003288868899 0.06730071329 0) (0.006014067024 0.06047434602 3.270439475e-13) (0.006224191495 0.05731446599 3.07059933e-13) (0.005369111897 0.03840906214 2.076949723e-13) (0.004845622151 0.03261997572 1.747213485e-13) (0.002331411757 0.01294265238 6.995792834e-14) (0.0009801329024 0.004939313333 2.645106356e-14) (0.001704651647 0.009044765017 4.841960166e-14) (-0.003388530461 0.01774817325 9.961476088e-14) (-0.004198133298 0.02348279441 1.305067165e-13) (-0.006462074648 0.04322433129 2.425282197e-13) (-0.00675757873 0.0490575995 2.725736303e-13) (-0.00664688942 0.06151012979 3.451128272e-13) (-0.006177875313 0.06390592021 3.550909566e-13) (-0.002425800235 0.06548479688 0) (0.005628650769 0.05472550075 3.075595334e-13) (0.005797575969 0.05159176207 2.871314297e-13) (0.004640259096 0.03201474906 1.798977634e-13) (0.004146696293 0.02692053862 1.497968416e-13) (0.001673152464 0.008947802441 5.026534744e-14) (0.0005504925619 0.002672520426 1.487698853e-14) (0.00106687769 0.005454108609 3.033684415e-14) (-0.003721549672 0.01875203891 1.095651347e-13) (-0.00456972188 0.02455093744 1.419558915e-13) (-0.006732713719 0.04331169618 2.529781939e-13) (-0.007003379765 0.04878724926 2.820244038e-13) (-0.006719536873 0.05980874721 3.493316747e-13) (-0.006224609775 0.06172940365 3.568673135e-13) (-0.002602444832 0.06266496462 0) (-0.00260174113 0.06282159283 0) (-0.002436850216 0.06297747685 0) (0.0002345381082 0.06261335322 0) (0.0002398159338 0.06276907421 0) (0.0004076416991 0.06292515534 0) (0.003804293094 0.06080605946 3.55590557e-13) (0.004403443227 0.06032159302 3.492345302e-13) (0.005077589498 0.04768703047 2.789157794e-13) (0.005155612474 0.04427590016 2.563504964e-13) (0.003705350677 0.02461551028 1.439542929e-13) (0.00330527686 0.02066150815 1.195987753e-13) (0.0009958524396 0.00512279654 2.994826609e-14) (0.0001889660596 0.0008826041868 5.107025913e-15) (0.0005972756014 0.002937650019 1.700029006e-14) (-0.003338360725 0.01619076739 9.861556016e-14) (-0.004447788579 0.02305387449 1.389305337e-13) (-0.006296543384 0.03900379694 2.375044605e-13) (-0.006846246075 0.04606047695 2.77500245e-13) (-0.006501150717 0.05576446777 3.395617121e-13) (-0.00613748971 0.05893255838 3.550770789e-13) (-0.002357384852 0.06046121008 0) (-0.002190506523 0.06045999478 0) (0.0004750578126 0.05981355409 0) (0.0008111082642 0.06012469388 0) (0.003624667397 0.05597785135 3.412825578e-13) (0.004129069642 0.05474914315 3.302913498e-13) (0.004378290095 0.03958800037 2.413624856e-13) (0.004400091988 0.03642423552 2.197408921e-13) (0.002734596635 0.01746613589 1.064703881e-13) (0.002340787424 0.01407058501 8.486267244e-14) (0.0004023174073 0.001987632714 1.211530876e-14) (1.111670056e-06 4.988692172e-06 2.775557562e-17) (0.0001499254549 0.0007084931319 4.274358645e-15) (-0.002092723211 0.00972118943 6.185330026e-14) (-0.00325302704 0.0161545525 1.016547957e-13) (-0.004818543041 0.02858962901 1.818545314e-13) (-0.00568828833 0.03665401746 2.305655666e-13) (-0.00558391168 0.04583984405 2.915584441e-13) (-0.005645138036 0.05184197204 3.261141357e-13) (-0.004069567505 0.05440369948 3.460981501e-13) (-0.003539183782 0.05684154376 3.576583474e-13) (-0.001541624205 0.05600600894 3.564093465e-13) (-0.0008805569437 0.05700143384 0) (0.001084019218 0.0544849566 3.468475507e-13) (0.001747831638 0.05556745517 3.498729084e-13) (0.00312097085 0.04617317908 2.940148125e-13) (0.003606694422 0.04584896347 2.887551309e-13) (0.003368150084 0.02913430552 1.855182674e-13) (0.003405843575 0.0269921031 1.699890229e-13) (0.001666611084 0.01018369275 6.483702464e-14) (0.001371310495 0.007896584491 4.971023593e-14) (4.081749054e-05 0.0001931222347 1.221245327e-15) (0 0 0) (0 0 0) (-0.0006660380585 0.002958757103 1.970645869e-14) (-0.001546260942 0.007348231751 4.83779683e-14) (-0.002665616014 0.01514135823 1.008221284e-13) (-0.003664873211 0.02261603847 1.48853152e-13) (-0.003755855909 0.02954257682 1.967037644e-13) (-0.004229276755 0.03719999942 2.448180547e-13) (-0.003087117973 0.03955293028 2.63372657e-13) (-0.002964231902 0.04554334276 2.997740944e-13) (-0.001229711048 0.0429114695 2.857991621e-13) (-0.0007627297488 0.04715471067 3.104738688e-13) (0.0008367503312 0.03972459813 2.646494135e-13) (0.00140362642 0.04248501873 2.798039578e-13) (0.002125819812 0.02989374542 1.992017662e-13) (0.002549049028 0.0308704592 2.033512247e-13) (0.001888287741 0.01555905339 1.036670749e-13) (0.00198189427 0.01498265946 9.86849491e-14) (0.00054948078 0.003204105549 2.134403765e-14) (0.0004405298831 0.002423034935 1.595945598e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.000208733861 0.0009473389478 6.536438057e-15) (-0.0007044685292 0.003824797367 2.672861932e-14) (-0.001438630217 0.008495036085 5.86197757e-14) (-0.001601213158 0.01207104177 8.432143872e-14) (-0.00219462796 0.01851655037 1.277727923e-13) (-0.001567387822 0.01933113092 1.350308754e-13) (-0.001733475614 0.0256579565 1.770666946e-13) (-0.0006480655506 0.02214838121 1.547373341e-13) (-0.0004441041887 0.02725828074 1.881411693e-13) (0.0004459320488 0.01948050124 1.361133428e-13) (0.0008081274467 0.02287950951 1.57943103e-13) (0.000927436404 0.01231455538 8.60561622e-14) (0.001209899253 0.01387571298 9.579836924e-14) (0.0005149012356 0.004029310281 2.814415367e-14) (0.0005899014467 0.004241124202 2.928213227e-14) (8.773847537e-08 4.874051126e-07 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-8.764704871e-05 0.0004937418861 3.580469254e-15) (-0.0001684678072 0.001213358113 8.909539773e-15) (-0.0004906291608 0.003964104558 2.875477634e-14) (-0.0003257932535 0.00386178284 2.836619828e-14) (-0.0005244111105 0.007487970338 5.430378369e-14) (-0.0001527701205 0.005128601807 3.766431611e-14) (-0.0001350136766 0.0083743254 6.072919945e-14) (9.807212079e-05 0.003928054608 2.885192085e-14) (0.000229494116 0.006037162473 4.378442053e-14) (0.0001026695771 0.001286163692 9.450773497e-15) (0.0001930792183 0.002092800546 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) (-1.091400432e-06 1.490029734e-05 1.110223025e-16) (0 0 0) (-1.112026015e-06 6.784135206e-05 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.002194960886 0.07361147458 0) (0.002175303104 0.07108218021 0) (0.002190860806 0.07297847506 0) (-0.002408800613 0.06861908757 0) (0.001983436697 0.06856417532 0) (0.002148395184 0.06856333813 0) (0.002169121455 0.07045135148 0) (-0.002422677776 0.06611155509 0) (-0.002434149911 0.06360426726 0) (-0.002597084838 0.06391896812 0) (-0.002597731767 0.06376213558 0) (0.001917424713 0.0641717858 0) (0.001580579493 0.06386011289 0) (-0.00235278853 0.06108835081 0) (-0.002577038889 0.06139356479 0) (-0.00251855472 0.06124627873 0) (-0.0004679724936 0.06120818669 0) (-0.0006841363109 0.06107619874 0) (-0.0003165173274 0.06307894964 0) (0.001510359234 0.0613658663 0) (0.001854711632 0.06167438217 0) (0.001864275104 0.06198558377 0) (0.001551175812 0.06261056664 0) (0.001873418649 0.06229712342 0) (-0.00167298696 0.0765108382 0) (-0.001677838145 0.07634870108 0) (-0.001851947371 0.07617901091 0) (-0.001846889783 0.07634349006 0) (-0.001841574566 0.07650734539 0) (-0.001854284488 0.07602009127 0) (-0.002169385136 0.07682425925 0) (-0.00110143481 0.0778055338 0) (-0.000766948103 0.07749374923 0) (0.001662619442 0.07777536903 0) (0.002006642617 0.07776467806 0) (0.001997748787 0.07808342772 0) (0.002017069271 0.07744240704 0) (0.002350952234 0.07775131958 0) (0.003687798379 0.0739154426 0) (0.003358500463 0.07423412238 0) (-0.003546391623 0.07207554852 0) (-0.003548267524 0.07176196052 0) (-0.003881599872 0.07145065528 0) (-0.003544514449 0.0723893113 0) (0.003667190805 0.07138772817 0) (0.003339110884 0.07170565626 0) (-0.00356077928 0.0695679178 0) (-0.003562495822 0.06925421211 0) (-0.003895434508 0.06894296227 0) (-0.003888644769 0.07019729035 0) (-0.003559034458 0.06988150676 0) (-0.002401164975 0.06987356971 0) (0.003639688292 0.06886923999 0) (0.003312658311 0.06918533979 0) (-0.003573687419 0.06705944609 0) (-0.003575153397 0.0667461464 0) (-0.003907741903 0.0664349814 0) (-0.003901815067 0.06768882055 0) (-0.003572176264 0.06737294936 0) (-0.002416010279 0.06736509754 0) (0.00107111965 0.06809657892 0) (-0.003584824681 0.06455214126 0) (-0.00358614597 0.06423870943 0) (-0.004250700462 0.06392986003 0) (-0.003918909036 0.06392757483 0) (-0.003913348217 0.06518115447 0) (-0.003583474051 0.064865602 0) (-0.002428718793 0.0648580372 0) (-0.002593811805 0.06470240225 0) (0.0009449672639 0.06495765035 0) (0.0007783745402 0.06480128351 0) (-0.003597187469 0.06204455405 0) (-0.003599297321 0.06172884124 0) (-0.004237276977 0.06140709752 0) (-0.003904526424 0.06140451403 0) (-0.004257267812 0.06267606924 0) (-0.003925185098 0.06267378191 0) (-0.003595267345 0.06235821455 0) (-0.002439870301 0.06235077616 0) (-0.00260319212 0.06250835129 0) (-0.002199639849 0.05920585854 0) (-0.002201923446 0.05889228807 0) (-0.001868152222 0.05888985736 0) (-0.001534391193 0.05888742673 0) (-0.00253569467 0.05889471878 0) (-0.000864573887 0.05919613584 0) (-0.0008668574839 0.05888256537 0) (-0.0005330920856 0.0588801347 0) (-0.001200624339 0.05888499605 0) (-0.0008554522117 0.06045027216 0) (-0.0006885622304 0.06044905677 0) (-0.0005205357461 0.06060469949 0) (-0.001293839574 0.07442000497 0) (-0.001300449345 0.07347318902 0) (0.00219840907 0.0742449595 0) (-0.001895455555 0.0714367154 0) (-0.001896494978 0.07127998768 0) (-0.002228014931 0.07112555019 0) (-0.002062767384 0.07112440502 0) (-0.002058622133 0.07175160729 0) (-0.001894415707 0.07159350138 0) (-0.001316154723 0.07190341617 0) (-0.001314389088 0.07096226331 0) (-0.001398782053 0.07111970059 0) (-0.001399625146 0.0710413318 0) (-0.001301422477 0.07315876423 0) (-0.001312734817 0.07221681814 0) (0.00218100975 0.07171378434 0) (0.002346300778 0.07171260973 0) (0.002347669951 0.07187061678 0) (0.002348996704 0.07202879892 0) (0.002344903855 0.07155479223 0) (0.001517682524 0.07179745608 0) (0.001602585946 0.07187591181 0) (0.001605020456 0.07219220486 0) (0.001521267318 0.07227169951 0) (0.002186210251 0.07234588738 0) (0.00235157357 0.07234463941 0) (0.002352797736 0.07250273491 0) (0.002350292419 0.07218671911 0) (-0.002405034565 0.06924621978 0) (-0.001405086071 0.07057206874 0) (-0.001319728356 0.07064970553 0) (0.001074642951 0.0684113784 0) (0.00215568068 0.069191741 0) (0.001818565065 0.06856493906 0) (0.001655551219 0.06872280324 0) (0.002162579728 0.06982107886 0) (-0.002419409142 0.06673838505 0) (-0.001857356893 0.06438420926 0) (-0.001775230507 0.0643053382 0) (-0.002596423982 0.06407571316 0) (-0.002431506909 0.06423118917 0) (0.00075128294 0.06354941913 0) (0.0007657453499 0.06417491497 0) (0.0009260963675 0.06401820626 0) (-0.001684887495 0.06100672858 0) (-0.002604875396 0.06156521357 0) (-0.002443504846 0.06172370126 0) (-0.001356179741 0.06100681081 0) (-0.00353012499 0.07459118949 0) (-0.003532272903 0.07427625036 0) (-0.003527525987 0.07490806977 0) (-0.0018665127 0.07521698282 0) (-0.001868211188 0.07505775616 0) (-0.002035479399 0.07489943522 0) (-0.00186456211 0.07537682667 0) (-0.001886900241 0.07269148215 0) (-0.001887985055 0.07253452172 0) (-0.002054403423 0.07237889642 0) (-0.002050107224 0.07300682585 0) (-0.001885784814 0.07284864627 0) (0.003280176388 0.06667310718 0) (0.0003759841691 0.06527232243 0) (0.0003859738837 0.06230265413 0) (0.0002284354671 0.06245797324 0) (-0.001877762844 0.07395017724 0) (-0.001878985313 0.07379231477 0) (-0.002045627238 0.07363599198 0) (-0.002040814956 0.07426678698 0) (-0.001876526659 0.07410792308 0) (0.001704029966 0.0753636278 0) (0.001869935186 0.07552079054 0) (0.002201018642 0.07487929093 0) (0.001642252679 0.06762272352 0) (0.001644139274 0.06777978007 0) (0.00181094077 0.0679360143 0) (0.001802827014 0.06730787963 0) (0.001640264981 0.06746578423 0) (-0.0003244677991 0.06276623608 0) (-0.0007908923773 0.0768628576 0) (-0.000616965223 0.07686554685 0) (-0.0004457423216 0.07671130349 0) (-0.0009737487084 0.07685366451 0) (-0.001158814236 0.07668331713 0) (-0.001167727714 0.07651856894 0) (-0.001009665723 0.07619894414 0) (-0.001173700248 0.07635645455 0) (0.0006542551648 0.07685251237 0) (0.0008266853717 0.07684744932 0) (0.001011648034 0.0766754719 0) (0.0003082621889 0.07670532156 0) (0.0004816147499 0.07685711088 0) (0.00112085906 0.07505271028 0) (0.0008666599355 0.07562132977 0) (0.001067924636 0.0677822577 0) (0.0003721715766 0.06495839897 0) (-0.002031954565 0.0621914489 0) (-0.001296967503 0.07410409566 0) (-0.001300359336 0.0737883485 0) (-0.001314532642 0.07158935117 0) (-0.001398016256 0.07119805538 0) (-0.001310191552 0.07127564506 0) (-0.001305241029 0.07284462233 0) (-0.001309043667 0.07253046575 0) (0.001075764165 0.06872613711 0) (0.001159255916 0.06864695023 0) (-0.002034627475 0.06187842017 0) (-0.002032545266 0.06156433726 0) (-0.000583133653 0.06221950991 0) (-0.00386161605 0.06015872329 0) (-0.003530142987 0.05984272222 0) (-0.002023613628 0.06045877937 0) (-0.001857876567 0.06030085166 0) (-0.0002814809508 0.07632194234 0) (-0.0005850695573 0.07605627879 0) (-0.0006669879315 0.07613411275 0) (0.0001261766651 0.07632117143 0) (-0.001190361791 0.06029599044 0) (-0.001022349871 0.06045163325 0) (-0.001081083072 0.06122532337 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (3.952025214e-05 0.0002249991083 1.01307851e-15) (0.0003464257906 0.001909056677 8.881784197e-15) (0.0006435788481 0.003430186849 1.651456749e-14) (0.000759767117 0.003914339447 1.949829187e-14) (0.0006616727517 0.003291832254 1.698641228e-14) (0.0004161918289 0.001997107455 1.068589661e-14) (0.0001537632568 0.0007107843447 3.941291737e-15) (5.285238288e-06 2.350373639e-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.002204205982 0.05857886325 0) (-0.0008691400201 0.05856914054 0) (0.002511650169 0.07171144926 0) (0.002516980688 0.07234340569 0) (0.002902166564 0.06385494528 0) (-0.0007329963135 0.07874381583 0) (0.0006141430506 0.07873454411 0) (-0.003177823832 0.07649718367 0) (0.00362399998 0.06761301042 0) (-0.004589627036 0.06267838771 0) (-0.002393306171 0.07112669567 0) (-0.001684723116 0.076181296 0) (-0.003874210025 0.07270538682 0) (-0.004582797635 0.06393216203 0) (-0.004570203256 0.06140955121 0) (-0.003866197583 0.07396360945 0) (-0.003856764819 0.07522686273 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-1.032219724e-05 5.79341557e-05 2.498001805e-16) (-0.0002075834963 0.001127831838 5.245803791e-15) (-0.0003692768066 0.001939873778 9.339751195e-15) (-0.0004496273366 0.002282214824 1.136590821e-14) (-0.0005368019796 0.002630187149 1.355859869e-14) (-0.0006407613174 0.003026570198 1.619537837e-14) (-0.0007244893059 0.003294127008 1.831867991e-14) (-0.001009387336 0.004410525537 2.550737399e-14) (-0.0009701462793 0.004086788804 2.464695115e-14) (-0.0004348516575 0.001754869327 1.10467191e-14) (-7.447719134e-06 2.873820674e-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.001487011052 0.06202679787 0) (-0.001480173675 0.06210446758 0) (-0.001444957263 0.06202318533 0) (-0.001438119781 0.0621008696 0) (-0.001412609362 0.06202041542 0) (-0.001405770423 0.06209809968 0) (-0.001493457602 0.06194899424 0) (-0.001451408607 0.06194532347 0) (-0.001419062481 0.06194250988 0) (-0.0007649889228 0.0738601737 0) (-0.0007582107219 0.07393871774 0) (-0.000722918979 0.07385677952 0) (-0.0007161665205 0.07393498875 0) (-0.0006905569094 0.07385415516 0) (-0.0006838266441 0.07393211695 0) (0.0005563864127 0.07527213148 0) (0.0005817700467 0.07520886798 0) (0.0005172412998 0.07525634685 0) (0.0005423275002 0.07519384146 0) (0.0004871297752 0.07524420326 0) (0.0005119871885 0.07518228214 0) (0.0004933591748 0.06772719109 0) (0.0004799703412 0.0676615125 0) (0.0004520002592 0.06773561963 0) (0.000438612882 0.06766994103 0) (0.0004201862443 0.06774209975 0) (0.0004067988671 0.06767642115 0) (-0.0007509898217 0.07401685074 0) (-0.0007089660389 0.07401291798 0) (-0.0006766389807 0.07400988605 0) (-0.0001232629494 0.06515422293 0) (-0.0001534691974 0.06504377711 0) (-0.0001639791946 0.06516534134 0) (-0.0001941392635 0.06505506996 0) (-0.0001952994429 0.06517390068 0) (-0.000225423763 0.06506376012 0) (-0.0008743455521 0.06271314532 0) (-0.0008958635826 0.06264901157 0) (-0.0009143391821 0.06272664714 0) (-0.000935796332 0.06266267317 0) (-0.0009451038103 0.06273702308 0) (-0.0009665132936 0.06267319441 0) (-0.001514642163 0.0614108507 0) (-0.001523844875 0.06148078661 0) (-0.00148738352 0.06140845285 0) (-0.001488083861 0.06147768598 0) (-0.00146641442 0.06140661059 0) (-0.001460576061 0.06147530088 0) (0.0006215175861 0.07509837443 0) (0.0005816223758 0.07508459069 0) (0.0005509350978 0.07507398791 0) (0.0002083140749 0.07584901429 0) (0.0002939153798 0.07575729945 0) (0.0001805501051 0.07581722361 0) (0.0002613344313 0.0757304686 0) (0.0001591914133 0.07579276934 0) (0.0002362704778 0.07570982883 0) (-0.00120360089 0.06578587109 0) (-0.001198658172 0.06586397698 0) (-0.00116148248 0.06578313198 0) (-0.001156534969 0.0658612961 0) (-0.001129081637 0.06578103169 0) (-0.001124132352 0.06585923948 0) (-0.001188836693 0.06601960662 0) (-0.001184172117 0.06609351978 0) (-0.001146711715 0.06601696942 0) (-0.001142044014 0.06609091169 0) (-0.001114307536 0.06601492736 0) (-0.001109639516 0.06608891332 0) (-0.00120878307 0.06570788346 0) (-0.001166667892 0.06570510069 0) (-0.00113427028 0.06570295672 0) (-0.001224340261 0.0654736585 0) (-0.001219158794 0.06555174808 0) (-0.001182223625 0.06547087571 0) (-0.001177043721 0.06554895074 0) (-0.001149826014 0.06546873174 0) (-0.001144647566 0.06554680678 0) (-0.001270785242 0.06477849754 0) (-0.001265611622 0.06485030962 0) (-0.001228686431 0.06477546728 0) (-0.001223511143 0.06484730847 0) (-0.001196303306 0.06477313407 0) (-0.001191124999 0.0648449898 0) (-0.0003700772608 0.06428980337 0) (-0.0004033685862 0.06417962762 0) (-0.0004105345546 0.0643018375 0) (-0.0004437737382 0.06419182158 0) (-0.0004416554379 0.06431109451 0) (-0.0004748557995 0.0642012094 0) (-0.001467734202 0.06225598535 0) (-0.001461968909 0.06232144272 0) (-0.00142567562 0.06225243103 0) (-0.001419924601 0.06231772829 0) (-0.001393323032 0.06224970479 0) (-0.001387581706 0.06231487103 0) (-0.001484646176 0.06129132932 0) (-0.001476600798 0.06129447506 0) (-0.001513969393 0.06171543165 0) (-0.001507565581 0.06179336668 0) (-0.001472006327 0.06171176151 0) (-0.001465531363 0.06178966689 0) (-0.001439725847 0.06170893383 0) (-0.001433197206 0.06178680969 0) (-0.001209619393 0.06177064548 0) (-0.001232851526 0.06170814095 0) (-0.00124913898 0.06178544015 0) (-0.001272336371 0.06172290623 0) (-0.001279539463 0.06179681843 0) (-0.001302709394 0.06173425518 0) (0.0009614442506 0.07337557433 0) (0.0009686651563 0.07329810812 0) (0.000919433603 0.07337151074 0) (0.0009266273952 0.07329432146 0) (0.0008871155671 0.07336838156 0) (0.0008942905602 0.07329141089 0) (0.0009754958355 0.07321985823 0) (0.0009334325235 0.07321636306 0) (0.0009010767833 0.07321365654 0) (0.0009875066003 0.07306310829 0) (0.0009923655277 0.07298450863 0) (0.0009453954175 0.07306023977 0) (0.0009502347257 0.07298194613 0) (0.0009130025033 0.07305802874 0) (0.0009178261375 0.07297998281 0) (0.0009658910316 0.07085758173 0) (0.0009593521673 0.07077950203 0) (0.000923824531 0.07086104871 0) (0.0009172951477 0.0707830709 0) (0.0008914655864 0.07086370218 0) (0.0008849442277 0.07078582626 0) (0.000983289588 0.07109265263 0) (0.0009778637297 0.07101440461 0) (0.0009411778523 0.07109550821 0) (0.0009357600187 0.07101736208 0) (0.0009087834721 0.07109769585 0) (0.0009033722067 0.07101965163 0) (0.0009527942348 0.07070120399 0) (0.0009107578459 0.07070500575 0) (0.000878422763 0.07070793578 0) (0.0009375587136 0.07054594878 0) (0.0009302138722 0.07047199688 0) (0.000895557124 0.07055012898 0) (0.000888223114 0.07047626439 0) (0.0008632488158 0.07055333555 0) (0.0008559211619 0.07047954374 0) (-0.0007878755465 0.07355431257 0) (-0.0007825568626 0.07362644402 0) (-0.0007457718355 0.0735513551 0) (-0.0007404645134 0.07362332642 0) (-0.0007133839174 0.07354908011 0) (-0.000708084832 0.07362092041 0) (-0.0007766930496 0.07370382952 0) (-0.0007346039314 0.07370066823 0) (-0.0007022289376 0.07369821856 0) (-0.0004984322625 0.06386922347 0) (-0.0005188385106 0.06380435337 0) (-0.0005387298994 0.06388178077 0) (-0.0005591078389 0.06381699785 0) (-0.0005697269288 0.06389144471 0) (-0.0005900855103 0.06382671991 0) (-0.0007707168819 0.06301984582 0) (-0.0007918278736 0.06295620432 0) (-0.0008107717106 0.06303314418 0) (-0.0008318363861 0.06296966256 0) (-0.0008415838993 0.06304338937 0) (-0.000862612984 0.06297999489 0) (0.0005518979585 0.0680200044 0) (0.0005380486605 0.06794969745 0) (0.0005104861585 0.06802817115 0) (0.0004966384229 0.06795787876 0) (0.0004786298785 0.06803444767 0) (0.0004647866184 0.06796416981 0) (0.0005232587764 0.06787463456 0) (0.0004818680028 0.06788288855 0) (0.0004500268175 0.06788923779 0) (0.0001918279768 0.06637603947 0) (0.0001752399317 0.06630706333 0) (0.0001507926952 0.0663859076 0) (0.0001342152694 0.06631698964 0) (0.0001192257028 0.06639350744 0) (0.0001026572277 0.06632461854 0) (-0.0007283370428 0.07425060164 0) (-0.0007200983145 0.07432789701 0) (-0.0006863526407 0.07424626135 0) (-0.0006781404749 0.07432330931 0) (-0.0006540569386 0.07424292378 0) (-0.0006458666479 0.07431976799 0) (-0.0007361362253 0.07417266221 0) (-0.0006941283857 0.07416854022 0) (-0.0006618153901 0.07416537731 0) (-0.001093823627 0.06766486098 0) (-0.001089723511 0.06773886564 0) (-0.001051678944 0.06766252951 0) (-0.001047580284 0.06773653418 0) (-0.00101926131 0.06766073496 0) (-0.00101516265 0.06773473963 0) (-0.001128215731 0.06703993266 0) (-0.001123935161 0.0671181162 0) (-0.001086070836 0.06703763032 0) (-0.001081790266 0.06711581386 0) (-0.00105365164 0.06703585032 0) (-0.00104937107 0.06711403386 0) (-0.001115354982 0.0672744977 0) (-0.001111043827 0.06735268102 0) (-0.001073210193 0.06727218079 0) (-0.001068899038 0.06735036411 0) (-0.001040792559 0.06727038624 0) (-0.001036481404 0.06734856956 0) (-0.001098110467 0.0675872164 0) (-0.001055967135 0.0675848995 0) (-0.001023548045 0.06758310494 0) (-0.001106732672 0.06743086433 0) (-0.001064589445 0.06742853287 0) (-0.001032170249 0.06742675287 0) (-0.001180194717 0.06615887365 0) (-0.00113806484 0.06615630924 0) (-0.001105657217 0.06615433998 0) (-0.001169423203 0.06633775687 0) (-0.001164762405 0.06641515113 0) (-0.001127291656 0.06633522158 0) (-0.001122630965 0.06641260127 0) (-0.001094882471 0.06633326688 0) (-0.001090223236 0.06641064658 0) (-0.001132496195 0.06696176369 0) (-0.001090351406 0.06695944678 0) (-0.001057932104 0.06695768135 0) (-0.001145729417 0.06672765288 0) (-0.001141045655 0.06680560044 0) (-0.001103597871 0.06672511759 0) (-0.001098907434 0.06680318163 0) (-0.001071188579 0.06672317745 0) (-0.001066493243 0.06680131427 0) (-0.001160017338 0.06649331672 0) (-0.001117887354 0.06649076687 0) (-0.001085479838 0.06648878305 0) (-0.001150489762 0.06664958936 0) (-0.001108359884 0.06664702495 0) (-0.001075952367 0.06664504113 0) (-0.001244877216 0.06516124052 0) (-0.001239772728 0.06523935979 0) (-0.001202758806 0.06515850141 0) (-0.001197654424 0.06523660612 0) (-0.001170359526 0.06515638656 0) (-0.001165256707 0.06523447672 0) (-0.001229483966 0.06539555407 0) (-0.001187367225 0.06539278585 0) (-0.001154969614 0.06539064188 0) (-0.000192200148 0.06490609832 0) (-0.0002104692106 0.0648411544 0) (-0.0002328261161 0.06491755107 0) (-0.0002510741126 0.06485267981 0) (-0.0002640769972 0.06492635751 0) (-0.0002823085487 0.0648615444 0) (-0.001249942274 0.06508313552 0) (-0.001207823864 0.06508039641 0) (-0.001175423022 0.06507829611 0) (-0.00126006047 0.06492736239 0) (-0.001217950403 0.06492447769 0) (-0.001185559147 0.06492226094 0) (-0.0004237067237 0.06411231009 0) (-0.0004640879363 0.06412459126 0) (-0.0004951506397 0.0641340372 0) (-0.0004646377039 0.06397890034 0) (-0.0005049741627 0.06399132684 0) (-0.0005360025196 0.06400088905 0) (-0.001520290689 0.0616376271 0) (-0.001478711091 0.06163390149 0) (-0.001446726585 0.06163103228 0) (0.000933650356 0.07362587447 0) (0.000946686145 0.07351607503 0) (0.0008917420467 0.0736208634 0) (0.0009047474912 0.07351129722 0) (0.0008595031808 0.07361700538 0) (0.0008724881576 0.0735076287 0) (0.0008930833034 0.07392903707 0) (0.0009044198128 0.07385250218 0) (0.0008513505215 0.07392272843 0) (0.0008626467034 0.07384645601 0) (0.0008192485241 0.07391786442 0) (0.000830512799 0.07384181071 0) (0.0009249716874 0.07369756895 0) (0.0008830784443 0.07369242669 0) (0.0008508534002 0.07368846661 0) (0.0008817059048 0.07400255728 0) (0.0008400134504 0.07399598617 0) (0.0008079420096 0.07399091803 0) (0.001004769492 0.0727485507 0) (0.001008051709 0.072669846 0) (0.0009626003006 0.07274671672 0) (0.0009658728805 0.07266828883 0) (0.0009301637013 0.07274530709 0) (0.0009334260086 0.07266706862 0) (0.0009969365052 0.07290596933 0) (0.0009547927299 0.07290362539 0) (0.0009223751133 0.07290182236 0) (0.001010603692 0.07259086988 0) (0.0009684162598 0.07258953126 0) (0.0009359650471 0.07258851498 0) (0.00100137393 0.07140749172 0) (0.0009973287644 0.07132843256 0) (0.0009592103628 0.07140943007 0) (0.0009551773014 0.071330633 0) (0.0009267759369 0.07141091888 0) (0.0009227545555 0.07133232563 0) (0.0009886721283 0.07117135249 0) (0.0009465440252 0.07117396058 0) (0.0009141381771 0.07117597352 0) (0.001004504716 0.07148619341 0) (0.0009623306067 0.07148788423 0) (0.0009298890824 0.07148919831 0) (0.0009234502556 0.07040625547 0) (0.0008814721035 0.07041065398 0) (0.0008491825453 0.0704140352 0) (0.0009039233228 0.07022552798 0) (0.0008952083893 0.07014784282 0) (0.0008619748582 0.07023020301 0) (0.0008533019001 0.07015288167 0) (0.0008297072811 0.07023380254 0) (0.000821065467 0.07015675772 0) (0.0008549146058 0.06983872935 0) (0.0008446188718 0.06976517763 0) (0.0008130961185 0.06984445212 0) (0.0008028157974 0.06977101681 0) (0.0007809290433 0.06984885201 0) (0.0007706595536 0.06977550401 0) (0.00088519556 0.07007013798 0) (0.0008433261466 0.07007546786 0) (0.0008111190828 0.07007957674 0) (0.000865256553 0.0699154268 0) (0.0008234119275 0.06992096041 0) (0.0007912249641 0.06992522936 0) (0.0002183786311 0.06648642453 0) (0.0001773359612 0.06649627814 0) (0.0001457643873 0.06650384889 0) (-0.0002608506161 0.06466586592 0) (-0.00027941019 0.06460171063 0) (-0.000301398649 0.06467758027 0) (-0.0003199540389 0.06461343951 0) (-0.0003325896422 0.06468659019 0) (-0.0003511420527 0.06462247854 0) (-0.001382934881 0.06327894638 0) (-0.001377063573 0.06335636095 0) (-0.001340850556 0.06327572688 0) (-0.001334977686 0.063353156 0) (-0.001308477337 0.06327323352 0) (-0.001302602799 0.06335069176 0) (-0.001371414235 0.06343029607 0) (-0.001329328454 0.06342707655 0) (-0.001296955128 0.06342459776 0) (-0.001388827243 0.06320124067 0) (-0.00134675428 0.06319786103 0) (-0.001314390542 0.06319526579 0) (-0.001395405509 0.0631233506 0) (-0.001353345364 0.06311981084 0) (-0.001320991213 0.06311709915 0) (-0.001473567688 0.06218196418 0) (-0.001431504313 0.06217846809 0) (-0.001399148599 0.06217577095 0) (-0.001500472162 0.06187119474 0) (-0.001458432542 0.06186743665 0) (-0.00142609579 0.06186453574 0) (-0.0007707899334 0.07378181189 0) (-0.0007287039402 0.0737786215 0) (-0.0006963290525 0.07377615727 0) (-0.0007135531638 0.06319364296 0) (-0.0007493409172 0.0630842719 0) (-0.0007536793863 0.06320673792 0) (-0.0007894284238 0.06309748311 0) (-0.0007845467359 0.06321680874 0) (-0.0008202645519 0.06310764109 0) (0.0005308202325 0.07533492876 0) (0.0004919742749 0.07531842244 0) (0.0004620917599 0.07530572517 0) (0.000508096971 0.06779950155 0) (0.000466727436 0.06780787191 0) (0.0004349058208 0.06781430839 0) (-0.0006900534504 0.07457768709 0) (-0.0006802600537 0.07464966069 0) (-0.0006482072517 0.07457216949 0) (-0.000638455438 0.07464383316 0) (-0.0006160172057 0.07456792382 0) (-0.0006062991518 0.07463935179 0) (-0.0006692568989 0.07472655141 0) (-0.0006275044218 0.07472036449 0) (-0.0005953865724 0.07471560521 0) (-0.0007039704984 0.07446787711 0) (-0.00066207331 0.07446276113 0) (-0.0006298445939 0.07445882543 0) (-0.0007117705916 0.07440181263 0) (-0.0006698438959 0.07439694841 0) (-0.0006375903813 0.07439321789 0) (-0.0007434750683 0.07409473398 0) (-0.000701459204 0.07409071389 0) (-0.0006691382898 0.07408763832 0) (-0.0001725960571 0.06497578075 0) (-0.0002132345774 0.0649871899 0) (-0.0002444949919 0.06499596728 0) (-0.001433212702 0.06265588157 0) (-0.00142687062 0.06273354032 0) (-0.001391147764 0.06265240003 0) (-0.001384797551 0.06273017524 0) (-0.001358788926 0.062649732 0) (-0.00135243225 0.06272759455 0) (-0.001420815533 0.0628113905 0) (-0.00137873767 0.06280808365 0) (-0.001346369138 0.06280554663 0) (-0.0008515946527 0.06278096963 0) (-0.0008915778755 0.06279450051 0) (-0.0009223351154 0.06280489095 0) (-0.001439792 0.06257804977 0) (-0.001397730081 0.06257455369 0) (-0.001365372911 0.06257185654 0) (-0.001446171575 0.06250084282 0) (-0.001404109656 0.06249734674 0) (-0.001371753942 0.0624946496 0) (-0.0009340183818 0.06254021123 0) (-0.0009563467696 0.06247640382 0) (-0.0009738692241 0.06255411984 0) (-0.0009962006308 0.06249029788 0) (-0.001004523743 0.0625648154 0) (-0.001026858062 0.06250099347 0) (-0.001524812159 0.06155896467 0) (-0.001484718413 0.0615554101 0) (-0.001453876254 0.06155268029 0) (0.0007395845502 0.06907286117 0) (0.0007218513168 0.06896283429 0) (0.0006979175685 0.06907958783 0) (0.0006802057859 0.06896970644 0) (0.0006658654535 0.0690847734 0) (0.0006481718905 0.06897499383 0) (0.0004574808643 0.06755118526 0) (0.0004161324619 0.06755965741 0) (0.0003843244849 0.06756616662 0) (0.0004431177344 0.06748072184 0) (0.0004018071217 0.06748938306 0) (0.0003700293341 0.06749603771 0) (-0.0004063366194 0.07569527105 0) (-0.0003713539216 0.07575589646 0) (-0.0003692667931 0.0756750891 0) (-0.0003363862748 0.07573225517 0) (-0.0003407506337 0.07565956621 0) (-0.0003094902112 0.07571406991 0) (-0.001193730231 0.06594205385 0) (-0.001151605359 0.06593940208 0) (-0.001119202742 0.06593734547 0) (-0.001213970045 0.06562983761 0) (-0.001171854972 0.06562704027 0) (-0.001139458923 0.06562488175 0) (-0.0002419192017 0.06473130023 0) (-0.0002824829514 0.06474295644 0) (-0.0003136859539 0.06475193731 0) (-0.001278528629 0.06467101963 0) (-0.001236428255 0.06466800392 0) (-0.001204043674 0.0646656707 0) (-0.001366398687 0.0634958026 0) (-0.001324314362 0.06349258309 0) (-0.001291941037 0.0634901043 0) (-0.001358142818 0.06360345156 0) (-0.001316058494 0.06360023205 0) (-0.001283686731 0.06359773871 0) (-0.001408482785 0.06296745337 0) (-0.001402103202 0.0630454614 0) (-0.00136641149 0.06296404461 0) (-0.001360041495 0.06304193619 0) (-0.001334049421 0.06296142025 0) (-0.001327685781 0.06303923906 0) (-0.001145698603 0.06194248538 0) (-0.001185616721 0.06183375614 0) (-0.001185379911 0.0619568734 0) (-0.001225168774 0.06184849278 0) (-0.001215905068 0.06196793215 0) (-0.001255592878 0.06185982754 0) (0.0009541119595 0.07344954573 0) (0.000912137984 0.07344511774 0) (0.0008798498683 0.07344169704 0) (0.000981681314 0.07314161303 0) (0.0009395952579 0.07313839477 0) (0.0009072223871 0.07313593598 0) (0.0009724200476 0.07093590911 0) (0.0009303342666 0.07093912863 0) (0.0008979609413 0.07094160742 0) (0.0009452400515 0.07062330647 0) (0.0009032288748 0.07062737022 0) (0.0008709127541 0.07063050402 0) (-0.000538889854 0.06374061676 0) (-0.0005791532505 0.06375327577 0) (-0.000610124884 0.06376302691 0) (0.0003631407891 0.07565813961 0) (0.0003279189796 0.07563488073 0) (0.0003008257305 0.07561698961 0) (0.000397577388 0.07560317785 0) (0.0004546140174 0.07549992397 0) (0.0003613304337 0.0755815519 0) (0.0004171880916 0.07548040835 0) (0.0003334481586 0.07556491622 0) (0.0003884000358 0.075465396 0) (0.0004838878547 0.0754416411 0) (0.0004457915423 0.07542347181 0) (0.0004164852229 0.07540949443 0) (0.0001580867456 0.06623628523 0) (0.0001170921666 0.06624634241 0) (8.555817034e-05 0.06625407309 0) (0.0001418522785 0.0661708604 0) (0.0001144612612 0.06606048146 0) (0.0001008801824 0.06618100481 0) (7.349811583e-05 0.06607065493 0) (6.93641937e-05 0.06618880819 0) (4.19866025e-05 0.06607847285 0) (-0.000657498048 0.07480421004 0) (-0.0006445300071 0.07488070775 0) (-0.0006158281216 0.07479748772 0) (-0.0006029681121 0.07487335119 0) (-0.0005837744441 0.07479231671 0) (-0.0005709966459 0.07486769139 0) (-0.0006183446762 0.07502052867 0) (-0.0005951147669 0.07513212788 0) (-0.000576940381 0.07501233139 0) (-0.0005538855382 0.07512309147 0) (-0.000545090139 0.07500602578 0) (-0.0005221696388 0.07511613869 0) (-0.000630753146 0.07495406808 0) (-0.0005892701251 0.07494628096 0) (-0.000557359324 0.07494029097 0) (-0.001086109506 0.0678041202 0) (-0.00104396628 0.06780178874 0) (-0.001011547189 0.06779999418 0) (-0.001119654485 0.0671963143 0) (-0.001077509696 0.06719399739 0) (-0.0010450905 0.0671922174 0) (-0.001102421622 0.06750903308 0) (-0.00106027829 0.06750671618 0) (-0.0010278592 0.06750492162 0) (-0.00117375262 0.06626586583 0) (-0.001131621074 0.06626333054 0) (-0.001099211889 0.06626137583 0) (-0.001136775096 0.06688360927 0) (-0.00109463187 0.06688127781 0) (-0.001062212674 0.06687949781 0) (-0.001155253444 0.0665714676 0) (-0.001113123672 0.06656888863 0) (-0.00108071605 0.06656691937 0) (-0.001234627566 0.06531746421 0) (-0.001192510825 0.06531469598 0) (-0.001160113107 0.06531256658 0) (-0.001255003995 0.06500508875 0) (-0.001212885797 0.06500232052 0) (-0.001180487974 0.06500020568 0) (-0.0004447922402 0.0640433667 0) (-0.0004851466006 0.06405573507 0) (-0.00051618984 0.06406525369 0) (-0.001414689476 0.06288938581 0) (-0.001372613282 0.06288604985 0) (-0.001340246419 0.06288348371 0) (-0.0008291640296 0.06284681541 0) (-0.0008691278944 0.06286040441 0) (-0.0008998686894 0.062870853 0) (-0.001452022196 0.06242926872 0) (-0.001409971533 0.06242562707 0) (-0.001377623844 0.06242282803 0) (-0.0009782202399 0.06241326309 0) (-0.001018063694 0.06242718621 0) (-0.001048713737 0.06243789631 0) (0.0009155681935 0.07377493454 0) (0.0008737286754 0.07376936949 0) (0.0008415435345 0.0737650887 0) (0.000871116077 0.07406902223 0) (0.0008294778779 0.07406210117 0) (0.0007974497835 0.0740567851 0) (0.001001172397 0.07282741791 0) (0.00095901586 0.07282532167 0) (0.0009265893212 0.07282369348 0) (0.001012956922 0.07251300216 0) (0.0009707636931 0.07251186749 0) (0.0009383077153 0.0725109969 0) (0.001014677875 0.07244051358 0) (0.0009724800924 0.07243955372 0) (0.000940020806 0.07243882881 0) (0.000993005399 0.0712499726 0) (0.0009508638413 0.07125233318 0) (0.0009184463133 0.07125414229 0) (0.001007596672 0.07156396321 0) (0.0009654171327 0.07156550842 0) (0.0009329718469 0.07156670601 0) (0.001010100944 0.07163643559 0) (0.0009679158686 0.07163782063 0) (0.0009354652589 0.07163888716 0) (0.0009116884709 0.07029739401 0) (0.0008697258377 0.07030192349 0) (0.0008374458667 0.07030542116 0) (0.0008353894822 0.06969925027 0) (0.0007935925517 0.06970513311 0) (0.0007614408894 0.0697096494 0) (0.000875230638 0.06999281149 0) (0.000833372056 0.06999822868 0) (0.0008011726986 0.07000239576 0) (0.0004112822488 0.06733425376 0) (0.0003968119204 0.06726867044 0) (0.0003700605356 0.06734332216 0) (0.0003555946825 0.06727775337 0) (0.0003383506211 0.06735029675 0) (0.0003238893494 0.06728475705 0) (0.000427183496 0.06740632271 0) (0.0003859316995 0.06741526024 0) (0.0003541991959 0.06742213303 0) (6.288155453e-05 0.06585564908 0) (3.440851204e-05 0.06574529259 0) (2.200251512e-05 0.0658661715 0) (-6.45851812e-06 0.06575584405 0) (-9.442277661e-06 0.0658742511 0) (-3.789479709e-05 0.06576395272 0) (1.662942129e-05 0.06567636881 0) (-2.422134904e-05 0.06568699298 0) (-5.564496969e-05 0.06569515982 0) (-0.0002882917721 0.07586071916 0) (-0.0001684014385 0.075942199 0) (-0.000259809311 0.075829569 0) (-0.0001522365555 0.07590320895 0) (-0.0002379016296 0.07580560743 0) (-0.0001398019623 0.07587321669 0) (-7.762827677e-05 0.07596449214 0) (-7.381531714e-05 0.07592245652 0) (-7.088227026e-05 0.07589012147 0) (1.867565445e-05 0.07595694315 0) (9.611752832e-06 0.07591571966 0) (2.639644239e-06 0.0758840093 0) (-0.0008035659573 0.07330699453 0) (-0.0007991216981 0.07338105494 0) (-0.0007614359735 0.07330444469 0) (-0.0007569934889 0.07337846142 0) (-0.0007290283507 0.07330247543 0) (-0.0007245875347 0.07337646304 0) (-0.0008083145938 0.07322933874 0) (-0.0007661830475 0.07322680346 0) (-0.0007337754248 0.07322483419 0) (-0.0008382534852 0.07268150033 0) (-0.0008344539346 0.07275983302 0) (-0.0007960951357 0.07267944549 0) (-0.0007923006969 0.07275767626 0) (-0.0007636657156 0.07267786933 0) (-0.0007598762825 0.07275601275 0) (-0.000105575348 0.06521924392 0) (-0.000146303621 0.06523031871 0) (-0.0001776329075 0.06523884899 0) (-0.0006719484888 0.06332176066 0) (-0.0006928692257 0.06325724387 0) (-0.0007121045825 0.06333475389 0) (-0.0007330118933 0.0632702807 0) (-0.0007429943089 0.06334475204 0) (-0.0007638925629 0.06328032248 0) (0.0006140461035 0.0683448347 0) (0.0006003470814 0.06826896278 0) (0.0005725160346 0.06835236144 0) (0.0005588458514 0.06827664953 0) (0.0005405687623 0.06835814341 0) (0.0005269229428 0.06828257698 0) (0.0005866172934 0.06819626628 0) (0.000545169054 0.06820422939 0) (0.0005132840411 0.06821036047 0) (-0.0008676546635 0.07205529763 0) (-0.0008641529681 0.07213353053 0) (-0.0008254893216 0.07205340296 0) (-0.0008219861698 0.07213163585 0) (-0.0007930546836 0.07205194328 0) (-0.0007895514257 0.07213019074 0) (-0.0008420049734 0.07260316728 0) (-0.0007998447433 0.07260117069 0) (-0.0007674135485 0.07259963822 0) (-0.0009244266958 0.07080028485 0) (-0.0009208481275 0.0708784735 0) (-0.0008822699089 0.07079821546 0) (-0.0008786846663 0.07087652059 0) (-0.0008498405948 0.07079662474 0) (-0.0008462516969 0.07087503179 0) (-0.0008996932173 0.07134734554 0) (-0.0008963913335 0.07142134144 0) (-0.0008575278754 0.07134545087 0) (-0.0008542244291 0.07141946133 0) (-0.0008250916749 0.07134400574 0) (-0.0008217882286 0.0714180162 0) (-0.0008711941201 0.07197707956 0) (-0.0008290303407 0.07197517034 0) (-0.0007965958088 0.0719736961 0) (-0.0008934850789 0.07148641181 0) (-0.0008513179623 0.07148456083 0) (-0.0008188815497 0.07148314483 0) (-0.0009285180067 0.07072228928 0) (-0.0008863664376 0.07072010341 0) (-0.0008539421292 0.07071842533 0) (-0.0009577238016 0.07017511552 0) (-0.0009534782921 0.07025328475 0) (-0.0009155773442 0.07017282773 0) (-0.0009113317287 0.07025101152 0) (-0.0008831579355 0.07017107686 0) (-0.0008789108635 0.07024926064 0) (-0.0009619707674 0.0700969463 0) (-0.0009198244162 0.07009464395 0) (-0.0008874050074 0.07009289308 0) (-0.001329202951 0.06147631044 0) (-0.001387262 0.06138117149 0) (-0.001364090058 0.06148941095 0) (-0.001411059136 0.06139008387 0) (-0.001390925783 0.06149948153 0) (-0.001429365585 0.06139694627 0) (0.000751019988 0.07465250905 0) (0.0007782545076 0.07454079867 0) (0.0007100727685 0.07464226938 0) (0.0007371503756 0.07453121267 0) (0.0006785736791 0.07463439328 0) (0.0007055311273 0.07452383703 0) (0.0007099037969 0.06889166871 0) (0.0006969691134 0.06881595145 0) (0.000668284086 0.06889868633 0) (0.0006553615844 0.0688230418 0) (0.0006362685165 0.06890409011 0) (0.0006233566341 0.06882850376 0) (-0.0004847587401 0.07552099077 0) (-0.0004584644856 0.07558576847 0) (-0.0004453848851 0.07550578497 0) (-0.0004198052966 0.0755688288 0) (-0.0004150974245 0.07549408709 0) (-0.0003900664539 0.07555579783 0) (-2.12547564e-05 0.06553282868 0) (-3.862935731e-05 0.06546774716 0) (-6.203960089e-05 0.06554368542 0) (-7.940660143e-05 0.06547864753 0) (-9.341250912e-05 0.06555205579 0) (-0.0001107735779 0.06548703243 0) (-0.0003112818475 0.06449165562 0) (-0.0003518228231 0.06450339905 0) (-0.000383007924 0.06451243806 0) (-0.001288476844 0.06453158733 0) (-0.001283198684 0.06460555428 0) (-0.001246374908 0.06452858617 0) (-0.00124109831 0.06460253857 0) (-0.001213988764 0.0645262675 0) (-0.001208713517 0.06460023448 0) (-0.0003308688112 0.06442408501 0) (-0.0003714038549 0.06443584296 0) (-0.0004025844805 0.0644448965 0) (-0.001294006631 0.06445406832 0) (-0.001251904695 0.06445106716 0) (-0.001219518339 0.06444877762 0) (-0.001310498188 0.06422014146 0) (-0.001305018287 0.06429801039 0) (-0.001268402714 0.06421705296 0) (-0.001262914788 0.06429502379 0) (-0.001236021258 0.06421469063 0) (-0.001230528432 0.06429273425 0) (-0.001100436488 0.06206922189 0) (-0.001123152259 0.06200562121 0) (-0.001140186172 0.06208342106 0) (-0.001162890079 0.06201984943 0) (-0.001170761908 0.06209433453 0) (-0.001193456759 0.06203080653 0) (-0.001437150913 0.06133030927 0) (-0.0014520545 0.0613364332 0) (0.00101825784 0.07211689417 0) (0.001018303221 0.07203812565 0) (0.0009760490505 0.07211682286 0) (0.0009760945661 0.07203827282 0) (0.0009435815351 0.07211676801 0) (0.000943626867 0.07203839275 0) (0.001017000901 0.07233409844 0) (0.0009747970321 0.07233350275 0) (0.0009423323727 0.07233304005 0) (0.001017481466 0.07226888688 0) (0.0009752735743 0.07226853883 0) (0.0009428073808 0.07226826549 0) (0.001017852255 0.07196000161 0) (0.0009756473902 0.07196046919 0) (0.0009431814943 0.07196083671 0) (0.001013292984 0.0717425484 0) (0.0009711021606 0.07174374413 0) (0.0009386475774 0.07174466504 0) (0.001015113529 0.07180733537 0) (0.000972916852 0.07180832723 0) (0.0009404581892 0.07180908796 0) (0.0002838346983 0.06676687993 0) (0.0002678888556 0.06669728738 0) (0.0002426941782 0.06677629731 0) (0.0002267514605 0.06670673386 0) (0.0002110459927 0.06678354818 0) (0.0001951077504 0.06671399926 0) (-0.0005090725662 0.07545455425 0) (-0.0004691101365 0.07544096817 0) (-0.0004383693522 0.07543051813 0) (-0.0005789865723 0.07520235997 0) (-0.0005617819464 0.07527460149 0) (-0.0005378943233 0.07519271428 0) (-0.0005209042998 0.07526408782 0) (-0.000506286692 0.07518529475 0) (-0.0004894588318 0.07525600093 0) (-0.0008218579095 0.07299464759 0) (-0.0008175669324 0.07307286018 0) (-0.0007797113461 0.07299237436 0) (-0.0007754254808 0.07307048504 0) (-0.0007472920434 0.07299060893 0) (-0.0007430095152 0.07306866137 0) (-0.0008259816088 0.07291640465 0) (-0.0007838333768 0.07291416054 0) (-0.0007514109491 0.07291242422 0) (-6.809772753e-05 0.06535739791 0) (-0.000108856342 0.06536835641 0) (-0.0001402091454 0.06537679947 0) (0.0006602690444 0.06860110641 0) (0.000640418126 0.06849089104 0) (0.0006186935854 0.06860840045 0) (0.0005988759813 0.06849835962 0) (0.0005867128927 0.06861399332 0) (0.0005669211087 0.06850409795 0) (-0.0008570455056 0.07229028689 0) (-0.0008531514989 0.07236858976 0) (-0.0008148853816 0.07228827573 0) (-0.0008109932555 0.07236652036 0) (-0.0007824543989 0.07228671413 0) (-0.0007785652918 0.07236494421 0) (-0.0008493007894 0.0724467473 0) (-0.0008071422278 0.07244472159 0) (-0.0007747112452 0.07244315998 0) (-0.0009137620382 0.07103489502 0) (-0.0009102280891 0.07111315682 0) (-0.0008715968024 0.07103298578 0) (-0.0008680628533 0.07111124758 0) (-0.0008391621644 0.0710315261 0) (-0.0008356282153 0.0711097879 0) (-0.0009066958086 0.0711913895 0) (-0.0008645304667 0.07118949483 0) (-0.0008320958287 0.07118803515 0) (-0.0008822588731 0.07174253057 0) (-0.0008784872069 0.07182083434 0) (-0.0008400969744 0.0717405631 0) (-0.0008363270829 0.07181882319 0) (-0.0008076642171 0.07173904518 0) (-0.0008038959941 0.07181727614 0) (-0.00088582282 0.07166474964 0) (-0.0008436573721 0.07166286954 0) (-0.0008112211716 0.07166142441 0) (-0.0009408887577 0.07048780807 0) (-0.00093671607 0.07056597783 0) (-0.0008987406318 0.0704855494 0) (-0.0008945662756 0.07056374827 0) (-0.0008663195545 0.07048382764 0) (-0.0008621451982 0.07056202652 0) (-0.0009450761158 0.07040962385 0) (-0.0009029294463 0.07040736519 0) (-0.0008705084751 0.07040562887 0) (-0.0009790708746 0.06978505677 0) (-0.000974812053 0.06986245395 0) (-0.0009369276483 0.06978272531 0) (-0.0009326672642 0.06986013704 0) (-0.0009045084517 0.06978094531 0) (-0.0009002480676 0.06985835704 0) (-0.000970511199 0.06994062277 0) (-0.0009283663042 0.06993832043 0) (-0.0008959471076 0.06993654043 0) (-0.001340642284 0.06383052546 0) (-0.001334602263 0.06390850684 0) (-0.001298559628 0.06382727684 0) (-0.00129252117 0.06390524366 0) (-0.001266189428 0.06382476894 0) (-0.001260149619 0.06390272119 0) (-0.001352617879 0.06367530477 0) (-0.001310533661 0.0636720707 0) (-0.001278161898 0.06366957736 0) (-0.001328550591 0.06398648813 0) (-0.001286469603 0.06398321039 0) (-0.001254099509 0.06398068793 0) (-0.001316368414 0.06414227536 0) (-0.001274282633 0.06413905585 0) (-0.001241909202 0.06413659162 0) (-0.001016507893 0.06230442002 0) (-0.001039212755 0.0622407173 0) (-0.001056296292 0.06231850295 0) (-0.001078972845 0.06225488742 0) (-0.00108690325 0.06232932926 0) (-0.001109557427 0.06226578639 0) (0.0006639486337 0.074968765 0) (0.0006968374412 0.07485746933 0) (0.0006236373934 0.07495625437 0) (0.0006562361521 0.07484593085 0) (0.0005926280674 0.0749466298 0) (0.0006250065199 0.07483705508 0) (0.0007147598727 0.07479187587 0) (0.0006740124315 0.07478086862 0) (0.0006426677979 0.07477240151 0) (0.0006715560871 0.068667179 0) (0.0006299577209 0.06867432755 0) (0.0005979573521 0.06867981861 0) (0.0003570520364 0.06708846898 0) (0.0003405895933 0.06701453979 0) (0.0003158498933 0.06709762464 0) (0.0002994176395 0.06702384087 0) (0.0002841550734 0.06710467193 0) (0.000267746865 0.06703098995 0) (0.0002509757661 0.06662347799 0) (0.0002098654354 0.06663304079 0) (0.0001782428578 0.066640408 0) (0.0003241323346 0.0669427225 0) (0.0002829858827 0.06695212535 0) (0.0002513346783 0.06695936168 0) (7.97448834e-05 0.06592102563 0) (3.883274176e-05 0.06593140264 0) (7.361824966e-06 0.06593939504 0) (-2.354470364e-06 0.06560360862 0) (-4.316700137e-05 0.0656143636 0) (-7.456151865e-05 0.06562264675 0) (-0.0007950695963 0.07344646653 0) (-0.0007529480614 0.07344375653 0) (-0.000720547219 0.07344165624 0) (-0.0008130230374 0.07315120202 0) (-0.000770888154 0.07314872497 0) (-0.0007384757377 0.07314681393 0) (-0.0008302012205 0.07283819154 0) (-0.0007880530947 0.07283593287 0) (-0.0007556321234 0.07283419655 0) (-8.654784386e-05 0.06528919272 0) (-0.0001272871795 0.06530023847 0) (-0.0001586251586 0.06530872511 0) (-0.0006365887152 0.06343116396 0) (-0.000676774574 0.06344407002 0) (-0.0007076880277 0.06345401008 0) (0.0006276616276 0.06842024114 0) (0.0005861240644 0.06842773881 0) (0.0005541723168 0.06843350625 0) (0.0005736194699 0.06813027898 0) (0.0005322000695 0.06813840209 0) (0.0005003392081 0.06814464951 0) (-0.00086066957 0.07221185096 0) (-0.0008185044403 0.07220992716 0) (-0.0007860714708 0.07220843837 0) (-0.0008456598066 0.07252490636 0) (-0.000803498014 0.07252292433 0) (-0.0007710652567 0.0725214064 0) (-0.0009173059702 0.07095666242 0) (-0.0008751407344 0.07095475318 0) (-0.0008427062024 0.07095327894 0) (-0.0009031648785 0.07126963676 0) (-0.0008609995366 0.07126774209 0) (-0.0008285648986 0.07126628241 0) (-0.0008747316961 0.07189891974 0) (-0.0008325683409 0.07189695226 0) (-0.000800136934 0.07189544891 0) (-0.0008889136601 0.07159273305 0) (-0.000846744875 0.07159091118 0) (-0.0008143068999 0.07158950974 0) (-0.0009326162041 0.07064414811 0) (-0.0008904663036 0.07064193312 0) (-0.0008580436637 0.07064022593 0) (-0.0009492633678 0.0703314542 0) (-0.0009071168044 0.07032918097 0) (-0.0008746958332 0.07032744466 0) (-0.0009889701686 0.06960634198 0) (-0.0009830302518 0.06971317759 0) (-0.0009468270484 0.06960399595 0) (-0.0009408855691 0.06971084612 0) (-0.0009144079578 0.06960220139 0) (-0.000908467935 0.06970905157 0) (-0.0009925988435 0.06954107296 0) (-0.0009504557233 0.06953872693 0) (-0.0009180366328 0.06953693237 0) (-0.0009662162769 0.07001877708 0) (-0.0009240699256 0.07001647472 0) (-0.0008916506229 0.07001470929 0) (-0.001059093766 0.06829476811 0) (-0.001054813726 0.06837287882 0) (-0.001016948977 0.0682924512 0) (-0.001012667057 0.06837062016 0) (-0.0009845296745 0.06829068577 0) (-0.0009802461917 0.06836886928 0) (-0.001050670698 0.06845097597 0) (-0.001008520797 0.06844876098 0) (-0.0009760982634 0.06844703922 0) (-0.001030058982 0.06884205964 0) (-0.00102579724 0.06892025788 0) (-0.0009879125246 0.06883977185 0) (-0.0009836508883 0.06891795552 0) (-0.0009554932219 0.06883800641 0) (-0.0009512315857 0.06891619009 0) (-0.001034323955 0.06876381773 0) (-0.0009921758295 0.06876155905 0) (-0.0009597548582 0.06875982274 0) (-0.0009967152987 0.06946702472 0) (-0.00095457051 0.06946470781 0) (-0.0009221513134 0.06946292781 0) (-0.001000946583 0.06938940886 0) (-0.0009587984567 0.06938715019 0) (-0.0009263773794 0.06938542844 0) (-0.001021535709 0.06899842699 0) (-0.0009793907085 0.06899613921 0) (-0.0009469699494 0.06899437376 0) (-0.001017278867 0.06907655244 0) (-0.0009751307408 0.06907429376 0) (-0.0009427097695 0.06907255745 0) (-0.001063377249 0.06821658459 0) (-0.001021232354 0.06821428225 0) (-0.0009888131573 0.06821250225 0) (-0.001067660626 0.06813841564 0) (-0.001025515837 0.06813609873 0) (-0.0009930966401 0.06813431873 0) (-0.001299716844 0.06153757509 0) (-0.001337792129 0.06155189316 0) (-0.001367080985 0.06156291378 0) (0.0006427672588 0.07503405885 0) (0.0006026539339 0.07502092485 0) (0.000571798424 0.07501082143 0) (0.0007333722676 0.07472142427 0) (0.0006925199246 0.07471081251 0) (0.0006610959474 0.07470265039 0) (0.000793142608 0.07447474811 0) (0.0007519199327 0.0744656844 0) (0.0007202089541 0.07445871288 0) (0.0008085211107 0.0744024368 0) (0.0007671927984 0.07439386762 0) (0.0007354000513 0.07438726811 0) (0.0008200174767 0.0695894538 0) (0.0008091732413 0.06951778498 0) (0.0007782541788 0.06959555487 0) (0.0007674376441 0.06952408975 0) (0.0007461271983 0.06960026033 0) (0.0007353335708 0.0695289407 0) (0.0006840146478 0.0687401178 0) (0.0006424086812 0.06874722271 0) (0.0006104051874 0.06875268466 0) (0.0007975567867 0.06944167942 0) (0.0007558303524 0.06944804239 0) (0.0007237338795 0.06945293697 0) (0.0007858453663 0.06936493368 0) (0.0007441235134 0.06937132575 0) (0.0007120301655 0.06937624944 0) (0.0001000325368 0.07592760829 0) (8.117970614e-05 0.07588984464 0) (6.667700229e-05 0.07586079571 0) (9.739251497e-05 0.06599169817 0) (5.644133929e-05 0.06600191525 0) (2.494033921e-05 0.06600977678 0) (-0.0003510220826 0.06435455223 0) (-0.0003915287116 0.06436641193 0) (-0.0004226869603 0.06437553813 0) (-0.001299527129 0.0643760249 0) (-0.001257423525 0.06437305286 0) (-0.001225035713 0.06437076331 0) (-0.001061661276 0.0621778138 0) (-0.001101413979 0.06219199843 0) (-0.001131992628 0.06220291192 0) (0.001018025893 0.07219464448 0) (0.0009758176052 0.07219444209 0) (0.0009433506978 0.07219427071 0) (0.001016448965 0.07188170973 0) (0.0009742476773 0.07188246858 0) (0.0009417847228 0.07188304 0) (-0.0005437089903 0.07534127718 0) (-0.0005031366447 0.07532964131 0) (-0.0004719261374 0.07532069096 0) (-0.0005943954871 0.06356409843 0) (-0.0006160142425 0.06349533371 0) (-0.0006346543022 0.06357678654 0) (-0.0006562402735 0.06350812354 0) (-0.0006656230228 0.06358653766 0) (-0.0006871837045 0.0635179473 0) (-0.0005733895393 0.06363091589 0) (-0.0006136543922 0.06364357491 0) (-0.0006446260258 0.06365332606 0) (-0.001046591222 0.06852914641 0) (-0.001042511534 0.06860734597 0) (-0.001004441215 0.06852694598 0) (-0.001000360071 0.06860514554 0) (-0.0009720170129 0.06852525334 0) (-0.000967937325 0.0686034529 0) (-0.001038430283 0.06868556009 0) (-0.0009962803829 0.0686833451 0) (-0.0009638561806 0.06868165246 0) (-0.001009097962 0.06923290772 0) (-0.001005023994 0.06931112189 0) (-0.0009669479558 0.06923070729 0) (-0.0009628739875 0.06930892146 0) (-0.0009345237535 0.06922901465 0) (-0.0009304497852 0.06930722882 0) (-0.001013170156 0.06915473723 0) (-0.0009710202555 0.06915252224 0) (-0.0009385961593 0.06915081503 0) (-0.00107621 0.06798286413 0) (-0.001071944002 0.06806024669 0) (-0.001034066774 0.06798053266 0) (-0.001029799214 0.06805792978 0) (-0.001001647577 0.06797875267 0) (-0.0009973814733 0.06805614979 0) (-0.001080192786 0.06791097055 0) (-0.001038048104 0.06790863908 0) (-0.001005630469 0.06790684453 0) (-0.001346679392 0.06375254407 0) (-0.00130459528 0.06374929543 0) (-0.001272223623 0.06374678752 0) (-0.001322453981 0.06406443997 0) (-0.00128037445 0.06406116224 0) (-0.001248004355 0.06405863978 0) (-0.001274054317 0.06160020758 0) (-0.00131316102 0.06161489728 0) (-0.00134324453 0.06162620043 0) (0.0008236555372 0.07432701033 0) (0.0008383672018 0.07425173259 0) (0.0007822554923 0.07431879123 0) (0.0007969110207 0.0742438052 0) (0.0007504094159 0.07431246885 0) (0.0007650214919 0.07423771618 0) (0.000851823169 0.07418062962 0) (0.0008102926606 0.07417309603 0) (0.0007783455393 0.07416729873 0) (0.0007741095822 0.06928804248 0) (0.0007619916897 0.06921188231 0) (0.0007324060551 0.06929455093 0) (0.0007203110698 0.06921853624 0) (0.0007003264515 0.06929956191 0) (0.0006882482294 0.06922364906 0) (0.0007502046231 0.06913874927 0) (0.0007085331661 0.0691454614 0) (0.0006764779261 0.06915061786 0) (0.0003724652766 0.06715832759 0) (0.0003312496013 0.06716742508 0) (0.0002995457246 0.06717442875 0) (0.0002341375864 0.06655195477 0) (0.0001930708711 0.06656170661 0) (0.0001614812897 0.06656920466 0) (0.0003091221991 0.06687721593 0) (0.0002679803286 0.06688664788 0) (0.0002363321431 0.06689389875 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.781870669e-07 7.633137185e-06 -2.775557562e-17) (0 0 0) (0 0 0) (-9.860757233e-08 8.550318973e-05 -3.330669074e-16) (4.53718925e-07 7.26828737e-05 -3.053113318e-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) (-1.110119898e-05 0.0001200384622 -4.996003611e-16) (-6.389768781e-05 0.0007529412679 -3.080868893e-15) (-8.353892296e-07 9.912923956e-06 -5.551115123e-17) (-0.0001213833542 0.001971011324 -7.993605777e-15) (-0.0003016983777 0.004867395031 -1.990074772e-14) (-0.0003583328373 0.00659279877 -2.695066392e-14) (-0.0001669080313 0.003090042589 -1.254552018e-14) (-0.0002038401149 0.006511232955 -2.642330799e-14) (-0.0003583790724 0.01139002863 -4.654610031e-14) (-0.0003000610209 0.01258580138 -5.143108162e-14) (-0.0001759146953 0.007409958584 -3.008704397e-14) (-9.221141602e-06 0.008666729419 -3.516631431e-14) (-1.421739562e-05 0.01422820014 -5.817568649e-14) (9.275569628e-05 0.01404508568 -5.742628595e-14) (5.529545491e-05 0.008524926315 -3.461120279e-14) (0.0001902753186 0.006535132673 -2.653433029e-14) (0.0003356929202 0.01142347632 -4.671263376e-14) (0.0003690258026 0.009981223384 -4.080069615e-14) (0.0002005138314 0.005470639451 -2.220446049e-14) (0.0001182926652 0.0019961246 -8.10462808e-15) (0.0002932000079 0.004909599703 -2.006728117e-14) (0.0002207639956 0.00328016069 -1.340594302e-14) (6.913767501e-05 0.001034995283 -4.191091918e-15) (0 0 0) (1.164487048e-05 0.0001292734643 -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) (-3.100424074e-05 0.0002450577979 -1.026956298e-15) (-0.0001693933634 0.001427415071 -5.995204333e-15) (-4.011987401e-05 0.0003405156457 -1.415534356e-15) (-0.0005729724585 0.006068200132 -2.534084054e-14) (-0.0009168530547 0.00964393963 -4.057865155e-14) (-0.001170606352 0.01342579165 -5.648259638e-14) (-0.0007882212707 0.009101027821 -3.802513859e-14) (-0.001229382034 0.01946702224 -8.129608098e-14) (-0.001628338619 0.02562468668 -1.078026557e-13) (-0.001640991536 0.02947803517 -1.240119119e-13) (-0.001265326739 0.02286649899 -9.550693569e-14) (-0.0009985572388 0.03129187922 -1.307010056e-13) (-0.0012444255 0.03880727942 -1.632582958e-13) (-0.0009907950379 0.04092037124 -1.721678355e-13) (-0.0008014854183 0.03323618718 -1.388056337e-13) (-2.749154158e-05 0.03582740796 -1.496580637e-13) (-3.034278123e-05 0.04371307776 -1.839361996e-13) (0.0003095243096 0.04340971467 -1.826594431e-13) (0.0002488273919 0.03554441488 -1.48464574e-13) (0.0009487710923 0.03135129228 -1.309785613e-13) (0.001187978379 0.03887277381 -1.635636071e-13) (0.001389831915 0.03623414685 -1.524613769e-13) (0.001099844345 0.0289405924 -1.209032874e-13) (0.00119724917 0.01956308758 -8.171241461e-14) (0.001588305178 0.02573645015 -1.083022561e-13) (0.001507126588 0.02168763915 -9.126033262e-14) (0.001105968296 0.01604578661 -6.702971511e-14) (0.0005661136869 0.006145859757 -2.567390744e-14) (0.0009047082386 0.00974599659 -4.099498518e-14) (0.0006400810948 0.006361686565 -2.678413047e-14) (0.0003555735371 0.003561039803 -1.487698853e-14) (0 0 0) (3.077730254e-05 0.000247750397 -1.054711873e-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) (-1.333880736e-05 8.597140307e-05 -3.60822483e-16) (0 0 0) (-0.0005680115288 0.00439088177 -1.890154699e-14) (-0.0008443774645 0.006468440304 -2.803313137e-14) (-0.001322012558 0.01080893914 -4.685141164e-14) (-0.0009704651977 0.008001718772 -3.441691376e-14) (-0.002222946897 0.02290157545 -9.850453786e-14) (-0.002698949626 0.02760783165 -1.196542865e-13) (-0.003021658361 0.03371495619 -1.4610535e-13) (-0.002540734257 0.02854959102 -1.227906665e-13) (-0.002906026412 0.04485014383 -1.929012505e-13) (-0.003315288039 0.05081432559 -2.201849814e-13) (-0.003176269807 0.05559834429 -2.408906408e-13) (-0.002811612288 0.04955422054 -2.131350652e-13) (-0.001962015722 0.06016082037 -2.587374759e-13) (-0.002168704916 0.0660565795 -2.862432513e-13) (-0.001687562721 0.06819319402 -2.955136136e-13) (-0.001534314089 0.0624058447 -2.683964162e-13) (-3.566783002e-05 0.06527403435 -2.807754029e-13) (-3.761370079e-05 0.07086757712 -3.071431998e-13) (0.0005315133024 0.0705852565 -3.059219544e-13) (0.0004842590166 0.0649681992 -2.794708909e-13) (0.001892201059 0.06022974576 -2.591260539e-13) (0.002094729886 0.06611993872 -2.866318294e-13) (0.002515696107 0.06332895441 -2.745303984e-13) (0.002258900871 0.05734606851 -2.467470672e-13) (0.002846805117 0.04498792822 -1.935951399e-13) (0.003251033695 0.0509202384 -2.207678484e-13) (0.003277046185 0.04560218043 -1.977029651e-13) (0.002837921364 0.03984277394 -1.714461906e-13) (0.002182497832 0.02289743583 -9.853229344e-14) (0.0027176828 0.02818442442 -1.222077994e-13) (0.00234631213 0.02243760527 -9.731104811e-14) (0.001860990516 0.01797334875 -7.735478924e-14) (0.0006468588939 0.005070594646 -2.181588243e-14) (0.0009664104786 0.007515010083 -3.258504577e-14) (0.00054565235 0.003994255443 -1.731947918e-14) (0.0003118906735 0.002301196507 -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) (-6.165215231e-05 0.0003689426114 -1.637578961e-15) (-0.0001402105024 0.0008324481872 -3.719247132e-15) (-0.0004980974975 0.003111181341 -1.390554338e-14) (-0.0003348470218 0.002108033751 -9.353628982e-15) (-0.001970550179 0.01470747941 -6.525335827e-14) (-0.002331514553 0.01726558454 -7.718825579e-14) (-0.003007905687 0.02374557717 -1.061650767e-13) (-0.002607379304 0.0207461781 -9.203748874e-14) (-0.004131054418 0.04103819927 -1.820210649e-13) (-0.004562620965 0.04492597931 -2.008393452e-13) (-0.004816556966 0.05169565987 -2.31065167e-13) (-0.004402598444 0.04771149561 -2.115807529e-13) (-0.004381735182 0.06542140671 -2.900180096e-13) (-0.004650778635 0.06866612932 -3.067823773e-13) (-0.004306793666 0.07268802239 -3.247402347e-13) (-0.004072513479 0.06945880423 -3.079203559e-13) (-0.00260972312 0.077594926 -3.439748486e-13) (-0.002692177178 0.07912779513 -3.53495011e-13) (-0.002046879499 0.07987961228 -3.568811913e-13) (-0.00199928011 0.07884705368 -3.495537193e-13) (-4.799560218e-05 0.08008787496 -3.551048344e-13) (-5.280134033e-05 0.08029310182 -3.587685704e-13) (0.0006153360258 0.08027702045 -3.587130593e-13) (0.0006118994615 0.07997366014 -3.546329896e-13) (0.002535395579 0.0777233721 -3.446964936e-13) (0.002609198616 0.07919894289 -3.539946114e-13) (0.003217695805 0.07788617049 -3.481659405e-13) (0.003106647637 0.0758859047 -3.365918655e-13) (0.004315816793 0.06550870349 -2.906563878e-13) (0.004590760255 0.06883589025 -3.078370892e-13) (0.004826983063 0.06427509619 -2.875200078e-13) (0.004492576909 0.06042576598 -2.68146616e-13) (0.004177483067 0.04217008332 -1.87183602e-13) (0.00460295949 0.04608564595 -2.061684157e-13) (0.004223007228 0.03906032099 -1.747213485e-13) (0.003788589648 0.03533014356 -1.568190022e-13) (0.002070802395 0.01571787753 -6.974976152e-14) (0.00244038455 0.01837305021 -8.21842594e-14) (0.001760791231 0.01248144648 -5.581646256e-14) (0.001442896161 0.01031152117 -4.576894419e-14) (9.536563507e-05 0.0005794989598 -2.581268532e-15) (0.0001638253768 0.0009873551659 -4.413136523e-15) (4.159271252e-06 2.387195621e-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) (-5.86793163e-06 3.044840793e-05 -1.387778781e-16) (-1.601194924e-07 8.377685161e-07 0) (0 0 0) (-0.0004402203856 0.00255144049 -1.168509733e-14) (-0.000555640892 0.003194325127 -1.473821065e-14) (-0.001153021214 0.006973574412 -3.219646771e-14) (-0.0009837020084 0.005998100542 -2.747801986e-14) (-0.003199182678 0.02312496089 -1.05887521e-13) (-0.00348196711 0.02496276055 -1.152133944e-13) (-0.004232426789 0.03234261766 -1.492694857e-13) (-0.004010772152 0.03090580369 -1.414979245e-13) (-0.005561667248 0.05342126374 -2.444988656e-13) (-0.005788314541 0.05512547625 -2.543520949e-13) (-0.005948126324 0.06170409101 -2.846889391e-13) (-0.00574419139 0.06010479203 -2.750855099e-13) (-0.005208301223 0.07443929881 -3.406996907e-13) (-0.005309883027 0.07517053743 -3.468059173e-13) (-0.004786018164 0.07712096027 -3.558264794e-13) (-0.004727660044 0.07698343624 -3.523015213e-13) (-0.002786384513 0.0784234078 0) (-0.002817712131 0.07777567732 0) (-0.002481102337 0.07777902285 0) (-0.002126297024 0.07779687383 0) (-0.002107809378 0.07811749233 0) (-0.002102457158 0.07843042872 0) (-6.707080091e-05 0.07842829211 0) (-6.936007702e-05 0.0781170958 0) (0.0002715692894 0.07811486057 0) (0.0002720119287 0.0784260412 0) (0.002674234619 0.07838262094 0) (0.002682058357 0.07806293233 0) (0.002692263715 0.07773827425 0) (0.003031337802 0.07772600259 0) (0.003365534005 0.0777199275 0) (0.003355498225 0.078361871 0) (0.005128775696 0.07488765306 -3.430589146e-13) (0.005214870087 0.07555370105 -3.488875855e-13) (0.005625578657 0.07251953366 -3.348987754e-13) (0.005498258547 0.07144325866 -3.272937477e-13) (0.005593020977 0.05464037989 -2.503275365e-13) (0.005797490214 0.05615610306 -2.593758541e-13) (0.005512088857 0.04931369245 -2.277900091e-13) (0.005260107727 0.04746303139 -2.174649349e-13) (0.003407581282 0.02501722252 -1.146305273e-13) (0.003726931179 0.02713686728 -1.253441795e-13) (0.002939034815 0.02015059566 -9.306444504e-14) (0.002647015997 0.01829846316 -8.384959393e-14) (0.0005903781212 0.003472139133 -1.590394483e-14) (0.0007379226191 0.004304479277 -1.987299214e-14) (0.0002644318016 0.001469248855 -6.800116026e-15) (0.0001799211102 0.001007888893 -4.607425552e-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) (-5.287342694e-05 0.000265309365 -1.276756478e-15) (-3.013100049e-05 0.0001524757102 -7.21644966e-16) (-2.464978398e-05 0.0001257830653 -5.828670879e-16) (-0.0007983578403 0.004475872819 -2.117750419e-14) (-0.0008279510919 0.004602758661 -2.195466031e-14) (-0.001533248016 0.008966483536 -4.277134202e-14) (-0.001492859475 0.008804530245 -4.1661119e-14) (-0.004020234823 0.02809521445 -1.32893696e-13) (-0.004083257158 0.02829267187 -1.349476086e-13) (-0.004863796347 0.03591491008 -1.712796571e-13) (-0.004797220093 0.03572730265 -1.689759443e-13) (-0.006240410113 0.05787387761 -2.736977311e-13) (-0.00629975584 0.05791909061 -2.76195733e-13) (-0.006387379609 0.06393937619 -3.048949981e-13) (-0.006335599001 0.06398105529 -3.025635298e-13) (-0.005453901193 0.07505673298 -3.54938301e-13) (-0.00547229528 0.0746138938 -3.558264794e-13) (-0.004853139393 0.07523236379 0) (-0.004847625478 0.07586488301 -3.587685704e-13) (-0.002854117344 0.07585872072 0) (-0.002858320066 0.07553762678 0) (-0.002526267978 0.0755371341 0) (-0.002522098068 0.07585772243 0) (0.002700445993 0.07582781874 0) (0.002700023556 0.07550981216 0) (0.00303196468 0.07550608246 0) (0.003032733233 0.07582361577 0) (0.005333578174 0.07542170143 -3.570199691e-13) (0.00534231553 0.07497602932 -3.57880392e-13) (0.005882910274 0.07344701082 -3.506084312e-13) (0.005853432657 0.07364049498 -3.486100297e-13) (0.006370920946 0.06023755973 -2.851885395e-13) (0.006451209244 0.06051716619 -2.889077866e-13) (0.006233757921 0.05400481103 -2.578215419e-13) (0.006142535436 0.05364024362 -2.539357613e-13) (0.004377174008 0.03109958615 -1.472155731e-13) (0.004477000996 0.03155053472 -1.506017533e-13) (0.003637305826 0.02413169425 -1.151856388e-13) (0.003543181213 0.02370127959 -1.121880366e-13) (0.001070668065 0.006092130735 -2.883804306e-14) (0.001209060758 0.006822097515 -3.25572902e-14) (0.000576735845 0.003099686628 -1.47937218e-14) (0.0004747786582 0.002573219556 -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) (-8.679416305e-05 0.0004208247321 -2.081668171e-15) (-7.839271523e-05 0.0003834042483 -1.887379142e-15) (-6.877283325e-05 0.0003392649847 -1.665334537e-15) (-0.0009836548006 0.005330289563 -2.609024108e-14) (-0.001017093989 0.00546439245 -2.69784195e-14) (-0.001773740729 0.01002444313 -4.948819132e-14) (-0.001731996633 0.009873062329 -4.832245715e-14) (-0.00433442239 0.02926958706 -1.431910146e-13) (-0.004385412095 0.02935747534 -1.448563491e-13) (-0.005156634098 0.03678065688 -1.81493709e-13) (-0.005107424065 0.03674967968 -1.797728633e-13) (-0.006469082833 0.05791977579 -2.833011603e-13) (-0.006502990426 0.05770547328 -2.846889391e-13) (-0.006549085986 0.06325405073 -3.120559366e-13) (-0.006522112501 0.06356357929 -3.10917958e-13) (-0.005505937828 0.07302076303 -3.571865026e-13) (-0.005513007768 0.07243957601 -3.574085472e-13) (-0.004869800861 0.07271250618 0) (-0.00486604015 0.0733409056 0) (-0.002875730534 0.07332692082 0) (-0.002877801817 0.07301250403 0) (-0.002546592965 0.07301022306 0) (-0.002544477988 0.07332463954 0) (0.002689500092 0.07329079034 0) (0.002687269694 0.07297452494 0) (0.003018417956 0.07297192398 0) (0.003020705444 0.07328802875 0) (0.005341208125 0.07325859425 -3.587408148e-13) (0.005336488953 0.07263627168 -3.587685704e-13) (0.005931482651 0.07179722816 -3.546607452e-13) (0.005927736273 0.07231005698 -3.541056337e-13) (0.006659268513 0.06098757244 -2.986777492e-13) (0.00669611679 0.06083349518 -3.005096172e-13) (0.006541770866 0.05486678524 -2.710331959e-13) (0.006493619643 0.05490766952 -2.688960166e-13) (0.004835158718 0.03323863602 -1.627586954e-13) (0.00490674234 0.03344974107 -1.652289416e-13) (0.004073020122 0.02613611761 -1.290911822e-13) (0.003999196427 0.02587905207 -1.267042027e-13) (0.00138662454 0.007630134271 -3.735900478e-14) (0.001443080604 0.007873432317 -3.888556144e-14) (0.0007442118621 0.003867301394 -1.909583602e-14) (0.0007015768882 0.003677017134 -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.0001280310633 0.0005991584561 -3.080868893e-15) (-0.0001154291654 0.0005450450542 -2.803313137e-15) (-0.0001042088742 0.0004964653989 -2.525757381e-15) (-0.001100290936 0.00575874334 -2.917110997e-14) (-0.001133990161 0.005882689987 -3.008704397e-14) (-0.001918124886 0.01046652102 -5.351274979e-14) (-0.001876772303 0.01033234464 -5.234701561e-14) (-0.004509979844 0.02940166177 -1.489364188e-13) (-0.00455926998 0.02945694904 -1.505462421e-13) (-0.005324073899 0.03664370787 -1.872668687e-13) (-0.005276745949 0.03664768835 -1.856292897e-13) (-0.006585867718 0.05687352887 -2.880196082e-13) (-0.006617888674 0.05662584666 -2.893518758e-13) (-0.006640374039 0.06182599013 -3.159139617e-13) (-0.006615151031 0.06216542755 -3.148314942e-13) (-0.005530689738 0.07065747301 -3.57880392e-13) (-0.005536520039 0.07006323024 -3.580469254e-13) (-0.004883843959 0.07020418839 0) (-0.004880430319 0.07083092991 0) (-0.002891416507 0.07081701283 0) (-0.002893289544 0.07050381806 0) (-0.002562531656 0.07050161321 0) (-0.002561565902 0.07065822494 0) (-0.002560601103 0.0708147056 0) (0.002668035978 0.07076346085 0) (0.002664853031 0.07044839672 0) (0.002995626438 0.07044632284 0) (0.002998852336 0.0707612847 0) (0.005317579943 0.07073957972 -3.587408148e-13) (0.005309903932 0.0700986968 -3.586853037e-13) (0.005892802437 0.06914411699 -3.538280779e-13) (0.005907194814 0.06985668837 -3.542999227e-13) (0.006655163501 0.05900749618 -2.992883719e-13) (0.006626186764 0.05827131914 -2.982059044e-13) (0.00646436828 0.05246353696 -2.684796829e-13) (0.006495984661 0.05315933683 -2.696176615e-13) (0.004852732497 0.03225500419 -1.635636071e-13) (0.004820441951 0.031767828 -1.625366508e-13) (0.003989184711 0.02474001848 -1.265654248e-13) (0.004019414279 0.02514298836 -1.274813588e-13) (0.001404288245 0.00746611313 -3.785860514e-14) (0.001386003503 0.007304778749 -3.735900478e-14) (0.0007020705444 0.003523822435 -1.801336857e-14) (0.0007150196172 0.003620423833 -1.834643548e-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.0001833453313 0.0008271556428 -4.440892099e-15) (-0.0001683617001 0.0007666426416 -4.080069615e-15) (-0.0001538691074 0.0007071254786 -3.719247132e-15) (-0.00123933201 0.006257032817 -3.286260153e-14) (-0.001276436556 0.006385216248 -3.386180225e-14) (-0.002091013202 0.01100164461 -5.831446437e-14) (-0.002046273133 0.01086620443 -5.709321904e-14) (-0.004709898402 0.02960463367 -1.55458979e-13) (-0.00476178123 0.02965235382 -1.571520691e-13) (-0.005517687129 0.03659543313 -1.939559624e-13) (-0.005468216059 0.0366095866 -1.922351167e-13) (-0.006714326494 0.055855881 -2.93265412e-13) (-0.006747007463 0.05559366575 -2.94569924e-13) (-0.006741224546 0.06042645906 -3.202160759e-13) (-0.006715837664 0.06078087893 -3.191336084e-13) (-0.005552440454 0.0682599356 -3.584355035e-13) (-0.005557206364 0.06765252999 -3.585187702e-13) (-0.004896839167 0.06769576101 0) (-0.004893699597 0.06832286865 0) (-0.002905908554 0.06830904787 0) (-0.002907594376 0.06799556043 0) (-0.002577404603 0.06799334515 0) (-0.002576525281 0.0681500886 0) (-0.002575631607 0.06830680282 0) (0.002640137331 0.06824657771 0) (0.002636054576 0.06793195709 0) (0.002966510007 0.06793022052 0) (0.002970664947 0.06824475322 0) (0.005275171787 0.06805415382 -3.578526364e-13) (0.005256670254 0.06729117925 -3.571309914e-13) (0.005776130098 0.06566861977 -3.48526763e-13) (0.005817188289 0.0666639577 -3.5055292e-13) (0.006406649331 0.05495416412 -2.889910533e-13) (0.006276741532 0.0533878056 -2.833566715e-13) (0.006092412955 0.04780106373 -2.537137167e-13) (0.006199175063 0.04905602948 -2.579603198e-13) (0.004469677694 0.02869843228 -1.50879309e-13) (0.00435797374 0.02773508903 -1.471878175e-13) (0.003531802946 0.02114635062 -1.121880366e-13) (0.003636291307 0.02196648655 -1.154909501e-13) (0.001132975082 0.005814134172 -3.055888875e-14) (0.00107218207 0.005452668439 -2.892130979e-14) (0.00047660206 0.002307975538 -1.224020885e-14) (0.000517386921 0.002528320314 -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.0002317169451 0.001006344341 -5.606626274e-15) (-0.0002396343226 0.001050822544 -5.773159728e-15) (-0.000218754364 0.0009684805618 -5.301314943e-15) (-0.001397699489 0.006797400035 -3.708144902e-14) (-0.001445107925 0.006960855229 -3.833044993e-14) (-0.002292013645 0.01161084398 -6.392109064e-14) (-0.002235887779 0.01143599294 -6.236677841e-14) (-0.004927186107 0.02981735439 -1.625366508e-13) (-0.004990189633 0.02990605265 -1.645905634e-13) (-0.005734366878 0.03659506835 -2.013944567e-13) (-0.005674795748 0.03657099956 -1.993405441e-13) (-0.006849268368 0.05480979148 -2.987332604e-13) (-0.00688729687 0.05456811488 -3.002875726e-13) (-0.006848945462 0.05901870746 -3.247679903e-13) (-0.006819982711 0.05936045854 -3.235189894e-13) (-0.00556988229 0.06581158286 -3.587408148e-13) (-0.005573605181 0.06519093298 -3.587685704e-13) (-0.00490891141 0.06518806973 0) (-0.004905903981 0.06581503268 0) (-0.00291844622 0.06580144737 0) (-0.002919855108 0.06548798705 0) (-0.002590291072 0.06548584915 0) (-0.002589557075 0.06564263735 0) (-0.002588809363 0.06579930894 0) (0.002605102052 0.06573573281 0) (0.002600109274 0.06542215294 0) (0.002930450099 0.06542067938 0) (0.002935544828 0.06573425851 0) (0.005177285863 0.06474397215 -3.534394999e-13) (0.005137962364 0.06375111022 -3.513578317e-13) (0.005563951414 0.06124286337 -3.375633106e-13) (0.00563084712 0.06248742728 -3.411437799e-13) (0.005909158899 0.04897952028 -2.673972155e-13) (0.005812277863 0.04775756005 -2.632338791e-13) (0.005500983709 0.04166934898 -2.296773882e-13) (0.005673622225 0.04336213669 -2.367273044e-13) (0.003852438062 0.02386344949 -1.302569164e-13) (0.003611074417 0.0221630396 -1.221245327e-13) (0.002796979658 0.01614727563 -8.895661985e-14) (0.003039060312 0.01770781487 -9.664491429e-14) (0.0007606787259 0.003763141185 -2.053912596e-14) (0.0006643171524 0.003255766347 -1.793010185e-14) (0.0002157073259 0.001006593724 -5.551115123e-15) (0.0002715083842 0.001278932676 -6.96664948e-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.0004119142803 0.00171924694 -9.93649607e-15) (-0.0003755500577 0.001583433117 -9.076073226e-15) (-0.0003214208659 0.001368795063 -7.771561172e-15) (-0.001597404714 0.00747168131 -4.235500839e-14) (-0.00171601371 0.007946442287 -4.549138843e-14) (-0.002600383168 0.01266257765 -7.249756351e-14) (-0.002455713935 0.01207899868 -6.847300504e-14) (-0.005203110685 0.03026525316 -1.715294573e-13) (-0.005297185945 0.03050035635 -1.745825706e-13) (-0.006010656381 0.03684555033 -2.108868635e-13) (-0.005934535886 0.03675307297 -2.082778394e-13) (-0.007012402515 0.05388848643 -3.053390873e-13) (-0.007030788847 0.05347100523 -3.060052212e-13) (-0.006976371596 0.0576906403 -3.301525719e-13) (-0.006943095887 0.05802056498 -3.287647932e-13) (-0.005584033427 0.06331214831 0) (-0.005587899729 0.06268524987 0) (-0.004922219184 0.06268072244 0) (-0.004920345086 0.06299406285 0) (-0.004918558162 0.06330743303 0) (-0.002929017169 0.06329390537 0) (-0.002929676435 0.06313737879 0) (-0.0027648503 0.06313636778 0) (-0.002764205916 0.06329285077 0) (-6.965697339e-05 0.0632359117 0) (-7.204195194e-05 0.06315786001 0) (-7.390213735e-05 0.06307978993 0) (8.74878733e-05 0.0630804498 0) (9.198123914e-05 0.06323645325 0) (0.002557875887 0.0632309047 0) (0.002550474973 0.06291865322 0) (0.002542943615 0.06260649009 0) (0.003205575298 0.06260331029 0) (0.003219796144 0.06322803595 0) (0.002888959601 0.06322944029 0) (0.004983839005 0.06038976319 -3.427258477e-13) (0.004903477506 0.05894206794 -3.37868622e-13) (0.005204024032 0.0554124009 -3.176348073e-13) (0.00533763094 0.05730834727 -3.252675906e-13) (0.0053250186 0.04259377496 -2.41723308e-13) (0.005134891043 0.04070019588 -2.33285613e-13) (0.004749821008 0.03469299412 -1.988409437e-13) (0.004949082245 0.03648371084 -2.070565941e-13) (0.002993045685 0.01786122479 -1.013356066e-13) (0.002812886563 0.01662688823 -9.528489109e-14) (0.002054977427 0.01142290252 -6.54476473e-14) (0.002213499407 0.01242265802 -7.047140649e-14) (0.000314084302 0.001495869252 -8.493206138e-15) (0.0002553140099 0.001204226261 -6.911138328e-15) (2.023912734e-05 9.089131261e-05 -5.273559367e-16) (3.866848486e-05 0.0001753514637 -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.0003906138032 0.001571543118 -9.464651285e-15) (-0.0004414183266 0.001794649515 -1.071365219e-14) (-0.0004716806917 0.001937683667 -1.143529715e-14) (-0.001899787363 0.008574396452 -5.062616992e-14) (-0.001838673479 0.008212737442 -4.898859096e-14) (-0.002739564812 0.01286957353 -7.677192215e-14) (-0.002812796056 0.01335196688 -7.882583475e-14) (-0.005527497427 0.03104352864 -1.831867991e-13) (-0.005437139823 0.03021636633 -1.801614413e-13) (-0.006136392249 0.03631439273 -2.165212454e-13) (-0.00622511 0.03723106332 -2.19685381e-13) (-0.007146687096 0.05309263963 -3.132494264e-13) (-0.007084825425 0.05206902096 -3.104183577e-13) (-0.006972762787 0.05575302087 -3.32373018e-13) (-0.007019299335 0.05673792285 -3.347599975e-13) (-0.005525891473 0.06079787203 0) (-0.005530457606 0.06017087674 0) (-0.004862915158 0.06016601532 0) (-0.004860632622 0.06047944014 0) (-0.004858349025 0.06079301061 0) (-0.002855750809 0.06077842656 0) (-0.002858034406 0.06046485609 0) (-0.002524277747 0.06046242549 0) (-0.002523135418 0.06061928354 0) (-0.00252199415 0.06077599596 0) (-0.00268887248 0.06077721126 0) (-0.0001856251892 0.0607589812 0) (-0.0001867661783 0.06060226879 0) (-0.0001879083675 0.06044541073 0) (0.0001458585474 0.06044298005 0) (0.0001481421443 0.06075655052 0) (0.002484501389 0.06073953584 0) (0.002479935255 0.06011254054 0) (0.003135778184 0.05987790255 -3.574085472e-13) (0.003149617589 0.06068666503 -3.584910147e-13) (0.004666295841 0.05476532132 -3.236022561e-13) (0.004555046802 0.05304688869 -3.166911178e-13) (0.004751498492 0.0489448184 -2.922107001e-13) (0.004886926155 0.05075847208 -2.999267501e-13) (0.004472132131 0.03447739414 -2.03725925e-13) (0.004291991802 0.03278147953 -1.957045637e-13) (0.003813105908 0.02681130361 -1.600664046e-13) (0.004074696889 0.0289314237 -1.709465902e-13) (0.002122135409 0.01218319783 -7.197020757e-14) (0.001848900441 0.01050966253 -6.272760089e-14) (0.001254702371 0.006705217577 -4.002354004e-14) (0.001429962048 0.007718518449 -4.560241074e-14) (5.255684721e-05 0.0002406570755 -1.415534356e-15) (2.373884693e-05 0.0001076137253 -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) (-9.125811195e-05 0.0003517075475 -2.220446049e-15) (-0.000165576745 0.0006451346422 -4.024558464e-15) (-0.0002459770791 0.0009688052823 -5.967448757e-15) (-0.001409223644 0.006097928641 -3.755329381e-14) (-0.001204228884 0.005155093266 -3.208544541e-14) (-0.001959219434 0.008820837951 -5.490052857e-14) (-0.002215784804 0.01008377178 -6.208922265e-14) (-0.004764229877 0.02564539836 -1.578737141e-13) (-0.004418063949 0.02352808612 -1.464106614e-13) (-0.00511451242 0.02900054906 -1.804667527e-13) (-0.005465278396 0.03132422506 -1.928179838e-13) (-0.006573461476 0.04676639316 -2.878253191e-13) (-0.006284562299 0.04422883333 -2.751687767e-13) (-0.006312159892 0.04831484777 -3.005928839e-13) (-0.006559029154 0.0507553355 -3.123890036e-13) (-0.005483185048 0.05765952207 -3.549105454e-13) (-0.005395366824 0.05609679367 -3.490541189e-13) (-0.004838943043 0.05716888383 -3.557432127e-13) (-0.004873654096 0.05825004253 -3.585742814e-13) (-0.002874017463 0.05827015409 0) (-0.002878584657 0.05764301315 0) (-0.002211056773 0.05763815184 0) (-0.002206489579 0.05826529278 0) (-0.002540260803 0.05826772349 0) (-0.000203891364 0.05825070873 0) (-0.0002084585577 0.05762356779 0) (0.0004590736952 0.05761870644 0) (0.000463640889 0.05824584738 0) (0.002445148567 0.05771223981 -3.555766792e-13) (0.002404302162 0.05620289992 -3.500533197e-13) (0.002964973871 0.054476563 -3.393396675e-13) (0.003037880881 0.05638722935 -3.474442956e-13) (0.004180352357 0.04720488942 -2.90906188e-13) (0.003999711661 0.04467922304 -2.783329123e-13) (0.004056714862 0.0400621415 -2.495781359e-13) (0.004267437588 0.04260475886 -2.625677453e-13) (0.003548587048 0.02627756183 -1.619260281e-13) (0.00329553517 0.0241373565 -1.503519531e-13) (0.002786322169 0.01879034862 -1.170452624e-13) (0.003033395407 0.02068220686 -1.274258477e-13) (0.001182272485 0.006515860065 -4.013456234e-14) (0.001015562596 0.005536302809 -3.447242491e-14) (0.0005190154694 0.002660202579 -1.657007864e-14) (0.0007052075606 0.003654265059 -2.250977182e-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) (-2.241757609e-06 8.449872547e-06 -5.551115123e-17) (-0.000536148551 0.002220826897 -1.429412144e-14) (-0.0003366453919 0.001378893878 -8.965050924e-15) (-0.0007824403142 0.003371166086 -2.195466031e-14) (-0.001074323178 0.004680696953 -3.011479954e-14) (-0.003112392707 0.01604439148 -1.032229857e-13) (-0.002624394789 0.01338105665 -8.706924071e-14) (-0.003239356078 0.01758826889 -1.144362383e-13) (-0.003759572802 0.02063691432 -1.327549182e-13) (-0.005057877225 0.03446009208 -2.216560269e-13) (-0.004544466158 0.03063042575 -1.992850329e-13) (-0.004725534841 0.03463948668 -2.253475184e-13) (-0.005206599874 0.03857795007 -2.48134846e-13) (-0.004776316196 0.04803679502 -3.090028233e-13) (-0.004445165418 0.0442291076 -2.87769808e-13) (-0.004111536024 0.04646147627 -3.02285974e-13) (-0.004386640691 0.05010653746 -3.223254996e-13) (-0.002768925617 0.05347376349 -3.440581153e-13) (-0.002637324289 0.0503803517 -3.278766147e-13) (-0.002049192826 0.05089279346 -3.312072838e-13) (-0.002145600196 0.05387097647 -3.466393839e-13) (-0.0002086855815 0.0535175991 -3.44474449e-13) (-0.0001978216689 0.05044230026 -3.283762151e-13) (0.0004079564237 0.04959921579 -3.229083667e-13) (0.0004281223786 0.05283608491 -3.401168236e-13) (0.002134071083 0.04826198042 -3.10723669e-13) (0.00199178174 0.04447669297 -2.89601676e-13) (0.002383244353 0.04180332052 -2.722266856e-13) (0.002573306915 0.04570713563 -2.942923683e-13) (0.003235936209 0.03492058036 -2.248756736e-13) (0.002915632177 0.03108132967 -2.02421413e-13) (0.002848101468 0.02684436566 -1.748323708e-13) (0.003197445758 0.03050497319 -1.964262086e-13) (0.002338964927 0.01655491628 -1.065814104e-13) (0.001979749943 0.01384771774 -9.017786518e-14) (0.001541555221 0.009930569523 -6.464273561e-14) (0.001874096833 0.01221517408 -7.863154572e-14) (0.0004673444317 0.002463554144 -1.584843368e-14) (0.0003008858635 0.001568012609 -1.021405183e-14) (6.738925204e-05 0.0003302626343 -2.137179322e-15) (0.0001558103271 0.0007723419464 -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) (-1.968088896e-06 7.787534262e-06 -5.551115123e-17) (0 0 0) (-2.026615959e-05 8.338317968e-05 -5.551115123e-16) (-0.0001197507406 0.0004985406727 -3.358424649e-15) (-0.001205811575 0.005945289329 -4.005129561e-14) (-0.0008045379257 0.00392160638 -2.675637489e-14) (-0.001196734479 0.006214386627 -4.238276397e-14) (-0.001667766373 0.008759042708 -5.900835376e-14) (-0.002839612836 0.01852991907 -1.248445791e-13) (-0.002268424215 0.01464219727 -9.983680549e-14) (-0.002505805065 0.01759868813 -1.199873534e-13) (-0.003075382552 0.02183199313 -1.470767952e-13) (-0.00316198626 0.03049692633 -2.054745263e-13) (-0.002678692199 0.02557497237 -1.74360526e-13) (-0.002553352106 0.02770411971 -1.888766921e-13) (-0.002988734973 0.03274995917 -2.206568261e-13) (-0.002000639239 0.03713460028 -2.502165142e-13) (-0.00173474264 0.03192758044 -2.177147351e-13) (-0.001356911676 0.03255411367 -2.219890938e-13) (-0.001562809826 0.03777414102 -2.54546384e-13) (-0.0001389843213 0.03722097075 -2.50882648e-13) (-0.0001150194128 0.03201404219 -2.183531134e-13) (0.0002838788681 0.03103218701 -2.116640196e-13) (0.0003206834287 0.03621229108 -2.44082532e-13) (0.001438008786 0.0307585969 -2.073619054e-13) (0.001226536405 0.02582520524 -1.761646384e-13) (0.001412834607 0.0234256108 -1.597888488e-13) (0.001675202319 0.02819171148 -1.900424262e-13) (0.001843536233 0.01890654392 -1.274536032e-13) (0.001480422129 0.01498004902 -1.021960294e-13) (0.001342492324 0.0120220136 -8.201772594e-14) (0.001714302553 0.0155544042 -1.048605647e-13) (0.0009269206731 0.006251051241 -4.213296378e-14) (0.0006255742969 0.004166674542 -2.842170943e-14) (0.0003682462011 0.002260272274 -1.540434447e-14) (0.0006129382182 0.003808565863 -2.567390744e-14) (5.138311308e-06 2.585582012e-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) (-5.199580514e-05 0.0002445812092 -1.748601264e-15) (0 0 0) (-3.779764334e-05 0.0001871872083 -1.33226763e-15) (-0.0001873049492 0.0009390164706 -6.633582572e-15) (-0.0007963793501 0.004970525125 -3.516631431e-14) (-0.0004448012046 0.002743932131 -1.965094754e-14) (-0.0005985294026 0.00402080694 -2.878253191e-14) (-0.0009843826598 0.006689103209 -4.729550085e-14) (-0.00127978083 0.0118502791 -8.379408278e-14) (-0.0008845297636 0.008104270301 -5.803690861e-14) (-0.0008952232093 0.009335073336 -6.686318166e-14) (-0.001266920288 0.01334600402 -9.436895709e-14) (-0.0009161297711 0.01646317909 -1.164346397e-13) (-0.0006704510803 0.01195133536 -8.55981952e-14) (-0.0005290539536 0.01236055017 -8.851253064e-14) (-0.0007204426388 0.01694399152 -1.198485755e-13) (-4.988036118e-05 0.01653255349 -1.169342401e-13) (-3.371574322e-05 0.01201090569 -8.601452883e-14) (0.0001201727647 0.01138138844 -8.151812558e-14) (0.0001608766717 0.01578955796 -1.116884363e-13) (0.0006003325065 0.01202993405 -8.509859484e-14) (0.0004187056546 0.008252267881 -5.909162049e-14) (0.0004443248253 0.006926347382 -4.959921363e-14) (0.0006566720189 0.0103961193 -7.355227538e-14) (0.000531745919 0.005164220163 -3.652633751e-14) (0.0003011736955 0.002885197689 -2.067790383e-14) (0.0002059101032 0.00174821622 -1.25177646e-14) (0.0004135296844 0.003558020793 -2.517430708e-14) (4.731497305e-05 0.0003034984022 -2.137179322e-15) (1.328065573e-07 8.412537571e-07 0) (0 0 0) (5.530370193e-07 3.270932836e-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 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.845814043e-06 3.785804468e-05 -2.775557562e-16) (-0.0001046072091 0.0009261880616 -6.883382753e-15) (-1.17912638e-05 0.0001030962508 -7.771561172e-16) (-2.574159763e-05 0.0002565039357 -1.915134717e-15) (-0.0001323224288 0.001334850562 -9.93649607e-15) (-0.0001351209953 0.002342993007 -1.743050149e-14) (-4.392305586e-05 0.0007532407922 -5.689893001e-15) (-3.758896694e-05 0.0008486570701 -6.411537967e-15) (-0.0001102655975 0.002515261979 -1.870725796e-14) (-5.429965833e-06 0.00236825191 -1.762479052e-14) (-1.69010033e-06 0.000767102129 -5.773159728e-15) (7.433658904e-06 0.0006280859704 -4.74620343e-15) (2.441366744e-05 0.002109750203 -1.57096558e-14) (5.176739455e-05 0.0009731968755 -7.244205236e-15) (6.394617176e-06 0.0001185096417 -8.881784197e-16) (1.178118973e-06 1.73266987e-05 -1.387778781e-16) (3.923417938e-05 0.0005849936646 -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.002542286584 0.07363955067 0) (-0.002873582929 0.07364181771 0) (0.002691668625 0.07360656098 0) (0.002360496644 0.07360990493 0) (0.002359406421 0.07345220172 0) (0.002358399659 0.07329395899 0) (0.002367458652 0.07583388779 0) (0.002367827699 0.07551456328 0) (-0.002559636304 0.07097118626 0) (-0.002558670233 0.07112784168 0) (-0.002889543363 0.07113022216 0) (0.002671163426 0.07107890407 0) (0.00234052184 0.07108107895 0) (0.002339008402 0.0709232623 0) (0.002337451589 0.07076548965 0) (0.002357362814 0.07313558539 0) (0.002356296523 0.07297716831 0) (-0.002574738251 0.06846347334 0) (-0.002573844365 0.06862021669 0) (-0.002904193815 0.06862250596 0) (0.002643853856 0.06856090969 0) (0.002313441057 0.0685625003 0) (0.002311641423 0.06840538486 0) (0.002309769816 0.06824838646 0) (0.002335865542 0.07060770266 0) (0.002334297028 0.07045032336 0) (-0.002588061862 0.06595595139 0) (-0.002587299586 0.06611262287 0) (-0.002917008841 0.06611482009 0) (0.002610093876 0.0660491816 0) (0.002279883493 0.06605056682 0) (0.002274700848 0.06573691551 0) (0.0023057298 0.06793363444 0) (-0.002763574719 0.0634495232 0) (-0.002928371407 0.06345057769 0) (-6.771335958e-05 0.06331409769 0) (-0.0001489090002 0.06331387336 0) (-0.0001506891624 0.06323567161 0) (9.612363261e-05 0.06339266315 0) (-6.570915807e-05 0.06339228324 0) (0.002564536353 0.06354348199 0) (0.002234485012 0.06354470584 0) (0.002227693679 0.06323215862 0) (0.002270174023 0.06542331768 0) (-0.002687730151 0.06093406932 0) (-0.002854608481 0.06093528462 0) (-0.0001844836363 0.06091583926 0) (-0.0003513709065 0.06091705463 0) (-0.0003525103224 0.06076019655 0) (-0.000152724253 0.06315754455 0) (0.0001504257411 0.06107012099 0) (-4.464323168e-06 0.06106629685 0) (-0.0001607542842 0.06106000682 0) (0.002506732376 0.06136016861 0) (0.002176552076 0.0613616847 0) (0.001844392616 0.06136343368 0) (0.00183459569 0.06105217552 0) (0.001826985784 0.06073922644 0) (0.002220249389 0.06291995116 0) (-0.002517037095 0.07617866637 0) (-0.002849142848 0.07617979011 0) (-0.000401639077 0.07843051015 0) (-0.0004048661305 0.07811918958 0) (0.002699918068 0.07614732691 0) (0.002366927153 0.07615290529 0) (0.002334183408 0.07839071952 0) (0.002340800605 0.07807335556 0) (0.001370821061 0.07457147306 0) (0.001370973257 0.07465137185 0) (0.001287398994 0.07465202855 0) (0.001287019201 0.07457207753 0) (0.001368443991 0.075852667 0) (0.001201625055 0.07585623793 0) (0.001203305878 0.07569443907 0) (0.001369897917 0.07569131199 0) (0.003022989644 0.07360368203 0) (0.005345220913 0.07387198065 -3.586575481e-13) (0.004683237454 0.07390548414 0) (0.004678278893 0.07327460281 0) (0.004694850994 0.07580218903 0) (0.004691414066 0.07517024969 0) (-0.004876972562 0.07145772936 0) (-0.005525076687 0.07125448267 -3.577416141e-13) (-0.003220635489 0.0711325314 0) (-0.003222465045 0.07081930719 0) (-0.003207114159 0.07332920306 0) (-0.003209156102 0.07301481518 0) (0.001338072441 0.0720362193 0) (0.001339021834 0.07211518448 0) (0.001244914996 0.07211576787 0) (0.0012439937 0.07203686074 0) (0.001361870858 0.07330168236 0) (0.00127528346 0.0733019925 0) (0.001277103994 0.07322297802 0) (0.001362542873 0.07322255971 0) (0.003002008382 0.07107665489 0) (0.005324559317 0.07137495684 -3.58796326e-13) (0.004661284271 0.07138099841 0) (0.004654758169 0.07075087132 0) (0.004673069343 0.07264325723 0) (-0.004890486888 0.06895001945 0) (-0.005547462076 0.06886489303 -3.583244812e-13) (-0.003234863787 0.068624783 0) (-0.003236534939 0.06831131002 0) (-0.003224279931 0.07050609743 0) (-0.002898842198 0.06956335937 0) (-0.002568288423 0.06956112687 0) (-0.002567321184 0.06971794251 0) (-0.002566368935 0.06987469999 0) (-0.00289700999 0.06987694769 0) (-0.001577125092 0.06955444757 0) (-0.001576852602 0.06963286421 0) (-0.001576836552 0.06971126815 0) (-0.001741956251 0.06971236869 0) (-0.00174279241 0.0695555521 0) (-0.001569246371 0.07080790838 0) (-0.001734508588 0.07080903909 0) (-0.001735604042 0.07065261765 0) (-0.001570457915 0.07065154605 0) (-0.001569815308 0.07072978521 0) (0.001334179547 0.06951066987 0) (0.001334441792 0.06958947984 0) (0.001251155737 0.0695899116 0) (0.001251358094 0.06951109824 0) (0.001344231135 0.07077209655 0) (0.001259260755 0.07077284643 0) (0.001256136616 0.0706940573 0) (0.001342256943 0.07069321165 0) (0.002974498305 0.06855912806 0) (0.005289524739 0.06876505809 -3.582967256e-13) (0.004633426029 0.06886366345 0) (0.004625603879 0.06823557036 0) (0.004647993595 0.07012199856 0) (-0.004902911752 0.06644190835 0) (-0.005565497564 0.06642449994 -3.586575481e-13) (-0.003247285999 0.066117036 0) (-0.003248679792 0.0658036484 0) (-0.003238162503 0.06799782217 0) (-0.002912478237 0.06705493666 0) (-0.00258252213 0.06705263569 0) (-0.002581700959 0.06720939413 0) (-0.002580864906 0.06736619615 0) (-0.002910894259 0.0673684394 0) (-0.001594708175 0.06704603904 0) (-0.001593763131 0.06712440708 0) (-0.001676831011 0.06712499747 0) (-0.001677532937 0.06704661308 0) (-0.001587814209 0.06830027897 0) (-0.00175189735 0.0683013137 0) (-0.001752951232 0.06814460065 0) (-0.001588999276 0.06814355231 0) (-0.001588530381 0.06822193839 0) (0.001304754205 0.06699574958 0) (0.001307002498 0.06715267241 0) (0.001142576931 0.06715328724 0) (0.001140500179 0.06699631947 0) (0.001320694622 0.06825299687 0) (0.001155868458 0.06825380397 0) (0.001154844816 0.06817504324 0) (0.001154019645 0.06809613541 0) (0.001318843879 0.06809566332 0) (-0.004916886692 0.06362094969 0) (-0.004915156965 0.06393446594 0) (-0.005580399731 0.0639391067 0) (-0.002927753819 0.06360738131 0) (-0.003257900323 0.06360953802 0) (-0.003259338763 0.06329601965 0) (-0.003250059657 0.06549017331 0) (-0.002923862562 0.06454770645 0) (-0.00275906598 0.06454663739 0) (-0.002758404486 0.06470346982 0) (-0.002923215739 0.06470452442 0) (-0.001600758611 0.06453882825 0) (-0.001601921318 0.06461737186 0) (-0.001688547241 0.06461819206 0) (-0.001688142806 0.0645397268 0) (-0.001597896008 0.06579270428 0) (-0.001683250993 0.06579344241 0) (-0.001684214016 0.06571520558 0) (-0.00159941809 0.06571450066 0) (-4.495597043e-05 0.06448865283 0) (3.709410368e-05 0.06448846312 0) (3.690233671e-05 0.06456713075 0) (-4.594365069e-05 0.06456753017 0) (0.001264184969 0.06448701323 0) (0.001267202232 0.06464372654 0) (0.001102876176 0.06464400566 0) (0.001099987504 0.06448734966 0) (0.001286403778 0.06574057352 0) (0.001122297779 0.0657410695 0) (0.001119780893 0.06558426515 0) (0.001283958258 0.06558376865 0) (-0.004856065428 0.06110658108 0) (-0.004903148555 0.0614113933 0) (-0.005569694582 0.06141707768 0) (-0.002853467213 0.06109199703 0) (-0.003187238437 0.06109442774 0) (-0.003189522033 0.06078085727 0) (-0.003260776037 0.0629826615 0) (-0.002930396185 0.06298054679 0) (-0.002935292277 0.06204024353 0) (-0.002770379074 0.06203918819 0) (-0.002769456589 0.0621958585 0) (-0.002934369686 0.06219692841 0) (-0.001614055737 0.06203174306 0) (-0.001608499069 0.06210955317 0) (-0.001693862368 0.06211034962 0) (-0.001697634826 0.06203233716 0) (-0.00160070599 0.06328465425 0) (-0.001689454122 0.06328566469 0) (-0.001691478327 0.06320771233 0) (-0.001604014134 0.06320679862 0) (-0.002537977206 0.05858129396 0) (-0.002871733866 0.05858372456 0) (-0.0002016077671 0.0585642792 0) (-0.0005353746218 0.05856670988 0) (-0.0005376582187 0.05825313941 0) (-0.0003536501341 0.06060348413 0) (-0.001541575573 0.07457950425 0) (-0.001542871384 0.07442157095 0) (-0.001377146416 0.07442058253 0) (-0.001376496826 0.07449958048 0) (-0.00137594474 0.0745783898 0) (-0.001551216175 0.07331771191 0) (-0.001384854985 0.07331648581 0) (-0.001384349862 0.07339504641 0) (-0.001384280079 0.07347382865 0) (-0.00155023066 0.0734750372 0) (-0.001524603254 0.07586044644 0) (-0.001527713129 0.07569881603 0) (-0.001360911442 0.07570107652 0) (-0.001357801028 0.07586238096 0) (-0.001374509323 0.07473689303 0) (-0.001540146873 0.07473788519 0) (0.00136173399 0.07338088849 0) (0.001274443954 0.07338111636 0) (0.001286793871 0.07449233658 0) (0.001370511725 0.07449179681 0) (0.002696988168 0.07455701013 0) (0.002365354041 0.0745608949 0) (0.002364651678 0.07440245041 0) (0.002364017968 0.07424343301 0) (0.002695436059 0.07423988336 0) (0.001370464819 0.07441235606 0) (0.001536465576 0.07441063737 0) (0.001536981466 0.07456947647 0) (0.001446865205 0.0733012236 0) (0.001447063636 0.07338047099 0) (-0.001568604825 0.0708860019 0) (-0.001568064062 0.07096425637 0) (-0.001733413135 0.07096546053 0) (-0.001561004228 0.07206167242 0) (-0.001726033309 0.07206281599 0) (-0.001727130778 0.07190611782 0) (-0.001562145283 0.07190498913 0) (-0.002883770547 0.07207091229 0) (-0.002885719269 0.07175732481 0) (-0.002554729094 0.07175501631 0) (-0.002552736784 0.0720685889 0) (-0.001397613772 0.07190392201 0) (-0.001397067078 0.071982191 0) (-0.001396291404 0.07206050201 0) (-0.001486191599 0.0708073181 0) (-0.001485504903 0.07088541129 0) (-0.001552345848 0.07316059159 0) (-0.001386010344 0.0731594385 0) (-0.00138517326 0.07323798212 0) (-0.001395640454 0.07213888677 0) (-0.001394864965 0.07221737257 0) (-0.001559789183 0.07221851538 0) (0.001346261174 0.07085084995 0) (0.001262458113 0.07085148938 0) (0.001244041541 0.07195783003 0) (0.00133799855 0.07195707296 0) (0.002679796694 0.07202637528 0) (0.002514374906 0.07202759454 0) (0.002513033801 0.07186944164 0) (0.002678426673 0.07186825172 0) (0.0014295848 0.07195637685 0) (0.001429870193 0.07203556534 0) (0.001428267014 0.07077142629 0) (0.001429598389 0.07085024304 0) (0.001446900334 0.07322204733 0) (0.001430693194 0.07211457514 0) (0.002681121432 0.0721842807 0) (0.002515685079 0.07218550006 0) (-0.001587142049 0.06837857618 0) (-0.001586397279 0.06845684373 0) (-0.001750756719 0.06845793873 0) (-0.001743760603 0.06939860538 0) (-0.001577889808 0.06939744111 0) (-0.001577229165 0.06947595688 0) (-0.00290066069 0.06924965443 0) (-0.002570165703 0.06924734953 0) (-0.002569227275 0.06940420907 0) (-0.001492987822 0.06947529969 0) (-0.001493029287 0.06955380601 0) (-0.001506247383 0.06829977235 0) (-0.001505336474 0.06837805325 0) (-0.001486879858 0.07072921035 0) (-0.001493382852 0.06963225634 0) (0.001322476885 0.06841012701 0) (0.001157528062 0.0684108913 0) (0.001156704086 0.06833234759 0) (0.001250745061 0.06943231996 0) (0.001333430853 0.06943186344 0) (0.002654754033 0.06950365986 0) (0.002324224507 0.06950522219 0) (0.002322510775 0.06934790221 0) (0.002320769716 0.06919083003 0) (0.002651225996 0.06918920998 0) (0.001332535193 0.06935327656 0) (0.001497560995 0.06935248257 0) (0.001499274409 0.06950975886 0) (0.001485367966 0.06825220545 0) (0.001487196729 0.06840932068 0) (0.001426963814 0.07069247825 0) (0.001500857805 0.06966718174 0) (0.001418073717 0.06966774093 0) (0.001334876611 0.0696681866 0) (0.002658093794 0.06981825676 0) (0.002327697362 0.06982009486 0) (0.002326011698 0.06966262902 0) (-0.001596541416 0.06587090913 0) (-0.001682360898 0.0658716652 0) (-0.001678205521 0.06696825762 0) (-0.001595651657 0.06696768555 0) (-0.002914016824 0.06674166663 0) (-0.002584132797 0.06673946814 0) (-0.002583342558 0.0668959792 0) (-0.001512554542 0.06696710952 0) (-0.001511116191 0.06704541571 0) (-0.001510358675 0.06579183374 0) (-0.001508197537 0.06586998902 0) (-0.001507085895 0.06822143266 0) (-0.001509678978 0.0671237656 0) (0.001288991421 0.06589749387 0) (0.001124760168 0.06589799077 0) (0.00113845952 0.06683930774 0) (0.001302770346 0.06683873743 0) (-0.001599130126 0.06336284292 0) (-0.0016886512 0.06336391725 0) (-0.001688626584 0.06446129714 0) (-0.001601448991 0.06446042922 0) (-0.002924509066 0.06439093217 0) (-0.002759712484 0.06438986312 0) (-0.0001255100118 0.06448840926 0) (-0.0001271278338 0.06441027916 0) (-4.568458811e-05 0.06441028321 0) (-0.001512691908 0.06445944784 0) (-0.00151135082 0.06453779844 0) (-0.001513093241 0.06328373946 0) (-0.001509895757 0.0633617998 0) (-0.001512787692 0.06571369498 0) (-0.001513277838 0.06461639131 0) (-0.0001278860151 0.06456768996 0) (0.001236165338 0.0632361169 0) (0.001243852562 0.06354848281 0) (0.0009151450291 0.06354923079 0) (0.0009111364156 0.06339299077 0) (0.0009069806245 0.06323694118 0) (0.001096796848 0.06433082696 0) (0.001260988063 0.06433043231 0) (3.633402701e-05 0.06441009373 0) (-0.001520972683 0.06076957986 0) (-0.001520128116 0.06092775095 0) (-0.001602807291 0.06092791611 0) (-0.001686030381 0.06092779393 0) (-0.001687511933 0.06077035574 0) (-0.001702047479 0.06195441676 0) (-0.001619915344 0.06195393515 0) (-0.002936272701 0.06188361734 0) (-0.002771344721 0.06188259102 0) (-0.0001147174302 0.06199128596 0) (-0.0002741585139 0.06198978168 0) (-0.0002811985245 0.06183494743 0) (-0.0001219800364 0.06183652616 0) (-0.001548120851 0.0619537473 0) (-0.001541680551 0.06203149272 0) (-0.001354497786 0.0607683675 0) (-0.001354688744 0.06092654613 0) (-0.001437875677 0.06092758889 0) (-0.001517979312 0.06320601185 0) (-0.001534844631 0.06210916243 0) (-0.0001073113905 0.06214616124 0) (-0.0002671891118 0.06214482036 0) (-0.004862084162 0.07397011923 0) (-0.0054971996 0.07358155585 -3.568811913e-13) (-0.003205010459 0.07364407113 0) (-0.003186164932 0.07585983122 0) (-0.003190218705 0.07553919033 0) (-0.002866817194 0.07458684975 0) (-0.002535314275 0.07458494825 0) (-0.002532627334 0.07490190363 0) (-0.002864159212 0.07490382865 0) (-0.001705714228 0.07473891617 0) (-0.001707144225 0.07458055708 0) (-0.00169059782 0.07586061506 0) (-0.001693817397 0.07569852112 0) (0.0006962933143 0.07521795281 0) (0.0006909298206 0.07529666829 0) (0.0006072749254 0.07529265309 0) (0.0006330460833 0.07522840217 0) (0.0006934771135 0.07587164793 0) (0.0006063037815 0.07587410097 0) (0.0006057837278 0.07578989016 0) (0.0006934958679 0.0757886232 0) (-0.002550713755 0.07238237975 0) (-0.002881805987 0.07238467443 0) (-0.001724920215 0.07221965969 0) (-0.001716929887 0.07331884591 0) (-0.00171805956 0.07316172559 0) (0.0006372083134 0.06763053803 0) (0.0006345670917 0.06770966045 0) (0.0005471266815 0.06771623981 0) (0.0005337348289 0.06765054668 0) (0.002940404936 0.06604762087 0) (0.00520926425 0.06565392663 -3.550215677e-13) (0.004600058487 0.06635203235 -3.58796326e-13) (0.004588725895 0.06569548962 -3.586297925e-13) (0.004617490229 0.06760745025 0) (-7.033165638e-05 0.06513976755 0) (3.208551686e-05 0.06511991225 0) (3.233494365e-05 0.0651985621 0) (-5.262862936e-05 0.06520484668 0) (0.0006204631108 0.06511478257 0) (0.0006230290906 0.06527152831 0) (0.0004588652296 0.06527187906 0) (0.0004576867318 0.06519345446 0) (0.0004567094342 0.06511505752 0) (0.0006307781397 0.06574198361 0) (0.0005487677867 0.0657421876 0) (0.0005475385258 0.06566379249 0) (0.0006295545985 0.0656635739 0) (4.640977619e-05 0.06199223905 0) (5.378848717e-05 0.0621470417 0) (0.001200383237 0.0619891223 0) (0.001209998533 0.06230044005 0) (0.0008782650658 0.06230208397 0) (0.0008668190105 0.06199137673 0) (0.000902709775 0.06308089242 0) (0.0008983670584 0.06292497528 0) (0.001227999612 0.06292404578 0) (-0.001715827857 0.07347617034 0) (-0.001708425524 0.07442261639 0) (-0.00286909679 0.07427182857 0) (-0.002537682764 0.07426972089 0) (-0.0008869539002 0.07394383551 0) (-0.0008930450105 0.07386503886 0) (-0.0008196822834 0.07386459198 0) (-0.0008128675086 0.07394355815 0) (-0.0008555436565 0.07587111132 0) (-0.0008587809396 0.07578758599 0) (-0.0007749443542 0.07578914988 0) (-0.0007711292098 0.07587382382 0) (-0.0008682588315 0.07521373586 0) (-0.000784986505 0.0752142189 0) (-0.0007836466766 0.07529479651 0) (-0.0008681274165 0.07529418099 0) (0.001536374241 0.07568809546 0) (0.001535646404 0.07584815296 0) (0.001537427123 0.07472867148 0) (0.001371304185 0.07473101299 0) (0.002698378914 0.07487397932 0) (0.002366827994 0.07487728962 0) (0.002366128049 0.07471917719 0) (0.0006318555356 0.06582052547 0) (0.0005497800673 0.06582078819 0) (0.000636976528 0.06637051092 0) (0.0005519770478 0.06637146493 0) (0.000552331087 0.0662926796 0) (0.0006365207117 0.06629192084 0) (0.00262370401 0.0669900477 0) (0.002293378385 0.06699160854 0) (0.002289010919 0.06667789303 0) (0.002619278923 0.06667642 0) (0.001467160852 0.06683810829 0) (0.001469279841 0.06699507575 0) (0.001450687038 0.06574001798 0) (0.001453344377 0.0658969087 0) (0.001483523791 0.06809497381 0) (0.001471442204 0.06715199921 0) (0.002628059669 0.06730414198 0) (0.002297675893 0.06730571781 0) (-5.648849837e-05 0.06386159175 0) (-0.0001396691603 0.06386209556 0) (-0.0001401100956 0.06378338885 0) (-5.766939296e-05 0.06378313803 0) (-0.0007437683663 0.06261226307 0) (-0.0006585401197 0.06261132196 0) (-0.0006551264262 0.06268887095 0) (-0.0007396816938 0.06268982172 0) (-8.909499777e-05 0.06261227273 0) (-8.357363097e-05 0.06276787543 0) (-0.000244148201 0.06276678723 0) (-0.0002468203474 0.06268888328 0) (-0.0002494197101 0.06261115358 0) (-7.053213453e-05 0.07718361977 0) (-0.0002519684958 0.07718342486 0) (-0.0002530020149 0.07702770792 0) (-7.17966842e-05 0.07702788703 0) (-0.001467705341 0.0771693443 0) (-0.001495141897 0.07683471232 0) (-0.001325424543 0.07683813572 0) (-0.0011504439 0.07684608405 0) (-0.001136455031 0.07701195612 0) (-0.001122846025 0.0771752675 0) (-0.00135324396 0.07602593159 0) (-0.001521748311 0.07602067084 0) (0.001366917718 0.07601368783 0) (0.001199798925 0.07601748408 0) (0.001337921589 0.0771475037 0) (0.0009899939183 0.07716045156 0) (0.0009918484656 0.07700290751 0) (0.00100238868 0.07683963001 0) (0.001180846578 0.07682785514 0) (0.001351791286 0.07682141193 0) (0.0001177129997 0.07702518877 0) (0.0001177428091 0.07718108198 0) (0.0006733790302 0.07511629345 0) (0.001371729195 0.07520977277 0) (0.001205483504 0.07521205837 0) (0.001205354054 0.07513168314 0) (0.001205234319 0.07505144184 0) (0.001371839457 0.07504951338 0) (0.0007769448882 0.07513436902 0) (0.0007789170116 0.07521556978 0) (0.0007798160907 0.07578762607 0) (0.0007791563444 0.07587003342 0) (0.0007775264134 0.07529642071 0) (0.001371628201 0.07536950484 0) (0.001205606351 0.0753713271 0) (0.001205522431 0.0752918036 0) (0.001366373834 0.07266860562 0) (0.001287851834 0.0726694105 0) (0.001286442498 0.07259028845 0) (0.001365025774 0.07258949769 0) (0.001366659014 0.07274776499 0) (0.0012876257 0.07274855903 0) (0.001341089618 0.07014072134 0) (0.001259026649 0.07014110049 0) (0.001257599016 0.07006206596 0) (0.001340106197 0.07006168358 0) (0.001341360764 0.07021995363 0) (0.001258937236 0.0702204228 0) (0.0006416514361 0.06699944259 0) (0.000643235855 0.06707780597 0) (0.0005599166196 0.06707828167 0) (0.0005560211074 0.06700037206 0) (0.0005665942993 0.06754982259 0) (0.0006442205785 0.06755042248 0) (0.001313069083 0.06762410126 0) (0.001148530445 0.06762478974 0) (0.00114651113 0.06746790894 0) (0.001311137154 0.06746721982 0) (0.0007281375602 0.06754982592 0) (0.0007252157769 0.0676290232 0) (0.0007267167741 0.06699853179 0) (0.0007275985834 0.06707701682 0) (0.0006542977109 0.0682589569 0) (0.0006405012943 0.06818591132 0) (0.0007271811557 0.06817949772 0) (0.0007323828005 0.06825755803 0) (0.0007243459476 0.06770778316 0) (0.001315017987 0.06778111366 0) (0.001150486737 0.06778181665 0) (0.001149461773 0.06770327441 0) (-0.001610652863 0.06516620559 0) (-0.001691325968 0.06516663288 0) (-0.001692217124 0.06508826444 0) (-0.001612053559 0.06508786999 0) (-0.002263112795 0.06517011239 0) (-0.002263860402 0.06501345537 0) (-0.002099995514 0.06501245136 0) (-0.002099189756 0.06516909339 0) (-0.002266073668 0.06454354236 0) (-0.002102267037 0.06454253878 0) (-0.002101518264 0.064699356 0) (-0.00226535413 0.06470034524 0) (0.0006089300288 0.06448792541 0) (0.0006120077191 0.06464453633 0) (0.0004487406755 0.06464463294 0) (0.0004458739561 0.06448799136 0) (0.0004555066013 0.06503669135 0) (0.0004543675333 0.06495828102 0) (0.0006178261899 0.06495809562 0) (-4.322097113e-05 0.06503933294 0) (3.57659113e-05 0.06504008314 0) (-0.001633853895 0.0626603723 0) (-0.001710961067 0.06266045319 0) (-0.001711967783 0.06258221668 0) (-0.001636243482 0.06258224782 0) (-0.002274612575 0.06266302868 0) (-0.002275345298 0.06250641525 0) (-0.002112237014 0.0625055187 0) (-0.002111577218 0.0626621181 0) (-0.002277939147 0.06203624283 0) (-0.002114801734 0.06203534608 0) (-0.002114202395 0.06211364381 0) (-0.002113777935 0.06219192826 0) (-0.00227698764 0.06219289837 0) (-0.002271606312 0.06328983142 0) (-0.00227230874 0.06313337799 0) (-0.002108836453 0.06313246423 0) (-0.002108003264 0.06328887301 0) (-0.002110728192 0.06281870156 0) (-0.002273865393 0.06281962744 0) (-0.001630140543 0.06273826867 0) (-0.001708746889 0.06273849156 0) (-0.0008729623828 0.07457547107 0) (-0.0008617757599 0.07449455463 0) (-0.000758436416 0.07447452657 0) (-0.0007975423236 0.07457592536 0) (-0.0008056211841 0.07402198226 0) (-0.0008803903256 0.07402230829 0) (-0.0015468591 0.07394800045 0) (-0.001381463711 0.07394695616 0) (-0.001380703655 0.07402592273 0) (-0.001379981707 0.07410465652 0) (-0.001545535423 0.07410576022 0) (-0.0009636563869 0.07402288555 0) (-0.0009686959225 0.07394428515 0) (-0.0009555111959 0.07457593678 0) (-0.0009497419062 0.0744957429 0) (-0.0008583371816 0.07331032099 0) (-0.0008538881289 0.07338443963 0) (-0.0009420520485 0.07339047079 0) (-0.0009393132948 0.07331174092 0) (-0.0009732903478 0.07386540478 0) (-0.001548125475 0.07379010917 0) (-0.001382846417 0.07378889095 0) (-0.001382203087 0.07386782923 0) (-0.001535009384 0.07521613583 0) (-0.001369270018 0.07521552454 0) (-0.001366833136 0.07537714325 0) (-0.001532563124 0.07537764232 0) (-0.0009522671413 0.07529439175 0) (-0.0009525215756 0.07521385429 0) (-0.0009407472382 0.07586663927 0) (-0.0009427029708 0.07578568919 0) (-0.0008782995885 0.07465559627 0) (-0.0009589044711 0.07465579148 0) (-0.0009518728537 0.07513353311 0) (-0.0008665029432 0.07513344448 0) (-0.00153693186 0.07505595241 0) (-0.001371174345 0.07505523321 0) (-0.0007827186556 0.07513342712 0) (-0.0008018724187 0.07465594127 0) (0.001368419849 0.07393555251 0) (0.001284363898 0.07393626661 0) (0.001284938622 0.07385698446 0) (0.00136843808 0.07385605594 0) (0.00136861881 0.07401487273 0) (0.001284322548 0.07401558858 0) (-0.001564785689 0.0714344238 0) (-0.001481518383 0.0714338174 0) (-0.001481306138 0.07151216165 0) (-0.001564317217 0.07151275162 0) (-0.0009224700131 0.07205776507 0) (-0.000995634665 0.07205821051 0) (-0.0009988899047 0.0719800195 0) (-0.0009260078011 0.07197957612 0) (-0.001565166986 0.07135606621 0) (-0.001481819577 0.07135545923 0) (-0.00155609919 0.07268920415 0) (-0.001390495241 0.07268799813 0) (-0.001389658977 0.07276662914 0) (-0.001388988958 0.07284523223 0) (-0.001554838119 0.07284636721 0) (-0.0008930587173 0.07268415704 0) (-0.0008892521742 0.0727626499 0) (-0.0009647218325 0.07276318495 0) (-0.0009683185429 0.07268470513 0) (-0.0009414411762 0.07323335236 0) (-0.0008630859242 0.07323265065 0) (-0.0009189684238 0.07213598341 0) (-0.0009923775447 0.07213645976 0) (-0.0009718142289 0.0726062974 0) (-0.0008968149991 0.07260576577 0) (-0.001557344212 0.07253224489 0) (-0.001391961535 0.07253105504 0) (-0.001391182206 0.07260946799 0) (0.001357423328 0.07140357334 0) (0.001279496741 0.07140393693 0) (0.001278304626 0.07132484243 0) (0.001356628819 0.07132447594 0) (0.001357168991 0.07148264925 0) (0.001279067738 0.07148302868 0) (0.001437309746 0.07140312265 0) (0.001437433976 0.07148218123 0) (0.002013040861 0.07139925028 0) (0.002014408867 0.07155709712 0) (0.001849234248 0.07155825632 0) (0.001847938851 0.07140037982 0) (0.002018356921 0.07203122139 0) (0.001852993284 0.07203242566 0) (0.001851738929 0.07187418473 0) (0.002017073543 0.07187299524 0) (0.002007100972 0.07076761872 0) (0.002008643539 0.07092543516 0) (0.001843555776 0.0709265209 0) (0.001841998539 0.07076869 0) (0.001846540762 0.07124240211 0) (0.002011613748 0.07124128735 0) (0.001436660987 0.07132403875 0) (0.001446680602 0.07266787513 0) (0.001447169578 0.07274701845 0) (0.002023266453 0.07266337024 0) (0.00202440387 0.07282155376 0) (0.00185911369 0.07282284488 0) (0.001858005297 0.07266464659 0) (0.002027485381 0.07329668932 0) (0.001862049983 0.07329803977 0) (0.001861114346 0.07313956348 0) (0.002026506158 0.07313822792 0) (0.00201962372 0.07218917092 0) (0.001854245624 0.07219038986 0) (0.001856795483 0.07250652186 0) (0.002022085874 0.07250525986 0) (0.0014456385 0.07258877953 0) (-0.001582023214 0.06892726535 0) (-0.001498648026 0.06892667273 0) (-0.001497671153 0.06900501141 0) (-0.001581167119 0.06900561948 0) (-0.001582672814 0.06884886602 0) (-0.001499604934 0.06884827564 0) (-0.001574143348 0.07018148354 0) (-0.001491884927 0.07018094275 0) (-0.001491170212 0.07025928334 0) (-0.001573529021 0.07025983943 0) (-0.001574772345 0.07010311319 0) (-0.00149258966 0.07010257295 0) (0.00132761355 0.06888166459 0) (0.001244775044 0.06888215134 0) (0.001244121549 0.06880341705 0) (0.001326804322 0.06880294599 0) (0.000741666931 0.06833480209 0) (0.0006680376478 0.068335047 0) (0.001328199731 0.06896035568 0) (0.001245148904 0.06896088768 0) (-0.001601101413 0.06641975617 0) (-0.001520589972 0.06641933006 0) (-0.001520579429 0.06649777774 0) (-0.00160092338 0.06649820263 0) (-0.001600496096 0.06634127488 0) (-0.001518993247 0.06634078329 0) (-0.001588166798 0.06767306364 0) (-0.001501718243 0.06767228843 0) (-0.001502381923 0.06775075558 0) (-0.001588162187 0.0677514968 0) (-0.001588544044 0.06759466233 0) (-0.001501958584 0.06759388612 0) (0.0006399629739 0.06692099256 0) (0.0007256243896 0.06691993178 0) (0.0007206674441 0.06636987231 0) (0.0007213712786 0.06644851885 0) (0.0006372094322 0.06644929198 0) (0.001296087061 0.06636802676 0) (0.00129837542 0.06652505125 0) (0.001134122957 0.0665256357 0) (0.001131860283 0.06636853819 0) (0.0005512937767 0.06645044201 0) (0.0005526591522 0.06692232749 0) (-0.001619425933 0.06391353781 0) (-0.001699560687 0.06391388835 0) (-0.00170074313 0.06383552204 0) (-0.001621510941 0.06383523633 0) (-0.002268947048 0.06391698626 0) (-0.00226965234 0.06376013958 0) (-0.00210619483 0.0637591968 0) (-0.002105460515 0.0639160287 0) (-0.002107357608 0.06344553078 0) (-0.002270960656 0.06344648918 0) (-0.002266807558 0.06438676872 0) (-0.002103059185 0.06438576556 0) (-0.002104668685 0.06407275822 0) (-0.002268228146 0.06407370175 0) (-0.00161678499 0.06399177698 0) (-0.001697985325 0.06399220811 0) (-5.538257061e-05 0.06394003145 0) (-0.0001391706435 0.06394072903 0) (-0.001539953538 0.06391323578 0) (-0.0015358801 0.06399137713 0) (-0.001543468023 0.06383504667 0) (-0.00153062901 0.06516582672 0) (-0.001528160959 0.06524412542 0) (-0.001609112137 0.0652445693 0) (-0.001532891491 0.06508755566 0) (-0.0001005981562 0.06502910368 0) (2.571413099e-05 0.06386143006 0) (2.714239316e-05 0.06393975089 0) (0.0005955623768 0.06386195551 0) (0.0005991943325 0.064018475 0) (0.0004362122198 0.06401849672 0) (0.0004325361468 0.06386191928 0) (0.0004426102948 0.06433164396 0) (0.0006058072174 0.06433151873 0) (-0.002278977404 0.06187967532 0) (-0.002115999774 0.06187883799 0) (-0.002115342497 0.06195709161 0) (-0.002247257554 0.06139126509 0) (-0.002083522679 0.06139640851 0) (-0.002103757104 0.06148393204 0) (-0.002113757677 0.06156471022 0) (-0.002276897496 0.06156327657 0) (-0.001590454816 0.0613934877 0) (-0.00162051771 0.06148162172 0) (-0.001698242844 0.06148084777 0) (-0.001670118113 0.06139077614 0) (-0.001550079849 0.06141394897 0) (-0.001570333557 0.06148482471 0) (-0.0007725981633 0.06136231938 0) (-0.0007707615199 0.06144031681 0) (-0.0008494667848 0.06143915673 0) (-0.0008513540852 0.06136120337 0) (-0.0007505445272 0.06198459931 0) (-0.0008317494225 0.06198440417 0) (-0.0008333732427 0.06190623042 0) (-0.0007524585738 0.06190657332 0) (-0.001557646163 0.06266038535 0) (-0.001552231405 0.06273810911 0) (-0.0008223534253 0.06269560897 0) (-0.0008439519064 0.0626312282 0) (-0.0007488125349 0.06206262663 0) (-0.0008306101709 0.06206263972 0) (-0.0008225071383 0.06253210202 0) (-0.0007433267859 0.06253309841 0) (-0.001562366229 0.06258245262 0) (-0.0002550538445 0.06245556627 0) (-9.472101576e-05 0.06245669993 0) (-0.0006595498056 0.06253267765 0) (-0.0006701834872 0.06198512103 0) (-0.0006679272068 0.06206294061 0) (0.0003468258746 0.07588966813 0) (0.0002444088381 0.07589034221 0) (0.0003362728043 0.07579218046 0) (0.0002922397219 0.06543041042 0) (0.0002935581436 0.06550884857 0) (0.0002064938136 0.06551026914 0) (0.0002052936814 0.06543187382 0) (0.0003010023826 0.06574324914 0) (0.0002198553489 0.06574319924 0) (0.0002178498366 0.0656650137 0) (0.000299770527 0.06566489775 0) (-0.004872049545 0.05891173344 0) (-0.005525220825 0.05876626992 -3.578526364e-13) (-0.00286945133 0.05889714939 0) (-0.003203222554 0.0588995801 0) (-0.003536993778 0.05890201081 0) (-0.003541559911 0.05827501551 0) (-0.00319180563 0.0604672868 0) (-0.002864884136 0.05952429033 0) (-0.002531127477 0.05952185972 0) (-0.00252884388 0.05983543019 0) (-0.002862600539 0.0598378608 0) (-0.001529824 0.05951456767 0) (-0.001527540403 0.05982813814 0) (-0.001861301432 0.05983056877 0) (-0.001863585029 0.0595169983 0) (-0.001688713579 0.06061335247 0) (-0.001521939052 0.06061228357 0) (0.000468207022 0.05887284268 0) (0.0001344416238 0.05887527335 0) (-0.000199325231 0.05887770402 0) (0.002466959289 0.05876301945 -3.581857033e-13) (0.001803272984 0.05886311998 0) (0.00179829825 0.05822210247 -3.586853037e-13) (0.001814689908 0.06043082668 0) (0.001812407372 0.06011740185 0) (-0.000513534198 0.07589050817 0) (-0.0005216879132 0.07579948633 0) (-0.0004168092459 0.07578662942 0) (-0.0004242740431 0.07590200582 0) (0.0003005045806 0.06582209378 0) (0.0002168511076 0.06582267386 0) (0.0003019195125 0.06605818412 0) (0.0002244032574 0.06605729212 0) (0.000222353946 0.06597909234 0) (0.0003027053704 0.06597929369 0) (0.0005797904275 0.06323724115 0) (0.0005839938567 0.06339323214 0) (0.0004210576074 0.06339315157 0) (0.0004168889206 0.06323713119 0) (0.0004288951627 0.06370556007 0) (0.0005918865444 0.06370561111 0) (2.420004521e-05 0.06378312442 0) (0.001149441252 0.0607492585 0) (0.001164858664 0.06105748987 0) (0.0008324182099 0.06105845438 0) (0.0008156743972 0.06075168917 0) (0.0008543100267 0.06168111418 0) (0.001190713339 0.06167790692 0) (3.876684255e-05 0.06183755484 0) (-7.959606886e-05 0.07656068594 0) (-0.0002729268155 0.07655714757 0) (-0.0002796003598 0.0763999744 0) (-0.0001757191159 0.07640445696 0) (-7.687533633e-05 0.07640524752 0) (-0.0008137136639 0.0765385682 0) (-0.0008288267054 0.0763705312 0) (-0.0006538711227 0.07637803839 0) (-0.0006330890514 0.07654731438 0) (-0.0007664820614 0.07595874382 0) (-0.0008511735585 0.07595598833 0) (0.0006922395967 0.07595511913 0) (0.0006056585377 0.07595829973 0) (0.0006684746942 0.07653085751 0) (0.0004913621689 0.07653957119 0) (0.0004989149581 0.07637827736 0) (0.000678501493 0.07636608062 0) (2.923211994e-05 0.07640309693 0) (0.0001264121706 0.07639950969 0) (0.0001208470225 0.07655693511 0) (0.001350614554 0.07235203091 0) (0.001262408159 0.07235262959 0) (0.001253026799 0.07227343451 0) (0.001345005891 0.07227288119 0) (0.00102331436 0.0733030264 0) (0.001030177342 0.07322441215 0) (0.0011057427 0.07322381814 0) (0.001100185214 0.07330249571 0) (0.001047134143 0.07298782388 0) (0.001120939704 0.07298718444 0) (0.001116406757 0.07306614585 0) (0.001042250513 0.07306683155 0) (0.001365196915 0.07298499779 0) (0.001364360747 0.07306417989 0) (0.001281419789 0.07306479848 0) (0.001283388244 0.07298569553 0) (0.001336223244 0.0698256986 0) (0.001251529876 0.06982628625 0) (0.001250687044 0.06974755334 0) (0.001335353665 0.06974689305 0) (0.0009886592773 0.06982978822 0) (0.0009863006428 0.06975131395 0) (0.00107593235 0.06974983099 0) (0.001077209914 0.06982845879 0) (0.001006384619 0.06951173163 0) (0.001086191415 0.0695117476 0) (0.00108366038 0.06959100031 0) (0.001002180912 0.06959130238 0) (0.00101402646 0.07077486541 0) (0.001007439978 0.07069624715 0) (0.001083144653 0.07069578321 0) (0.001089229484 0.07077431774 0) (0.0009848028349 0.07046644327 0) (0.001072287207 0.07046030055 0) (0.001072155791 0.07053905513 0) (0.0009921601763 0.07054051161 0) (0.001339202645 0.07045681282 0) (0.001339407558 0.07053555038 0) (0.001251746139 0.07053658204 0) (0.001251950271 0.07045781236 0) (-0.001672427074 0.06767372097 0) (-0.001672881512 0.06759532022 0) (-0.002249469087 0.06767758832 0) (-0.002250392526 0.06752078693 0) (-0.002085756258 0.06751970447 0) (-0.002084803796 0.06767649109 0) (-0.002253089704 0.06705042592 0) (-0.002088584515 0.06704934442 0) (-0.002087646723 0.06720611658 0) (-0.002252195605 0.06720719839 0) (-0.00224576225 0.06830458987 0) (-0.002246699618 0.06814787597 0) (-0.00208194694 0.06814677811 0) (-0.002080980445 0.06830349179 0) (-0.002083865898 0.06783327781 0) (-0.002248560318 0.06783437525 0) (-0.001672074587 0.06775212246 0) (-0.002259856817 0.06579720462 0) (-0.002260677352 0.06564053357 0) (-0.002096506824 0.0656394982 0) (-0.002095613574 0.06579615416 0) (-0.002098309904 0.06532590967 0) (-0.002262320329 0.0653269293 0) (-0.001690347214 0.06524502981 0) (-0.001614428649 0.06234553678 0) (-0.001698305671 0.06234622045 0) (-0.001693069796 0.06226718109 0) (-0.001605764143 0.06226629768 0) (-0.001949336501 0.06234809229 0) (-0.001949210167 0.06226943971 0) (-0.001865567101 0.06226883057 0) (-0.001866610565 0.0623475481 0) (-0.001950863706 0.06203438523 0) (-0.001867526385 0.06203379288 0) (-0.001866111974 0.06211201186 0) (-0.001949973292 0.06211265172 0) (-0.001355162673 0.06061106901 0) (-0.001196057145 0.05951213699 0) (-0.001193773548 0.05982570746 0) (-0.0001947580386 0.05950484496 0) (-0.0001924744458 0.05981841543 0) (-0.000526241295 0.05982084611 0) (-0.0005285248919 0.05950727564 0) (0.001365879994 0.07361879415 0) (0.001281682663 0.07361949471 0) (0.001278153443 0.07354008223 0) (0.001363993053 0.07353969014 0) (0.001041204513 0.07362260057 0) (0.001001204864 0.073522276 0) (0.001104317609 0.07354053256 0) (0.001116125667 0.073620948 0) (0.001095897952 0.07338119317 0) (0.001016059801 0.07338087156 0) (0.001451756745 0.07393490191 0) (0.001452057339 0.07401417769 0) (0.002031207212 0.07392974986 0) (0.002032082152 0.0740878916 0) (0.001866560428 0.07408938832 0) (0.001865728651 0.07393117345 0) (0.00203399406 0.07456442374 0) (0.001868399599 0.07456593265 0) (0.001867854325 0.0744070588 0) (0.002033419424 0.07440551806 0) (0.002028449086 0.07345501976 0) (0.001862984771 0.07345639955 0) (0.001864922715 0.07377250686 0) (0.002030386818 0.07377109795 0) (0.001451555981 0.07385533411 0) (0.001352033845 0.07108752029 0) (0.001271360846 0.07108796214 0) (0.001268561704 0.07100919978 0) (0.001350207283 0.07100870714 0) (0.001038034752 0.07108894766 0) (0.001032597532 0.07101053951 0) (0.001106341845 0.07101008985 0) (0.001111375555 0.07108869029 0) (0.00109524054 0.07085272172 0) (0.001020576474 0.07085307612 0) (0.001346151087 0.07171973317 0) (0.001341737066 0.0717988248 0) (0.001250017248 0.07179958015 0) (0.001258194485 0.07172043198 0) (-0.001747214384 0.06892835184 0) (-0.0017484003 0.06877150867 0) (-0.001583493241 0.06877040968 0) (-0.002241923698 0.06893167786 0) (-0.002242905713 0.0687748332 0) (-0.002078022063 0.06877371981 0) (-0.00207701092 0.06893056426 0) (-0.002079999915 0.06846013255 0) (-0.002244810743 0.06846124541 0) (-0.001266101044 0.06829850412 0) (-0.001263064482 0.06837666758 0) (-0.001343297743 0.06837709167 0) (-0.001345389291 0.06829889219 0) (-0.001253958634 0.06861123084 0) (-0.001336889609 0.06861182022 0) (-0.001339027049 0.06853351912 0) (-0.001256985531 0.06853299447 0) (-0.001584950372 0.06861352478 0) (-0.001585666755 0.06853515507 0) (-0.001503446202 0.06853461456 0) (-0.001502496895 0.06861296801 0) (0.001003655761 0.06943342027 0) (0.001085135441 0.06943314733 0) (0.0009855296389 0.06920004422 0) (0.001074590635 0.06919859455 0) (0.001077865551 0.06927688737 0) (0.0009910419002 0.06927795662 0) (0.001330472051 0.0691961776 0) (0.001331392576 0.06927477887 0) (0.001248152731 0.06927535594 0) (0.001246869765 0.06919678644 0) (0.001492495589 0.06888092991 0) (0.001494135227 0.06903807564 0) (0.001328888259 0.06903890037 0) (0.001987138233 0.06887844916 0) (0.001988864196 0.06903544861 0) (0.001823935156 0.06903632929 0) (0.00182222312 0.06887924234 0) (0.001994090128 0.06950704381 0) (0.001829132277 0.06950796838 0) (0.001827433321 0.06935067743 0) (0.001992391172 0.06934975285 0) (0.001423497365 0.07014048533 0) (0.001424029397 0.07021954094 0) (0.00200089571 0.07013754755 0) (0.00200249558 0.07029523249 0) (0.001837407605 0.0702962891 0) (0.001835895333 0.07013863266 0) (0.001840411855 0.07061081562 0) (0.002005543629 0.07060977325 0) (0.001995848827 0.06966453824 0) (0.001830847177 0.06966544857 0) (0.001834221369 0.06998077348 0) (0.001999252042 0.06997984837 0) (0.001422689247 0.07006151911 0) (-0.001682458618 0.06642024671 0) (-0.001682461879 0.06634179898 0) (-0.00225654534 0.06642391775 0) (-0.002257322711 0.06626717356 0) (-0.002093050658 0.06626607919 0) (-0.002092214923 0.06642283753 0) (-0.002094735207 0.06595276653 0) (-0.002259036708 0.06595381742 0) (-0.002253968389 0.06689376986 0) (-0.002089506893 0.06689268868 0) (-0.002091320824 0.06657961 0) (-0.002255695041 0.06658067598 0) (-0.001682120589 0.06649866287 0) (-0.001598489722 0.0667331786 0) (-0.001516919983 0.06673267196 0) (-0.001515451182 0.06681075945 0) (-0.001597539305 0.06681128444 0) (-0.001273858497 0.06673129511 0) (-0.001269614897 0.06680920217 0) (-0.001351274935 0.06680970948 0) (-0.001354598492 0.06673173745 0) (-0.001257681529 0.0670434244 0) (-0.001341729272 0.06704406562 0) (-0.00134488423 0.06696584475 0) (-0.001261635858 0.06696523849 0) (-0.001258357415 0.06578941592 0) (-0.001253418141 0.06586744901 0) (-0.001329785995 0.06586804886 0) (-0.001334201059 0.06578999739 0) (-0.001238938442 0.06609691903 0) (-0.001326129993 0.06610287028 0) (-0.001323564208 0.06602438928 0) (-0.001243598225 0.0660230641 0) (-0.001595797117 0.06610591197 0) (-0.001595198234 0.06602754725 0) (-0.001506222474 0.06602659341 0) (-0.001507734224 0.06610500847 0) (-0.001589261282 0.06798677524 0) (-0.001507154225 0.06798625011 0) (-0.001507816767 0.06806467356 0) (-0.001589351551 0.06806517995 0) (-0.001269113148 0.06798509917 0) (-0.001272054163 0.06806365573 0) (-0.001348564592 0.06806387792 0) (-0.001345757464 0.0679853369 0) (-0.001347284857 0.06822060389 0) (-0.001268969084 0.06822028116 0) (-0.001253727095 0.06712162488 0) (-0.001338579928 0.06712231565 0) (-0.001241843189 0.06735625529 0) (-0.001329150723 0.06735708046 0) (-0.001332281133 0.06727883029 0) (-0.001245806362 0.06727805488 0) (-0.001590943808 0.06735954046 0) (-0.00159187585 0.06728115776 0) (-0.001506813291 0.06728046546 0) (-0.001505399381 0.06735881553 0) (0.001129417146 0.06621166048 0) (0.001293748893 0.06621116285 0) (0.0007198527368 0.06629140136 0) (0.0007945349413 0.06574173777 0) (0.0007968228766 0.06589870401 0) (0.0006329726795 0.06589912531 0) (-0.0003508414016 0.06416376236 0) (-0.0002933711868 0.06417432594 0) (-0.000317484402 0.06427415611 0) (-5.061993884e-05 0.06417520894 0) (-4.940962269e-05 0.06425382266 0) (-0.0001330653342 0.06425431536 0) (-0.0001336557662 0.06417558061 0) (-0.001608304116 0.0642259224 0) (-0.001523243225 0.06422520098 0) (-0.001519318584 0.06430311037 0) (-0.001605667784 0.06430392856 0) (-0.001614526159 0.06359934699 0) (-0.001606774915 0.06352030387 0) (-0.001521040118 0.06351951929 0) (-0.001534954727 0.06359904424 0) (-0.001604267655 0.06547958597 0) (-0.001520479158 0.06547894665 0) (-0.001517897611 0.06555722995 0) (-0.001602636842 0.06555791989 0) (-0.00127909043 0.06547727611 0) (-0.001273908857 0.06555538026 0) (-0.001348381388 0.06555583522 0) (-0.001353139244 0.06547771342 0) (-0.001338873488 0.06571200605 0) (-0.00126353459 0.06571151565 0) (-0.001320342087 0.06485423295 0) (-0.001384937593 0.06485314491 0) (-0.001375835597 0.06477417935 0) (-0.001325514145 0.06478243543 0) (-0.001611909269 0.06485328307 0) (-0.001608883675 0.06477474046 0) (-0.001527051672 0.06477424647 0) (-0.001532914585 0.06485298452 0) (-5.479997715e-05 0.06480622964 0) (-0.0001576828354 0.06482617572 0) (-0.0001296777318 0.06472550156 0) (-5.003963926e-05 0.06472607223 0) (-0.001603293615 0.06130413678 0) (-0.001495105406 0.06128732726 0) (-0.002184652417 0.06124384707 0) (-0.0020174828 0.06124262965 0) (-0.002031393167 0.06131453701 0) (-0.002188208361 0.06077356514 0) (-0.002021285278 0.06077249517 0) (-0.002020056624 0.06092920694 0) (-0.00218702234 0.06093042288 0) (-0.001951928467 0.06195617827 0) (-0.001869260683 0.06195564906 0) (-0.001955052475 0.06172120733 0) (-0.001874393722 0.06172080927 0) (-0.001873007378 0.0617991741 0) (-0.00195421947 0.06179959075 0) (-0.001637714751 0.06172022172 0) (-0.00163234604 0.06179822255 0) (-0.001711354575 0.06179841924 0) (-0.001715142657 0.06172026125 0) (-0.0006726348237 0.06190731743 0) (-0.0006170885996 0.06136460968 0) (-0.0006087374633 0.06151974025 0) (-0.0007648460256 0.06151679888 0) (-0.0001470426113 0.06137343581 0) (-0.0001386594936 0.06152783789 0) (-0.000296640376 0.06152558015 0) (-0.0003034249295 0.06137058383 0) (-0.001568523197 0.06172021304 0) (-0.001562210928 0.06179817787 0) (-0.001084402855 0.06167106944 0) (-0.001080611472 0.06174828068 0) (-0.001158242746 0.06175139493 0) (-0.001181520954 0.06168896355 0) (-0.0008532636789 0.06076398897 0) (-0.0008522699065 0.06092084811 0) (-0.001019578676 0.06092235785 0) (-0.001020308438 0.06076535114 0) (-0.0008603475493 0.06128547197 0) (-0.0007813996186 0.06128635354 0) (-0.00161719993 0.06297260008 0) (-0.00153545947 0.06297213589 0) (-0.001529635185 0.06305029362 0) (-0.001612682781 0.06305086929 0) (-0.001522408601 0.06226060741 0) (-0.001516625695 0.06232628313 0) (0.0006916401712 0.07554080954 0) (0.0006050656874 0.075541893 0) (0.0006049907183 0.07545979869 0) (0.0006904574869 0.07545781006 0) (0.0004300211271 0.07579676783 0) (0.0004319807202 0.07588204801 0) (0.0006926350034 0.07562341422 0) (0.0006056067191 0.07562378438 0) (0.0006601303837 0.06794066648 0) (0.000591879777 0.06793908071 0) (0.0005770685482 0.06786388689 0) (0.0006509550124 0.06786375663 0) (0.0006605768249 0.06801916924 0) (0.0006057335504 0.06800940219 0) (0.0002906042308 0.06511603415 0) (0.0002912211811 0.06519455023 0) (0.0002058180847 0.06519568197 0) (0.0002054307208 0.06511709138 0) (0.0002064082694 0.06535292274 0) (0.0002921038971 0.06535175974 0) (-1.511160446e-05 0.06534313148 0) (4.229382117e-05 0.06535325857 0) (1.438066554e-05 0.0654535825 0) (-0.0009032720315 0.07362952247 0) (-0.0008372776342 0.07363049838 0) (-0.0008314089216 0.07370795666 0) (-0.0009024388924 0.07370812438 0) (-0.0008939045193 0.07355001607 0) (-0.000842610911 0.07355816312 0) (-0.0008652935215 0.0755403153 0) (-0.0007820957563 0.07554056001 0) (-0.0007798352781 0.07562355601 0) (-0.0008632400341 0.07562308851 0) (-0.0005359451874 0.07554075846 0) (-0.0005087227432 0.0756077899 0) (-0.0006118944292 0.0756260398 0) (-0.0006167627947 0.07554414352 0) (-0.0006008521643 0.07588230084 0) (-0.0006062424449 0.07579533815 0) (-0.0006212922595 0.07546238315 0) (-0.0005610230007 0.07547221556 0) (-0.0008668667108 0.07545729391 0) (-0.0007832755238 0.07545796105 0) (0.0003021254777 0.06637306602 0) (0.0003009005861 0.06629467088 0) (0.0003828612082 0.06629443812 0) (0.0003812188889 0.06637352414 0) (0.000384464879 0.06605784515 0) (0.0003825302405 0.06613699155 0) (0.0002970829207 0.06613805078 0) (0.0006348251407 0.06605609471 0) (0.000635582333 0.06613466804 0) (0.0005522056887 0.06613526067 0) (0.0005519514683 0.06605655259 0) (0.0001951156513 0.06615768433 0) (0.0002451753495 0.06636319778 0) (0.0002285723158 0.06629416349 0) (-0.0003865202999 0.06386253871 0) (-0.0003876520858 0.06378412833 0) (-0.0003061190698 0.06378421913 0) (-0.0003073352094 0.06386334573 0) (-0.0003901737658 0.06354906561 0) (-0.000307919566 0.06354884528 0) (-0.0003062182381 0.06362690195 0) (-0.0003872717829 0.06362674941 0) (-6.206470708e-05 0.06354843852 0) (-6.052224931e-05 0.06362654004 0) (-0.0001419476473 0.06362650672 0) (-0.0001435319444 0.06354842007 0) (-0.0004637851699 0.06362516555 0) (-0.0004706677372 0.06354869052 0) (-0.0004460453769 0.06385289314 0) (-0.0004664873218 0.06378792135 0) (-0.0003972999238 0.06323614214 0) (-0.0003973872232 0.06331495466 0) (-0.0004809595601 0.06331547589 0) (-0.0004802876223 0.06323654259 0) (-0.0004801889611 0.06347289013 0) (-0.0003950991819 0.06347193546 0) (-0.0007398163888 0.06293872609 0) (-0.0006430242133 0.06292087805 0) (-0.000640986023 0.06299915074 0) (-0.0007186444105 0.06300254193 0) (-0.0004006693642 0.0629220698 0) (-0.0003991635928 0.06300043376 0) (-0.0004803450791 0.06300025302 0) (-0.0004816126316 0.06292179993 0) (-0.0004804685967 0.06315789225 0) (-0.0003976640908 0.06315753683 0) (-0.0004101557307 0.06261025591 0) (-0.0004075784267 0.06268795663 0) (-0.0004889366435 0.06268790827 0) (-0.0004914880499 0.06261016365 0) (-0.0004834168661 0.06284345271 0) (-0.0004026217309 0.06284378192 0) (-0.000720028322 0.0628403111 0) (-0.0006443355649 0.06284241071 0) (0.0007496170834 0.0748724701 0) (0.0007777910821 0.0749749636 0) (0.0007163529729 0.0749850313 0) (0.001032525725 0.07489207833 0) (0.001034124866 0.07497246325 0) (0.0009468848182 0.07497255531 0) (0.0009440592775 0.07489196812 0) (0.001037091242 0.0752141892 0) (0.0009515140798 0.07521441916 0) (0.0009504018583 0.07513389524 0) (0.001036404021 0.07513382385 0) (0.001026215005 0.07457252617 0) (0.001029227637 0.07465260366 0) (0.0009428872424 0.07465323099 0) (0.0009367884836 0.07457218408 0) (0.0009432041137 0.07481194191 0) (0.001031541649 0.07481215065 0) (0.001037515503 0.07529424622 0) (0.00095194995 0.07529507035 0) (0.001037274064 0.07553609311 0) (0.000952943886 0.07553695194 0) (0.0009524087488 0.07545666997 0) (0.001036930024 0.07545605152 0) (0.0007786896662 0.07545695194 0) (0.0007799462424 0.07553889782 0) (0.001062883918 0.07267189362 0) (0.001065448132 0.07259259698 0) (0.001135603654 0.07259195498 0) (0.00113455204 0.07267115322 0) (0.001071866119 0.07233487865 0) (0.001119848685 0.07243357205 0) (0.001069534729 0.07244174537 0) (0.001356809871 0.07243133659 0) (0.001273312979 0.07243201748 0) (0.00128512743 0.07290671076 0) (0.001365888501 0.0729059624 0) (0.001051722145 0.07290902229 0) (0.001125087332 0.07290831322 0) (0.00113203149 0.07275024563 0) (0.00105958812 0.07275093342 0) (0.001020799141 0.07014145171 0) (0.001013043807 0.07006313326 0) (0.001093785286 0.07006289482 0) (0.001098437941 0.07014157086 0) (0.00108180571 0.06990672742 0) (0.0009958607911 0.06990765919 0) (0.001337381486 0.06990434183 0) (0.001253269236 0.06990492525 0) (0.0009196529324 0.06990822874 0) (0.0009092785969 0.06983128392 0) (0.0009496881891 0.07014129958 0) (0.0009396273465 0.07006320184 0) (0.0009273552513 0.06959066753 0) (0.0009304992043 0.06951117732 0) (0.0008989629746 0.06975760126 0) (0.001024724773 0.07022049717 0) (0.0009584560354 0.07021945044 0) (0.001254110049 0.07037878084 0) (0.001339857529 0.07037793791 0) (0.0009780219247 0.07040052721 0) (0.001080502043 0.07038071515 0) (0.001099249743 0.07022084291 0) (0.000639746313 0.06731444181 0) (0.0005514786779 0.06731603136 0) (0.0005533178281 0.06723697304 0) (0.0006402936338 0.06723559682 0) (0.0006426575443 0.06739279554 0) (0.000557678956 0.06739361831 0) (0.0007269709854 0.06731323855 0) (0.0007283547914 0.06739205492 0) (0.0009798199194 0.06731101847 0) (0.0009806480037 0.06738992628 0) (0.0008976480458 0.06739044334 0) (0.0008967787571 0.06731147757 0) (0.0009828126529 0.06762576355 0) (0.0008985779847 0.06762653721 0) (0.0008984879457 0.06754797359 0) (0.0009820084589 0.06754733622 0) (0.0007381518586 0.06794113241 0) (0.0007368413659 0.06801998296 0) (0.0009868076179 0.06793972938 0) (0.0009871775045 0.06801832009 0) (0.0009031951954 0.06801894626 0) (0.0009033495194 0.06794033717 0) (0.0009891641584 0.06825491605 0) (0.0009042757345 0.06825551969 0) (0.0009024919391 0.06817677906 0) (0.0009879481605 0.06817614215 0) (0.0009836479623 0.06770426348 0) (0.0008991339768 0.06770508287 0) (0.0009022004684 0.06786195605 0) (0.0009859189507 0.06786130267 0) (0.0007336833595 0.0678633435 0) (3.231695547e-05 0.06480469217 0) (3.257856406e-05 0.06488341475 0) (-5.436653613e-05 0.06488490728 0) (0.0002872651349 0.06480172854 0) (0.0002883274361 0.06488019769 0) (0.0002044706986 0.06488086664 0) (0.0002037835212 0.06480230737 0) (0.0002055678572 0.0650383222 0) (0.0002900827688 0.06503742998 0) (-0.001949487908 0.0626613018 0) (-0.001949854111 0.06258301693 0) (-0.001869428176 0.0625826497 0) (-0.001869076431 0.06266094924 0) (-0.001867903637 0.0624259907 0) (-0.001949436039 0.06242642425 0) (-0.001627125176 0.06242492178 0) (-0.001705261306 0.06242511212 0) (-0.001700148489 0.06297317503 0) (-0.001703137017 0.0628948073 0) (-0.001621641238 0.06289434489 0) (-0.001946928755 0.06297471005 0) (-0.001947602613 0.06289617981 0) (-0.001866332475 0.06289573361 0) (-0.001865250922 0.06297424631 0) (-0.001868317839 0.06273911473 0) (-0.001948976592 0.06273951279 0) (-0.0008602771373 0.07425693704 0) (-0.0007829166305 0.07425624257 0) (-0.0007746419647 0.07433387267 0) (-0.0008549704662 0.07433541897 0) (-0.0008668804315 0.0741786102 0) (-0.0007907457127 0.07417799748 0) (-0.0009487173251 0.07425803263 0) (-0.0009533573733 0.07417948758 0) (-0.001211055138 0.07426109376 0) (-0.001212212589 0.07418215922 0) (-0.001127175319 0.07418139428 0) (-0.001125377567 0.07426025133 0) (-0.001216093293 0.07394588293 0) (-0.001133444548 0.0739453393 0) (-0.001131359879 0.07402419425 0) (-0.001214794569 0.07402481644 0) (-0.001209418701 0.07457739991 0) (-0.001209475288 0.07449842968 0) (-0.0011243905 0.07449778965 0) (-0.001125237206 0.07457712476 0) (-0.001124156641 0.07433930193 0) (-0.001210152959 0.07434017581 0) (-0.000945542316 0.07433680682 0) (-0.0009771295016 0.07362943405 0) (-0.0009676033441 0.07354991192 0) (-0.001218180104 0.07363053408 0) (-0.001216964916 0.07355159683 0) (-0.00113268123 0.0735509539 0) (-0.001135799131 0.07363002153 0) (-0.00121337758 0.07331498941 0) (-0.001123628665 0.07331400081 0) (-0.00112513268 0.07339267799 0) (-0.001213926598 0.07339360138 0) (-0.001217285621 0.0738667593 0) (-0.001135316819 0.07386624975 0) (-0.001137055127 0.07370875516 0) (-0.001218581491 0.0737092178 0) (-0.0009789591216 0.07370820099 0) (-0.0008652858784 0.07489316498 0) (-0.0009525485845 0.07489414567 0) (-0.0009557249518 0.07481458497 0) (-0.0008709398393 0.07481399519 0) (-0.001206881097 0.07489524922 0) (-0.001207786751 0.07481548991 0) (-0.001124467898 0.07481496179 0) (-0.001123266407 0.0748947437 0) (-0.001125727966 0.07465633639 0) (-0.001209113908 0.07465665235 0) (-0.0007776064449 0.07489180693 0) (-0.0007724838567 0.07497081164 0) (-0.0008622577566 0.07497256946 0) (-0.0007868805831 0.07481333496 0) (0.001026200927 0.07393759323 0) (0.001033858677 0.07385951209 0) (0.001117237704 0.07385884662 0) (0.001113052074 0.07393749964 0) (0.001122349957 0.07370063215 0) (0.001046539317 0.07370214555 0) (0.001367445247 0.07369772572 0) (0.001284304178 0.0736986662 0) (0.0009794328426 0.07370426555 0) (0.0009881334354 0.07363238156 0) (0.0009473342175 0.07393726454 0) (0.0009587262265 0.07386035055 0) (0.001038322169 0.07425741332 0) (0.001034398563 0.07433584595 0) (0.0009516770529 0.07433679794 0) (0.0009605842982 0.07425929031 0) (0.0009349123377 0.07449216239 0) (0.001025427618 0.07449280679 0) (0.001023086307 0.07401631127 0) (0.0009359052642 0.07401110556 0) (0.0009602910644 0.07417982513 0) (0.001036130641 0.07417768523 0) (0.001370064987 0.07425345348 0) (0.00128678958 0.07425414732 0) (0.001286070508 0.07417440851 0) (0.001369542216 0.07417366954 0) (0.001118073114 0.07417636022 0) (0.001119852335 0.07425587284 0) (0.001111608438 0.07401646768 0) (-0.000937069217 0.07174508537 0) (-0.001007252575 0.07174530518 0) (-0.001005915124 0.07166655639 0) (-0.0009406398382 0.07166718797 0) (-0.001236337029 0.07174612873 0) (-0.00123445164 0.07166741964 0) (-0.001154760278 0.07166698493 0) (-0.001157941576 0.07174574716 0) (-0.001222155953 0.07143159358 0) (-0.00113104204 0.07143063873 0) (-0.001138395417 0.07150931482 0) (-0.001226064359 0.07151011349 0) (-0.00123365159 0.0720594778 0) (-0.001234865545 0.07198118453 0) (-0.001155642943 0.07198078237 0) (-0.001153836538 0.07205902762 0) (-0.001158287223 0.07182428482 0) (-0.001236580832 0.07182465108 0) (-0.0009332956701 0.07182344738 0) (-0.001005137589 0.07182372297 0) (-0.001222526933 0.07111805287 0) (-0.001224301826 0.07103973457 0) (-0.001134138754 0.07103881578 0) (-0.00113160662 0.071117114 0) (-0.001230051624 0.07080520513 0) (-0.001142199383 0.070804376 0) (-0.00113944206 0.07088239585 0) (-0.001228083583 0.0708832453 0) (-0.001220160985 0.0713531313 0) (-0.001127745338 0.07135212328 0) (-0.00112932208 0.07119541403 0) (-0.001220984963 0.07119638744 0) (-0.0008766491567 0.07299762464 0) (-0.0009531262438 0.07299822528 0) (-0.0009569925783 0.07291992221 0) (-0.0008807731741 0.072919338 0) (-0.001217410653 0.07300079082 0) (-0.001218844133 0.0729223535 0) (-0.001131765153 0.07292154456 0) (-0.001129589104 0.07299994734 0) (-0.001223086981 0.07268674984 0) (-0.001138148218 0.07268605844 0) (-0.001136072846 0.07276463673 0) (-0.001221695921 0.07276536224 0) (-0.001213724878 0.07323650049 0) (-0.00112397305 0.07323551187 0) (-0.001127436965 0.07307846681 0) (-0.001215996609 0.07307935936 0) (-0.0008723500489 0.07307595369 0) (-0.0009491677297 0.07307658595 0) (-0.0009079565188 0.07237127561 0) (-0.0009821803173 0.07237168506 0) (-0.0009857164652 0.07229332132 0) (-0.0009118525124 0.07229289992 0) (-0.00122844 0.07237330368 0) (-0.001229773198 0.07229483651 0) (-0.001148103072 0.07229431456 0) (-0.001146117603 0.07237274786 0) (-0.001151963957 0.07213735978 0) (-0.00123238478 0.07213782893 0) (-0.001224445256 0.07260823915 0) (-0.001140168854 0.07260759627 0) (-0.00114413195 0.07245100637 0) (-0.001227109637 0.07245158153 0) (-0.0009041091465 0.07244937491 0) (-0.0009786571996 0.07244985955 0) (0.001056187505 0.07140498059 0) (0.001052125229 0.07132557199 0) (0.001124251578 0.0713253526 0) (0.001127525787 0.07140454846 0) (0.001116195833 0.07116758359 0) (0.001043438559 0.0711679678 0) (0.001353774294 0.07116650884 0) (0.001273989403 0.07116690053 0) (0.001267989397 0.07164121377 0) (0.001351182743 0.0716406516 0) (0.001064941562 0.07163463796 0) (0.001115100812 0.07164202132 0) (0.001068142688 0.07174099831 0) (0.001129275399 0.0714835952 0) (0.001059330713 0.07148398806 0) (-0.001229470039 0.0692372654 0) (-0.001232391968 0.06915904284 0) (-0.001144436426 0.06915819838 0) (-0.001140702019 0.0692363859 0) (-0.001241625982 0.06892448052 0) (-0.001156069903 0.06892375549 0) (-0.001152143246 0.06900194161 0) (-0.001238507435 0.06900270165 0) (-0.001227140628 0.06955112684 0) (-0.001224315308 0.06947248373 0) (-0.001132209061 0.06947139057 0) (-0.001135293521 0.06955005013 0) (-0.001137089529 0.06931463256 0) (-0.001226787893 0.06931556253 0) (-0.001175306666 0.06853247247 0) (-0.001171527004 0.06861067422 0) (-0.001186822885 0.06829813068 0) (-0.001182927345 0.06837624419 0) (-0.001244750779 0.06884620117 0) (-0.001160001246 0.06884552572 0) (-0.001167738179 0.06868893416 0) (-0.001250922573 0.06868952539 0) (-0.001238492914 0.07049249516 0) (-0.001240665096 0.07041422344 0) (-0.001157278257 0.07041363073 0) (-0.001154193314 0.07049183754 0) (-0.001247201927 0.070179423 0) (-0.001166585835 0.07017896699 0) (-0.001163481853 0.07025718823 0) (-0.001245029745 0.07025769472 0) (-0.001232096855 0.07072716553 0) (-0.001145106612 0.07072637181 0) (-0.001151128761 0.0705700445 0) (-0.001236333946 0.0705707524 0) (-0.00125248824 0.06986613657 0) (-0.001249656459 0.0697875808 0) (-0.001172617555 0.06978732563 0) (-0.001175587592 0.06986589697 0) (-0.001146445753 0.06962908888 0) (-0.001234073597 0.06962993095 0) (-0.001249313045 0.07010113627 0) (-0.001169638949 0.07010073082 0) (-0.00117481597 0.06994425171 0) (-0.001252540642 0.06994454101 0) (0.000989569231 0.06856973823 0) (0.0009890527075 0.06864861214 0) (0.000901489216 0.06864989069 0) (0.0009033204477 0.06857074504 0) (0.0009928332002 0.06888392786 0) (0.0009104409714 0.06888429485 0) (0.0009078319647 0.06880604088 0) (0.0009921398789 0.06880532494 0) (0.0009905950437 0.06833339708 0) (0.0009068669743 0.06833393401 0) (0.0009067823277 0.06849131078 0) (0.0009908061595 0.06849078626 0) (0.0006944233086 0.06848117607 0) (0.0007488066394 0.06849078626 0) (0.0007143169164 0.0685916533 0) (0.000904649248 0.06927900817 0) (0.0008959962558 0.06920162842 0) (0.0009240007529 0.06943344689 0) (0.0009903993226 0.0689631216 0) (0.0009067664518 0.06896373066 0) (0.0008923921081 0.06912352735 0) (0.0009834558578 0.0691216844 0) (-0.001289522037 0.06641866685 0) (-0.001286452691 0.06649693204 0) (-0.001363758228 0.06649717459 0) (-0.001364846215 0.06641877845 0) (-0.001357943288 0.06665364905 0) (-0.001278178681 0.06665327207 0) (-0.001599432461 0.06665492706 0) (-0.001518366331 0.06665446778 0) (-0.00120525953 0.06665291582 0) (-0.00120050231 0.06673095023 0) (-0.001219533735 0.06641846303 0) (-0.001214787 0.06649665773 0) (-0.00118728588 0.06696475529 0) (-0.00118300531 0.06704293883 0) (-0.001195826891 0.0668087522 0) (-0.001289295287 0.06634020288 0) (-0.001224194533 0.06634106877 0) (-0.001511247829 0.06618354007 0) (-0.001597279844 0.06618431226 0) (-0.001234964485 0.06616220011 0) (-0.001336838331 0.0661818621 0) (-0.001362209913 0.06634018041 0) (-0.001228975127 0.06766922434 0) (-0.001232026513 0.0677478254 0) (-0.001323415055 0.06774886964 0) (-0.001320630092 0.06767028508 0) (-0.001339029641 0.06790656342 0) (-0.001258583846 0.06790612322 0) (-0.001588753122 0.06790835291 0) (-0.001505692524 0.06790776258 0) (-0.001185644884 0.06790608725 0) (-0.001196270205 0.06798507846 0) (-0.001148610187 0.06766788169 0) (-0.001144511421 0.06774190093 0) (-0.001190663506 0.0682199585 0) (-0.001196893424 0.06806350163 0) (-0.001170142998 0.06727751842 0) (-0.001165831843 0.06735570174 0) (-0.00117872474 0.06712112237 0) (-0.001230725262 0.06759090585 0) (-0.001152898377 0.06759025168 0) (-0.001161520688 0.06743388505 0) (-0.001237910601 0.06743445593 0) (-0.001504040921 0.06743715143 0) (-0.001590038088 0.0674379088 0) (-0.001326096047 0.06743533119 0) (-0.001321125203 0.06759189919 0) (0.0002717350606 0.06647362647 0) (0.000640026034 0.06668505168 0) (0.0005552547898 0.06668594577 0) (0.0005534716878 0.06660770034 0) (0.0006390356284 0.06660665483 0) (0.0003213655123 0.06668499823 0) (0.0003044178641 0.06661104343 0) (0.0003815153071 0.06660982654 0) (0.0003910150106 0.06668647186 0) (0.0003754122338 0.06645358721 0) (0.0003932951527 0.06676456801 0) (0.0003373203057 0.06675461984 0) (0.0006400518837 0.0667636012 0) (0.0005548124099 0.06676460065 0) (-0.0004122000266 0.06396274443 0) (-0.0001352666131 0.06409718828 0) (-5.21438508e-05 0.06409671402 0) (-0.0003712108667 0.0640963431 0) (-0.000299385353 0.0640973348 0) (-0.0003103073537 0.06394306773 0) (-0.001611087018 0.06414799013 0) (-0.001527374149 0.06414736592 0) (-0.001543889523 0.0636781688 0) (-0.001620301976 0.06367824462 0) (-0.001299632073 0.06516481447 0) (-0.001294525916 0.06524296286 0) (-0.001367321376 0.06524330365 0) (-0.001371989252 0.0651651375 0) (-0.001357876817 0.0653995769 0) (-0.001284235592 0.06539917169 0) (-0.001605892642 0.06540125201 0) (-0.001523054773 0.06540067787 0) (-0.001535047731 0.06493127303 0) (-0.001613235868 0.06493152201 0) (-0.001314802296 0.06493112559 0) (-0.001384345777 0.06493120966 0) (-0.001376556315 0.06508701431 0) (-0.001304698799 0.06508668035 0) (-0.0001393861154 0.0648912214 0) (-0.001716732796 0.06164191247 0) (-0.001640730605 0.0616421018 0) (-0.001954895316 0.06164278756 0) (-0.001874498827 0.06164237685 0) (-0.001918839853 0.06139571897 0) (-0.001835915744 0.06139438682 0) (-0.001859176797 0.06148231108 0) (-0.00194064829 0.06148310832 0) (-0.001106379448 0.06136496864 0) (-0.00109568909 0.06143950792 0) (-0.001189197746 0.06144383018 0) (-0.001223965435 0.06137792859 0) (-0.001164083325 0.0615915998 0) (-0.001085514117 0.06159287739 0) (-0.001574345968 0.06164246313 0) (-0.001071493374 0.06198712599 0) (-0.001094112568 0.06192378678 0) (-0.0009971471827 0.06190592291 0) (-0.0009940686245 0.06198385302 0) (-0.001002170594 0.06167093666 0) (-0.0009997019923 0.06174871101 0) (-0.0007598696045 0.06167233272 0) (-0.0007570625511 0.06175038134 0) (-0.0008371947756 0.06174947927 0) (-0.0008394111528 0.06167133896 0) (-0.001541148307 0.06289397717 0) (-0.000777212075 0.06282916284 0) (-0.0007452860208 0.06229766747 0) (-0.0008277005488 0.06229777244 0) (-0.0008284138359 0.06221922793 0) (-0.0007461391256 0.06221912397 0) (-0.000989707987 0.06206103099 0) (-0.001048761264 0.06205077024 0) (-0.000745070092 0.06237631756 0) (-0.0008282889394 0.06237677795 0) (-0.001556233481 0.0624253668 0) (0.003032193015 0.07614343602 0) (0.005306949357 0.07563580067 -3.550770789e-13) (0.004696472876 0.07643744741 -3.58796326e-13) (0.004627479591 0.07712548814 -3.532729664e-13) (0.004672053355 0.07726635222 -3.56770169e-13) (0.0001272237301 0.06558855136 0) (0.0001388716674 0.06566437995 0) (6.973530763e-05 0.06566256759 0) (5.07034312e-05 0.0655896184 0) (0.0001436337016 0.06574187542 0) (8.75353188e-05 0.06573156403 0) (0.002895402026 0.06354207744 0) (0.005047059539 0.06164308695 -3.464173393e-13) (0.004525208662 0.06336102867 -3.56048524e-13) (0.004486346484 0.06235973539 -3.538835891e-13) (0.004572421529 0.06497742615 -3.581301922e-13) (0.0001160249124 0.06584199323 0) (-0.0001453128601 0.06347033485 0) (-6.406742367e-05 0.06347045687 0) (-0.0003106661615 0.0634710584 0) (-0.000314388066 0.06323572768 0) (-0.0003135640898 0.06331427139 0) (0.001448307164 0.0655832272 0) (0.001593250545 0.0644860296 0) (0.001599187142 0.06479920934 0) (0.001270264007 0.06480035214 0) (0.002583652058 0.0644823417 0) (0.002589384648 0.06479550836 0) (0.002259420586 0.064796717 0) (0.002253702879 0.06448359393 0) (-7.972306797e-05 0.07624952923 0) (-0.0001818812503 0.07624834769 0) (-0.0001941936853 0.07616843405 0) (-8.478321205e-05 0.076171749 0) (-0.0004812752265 0.07622812689 0) (-0.0004881493681 0.07614620881 0) (-0.0003885141559 0.07615755041 0) (-0.0003804798373 0.0762385774 0) (-0.0004144980951 0.07598758347 0) (-0.0005038952858 0.07597886884 0) (0.0003417621863 0.07597455117 0) (0.0002486639966 0.07598423638 0) (0.0003209479047 0.07622945215 0) (0.0002272715547 0.07623514766 0) (0.0002288885513 0.07615478447 0) (0.0003244560667 0.07614777306 0) (2.849510032e-05 0.07616807365 0) (2.8806557e-05 0.07624662109 0) (0.002699302663 0.07709882282 0) (0.002363251302 0.07710815798 0) (0.00236528247 0.07678906649 0) (0.002699473899 0.07678233601 0) (0.001691257251 0.07680975061 0) (0.001683025283 0.07713338351 0) (0.001534141168 0.07600946247 0) (0.001371803235 0.07488993961 0) (0.001288412564 0.07489080617 0) (0.001288106569 0.07481158869 0) (0.001371521268 0.07481062146 0) (0.001118533523 0.07481238084 0) (0.001119292332 0.07489217616 0) (0.001115033637 0.0745723964 0) (0.001116535786 0.07465246305 0) (-0.001738939718 0.07018258172 0) (-0.001740037399 0.07002585443 0) (-0.001575328415 0.07002475688 0) (-0.002234027599 0.07018592506 0) (-0.00223502333 0.07002919702 0) (-0.002069935779 0.07002808215 0) (-0.002068910919 0.07018480998 0) (-0.00223801137 0.06955889639 0) (-0.002072967512 0.06955778184 0) (-0.002071956581 0.06971459716 0) (-0.002237015003 0.06971571182 0) (-0.002230003953 0.07081242909 0) (-0.002231012233 0.07065597788 0) (-0.002065822837 0.0706548477 0) (-0.002064799993 0.07081129881 0) (-0.002067886166 0.07034152324 0) (-0.002233017304 0.07034265299 0) (-0.001572914694 0.07033819531 0) (-0.001737827578 0.07033929435 0) (0.0002829134778 0.06448798379 0) (0.0002841086043 0.06456629175 0) (0.0002021501526 0.06456642253 0) (0.0002012356938 0.06448805427 0) (0.0002033229114 0.06472365906 0) (0.0002860731049 0.06472324578 0) (3.430712216e-05 0.06472537058 0) (0.0006282962089 0.065585179 0) (0.0007918897837 0.06558491979 0) (0.0007840420152 0.0651145089 0) (0.0007867562331 0.06527120986 0) (0.001275929708 0.06511353386 0) (0.001278649009 0.06527013282 0) (0.00111439236 0.06527054251 0) (0.001111754514 0.06511392839 0) (-0.001944371618 0.06328784157 0) (-0.001944721877 0.06320974593 0) (-0.001862141585 0.0632092028 0) (-0.001861441993 0.06328726676 0) (-0.001864154593 0.06305278804 0) (-0.001946109042 0.06305326835 0) (-0.001697116055 0.06305157157 0) (0.001114655434 0.07449266384 0) (0.001118562975 0.07433482519 0) (0.001370251294 0.07433303595 0) (0.001286933225 0.07433367185 0) (-0.002239008586 0.06940196445 0) (-0.002073979292 0.06940085001 0) (-0.002076000731 0.06908727763 0) (-0.002240957203 0.06908839154 0) (-0.001580566324 0.0690839172 0) (-0.001746029529 0.06908504937 0) (-0.00157914897 0.06924054021 0) (-0.00149489015 0.0692398829 0) (-0.001494035193 0.06931828073 0) (-0.001578283818 0.06931893797 0) (-0.001317914489 0.06931657573 0) (-0.001319712898 0.06923822847 0) (-0.001318245272 0.06955215444 0) (-0.001316526525 0.06947356308 0) (-0.00132191543 0.06963078914 0) (-0.001331600365 0.0698665088 0) (-0.001329902722 0.06978801955 0) (-0.001576324146 0.06986802884 0) (-0.001576647398 0.0697896417 0) (-0.001494179357 0.06978908482 0) (-0.001494156024 0.06986748871 0) (-0.001696764401 0.0635998585 0) (-0.001692866325 0.06352112019 0) (-0.001943602713 0.06360142307 0) (-0.001943576845 0.06352297513 0) (-0.001861331427 0.063522449 0) (-0.001861779449 0.06360092915 0) (-0.001860988404 0.063365551 0) (-0.00194380162 0.06336611039 0) (-0.0002016141533 0.06448688068 0) (-0.0002068098838 0.0644097525 0) (-0.0002149801249 0.06433330141 0) (-0.0001310872804 0.06433269045 0) (-4.774648979e-05 0.0643322146 0) (-0.001437644503 0.06328313174 0) (-0.001431776214 0.06336053177 0) (-0.001426125313 0.06343448144 0) (-0.001511476461 0.06344034646 0) (-0.001600881127 0.06344140538 0) (-4.726791151e-05 0.06464657017 0) (-0.0001289881838 0.06464662639 0) (-0.000208138127 0.06465062561 0) (-0.0002267033415 0.06458645579 0) (3.195141872e-05 0.06417489891 0) (3.338574725e-05 0.06425345274 0) (0.0002768956669 0.06417505225 0) (0.0002785191974 0.06425338622 0) (0.0001971098994 0.06425332366 0) (0.0001954308122 0.06417496096 0) (0.0001999727513 0.06440983419 0) (0.0002815777135 0.06440976424 0) (-0.001626149042 0.06187615909 0) (-0.001555122698 0.06187609336 0) (-0.001608184382 0.06312896385 0) (-0.001523685569 0.06312826109 0) (-0.001450082926 0.06312795811 0) (-0.001443522272 0.06320562983 0) (-0.001604666261 0.06218765258 0) (-0.001528250005 0.0621864989 0) (0.0006878085939 0.07537567914 0) (0.0005813208607 0.07535638828 0) (0.0006405274538 0.0677871035 0) (0.0005618780098 0.06778860844 0) (0.0001189107794 0.06511846429 0) (0.0001191411664 0.06519709971 0) (0.0001215594578 0.06527516573 0) (3.897018604e-05 0.06527547588 0) (-3.358682529e-05 0.06527483908 0) (0.0003826167392 0.0656644692 0) (0.0003837078509 0.06574289444 0) (0.0003774626446 0.06542933826 0) (0.0003787580815 0.06550782027 0) (0.0006257582972 0.06542828742 0) (0.0006270476962 0.06550674034 0) (0.0005449507771 0.06550685757 0) (0.0005436193536 0.06542843408 0) (-0.0008982608808 0.07378642518 0) (-0.0008255041368 0.07378596815 0) (0.002034524525 0.07472326419 0) (0.001868901466 0.07472484614 0) (0.002035724445 0.0752000302 0) (0.00186988589 0.07520202153 0) (0.001869515516 0.07504316389 0) (0.002035352543 0.07504096282 0) (0.001537826908 0.07504756757 0) (0.001537781449 0.07520732545 0) (0.0005514593472 0.06597797734 0) (0.0006338387862 0.06597765414 0) (0.000385264163 0.06597899832 0) (0.0003841064705 0.06582163059 0) (-0.0005620082793 0.063236526 0) (-0.0005601184618 0.06331462499 0) (-0.0006197448813 0.06330486364 0) (-0.0006406820633 0.0632402887 0) (-0.0005843463918 0.06341438318 0) (-0.0006972281674 0.0630670988 0) (-0.0006382379695 0.06307709783 0) (-0.0006613898346 0.06317661514 0) (-0.0005611855954 0.06307869233 0) (-0.0005628710489 0.0631580554 0) (0.001361521629 0.07649512746 0) (0.001191313131 0.07650226298 0) (0.001195138835 0.07633998693 0) (0.001363068107 0.07633548099 0) (0.000851498225 0.07635760957 0) (0.0008446087983 0.07652119257 0) (0.0007779464433 0.07595229665 0) (0.0006949138487 0.07505113248 0) (0.0007770799909 0.07505452057 0) (0.0008623709385 0.0750535892 0) (0.000863614147 0.07513389952 0) (0.0008649613464 0.07521488927 0) (0.0008316914908 0.07455326178 0) (0.0008623200732 0.07465500478 0) (0.000804250494 0.07466581989 0) (0.0008603081336 0.07473373664 0) (0.0007864810523 0.07473522102 0) (0.0006425464115 0.06715653549 0) (0.0005592189679 0.06715708406 0) (0.0004817636994 0.06715636641 0) (0.0004800544514 0.06707806219 0) (0.0004710023753 0.06700128252 0) (0.0005112347327 0.06754016125 0) (0.0004968234059 0.0674694797 0) (0.0005660563638 0.06747095637 0) (0.0006459199885 0.06747117584 0) (0.0009762068301 0.06699688964 0) (0.0009771075731 0.06707537453 0) (0.0008946354525 0.06707577123 0) (0.0008937608193 0.06699727159 0) (0.0008959954265 0.06723271509 0) (0.0009788211426 0.06723227212 0) (0.000726814848 0.06723439868 0) (0.0006274641186 0.06811972039 0) (0.0007300628443 0.06809999486 0) (0.0008164298886 0.06809882697 0) (0.00081550591 0.06817795145 0) (0.0008185072566 0.0682564793 0) (-4.722969907e-05 0.0649616572 0) (3.53054075e-05 0.06496144939 0) (0.0001202381038 0.06496052499 0) (0.0001201570544 0.06503939573 0) (-0.0008543468907 0.07441444479 0) (-0.0007662783042 0.07440812302 0) (-0.0007444529229 0.07458486041 0) (-0.0008736004241 0.07410045899 0) (-0.0007980970557 0.07409995283 0) (-0.0009584543954 0.07410119347 0) (-0.001044071008 0.07410200632 0) (-0.001047543816 0.07402354016 0) (-0.001050921057 0.07394479657 0) (-0.0008498262279 0.0734499968 0) (-0.0009527907025 0.07346989979 0) (-0.001040552114 0.07347080109 0) (-0.001033984662 0.07339160638 0) (-0.001031467392 0.07331286356 0) (-0.00105395347 0.07386580286 0) (-0.00105621405 0.07378699288 0) (-0.0009769746849 0.07378669255 0) (-0.00120334077 0.07521538669 0) (-0.001204205252 0.07513508089 0) (-0.001120883486 0.07513455275 0) (-0.001120170996 0.07521498782 0) (-0.001122173695 0.07497478857 0) (-0.001205808595 0.074975319 0) (-0.000950659027 0.07497380896 0) (-0.0008634303992 0.0750527488 0) (-0.0007757547199 0.07505147526 0) (-0.0006721696699 0.07503118615 0) (-0.0007048200688 0.07513421874 0) (-0.000704386617 0.07521453787 0) (-0.0007346056342 0.07465723416 0) (-0.0007235349809 0.07473459339 0) (-0.00079605515 0.07473473554 0) (-0.0008763006326 0.07473488153 0) (-0.0009437325589 0.07159511313 0) (-0.0009943101522 0.07158748521 0) (-0.0009483037656 0.07148882102 0) (-0.001067173987 0.07158763715 0) (-0.001050988527 0.07150853262 0) (-0.001039201473 0.07142966403 0) (-0.0009512068952 0.07142377976 0) (-0.001074809098 0.07205862688 0) (-0.001077378569 0.07198040175 0) (-0.001079780126 0.07190223366 0) (-0.001002093745 0.07190188638 0) (-0.0009295419339 0.07190148911 0) (-0.001048730836 0.07095974604 0) (-0.001052041102 0.07088159913 0) (-0.00097566014 0.07088099918 0) (-0.0009721197573 0.07095914442 0) (-0.0010554378 0.07080358394 0) (-0.0009792317158 0.0708029707 0) (-0.001035430184 0.07135111599 0) (-0.0009545101293 0.07134979843 0) (-0.001036450857 0.07127276306 0) (-0.0009579803341 0.07127208964 0) (-0.0008849927859 0.07284112489 0) (-0.0009608749335 0.07284161925 0) (-0.001046883858 0.07284236214 0) (-0.001049921191 0.07276389281 0) (-0.001052830782 0.07268536429 0) (-0.001032235387 0.07323440683 0) (-0.001034627202 0.0731559765 0) (-0.0009451504278 0.07315501901 0) (-0.0008677979172 0.07315442655 0) (-0.000915483251 0.07221434752 0) (-0.0009891019925 0.07221483996 0) (-0.001069528536 0.07221532372 0) (-0.001072186772 0.07213690989 0) (-0.001055656614 0.07260693711 0) (-0.001058430622 0.07252862608 0) (-0.0009752375949 0.07252802023 0) (-0.0009004699383 0.07252749029 0) (-0.00132601887 0.0690035283 0) (-0.001328205616 0.06892525669 0) (-0.001321736524 0.06915995567 0) (-0.001579684649 0.06916218375 0) (-0.001495775162 0.06916155811 0) (-0.001501537075 0.06869136507 0) (-0.001584181238 0.06869193781 0) (-0.001334744569 0.06869016496 0) (-0.001330398507 0.06884694143 0) (-0.001326854254 0.07025821778 0) (-0.001328278147 0.07017989692 0) (-0.001322556677 0.07049313649 0) (-0.00132398629 0.07041483023 0) (-0.001571686145 0.07049489253 0) (-0.001572285908 0.07041653653 0) (-0.001489731938 0.07041597902 0) (-0.00148901566 0.07049433417 0) (-0.001078282571 0.07033486986 0) (-0.001082179992 0.0702566981 0) (-0.001008268189 0.07025624722 0) (-0.001004054827 0.07033440212 0) (-0.001086092084 0.07017851188 0) (-0.001012513592 0.07017809256 0) (-0.001059123904 0.07072562911 0) (-0.0009833145778 0.07072513528 0) (-0.00106288961 0.07064754378 0) (-0.0009874111066 0.07064702323 0) (-0.001088713817 0.06970831054 0) (-0.001043755166 0.06960937724 0) (-0.001037816811 0.0697161983 0) (-0.001089989505 0.07010034012 0) (-0.001016760558 0.07009992334 0) (-0.001093814211 0.07002215326 0) (-0.001021004505 0.07002176867 0) (-0.001493809469 0.06994587567 0) (-0.001575899049 0.06994640067 0) (-0.001331684809 0.06994491347 0) (-0.001329653977 0.07010157571 0) (0.0008166612291 0.06872939316 0) (0.0008250474531 0.06880654181 0) (0.0007510579001 0.06880671651 0) (0.000738101978 0.06873088288 0) (0.0008321500845 0.0688840348 0) (0.0007640108033 0.0688825356 0) (0.0008236137028 0.06833446748 0) (0.0008271270211 0.06841249639 0) (0.0007496502529 0.06841202649 0) (0.0006816592098 0.06841048252 0) (0.000830061382 0.06896322602 0) (0.0007759888307 0.0689538903 0) (0.0007937525716 0.06906410631 0) (0.001245926757 0.06911809795 0) (0.001329465066 0.06911750414 0) (0.00107322799 0.0691200839 0) (0.001077124698 0.0688833577 0) (0.001075934163 0.06896228021 0) (-0.00194248331 0.06391513311 0) (-0.001942952418 0.0638367179 0) (-0.00186176956 0.0638362869 0) (-0.001861242195 0.06391470168 0) (-0.001862096392 0.06367940834 0) (-0.001943497608 0.0636798555 0) (-0.001699803499 0.06367854686 0) (-0.001692826338 0.06422661076 0) (-0.001694515988 0.0641485977 0) (-0.001940479936 0.06422822497 0) (-0.001940946816 0.06415011561 0) (-0.001859254525 0.06414963721 0) (-0.001858612978 0.06422773072 0) (-0.001860612986 0.06399310116 0) (-0.001941985073 0.0639935481 0) (-0.001461044466 0.06391298156 0) (-0.00145560709 0.06399101102 0) (-0.00145007984 0.06406898156 0) (-0.001531626594 0.06406944435 0) (-0.001613946397 0.06406995646 0) (-0.001622242101 0.06375683759 0) (-0.001545487492 0.06375674471 0) (-0.001470470911 0.06375679556 0) (-0.001466208243 0.06383492097 0) (-0.0001197658707 0.06496096198 0) (-0.001636674973 0.06156299821 0) (-0.001712736588 0.0615626491 0) (-0.001791080988 0.06156284095 0) (-0.001778113743 0.06148142943 0) (-0.001752689284 0.06139257181 0) (-0.001309746915 0.06137890286 0) (-0.001283851792 0.06145927397 0) (-0.001356324227 0.06136957082 0) (-0.00157693332 0.0615635827 0) (-0.0008416513063 0.06159353382 0) (-0.0007624056265 0.06159450061 0) (-0.001003705967 0.06159290791 0) (-0.001021572246 0.06136381212 0) (-0.001011770786 0.06143869286 0) (-0.001487896688 0.06266038718 0) (-0.001481565649 0.06273792948 0) (-0.001475517024 0.06281569232 0) (-0.001546738608 0.06281594882 0) (-0.001625979641 0.06281622003 0) (-0.0007287992413 0.06276473829 0) (-0.0007996143895 0.06276340423 0) (-0.0008822122337 0.06252213732 0) (-0.0009045362522 0.06245832988 0) (-0.0008261309542 0.06245470021 0) (-0.0007439090999 0.06245453838 0) (-0.001635198003 0.06250380701 0) (-0.001563996406 0.06250420609 0) (-0.00150085368 0.06250540667 0) (-0.001494474211 0.06258259906 0) (-0.0006626700029 0.06229742994 0) (-0.0006616669137 0.06237576843 0) (-0.0004203172467 0.06229853432 0) (-0.0004178031773 0.06237635203 0) (-0.0004980177538 0.06237574186 0) (-0.0005003877421 0.06229790853 0) (-0.0004937264857 0.06253199437 0) (-0.000412926769 0.06253235268 0) (0.0001175774273 0.06543357587 0) (0.0001182061351 0.06551210644 0) (3.176494541e-05 0.06551869309 0) (0.0002116738446 0.06558776156 0) (0.000296538831 0.06558693962 0) (-0.0005268834618 0.07571446312 0) (-0.0004545294357 0.07572150715 0) (-0.0003253170774 0.07590121446 0) (0.0003008221701 0.06590090335 0) (0.0002167238765 0.06590160319 0) (0.0001329287317 0.0659075297 0) (0.0001677155772 0.06604726176 0) (0.0001506288235 0.06597840578 0) (0.0006863134921 0.07620118003 0) (0.000598754664 0.07620649892 0) (0.0006021144772 0.07612384942 0) (0.0006885744015 0.07611963529 0) (0.0004214024062 0.07613789393 0) (0.0004172796013 0.07622057374 0) (0.0004311563209 0.07596644616 0) (0.001154125368 0.07219505158 0) (0.00116055657 0.07227394771 0) (0.001072350177 0.07226934664 0) (0.001072896137 0.07219491488 0) (0.00117469674 0.07235319553 0) (0.001151621689 0.07203746062 0) (0.001152149641 0.07211635604 0) (0.001073128162 0.07211697522 0) (0.00107317309 0.07203794453 0) (0.00103639356 0.07314578804 0) (0.001111237135 0.07314508277 0) (0.001194894659 0.07314445896 0) (0.00119103853 0.07322335719 0) (0.001187499586 0.0733022094 0) (0.001201996325 0.07298641935 0) (0.001198626143 0.07306544512 0) (0.0009998541203 0.07061800029 0) (0.001076923977 0.07061739533 0) (0.001164880946 0.07061634695 0) (0.001169177912 0.07069498189 0) (0.001173834617 0.07077361421 0) (0.001162642685 0.07045900166 0) (0.001162111067 0.07053780285 0) (0.001008679928 0.07345530938 0) (0.001096213824 0.07346036688 0) (0.00118631338 0.07346052637 0) (0.00119123636 0.07354032195 0) (0.0011977687 0.07362010582 0) (0.001185350929 0.07338116802 0) (0.001027131232 0.07093173831 0) (0.00110110026 0.07093134527 0) (0.0011830751 0.07093086481 0) (0.001187306237 0.07100966044 0) (0.001191309321 0.07108834121 0) (0.001178518252 0.07085214437 0) (0.001152439155 0.07187951047 0) (0.001151494786 0.0719586351 0) (0.001072718942 0.07195938357 0) (0.001071311544 0.07188072759 0) (0.001170686889 0.07172118578 0) (0.001157843128 0.07180035337 0) (0.001069969618 0.07180606197 0) (-0.001265602658 0.06688714006 0) (-0.001348057591 0.06688769685 0) (-0.001431067213 0.0668882868 0) (-0.001433316452 0.06681023413 0) (-0.001435612191 0.06673219635 0) (-0.001248491762 0.06594551133 0) (-0.001325851131 0.06594616209 0) (-0.00141572228 0.06594716615 0) (-0.001418297365 0.06586897019 0) (-0.001421581097 0.06579086678 0) (-0.001417298296 0.06610395661 0) (-0.001414838831 0.06602547638 0) (-0.0002781726215 0.06440878656 0) (-0.0002983630067 0.06433913753 0) (-0.0002585783092 0.06447638625 0) (-0.0002158108509 0.06417561087 0) (-0.0002169831897 0.06425491194 0) (-0.001429315612 0.06438040746 0) (-0.001434206718 0.06430238858 0) (-0.001359750526 0.06430189005 0) (-0.001354260931 0.06437989 0) (-0.001439256653 0.06422456021 0) (-0.001365222297 0.06422413757 0) (-0.001421976527 0.06453676887 0) (-0.001424849148 0.06445851682 0) (-0.001348738871 0.06445794797 0) (-0.001343207521 0.06453548154 0) (-0.00146287731 0.06359930585 0) (-0.001421109659 0.06350000253 0) (-0.001412852334 0.06360765148 0) (-0.001268720108 0.06563346979 0) (-0.001343617812 0.06563394241 0) (-0.001428885411 0.0656346799 0) (-0.001432632925 0.06555649248 0) (-0.001436383353 0.06547830508 0) (-0.001425176188 0.06571280934 0) (-0.001433780548 0.06469450773 0) (-0.001423893456 0.0646153471 0) (-0.001337930711 0.06460946306 0) (-0.001333259094 0.06467494297 0) (-0.00145706858 0.06485292738 0) (-0.001447853088 0.06477394643 0) (-0.0001891863748 0.0647161326 0) (-0.001863630655 0.06131273266 0) (-0.001778376249 0.06131138353 0) (-0.001851188051 0.06108528048 0) (-0.001767147505 0.06108525105 0) (-0.001765352405 0.06116374399 0) (-0.001849845506 0.06116363106 0) (-0.001518625605 0.06108926722 0) (-0.0015147769 0.06117094953 0) (-0.001596112355 0.06116702668 0) (-0.00159978309 0.06108738219 0) (-0.001706751312 0.06187651304 0) (-0.0017888513 0.06187700898 0) (-0.001791882566 0.06179877265 0) (-0.001794244297 0.06172047318 0) (-0.001075131925 0.06182510093 0) (-0.001134198551 0.06181460724 0) (-0.001441322908 0.06109103468 0) (-0.001446529603 0.06117788073 0) (-0.001189293104 0.06108293625 0) (-0.001191789706 0.06116291696 0) (-0.001279256674 0.06116704957 0) (-0.001274882078 0.06108574433 0) (-0.001226598795 0.06129513048 0) (-0.001136725085 0.06129607813 0) (-0.001463174689 0.06297187164 0) (-0.001456783851 0.06305002524 0) (0.0005032671406 0.07552529457 0) (0.0005334137942 0.0754652619 0) (0.0004089294275 0.07568837544 0) (0.0005165272382 0.07570589584 0) (0.0005174011951 0.07579210262 0) (0.0005183483193 0.07587775631 0) (0.000519905719 0.07562580966 0) (0.0004446978493 0.07563129203 0) (0.0001216020708 0.06535381708 0) (-0.0006099656425 0.07571008982 0) (-0.0006937796691 0.07570782358 0) (-0.0006962772922 0.07562426418 0) (-0.0006991398714 0.07554179109 0) (-0.0006985454665 0.07537641144 0) (-0.0006991871513 0.07529449895 0) (-0.0006149223065 0.07528826897 0) (-0.0005964527462 0.07535640411 0) (-0.000632404593 0.07521490067 0) (-0.0007003994453 0.07545983357 0) (0.0002960024671 0.06621708901 0) (0.0002113800957 0.06622322546 0) (-0.0003881306747 0.06370561124 0) (-0.000486547616 0.06372415568 0) (-0.0005210457388 0.06361446936 0) (-0.0005420591809 0.06354762283 0) (-0.0003974433011 0.06339385434 0) (-0.0004830474916 0.06339497297 0) (-0.0005637212336 0.06347871277 0) (-0.0005626404782 0.06292151612 0) (-0.0005612131422 0.06299990978 0) (-0.0006488808514 0.06276527779 0) (-0.0005674826745 0.06276541326 0) (-0.0005642950182 0.06284312411 0) (0.0008549461552 0.07489166017 0) (0.0008600177461 0.0749732622 0) (0.001031005321 0.07473250518 0) (0.0009443738693 0.07473276612 0) (0.0008545135591 0.07481165855 0) (0.0007677311166 0.07480618631 0) (0.001067808298 0.0725144816 0) (0.001132993077 0.07251288538 0) (0.001205538581 0.07251202206 0) (0.001210341411 0.0725911194 0) (0.001211050309 0.07267026112 0) (0.001192669667 0.07243273586 0) (0.001055974636 0.07283015031 0) (0.001128845562 0.07282937201 0) (0.001207702117 0.07282850643 0) (0.001205032269 0.07290749797 0) (0.001209829323 0.07274940232 0) (0.001004402621 0.06998537474 0) (0.001087777809 0.06998478212 0) (0.001171710281 0.06998411261 0) (0.001175363262 0.0700625192 0) (0.001177876654 0.07014144386 0) (0.0009296471177 0.0699857735 0) (0.000992301485 0.06967171555 0) (0.0008897243161 0.06969160115 0) (0.0008743109716 0.06958152824 0) (0.0008634298725 0.06950959751 0) (0.001018514734 0.07030016993 0) (0.00096624139 0.0702914911 0) (0.001092587071 0.07030056266 0) (0.00117359288 0.07030022034 0) (0.001167279724 0.07037973362 0) (0.001177692679 0.07022078143 0) (0.0004648702879 0.06732245901 0) (0.0004503939216 0.0672568466 0) (0.0004260442589 0.06714648921 0) (0.0004106174865 0.06707657244 0) (0.0003941128843 0.06700245421 0) (0.0004808122376 0.06739471701 0) (0.000819929076 0.06794091556 0) (0.0008191055344 0.06801963148 0) (-0.001054904435 0.07362962175 0) (-0.001048826982 0.07355034322 0) (-0.001056974261 0.07370840501 0) (-0.0006985595957 0.07489027143 0) (-0.000684682537 0.07496419032 0) (-0.0006487118734 0.07514387755 0) (-0.0007116676425 0.07481294889 0) (0.00104200907 0.07378107781 0) (0.001121446078 0.0737799167 0) (0.001202680356 0.07377894641 0) (0.001201074978 0.07385810498 0) (0.001199235615 0.07393713417 0) (0.001202068693 0.07369955638 0) (0.0009699604514 0.07378217055 0) (0.001028812711 0.07441402851 0) (0.0009412574691 0.07441403984 0) (0.0008622485312 0.0744135811 0) (0.0008774757944 0.07433770244 0) (0.0008922618923 0.07426204547 0) (0.0008467333894 0.0744865299 0) (0.001028067707 0.07409652882 0) (0.0009252457966 0.07407800797 0) (0.0009058116222 0.07419041747 0) (-0.001081976065 0.0717454998 0) (-0.001078464475 0.07166669148 0) (-0.001081654983 0.07182398891 0) (-0.001042219615 0.07111623 0) (-0.001045451976 0.07103798056 0) (-0.0009685758253 0.07103737701 0) (-0.0009650434387 0.07111562426 0) (-0.001039113857 0.07119449491 0) (-0.0009615110521 0.07119387151 0) (-0.001040707694 0.07299903788 0) (-0.001043800873 0.07292070005 0) (-0.001037603471 0.07307749216 0) (-0.001063999106 0.07237219352 0) (-0.001066799861 0.07229380986 0) (-0.001061196606 0.07245041695 0) (0.001047790184 0.0712469082 0) (0.001120376949 0.07124651067 0) (0.001198432127 0.0712462044 0) (0.001201343019 0.07132511161 0) (0.001203401926 0.07140422893 0) (0.001195076597 0.07116724218 0) (0.00106243133 0.07156194715 0) (0.001127438844 0.07156260981 0) (0.00119961336 0.07156240462 0) (0.001187656278 0.07164172597 0) (0.001203535213 0.07148333114 0) (-0.001235415422 0.06908087927 0) (-0.00114824188 0.06908005508 0) (-0.001072070432 0.06907948579 0) (-0.001067965059 0.06915761235 0) (-0.001063894427 0.06923576828 0) (-0.001080586924 0.06892324948 0) (-0.0010763255 0.06900140402 0) (-0.001224747185 0.06939398086 0) (-0.00113388701 0.06939298417 0) (-0.001055739711 0.06939232766 0) (-0.001051503421 0.06947003087 0) (-0.001047385297 0.06954410823 0) (-0.001059820459 0.06931398245 0) (-0.00126001648 0.06845480184 0) (-0.001179094643 0.06845432904 0) (-0.001105464038 0.06845386564 0) (-0.001101387687 0.06853200697 0) (-0.001097307999 0.06861020654 0) (-0.001113883451 0.06829775971 0) (-0.001109605186 0.06837582674 0) (-0.001247858416 0.06876787801 0) (-0.001163914081 0.06876723755 0) (-0.001089115627 0.06876673652 0) (-0.001084848773 0.06884503667 0) (-0.001093225186 0.06868843521 0) (-0.00107053714 0.07049122831 0) (-0.001074405539 0.07041304177 0) (-0.0009998690316 0.07041257178 0) (-0.0009956818856 0.07049072687 0) (-0.001242846017 0.07033595178 0) (-0.001160374957 0.07033540944 0) (-0.001066689344 0.07056938587 0) (-0.000991509304 0.07056888206 0) (-0.001100054112 0.06986572558 0) (-0.001099409153 0.0697872877 0) (-0.001033858997 0.06978806293 0) (-0.001029600069 0.06986547467 0) (-0.001242880467 0.06970882153 0) (-0.0011620198 0.06970834918 0) (-0.001251214331 0.07002286258 0) (-0.001172506989 0.07002250787 0) (-0.00109739413 0.06994397918 0) (-0.001025299215 0.06994364349 0) (0.000816818881 0.06857184108 0) (0.0008126181926 0.06865142637 0) (0.0007256358169 0.06865790044 0) (0.0008246879257 0.06849157364 0) (0.000997722406 0.06935568573 0) (0.0009145494505 0.06935624774 0) (0.0008400822153 0.06935662984 0) (0.0008283235241 0.06927959315 0) (0.0008161765805 0.06920324384 0) (0.0008517996736 0.06943340466 0) (0.0009859228376 0.06904263608 0) (0.000897403529 0.06904406724 0) (0.000804377226 0.06913002351 0) (-0.001282448737 0.06657513215 0) (-0.001361131638 0.06657544299 0) (-0.00143997901 0.0665757696 0) (-0.00144150059 0.06649743488 0) (-0.001441646581 0.06641898819 0) (-0.001437888388 0.06665404191 0) (-0.001210021755 0.06657479405 0) (-0.001191563113 0.06688662999 0) (-0.001279098476 0.06626117109 0) (-0.001228524057 0.06626916316 0) (-0.001352017472 0.06626114865 0) (-0.001432488132 0.06626157447 0) (-0.001423937489 0.06618270032 0) (-0.001439024844 0.06634039026 0) (-0.001243113312 0.06782684911 0) (-0.00114089596 0.06780715548 0) (-0.001134979346 0.06791399126 0) (-0.001130998016 0.06798588485 0) (-0.001271278171 0.06814201044 0) (-0.001194239373 0.0681417407 0) (-0.001122450204 0.06814142181 0) (-0.001118165371 0.06821959075 0) (-0.001126732124 0.06806325284 0) (-0.001249772554 0.06719983992 0) (-0.001174442607 0.06719932046 0) (-0.001234100247 0.06751267202 0) (-0.001157209639 0.0675120538 0) (0.0002875239931 0.06653927302 0) (0.0003744061645 0.06653263946 0) (0.0004635528214 0.06653075221 0) (0.0004671492627 0.06660879508 0) (0.0004713730807 0.06668658577 0) (0.0004660148925 0.06637262987 0) (0.0004636731946 0.06645188119 0) (0.000465632101 0.06684506699 0) (0.0004642654437 0.06692400534 0) (0.0003776239799 0.06693049149 0) (0.0003626064561 0.06686497042 0) (0.0004711157742 0.06676525387 0) (-0.0003923307298 0.06402728344 0) (-0.0003082203871 0.06402123811 0) (-0.0002226362558 0.06402010506 0) (-0.0002182725836 0.06409755974 0) (-0.0002237255877 0.06386282423 0) (-0.000224407442 0.06394181586 0) (-0.001383255313 0.06399074628 0) (-0.001377160159 0.06406869813 0) (-0.001389308548 0.06391275044 0) (-0.001444579867 0.06414680666 0) (-0.001371079493 0.06414646073 0) (-0.001471535489 0.06367841382 0) (-0.001407327289 0.06367951926 0) (-0.001401387346 0.06375675854 0) (-0.001395348675 0.06383475449 0) (-0.001289380754 0.06532106728 0) (-0.00136260565 0.06532144033 0) (-0.001443850922 0.06532190091 0) (-0.00144755485 0.06524369861 0) (-0.001451188975 0.06516548124 0) (-0.001440122235 0.06540010304 0) (-0.001309757289 0.06500867726 0) (-0.001380867654 0.06500900578 0) (-0.001457537153 0.06500918544 0) (-0.001459024252 0.06493118547 0) (-0.001454629288 0.06508727702 0) (-0.001794888283 0.06164204469 0) (-0.001092511473 0.06151684014 0) (-0.001173522161 0.06151651251 0) (-0.001250218807 0.06151896452 0) (-0.001223215385 0.06158112116 0) (-0.0009979447879 0.06182700031 0) (-0.0009164128802 0.06182749894 0) (-0.0009152572326 0.06190618588 0) (-0.0009133337049 0.06198431376 0) (-0.001469389298 0.06289371675 0) (-0.0009124076425 0.06214127534 0) (-0.0009096860454 0.06221898959 0) (-0.0009875241047 0.06222230925 0) (-0.00100998449 0.06215937671 0) (-0.0009055822423 0.0622963005 0) (-0.0009647836519 0.0622860991 0) (-0.0009123294775 0.06206260854 0) (-0.0009264215862 0.06239516011 0) (-0.001506690027 0.06243399268 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.048281211e-05 0.0003348319476 -1.360023205e-15) (-2.576031655e-06 3.750876103e-05 -1.387778781e-16) (-7.018949574e-05 0.001015009644 -4.107825191e-15) (0 0 0) (0 0 0) (-4.571528503e-05 0.0008518505597 -3.441691376e-15) (-8.979405799e-05 0.002884006976 -1.162958618e-14) (-8.51435703e-05 0.002203199041 -8.881784197e-15) (-0.0002116109422 0.005443438201 -2.209343819e-14) (0 0 0) (0 0 0) (-8.218730558e-05 0.003478586384 -1.401656569e-14) (-4.832663473e-06 0.004337722047 -1.748601264e-14) (-3.648260901e-05 0.004234415694 -1.7069679e-14) (-7.341649688e-05 0.008518002216 -3.458344722e-14) (0 0 0) (-6.171768475e-07 7.218241016e-05 -2.775557562e-16) (2.706134968e-05 0.004238983262 -1.709743458e-14) (8.367140413e-05 0.002898819524 -1.168509733e-14) (7.460943613e-05 0.003490918267 -1.407207684e-14) (0.0001602890186 0.007429115552 -3.017031069e-14) (0 0 0) (1.708721054e-07 8.123530123e-06 -2.775557562e-17) (8.067861794e-05 0.002219290595 -8.937295348e-15) (2.026147646e-05 0.0003444291841 -1.387778781e-15) (4.442793279e-05 0.0008654807638 -3.497202528e-15) (0.0001612779916 0.003118040478 -1.265654248e-14) (0 0 0) (0 0 0) (2.726421855e-06 4.110905063e-05 -1.665334537e-16) (0 0 0) (0 0 0) (1.009186832e-06 1.232336277e-05 -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.0002992516541 0.003191113064 -1.323940957e-14) (-0.0001471184237 0.001449181871 -6.022959909e-15) (-0.0003576471058 0.003498433363 -1.462718835e-14) (0 0 0) (-0.00046774491 0.005437103296 -2.256528298e-14) (-0.0008667400676 0.01380968732 -5.72597525e-14) (-0.0007675959446 0.01088483333 -4.513056595e-14) (-0.001131853686 0.01594813961 -6.661338148e-14) (-0.0002256823236 0.003241910024 -1.323940957e-14) (-0.0009182091805 0.01669227505 -6.922240559e-14) (-0.000763361713 0.02403389004 -9.967027204e-14) (-0.0008650328076 0.0218961029 -9.078848784e-14) (-0.001146476577 0.02886842052 -1.205702205e-13) (-0.0003886611179 0.009942388362 -4.06341627e-14) (-0.0006189068602 0.02576272214 -1.068312105e-13) (-2.375599269e-05 0.02808591476 -1.164623953e-13) (-0.000238255908 0.02781702494 -1.153521723e-13) (-0.0003035138589 0.03552895897 -1.484090628e-13) (-0.000120824128 0.0140357341 -5.73707748e-14) (0.000191092975 0.02783070837 -1.154076834e-13) (0.000721714257 0.02408571826 -9.989231664e-14) (0.0005746533221 0.02580272855 -1.06997744e-13) (0.0007493411908 0.0332818473 -1.390276783e-13) (0.0002749026061 0.01261231675 -5.154210392e-14) (0.0008267679954 0.02195823991 -9.106604359e-14) (0.0008429153054 0.01388822346 -5.75928194e-14) (0.0008889673023 0.01676822144 -6.955547249e-14) (0.001227548984 0.02295736357 -9.589551375e-14) (0.0003460050131 0.006636398109 -2.714495295e-14) (0.0007495215284 0.01096283808 -4.546363286e-14) (0.000296608516 0.003244670291 -1.346145417e-14) (0.0004607334627 0.005502739009 -2.281508316e-14) (0.0007754369281 0.009189766793 -3.838596108e-14) (6.388669549e-05 0.0007745646796 -3.16413562e-15) (0.000147407256 0.001487359312 -6.161737787e-15) (0 0 0) (0 0 0) (4.168919777e-05 0.0003613866944 -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.000327844725 0.002553777332 -1.090794122e-14) (-9.761203114e-05 0.0007158336079 -3.053113318e-15) (-0.0002419331719 0.001759553705 -7.577272143e-15) (0 0 0) (-0.0006486945788 0.00538824777 -2.300937219e-14) (-0.001757109029 0.01822937952 -7.782663403e-14) (-0.001399833016 0.01340901916 -5.72597525e-14) (-0.001835380926 0.0174571074 -7.510658762e-14) (-0.0006458964623 0.006274169829 -2.639555241e-14) (-0.002062076572 0.02333180159 -9.961476088e-14) (-0.002480169357 0.03853383828 -1.645072967e-13) (-0.002435039357 0.03364895795 -1.436628594e-13) (-0.002891772389 0.03969137762 -1.7069679e-13) (-0.001540771053 0.02157138726 -9.076073226e-14) (-0.002426609428 0.04305065914 -1.837974217e-13) (-0.001734237302 0.05350213355 -2.284006317e-13) (-0.002043761962 0.05059916082 -2.16021645e-13) (-0.002327384968 0.05725801085 -2.462474669e-13) (-0.001443549938 0.03615396916 -1.521005544e-13) (-0.001363397819 0.05577403166 -2.381150832e-13) (-3.407879828e-05 0.05871810806 -2.507161145e-13) (-0.0004979144673 0.05838454678 -2.492728246e-13) (-0.0005555420557 0.06495189256 -2.793876241e-13) (-0.0003699802917 0.04339280923 -1.825761764e-13) (0.000429851799 0.05840191012 -2.493560913e-13) (0.001668294059 0.05357281939 -2.287892098e-13) (0.001296345047 0.0558268187 -2.38392639e-13) (0.001463687795 0.06245636463 -2.687017275e-13) (0.0009323773444 0.04097023563 -1.723898801e-13) (0.001979540796 0.05068789602 -2.164657342e-13) (0.002426651697 0.03866921106 -1.651456749e-13) (0.002368443367 0.04317271236 -1.843802888e-13) (0.002748292655 0.04967620751 -2.137456878e-13) (0.001595443813 0.02958203907 -1.244837566e-13) (0.002387398242 0.03379502519 -1.443289932e-13) (0.001730839573 0.01834552002 -7.835398996e-14) (0.002029215586 0.02348092123 -1.002808947e-13) (0.002499221435 0.02866910325 -1.233735336e-13) (0.001151330304 0.01353746134 -5.695444116e-14) (0.001377304757 0.01345821255 -5.74817971e-14) (0.0003760429805 0.002971931934 -1.268429806e-14) (0.0006930369878 0.005848398081 -2.498001805e-14) (0.001043250143 0.008723056172 -3.755329381e-14) (0.0001699829975 0.001462091548 -6.161737787e-15) (0.0001345392145 0.001000485073 -4.274358645e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0001913577778 0.001214153095 -5.356826094e-15) (-1.176229391e-05 7.094345883e-05 -3.053113318e-16) (-0.00160188003 0.01204991073 -5.3040905e-14) (-0.001038248659 0.007354259491 -3.239075674e-14) (-0.001343856303 0.00944515347 -4.191091918e-14) (-0.0004846397487 0.00349027727 -1.512678871e-14) (-0.002190135508 0.01756564403 -7.732703367e-14) (-0.003618149741 0.03635542685 -1.599553823e-13) (-0.003257194098 0.03015156977 -1.32699407e-13) (-0.003725441703 0.03416536546 -1.515454429e-13) (-0.002288758282 0.02161002952 -9.364731213e-14) (-0.00393480784 0.04317450363 -1.899591595e-13) (-0.004045282326 0.06104398466 -2.685351941e-13) (-0.004149661035 0.05568665482 -2.449707104e-13) (-0.00453923222 0.0602400503 -2.670641486e-13) (-0.00333707307 0.04548627815 -1.970923424e-13) (-0.003810539936 0.06566865269 -2.88880031e-13) (-0.00249593658 0.07488157288 -3.29430927e-13) (-0.00301494275 0.07257105717 -3.192446307e-13) (-0.003174496373 0.0756882122 -3.355371536e-13) (-0.002588305695 0.06324858972 -2.740585536e-13) (-0.001923207014 0.0765275081 -3.366751322e-13) (-4.371487973e-05 0.07840531379 -3.449740493e-13) (-0.000683984336 0.07821011392 -3.441136265e-13) (-0.000707703725 0.07997366442 -3.545774785e-13) (-0.0006067055191 0.07057102977 -3.058386877e-13) (0.0005966152622 0.07821646267 -3.441691376e-13) (0.002416637937 0.07489802756 -3.296529716e-13) (0.001838392469 0.07654884793 -3.368971768e-13) (0.001912209016 0.07884462115 -3.496647416e-13) (0.001612863512 0.06823888336 -2.957911693e-13) (0.002941774934 0.07256928567 -3.194111642e-13) (0.004008756882 0.06152430346 -2.708666624e-13) (0.003763171031 0.0660831039 -2.90906188e-13) (0.004015378697 0.06986512772 -3.099465129e-13) (0.003108846703 0.05569367443 -2.414457523e-13) (0.004127435611 0.05617244571 -2.473021787e-13) (0.003715255422 0.03781649804 -1.665612093e-13) (0.003985264523 0.04423131942 -1.948163852e-13) (0.004431813285 0.04876261966 -2.164379787e-13) (0.002968336454 0.03369039485 -1.460775945e-13) (0.003323470817 0.03124857541 -1.376398995e-13) (0.001692920823 0.01295410343 -5.703770789e-14) (0.002277397006 0.01858003465 -8.182343691e-14) (0.00270059001 0.02185404633 -9.700573678e-14) (0.00143445172 0.01189481216 -5.159761507e-14) (0.001125379846 0.008107415225 -3.569367024e-14) (2.83665325e-05 0.0001737585748 -7.494005416e-16) (0.0002418919074 0.001559703595 -6.855627177e-15) (0.0004012459712 0.002566619954 -1.1379786e-14) (2.868101387e-05 0.0001878599601 -8.049116929e-16) (-0.0007994131059 0.004913889089 -2.231548279e-14) (-0.0003203373749 0.001871644336 -8.493206138e-15) (-0.002985196478 0.02175604976 -9.880984919e-14) (-0.002221826196 0.01524854748 -6.925016116e-14) (-0.002424818461 0.01650634324 -7.55784324e-14) (-0.001650892381 0.01151246468 -5.148659277e-14) (-0.003718371128 0.02888830416 -1.312006059e-13) (-0.005280464726 0.05114597083 -2.322586568e-13) (-0.004901945621 0.04387331404 -1.992295218e-13) (-0.005198073359 0.04613944322 -2.111921749e-13) (-0.004160211397 0.03784260964 -1.691702334e-13) (-0.005487795001 0.05791021149 -2.629563234e-13) (-0.005078991883 0.0733201339 -3.328726184e-13) (-0.005370852103 0.06903924561 -3.13471471e-13) (-0.005556327477 0.07077340316 -3.23935323e-13) (-0.004885231795 0.06406673399 -2.862710069e-13) (-0.004633360241 0.07629476166 -3.463340725e-13) (-0.002764399834 0.07905621882 0) (-0.003440980944 0.07896407401 -3.583799923e-13) (-0.00346922255 0.07841196572 0) (-0.00330036358 0.07773164911 -3.472777621e-13) (-0.002085813466 0.07905784584 0) (-6.515558512e-05 0.07873947658 0) (-0.0003990446467 0.0787417625 0) (-0.0007202172787 0.08028535192 -3.587130593e-13) (0.0002706168367 0.07873707499 0) (0.002660149977 0.07901659767 0) (0.001979799073 0.07902867471 0) (0.00199255999 0.07839893151 0) (0.001959433406 0.07990187847 -3.571032359e-13) (0.00333944884 0.07894807822 -3.585465258e-13) (0.00500199324 0.07361317511 -3.345379529e-13) (0.004545205812 0.0763794518 -3.470557175e-13) (0.004229388372 0.07274698955 -3.252675906e-13) (0.005325999473 0.06975321667 -3.169964291e-13) (0.005315037601 0.05235674519 -2.379485498e-13) (0.005493428771 0.05898402999 -2.680911049e-13) (0.005743715692 0.06117420549 -2.80248047e-13) (0.004834968749 0.05276148617 -2.36033415e-13) (0.004964770699 0.04517720788 -2.053079928e-13) (0.003046965102 0.02255865297 -1.025290963e-13) (0.003827520608 0.03021609409 -1.373345881e-13) (0.004112410012 0.032189906 -1.474931288e-13) (0.003107283158 0.02494123669 -1.11577414e-13) (0.00232157932 0.01618271112 -7.355227538e-14) (0.000438461366 0.002599778616 -1.182387521e-14) (0.000959366599 0.005986694447 -2.72004641e-14) (0.001178601044 0.007294850712 -3.341771304e-14) (0.0005789082013 0.0036727997 -1.643130076e-14) (-0.001413412168 0.008406454347 -3.944067295e-14) (-0.0007404945976 0.004186481785 -1.965094754e-14) (-0.003897387296 0.02747045736 -1.288691376e-13) (-0.003057417138 0.0202974423 -9.522937994e-14) (-0.00317002564 0.02086703665 -9.869882689e-14) (-0.002679413689 0.01809080995 -8.351652703e-14) (-0.004668946633 0.03507258307 -1.645072967e-13) (-0.006125762846 0.05731044706 -2.687849943e-13) (-0.005816556987 0.05030439136 -2.359501483e-13) (-0.005940774804 0.05093293841 -2.408628852e-13) (-0.005388942349 0.04742793592 -2.188527137e-13) (-0.00623509701 0.06352681266 -2.979283487e-13) (-0.005416339936 0.07526163845 -3.529676551e-13) (-0.005862556477 0.07267039959 -3.407829574e-13) (-0.005924148438 0.07274547234 -3.440026042e-13) (-0.005695270167 0.0718950561 -3.317068842e-13) (-0.004837089397 0.07645068843 -3.585465258e-13) (-0.00318124666 0.07618118038 0) (-0.00348948868 0.07776913595 0) (-0.002833036643 0.07713740249 0) (-0.002497149806 0.07714147572 0) (-0.002490540855 0.07745897931 0) (-0.002825333108 0.07745720814 0) (-0.001449018598 0.07749050172 0) (-0.001795864779 0.07748395358 0) (-0.001818061492 0.07715602709 0) (-0.001424603539 0.07843163869 0) (-0.001766923363 0.07843002429 0) (-0.001771616793 0.07811754919 0) (-0.001435416134 0.07811731469 0) (0.0002970808357 0.0771771615 0) (0.0002844840149 0.07749143751 0) (-7.017113e-05 0.07749490878 0) (0.001327506329 0.07746733934 0) (0.0009819429235 0.07747693458 0) (0.001306933103 0.07841294044 0) (0.0009659726494 0.07841798697 0) (0.0009675385037 0.07810580128 0) (0.001311203174 0.07809948246 0) (0.00303342457 0.07709254582 0) (0.003033016306 0.07740848525 0) (0.002696978671 0.07741770524 0) (0.004031993942 0.07708042203 0) (0.004032933243 0.07770940129 0) (0.003366794067 0.07740295212 0) (0.003366295478 0.07708848892 0) (0.004024628247 0.07820341078 -3.581579477e-13) (0.005795692084 0.07348328626 -3.450018049e-13) (0.006236368451 0.0594280287 -2.790268017e-13) (0.006281063677 0.06525122171 -3.063937992e-13) (0.006393867855 0.06590985121 -3.120559366e-13) (0.005941829058 0.06275603891 -2.898514762e-13) (0.005991585206 0.05273641348 -2.476074901e-13) (0.004215574493 0.03019408153 -1.417477247e-13) (0.004952375551 0.03781834904 -1.775524172e-13) (0.005117215443 0.03876531302 -1.83519866e-13) (0.0044472012 0.03452163067 -1.594557819e-13) (0.003392099112 0.02287661836 -1.073863221e-13) (0.000984708008 0.00564990521 -2.650657471e-14) (0.001712822023 0.01034237988 -4.854450175e-14) (0.001825274986 0.01093031016 -5.173639295e-14) (0.001383139392 0.008490863872 -3.921862834e-14) (-0.001676696379 0.009639753377 -4.676814491e-14) (-0.0009397352911 0.005135903191 -2.49245069e-14) (-0.004266504227 0.02906081667 -1.409705686e-13) (-0.003406873555 0.02185959101 -1.060540544e-13) (-0.003474066404 0.02210000814 -1.081357226e-13) (-0.00322717012 0.021062493 -1.004751837e-13) (-0.005041842644 0.03659418748 -1.774969061e-13) (-0.006424142914 0.05803037737 -2.814415367e-13) (-0.006152469528 0.05139000741 -2.492173135e-13) (-0.0062059607 0.05138231185 -2.513267372e-13) (-0.006005385877 0.0510457713 -2.434163981e-13) (-0.006486537673 0.06378568547 -3.093358902e-13) (-0.00600315148 0.07172625028 -3.478606292e-13) (-0.006020065643 0.0712741417 -3.486377853e-13) (-0.00595523604 0.07246296464 -3.455291608e-13) (-0.005487779355 0.07413393493 -3.565203688e-13) (-0.004857950697 0.07459970299 0) (-0.004193840122 0.07459559628 0) (-0.004191314895 0.07491234601 0) (-0.004188761833 0.07522891784 0) (-0.004182876643 0.07586303855 0) (-0.004186123316 0.07554522397 0) (-0.002861385341 0.07522072076 0) (-0.002529690116 0.07521922569 0) (-0.002197945512 0.07521851094 0) (-0.002196187399 0.07537792506 0) (-0.002193879946 0.0755387713 0) (-0.002189628986 0.07585848893 0) (0.003028525817 0.07455387763 0) (0.003029975085 0.0748708828 0) (0.0040236353 0.07454466148 0) (0.004025629571 0.0748605033 0) (0.003693558301 0.07486436212 0) (0.003691851457 0.07454798803 0) (0.004030055672 0.07581027017 0) (0.003697752907 0.07581434129 0) (0.00369690739 0.07549623977 0) (0.004029095089 0.07549236845 0) (0.005924285901 0.07282319081 -3.535782778e-13) (0.006635928619 0.06125833616 -2.974565039e-13) (0.006594925623 0.06639025365 -3.223810108e-13) (0.006612368072 0.06604547187 -3.234634782e-13) (0.006459803253 0.06607141405 -3.154421169e-13) (0.006465510891 0.05511146626 -2.675915045e-13) (0.004800891644 0.03327640727 -1.615652057e-13) (0.005522991308 0.04082346144 -1.982025655e-13) (0.005556771586 0.04073854948 -1.995070775e-13) (0.005218452048 0.03921353994 -1.87183602e-13) (0.003965908242 0.0258775078 -1.256217352e-13) (0.001364993063 0.007574531979 -3.677613769e-14) (0.002183218773 0.01275067023 -6.189493362e-14) (0.002210021836 0.01279951092 -6.267208974e-14) (0.001987131289 0.01180018144 -5.631606292e-14) (-0.001843021826 0.01023632614 -5.143108162e-14) (-0.001072928089 0.005665125832 -2.844946501e-14) (-0.004469393309 0.02939780826 -1.476041511e-13) (-0.003607792062 0.02235783143 -1.122713034e-13) (-0.003648083964 0.02240788747 -1.135203043e-13) (-0.003524533917 0.02222778841 -1.096900348e-13) (-0.005237657015 0.03670347078 -1.842692665e-13) (-0.006558975339 0.05716088679 -2.869648963e-13) (-0.006312518646 0.0508831173 -2.554345624e-13) (-0.006344428623 0.05067864132 -2.566558077e-13) (-0.006246196829 0.05125897301 -2.528810494e-13) (-0.006593751255 0.06253701445 -3.139433158e-13) (-0.006055248768 0.06973290633 -3.500810752e-13) (-0.006065683194 0.06920314432 -3.504974089e-13) (-0.006033204766 0.07077713303 -3.491928968e-13) (-0.005519199972 0.07184860291 -3.575750807e-13) (-0.004873439331 0.0720848924 0) (-0.00420963886 0.07208020388 0) (-0.004207805486 0.07239395241 0) (-0.004205957334 0.07270772996 0) (-0.004202123801 0.07333612884 0) (-0.004204063581 0.07302176935 0) (-0.002879826862 0.07269843646 0) (-0.002548676479 0.07269612679 0) (-0.00221770108 0.07269378927 0) (-0.002216629664 0.07285091001 0) (-0.002215558672 0.0730079725 0) (-0.002213386393 0.07332225747 0) (-0.002214472479 0.07316512227 0) (0.003010786021 0.07202395027 0) (0.003013464413 0.07233973176 0) (0.002682431606 0.07234218622 0) (0.004004424175 0.07201669947 0) (0.004007247255 0.07233234882 0) (0.003675908596 0.07233480551 0) (0.00367312889 0.07201911215 0) (0.004014965092 0.073280118 0) (0.003683482168 0.07328276509 0) (0.003681078907 0.07296676311 0) (0.004012518669 0.07296418917 0) (0.005920697654 0.07056276298 -3.547162564e-13) (0.006692137853 0.05982129436 -3.007316618e-13) (0.006630920808 0.06466489404 -3.251010572e-13) (0.006602020372 0.06386832495 -3.23935323e-13) (0.006637544345 0.06577183781 -3.249067682e-13) (0.006540573642 0.05396668688 -2.713107516e-13) (0.004912404976 0.03292964944 -1.655064974e-13) (0.005626860347 0.04023463942 -2.022548795e-13) (0.005570337525 0.03949684246 -2.003119892e-13) (0.0056231286 0.04088479243 -2.019495682e-13) (0.004079896243 0.02574032523 -1.293687379e-13) (0.001449564302 0.007773972374 -3.905209489e-14) (0.002283722995 0.01289183872 -6.478151349e-14) (0.002230367447 0.01248236182 -6.32827124e-14) (0.002276381218 0.01307239361 -6.455946888e-14) (-0.002003888226 0.01073895989 -5.589972929e-14) (-0.001204351875 0.006136212399 -3.194666753e-14) (-0.004660416088 0.02956600213 -1.538491556e-13) (-0.003798216019 0.0227059558 -1.181554854e-13) (-0.003847756916 0.02279113618 -1.197097976e-13) (-0.003697185921 0.02250713694 -1.150468609e-13) (-0.005420934731 0.03663227154 -1.905975378e-13) (-0.006682831302 0.05612291274 -2.919886555e-13) (-0.006460605886 0.05019607871 -2.61152211e-13) (-0.006498490278 0.0500174808 -2.626232565e-13) (-0.006382700794 0.05051996191 -2.581546088e-13) (-0.006691254303 0.06113850091 -3.180788966e-13) (-0.006100478634 0.06764400686 -3.519406988e-13) (-0.006111415977 0.06711382814 -3.52384788e-13) (-0.006077420281 0.06868665112 -3.509692537e-13) (-0.005542186585 0.06946659209 -3.581857033e-13) (-0.004887201251 0.06957718429 0) (-0.004223619034 0.06957252649 0) (-0.004221918011 0.06988610121 0) (-0.004220202954 0.07019960299 0) (-0.004216746257 0.0708262568 0) (-0.00421848864 0.07051300282 0) (-0.002895149396 0.07019043385 0) (-0.002564450189 0.07018817117 0) (-0.002563498151 0.07034489952 0) (-0.00239822137 0.07034376871 0) (-0.00239920243 0.07018705513 0) (-0.002395266064 0.07081357436 0) (-0.002396245321 0.07065710838 0) (0.00298549969 0.06950177553 0) (0.002988838602 0.06981625592 0) (0.003978170941 0.06949575524 0) (0.003981582357 0.06981019141 0) (0.00365051692 0.06981216546 0) (0.003647120175 0.06949774375 0) (0.003991956805 0.07075475148 0) (0.003660805255 0.07075690094 0) (0.003657492608 0.0704420271 0) (0.003988615242 0.07043990698 0) (0.005847531708 0.06754321047 -3.519406988e-13) (0.0064898632 0.05613616065 -2.925160114e-13) (0.006471958833 0.06110062074 -3.183842079e-13) (0.006406240668 0.05998194246 -3.154421169e-13) (0.006576866173 0.06311261054 -3.229916334e-13) (0.00629827995 0.05026556834 -2.619293671e-13) (0.004596152694 0.02977035407 -1.550981565e-13) (0.005324792707 0.03680047351 -1.917355164e-13) (0.005203095854 0.03564838827 -1.874334021e-13) (0.005536905136 0.03892791941 -1.992017662e-13) (0.003762286369 0.02292962479 -1.194322419e-13) (0.001219870087 0.006316428054 -3.28903571e-14) (0.002009199452 0.0109524667 -5.703770789e-14) (0.001903169389 0.01028226504 -5.404010572e-14) (0.002207325391 0.01224636561 -6.264433416e-14) (-0.002209646449 0.01140978602 -6.164513344e-14) (-0.001376810367 0.006759653858 -3.652633751e-14) (-0.004891291937 0.02988628783 -1.613986722e-13) (-0.004032562966 0.02322175948 -1.253996906e-13) (-0.004066435908 0.02319358215 -1.264544025e-13) (-0.003899792668 0.02288542644 -1.21319621e-13) (-0.005638270391 0.03668874873 -1.980915432e-13) (-0.006819161019 0.05510857625 -2.97512015e-13) (-0.006628435551 0.0495697875 -2.676192601e-13) (-0.006662067139 0.04933621738 -2.688960166e-13) (-0.006537926645 0.04984510559 -2.641220576e-13) (-0.006794706374 0.05972889144 -3.224642775e-13) (-0.006142861577 0.06550081973 -3.536615445e-13) (-0.006155095894 0.06497757405 -3.541611449e-13) (-0.006122426397 0.06658318363 -3.528566328e-13) (-0.005561659105 0.06704158462 -3.58602037e-13) (-0.00489990549 0.0670687111 0) (-0.004236279685 0.06706403842 0) (-0.004234783094 0.06737754179 0) (-0.004233256843 0.06769111778 0) (-0.00423013205 0.06831819639 0) (-0.00423170157 0.06800467898 0) (-0.002909266058 0.06768201464 0) (-0.002579149213 0.06767978532 0) (-0.002578284137 0.06783657257 0) (-0.002413371252 0.06783547354 0) (-0.002414250892 0.0676786864 0) (-0.002410645901 0.06830570326 0) (-0.002411554245 0.06814897458 0) (0.002953999763 0.06698838512 0) (0.002958384445 0.06730246463 0) (0.00394641766 0.06698357558 0) (0.003950595895 0.06729730703 0) (0.003619659416 0.06729898884 0) (0.003615275795 0.06698505497 0) (0.003963050109 0.06823944871 0) (0.003632100338 0.0682413054 0) (0.003628109 0.06792723759 0) (0.003959103206 0.06792548253 0) (0.005691858609 0.06367779073 -3.443634267e-13) (0.006087780437 0.05090139568 -2.752520434e-13) (0.006150661195 0.05616113084 -3.037015084e-13) (0.006013632413 0.05444475434 -2.972344593e-13) (0.006307628175 0.05857108261 -3.108902025e-13) (0.005823406785 0.04490167284 -2.428057755e-13) (0.004003020584 0.02502297416 -1.352806756e-13) (0.004749978132 0.03169192485 -1.713629239e-13) (0.00459360972 0.03037348668 -1.657840532e-13) (0.005088655182 0.03456055174 -1.834088437e-13) (0.003177556287 0.01868498275 -1.010025397e-13) (0.0008336720499 0.004162737782 -2.250977182e-14) (0.001527794671 0.008032371939 -4.340972026e-14) (0.001428745876 0.007442446388 -4.060640713e-14) (0.001824607399 0.009769519204 -5.181965967e-14) (-0.002457843758 0.01220981872 -6.852851619e-14) (-0.001587897004 0.007500984934 -4.210520821e-14) (-0.005166562816 0.03035585154 -1.703359676e-13) (-0.004312218744 0.02388289503 -1.340316746e-13) (-0.00427536457 0.02344405165 -1.328659405e-13) (-0.004130230996 0.02333028853 -1.284250484e-13) (-0.005897575641 0.0368946433 -2.070288385e-13) (-0.006982642997 0.05421421364 -3.041733532e-13) (-0.00682944664 0.049079226 -2.753630657e-13) (-0.006862999022 0.04881916413 -2.766120666e-13) (-0.006708600185 0.04919155259 -2.70700129e-13) (-0.006918441264 0.05841553958 -3.277378369e-13) (-0.006190057833 0.0633734637 -3.555766792e-13) (-0.006201050084 0.06282551082 -3.559930128e-13) (-0.006166425626 0.06444238311 -3.546329896e-13) (-0.005577029147 0.06456593592 0) (-0.004911975718 0.06456129654 0) (-0.004910421293 0.06487474123 0) (-0.004247752457 0.0645566632 0) (-0.004246314335 0.06487013787 0) (-0.004578236735 0.0648724386 0) (-0.004579733009 0.06455897891 0) (-0.004242073745 0.06581043134 0) (-0.004576785109 0.06518576752 0) (-0.004244906615 0.06518343798 0) (-0.004243497409 0.06549694199 0) (-0.00292123529 0.06517446826 0) (-0.002591744819 0.06517222894 0) (-0.002591025281 0.06532903181 0) (-0.002426563572 0.06532797976 0) (-0.002427297781 0.06517116243 0) (-0.002424245704 0.06579825614 0) (-0.002425022545 0.06564158477 0) (0.002914152773 0.06448082328 0) (0.002919827318 0.06479401949 0) (0.003906863865 0.06447627378 0) (0.003917789847 0.06510256733 0) (0.003255828548 0.06510580051 0) (0.003250342279 0.06479245727 0) (0.003244697181 0.06447930454 0) (0.00392794763 0.06572937625 0) (0.003266073929 0.06573263792 0) (0.003260906697 0.06541910302 0) (0.005424392093 0.05872588048 -3.300415496e-13) (0.005462563014 0.04409120661 -2.477740235e-13) (0.005643444803 0.04978286837 -2.797762022e-13) (0.005518702084 0.04825496622 -2.738642646e-13) (0.005927586917 0.05320735151 -2.93265412e-13) (0.005155527921 0.03835499876 -2.155498002e-13) (0.003238225966 0.01950802886 -1.096067681e-13) (0.003986739527 0.02564263339 -1.44079193e-13) (0.003743379314 0.02385162922 -1.353361867e-13) (0.004366424792 0.02860935872 -1.576516695e-13) (0.002447713067 0.01386852235 -7.790990075e-14) (0.0004291484962 0.002063629449 -1.160183061e-14) (0.0009785705141 0.004955288211 -2.783884234e-14) (0.0008093302883 0.004059067102 -2.303712776e-14) (0.001229175346 0.006343344721 -3.49442697e-14) (-0.002767681291 0.01322743481 -7.729927809e-14) (-0.001857122577 0.008440256503 -4.932165787e-14) (-0.005496012713 0.03106059147 -1.814381978e-13) (-0.004651373478 0.02478114459 -1.447730824e-13) (-0.004690405389 0.02482810261 -1.465216837e-13) (-0.004454793019 0.0241810463 -1.384170556e-13) (-0.006203376172 0.03732551266 -2.180200465e-13) (-0.007159714548 0.05345887261 -3.122224701e-13) (-0.007056167782 0.04876616393 -2.84827717e-13) (-0.00705485875 0.0484925377 -2.861044734e-13) (-0.006899087859 0.04857100129 -2.779720898e-13) (-0.007043177615 0.05719206352 -3.340383525e-13) (-0.006213510976 0.06119936483 -3.574918139e-13) (-0.006173091846 0.06060566377 -3.576305918e-13) (-0.006212583459 0.06227890647 -3.564371021e-13) (-0.00559221675 0.06205646125 0) (-0.004926305118 0.06205366539 0) (-0.004924209797 0.06236738288 0) (-0.004261178231 0.06204911286 0) (-0.004259156262 0.06236275806 0) (-0.004591573744 0.06236507696 0) (-0.004593639406 0.06205143208 0) (-0.004253839819 0.06330278152 0) (-0.004586067965 0.06330509904 0) (-0.00458781109 0.06299174311 0) (-0.004255510123 0.06298942506 0) (-0.002931863648 0.0626670432 0) (-0.002766994138 0.06266598818 0) (-0.002766275873 0.06282261628 0) (-0.002931116148 0.06282368565 0) (-0.002437570391 0.06282058659 0) (-0.00243828855 0.06266397305 0) (-0.002435471412 0.0632908063 0) (-0.002436130148 0.06313435255 0) (7.237580546e-05 0.06261294658 0) (7.779593735e-05 0.06276860828 0) (0.0005604816823 0.06261367407 0) (0.0005657592957 0.06276936593 0) (0.0004025798218 0.06276928713 0) (0.0003974793631 0.06261352115 0) (0.0004124390356 0.06308109831 0) (0.0005753564573 0.06308119358 0) (0.003171949301 0.06135597956 0) (0.004745832095 0.05613216951 -3.28320704e-13) (0.004342748497 0.05904836267 -3.453348718e-13) (0.004286381621 0.05780400866 -3.415601135e-13) (0.004444858292 0.06133462208 -3.515521207e-13) (0.005006747087 0.0524352467 -3.066991106e-13) (0.004730557103 0.03681244321 -2.153000001e-13) (0.005007694253 0.04261195476 -2.49245069e-13) (0.004789165487 0.04037899522 -2.386146836e-13) (0.005345112472 0.04632117935 -2.655098363e-13) (0.004287695667 0.03073525625 -1.797728633e-13) (0.002298321811 0.01332452108 -7.790990075e-14) (0.003025420951 0.01872999375 -1.095235014e-13) (0.002828660006 0.01734246627 -1.024458296e-13) (0.003548286683 0.02239446867 -1.283417816e-13) (0.001578350318 0.008603968139 -5.029310302e-14) (0.0001218180756 0.0005633851169 -3.302913498e-15) (0.0004711928217 0.002294733311 -1.340594302e-14) (0.0003339229348 0.001610119271 -9.520162436e-15) (0.0007124390558 0.003538614373 -2.02615702e-14) (-0.002436098369 0.01120523099 -6.825096044e-14) (-0.001588197806 0.006946074666 -4.232725281e-14) (-0.005052564452 0.02748959028 -1.674216321e-13) (-0.00423021809 0.02169473338 -1.321442955e-13) (-0.003954130823 0.02006360054 -1.235123115e-13) (-0.004602200022 0.02410718567 -1.437461261e-13) (-0.005754677193 0.03333790377 -2.030042801e-13) (-0.006801349538 0.0489152178 -2.978450819e-13) (-0.006650354898 0.04426340794 -2.695066392e-13) (-0.006391887308 0.04208684112 -2.590150316e-13) (-0.006980611242 0.04747153456 -2.830236046e-13) (-0.006747962542 0.05279090857 -3.214373212e-13) (-0.006083097867 0.05776104688 -3.517186542e-13) (-0.005989533568 0.05624045594 -3.461397835e-13) (-0.006164089528 0.05985097444 -3.568534357e-13) (-0.005534788972 0.05954123894 -3.587685704e-13) (-0.004867482351 0.05953887438 0) (-0.004199954468 0.05953401306 0) (-0.004197670871 0.05984758353 0) (-0.004195387274 0.060161154 0) (-0.004529158498 0.06016358471 0) (-0.004190821141 0.0607881493 0) (-0.004524592365 0.06079058001 0) (-0.004526875962 0.06047700954 0) (-0.004193104738 0.06047457883 0) (-0.002860316942 0.06015143127 0) (-0.002526560283 0.06014900066 0) (-0.002525419015 0.06030571308 0) (-0.002192789059 0.06014656995 0) (-0.002191647791 0.06030328237 0) (-0.002358526121 0.06030449767 0) (-0.002359667389 0.06014778525 0) (-0.002355101256 0.06077478055 0) (-0.002356242524 0.06061806814 0) (-0.002189364194 0.06061685283 0) (0.0001390088175 0.05950241429 0) (0.0001412924143 0.05981598476 0) (0.001140307925 0.05949512226 0) (0.001142591522 0.05980869273 0) (0.0008088246673 0.05981112341 0) (0.0008065410704 0.05949755294 0) (0.0008133908004 0.06043811871 0) (0.001147157655 0.06043568803 0) (0.003087139424 0.05786325889 -3.527456105e-13) (0.004323851231 0.04934069445 -3.008426841e-13) (0.004046209981 0.05311424661 -3.238243007e-13) (0.003933374086 0.05110163778 -3.149147609e-13) (0.004201790853 0.05626501725 -3.358979761e-13) (0.004437754343 0.04477757307 -2.730315973e-13) (0.003759509808 0.02814054206 -1.715572129e-13) (0.004147436347 0.03396870244 -2.071121052e-13) (0.003942132533 0.03194272275 -1.968425423e-13) (0.004617686308 0.03858004667 -2.30343522e-13) (0.003309498124 0.02281104265 -1.390554338e-13) (0.00146835886 0.008181052167 -4.987676938e-14) (0.002104131785 0.01252207988 -7.632783294e-14) (0.001799489495 0.01059309107 -6.525335827e-14) (0.002543885689 0.01544340536 -9.217626662e-14) (0.0008777744851 0.004595376044 -2.80053758e-14) (0 0 0) (9.288581156e-05 0.0004344911212 -2.636779683e-15) (4.335547904e-05 0.0002007287027 -1.249000903e-15) (0.0002517942331 0.001201993075 -7.160938509e-15) (-0.001376695294 0.006064682805 -3.860800568e-14) (-0.0007559779312 0.003166311527 -2.01505479e-14) (-0.003582214037 0.01866873039 -1.187661081e-13) (-0.002846028048 0.01398060128 -8.895661985e-14) (-0.00241667641 0.01174225234 -7.555067683e-14) (-0.003625658131 0.01820048534 -1.132705041e-13) (-0.00425302995 0.02360051461 -1.501299085e-13) (-0.005523584239 0.03804115086 -2.419453526e-13) (-0.005248582626 0.03345734563 -2.128019982e-13) (-0.004758203512 0.03000556357 -1.930122728e-13) (-0.006070617409 0.03954228718 -2.460254223e-13) (-0.005634831617 0.04220371576 -2.684241718e-13) (-0.005045901633 0.0513051823 -3.263500581e-13) (-0.005381566329 0.04888211429 -3.10917958e-13) (-0.005054925649 0.04541974049 -2.921551889e-13) (-0.005846218087 0.05428632487 -3.377575997e-13) (-0.004600062974 0.05312654221 -3.379518887e-13) (-0.00285118863 0.0557024063 -3.54410945e-13) (-0.00347936631 0.05522645865 -3.513578317e-13) (-0.003361889384 0.05276041981 -3.394506898e-13) (-0.003546127105 0.05764787457 0) (-0.002201654332 0.0559362516 -3.559375017e-13) (-0.0002137786727 0.05572177002 -3.546607452e-13) (-0.0008774705908 0.05594270284 -3.560207684e-13) (-0.000856196123 0.05389071282 -3.468336729e-13) (-0.000871423617 0.05825557008 0) (-0.0008759908107 0.05762842914 0) (0.0004434053138 0.05527001919 -3.518296765e-13) (0.002250455115 0.05149895192 -3.278766147e-13) (0.001692927395 0.05325865121 -3.390621117e-13) (0.001616780371 0.05027381843 -3.236577673e-13) (0.001782230253 0.05720268341 -3.56242813e-13) (0.002734121173 0.04914443563 -3.129163595e-13) (0.003525899253 0.03850407028 -2.45192755e-13) (0.003390254013 0.04260564837 -2.713107516e-13) (0.003139491509 0.0389874138 -2.510491814e-13) (0.003787518522 0.04868346131 -3.032851748e-13) (0.003518718257 0.03396921882 -2.163269563e-13) (0.002683793274 0.01921757076 -1.223743329e-13) (0.003083372075 0.02415817465 -1.538214001e-13) (0.002732951043 0.021163744 -1.362798763e-13) (0.003693707472 0.02960335868 -1.844080444e-13) (0.002198762841 0.0144977324 -9.23150445e-14) (0.0006488618551 0.003459383572 -2.201017146e-14) (0.001133048788 0.006451558536 -4.107825191e-14) (0.0008912584092 0.005017283084 -3.227973444e-14) (0.001596249907 0.009294440373 -5.787037516e-14) (0.0002672479311 0.001339742736 -8.520961714e-15) (0 0 0) (0 0 0) (0 0 0) (4.155470197e-06 1.903161034e-05 -1.110223025e-16) (-0.0002899029585 0.001220991549 -8.132383655e-15) (-5.536800996e-05 0.0002216597973 -1.471045508e-15) (-0.00165454257 0.00825051469 -5.495603972e-14) (-0.001136409669 0.005340006072 -3.555489236e-14) (-0.0007656941853 0.003557185526 -2.398081733e-14) (-0.001978337878 0.009506906406 -6.186717805e-14) (-0.002177055343 0.01156249243 -7.699396676e-14) (-0.003420763169 0.0225650959 -1.502409308e-13) (-0.003088349712 0.01885206925 -1.255384685e-13) (-0.002513172919 0.0151739787 -1.02223785e-13) (-0.004226216353 0.02636418921 -1.715294573e-13) (-0.003646228407 0.02616254592 -1.741939926e-13) (-0.0036269546 0.0353412056 -2.353117701e-13) (-0.00374793066 0.03262254479 -2.172151348e-13) (-0.003237808303 0.02789084242 -1.879052469e-13) (-0.004668388379 0.0414993969 -2.69978484e-13) (-0.003402360739 0.03765839276 -2.507438701e-13) (-0.002245852826 0.04206176964 -2.801092691e-13) (-0.002696295264 0.04101918734 -2.731426196e-13) (-0.002394293323 0.03608186596 -2.431110868e-13) (-0.003188536241 0.04949968362 -3.22103455e-13) (-0.001751804494 0.04268975313 -2.84300361e-13) (-0.000161760961 0.04214436075 -2.807476474e-13) (-0.0006947059037 0.04273053175 -2.846334279e-13) (-0.0006164912594 0.0378171136 -2.548516953e-13) (-0.0008173863437 0.05092231865 -3.31457084e-13) (0.0003539394671 0.04114537374 -2.740863092e-13) (0.001639682928 0.0356066701 -2.372546604e-13) (0.001270639112 0.037876894 -2.523536935e-13) (0.001124220011 0.03296898985 -2.22238894e-13) (0.00151981887 0.04665463684 -3.037847751e-13) (0.001928977697 0.0329329873 -2.194355808e-13) (0.002210763167 0.02297391509 -1.530997551e-13) (0.002221123583 0.02654750106 -1.76914039e-13) (0.001882029419 0.02219274241 -1.496303081e-13) (0.002857382815 0.0350489085 -2.282618539e-13) (0.002096783862 0.01927250539 -1.284250484e-13) (0.001261678319 0.008614119864 -5.739853037e-14) (0.001601885209 0.01196138136 -7.968625759e-14) (0.001234656316 0.009104688606 -6.136757769e-14) (0.002362522699 0.01807827592 -1.177113962e-13) (0.0008986354619 0.005652089753 -3.766431611e-14) (5.841496534e-05 0.0002974221176 -1.970645869e-15) (0.0002550934675 0.001386645091 -9.24260668e-15) (0.0001123694971 0.0006036061661 -4.080069615e-15) (0.0006565467049 0.003653570869 -2.37865283e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0002120702363 0.001009696928 -7.049916206e-15) (-5.395886341e-05 0.0002419747007 -1.693090113e-15) (0 0 0) (-0.0004510685927 0.002071413152 -1.412758799e-14) (-0.0004399107561 0.002231934424 -1.55986335e-14) (-0.001228705335 0.007756856041 -5.41788836e-14) (-0.0009759258279 0.005697596033 -3.980149543e-14) (-0.0005863069634 0.003383427941 -2.392530618e-14) (-0.001957220383 0.01168739394 -7.968625759e-14) (-0.001442220361 0.009910474713 -6.922240559e-14) (-0.001721117876 0.01610232451 -1.124655924e-13) (-0.001695776833 0.01415847513 -9.889311592e-14) (-0.001234887457 0.01020111161 -7.213674103e-14) (-0.002714512222 0.02314208341 -1.577904474e-13) (-0.001677054443 0.017842812 -1.246502901e-13) (-0.001182032338 0.02140967128 -1.49574797e-13) (-0.001399180944 0.02052938719 -1.434130592e-13) (-0.00107863485 0.01568757467 -1.109390357e-13) (-0.002069383307 0.03090272366 -2.106925745e-13) (-0.0009274190775 0.02195299267 -1.533495553e-13) (-6.930403507e-05 0.02148714404 -1.501299085e-13) (-0.0003574446593 0.02199205226 -1.536548666e-13) (-0.0002751308413 0.01697908951 -1.200983757e-13) (-0.0005317079373 0.03259736436 -2.222944051e-13) (0.0002027892865 0.02064393047 -1.442457265e-13) (0.0008004768319 0.01631042586 -1.139643935e-13) (0.0006484375289 0.01802375338 -1.259548021e-13) (0.0004949467213 0.0135041981 -9.553469127e-14) (0.0009684955237 0.02791649149 -1.904310043e-13) (0.0008947931132 0.01438785832 -1.005306949e-13) (0.0008126881794 0.008001843503 -5.592748487e-14) (0.0008984937654 0.01015962945 -7.099876242e-14) (0.0006182373964 0.00689216836 -4.876654636e-14) (0.0015414856 0.01792803516 -1.222910662e-13) (0.0006798158115 0.00592786578 -4.141131882e-14) (0.0001739542754 0.001129937298 -7.91033905e-15) (0.0003380492532 0.002399548098 -1.676436767e-14) (0.0001492219047 0.001045740507 -7.410738689e-15) (0.000893049721 0.006502901487 -4.435340983e-14) (5.100610103e-05 0.000305434813 -2.137179322e-15) (0 0 0) (0 0 0) (0 0 0) (2.410019214e-05 0.0001279179673 -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) (-3.782325985e-05 0.0002276983678 -1.665334537e-15) (-2.716092446e-06 1.510919543e-05 -1.110223025e-16) (0 0 0) (-0.0002857543598 0.001629527298 -1.168509733e-14) (-9.858326004e-05 0.0006465638216 -4.74620343e-15) (-0.000286084516 0.002563369475 -1.881828027e-14) (-0.0002342313306 0.001870513051 -1.373900993e-14) (-6.885622998e-05 0.000543199417 -4.05231404e-15) (-0.0008283714677 0.006768721145 -4.846123502e-14) (-0.0003176559622 0.003241854424 -2.381428388e-14) (-0.00027319279 0.004784772901 -3.513855873e-14) (-0.0003102376671 0.004385950108 -3.222422329e-14) (-0.0001482917626 0.002074157307 -1.543210004e-14) (-0.0007835929019 0.01129435645 -8.087974734e-14) (-0.0002188348656 0.005036716004 -3.69981823e-14) (-1.172591009e-05 0.004821763735 -3.541611449e-14) (-8.147635807e-05 0.005055696409 -3.713696017e-14) (-4.083271322e-05 0.00252835488 -1.881828027e-14) (-0.0002001884648 0.01239079892 -8.873457524e-14) (4.999639562e-05 0.004439028109 -3.261280135e-14) (0.000138517746 0.002643760134 -1.942890293e-14) (0.0001283163114 0.003317513479 -2.436939539e-14) (5.434043447e-05 0.001382103159 -1.029731855e-14) (0.000353452734 0.009467348468 -6.780687123e-14) (0.0001289275677 0.001950152184 -1.432187702e-14) (2.862264581e-05 0.000266919808 -1.970645869e-15) (6.603421383e-05 0.0007059866929 -5.19029264e-15) (4.98404336e-06 5.257564831e-05 -3.885780586e-16) (0.0003799097381 0.004175847168 -2.992051051e-14) (3.30978331e-06 2.737232934e-05 -1.942890293e-16) (0 0 0) (0 0 0) (0 0 0) (3.392415979e-05 0.0002347238308 -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) (-1.414397924e-06 1.101626326e-05 -8.326672685e-17) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-4.407731662e-05 0.0006094051764 -4.607425552e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-1.389983962e-05 0.0008560147364 -6.467049118e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (1.10431627e-05 0.0002766421476 -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.002212284469 0.07347956734 0) (-0.002211137155 0.07363710992 0) (-0.00220881202 0.07395238421 0) (-0.002540020873 0.07395466517 0) (-0.002210005042 0.07379456522 0) (-0.002871361123 0.0739569034 0) (0.002693526395 0.07392365931 0) (0.002362294459 0.07392677066 0) (0.00236144483 0.07376810439 0) (0.002195894189 0.07376963046 0) (0.002196729255 0.07392829683 0) (0.00219292078 0.07329533888 0) (0.002193913507 0.07345365454 0) (0.002035003442 0.07583902604 0) (0.002035754113 0.07567810393 0) (0.002036103524 0.07551808311 0) (0.002201918029 0.0751967895 0) (0.002367672252 0.07519521826 0) (0.002035750302 0.07535958073 0) (0.002699565196 0.0751908728 0) (-0.002229010238 0.07096888041 0) (-0.002394301478 0.07097002589 0) (-0.002225979671 0.07143902051 0) (-0.002391314604 0.07144016631 0) (-0.00239231044 0.07128342371 0) (-0.002226990072 0.07128227801 0) (-0.002887653852 0.07144367898 0) (-0.002557689066 0.07128456983 0) (-0.002556707688 0.0714413271 0) (0.002674162657 0.07139474149 0) (0.002508814963 0.07139613499 0) (0.00234349258 0.07139700396 0) (0.002342021774 0.07123904135 0) (0.002176788686 0.07124017184 0) (0.00217823015 0.07139810554 0) (0.002172247099 0.07076654712 0) (0.00217378956 0.07092434899 0) (0.002191912639 0.07313690681 0) (0.002188614996 0.07266209325 0) (0.002189752306 0.0728202622 0) (0.002684922252 0.07265818756 0) (0.002355159 0.07281897023 0) (0.002354006913 0.07266077225 0) (0.002519455073 0.07265917411 0) (-0.002409723522 0.068462359 0) (-0.002406923863 0.06893279209 0) (-0.00240787675 0.06877594722 0) (-0.002902434217 0.06893612394 0) (-0.002572935172 0.06877706188 0) (-0.002572011521 0.0689338924 0) (0.002647597494 0.06887496474 0) (0.002317200108 0.06887667176 0) (0.00231537177 0.06871961479 0) (0.001985251425 0.06872136348 0) (0.00215028284 0.06872054032 0) (0.002152140095 0.06887756795 0) (0.001979647774 0.06824990212 0) (0.002144739568 0.06824936983 0) (0.002146610327 0.06840625171 0) (0.001981636745 0.06840701619 0) (0.002170675404 0.07060873089 0) (0.00216588025 0.07013628778 0) (0.002167597483 0.07029408838 0) (0.002661584607 0.07013359539 0) (0.002332757962 0.07029298755 0) (0.002331026801 0.07013527444 0) (-0.002423469181 0.06595488382 0) (-0.002421065093 0.06642499936 0) (-0.002421842465 0.06626825516 0) (-0.002915527344 0.06642825075 0) (-0.002586507862 0.06626933783 0) (-0.002585730597 0.06642606746 0) (0.002614708087 0.06636277879 0) (0.002284498659 0.06636429509 0) (0.001954521412 0.06636569318 0) (0.001949789837 0.06605198032 0) (0.001944621226 0.06573825608 0) (0.001977773622 0.06809255418 0) (0.00197576839 0.06793520719 0) (0.001971748348 0.06762119785 0) (0.002301680629 0.06761962531 0) (0.001973794727 0.06777819498 0) (0.002632137226 0.06761804895 0) (-0.002434840215 0.06344747874 0) (-0.002432841277 0.06391796135 0) (-0.002433517335 0.06376112903 0) (-0.002926401705 0.06392104596 0) (-0.002927063092 0.06376422809 0) (-0.002762266403 0.0637631736 0) (-0.002761619474 0.06392000613 0) (-0.0001471322005 0.06339213339 0) (-0.0002292360439 0.0633922798 0) (-0.0002307174138 0.06331388653 0) (-0.0002322468317 0.06323559556 0) (0.0002540519986 0.06323688968 0) (0.000258241712 0.06339299729 0) (0.0002623263499 0.06354907653 0) (0.0001000757349 0.06354874336 0) (0.002247694732 0.0641705895 0) (0.002577658157 0.06416929347 0) (0.001257814171 0.06417401143 0) (0.001587097286 0.06417309905 0) (0.001566543847 0.06323481785 0) (0.001573742346 0.06354727471 0) (0.00193984755 0.065424762 0) (0.0019344475 0.06511125792 0) (0.002264745905 0.06510995945 0) (0.002594827118 0.06510883735 0) (-0.002353944362 0.0609316385 0) (-0.002411924754 0.06139210016 0) (-0.002351647262 0.06124506322 0) (-0.002907886072 0.06139550812 0) (-0.002852325944 0.06124870944 0) (-0.002685447615 0.06124749414 0) (-0.002742416136 0.06139490024 0) (-0.00031114848 0.06121490978 0) (-0.0001553990778 0.06121887332 0) (-0.0007849399553 0.06120481463 0) (-0.0006242983495 0.06120320779 0) (-0.0006863092187 0.06076262747 0) (-0.000685210583 0.06091948584 0) (-0.0003153451856 0.06315730146 0) (-0.0003198927384 0.0629224574 0) (-0.0003181926532 0.06300070343 0) (-7.863204091e-05 0.06292384647 0) (-0.0001545731324 0.06307948895 0) (-0.0002354246171 0.06307916015 0) (-0.0002374120554 0.06300107644 0) (-0.0002393811299 0.06292293433 0) (0.0004819075425 0.06075411985 0) (0.0004841911394 0.06106769032 0) (0.0005043425574 0.06137416854 0) (0.0001737133863 0.06137584811 0) (0.0001626779784 0.0612225286 0) (1.874154371e-06 0.06122166055 0) (1.132086071e-05 0.06137542858 0) (0.002526035789 0.06198280357 0) (0.002195460767 0.06198411862 0) (0.002186202404 0.06167281284 0) (0.00251676265 0.06167146877 0) (0.001522160525 0.06167635247 0) (0.001532770191 0.06198721145 0) (0.001483202281 0.06074682786 0) (0.001497423833 0.06105565055 0) (0.001559158133 0.06292265366 0) (0.001542582211 0.06229854233 0) (0.002534539352 0.06229446441 0) (0.002204080739 0.06229576404 0) (-0.001688169949 0.07601999649 0) (-0.001833012775 0.07682900185 0) (-0.002839847647 0.07681615421 0) (-0.002503846132 0.07682197442 0) (-8.629741742e-05 0.07609501493 0) (-0.000201749233 0.07608992917 0) (-0.0001894159468 0.07599288603 0) (-8.258512101e-05 0.07601913842 0) (-0.0003050071904 0.07608205277 0) (-0.0003219085938 0.07599764804 0) (-0.00109320806 0.07811878425 0) (-0.001079442268 0.07843282457 0) (-0.00111016234 0.07749171895 0) (-0.000419804991 0.07749527024 0) (-0.000436722545 0.07718024787 0) (0.0001370824924 0.07607869777 0) (3.173531778e-05 0.07608906193 0) (3.045876962e-05 0.07601053361 0) (0.0001245404892 0.07597670114 0) (0.002698980531 0.07646658959 0) (0.002365842233 0.07647193017 0) (0.002030833226 0.07648039548 0) (0.002033060456 0.07616022621 0) (0.002033947783 0.07600006893 0) (0.001656384981 0.07809128825 0) (0.001653963869 0.07840483472 0) (0.001672383421 0.07745610325 0) (0.002358784524 0.07742880528 0) (0.001287788388 0.07473189794 0) (0.001203398002 0.07473248921 0) (0.001202692416 0.07465240219 0) (0.001201947771 0.07457235187 0) (0.001033659931 0.07586142082 0) (0.001035613744 0.0756993074 0) (0.001204506669 0.07553292495 0) (0.001036736562 0.07561708639 0) (0.001370766586 0.07553059264 0) (0.004017438522 0.07359575533 0) (0.003685911481 0.07359834448 0) (0.003690055148 0.07423132912 0) (0.004021696794 0.07422847697 0) (0.003026887414 0.0742369015 0) (0.00534507809 0.07444089509 -3.583522368e-13) (0.004687409624 0.07453838264 0) (0.004019423871 0.07391237209 0) (0.004027491203 0.07517613198 0) (-0.004215018333 0.07113952545 0) (-0.004213245231 0.07145299768 0) (-0.004211456504 0.07176661545 0) (-0.003215008316 0.07207322259 0) (-0.003216898782 0.07175963469 0) (-0.00387978191 0.0717642874 0) (-0.003877949702 0.07207787572 0) (-0.003885144485 0.07082392928 0) (-0.003883387538 0.07113718315 0) (-0.003872287142 0.073019426 0) (-0.003870332692 0.07333379995 0) (-0.003876087093 0.0723916386 0) (-0.003213072885 0.07238698494 0) (0.001341149878 0.07219399543 0) (0.001247446261 0.07219454675 0) (0.001279265123 0.07314393192 0) (0.001363437511 0.07314340632 0) (0.003995227987 0.07106993148 0) (0.003664047945 0.07107216854 0) (0.003670217256 0.07170330322 0) (0.004001469272 0.07170094912 0) (0.002677043147 0.0717102739 0) (0.003007975384 0.07170800952 0) (0.005330832562 0.07200660643 -3.58796326e-13) (0.004667394265 0.07201198787 0) (0.00399841401 0.07138541798 0) (0.004009940636 0.07264818847 0) (-0.004228548179 0.06863168457 0) (-0.004226919872 0.06894527438 0) (-0.004225277212 0.06925883495 0) (-0.003229686942 0.06956563768 0) (-0.003231447177 0.06925193232 0) (-0.003893777391 0.06925650817 0) (-0.003892089978 0.06957021407 0) (-0.003898675816 0.0683158845 0) (-0.003897077486 0.068629358 0) (-0.00388690122 0.07051070454 0) (-0.003890374284 0.06988380324 0) (-0.003227898533 0.06987921176 0) (-0.002402131683 0.0697168269 0) (-0.002403113486 0.06956001137 0) (-0.002400183702 0.07003031242 0) (-0.002565416791 0.07003144291 0) (-0.001741062258 0.0698691266 0) (-0.001905960579 0.06987022553 0) (-0.001906956416 0.06971348292 0) (-0.001907952783 0.0695566675 0) (-0.001899654291 0.07081016895 0) (-0.001900706158 0.07065373262 0) (-0.001901759297 0.07049712152 0) (-0.001736715545 0.07049599241 0) (-0.001571042796 0.07057323364 0) (0.001250768836 0.06966878456 0) (0.001165407417 0.06966963925 0) (0.001167319997 0.06959046388 0) (0.001168434585 0.06951151279 0) (0.001253401238 0.07061525078 0) (0.001340530026 0.07061428126 0) (0.003967011788 0.06855344392 0) (0.003636033737 0.06855541733 0) (0.003643476048 0.06918335298 0) (0.003974483121 0.06918136479 0) (0.00298191329 0.06918731151 0) (0.00530060764 0.06944157376 -3.585465258e-13) (0.004640873537 0.06949231276 0) (0.003970666767 0.06886732483 0) (0.003985320341 0.07012546997 0) (-0.004240636154 0.06612383319 0) (-0.004239198244 0.06643727873 0) (-0.004237731311 0.06675070949 0) (-0.003242886262 0.06705718266 0) (-0.003244366699 0.06674389764 0) (-0.003906289429 0.06674842683 0) (-0.003904837909 0.06706174119 0) (-0.003910573605 0.06580814825 0) (-0.003909165142 0.06612155031 0) (-0.003900259793 0.06800238176 0) (-0.003903341317 0.06737524457 0) (-0.003241345978 0.06737068571 0) (-0.002416890025 0.06720829584 0) (-0.00241774043 0.06705152304 0) (-0.002415145203 0.06752188479 0) (-0.002580014289 0.06752299807 0) (-0.001674783387 0.0673601656 0) (-0.001675456183 0.067281781 0) (-0.001922174508 0.06736182159 0) (-0.001923185227 0.0672050354 0) (-0.001758738401 0.06720393976 0) (-0.001758109192 0.06728233923 0) (-0.001757581932 0.06736073945 0) (-0.00192419584 0.06704826377 0) (-0.001759894764 0.06704715463 0) (-0.001759280225 0.06712553965 0) (-0.001916344282 0.06830239478 0) (-0.001917339907 0.0681456813 0) (-0.001918292051 0.06798893838 0) (-0.001753757733 0.06798785667 0) (0.001309118525 0.06731003315 0) (0.001144593708 0.06731061958 0) (0.0009780615677 0.06715377164 0) (0.001071920487 0.06817554519 0) (0.001072935497 0.06825432054 0) (0.001069788642 0.06793921246 0) (0.001070465518 0.06801775724 0) (0.0013169487 0.06793822815 0) (0.001153125307 0.06801733004 0) (0.001152332022 0.06793880068 0) (-0.004252284758 0.0636163136 0) (-0.004584469317 0.06361861624 0) (-0.004581243634 0.06424554847 0) (-0.004249204825 0.06424323233 0) (-0.004913530037 0.06424786641 0) (-0.003254023206 0.06454992152 0) (-0.003255315366 0.06423648948 0) (-0.002925125275 0.06423431789 0) (-0.00391747155 0.06424096211 0) (-0.003916092003 0.06455439351 0) (-0.003921902749 0.06330049525 0) (-0.003920405945 0.06361402776 0) (-0.00391196814 0.0654946587 0) (-0.00391469768 0.06486785394 0) (-0.002922540318 0.06486126936 0) (-0.003252716269 0.06486338258 0) (-0.002429451941 0.06470136551 0) (-0.002430142351 0.06454456242 0) (-0.002428030929 0.06501449074 0) (-0.002757714289 0.06486024378 0) (-0.00259310768 0.06485908872 0) (-0.002592434274 0.06501555693 0) (-0.001692599958 0.06485369592 0) (-0.001691335802 0.06477528266 0) (-0.001937196845 0.06485504026 0) (-0.001937886193 0.06469838282 0) (-0.001855757184 0.0646978721 0) (-0.001773278736 0.06469734427 0) (-0.001773508504 0.0647757937 0) (-0.001773942917 0.06485414266 0) (-0.001938605944 0.06454155081 0) (-0.001856360419 0.06454103925 0) (-0.001856022391 0.06461945541 0) (-0.001938165965 0.06461996623 0) (-0.001931355767 0.06579510359 0) (-0.001932423577 0.06563847804 0) (-0.001768180016 0.06563747127 0) (-0.001767303849 0.06571578155 0) (-0.00176676298 0.06579405059 0) (-0.001933492448 0.06548170684 0) (-0.00176962756 0.06548070283 0) (-0.001768809119 0.06555908636 0) (-0.001686243391 0.06555854333 0) (-0.001687294861 0.06548016149 0) (0.0001193051265 0.06448821398 0) (0.0001197587439 0.06456670212 0) (0.0001197523685 0.06464542666 0) (3.608049216e-05 0.0646460797 0) (0.001108978305 0.06495731527 0) (0.001273125721 0.06495690638 0) (0.000781319801 0.06495790996 0) (0.0007722333772 0.06448781396 0) (0.0007753911715 0.06464442429 0) (0.000958352595 0.0657414478 0) (0.000955732515 0.06558467333 0) (0.0009531588002 0.06542766548 0) (0.001117054465 0.06542728755 0) (0.0012811508 0.06542686446 0) (-0.004188537544 0.06110171977 0) (-0.004522308768 0.06110415048 0) (-0.004595821443 0.06173580719 0) (-0.004263345598 0.06173350243 0) (-0.004928534561 0.06173753106 0) (-0.003265876242 0.0620423306 0) (-0.003267956753 0.06172664671 0) (-0.002937182955 0.0617266265 0) (-0.003931146793 0.061731156 0) (-0.003929008131 0.0620468249 0) (-0.003857049917 0.06078571859 0) (-0.00385476632 0.06109928906 0) (-0.00392350023 0.06298713826 0) (-0.003927029855 0.06236047042 0) (-0.002933503974 0.06235380304 0) (-0.003264014375 0.06235599153 0) (-0.002440707202 0.06219385762 0) (-0.002441615123 0.06203718721 0) (-0.002439035839 0.06250735973 0) (-0.002932640065 0.06251043009 0) (-0.002767755991 0.06250937496 0) (-0.001691792773 0.06218853469 0) (-0.001779366092 0.06218946375 0) (-0.001780518451 0.0621112283 0) (-0.001782849887 0.06203308883 0) (-0.001776619957 0.06328654709 0) (-0.001777799854 0.06320853031 0) (-0.001779387447 0.06313053108 0) (-0.001694143258 0.06312977919 0) (-0.001538957326 0.05826043143 0) (-0.001536673729 0.0585740019 0) (-0.001870434758 0.05857643254 0) (-0.001872718355 0.05826286207 0) (-0.001865868625 0.05920342783 0) (-0.001532107596 0.0592009972 0) (-0.002867167733 0.05921071986 0) (-0.002533411073 0.05920828925 0) (-0.0005308084888 0.05919370517 0) (-0.0001970416344 0.05919127449 0) (-0.001198340742 0.05919856652 0) (-0.001205190472 0.05825800075 0) (-0.001202906875 0.05857157122 0) (-0.0008543360988 0.06060713041 0) (-0.0006874271838 0.06060591488 0) (-0.0008577245529 0.06013684726 0) (-0.0006908403973 0.06013563192 0) (-0.0006897005857 0.06029234434 0) (-0.0008565847412 0.06029355968 0) (-0.0001901908593 0.0601319859 0) (-0.0003547924629 0.06044662607 0) (-0.000521675162 0.06044784141 0) (-0.0005228164301 0.06029112899 0) (-0.0005239576982 0.06013441658 0) (-0.00154419697 0.07426354902 0) (-0.001378519881 0.07426238616 0) (-0.001377758976 0.07434146924 0) (-0.00129445661 0.07434087715 0) (-0.001295227816 0.07426177958 0) (-0.001292871999 0.07457766684 0) (-0.001293341411 0.07449900985 0) (-0.001300159601 0.07339437503 0) (-0.001300235182 0.07331579674 0) (-0.001300983125 0.0736310934 0) (-0.001300792949 0.07355220731 0) (-0.001549228353 0.07363266822 0) (-0.001384003665 0.07355278417 0) (-0.001383786358 0.0736316236 0) (-0.001530236756 0.07553828597 0) (-0.001364200039 0.07553870518 0) (-0.001198341835 0.07553841199 0) (-0.001194518135 0.07570226072 0) (-0.001190329085 0.07586567725 0) (-0.001208671542 0.07473599555 0) (-0.001372909226 0.07489560918 0) (-0.001538642855 0.07489640832 0) (0.001362446253 0.07346029236 0) (0.001275352836 0.0734605188 0) (0.001201691751 0.07449259658 0) (0.001202177558 0.07441330488 0) (0.001286833193 0.07441293598 0) (0.002199014076 0.07440403537 0) (0.002199631492 0.07456281548 0) (0.002197633535 0.07408646748 0) (0.002363199376 0.07408502869 0) (0.001535949123 0.07425172107 0) (0.001701614051 0.0742498883 0) (0.001702232348 0.07440878929 0) (0.001702776784 0.07456754808 0) (0.001696512528 0.07329937639 0) (0.001697418612 0.07345779464 0) (0.001531459639 0.07345925085 0) (0.001530852664 0.07337990448 0) (0.001530625104 0.0733006573 0) (0.001698496392 0.07361578924 0) (0.001532843483 0.07361727236 0) (0.001532021755 0.07353843733 0) (0.001448553885 0.07353910345 0) (0.001449638196 0.07361799483 0) (-0.001730193443 0.07143557013 0) (-0.001731232761 0.07127885697 0) (-0.001565752185 0.07127771011 0) (-0.002061727961 0.07128113274 0) (-0.002060702995 0.07143787513 0) (-0.002063791714 0.07096775002 0) (-0.0022218779 0.07206625223 0) (-0.002222902653 0.07190953897 0) (-0.00205756772 0.07190839316 0) (-0.002056528509 0.07206509176 0) (-0.00205960489 0.07159466068 0) (-0.002224925152 0.07159582094 0) (-0.001563950272 0.07159113844 0) (-0.001729197395 0.07159234186 0) (-0.002555696863 0.07159812785 0) (-0.002390289214 0.07159696696 0) (-0.002389306775 0.07175386987 0) (-0.002223927937 0.07175275288 0) (-0.001563141651 0.07174817371 0) (-0.001398433911 0.0717471053 0) (-0.001398235063 0.07182560986 0) (-0.001316709124 0.07182508897 0) (-0.001316768047 0.07174659795 0) (-0.001314533998 0.07205996487 0) (-0.00131540132 0.07198166909 0) (-0.00131567679 0.07088404342 0) (-0.001316989541 0.07080598392 0) (-0.001311937241 0.07111893705 0) (-0.001313131229 0.07104058539 0) (-0.001566879101 0.07112096846 0) (-0.001567406148 0.07104259738 0) (-0.001484140298 0.07104199099 0) (-0.001483480716 0.07112036111 0) (-0.001553592461 0.07300341386 0) (-0.001387481778 0.07300218959 0) (-0.001386564166 0.07308079087 0) (-0.001302305347 0.07308013356 0) (-0.001303291411 0.07300153277 0) (-0.001300656758 0.07323730836 0) (-0.001313650018 0.07213834793 0) (-0.001310886195 0.0723738604 0) (-0.001311816066 0.07229537573 0) (-0.00155855862 0.07237548931 0) (-0.001394158854 0.0722959317 0) (-0.001393406773 0.0723744031 0) (0.001348277816 0.07092976366 0) (0.001265597135 0.07093032209 0) (0.001245538005 0.07187871595 0) (0.001339027286 0.07187793315 0) (0.002182349901 0.07187180617 0) (0.00218367676 0.07203000287 0) (0.002179627285 0.07155595217 0) (0.002675617308 0.07155248574 0) (0.002510239 0.07155367556 0) (0.001432954405 0.07171907189 0) (0.001431083107 0.07179811587 0) (0.001685107432 0.07171729383 0) (0.001685551336 0.07179624813 0) (0.001602214121 0.07179685503 0) (0.00160185824 0.07171798748 0) (0.001687309761 0.07203370509 0) (0.001603593874 0.07203431475 0) (0.001603016982 0.07195509925 0) (0.001686630919 0.07195449033 0) (0.001676837742 0.07076974714 0) (0.001678497035 0.07092759186 0) (0.001513496552 0.0709286624 0) (0.001512440734 0.07084968343 0) (0.00151148782 0.07077083479 0) (0.001680112848 0.07108546603 0) (0.001515403652 0.07108653445 0) (0.001514479549 0.07100764191 0) (0.001432219672 0.07100818271 0) (0.00143343485 0.071087044 0) (0.001447353887 0.07298432665 0) (0.00144723169 0.07306354725 0) (0.001694888636 0.07298239288 0) (0.001695707864 0.07314088458 0) (0.001530170303 0.07314220664 0) (0.001529971448 0.073062901 0) (0.001529758559 0.07298366828 0) (0.001530295806 0.07322144 0) (0.001687856146 0.07211273147 0) (0.001604227644 0.07211334049 0) (0.001690060975 0.07234948605 0) (0.001606751829 0.0723499471 0) (0.001605886089 0.0722710687 0) (0.001689252539 0.07227047614 0) (0.001434536398 0.072272302 0) (0.001437617828 0.07235142644 0) (0.002518218994 0.07250144283 0) (0.002683684476 0.07250022325 0) (0.002187419958 0.07250399754 0) (0.002184943452 0.07218793784 0) (-0.001749586216 0.06861466549 0) (-0.001914266071 0.06861576283 0) (-0.001915305495 0.06845903511 0) (-0.001908964563 0.06939973567 0) (-0.001910019611 0.06924286241 0) (-0.001744859345 0.06924173245 0) (-0.002571088612 0.06909062096 0) (-0.002405986496 0.06908950599 0) (-0.002404081466 0.06940309378 0) (-0.001493390783 0.06939676748 0) (-0.00140649812 0.06939597447 0) (-0.001406266913 0.06947452249 0) (-0.00140695056 0.06955304805 0) (-0.001425380891 0.06829929995 0) (-0.001424022962 0.06837756304 0) (-0.001422624465 0.06845579669 0) (-0.001504392278 0.06845630478 0) (-0.001488298138 0.07057266017 0) (-0.00132113591 0.07057142824 0) (-0.001318341616 0.0707279247 0) (-0.001408486326 0.06963156525 0) (-0.001410339702 0.06971007019 0) (-0.001493869166 0.0697106785 0) (0.001324317221 0.0685674315 0) (0.001241691779 0.06856797496 0) (0.001158631259 0.06856837594 0) (0.001157980888 0.06848967075 0) (0.001074782749 0.06849017469 0) (0.001074690656 0.06856892899 0) (0.001073941315 0.0683328338 0) (0.001167824995 0.06943280731 0) (0.001165983819 0.06935438753 0) (0.001249568733 0.06935379338 0) (0.002157421845 0.06934882774 0) (0.002159106236 0.0695061188 0) (0.002153851388 0.06903455295 0) (0.002318984223 0.06903365623 0) (0.001495790384 0.06919535236 0) (0.00166080681 0.06919447105 0) (0.001662519058 0.06935158712 0) (0.001664217801 0.06950884895 0) (0.001816765219 0.06840779448 0) (0.001814790601 0.06825065119 0) (0.001820364593 0.06872203993 0) (0.001326012175 0.06872437292 0) (0.001490796526 0.06872362439 0) (0.001424411668 0.07045603206 0) (0.001424883003 0.07053475312 0) (0.001673711355 0.07045444956 0) (0.0016751928 0.07061187319 0) (0.001509550955 0.07061287557 0) (0.001508613243 0.07053411422 0) (0.001508127449 0.07045540783 0) (0.001510402979 0.0706918706 0) (0.001665844996 0.06966628608 0) (0.001667560214 0.06982380996 0) (0.001502544106 0.06982473496 0) (0.001501664226 0.06974591493 0) (0.001418865044 0.0697464014 0) (0.001419715901 0.06982523621 0) (0.002329456909 0.0699777058 0) (0.00216431057 0.06997874828 0) (0.002160893957 0.06966359846 0) (-0.001681275899 0.06610665099 0) (-0.001681249183 0.06602831957 0) (-0.001929540669 0.06610834248 0) (-0.001930375449 0.06595171522 0) (-0.001765535386 0.06595061672 0) (-0.001764906707 0.06602894337 0) (-0.001764831579 0.06610725949 0) (-0.001765916471 0.06587228826 0) (-0.001925190934 0.06689162312 0) (-0.001761021043 0.06689050037 0) (-0.001760436269 0.06696879821 0) (-0.001926184544 0.06673518637 0) (-0.001762144883 0.06673418109 0) (-0.001761590299 0.0668123335 0) (-0.00167957791 0.06681180906 0) (-0.001680248903 0.06673367206 0) (-0.002584938555 0.06658282611 0) (-0.002420243923 0.0665817578 0) (-0.002418575423 0.06689486666 0) (-0.001596597415 0.06688941946 0) (-0.001513998295 0.06688886163 0) (-0.001428841673 0.06696648531 0) (-0.001426628711 0.06704475673 0) (-0.00150661823 0.06594825049 0) (-0.001595545927 0.06594920398 0) (-0.001507681395 0.06814306207 0) (-0.001427400177 0.06814262306 0) (-0.001426593494 0.06822099212 0) (-0.001424421362 0.06712305732 0) (-0.001422215469 0.06720135792 0) (-0.001508244678 0.06720211552 0) (-0.001592819544 0.06720277514 0) (0.001291365363 0.06605427014 0) (0.001127212758 0.06605476646 0) (0.0009631904892 0.06605515988 0) (0.0009606576893 0.06589837021 0) (0.0009751349418 0.06691830405 0) (0.0009741087332 0.06683979094 0) (0.0009719345345 0.06668304236 0) (0.001136299249 0.06668247166 0) (0.001300598106 0.06668185775 0) (-0.001689754406 0.06344243129 0) (-0.00177652711 0.06344329626 0) (-0.001776093546 0.06336483079 0) (-0.001938973101 0.06446313487 0) (-0.001856800505 0.06446260926 0) (-0.001857970901 0.06430589706 0) (-0.001939939703 0.06430640662 0) (-0.001691209086 0.06430468261 0) (-0.002760973288 0.06407673672 0) (-0.002925770083 0.06407777664 0) (-0.002432165962 0.06407469172 0) (-0.002430832654 0.0643877739 0) (-0.001603280686 0.06438211133 0) (-0.0015156722 0.06438121114 0) (-0.001601016331 0.06563623932 0) (-0.001515323559 0.06563548417 0) (-0.001519269419 0.06469526139 0) (-0.001605020342 0.06469603153 0) (0.001251062847 0.06386115806 0) (0.001086739733 0.06386164106 0) (0.000922654915 0.06386184559 0) (0.0009189365278 0.06370545782 0) (0.0007552328719 0.06370560131 0) (0.0007588402518 0.0638619462 0) (0.0007431552644 0.06323717295 0) (0.0007473618186 0.06339319304 0) (0.0007692047038 0.06433133377 0) (0.000762474378 0.06401836372 0) (0.001254278658 0.06401753493 0) (0.001090039487 0.0640179445 0) (3.489183688e-05 0.06433186039 0) (0.0001169328811 0.06433167075 0) (0.000118270314 0.06440991941 0) (-0.001601755891 0.06100728838 0) (-0.001519702445 0.06100800168 0) (-0.001852167547 0.06100678159 0) (-0.001768506735 0.06100660928 0) (-0.001854377819 0.06077127965 0) (-0.001769458164 0.06092796455 0) (-0.001853045093 0.06092828197 0) (-0.001785734131 0.06195504078 0) (-0.002769555782 0.06156623808 0) (-0.002934604837 0.06156663898 0) (-0.002440617695 0.06156414844 0) (-0.002442609793 0.06188060481 0) (-0.0004325331197 0.06198792008 0) (-0.0004391676209 0.06183290809 0) (-0.0004458131656 0.06167777967 0) (-0.0002885962214 0.06168021774 0) (-0.0001300602552 0.06168213644 0) (-0.00118744204 0.06076671395 0) (-0.001187135831 0.0609241607 0) (-0.001271238197 0.06092550144 0) (-0.001272264069 0.06100503448 0) (-0.001187999644 0.06100354691 0) (-0.001438738286 0.06100814031 0) (-0.0001007805591 0.06230137789 0) (-0.0002610087904 0.06230012695 0) (-0.0004231464078 0.06222084999 0) (-0.0004262621685 0.06214321144 0) (-0.004200108123 0.07365091017 0) (-0.004198047692 0.07396583682 0) (-0.004195915075 0.07428067556 0) (-0.003198420292 0.07458899522 0) (-0.003200626589 0.07427403904 0) (-0.003864035626 0.0742784771 0) (-0.003861931575 0.07459339324 0) (-0.003868287568 0.07364862475 0) (-0.003854128041 0.07554293 0) (-0.003850911851 0.07586055895 0) (-0.003859362136 0.07491021402 0) (-0.003195791725 0.074905935 0) (-0.002203909372 0.07458358783 0) (-0.002202522728 0.07474199384 0) (-0.002201135798 0.07490043917 0) (-0.002199539218 0.0750596724 0) (-0.001700704612 0.07521680798 0) (-0.001702568346 0.07505689067 0) (-0.002033867841 0.07505872515 0) (-0.002032214903 0.07521769726 0) (-0.002038281677 0.07458264235 0) (-0.002036895511 0.07474098282 0) (-0.002028060084 0.07553821331 0) (-0.001862000424 0.07553858283 0) (-0.0018596219 0.07569918823 0) (-0.001856639626 0.07586069708 0) (-0.002030457691 0.07537698758 0) (-0.001698396343 0.07537776637 0) (0.0006051028968 0.07570600234 0) (0.0006929595041 0.0757059728 0) (-0.002220837628 0.07222309646 0) (-0.002219796613 0.07238004265 0) (-0.002218756765 0.07253682863 0) (-0.001721521509 0.07269035059 0) (-0.00172266458 0.07253339058 0) (-0.002053349116 0.07253566773 0) (-0.002052278867 0.07269262827 0) (-0.002055473672 0.07222193588 0) (-0.002049006361 0.07316399008 0) (-0.002047905816 0.07332111061 0) (-0.002051192674 0.07284977803 0) (-0.001720362388 0.07284751439 0) (0.003937422797 0.06635645232 0) (0.003606267323 0.0663580629 0) (0.003275431416 0.06635955463 0) (0.00327086111 0.06604598625 0) (0.003611010916 0.06667142611 0) (0.003941977478 0.06666987517 0) (0.002949662381 0.06667480047 0) (0.005235621557 0.06650274164 -3.56242813e-13) (0.004609106115 0.06698019146 0) (0.003954935717 0.06761122666 0) (0.0004610400648 0.06542871503 0) (0.0004597511961 0.06535033493 0) (0.0003766871551 0.06535085246 0) (0.0003742236755 0.06511538149 0) (0.0003751153616 0.06519382275 0) (0.0004664217397 0.06574249598 0) (0.0004653086754 0.06566405634 0) (0.0004638726007 0.06558566274 0) (0.0005463059278 0.06558533915 0) (0.000536417382 0.06199250117 0) (0.0005430518832 0.06214751315 0) (0.0003795857037 0.06214746557 0) (0.0003729965642 0.06199248238 0) (0.00039187273 0.06245805016 0) (0.0005550683307 0.06245814341 0) (6.637895376e-05 0.062457493 0) (0.001218913234 0.06261215615 0) (0.0008885449978 0.06261326578 0) (0.000549127566 0.06230279138 0) (0.0007387883963 0.06308113946 0) (0.0007342628052 0.06292531103 0) (0.000570529172 0.06292533822 0) (-0.001712281844 0.07394908863 0) (-0.001713518983 0.07379121171 0) (-0.002044466102 0.0737934325 0) (-0.002043272868 0.07395128062 0) (-0.002046789328 0.07347842037 0) (-0.002205131533 0.0744257676 0) (-0.002039533593 0.07442473641 0) (-0.002042051353 0.074109012 0) (-0.002207605176 0.07411010114 0) (-0.00171101653 0.07410683426 0) (-0.002206398119 0.0742678472 0) (-0.0008609709061 0.07570567225 0) (-0.0007774777704 0.07570647557 0) (-0.0006904807645 0.07579221042 0) (-0.0006866283966 0.07587679568 0) (-0.0007830835975 0.07537611532 0) (-0.000867577145 0.07537534113 0) (0.00153774923 0.07536690117 0) (0.001869925877 0.07536151225 0) (0.001868274547 0.07584276089 0) (0.001869026909 0.07568207094 0) (0.001703249872 0.07472650985 0) (0.001703662794 0.07488520988 0) (0.001537770065 0.07488776236 0) (0.002367399373 0.07503574817 0) (0.002201517264 0.07503775875 0) (0.00220024717 0.07472135673 0) (0.0005507213007 0.065899433 0) (0.0004679625807 0.06589987548 0) (0.0004672305436 0.06582115632 0) (0.0004673388889 0.06629363356 0) (0.0004675375138 0.06621490763 0) (0.0005524382746 0.06621399803 0) (0.0006362439309 0.06621331488 0) (0.001963385937 0.06699291934 0) (0.001961078248 0.06683604064 0) (0.00195903346 0.06667926198 0) (0.00146042691 0.06636744168 0) (0.001462720777 0.06652442244 0) (0.001794132276 0.06667996767 0) (0.001629477943 0.06668056961 0) (0.001627199913 0.06652376352 0) (0.00162490647 0.06636684102 0) (0.001798572351 0.06699365352 0) (0.001796308037 0.06683673081 0) (0.001620145767 0.06605312837 0) (0.001617852855 0.06589627869 0) (0.001615166811 0.06573944645 0) (0.001622671497 0.06620994722 0) (0.001458148562 0.0662105919 0) (0.001477584418 0.06762341295 0) (0.001479543411 0.06778041071 0) (0.00180892352 0.06777901697 0) (0.001806949644 0.06762197562 0) (0.001812931649 0.06809339053 0) (0.001965431892 0.06714985821 0) (0.001800647329 0.06715057761 0) (0.001804947276 0.06746502187 0) (0.001969731309 0.06746422964 0) (0.001475669754 0.06746650225 0) (0.001967611366 0.0673071311 0) (-0.000223178202 0.06378384815 0) (-0.0002233705239 0.06370513962 0) (-0.0001408588406 0.06370481546 0) (-5.894925864e-05 0.06370471416 0) (-0.0005741586698 0.06261050354 0) (-0.0005713470919 0.06268817343 0) (-0.0002417301218 0.06284482411 0) (-0.0003221268049 0.06284428809 0) (-0.0003295900758 0.06261067418 0) (-0.0003269924878 0.06268836019 0) (-0.0007800039197 0.0771783987 0) (-0.0007842317064 0.07702126307 0) (-0.0006145688512 0.07702180298 0) (-0.0006122747163 0.07717802052 0) (-0.000620920734 0.07670859859 0) (-0.0007985558683 0.07670355057 0) (-7.504608663e-05 0.07671649962 0) (-0.0002606667881 0.07671542487 0) (-0.001505665341 0.07651209283 0) (-0.001338100257 0.07651357872 0) (-0.001332474359 0.0766752951 0) (-0.001501938651 0.07667162079 0) (-0.0009823193202 0.07669219679 0) (-0.0009931620129 0.07652753984 0) (-0.0009504533067 0.07717745669 0) (-0.000960010097 0.07701737257 0) (-0.0008474469275 0.07603890811 0) (-0.001015157128 0.07603649562 0) (-0.001023668383 0.0758669785 0) (-0.001003241779 0.07636164367 0) (-0.001509910588 0.07635135974 0) (-0.001341762441 0.07635410856 0) (0.001364588555 0.07617546039 0) (0.00119719931 0.07617951961 0) (0.001028264933 0.07618561027 0) (0.00103120001 0.07602363842 0) (0.0006512845948 0.07716661049 0) (0.0006528658772 0.07700954326 0) (0.000821816009 0.07700661603 0) (0.0008211326503 0.07716338106 0) (0.0008353590671 0.07668527196 0) (0.0006594326978 0.07669326185 0) (0.001356503475 0.07665886288 0) (0.001185560601 0.07666615814 0) (0.0001203476335 0.0767129618 0) (0.0004857585368 0.0766989122 0) (0.0004805098509 0.07716999233 0) (0.0004809672115 0.07701359454 0) (0.001121421455 0.07513293525 0) (0.001121673362 0.07521332561 0) (0.001120125084 0.07497232488 0) (0.001204596225 0.07497162233 0) (0.001204378008 0.07489185802 0) (0.0007802102808 0.07562235406 0) (0.0009526168148 0.07561844036 0) (0.0008643520249 0.07586762052 0) (0.0008646781582 0.07578640331 0) (0.000866134083 0.07570372267 0) (0.0009516480503 0.0757006151 0) (0.0008648144807 0.07529632248 0) (0.000865105729 0.07537691501 0) (0.0007770432758 0.07537627897 0) (0.001037246706 0.07537533658 0) (0.001122078422 0.07537234613 0) (0.001122009437 0.0752928735 0) (0.001281982036 0.07251120319 0) (0.001361901287 0.07251046095 0) (0.00136641956 0.07282688448 0) (0.001286593839 0.07282766973 0) (0.001255469543 0.06998345894 0) (0.001338760894 0.06998295432 0) (0.001340800258 0.07029898807 0) (0.001257003022 0.07029962746 0) (0.0009815627316 0.0674687315 0) (0.001065946603 0.06762524551 0) (0.0007294659259 0.06747082958 0) (0.0008141550018 0.06747005261 0) (0.0008136452302 0.06754885364 0) (0.0008126735565 0.0676276289 0) (0.0008107127991 0.066997789 0) (0.0008115132601 0.06707630375 0) (0.000811901444 0.06715480693 0) (0.0007274763011 0.06715562568 0) (0.0008127553872 0.0677062654 0) (0.0008147881759 0.0677845964 0) (0.0007277978835 0.06778578338 0) (0.00115141547 0.06786034503 0) (0.001068926085 0.06786077099 0) (0.001066905285 0.06770368629 0) (-0.001935601591 0.0651680914 0) (-0.001936523863 0.06501145022 0) (-0.001773664021 0.06501043896 0) (-0.001773181304 0.06508872298 0) (-0.001772494049 0.06516709291 0) (-0.001773999929 0.06493231409 0) (-0.001693108464 0.06493187064 0) (-0.002264591853 0.06485701671 0) (-0.002100741529 0.06485601281 0) (0.0006149700614 0.0648013083 0) (0.0004516765898 0.06480137598 0) (0.0002851646555 0.06464470268 0) (0.0003696688314 0.06480153626 0) (0.0003732924534 0.06503691139 0) (0.0003710479991 0.0648799157 0) (0.0004530299659 0.06487981388 0) (-0.00178943644 0.06266066056 0) (-0.001789904594 0.06258237643 0) (-0.001788902702 0.06250395052 0) (-0.001710441893 0.06250374325 0) (-0.002276165196 0.06234983158 0) (-0.002112983666 0.06234899276 0) (-0.001949856523 0.06250468572 0) (-0.002031261822 0.0623485724 0) (-0.002032466305 0.06211317965 0) (-0.002033123795 0.0620348969 0) (-0.002031586665 0.06226996679 0) (-0.002113308297 0.06227041629 0) (-0.00227308696 0.06297651728 0) (-0.002109789552 0.06297559023 0) (-0.001945509067 0.06313165348 0) (-0.001948333879 0.06281776652 0) (-0.001706051769 0.06281657012 0) (-0.001786594219 0.0628169382 0) (-0.001788182979 0.06273877875 0) (-0.00129786838 0.0740253923 0) (-0.001298775536 0.07394642681 0) (-0.001296078171 0.07418281368 0) (-0.001379214503 0.07418340456 0) (-0.001040345063 0.07457663179 0) (-0.001037725912 0.07449687886 0) (-0.00103581879 0.07441735396 0) (-0.000945590659 0.07441596862 0) (-0.001383391287 0.07371027239 0) (-0.001300838667 0.07370972945 0) (-0.001299641835 0.07386727167 0) (-0.001202258869 0.07529594724 0) (-0.001201132167 0.07537645941 0) (-0.0009488120318 0.07553942769 0) (-0.0009503612951 0.07545729168 0) (-0.0011182688 0.07537558649 0) (-0.001034982341 0.07537581017 0) (-0.00103368121 0.07545707408 0) (-0.001032347472 0.07553821541 0) (-0.001119273507 0.07529542592 0) (-0.001028207328 0.07570311634 0) (-0.001025818712 0.07578550754 0) (-0.001030486287 0.07562038264 0) (-0.0009471017267 0.07562127706 0) (-0.0009584788184 0.07473523967 0) (-0.001041843624 0.07473545789 0) (-0.001041985668 0.07465615329 0) (-0.001036591663 0.07521442721 0) (-0.001036813207 0.07513400604 0) (-0.00103677979 0.07505419475 0) (-0.0009507564108 0.07505363674 0) (-0.001205065998 0.07505508822 0) (0.001285220419 0.07377787923 0) (0.001368239225 0.07377675029 0) (0.00136906526 0.07409417657 0) (0.001285011932 0.07409505087 0) (0.001200017719 0.0740957281 0) (0.001198722457 0.07401627022 0) (-0.001312583035 0.07151086009 0) (-0.001310934381 0.07143244402 0) (-0.001316045926 0.07166795559 0) (-0.001481057376 0.0715905202 0) (-0.001398048998 0.07158995938 0) (-0.001398387257 0.07166851155 0) (-0.00148283861 0.07119873136 0) (-0.001566220974 0.0711993386 0) (-0.001310894722 0.07119728982 0) (-0.001310116 0.07135401944 0) (-0.001306203791 0.07276602137 0) (-0.001307174047 0.07268739134 0) (-0.001304250306 0.07292306287 0) (-0.001388107255 0.07292370269 0) (-0.001392668755 0.07245274353 0) (-0.001309961965 0.07245217034 0) (-0.001308110063 0.07260886301 0) (0.001276344573 0.07124589917 0) (0.001355325619 0.0712455279 0) (0.001355137061 0.07156163614 0) (0.00127561319 0.07156206963 0) (0.001683040743 0.07140150788 0) (0.001684103216 0.07155940064 0) (0.00151897229 0.07156055952 0) (0.001519067586 0.07148164499 0) (0.001518637716 0.07140261776 0) (0.001518083035 0.07171845193 0) (0.001518454629 0.07163947713 0) (0.001435029922 0.07164007011 0) (0.002015747851 0.07171495874 0) (0.001850485846 0.07171611858 0) (0.001686141731 0.07187531788 0) (0.002010142625 0.07108328104 0) (0.001845069426 0.07108436668 0) (0.001681657111 0.0712435155 0) (0.001434621959 0.07116605115 0) (0.001517195509 0.07124458211 0) (0.001516401425 0.07116554297 0) (0.001518091014 0.07132354769 0) (0.001692904348 0.07266592177 0) (0.001693983825 0.07282414941 0) (0.001529174588 0.07282548073 0) (0.001528874949 0.07274633603 0) (0.00152824033 0.07266719377 0) (0.00152954673 0.0729045812 0) (0.001447404323 0.07290525223 0) (0.002025483347 0.07297978139 0) (0.001860149581 0.0729810874 0) (0.002020875954 0.07234712056 0) (0.001855541658 0.07234835375 0) (0.001688619829 0.07219159605 0) (0.001691504985 0.07250776929 0) (0.001440889655 0.07243069514 0) (0.001526185996 0.07250910432 0) (0.001524445016 0.07243004295 0) (0.001522877324 0.0723507764 0) (0.001527475056 0.07258811073 0) (-0.001414098026 0.06892599873 0) (-0.001412662481 0.0690043195 0) (-0.001411244945 0.06908256759 0) (-0.001496732571 0.06908329211 0) (-0.001500581093 0.068769835 0) (-0.001416971632 0.06876921154 0) (-0.001415535345 0.06884763427 0) (-0.00140987847 0.07018040379 0) (-0.0014089249 0.07025874264 0) (-0.001407962591 0.07033708143 0) (-0.001490452478 0.07033763847 0) (-0.001493247574 0.07002423194 0) (-0.001411642881 0.07002372504 0) (-0.001410805825 0.07010206475 0) (0.001076809201 0.06880463551 0) (0.001074931768 0.06864763716 0) (0.001325136404 0.06864591698 0) (0.001242501799 0.06864640225 0) (0.001245415384 0.06903947914 0) (0.001160659312 0.0690402566 0) (0.001161102724 0.06896154344 0) (0.001161305188 0.06888274465 0) (-0.001519673603 0.06657616063 0) (-0.001600294276 0.06657658754 0) (-0.001599086826 0.06626278774 0) (-0.001515580772 0.06626216503 0) (-0.001412378162 0.06767136106 0) (-0.001414068311 0.06774987939 0) (-0.001417702164 0.06782849925 0) (-0.001503887211 0.06782925799 0) (-0.001588456251 0.06782991756 0) (-0.001589211015 0.0675162777 0) (-0.001502830912 0.06751550298 0) (-0.001413863573 0.0675145929 0) (-0.001412545787 0.06759294366 0) (0.0007241282726 0.06668429355 0) (0.0007245859411 0.06676273797 0) (0.0008917091163 0.06684014341 0) (0.0008088134914 0.06684058689 0) (0.0008078666728 0.06676217516 0) (0.0008072388135 0.06668376111 0) (0.0008927484327 0.06691865642 0) (0.0009676260116 0.06636902055 0) (0.0009698512426 0.06652617659 0) (0.000805321951 0.06652674848 0) (0.0008042099965 0.06644806122 0) (0.0008033681188 0.06636945938 0) (0.0008062133475 0.06660534996 0) (0.0007232598894 0.06660585212 0) (0.0006378881115 0.06652808435 0) (0.0005516668168 0.06652926574 0) (0.0005528592335 0.06684360154 0) (0.0006395968202 0.06684231444 0) (-0.001780219546 0.06391427184 0) (-0.0017809506 0.06383588768 0) (-0.001781230583 0.06375744196 0) (-0.001701052136 0.0637570911 0) (-0.002270211989 0.06360329185 0) (-0.002106783607 0.06360234928 0) (-0.001943290553 0.06375828718 0) (-0.001943754772 0.06344454324 0) (-0.002267525506 0.06423018431 0) (-0.002103849742 0.06422921081 0) (-0.001939500361 0.06438473465 0) (-0.001941487367 0.06407189027 0) (-0.001696264637 0.06407048312 0) (-0.001778248216 0.06407096365 0) (-0.001779270026 0.06399265442 0) (-5.390443187e-05 0.06401838105 0) (-0.000137671863 0.06401909304 0) (-0.001525618736 0.065322409 0) (-0.001607511803 0.065322918 0) (-0.001613060275 0.06500963348 0) (-0.001534611542 0.06500936804 0) (0.0002698441544 0.06386177867 0) (0.0002732847092 0.06401841608 0) (0.0001104893875 0.06401808687 0) (0.0001088788588 0.06393973824 0) (0.0001072354685 0.06386147724 0) (0.000113881166 0.06417482659 0) (0.000112116043 0.06409644996 0) (3.031538818e-05 0.0640964485 0) (0.0006025194047 0.06417505499 0) (0.000439617502 0.06417509069 0) (0.000279932471 0.0643316489 0) (-0.002279916256 0.06172275752 0) (-0.002117083528 0.0617220232 0) (-0.002116614526 0.06180042384 0) (-0.002035402434 0.06180000719 0) (-0.002035973386 0.06172160729 0) (-0.00203383933 0.06195664371 0) (-0.002022193771 0.06148374587 0) (-0.002001330214 0.06139661102 0) (-0.002035699606 0.06164320124 0) (-0.002116780619 0.06164361694 0) (-0.0008439231832 0.0615157726 0) (-0.0009245358683 0.06151529642 0) (-0.0009296710601 0.06143856105 0) (-0.000939019915 0.0613634294 0) (-0.0008350249759 0.06182782383 0) (-0.0007545595744 0.06182847587 0) (-0.0007475074618 0.06214083183 0) (-0.0008299894877 0.06214106839 0) (-0.0004151514606 0.06245427069 0) (-0.0006605374328 0.06245406231 0) (-0.0005776847585 0.0624537211 0) (-0.0005759659233 0.06253214177 0) (-0.0005059061691 0.06214234951 0) (-0.000585557558 0.06214147306 0) (-0.0005880848413 0.06206364089 0) (-0.000590540229 0.06198588101 0) (-0.0005028000732 0.06222006095 0) (-0.000664185333 0.06221915344 0) (-0.004209087795 0.05827987683 0) (-0.004204521662 0.05890687212 0) (-0.00319865536 0.05952672104 0) (-0.003200938957 0.05921315057 0) (-0.003534710181 0.05921558128 0) (-0.003532426584 0.05952915175 0) (-0.003866183244 0.05953158235 0) (-0.003859333514 0.06047214812 0) (-0.003863899647 0.05984515282 0) (-0.003196371763 0.05984029151 0) (-0.002197356253 0.05951942901 0) (-0.002195072656 0.05983299948 0) (-0.001525258262 0.06014170862 0) (-0.001692139505 0.06014292394 0) (-0.001859017835 0.06014413924 0) (-0.002025910729 0.06014535465 0) (-0.0020224713 0.06061563743 0) (-0.002024769461 0.06030206706 0) (-0.001524124276 0.06029842108 0) (-0.001690998237 0.06029963635 0) (0.001131174598 0.05824098603 0) (0.001135740731 0.05886798132 0) (0.0004727742157 0.05949998362 0) (0.0004704906189 0.05918641315 0) (0.0001367252206 0.05918884382 0) (0.002475368062 0.0594853996 0) (0.001807840178 0.05949026092 0) (0.001480918684 0.06043325739 0) (0.001478636148 0.06011983256 0) (0.001144875119 0.0601222632 0) (0.0005877630846 0.06354940107 0) (0.0004249312744 0.06354926147 0) (0.0002659994816 0.06370545008 0) (0.0001036503309 0.06370498653 0) (2.24617745e-05 0.06370483497 0) (0.0001055890593 0.06378320169 0) (0.001178958336 0.06136737671 0) (0.0008418767775 0.06137085108 0) (0.0005216548768 0.06168299785 0) (2.118016244e-05 0.06152925187 0) (0.0001929288057 0.06168360031 0) (0.0001839401054 0.06152952307 0) (0.000209024606 0.06199258413 0) (0.0002013045874 0.06183791505 0) (-0.0004536369888 0.07655305266 0) (-0.0004640182201 0.07639316097 0) (-0.0003717896311 0.07639706713 0) (-0.000374117044 0.07631868002 0) (-0.0004695120062 0.07631278548 0) (-7.75023069e-05 0.07632740151 0) (-0.0001764875198 0.07632672412 0) (-0.0008395602594 0.07620386056 0) (-0.0007509997809 0.07621028261 0) (-0.0006611884222 0.07621706842 0) (-0.0006572718665 0.07629786759 0) (-0.0005693217713 0.07630167527 0) (-0.0005744559603 0.0762202776 0) (-0.0005658792755 0.07638157923 0) (-0.0005937041051 0.07596943172 0) (-0.0005783452641 0.07613982051 0) (-0.0008440227295 0.07612089953 0) (-0.0007571141432 0.07612589312 0) (0.0006903011917 0.07603814833 0) (0.0006046209714 0.07604102698 0) (0.0005170246711 0.07604560041 0) (0.0005187493193 0.07596161933 0) (0.000312402685 0.07654747101 0) (0.0003170497441 0.07638897883 0) (0.000406609588 0.07638482806 0) (0.0004098200943 0.07630447657 0) (0.0003179880186 0.07631001738 0) (0.0005028398342 0.07629701908 0) (0.0005089958922 0.07621333403 0) (2.945768378e-05 0.0763249301 0) (0.000227261496 0.07631416644 0) (0.0002269468263 0.07639275777 0) (0.00116520639 0.06982723534 0) (0.001164273577 0.06974854678 0) (0.001078934343 0.06967064769 0) (-0.001920167633 0.06767539407 0) (-0.001921163788 0.06751860778 0) (-0.001756454804 0.06751751023 0) (-0.001755840265 0.06759589524 0) (-0.001755429521 0.06767429631 0) (-0.001756952829 0.06743912436 0) (-0.001674096026 0.06743855008 0) (-0.002251301295 0.067364 0) (-0.002086694261 0.06736290319 0) (-0.002247622632 0.06799113284 0) (-0.002082899084 0.06799003519 0) (-0.001919229736 0.06783218079 0) (-0.001754564339 0.06783109813 0) (-0.001671751229 0.06783052416 0) (-0.001754916826 0.06775269664 0) (-0.002261498628 0.06548376056 0) (-0.002097415487 0.06548272583 0) (-0.001934561636 0.06532489194 0) (-0.001688317202 0.06540177945 0) (-0.001771075315 0.06532390525 0) (-0.001770315027 0.06540230377 0) (-0.001771806476 0.06524550652 0) (-0.001782807397 0.06234692323 0) (-0.001780133681 0.06226806275 0) (-0.00194938873 0.06219092043 0) (-0.00186536731 0.06219026484 0) (-0.00135837702 0.06014049329 0) (-0.001357247403 0.06029720579 0) (-0.001023473266 0.06029477506 0) (-0.001024608708 0.0601380626 0) (-0.001021274142 0.06060834614 0) (-0.0008622902902 0.05950970631 0) (-0.0008600066933 0.05982327678 0) (-0.001191492864 0.06013927795 0) (0.001700250514 0.07393265529 0) (0.001700996284 0.07409106014 0) (0.001535402799 0.07409270303 0) (0.001535015456 0.07401351528 0) (0.00153471465 0.07393421038 0) (0.001452443409 0.07409319067 0) (0.002032843441 0.07424642742 0) (0.001867264202 0.07424802652 0) (0.002029482431 0.07361291273 0) (0.001864018328 0.07361432165 0) (0.001699473282 0.07377393024 0) (0.001450576863 0.07369688726 0) (0.00153403746 0.07377522242 0) (0.001533476405 0.07369618159 0) (0.001534397477 0.07385465798 0) (-0.001912127163 0.06892946544 0) (-0.001913196564 0.06877262142 0) (-0.002243858705 0.06861797376 0) (-0.002079018748 0.0686168607 0) (-0.001341163959 0.06845529084 0) (-0.001419810495 0.06861239497 0) (-0.00142121993 0.06853405943 0) (0.00108183537 0.06935500034 0) (0.001161761342 0.06919758103 0) (0.001163715194 0.06927607282 0) (0.001657352125 0.06888009346 0) (0.001659064373 0.06903720954 0) (0.001990664466 0.06919265144 0) (0.001825721074 0.06919356135 0) (0.001670908036 0.07013951375 0) (0.00167230411 0.07029721474 0) (0.001507141192 0.0702979806 0) (0.00150665508 0.07021923052 0) (0.0015060077 0.07014033596 0) (0.001507539493 0.07037667306 0) (0.001424260218 0.07037723585 0) (0.002004004351 0.07045240831 0) (0.001838901599 0.0704534359 0) (0.001997535021 0.0698220769 0) (0.001832533478 0.06982300179 0) (0.001669247469 0.06998149426 0) (0.001420667648 0.06990392464 0) (0.00150430291 0.06998224396 0) (0.001503379656 0.06990346794 0) (0.001505198733 0.07006125323 0) (-0.00192807363 0.06642178781 0) (-0.001928822085 0.06626501427 0) (-0.001764622853 0.06626392044 0) (-0.001764459703 0.06634232331 0) (-0.001764194496 0.06642074 0) (-0.001764610913 0.06618555999 0) (-0.00168165216 0.06618498497 0) (-0.002258216173 0.06611048847 0) (-0.002093885756 0.06610940824 0) (-0.002254831025 0.06673731759 0) (-0.002090413222 0.06673623672 0) (-0.001927150403 0.06657856007 0) (-0.00168093531 0.06665541866 0) (-0.001763270845 0.06657757052 0) (-0.001762729339 0.06665592694 0) (-0.001763798104 0.0664991703 0) (-0.001425622354 0.06798574374 0) (-0.001427314171 0.06806423295 0) (-0.001348611169 0.06814228232 0) (-0.001335430584 0.06720056569 0) (-0.001417834164 0.06735797391 0) (-0.00142001384 0.06727967312 0) (0.0009653762619 0.06621209773 0) (0.0007171509037 0.06605580104 0) (0.0007181739872 0.06613428503 0) (0.0008013981107 0.06621254909 0) (0.0008003017811 0.06613400737 0) (0.000799226266 0.06605552375 0) (0.0008023396338 0.06629103368 0) (-0.001691716527 0.06130900461 0) (-0.001677247902 0.06124175403 0) (-0.001590691143 0.0612440367 0) (-0.001478171673 0.0612765714 0) (-0.002185822814 0.06108713487 0) (-0.00201869583 0.06108606341 0) (-0.001848956578 0.06124169365 0) (-0.001933461061 0.06124201775 0) (-0.001947867677 0.06131378308 0) (-0.001953080509 0.06187798652 0) (-0.001871155188 0.06187750641 0) (-0.0006811771009 0.0616737405 0) (-0.0006777706611 0.06175149345 0) (-0.0005961576651 0.06183052662 0) (-0.0005992158048 0.06175280027 0) (-0.0006024470481 0.0616751043 0) (-0.0005937206808 0.06190835946 0) (-0.0004592158496 0.06136699929 0) (-0.0004529621065 0.06152272773 0) (-0.0008513576945 0.06107770784 0) (-0.001019219245 0.06107951291 0) (-0.001104204605 0.06108100573 0) (-0.001050127181 0.06129501052 0) (-0.001105012281 0.06116010023 0) (-0.0009115544104 0.06122583658 0) (-0.0009958298539 0.0612244112 0) (-0.001019654738 0.0611583134 0) (-0.001372776543 0.06125643224 0) (-0.001350966129 0.06131351434 0) (-0.001417776827 0.06132244866 0) (-0.00146560055 0.06130036665 0) (0.000291893688 0.06527309504 0) (0.0002066780475 0.06527416715 0) (0.0003818394751 0.06621593955 0) (0.0004683725917 0.06605717583 0) (0.0004678008297 0.0661360647 0) (-0.0003061238029 0.06370550923 0) (-0.0002254618499 0.06354855065 0) (-0.0002239985557 0.06362668188 0) (-0.0003981302082 0.06307893225 0) (-0.0004800237567 0.06307897517 0) (-0.0004051879422 0.06276580437 0) (-0.0004860716018 0.06276551951 0) (0.001035440557 0.07505332652 0) (0.0009490095451 0.07505331072 0) (0.0009519420535 0.07537638604 0) (0.0008670323313 0.07553826507 0) (0.0008661550089 0.07545719616 0) (0.001168005293 0.06990576467 0) (0.0008126328254 0.06731223602 0) (0.0008135486139 0.06739118689 0) (0.0008983214297 0.06746930858 0) (0.0009873700528 0.0680971597 0) (0.0009024251461 0.06809780745 0) (0.0009847428354 0.06778280522 0) (0.0009004877772 0.06778357903 0) (0.0008178550051 0.06786271595 0) (0.0001188150504 0.06480331942 0) (0.0001191752723 0.06488198303 0) (0.0002893073569 0.06495875483 0) (0.0002052822032 0.06495949783 0) (-0.001869052127 0.0625042866 0) (-0.00178621124 0.06242552686 0) (-0.001783019962 0.06297373485 0) (-0.001784829414 0.06289527114 0) (-0.001867384051 0.06281733721 0) (-0.001037767229 0.07425920548 0) (-0.001040707434 0.07418047327 0) (-0.001213484751 0.07410347313 0) (-0.001129229056 0.07410278671 0) (-0.001209636311 0.07441931893 0) (-0.001123837856 0.07441847562 0) (-0.001035875523 0.0743381638 0) (-0.001215311157 0.0734724816 0) (-0.001128548117 0.07347168953 0) (-0.001218191002 0.07378783749 0) (-0.001136673377 0.07378737492 0) (-0.001038627408 0.07489429044 0) (-0.001040432375 0.07481464256 0) (-0.001125423109 0.07473559757 0) (0.001203199476 0.0742548289 0) (0.001202031108 0.07417519532 0) (0.001114125175 0.07409625166 0) (-0.001230744039 0.07158872641 0) (-0.001147588879 0.07158812083 0) (-0.001235921779 0.07190294839 0) (-0.001157246691 0.07190256478 0) (-0.001226168263 0.07096144606 0) (-0.001136762325 0.07096056191 0) (-0.001219999351 0.07127472606 0) (-0.001127704481 0.07127373349 0) (-0.001220277507 0.07284393075 0) (-0.001133933815 0.0728431563 0) (-0.001214704693 0.07315795792 0) (-0.001125450647 0.07315701662 0) (-0.001231090906 0.07221629639 0) (-0.001150054223 0.07221579363 0) (-0.001225782187 0.0725298594 0) (-0.001142156705 0.07252923582 0) (-0.001234198386 0.07064899526 0) (-0.001148096356 0.07064823713 0) (0.0009901949005 0.06872705157 0) (0.0009035755747 0.0687281776 0) (0.0009913765711 0.06841191196 0) (0.0009083220887 0.06841234203 0) (-0.001330294136 0.06782767335 0) (-0.001422125193 0.067907154 0) (-0.001415736047 0.0674362753 0) (-0.001323278664 0.06751359821 0) (-0.001951566734 0.06156384948 0) (-0.001870938065 0.06156332056 0) (-0.0009202070305 0.0616709078 0) (-0.0009181730259 0.06174900574 0) (0.004030869602 0.0761280343 0) (0.003698406866 0.07613213921 0) (0.003364794591 0.07677439568 0) (0.003364439262 0.07645760393 0) (0.003698655004 0.07645021202 0) (0.004031119437 0.07644634014 0) (0.003032213071 0.07677818976 0) (0.005269734112 0.07573262009 -3.52579077e-13) (0.004691284173 0.07697691021 -3.583244812e-13) (0.003881641345 0.06320697102 -3.586853037e-13) (0.003895416537 0.06385039185 0) (0.003232901263 0.06385355624 0) (0.003226428436 0.06354074453 0) (0.003238834572 0.06416628448 0) (0.002908231694 0.06416777452 0) (0.005098141919 0.06276034223 -3.492761635e-13) (0.004549059026 0.06416679347 -3.570754803e-13) (-0.0002274263953 0.06347051046 0) (-0.0003126015402 0.06339284322 0) (0.001440295377 0.06511309424 0) (0.001442994182 0.06526967879 0) (0.001610204222 0.06542601201 0) (0.001607532742 0.06526917965 0) (0.001604818524 0.06511247869 0) (0.00161283116 0.06558272817 0) (0.001923185372 0.06448480661 0) (0.001928932526 0.06479797316 0) (-0.0002848070857 0.0762436164 0) (-0.0002925874213 0.07616386493 0) (-0.0004956197724 0.07606341533 0) (-0.000402690032 0.07607239961 0) (0.0003335441097 0.07606149154 0) (0.0002376961226 0.07607019018 0) (0.000125886716 0.07624235729 0) (0.0001284071902 0.07616205452 0) (0.001529662013 0.07649041025 0) (0.001696182059 0.07648799739 0) (0.002028785839 0.07679925987 0) (0.002024841384 0.07711962955 0) (0.00186695756 0.07600391959 0) (0.001697393238 0.07632830967 0) (0.001699465667 0.07616688389 0) (0.00186655786 0.07616303511 0) (0.001530442711 0.07633161123 0) (0.001203935157 0.07481224828 0) (0.001117782187 0.07473261167 0) (-0.001903881625 0.07018369553 0) (-0.001904935614 0.07002696792 0) (-0.002236019166 0.06987245442 0) (-0.002070960744 0.06987133976 0) (-0.002232007221 0.07049935179 0) (-0.002066846848 0.07049823639 0) (-0.001902827743 0.07034040858 0) (0.0002028181842 0.06464495281 0) (0.000119302127 0.06472440204 0) (0.0007894214626 0.065427984 0) (0.0009477213075 0.06511421994 0) (0.0009504875329 0.06527086225 0) (-0.001863103335 0.06313114074 0) (-0.001781181169 0.06305222747 0) (0.001116144743 0.07441356729 0) (0.001202982215 0.07433419584 0) (-0.002239990707 0.06924510523 0) (-0.002074990648 0.06924397643 0) (-0.001911073387 0.06908616392 0) (-0.001408528875 0.06923912288 0) (-0.001407346326 0.06931750376 0) (-0.001316657132 0.06939502889 0) (-0.001326383715 0.06970942965 0) (-0.001412407144 0.06986698076 0) (-0.001411775293 0.06978854297 0) (-0.001779461103 0.06360041705 0) (-0.001777848569 0.06352184103 0) (-0.001860985249 0.06344398416 0) (0.000115441674 0.06425330668 0) (0.0001985511634 0.06433162983 0) (0.0003806834123 0.06558619574 0) (0.0004623703501 0.06550718223 0) (0.002035152985 0.07488156066 0) (0.001869429343 0.07488333122 0) (0.001703778403 0.07504508457 0) (0.001704019299 0.07520416309 0) (0.0004684970445 0.065978465 0) (0.0003846305556 0.06590039496 0) (0.001018712024 0.07651165895 0) (0.001024382619 0.07634791295 0) (0.0008571977654 0.07619403814 0) (0.0008614206119 0.07603089549 0) (0.0008628739677 0.07594946208 0) (0.0007759499246 0.07603454602 0) (0.0008953653683 0.0671541991 0) (0.0008121068596 0.06723341341 0) (-0.001121440508 0.07505466565 0) (-0.001037290535 0.07497426216 0) (-0.001323852831 0.06908175637 0) (-0.001409853624 0.06916081586 0) (-0.001418396373 0.06869077416 0) (-0.001332583189 0.06876855328 0) (-0.001325420272 0.07033652401 0) (-0.001406040992 0.07049374447 0) (-0.001407000282 0.07041542022 0) (-0.001412258664 0.06994536917 0) (-0.001330872513 0.07002325335 0) (0.001160675815 0.06911892271 0) (0.001074106346 0.06904129475 0) (-0.001862093131 0.06375785607 0) (-0.001780738868 0.0636789615 0) (-0.001776192788 0.06422720332 0) (-0.001777212795 0.06414914169 0) (-0.001859940507 0.06407144206 0) (-0.0009220663405 0.06159299793 0) (-0.001010208058 0.06151667772 0) (-0.0005809824196 0.06229750504 0) (-0.0005792982776 0.06237556183 0) (-0.0004960537641 0.06245382574 0) (0.0005127622344 0.07613050679 0) (0.0004268769853 0.07605263207 0) (-0.001763578233 0.06124136318 0) (-0.001683087091 0.06108594974 0) (-0.001680401444 0.06116472749 0) (-0.001359581962 0.06108883723 0) (-0.001365317375 0.06117248281 0) (-0.001169394677 0.0612256752 0) (-0.001284788345 0.06124807194 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.616104295e-07 4.908134253e-06 -2.775557562e-17) (-6.061031397e-06 0.0001321883637 -5.273559367e-16) (0 0 0) (-2.091260678e-05 0.0006757404049 -2.692290835e-15) (-2.275917066e-05 0.0009686515003 -3.885780586e-15) (-1.947162433e-05 0.001213644556 -4.857225733e-15) (-6.443111633e-07 4.040417273e-05 -1.665334537e-16) (-1.638588741e-06 0.001430897984 -5.745404152e-15) (8.667277837e-06 0.001375463829 -5.495603972e-15) (1.674563372e-05 0.001218119164 -4.857225733e-15) (5.612091176e-07 4.114780737e-05 -1.665334537e-16) (1.953840761e-05 0.000682335593 -2.747801986e-15) (1.382679209e-05 0.0003832519658 -1.526556659e-15) (5.939733995e-06 0.0001364756892 -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.0001084331438 0.001164315033 -4.801714582e-15) (-0.0002225052761 0.00260397865 -1.071365219e-14) (-0.000346446123 0.00445530826 -1.834643548e-14) (-0.0001415634063 0.001832740877 -7.494005416e-15) (-2.511192907e-05 0.0003273407652 -1.33226763e-15) (-0.0005535393622 0.008874336603 -3.652633751e-14) (-0.0006120745716 0.01119337978 -4.607425552e-14) (-0.0006314347078 0.01343777696 -5.53168622e-14) (-0.0003886152501 0.00831781903 -3.400058013e-14) (-0.0001987244795 0.004278775113 -1.737499034e-14) (-0.0005472986177 0.01731158326 -7.127631818e-14) (-0.0004496568118 0.01878747384 -7.735478924e-14) (-0.0003232823065 0.01988427523 -8.185119249e-14) (-0.0002187244965 0.01348310216 -5.512257317e-14) (-0.0001309386227 0.00809385256 -3.286260153e-14) (-1.922698647e-05 0.02078984915 -8.55981952e-14) (0.0001384764608 0.0205684155 -8.46822612e-14) (0.0002863485375 0.01990712143 -8.196221479e-14) (0.0001917573567 0.01350123774 -5.52058399e-14) (0.0001137712571 0.008107288379 -3.291811268e-14) (0.000514920591 0.01735451346 -7.144285163e-14) (0.0005802639605 0.01555395678 -6.403211295e-14) (0.0006064167057 0.01349412315 -5.556666238e-14) (0.0003724950247 0.008360214548 -3.416711358e-14) (0.000190333629 0.004307255856 -1.748601264e-14) (0.0005378481325 0.008934614 -3.677613769e-14) (0.0004506675428 0.006644346941 -2.733924198e-14) (0.0003401114131 0.004507243692 -1.856848009e-14) (0.0001395995631 0.001864067132 -7.632783294e-15) (2.525212275e-05 0.0003396679303 -1.387778781e-15) (0.0001084097441 0.001194790094 -4.912736884e-15) (2.705443408e-05 0.0002749880585 -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.0001438706701 0.001128909419 -4.801714582e-15) (-0.0003766514788 0.003151187241 -1.335043187e-14) (-0.0006738342596 0.006037909234 -2.559064072e-14) (-0.0003860732342 0.003484004718 -1.465494393e-14) (-0.0001698495768 0.001543651916 -6.439293543e-15) (-0.001316614576 0.01375414727 -5.828670879e-14) (-0.001600297488 0.01823066709 -7.727152251e-14) (-0.001826944641 0.02288402547 -9.69779812e-14) (-0.001384457541 0.01745654585 -7.344125308e-14) (-0.0009806284332 0.01244606569 -5.198619313e-14) (-0.002049858294 0.03205490612 -1.358357871e-13) (-0.002032341453 0.03628482641 -1.537658889e-13) (-0.001929156516 0.04012528089 -1.700584118e-13) (-0.001578242645 0.03302090518 -1.38916656e-13) (-0.001237236136 0.02603492208 -1.087463453e-13) (-0.001492431852 0.04630079793 -1.96204164e-13) (-0.00118022933 0.0485260106 -2.056410597e-13) (-0.0008230789705 0.050135549 -2.124689313e-13) (-0.0006948740253 0.04245916297 -1.786348847e-13) (-0.0005658462828 0.03466119961 -1.447730824e-13) (-3.243767855e-05 0.05144067715 -2.180200465e-13) (0.0003707354146 0.05112577775 -2.166877788e-13) (0.0007589009441 0.05017055292 -2.126632204e-13) (0.0006351635524 0.04249259727 -1.788014181e-13) (0.0005121032576 0.03469198676 -1.449118603e-13) (0.001430732665 0.04637021395 -1.965649865e-13) (0.00168651448 0.04357003305 -1.847133557e-13) (0.001872763303 0.04022641167 -1.705302566e-13) (0.001528135116 0.03311406862 -1.393607452e-13) (0.001194609903 0.0261175968 -1.091071677e-13) (0.002002684422 0.0321801907 -1.364186542e-13) (0.001939054071 0.02767467933 -1.173228181e-13) (0.001793132609 0.02301934578 -9.758860386e-14) (0.001357840628 0.01757269075 -7.394085344e-14) (0.0009613333994 0.01254145799 -5.240252676e-14) (0.001298465044 0.01387819171 -5.884182031e-14) (0.0009869681677 0.009732235682 -4.127254094e-14) (0.0006675031531 0.006107491347 -2.589595205e-14) (0.000384965699 0.003550918519 -1.496025526e-14) (0.00017077767 0.00158718197 -6.633582572e-15) (0.0001693091353 0.001349930075 -5.717648577e-15) (2.707899641e-05 0.0002029797497 -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) (-7.999429216e-05 0.0005115267135 -2.248201625e-15) (-0.0003442726953 0.002322470317 -1.01307851e-14) (-0.0001748301172 0.0011891372 -5.162537065e-15) (-4.156142184e-05 0.0002854025678 -1.221245327e-15) (-0.001237852652 0.00938922351 -4.102274076e-14) (-0.001769149322 0.01431648866 -6.253331186e-14) (-0.002235360014 0.01941149064 -8.476552793e-14) (-0.00181893053 0.01594504566 -6.911138328e-14) (-0.001406495928 0.01242422564 -5.345723864e-14) (-0.003169295986 0.03216798677 -1.404709682e-13) (-0.003490910395 0.03866172742 -1.688094109e-13) (-0.003690434488 0.04495722998 -1.962874308e-13) (-0.003238151803 0.03973600626 -1.721678355e-13) (-0.002768151043 0.03420704477 -1.471323063e-13) (-0.003697464364 0.05626194129 -2.456090886e-13) (-0.003511257142 0.06101668427 -2.663980148e-13) (-0.003212993358 0.06507152176 -2.840783164e-13) (-0.002929495553 0.05975912918 -2.589317649e-13) (-0.002615187492 0.05371208585 -2.310096558e-13) (-0.002348248405 0.07100814005 -3.100297796e-13) (-0.00181844739 0.07294736971 -3.184952302e-13) (-0.001247207211 0.07427319827 -3.242961455e-13) (-0.001161625162 0.06968829076 -3.020084183e-13) (-0.001060236571 0.06400014708 -2.75279799e-13) (-4.024098616e-05 0.07529674625 -3.287925487e-13) (0.000569507678 0.07505275082 -3.277655924e-13) (0.001166946568 0.07429644061 -3.244904345e-13) (0.001086596594 0.06971743466 -3.021749517e-13) (0.0009891774595 0.06403320748 -2.75474088e-13) (0.002270145564 0.07105692472 -3.103628465e-13) (0.002744168628 0.06844753415 -2.989830605e-13) (0.003140734863 0.0651202393 -2.844668945e-13) (0.002858951635 0.05985389927 -2.594868764e-13) (0.002548800611 0.05381864832 -2.315647674e-13) (0.003663665409 0.05678242411 -2.480515793e-13) (0.00373666788 0.05143360229 -2.247091402e-13) (0.003679428419 0.0454865097 -1.987299214e-13) (0.003182766942 0.03982560654 -1.726674359e-13) (0.002720828942 0.03436328046 -1.478817069e-13) (0.003224870826 0.03311164282 -1.447175713e-13) (0.002838790899 0.02691360576 -1.176281295e-13) (0.002369791947 0.02087411616 -9.123257705e-14) (0.001907244269 0.01693984459 -7.346900865e-14) (0.001459945909 0.01308432518 -5.631606292e-14) (0.001320025912 0.01018260545 -4.449218771e-14) (0.0008216045351 0.005966560644 -2.60624855e-14) (0.0004031637452 0.002765599426 -1.207367539e-14) (0.0002177823184 0.001505760473 -6.52256027e-15) (8.202947123e-05 0.0005716085842 -2.47024623e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-4.529205607e-05 0.0002521721959 -1.1379786e-15) (-9.563480138e-05 0.0005281869309 -2.414735079e-15) (-3.935057307e-07 2.226367576e-06 -2.775557562e-17) (-0.0002055022665 0.001210365595 -5.467848396e-15) (-0.0006693398159 0.004147649801 -1.870725796e-14) (-0.001259518544 0.008234090459 -3.71092046e-14) (-0.001020712861 0.006726085688 -3.008704397e-14) (-0.0007803350166 0.005182641429 -2.300937219e-14) (-0.00267322186 0.01963968049 -8.851253064e-14) (-0.003381433075 0.02648302664 -1.193489751e-13) (-0.004022258365 0.0337292655 -1.519895321e-13) (-0.003631251438 0.03069449883 -1.372235658e-13) (-0.003206128173 0.02731759356 -1.211808431e-13) (-0.004946486642 0.04830725622 -2.176314684e-13) (-0.005178511018 0.0551072488 -2.482736239e-13) (-0.005240138966 0.06127061376 -2.760014439e-13) (-0.004949462779 0.05842968721 -2.611244554e-13) (-0.004548223336 0.05430108019 -2.407518629e-13) (-0.004896618276 0.07146461686 -3.218536548e-13) (-0.004482145087 0.07477581057 -3.367028878e-13) (-0.003978592747 0.07731440883 -3.481381849e-13) (-0.003850266486 0.07572665452 -3.383127112e-13) (-0.003669345772 0.07300807054 -3.236577673e-13) (-0.00274387481 0.07956733308 -3.5826897e-13) (-0.002069648561 0.07968351863 0) (-0.001394372892 0.07968133914 0) (-0.001386225482 0.08019718021 -3.582967256e-13) (-0.001361072801 0.07959360443 -3.528566328e-13) (-5.771567764e-05 0.07967313418 0) (0.000611917373 0.07966812645 0) (0.001289270678 0.0796624362 0) (0.001286459397 0.08018355988 -3.583244812e-13) (0.001267109709 0.0795949208 -3.529676551e-13) (0.002646491742 0.07954529434 -3.583244812e-13) (0.003294996734 0.07885583182 -3.552713679e-13) (0.003892238939 0.07732094331 -3.484157407e-13) (0.003764430646 0.07578615252 -3.388123115e-13) (0.003605723643 0.07330171093 -3.251565683e-13) (0.00482572866 0.07162151891 -3.229083667e-13) (0.005103687979 0.06738029099 -3.038125307e-13) (0.005228817456 0.06219552024 -2.80442336e-13) (0.004909981456 0.05888140607 -2.634004126e-13) (0.004538868522 0.05490224458 -2.436939539e-13) (0.004984001465 0.04949616727 -2.231825835e-13) (0.004617421155 0.04236182615 -1.910138714e-13) (0.004108514042 0.03502463689 -1.579292253e-13) (0.003714596386 0.03192633275 -1.428301921e-13) (0.003286245632 0.02847628762 -1.263988914e-13) (0.002789661828 0.02082936123 -9.389711231e-14) (0.002066660417 0.01452791702 -6.550315845e-14) (0.001314902665 0.008731389093 -3.935740622e-14) (0.001121596515 0.007510347829 -3.358424649e-14) (0.0008684282137 0.005862853083 -2.600697435e-14) (0.0001016673671 0.0005741659728 -2.609024108e-15) (0 0 0) (0 0 0) (3.22305741e-06 1.723479713e-05 -8.326672685e-17) (0 0 0) (-1.552823272e-05 7.990268929e-05 -3.885780586e-16) (-0.0002544511163 0.001370869908 -6.439293543e-15) (-0.0002885178282 0.001541425435 -7.299716387e-15) (-0.000152389399 0.0008348221871 -3.858025011e-15) (-0.0006581476443 0.003752497049 -1.745825706e-14) (-0.001298732155 0.007790122325 -3.624878175e-14) (-0.002065439532 0.01306963118 -6.081246617e-14) (-0.001882346939 0.01201028497 -5.54278845e-14) (-0.001666045287 0.01071713568 -4.907185769e-14) (-0.003716748887 0.02642375837 -1.229294444e-13) (-0.004479601259 0.03394359538 -1.579292253e-13) (-0.005131256671 0.04162043214 -1.936228955e-13) (-0.004881327894 0.03993192858 -1.842692665e-13) (-0.004671108301 0.03853606798 -1.764144386e-13) (-0.005954528804 0.05621117405 -2.614852779e-13) (-0.006083854491 0.06255167222 -2.909616992e-13) (-0.006042269757 0.06820873958 -3.172462293e-13) (-0.005914278171 0.06736077131 -3.107791802e-13) (-0.005740336513 0.06595258233 -3.018696404e-13) (-0.005376853971 0.07541523198 -3.507749646e-13) (-0.004820368496 0.07691742293 -3.577693697e-13) (-0.004168780476 0.07713064386 0) (-0.004159065027 0.07776354401 -3.58796326e-13) (-0.004135479038 0.0782183203 -3.579359031e-13) (-7.073360313e-05 0.07780595108 0) (0.0002738672367 0.07780360171 0) (0.0006261905354 0.07779883656 0) (0.0006241965667 0.07811083602 0) (0.000621728302 0.07842270785 0) (0.005714841467 0.07306030431 -3.401723347e-13) (0.005997798832 0.06904384232 -3.215205879e-13) (0.005875112497 0.06821165382 -3.150257832e-13) (0.005709465932 0.06683387254 -3.061717546e-13) (0.006045966686 0.05807451746 -2.704503288e-13) (0.005781497791 0.05129719373 -2.388922393e-13) (0.005334681403 0.04397994022 -2.048083925e-13) (0.005054257199 0.04201179195 -1.940669847e-13) (0.004716588524 0.03953664879 -1.811328865e-13) (0.003998184643 0.02887361125 -1.344480083e-13) (0.00318966301 0.0216896486 -1.010025397e-13) (0.002357872583 0.01514864206 -7.052691764e-14) (0.002137827101 0.01384855093 -6.394884622e-14) (0.001884541757 0.01230852132 -5.639932965e-14) (0.0004184482144 0.002286934382 -1.074140776e-14) (4.780472581e-05 0.0002514754144 -1.165734176e-15) (7.62755042e-05 0.0003979452839 -1.859623566e-15) (0.0001009602244 0.0005223457921 -2.47024623e-15) (2.115105249e-05 0.0001121842167 -5.273559367e-16) (-5.676791481e-05 0.0002824468717 -1.360023205e-15) (-0.0003796310176 0.001977417053 -9.603429163e-15) (-0.0004086970532 0.002110681547 -1.032507413e-14) (-0.000306409576 0.001623309273 -7.743805597e-15) (-0.000923309133 0.005089206385 -2.448041769e-14) (-0.001653787711 0.009588811631 -4.612976667e-14) (-0.002494343373 0.01525599436 -7.338574193e-14) (-0.002355634075 0.01453118286 -6.933342789e-14) (-0.002305915018 0.01434589628 -6.786238238e-14) (-0.004232691118 0.02907860161 -1.398603455e-13) (-0.005006771826 0.03665419964 -1.762756607e-13) (-0.00564824931 0.04425353664 -2.128297538e-13) (-0.005517749193 0.04360714337 -2.079725281e-13) (-0.005450530929 0.04344567786 -2.054745263e-13) (-0.006393233479 0.05826242757 -2.801925358e-13) (-0.006459543097 0.06408780158 -3.081701561e-13) (-0.006319417772 0.06879333449 -3.308187058e-13) (-0.006268272281 0.06885553721 -3.283484595e-13) (-0.006225896332 0.0690064485 -3.263223025e-13) (0.003031434654 0.07518730239 0) (0.00336332014 0.07518393285 0) (0.00336410683 0.07550195658 0) (0.003364964298 0.07581969913 0) (0.005901357461 0.07310479637 -3.519406988e-13) (0.006308365687 0.07037261029 -3.388123115e-13) (0.006264628572 0.07043996636 -3.362865542e-13) (0.006215869817 0.07043412868 -3.334554854e-13) (0.006560408849 0.06104545043 -2.939315458e-13) (0.006378091049 0.05480546216 -2.638722574e-13) (0.005992751765 0.04783317231 -2.302880109e-13) (0.005815536057 0.04680278145 -2.234323837e-13) (0.005717214411 0.04638259429 -2.196021143e-13) (0.004701233979 0.03285521796 -1.581512699e-13) (0.003870511419 0.02546495541 -1.225686219e-13) (0.002985671116 0.01855620826 -8.931744233e-14) (0.002755779979 0.01727076356 -8.243405958e-14) (0.002671668789 0.01688338597 -7.99083022e-14) (0.0006861054454 0.003626379167 -1.759703494e-14) (0.0001895099321 0.0009642144684 -4.635181128e-15) (0.0002127750038 0.001073558209 -5.218048216e-15) (0.0002213895651 0.001107625534 -5.412337245e-15) (0.0001543826331 0.0007920811432 -3.774758284e-15) (-9.541074336e-05 0.000458575494 -2.303712776e-15) (-0.0004687454808 0.002358626055 -1.185163079e-14) (-0.0004877708853 0.002432895538 -1.232347557e-14) (-0.0004308910236 0.002206197934 -1.088018564e-14) (-0.001045231333 0.005567212007 -2.772782004e-14) (-0.001808726058 0.01013398358 -5.045963647e-14) (-0.002671974027 0.01579031957 -7.860379014e-14) (-0.002632335326 0.01569183334 -7.743805597e-14) (-0.00258489673 0.01554250238 -7.605027719e-14) (-0.004427943003 0.02938360049 -1.462441279e-13) (-0.005197675211 0.03674818634 -1.829092433e-13) (-0.005827295749 0.04408226019 -2.194078252e-13) (-0.005789325245 0.04418500231 -2.180200465e-13) (-0.005743836873 0.04422542115 -2.163547119e-13) (-0.006531399866 0.05743867847 -2.858546733e-13) (-0.006571770486 0.0629002259 -3.130273818e-13) (-0.006404191463 0.06723343867 -3.34593464e-13) (-0.006387351041 0.0676725706 -3.338718191e-13) (-0.006367444816 0.06807776261 -3.329836407e-13) (0.003016013317 0.07265573267 0) (0.003347307859 0.07265321804 0) (0.003349770331 0.07296935067 0) (0.003352115653 0.07328539676 0) (0.005928889655 0.07121102822 -3.548272787e-13) (0.006376812121 0.06894622721 -3.43558515e-13) (0.006375565034 0.06947748444 -3.431976925e-13) (0.006361655529 0.0698724534 -3.421984918e-13) (0.006706368732 0.06043646549 -3.01175751e-13) (0.006556590593 0.05454399494 -2.71810352e-13) (0.006197308371 0.04787539645 -2.385591724e-13) (0.006178344617 0.04812424962 -2.377265051e-13) (0.00612009012 0.04806365311 -2.353950368e-13) (0.00493154372 0.03333789389 -1.661171201e-13) (0.004098942061 0.02608111385 -1.299238495e-13) (0.003201076254 0.01923764187 -9.58400026e-14) (0.003175491807 0.01924683922 -9.503509091e-14) (0.00310342415 0.01896975244 -9.287015601e-14) (0.0007492318337 0.003826817 -1.92346139e-14) (0.000256073205 0.001259344938 -6.272760089e-15) (0.0002496828294 0.001217314098 -6.106226635e-15) (0.0002292404212 0.001107934053 -5.606626274e-15) (0.0002466651756 0.001223568266 -6.022959909e-15) (-0.0001406418449 0.0006522563232 -3.413935801e-15) (-0.0005614298685 0.002726120696 -1.418309914e-14) (-0.0005866077223 0.002822517176 -1.482147738e-14) (-0.0005114059595 0.002528275731 -1.293409824e-14) (-0.001169871003 0.006014695723 -3.103073354e-14) (-0.001961945438 0.0106099363 -5.473399511e-14) (-0.002844408672 0.01622276116 -8.368306048e-14) (-0.00279530402 0.01608692199 -8.223977055e-14) (-0.002748798529 0.01596097165 -8.087974734e-14) (-0.004611115826 0.02952267342 -1.522393323e-13) (-0.005373734885 0.03664946462 -1.889877144e-13) (-0.005989425859 0.04369720355 -2.253197628e-13) (-0.005943844002 0.0437645188 -2.236266727e-13) (-0.005900329976 0.04384092737 -2.220446049e-13) (-0.006651229793 0.0563843169 -2.906841434e-13) (-0.00666650892 0.06149074843 -3.170241847e-13) (-0.006473424933 0.0654744785 -3.375910662e-13) (-0.006454585796 0.06590278021 -3.367583989e-13) (-0.006436271697 0.06633303151 -3.359534873e-13) (0.00299238831 0.0701316815 0) (0.00332329269 0.0701295921 0) (0.003326544959 0.07044417507 0) (0.003329828796 0.07075909282 0) (0.005871171176 0.06835303401 -3.529398995e-13) (0.006288317674 0.06586615355 -3.401168236e-13) (0.006325406084 0.06678575524 -3.417821581e-13) (0.0063456674 0.06753476832 -3.425315587e-13) (0.006518893895 0.05685721552 -2.935984789e-13) (0.006329595839 0.05094327715 -2.630395901e-13) (0.005999175725 0.04482016506 -2.314259895e-13) (0.006095458999 0.04592594843 -2.350064587e-13) (0.006128503522 0.04656400085 -2.361721929e-13) (0.004723145515 0.03085984819 -1.59317004e-13) (0.003896969901 0.02395935101 -1.236788449e-13) (0.003013818627 0.01749745811 -9.031664305e-14) (0.003097263365 0.01813948479 -9.278688928e-14) (0.003124323716 0.01845707816 -9.359180098e-14) (0.000579372902 0.002856807534 -1.487698853e-14) (0.00019991215 0.0009492977893 -4.912736884e-15) (0.0001532302985 0.0007211558507 -3.747002708e-15) (0.0001212770228 0.0005656550937 -2.969846591e-15) (0.0002220974944 0.001064025606 -5.440092821e-15) (-0.0002105905566 0.000941200155 -5.079270338e-15) (-0.0006882388659 0.003220451222 -1.740274591e-14) (-0.0007030206155 0.003258601085 -1.776356839e-14) (-0.0006135459358 0.002925080013 -1.551536677e-14) (-0.001313643027 0.006510455547 -3.48332474e-14) (-0.002135664549 0.01113221823 -5.956346527e-14) (-0.003037696925 0.01669750991 -8.934519791e-14) (-0.002988230934 0.01658006824 -8.790190797e-14) (-0.002938506787 0.01645599402 -8.643086247e-14) (-0.004813200503 0.0296910265 -1.588451592e-13) (-0.005566657714 0.03657170895 -1.956212969e-13) (-0.006165821039 0.0433238023 -2.317313008e-13) (-0.006121157105 0.04342212885 -2.301214774e-13) (-0.006075980491 0.04351076218 -2.284561429e-13) (-0.006779197353 0.05532231845 -2.959021916e-13) (-0.006766164984 0.06006392972 -3.212430322e-13) (-0.006544454747 0.06368917388 -3.406441795e-13) (-0.006526830083 0.06414113581 -3.39894779e-13) (-0.00650880824 0.06458630458 -3.391176229e-13) (0.002962592976 0.06761635608 0) (0.003293266766 0.06761460336 0) (0.003297184752 0.06792859888 0) (0.00330135309 0.06824297127 0) (0.005735817952 0.0646898143 -3.465561171e-13) (0.006073950818 0.06158572645 -3.299305273e-13) (0.006135420073 0.06272277378 -3.329003739e-13) (0.006203704804 0.06393962332 -3.36231043e-13) (0.006172002433 0.05205146652 -2.788602682e-13) (0.005915125251 0.04600927112 -2.464695115e-13) (0.005464610281 0.03943901311 -2.112754416e-13) (0.005678045063 0.04134038823 -2.194078252e-13) (0.005790965609 0.04252960824 -2.236544283e-13) (0.004185755586 0.02640270642 -1.414146578e-13) (0.003371100937 0.02000402842 -1.071365219e-13) (0.00252372255 0.01413887878 -7.571721028e-14) (0.002666747979 0.015075512 -7.999156892e-14) (0.002760071383 0.01574337887 -8.276712649e-14) (0.0003153941011 0.001499539268 -8.10462808e-15) (7.571256832e-05 0.0003467543623 -1.859623566e-15) (3.457306989e-05 0.0001568861633 -8.604228441e-16) (2.131973407e-05 9.584724393e-05 -5.273559367e-16) (0.0001022928285 0.0004727982048 -2.525757381e-15) (-0.0003071498554 0.001320967952 -7.410738689e-15) (-0.0008483525273 0.003819727356 -2.145505995e-14) (-0.0008636540799 0.003850445778 -2.184363801e-14) (-0.0007385948306 0.003390868247 -1.867950239e-14) (-0.00142543014 0.006799959908 -3.780309399e-14) (-0.002267545805 0.01137603727 -6.322720125e-14) (-0.003275488076 0.01732632043 -9.631184739e-14) (-0.003209765306 0.01714503052 -9.439671267e-14) (-0.003148193375 0.01697921125 -9.256484468e-14) (-0.005057078036 0.03001021563 -1.667832539e-13) (-0.005797434355 0.03663346388 -2.035593916e-13) (-0.006374885653 0.04307306234 -2.393363285e-13) (-0.006317971974 0.04311514155 -2.372546604e-13) (-0.006264077204 0.04317008735 -2.353117701e-13) (-0.00692715574 0.05433455602 -3.01897396e-13) (-0.006879123491 0.05868203856 -3.260447468e-13) (-0.006622353563 0.06191744238 -3.440303598e-13) (-0.006601828698 0.06235643296 -3.431421813e-13) (-0.006581938631 0.06279737916 -3.422817585e-13) (0.002925299128 0.0651073774 0) (0.005506475911 0.06011223772 -3.345379529e-13) (0.005746071295 0.05634368477 -3.135824933e-13) (0.005845287194 0.05780185981 -3.186062525e-13) (0.005917243667 0.05900578358 -3.221312106e-13) (0.00565244291 0.0460348527 -2.562117185e-13) (0.005314889233 0.03990005416 -2.220446049e-13) (0.004803053273 0.0334435168 -1.861011345e-13) (0.005009831784 0.03520222122 -1.940114736e-13) (0.005213087381 0.03696186179 -2.017552792e-13) (0.003388457327 0.02060477873 -1.146305273e-13) (0.002582415016 0.01477005432 -8.215650382e-14) (0.001786964056 0.009647338584 -5.367928324e-14) (0.00198152961 0.01079864204 -5.948019854e-14) (0.002210235981 0.01215752521 -6.633582572e-14) (8.733151184e-05 0.0003998573929 -2.248201625e-15) (3.66890474e-07 1.618598131e-06 0) (0 0 0) (0 0 0) (8.1646615e-06 3.636278854e-05 -1.942890293e-16) (-0.0004458545657 0.001844818291 -1.079691891e-14) (-0.001060031421 0.004591970911 -2.683964162e-14) (-0.001096287456 0.004715523401 -2.783884234e-14) (-0.0009516723705 0.004200678726 -2.406408406e-14) (-0.001792960381 0.00821885737 -4.754530103e-14) (-0.002693703122 0.01298397657 -7.510658762e-14) (-0.00364169955 0.01850537702 -1.070254996e-13) (-0.003535556183 0.01815089927 -1.039168751e-13) (-0.003370338094 0.01747843485 -9.908740495e-14) (-0.005416468399 0.03086602677 -1.784683512e-13) (-0.006129632772 0.03718551202 -2.149669331e-13) (-0.006668031535 0.04324375599 -2.499944696e-13) (-0.006554086201 0.04295289499 -2.458311332e-13) (-0.006498036824 0.04302586812 -2.438049762e-13) (-0.007121060846 0.05358464372 -3.097522239e-13) (-0.007020287768 0.05743733041 -3.320121955e-13) (-0.006713424852 0.06018828522 -3.479438959e-13) (-0.006687247963 0.06060075878 -3.468059173e-13) (-0.006665240398 0.06104160946 -3.458899833e-13) (-0.002765555698 0.06297950654 0) (-0.00260103552 0.06297848319 0) (-0.002600330122 0.06313534443 0) (-0.002599685845 0.06329181286 0) (8.286655331e-05 0.06292447643 0) (0.0002449285742 0.06292491293 0) (0.0002496488257 0.06308087102 0) (0.003189743431 0.06197936833 0) (0.003837860914 0.06170537351 -3.572142582e-13) (0.00386251045 0.06249046048 -3.581579477e-13) (0.004845474777 0.05777016492 -3.344824417e-13) (0.005129181378 0.05416579066 -3.136102489e-13) (0.005236509518 0.04961367663 -2.872702076e-13) (0.005370125923 0.05132274173 -2.94181346e-13) (0.005521045273 0.05322225238 -3.020639294e-13) (0.004888270794 0.03839101425 -2.222944051e-13) (0.0044498496 0.0321984294 -1.864064458e-13) (0.003957244853 0.02654346311 -1.536826222e-13) (0.004209792831 0.02850734048 -1.633970736e-13) (0.004410865487 0.03015054539 -1.711131237e-13) (0.002589589258 0.01516025148 -8.773537452e-14) (0.001860106503 0.01023994283 -5.925815394e-14) (0.001175235845 0.006105481043 -3.533284776e-14) (0.001333661539 0.006996439975 -4.007905119e-14) (0.00146411753 0.00775531385 -4.399258735e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0003234841392 0.001287763273 -7.854827899e-15) (-0.0008619306476 0.003592721755 -2.189914916e-14) (-0.0007311965593 0.003015430362 -1.856848009e-14) (-0.001049704511 0.004468518206 -2.664535259e-14) (-0.001733388528 0.007661687891 -4.618527782e-14) (-0.00261265092 0.01214516072 -7.321920847e-14) (-0.003539377354 0.01734848951 -1.045552533e-13) (-0.003682906976 0.01824294681 -1.088018564e-13) (-0.003765308293 0.0188469672 -1.112443471e-13) (-0.005278077847 0.02902359767 -1.74887882e-13) (-0.005979164035 0.03500993547 -2.109423747e-13) (-0.006511035525 0.04076683175 -2.456090886e-13) (-0.006659947242 0.04214682781 -2.51271226e-13) (-0.006743243079 0.04313014667 -2.544908728e-13) (-0.00697074637 0.0506796847 -3.053113318e-13) (-0.006884009773 0.05444667277 -3.280153926e-13) (-0.006598327188 0.05722590909 -3.447797603e-13) (-0.006657586276 0.05837885474 -3.480549182e-13) (-0.006686333467 0.05927686865 -3.497480083e-13) (0.0001435760112 0.06012955523 0) (0.0004773414095 0.06012712456 0) (0.0004796239457 0.06044054938 0) (0.003117906697 0.05899320488 -3.55854235e-13) (0.003681071867 0.05740861088 -3.46306317e-13) (0.003717841517 0.05853737535 -3.49442697e-13) (0.003763624168 0.05982099074 -3.534117443e-13) (0.004431910728 0.05109322388 -3.082534228e-13) (0.004567983561 0.04657081992 -2.80969692e-13) (0.004573589078 0.04179181418 -2.521316489e-13) (0.004773363779 0.04401031373 -2.627620344e-13) (0.004930497246 0.04589241592 -2.711719738e-13) (0.004064642464 0.0307532192 -1.855182674e-13) (0.003580800773 0.02492484423 -1.503519531e-13) (0.002994032723 0.01931399045 -1.165179064e-13) (0.003214740113 0.02094199797 -1.250111126e-13) (0.003494927722 0.02299189069 -1.358357871e-13) (0.001672047261 0.009410190735 -5.676015213e-14) (0.001042191928 0.005513254552 -3.325117959e-14) (0.0005144251877 0.002567498291 -1.548761119e-14) (0.0006801033672 0.003429004136 -2.045585923e-14) (0.0008125526114 0.004138378046 -2.445266212e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-3.312219505e-05 0.0001262505478 -8.049116929e-16) (-0.0002893536516 0.001154919349 -7.355227538e-15) (-0.0001611267037 0.000635998079 -4.080069615e-15) (-0.0005856911218 0.002389468753 -1.487698853e-14) (-0.0009828296289 0.004161866869 -2.620126338e-14) (-0.001675887575 0.007463885577 -4.696243394e-14) (-0.002452653207 0.01151803643 -7.246980793e-14) (-0.002787001048 0.01323050309 -8.235079285e-14) (-0.00308524555 0.0148044765 -9.114931032e-14) (-0.004021152743 0.02118468615 -1.332822741e-13) (-0.00470798989 0.02640930339 -1.661448756e-13) (-0.005273536328 0.03162909939 -1.989797216e-13) (-0.005674983134 0.03440579107 -2.140787547e-13) (-0.006017258533 0.03687568027 -2.269573418e-13) (-0.005934082926 0.04131249225 -2.598754545e-13) (-0.006004308669 0.04546114595 -2.859656956e-13) (-0.005903305724 0.04899255614 -3.081701561e-13) (-0.006160313647 0.05168886614 -3.216038547e-13) (-0.006357734826 0.05393596277 -3.319566844e-13) (-0.005251671265 0.0539929749 -3.396727344e-13) (-0.004750059779 0.05547994548 -3.490263634e-13) (-0.004169776854 0.05638706103 -3.547717675e-13) (-0.004210658669 0.05761272523 -3.585465258e-13) (-0.002882181129 0.05699754552 -3.586575481e-13) (-0.002215622906 0.05701115654 0) (-0.001548090653 0.0570062952 0) (-0.00154352452 0.05763329049 0) (-0.0002129572169 0.05698470743 -3.587130593e-13) (0.0004536137622 0.05684350235 -3.578526364e-13) (0.001112023766 0.0564228209 -3.552436123e-13) (0.00112622871 0.05759245814 -3.586575481e-13) (0.0023402591 0.05414671476 -3.409494909e-13) (0.002864513638 0.05207144177 -3.279043703e-13) (0.003294656248 0.04930191017 -3.105016244e-13) (0.003435133967 0.05196868735 -3.23741034e-13) (0.003544102059 0.05418284698 -3.338995747e-13) (0.003781347001 0.04177159905 -2.630673457e-13) (0.003806458748 0.03717233466 -2.341182803e-13) (0.003678909482 0.03219000687 -2.027267243e-13) (0.003952976405 0.03497792168 -2.179090242e-13) (0.00418687647 0.0374551478 -2.308431224e-13) (0.003005254214 0.02176634994 -1.37084788e-13) (0.002505753982 0.01671066306 -1.052213872e-13) (0.00194564335 0.01202389081 -7.571721028e-14) (0.002204256293 0.01377457821 -8.579248423e-14) (0.002434592162 0.0153815997 -9.475753515e-14) (0.0008348871792 0.004501306449 -2.83384427e-14) (0.0003915198277 0.001984735807 -1.249000903e-14) (9.628112513e-05 0.0004606252367 -2.886579864e-15) (0.0001638252179 0.0007924210945 -4.94049246e-15) (0.0002883639685 0.001410092223 -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) (-6.278011866e-05 0.0002450281006 -1.58206781e-15) (-0.0001716361061 0.0006950815844 -4.579669977e-15) (-0.0005159206987 0.002197908923 -1.44606549e-14) (-0.0009909242049 0.004452275188 -2.930988785e-14) (-0.001347395637 0.006122206047 -3.985700658e-14) (-0.001719740528 0.00790126168 -5.084821453e-14) (-0.00213314286 0.01075662577 -7.08044734e-14) (-0.002706663383 0.01453541577 -9.567346915e-14) (-0.003227809557 0.01853717407 -1.220135104e-13) (-0.003783740996 0.02196820842 -1.429412144e-13) (-0.004318443402 0.02534651023 -1.630640067e-13) (-0.003994345147 0.02663430338 -1.7527646e-13) (-0.004201325587 0.03046917595 -2.005340338e-13) (-0.004279273449 0.0340176506 -2.238764729e-13) (-0.004765461055 0.03828774851 -2.491062912e-13) (-0.005203151774 0.04225498216 -2.717825964e-13) (-0.004058875056 0.03996211352 -2.630118345e-13) (-0.003780519015 0.0422749457 -2.7822189e-13) (-0.003409899589 0.04413174397 -2.904620988e-13) (-0.003686156164 0.04820772746 -3.1366576e-13) (-0.003907815621 0.05166175039 -3.32373018e-13) (-0.002460830841 0.04653099336 -3.063105325e-13) (-0.001916169959 0.04711830985 -3.101685575e-13) (-0.001345423213 0.04732372056 -3.115563363e-13) (-0.001438408059 0.05106918223 -3.324007736e-13) (-0.001504734876 0.05400321091 -3.475275623e-13) (-0.0001818292626 0.04660562758 -3.068933996e-13) (0.0003831455617 0.04565945431 -3.006761506e-13) (0.0009170599603 0.0442931201 -2.917110997e-13) (0.000985899416 0.04835106475 -3.148037386e-13) (0.001041869151 0.05177861473 -3.333167076e-13) (0.001825842568 0.04022304063 -2.649269693e-13) (0.002166986985 0.03751158459 -2.470801341e-13) (0.00241198052 0.03437706538 -2.264577414e-13) (0.002676650332 0.03864683151 -2.516598041e-13) (0.002914318207 0.0426052115 -2.743361094e-13) (0.002571314506 0.02706800231 -1.783018178e-13) (0.002478247385 0.02306987542 -1.519617765e-13) (0.002276772142 0.01899626023 -1.251221349e-13) (0.002659335663 0.02246232212 -1.462718835e-13) (0.003026044095 0.02586910199 -1.665889648e-13) (0.001616821507 0.01117414132 -7.358003096e-14) (0.001212426746 0.007718057705 -5.082045895e-14) (0.0008061770153 0.00475723489 -3.133604487e-14) (0.001085896145 0.006483739663 -4.221623051e-14) (0.001376578116 0.00831552657 -5.354050536e-14) (0.0001607779383 0.0008282242188 -5.467848396e-15) (1.262906507e-05 6.118580725e-05 -4.163336342e-16) (0 0 0) (0 0 0) (6.499243835e-06 3.040749766e-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) (-4.179021969e-05 0.0001792471435 -1.249000903e-15) (-0.0001759285487 0.0007636151663 -5.19029264e-15) (-0.0003890310525 0.00170842553 -1.151856388e-14) (-0.0004677931611 0.002253793736 -1.554312234e-14) (-0.0007816353232 0.004012428228 -2.770006446e-14) (-0.001115506228 0.006126830972 -4.227174166e-14) (-0.001591439249 0.008840692044 -6.028511024e-14) (-0.00211415096 0.01187665519 -8.00193245e-14) (-0.001725231457 0.01101396048 -7.599476604e-14) (-0.001955228656 0.0135839879 -9.373057885e-14) (-0.002114469977 0.01611249372 -1.111888359e-13) (-0.002656646031 0.02046009488 -1.39499523e-13) (-0.003209524015 0.02498037798 -1.68282055e-13) (-0.002192811839 0.02072519298 -1.430244811e-13) (-0.00211090507 0.02268015529 -1.565136909e-13) (-0.001954786949 0.02433569763 -1.679489881e-13) (-0.002346582721 0.02948918462 -2.010613898e-13) (-0.002728500796 0.03461767257 -2.332301019e-13) (-0.001458312995 0.02662327813 -1.837419106e-13) (-0.001142273773 0.02721641783 -1.878219802e-13) (-0.0007993449888 0.02742901038 -1.893207813e-13) (-0.0009508088461 0.03277780737 -2.235156504e-13) (-0.001096265544 0.0380013878 -2.561006962e-13) (-9.135033021e-05 0.02670661348 -1.843525332e-13) (0.0002442338066 0.02578189934 -1.779687508e-13) (0.0005484611531 0.02449862967 -1.691147222e-13) (0.0006498718549 0.02966089959 -2.023103907e-13) (0.0007468910052 0.03479255235 -2.34534614e-13) (0.001011640238 0.02095721602 -1.446898157e-13) (0.001149778361 0.01877586948 -1.296185381e-13) (0.001216517232 0.01639225538 -1.131594818e-13) (0.001519209019 0.02077064136 -1.416922135e-13) (0.001825393061 0.02531503814 -1.706690345e-13) (0.001132785627 0.01130749028 -7.807643421e-14) (0.0009934570884 0.008779144897 -6.059042157e-14) (0.0008059232168 0.006389471269 -4.410360965e-14) (0.001140369506 0.009159135678 -6.247780071e-14) (0.001505358344 0.01224716712 -8.257283746e-14) (0.000370425584 0.002436550434 -1.681987882e-14) (0.0001769995815 0.001073100264 -7.410738689e-15) (4.240345191e-05 0.0002384520981 -1.637578961e-15) (0.0001554552258 0.0008848884186 -6.022959909e-15) (0.0003284121846 0.00189215365 -1.273980921e-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) (-1.809729598e-05 9.475767712e-05 -6.938893904e-16) (-0.0001420091253 0.0007528339351 -5.384581669e-15) (-0.0003749290123 0.002011750277 -1.423861029e-14) (-0.0001880595617 0.001146258373 -8.326672685e-15) (-0.0002991638946 0.00198615523 -1.440514374e-14) (-0.000404300024 0.002946925027 -2.137179322e-14) (-0.0007304373432 0.005385955968 -3.858025011e-14) (-0.001134278584 0.008457942684 -5.981326545e-14) (-0.0005492304458 0.004977501116 -3.611000388e-14) (-0.0005749693863 0.005932796792 -4.30211422e-14) (-0.0005662109515 0.006782715102 -4.918287999e-14) (-0.0008604896129 0.010411863 -7.45514761e-14) (-0.001198158438 0.01463840945 -1.03528297e-13) (-0.0004536159562 0.008017673373 -5.814793091e-14) (-0.000359923305 0.00834954086 -6.053491042e-14) (-0.0002509011203 0.008470038036 -6.142308884e-14) (-0.0003688526549 0.01250862176 -8.956724251e-14) (-0.0005027645279 0.01711743476 -1.210698208e-13) (-2.103399643e-05 0.008066269095 -5.85087534e-14) (8.254584509e-05 0.007558438339 -5.481726184e-14) (0.0001681064732 0.006872100324 -4.984901381e-14) (0.0002519293033 0.0105234716 -7.53563878e-14) (0.0003458075626 0.01477034492 -1.044719866e-13) (0.0002626047442 0.005091962889 -3.694267114e-14) (0.0002659354557 0.004082790614 -2.961519918e-14) (0.0002410726749 0.003063219647 -2.220446049e-14) (0.0004301891169 0.00554621176 -3.971822871e-14) (0.0006619908859 0.008661113134 -6.125655538e-14) (0.0001307316956 0.001235524964 -8.965050924e-15) (6.657722848e-05 0.0005578329149 -4.05231404e-15) (1.674952691e-05 0.0001260573819 -9.159339953e-16) (0.0001101991613 0.0008401565188 -6.022959909e-15) (0.0002793025922 0.002157298464 -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) (-3.246516184e-05 0.0002309328763 -1.720845688e-15) (0 0 0) (0 0 0) (-3.865676224e-09 4.419912619e-08 0) (-3.760425845e-05 0.0004355261134 -3.302913498e-15) (-0.0001475019478 0.001728935991 -1.287858709e-14) (-2.494773236e-06 4.225990543e-05 -3.053113318e-16) (-2.952228061e-06 6.586675848e-05 -4.996003611e-16) (-2.314313593e-06 7.561352601e-05 -5.828670879e-16) (-2.676520146e-05 0.0008842843616 -6.661338148e-15) (-7.735267807e-05 0.002578541748 -1.917910275e-14) (-9.884077046e-08 4.544821736e-05 -3.60822483e-16) (2.1440141e-07 1.780386469e-05 -1.387778781e-16) (1.235376001e-08 4.704619737e-07 0) (1.181378047e-05 0.0004565414021 -3.441691376e-15) (4.508764198e-05 0.001772135377 -1.318389842e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (2.121116739e-05 0.0002620703355 -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.002599054647 0.06344848529 0) (-0.002598393366 0.06360528859 0) (-0.002762942567 0.06360632671 0) (0.002571374349 0.06385643669 0) (0.002241221482 0.06385771953 0) (0.001911067023 0.06385878391 0) (0.001904621946 0.06354578266 0) (0.001897481705 0.06323332538 0) (-0.002520837257 0.06093285391 0) (-0.002519695989 0.06108956632 0) (-0.002686588883 0.06109078173 0) (-0.0003180248187 0.06105285004 0) (-0.0005171458356 0.06107498262 0) (-0.0005182696265 0.06091827008 0) (-0.0005194003037 0.06076141194 0) (-0.0002337427912 0.06315731892 0) (0.001890096203 0.06292119032 0) (0.001882085283 0.06260917633 0) (0.002212558142 0.06260783289 0) (-0.002184766945 0.07617811675 0) (-0.002178065519 0.07650031839 0) (-0.002511781431 0.0764983442 0) (-0.002845217609 0.07649678163 0) (-0.0007373286175 0.07843232853 0) (-0.0007444649342 0.07812041013 0) (-0.0007525903333 0.07780807654 0) (-0.0004093249322 0.07780773233 0) (0.003354486814 0.07360099115 0) (0.003356316622 0.0739182499 0) (0.003024775653 0.07392092654 0) (-0.003218789565 0.0714460031 0) (-0.00355010005 0.0714483285 0) (-0.003551916846 0.07113485659 0) (-0.003553702815 0.07082161749 0) (-0.003538657886 0.07333150102 0) (-0.003540656136 0.07301711283 0) (-0.003542608253 0.0727030593 0) (-0.003211137453 0.07270074729 0) (0.003333028216 0.071074419 0) (0.003336127702 0.07139002264 0) (0.003005050246 0.07139234634 0) (-0.003233162552 0.06893838684 0) (-0.003564182068 0.06894066642 0) (-0.00356583961 0.06862706226 0) (-0.003567467069 0.06831358897 0) (-0.003555488678 0.07050839296 0) (-0.003557275814 0.07019499366 0) (-0.003226096196 0.07019269834 0) (0.003305244387 0.06855730198 0) (0.00330891393 0.06887118279 0) (0.002978212072 0.06887308137 0) (-0.003245848196 0.06643046698 0) (-0.003576605766 0.06643271553 0) (-0.003578029111 0.06611926988 0) (-0.003579422904 0.06580588228 0) (-0.003569065611 0.06800008634 0) (-0.003570635449 0.06768652524 0) (-0.003239776034 0.06768426138 0) (-0.001676158215 0.06720338206 0) (-0.00325662156 0.06392313037 0) (-0.003587510634 0.06392532161 0) (-0.003588905699 0.06361175924 0) (-0.003590358704 0.06329824098 0) (-0.003580802769 0.06549240718 0) (-0.003582153717 0.06517890275 0) (-0.003251410605 0.06517666887 0) (-0.001689795878 0.0646967363 0) (-0.001773049073 0.06461888028 0) (-0.001773125049 0.06454044765 0) (-0.001685235827 0.06563689635 0) (0.001106091408 0.06480070297 0) (0.0009421400804 0.06480103761 0) (0.0009390012974 0.06464423779 0) (0.0009360430347 0.064487626 0) (-0.00323975587 0.06139903193 0) (-0.003571994655 0.06140188843 0) (-0.003521009661 0.06109685845 0) (-0.003523293257 0.06078328798 0) (-0.003591883364 0.06298488346 0) (-0.003593480845 0.06267152647 0) (-0.003262300697 0.06266930398 0) (-0.002605800639 0.06203816442 0) (-0.002604878154 0.06219483473 0) (-0.002604041252 0.06235175327 0) (-0.002768605229 0.06235276237 0) (0.001447641695 0.0734598467 0) (-0.001732315878 0.07112212957 0) (-0.001897548966 0.07112326007 0) (-0.001898602424 0.07096660528 0) (-0.001891237269 0.07206394627 0) (-0.001892305609 0.07190724789 0) (-0.001893360128 0.07175044746 0) (-0.001728185402 0.07174930282 0) (-0.001402286587 0.07080667792 0) (-0.001401390164 0.07088476959 0) (-0.00140050142 0.07096300695 0) (-0.001484827341 0.07096365019 0) (0.001429925887 0.07187721292 0) (0.001517530244 0.0718765458 0) (0.001517699016 0.07195572058 0) (0.001518159393 0.07203493693 0) (0.001430930824 0.07092920543 0) (0.001447066224 0.07314282642 0) (0.001518880549 0.07211396204 0) (0.001519906285 0.07219281015 0) (0.001432199553 0.07219341975 0) (-0.001487589461 0.07065097168 0) (-0.001404138645 0.07065036394 0) (-0.001403203294 0.07072860097 0) (0.001650050049 0.06825141397 0) (0.001651893482 0.06840854365 0) (0.001653766362 0.06856571682 0) (0.001489040798 0.06856653775 0) (0.001425791481 0.07061350012 0) (-0.001681674067 0.06594997686 0) (-0.001678892246 0.06688996052 0) (-0.001773594263 0.06446201787 0) (-0.001774325317 0.06438363371 0) (-0.001689750663 0.06438294496 0) (-0.002760343151 0.06423326351 0) (-0.002595779493 0.06423221071 0) (-0.002595148825 0.06438881032 0) (-0.002594473192 0.06454558439 0) (0.0009328685057 0.06433111774 0) (0.0009293176085 0.06417472874 0) (0.001093503528 0.06417440695 0) (-0.002772254339 0.06172568757 0) (-0.002607661233 0.06172467826 0) (-0.00260676618 0.06188158181 0) (-0.003202847123 0.07395912812 0) (-0.003534464095 0.07396136836 0) (-0.003536583527 0.07364634018 0) (-0.003518254526 0.07586117391 0) (-0.003522114458 0.07554115004 0) (-0.003524884521 0.07522478079 0) (-0.003193091609 0.07522269948 0) (-0.0017042542 0.07489739883 0) (-0.001869866842 0.0748984112 0) (-0.001871297582 0.07473995017 0) (-0.001872698334 0.07458160689 0) (-0.001696074782 0.07553854987 0) (-0.001723791708 0.07237661981 0) (-0.00188906849 0.07237775062 0) (-0.001890167868 0.0722207903 0) (-0.001882425134 0.07331997831 0) (-0.001883554807 0.07316285799 0) (-0.001884670235 0.07300569387 0) (-0.001719204117 0.07300456168 0) (0.0029449897 0.06636117458 0) (0.0002160834316 0.06214746194 0) (0.000222711393 0.06230257593 0) (6.047616244e-05 0.06230215526 0) (-0.001714680225 0.07363375662 0) (-0.001880146449 0.07363487424 0) (-0.001881308646 0.07347728808 0) (-0.001873964994 0.07442367629 0) (-0.001875261028 0.07426571241 0) (-0.001709736228 0.07426463805 0) (0.001537055365 0.07552762362 0) (0.001703709292 0.07552359452 0) (0.00170272938 0.07568503856 0) (0.001702061025 0.07584526386 0) (0.001464969678 0.06668122874 0) (0.001631668905 0.06683742003 0) (0.001633875174 0.06699437229 0) (0.0014556661 0.06605371447 0) (0.00148156151 0.06793752456 0) (0.001646214888 0.06793679154 0) (0.001648191309 0.06809418243 0) (0.001635993844 0.06715129606 0) (0.001638159072 0.06730861276 0) (0.001473607538 0.06730933046 0) (-0.0004406655593 0.07702361558 0) (-0.0004426958495 0.0768676277 0) (-0.0002549218315 0.07687188965 0) (-7.304515183e-05 0.07687219059 0) (-0.001183121049 0.07603344382 0) (-0.001177651128 0.07619654225 0) (-0.001347048241 0.0761914925 0) (-0.001517084947 0.07618421749 0) (0.0001179699384 0.07686927017 0) (0.0003004640798 0.07686412945 0) (0.000297791443 0.0770209381 0) (0.0007803444268 0.0757047742 0) (-0.001692874401 0.06501001082 0) (-0.0009514988075 0.07537549495 0) (-0.001035962957 0.07529495757 0) (-0.0009449063114 0.07570373899 0) (-0.001397172071 0.07143317401 0) (-0.001397564141 0.07151153723 0) (-0.001482281084 0.07127708766 0) (-0.001397416388 0.07127642594 0) (-0.001397103436 0.07135479858 0) (0.001436668827 0.07156111521 0) (0.001435707331 0.07124508817 0) (0.001447352702 0.07282616399 0) (0.001443693938 0.07250976334 0) (0.001160853925 0.06880397975 0) (0.00116004295 0.06872542139 0) (0.001243323576 0.06872484402 0) (0.0007249453145 0.06684128506 0) (0.0008097309976 0.06691917361 0) (0.0007222723682 0.06652725134 0) (2.870610379e-05 0.06401807073 0) (-0.0006659740486 0.06214093719 0) (-0.003525576854 0.06046971751 0) (-0.00352785939 0.06015629269 0) (-0.003194088166 0.06015386198 0) (-0.001855578405 0.06061442202 0) (-0.001856734238 0.06045770971 0) (-0.001689855908 0.06045649441 0) (-0.001523006707 0.06045527932 0) (3.028662179e-05 0.06168329912 0) (-0.0006814772424 0.0759621229 0) (-0.0006750904534 0.07604772047 0) (-0.0007624751713 0.0760417472 0) (-0.001673466922 0.06751693499 0) (-0.001689339437 0.06532341196 0) (-0.001356150224 0.06045406418 0) (-0.001189255873 0.06045284876 0) (-0.001188235885 0.06060970771 0) (0.001451210634 0.07377591301 0) (0.001424210612 0.07029842433 0) (0.001421692322 0.0699826271 0) (-0.001682130053 0.06626336337 0) (-0.001681578765 0.06657706298 0) (0.0007191191657 0.06621287156 0) (-0.0006749892156 0.06182942573 0) (-0.0009410128861 0.06128416595 0) (0.003364840866 0.07613875007 0) (0.003031401069 0.07646269035 0) (0.001445461124 0.06542642524 0) (0.001700484763 0.07600682047 0) (0.001532516635 0.0761703908 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-6.936703977e-05 0.001502887511 -6.050715484e-15) (-1.44818005e-05 0.0003771279376 -1.498801083e-15) (-6.35553708e-05 0.00394273303 -1.590394483e-14) (-1.180025477e-05 0.00137306604 -5.495603972e-15) (5.48459546e-05 0.003951494259 -1.59317004e-14) (2.065345928e-05 0.0009746467098 -3.913536162e-15) (6.658086909e-05 0.001518610345 -6.133982211e-15) (3.00615667e-07 5.898131889e-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) (-3.788851962e-05 0.0003468029218 -1.443289932e-15) (-2.618157083e-05 0.0002597248796 -1.082467449e-15) (-0.000630106327 0.008049884582 -3.338995747e-14) (-0.0004615105393 0.006586547346 -2.711719738e-14) (-0.0009178394791 0.01942307907 -8.054668044e-14) (-0.0006092775697 0.01550316248 -6.381006834e-14) (-0.0004404681798 0.02703782799 -1.121047699e-13) (-0.0001765547411 0.02055670247 -8.462675005e-14) (0.0003943947338 0.02706516405 -1.122435478e-13) (0.000414624805 0.01882108982 -7.749356712e-14) (0.0008837276987 0.01949308078 -8.085199177e-14) (0.0005915707006 0.01125321732 -4.63240557e-14) (0.0006177656855 0.008123417579 -3.36952688e-14) (0.0002199378182 0.002646862932 -1.090794122e-14) (3.91306743e-05 0.0003663612995 -1.526556659e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-7.494868273e-07 5.192398419e-06 -2.775557562e-17) (-1.426669979e-05 0.0001054100178 -4.440892099e-16) (-0.001019008588 0.009066229366 -3.871902798e-14) (-0.0009982271745 0.009629285876 -4.080069615e-14) (-0.002293092912 0.02853093374 -1.218192214e-13) (-0.001980006607 0.02754199767 -1.167121955e-13) (-0.002278440992 0.04709933126 -2.010891453e-13) (-0.001745991193 0.04348411092 -1.842692665e-13) (-0.0009461915957 0.05740440054 -2.450817327e-13) (-0.0004354537502 0.05110825464 -2.166045121e-13) (0.0008784812175 0.05743913213 -2.452760217e-13) (0.00111700487 0.04857831141 -2.059186155e-13) (0.002216757345 0.04720532277 -2.015887457e-13) (0.001980018015 0.03639954944 -1.542932448e-13) (0.002252466312 0.028682867 -1.225131108e-13) (0.001574284804 0.01836399436 -7.78543896e-14) (0.001000034735 0.009062601147 -3.871902798e-14) (0.0003704323434 0.003157743503 -1.337818745e-14) (9.069970843e-06 6.369349754e-05 -2.775557562e-16) (0 0 0) (0 0 0) (-0.0005505644795 0.003685231707 -1.623701174e-14) (-0.000746896939 0.005332408908 -2.328692794e-14) (-0.002755019277 0.0236746624 -1.042221864e-13) (-0.00274061788 0.02565227564 -1.120215032e-13) (-0.004114023234 0.04969255857 -2.186029135e-13) (-0.003759357884 0.05087148409 -2.221001161e-13) (-0.003459904403 0.06951822137 -3.058109321e-13) (-0.002819245948 0.06839644864 -2.98622238e-13) (-0.00131436349 0.07760670152 -3.414490912e-13) (-0.0006499488459 0.07504177659 -3.276823257e-13) (0.001227411928 0.07762100336 -3.415878691e-13) (0.001738696035 0.07298455854 -3.187727859e-13) (0.003404728061 0.06984513658 -3.074485111e-13) (0.003467320261 0.06147221064 -2.685351941e-13) (0.004117389345 0.05030124386 -2.21517249e-13) (0.003501931427 0.03925950932 -1.715572129e-13) (0.002833900896 0.02475835421 -1.090516566e-13) (0.001850665077 0.01522188262 -6.653011475e-14) (0.0006245619699 0.004250419135 -1.870725796e-14) (2.26833799e-07 1.400402717e-06 0) (0.0001134572251 0.0007373574561 -3.219646771e-15) (-0.001424988491 0.00924090755 -4.199418591e-14) (-0.001947200454 0.01347158749 -6.070144387e-14) (-0.004371117172 0.03635920773 -1.651179193e-13) (-0.004554279702 0.04109525547 -1.851574449e-13) (-0.005516739137 0.06393630233 -2.903233209e-13) (-0.005161341998 0.06698510745 -3.017308625e-13) (-0.004079491402 0.07814076813 -3.546885008e-13) (-0.003389211279 0.0788600888 -3.550770789e-13) (-0.001407454971 0.07874638263 0) (-0.001401635378 0.07905829606 0) (-0.0007253973535 0.07967766162 0) (-0.0007303169858 0.07905512582 0) (-0.0003965479037 0.079053001 0) (-6.274454692e-05 0.07905068657 0) (-0.001064663587 0.07905694899 0) (-0.001068729576 0.07874543062 0) (0.001302172686 0.07872606699 0) (0.0009631809009 0.07873023984 0) (0.0006125109064 0.07904582724 0) (0.0009626764126 0.07904196628 0) (0.001301119787 0.07903808873 0) (0.0002721401508 0.07904824776 0) (0.001971613551 0.07965468505 0) (0.003980499755 0.07809702022 -3.547995231e-13) (0.004410903055 0.07487769604 -3.375077995e-13) (0.005495068181 0.06484027745 -2.946809463e-13) (0.005190064852 0.05617797013 -2.532973831e-13) (0.004459598033 0.03770255322 -1.713629239e-13) (0.003486151443 0.02775384025 -1.251221349e-13) (0.001606858267 0.01058153556 -4.810041254e-14) (0.0002925050415 0.001748508481 -7.882583475e-15) (0.0007358300755 0.004629692661 -2.087219286e-14) (-0.002207982105 0.01385322152 -6.500355809e-14) (-0.002892579772 0.01936808084 -9.012235402e-14) (-0.005321890951 0.04279013587 -2.007283229e-13) (-0.005632064765 0.04914230574 -2.285949208e-13) (-0.006143061921 0.06871390793 -3.222422329e-13) (-0.005794062385 0.07248620307 -3.37146977e-13) (-0.004175309304 0.07650014247 0) (-0.003170353392 0.07712898178 0) (-0.003174538923 0.07681224851 0) (-0.003510087321 0.07649864793 0) (-0.003507186071 0.076813031 0) (-0.003503444132 0.07712885282 0) (-0.003513423527 0.07618253914 0) (-0.001440813051 0.0778046408 0) (-0.001779160772 0.0778036529 0) (-0.002147335241 0.07747002546 0) (-0.002161179083 0.07714506769 0) (0.0006359625086 0.07748466852 0) (0.001318245886 0.07778454777 0) (0.0009720203168 0.0777926185 0) (0.006129192441 0.06998969585 -3.286260153e-13) (0.006117185381 0.06405891621 -2.983169267e-13) (0.005555997601 0.04543454065 -2.133293542e-13) (0.004728483792 0.03640490939 -1.695310559e-13) (0.002537198698 0.01616639751 -7.588374373e-14) (0.0008719372759 0.005044501409 -2.348121697e-14) (0.001563796282 0.009521103873 -4.432565426e-14) (-0.002521864863 0.0152938519 -7.419065362e-14) (-0.003375613592 0.02184450613 -1.050826093e-13) (-0.005683253185 0.04414309643 -2.141065103e-13) (-0.006118864394 0.05155806652 -2.47940557e-13) (-0.006341411665 0.06841534679 -3.317901509e-13) (-0.005987087528 0.07218688441 -3.471389842e-13) (0.003360210977 0.0745510004 0) (0.003361659195 0.07486786138 0) (0.003695476621 0.07517977482 0) (0.006350949394 0.07029729995 -3.413380689e-13) (0.00653456293 0.06630287084 -3.192446307e-13) (0.006088378976 0.04820375358 -2.340627692e-13) (0.005423224526 0.04041524604 -1.945665851e-13) (0.00307271792 0.01893943651 -9.192646644e-14) (0.001304913153 0.007301842205 -3.513855873e-14) (0.002108069891 0.01241465631 -5.97577543e-14) (-0.002710731086 0.01587962025 -7.974176874e-14) (-0.003566659307 0.02229812818 -1.109945469e-13) (-0.005864230838 0.04396702792 -2.207400929e-13) (-0.006279834163 0.05107707835 -2.541855615e-13) (-0.006420469175 0.06678660749 -3.352873534e-13) (-0.006044447549 0.07025775923 -3.49636986e-13) (0.003341964791 0.07202153843 0) (0.003344701016 0.07233726125 0) (0.003678558602 0.07265068917 0) (0.006366603571 0.06829529319 -3.433364704e-13) (0.006643172644 0.06530453965 -3.254341241e-13) (0.006179783441 0.04734614063 -2.380040609e-13) (0.005645498738 0.04070707294 -2.028377466e-13) (0.003182695611 0.01896415915 -9.531264666e-14) (0.001463487107 0.007916611055 -3.944067295e-14) (0.002300176335 0.01309670904 -6.52256027e-14) (-0.002891278289 0.01634081794 -8.504308369e-14) (-0.003748926284 0.02261676729 -1.166289287e-13) (-0.006032694318 0.04360686669 -2.268740751e-13) (-0.006422683543 0.0503689985 -2.59708921e-13) (-0.006491221882 0.06503279746 -3.383404668e-13) (-0.006089300085 0.06817003601 -3.51468854e-13) (-0.00239724031 0.07050048229 0) (0.003316273628 0.06949977447 0) (0.003319641351 0.06981421095 0) (0.003654211529 0.07012748803 0) (0.006251465458 0.06495534708 -3.384792446e-13) (0.006522072558 0.06208038351 -3.205768984e-13) (0.005903317721 0.04372953382 -2.278455202e-13) (0.005438239241 0.03790943255 -1.957323192e-13) (0.002879013996 0.01656831526 -8.629208459e-14) (0.001328936149 0.006942584863 -3.583244812e-14) (0.002135714092 0.01174558602 -6.061817714e-14) (-0.003117568489 0.01697524209 -9.167666626e-14) (-0.003951470354 0.02297185171 -1.229016888e-13) (-0.006228292329 0.0433429632 -2.34007258e-13) (-0.006576843622 0.04966304145 -2.656208586e-13) (-0.006562672004 0.06324018581 -3.414490912e-13) (-0.00613308935 0.06604729139 -3.532729664e-13) (-0.002412462696 0.06799223134 0) (0.003284470077 0.06698669214 0) (0.003288868899 0.06730071329 0) (0.006014067024 0.06047434602 -3.270439475e-13) (0.006224191495 0.05731446599 -3.07059933e-13) (0.005369111897 0.03840906214 -2.076949723e-13) (0.004845622151 0.03261997572 -1.747213485e-13) (0.002331411757 0.01294265238 -6.997180613e-14) (0.0009801329024 0.004939313333 -2.645106356e-14) (0.001704651647 0.009044765017 -4.843347945e-14) (-0.003388530461 0.01774817325 -9.961476088e-14) (-0.004198133298 0.02348279441 -1.305067165e-13) (-0.006462074648 0.04322433129 -2.425282197e-13) (-0.00675757873 0.0490575995 -2.725597525e-13) (-0.00664688942 0.06151012979 -3.451128272e-13) (-0.006177875313 0.06390592021 -3.550770789e-13) (-0.002425800235 0.06548479688 0) (0.005628650769 0.05472550075 -3.075595334e-13) (0.005797575969 0.05159176207 -2.871314297e-13) (0.004640259096 0.03201474906 -1.799116411e-13) (0.004146696293 0.02692053862 -1.497968416e-13) (0.001673152464 0.008947802441 -5.026534744e-14) (0.0005504925619 0.002672520426 -1.487698853e-14) (0.00106687769 0.005454108609 -3.033684415e-14) (-0.003721549672 0.01875203891 -1.095790125e-13) (-0.00456972188 0.02455093744 -1.419697693e-13) (-0.006732713719 0.04331169618 -2.529643162e-13) (-0.007003379765 0.04878724926 -2.820244038e-13) (-0.006719536873 0.05980874721 -3.493316747e-13) (-0.006224609775 0.06172940365 -3.568534357e-13) (-0.002602444832 0.06266496462 0) (-0.00260174113 0.06282159283 0) (-0.002436850216 0.06297747685 0) (0.0002345381082 0.06261335322 0) (0.0002398159338 0.06276907421 0) (0.0004076416991 0.06292515534 0) (0.003804293094 0.06080605946 -3.556044348e-13) (0.004403443227 0.06032159302 -3.492206524e-13) (0.005077589498 0.04768703047 -2.789157794e-13) (0.005155612474 0.04427590016 -2.563504964e-13) (0.003705350677 0.02461551028 -1.439404151e-13) (0.00330527686 0.02066150815 -1.195987753e-13) (0.0009958524396 0.00512279654 -2.994826609e-14) (0.0001889660596 0.0008826041868 -5.107025913e-15) (0.0005972756014 0.002937650019 -1.698641228e-14) (-0.003338360725 0.01619076739 -9.861556016e-14) (-0.004447788579 0.02305387449 -1.389444115e-13) (-0.006296543384 0.03900379694 -2.375044605e-13) (-0.006846246075 0.04606047695 -2.77500245e-13) (-0.006501150717 0.05576446777 -3.395617121e-13) (-0.00613748971 0.05893255838 -3.550770789e-13) (-0.002357384852 0.06046121008 0) (-0.002190506523 0.06045999478 0) (0.0004750578126 0.05981355409 0) (0.0008111082642 0.06012469388 0) (0.003624667397 0.05597785135 -3.412825578e-13) (0.004129069642 0.05474914315 -3.302913498e-13) (0.004378290095 0.03958800037 -2.413624856e-13) (0.004400091988 0.03642423552 -2.197408921e-13) (0.002734596635 0.01746613589 -1.064703881e-13) (0.002340787424 0.01407058501 -8.487655023e-14) (0.0004023174073 0.001987632714 -1.212918654e-14) (1.111670056e-06 4.988692172e-06 -2.775557562e-17) (0.0001499254549 0.0007084931319 -4.274358645e-15) (-0.002092723211 0.00972118943 -6.186717805e-14) (-0.00325302704 0.0161545525 -1.016686735e-13) (-0.004818543041 0.02858962901 -1.818545314e-13) (-0.00568828833 0.03665401746 -2.305655666e-13) (-0.00558391168 0.04583984405 -2.915723218e-13) (-0.005645138036 0.05184197204 -3.261002579e-13) (-0.004069567505 0.05440369948 -3.460842724e-13) (-0.003539183782 0.05684154376 -3.576583474e-13) (-0.001541624205 0.05600600894 -3.564093465e-13) (-0.0008805569437 0.05700143384 0) (0.001084019218 0.0544849566 -3.468336729e-13) (0.001747831638 0.05556745517 -3.498590306e-13) (0.00312097085 0.04617317908 -2.940148125e-13) (0.003606694422 0.04584896347 -2.887412531e-13) (0.003368150084 0.02913430552 -1.855182674e-13) (0.003405843575 0.0269921031 -1.700029006e-13) (0.001666611084 0.01018369275 -6.483702464e-14) (0.001371310495 0.007896584491 -4.971023593e-14) (4.081749054e-05 0.0001931222347 -1.221245327e-15) (0 0 0) (0 0 0) (-0.0006660380585 0.002958757103 -1.970645869e-14) (-0.001546260942 0.007348231751 -4.83779683e-14) (-0.002665616014 0.01514135823 -1.008360062e-13) (-0.003664873211 0.02261603847 -1.48853152e-13) (-0.003755855909 0.02954257682 -1.967037644e-13) (-0.004229276755 0.03719999942 -2.448041769e-13) (-0.003087117973 0.03955293028 -2.63372657e-13) (-0.002964231902 0.04554334276 -2.997879722e-13) (-0.001229711048 0.0429114695 -2.857991621e-13) (-0.0007627297488 0.04715471067 -3.104738688e-13) (0.0008367503312 0.03972459813 -2.646494135e-13) (0.00140362642 0.04248501873 -2.798039578e-13) (0.002125819812 0.02989374542 -1.992017662e-13) (0.002549049028 0.0308704592 -2.03337347e-13) (0.001888287741 0.01555905339 -1.036670749e-13) (0.00198189427 0.01498265946 -9.867107131e-14) (0.00054948078 0.003204105549 -2.134403765e-14) (0.0004405298831 0.002423034935 -1.595945598e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.000208733861 0.0009473389478 -6.52256027e-15) (-0.0007044685292 0.003824797367 -2.672861932e-14) (-0.001438630217 0.008495036085 -5.86197757e-14) (-0.001601213158 0.01207104177 -8.432143872e-14) (-0.00219462796 0.01851655037 -1.277866701e-13) (-0.001567387822 0.01933113092 -1.350308754e-13) (-0.001733475614 0.0256579565 -1.770528169e-13) (-0.0006480655506 0.02214838121 -1.547373341e-13) (-0.0004441041887 0.02725828074 -1.881272915e-13) (0.0004459320488 0.01948050124 -1.361133428e-13) (0.0008081274467 0.02287950951 -1.579569808e-13) (0.000927436404 0.01231455538 -8.607003998e-14) (0.001209899253 0.01387571298 -9.578449145e-14) (0.0005149012356 0.004029310281 -2.814415367e-14) (0.0005899014467 0.004241124202 -2.928213227e-14) (8.773847537e-08 4.874051126e-07 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-8.764704871e-05 0.0004937418861 -3.580469254e-15) (-0.0001684678072 0.001213358113 -8.909539773e-15) (-0.0004906291608 0.003964104558 -2.875477634e-14) (-0.0003257932535 0.00386178284 -2.836619828e-14) (-0.0005244111105 0.007487970338 -5.42899059e-14) (-0.0001527701205 0.005128601807 -3.766431611e-14) (-0.0001350136766 0.0083743254 -6.072919945e-14) (9.807212079e-05 0.003928054608 -2.886579864e-14) (0.000229494116 0.006037162473 -4.379829832e-14) (0.0001026695771 0.001286163692 -9.464651285e-15) (0.0001930792183 0.002092800546 -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) (-1.091400432e-06 1.490029734e-05 -1.110223025e-16) (0 0 0) (-1.112026015e-06 6.784135206e-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 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0.002194960886 0.07361147458 0) (0.002175303104 0.07108218021 0) (0.002190860806 0.07297847506 0) (-0.002408800613 0.06861908757 0) (0.001983436697 0.06856417532 0) (0.002148395184 0.06856333813 0) (0.002169121455 0.07045135148 0) (-0.002422677776 0.06611155509 0) (-0.002434149911 0.06360426726 0) (-0.002597084838 0.06391896812 0) (-0.002597731767 0.06376213558 0) (0.001917424713 0.0641717858 0) (0.001580579493 0.06386011289 0) (-0.00235278853 0.06108835081 0) (-0.002577038889 0.06139356479 0) (-0.00251855472 0.06124627873 0) (-0.0004679724936 0.06120818669 0) (-0.0006841363109 0.06107619874 0) (-0.0003165173274 0.06307894964 0) (0.001510359234 0.0613658663 0) (0.001854711632 0.06167438217 0) (0.001864275104 0.06198558377 0) (0.001551175812 0.06261056664 0) (0.001873418649 0.06229712342 0) (-0.00167298696 0.0765108382 0) (-0.001677838145 0.07634870108 0) (-0.001851947371 0.07617901091 0) (-0.001846889783 0.07634349006 0) (-0.001841574566 0.07650734539 0) (-0.001854284488 0.07602009127 0) (-0.002169385136 0.07682425925 0) (-0.00110143481 0.0778055338 0) (-0.000766948103 0.07749374923 0) (0.001662619442 0.07777536903 0) (0.002006642617 0.07776467806 0) (0.001997748787 0.07808342772 0) (0.002017069271 0.07744240704 0) (0.002350952234 0.07775131958 0) (0.003687798379 0.0739154426 0) (0.003358500463 0.07423412238 0) (-0.003546391623 0.07207554852 0) (-0.003548267524 0.07176196052 0) (-0.003881599872 0.07145065528 0) (-0.003544514449 0.0723893113 0) (0.003667190805 0.07138772817 0) (0.003339110884 0.07170565626 0) (-0.00356077928 0.0695679178 0) (-0.003562495822 0.06925421211 0) (-0.003895434508 0.06894296227 0) (-0.003888644769 0.07019729035 0) (-0.003559034458 0.06988150676 0) (-0.002401164975 0.06987356971 0) (0.003639688292 0.06886923999 0) (0.003312658311 0.06918533979 0) (-0.003573687419 0.06705944609 0) (-0.003575153397 0.0667461464 0) (-0.003907741903 0.0664349814 0) (-0.003901815067 0.06768882055 0) (-0.003572176264 0.06737294936 0) (-0.002416010279 0.06736509754 0) (0.00107111965 0.06809657892 0) (-0.003584824681 0.06455214126 0) (-0.00358614597 0.06423870943 0) (-0.004250700462 0.06392986003 0) (-0.003918909036 0.06392757483 0) (-0.003913348217 0.06518115447 0) (-0.003583474051 0.064865602 0) (-0.002428718793 0.0648580372 0) (-0.002593811805 0.06470240225 0) (0.0009449672639 0.06495765035 0) (0.0007783745402 0.06480128351 0) (-0.003597187469 0.06204455405 0) (-0.003599297321 0.06172884124 0) (-0.004237276977 0.06140709752 0) (-0.003904526424 0.06140451403 0) (-0.004257267812 0.06267606924 0) (-0.003925185098 0.06267378191 0) (-0.003595267345 0.06235821455 0) (-0.002439870301 0.06235077616 0) (-0.00260319212 0.06250835129 0) (-0.002199639849 0.05920585854 0) (-0.002201923446 0.05889228807 0) (-0.001868152222 0.05888985736 0) (-0.001534391193 0.05888742673 0) (-0.00253569467 0.05889471878 0) (-0.000864573887 0.05919613584 0) (-0.0008668574839 0.05888256537 0) (-0.0005330920856 0.0588801347 0) (-0.001200624339 0.05888499605 0) (-0.0008554522117 0.06045027216 0) (-0.0006885622304 0.06044905677 0) (-0.0005205357461 0.06060469949 0) (-0.001293839574 0.07442000497 0) (-0.001300449345 0.07347318902 0) (0.00219840907 0.0742449595 0) (-0.001895455555 0.0714367154 0) (-0.001896494978 0.07127998768 0) (-0.002228014931 0.07112555019 0) (-0.002062767384 0.07112440502 0) (-0.002058622133 0.07175160729 0) (-0.001894415707 0.07159350138 0) (-0.001316154723 0.07190341617 0) (-0.001314389088 0.07096226331 0) (-0.001398782053 0.07111970059 0) (-0.001399625146 0.0710413318 0) (-0.001301422477 0.07315876423 0) (-0.001312734817 0.07221681814 0) (0.00218100975 0.07171378434 0) (0.002346300778 0.07171260973 0) (0.002347669951 0.07187061678 0) (0.002348996704 0.07202879892 0) (0.002344903855 0.07155479223 0) (0.001517682524 0.07179745608 0) (0.001602585946 0.07187591181 0) (0.001605020456 0.07219220486 0) (0.001521267318 0.07227169951 0) (0.002186210251 0.07234588738 0) (0.00235157357 0.07234463941 0) (0.002352797736 0.07250273491 0) (0.002350292419 0.07218671911 0) (-0.002405034565 0.06924621978 0) (-0.001405086071 0.07057206874 0) (-0.001319728356 0.07064970553 0) (0.001074642951 0.0684113784 0) (0.00215568068 0.069191741 0) (0.001818565065 0.06856493906 0) (0.001655551219 0.06872280324 0) (0.002162579728 0.06982107886 0) (-0.002419409142 0.06673838505 0) (-0.001857356893 0.06438420926 0) (-0.001775230507 0.0643053382 0) (-0.002596423982 0.06407571316 0) (-0.002431506909 0.06423118917 0) (0.00075128294 0.06354941913 0) (0.0007657453499 0.06417491497 0) (0.0009260963675 0.06401820626 0) (-0.001684887495 0.06100672858 0) (-0.002604875396 0.06156521357 0) (-0.002443504846 0.06172370126 0) (-0.001356179741 0.06100681081 0) (-0.00353012499 0.07459118949 0) (-0.003532272903 0.07427625036 0) (-0.003527525987 0.07490806977 0) (-0.0018665127 0.07521698282 0) (-0.001868211188 0.07505775616 0) (-0.002035479399 0.07489943522 0) (-0.00186456211 0.07537682667 0) (-0.001886900241 0.07269148215 0) (-0.001887985055 0.07253452172 0) (-0.002054403423 0.07237889642 0) (-0.002050107224 0.07300682585 0) (-0.001885784814 0.07284864627 0) (0.003280176388 0.06667310718 0) (0.0003759841691 0.06527232243 0) (0.0003859738837 0.06230265413 0) (0.0002284354671 0.06245797324 0) (-0.001877762844 0.07395017724 0) (-0.001878985313 0.07379231477 0) (-0.002045627238 0.07363599198 0) (-0.002040814956 0.07426678698 0) (-0.001876526659 0.07410792308 0) (0.001704029966 0.0753636278 0) (0.001869935186 0.07552079054 0) (0.002201018642 0.07487929093 0) (0.001642252679 0.06762272352 0) (0.001644139274 0.06777978007 0) (0.00181094077 0.0679360143 0) (0.001802827014 0.06730787963 0) (0.001640264981 0.06746578423 0) (-0.0003244677991 0.06276623608 0) (-0.0007908923773 0.0768628576 0) (-0.000616965223 0.07686554685 0) (-0.0004457423216 0.07671130349 0) (-0.0009737487084 0.07685366451 0) (-0.001158814236 0.07668331713 0) (-0.001167727714 0.07651856894 0) (-0.001009665723 0.07619894414 0) (-0.001173700248 0.07635645455 0) (0.0006542551648 0.07685251237 0) (0.0008266853717 0.07684744932 0) (0.001011648034 0.0766754719 0) (0.0003082621889 0.07670532156 0) (0.0004816147499 0.07685711088 0) (0.00112085906 0.07505271028 0) (0.0008666599355 0.07562132977 0) (0.001067924636 0.0677822577 0) (0.0003721715766 0.06495839897 0) (-0.002031954565 0.0621914489 0) (-0.001296967503 0.07410409566 0) (-0.001300359336 0.0737883485 0) (-0.001314532642 0.07158935117 0) (-0.001398016256 0.07119805538 0) (-0.001310191552 0.07127564506 0) (-0.001305241029 0.07284462233 0) (-0.001309043667 0.07253046575 0) (0.001075764165 0.06872613711 0) (0.001159255916 0.06864695023 0) (-0.002034627475 0.06187842017 0) (-0.002032545266 0.06156433726 0) (-0.000583133653 0.06221950991 0) (-0.00386161605 0.06015872329 0) (-0.003530142987 0.05984272222 0) (-0.002023613628 0.06045877937 0) (-0.001857876567 0.06030085166 0) (-0.0002814809508 0.07632194234 0) (-0.0005850695573 0.07605627879 0) (-0.0006669879315 0.07613411275 0) (0.0001261766651 0.07632117143 0) (-0.001190361791 0.06029599044 0) (-0.001022349871 0.06045163325 0) (-0.001081083072 0.06122532337 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (3.952025214e-05 0.0002249991083 -1.026956298e-15) (0.0003464257906 0.001909056677 -8.881784197e-15) (0.0006435788481 0.003430186849 -1.651456749e-14) (0.000759767117 0.003914339447 -1.951216966e-14) (0.0006616727517 0.003291832254 -1.698641228e-14) (0.0004161918289 0.001997107455 -1.068589661e-14) (0.0001537632568 0.0007107843447 -3.941291737e-15) (5.285238288e-06 2.350373639e-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.002204205982 0.05857886325 0) (-0.0008691400201 0.05856914054 0) (0.002511650169 0.07171144926 0) (0.002516980688 0.07234340569 0) (0.002902166564 0.06385494528 0) (-0.0007329963135 0.07874381583 0) (0.0006141430506 0.07873454411 0) (-0.003177823832 0.07649718367 0) (0.00362399998 0.06761301042 0) (-0.004589627036 0.06267838771 0) (-0.002393306171 0.07112669567 0) (-0.001684723116 0.076181296 0) (-0.003874210025 0.07270538682 0) (-0.004582797635 0.06393216203 0) (-0.004570203256 0.06140955121 0) (-0.003866197583 0.07396360945 0) (-0.003856764819 0.07522686273 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-1.032219724e-05 5.79341557e-05 -2.498001805e-16) (-0.0002075834963 0.001127831838 -5.245803791e-15) (-0.0003692768066 0.001939873778 -9.325873407e-15) (-0.0004496273366 0.002282214824 -1.135203043e-14) (-0.0005368019796 0.002630187149 -1.357247648e-14) (-0.0006407613174 0.003026570198 -1.618150058e-14) (-0.0007244893059 0.003294127008 -1.831867991e-14) (-0.001009387336 0.004410525537 -2.550737399e-14) (-0.0009701462793 0.004086788804 -2.464695115e-14) (-0.0004348516575 0.001754869327 -1.10467191e-14) (-7.447719134e-06 2.873820674e-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.001487011052 0.06202679787 0) (-0.001480173675 0.06210446758 0) (-0.001444957263 0.06202318533 0) (-0.001438119781 0.0621008696 0) (-0.001412609362 0.06202041542 0) (-0.001405770423 0.06209809968 0) (-0.001493457602 0.06194899424 0) (-0.001451408607 0.06194532347 0) (-0.001419062481 0.06194250988 0) (-0.0007649889228 0.0738601737 0) (-0.0007582107219 0.07393871774 0) (-0.000722918979 0.07385677952 0) (-0.0007161665205 0.07393498875 0) (-0.0006905569094 0.07385415516 0) (-0.0006838266441 0.07393211695 0) (0.0005563864127 0.07527213148 0) (0.0005817700467 0.07520886798 0) (0.0005172412998 0.07525634685 0) (0.0005423275002 0.07519384146 0) (0.0004871297752 0.07524420326 0) (0.0005119871885 0.07518228214 0) (0.0004933591748 0.06772719109 0) (0.0004799703412 0.0676615125 0) (0.0004520002592 0.06773561963 0) (0.000438612882 0.06766994103 0) (0.0004201862443 0.06774209975 0) (0.0004067988671 0.06767642115 0) (-0.0007509898217 0.07401685074 0) (-0.0007089660389 0.07401291798 0) (-0.0006766389807 0.07400988605 0) (-0.0001232629494 0.06515422293 0) (-0.0001534691974 0.06504377711 0) (-0.0001639791946 0.06516534134 0) (-0.0001941392635 0.06505506996 0) (-0.0001952994429 0.06517390068 0) (-0.000225423763 0.06506376012 0) (-0.0008743455521 0.06271314532 0) (-0.0008958635826 0.06264901157 0) (-0.0009143391821 0.06272664714 0) (-0.000935796332 0.06266267317 0) (-0.0009451038103 0.06273702308 0) (-0.0009665132936 0.06267319441 0) (-0.001514642163 0.0614108507 0) (-0.001523844875 0.06148078661 0) (-0.00148738352 0.06140845285 0) (-0.001488083861 0.06147768598 0) (-0.00146641442 0.06140661059 0) (-0.001460576061 0.06147530088 0) (0.0006215175861 0.07509837443 0) (0.0005816223758 0.07508459069 0) (0.0005509350978 0.07507398791 0) (0.0002083140749 0.07584901429 0) (0.0002939153798 0.07575729945 0) (0.0001805501051 0.07581722361 0) (0.0002613344313 0.0757304686 0) (0.0001591914133 0.07579276934 0) (0.0002362704778 0.07570982883 0) (-0.00120360089 0.06578587109 0) (-0.001198658172 0.06586397698 0) (-0.00116148248 0.06578313198 0) (-0.001156534969 0.0658612961 0) (-0.001129081637 0.06578103169 0) (-0.001124132352 0.06585923948 0) (-0.001188836693 0.06601960662 0) (-0.001184172117 0.06609351978 0) (-0.001146711715 0.06601696942 0) (-0.001142044014 0.06609091169 0) (-0.001114307536 0.06601492736 0) (-0.001109639516 0.06608891332 0) (-0.00120878307 0.06570788346 0) (-0.001166667892 0.06570510069 0) (-0.00113427028 0.06570295672 0) (-0.001224340261 0.0654736585 0) (-0.001219158794 0.06555174808 0) (-0.001182223625 0.06547087571 0) (-0.001177043721 0.06554895074 0) (-0.001149826014 0.06546873174 0) (-0.001144647566 0.06554680678 0) (-0.001270785242 0.06477849754 0) (-0.001265611622 0.06485030962 0) (-0.001228686431 0.06477546728 0) (-0.001223511143 0.06484730847 0) (-0.001196303306 0.06477313407 0) (-0.001191124999 0.0648449898 0) (-0.0003700772608 0.06428980337 0) (-0.0004033685862 0.06417962762 0) (-0.0004105345546 0.0643018375 0) (-0.0004437737382 0.06419182158 0) (-0.0004416554379 0.06431109451 0) (-0.0004748557995 0.0642012094 0) (-0.001467734202 0.06225598535 0) (-0.001461968909 0.06232144272 0) (-0.00142567562 0.06225243103 0) (-0.001419924601 0.06231772829 0) (-0.001393323032 0.06224970479 0) (-0.001387581706 0.06231487103 0) (-0.001484646176 0.06129132932 0) (-0.001476600798 0.06129447506 0) (-0.001513969393 0.06171543165 0) (-0.001507565581 0.06179336668 0) (-0.001472006327 0.06171176151 0) (-0.001465531363 0.06178966689 0) (-0.001439725847 0.06170893383 0) (-0.001433197206 0.06178680969 0) (-0.001209619393 0.06177064548 0) (-0.001232851526 0.06170814095 0) (-0.00124913898 0.06178544015 0) (-0.001272336371 0.06172290623 0) (-0.001279539463 0.06179681843 0) (-0.001302709394 0.06173425518 0) (0.0009614442506 0.07337557433 0) (0.0009686651563 0.07329810812 0) (0.000919433603 0.07337151074 0) (0.0009266273952 0.07329432146 0) (0.0008871155671 0.07336838156 0) (0.0008942905602 0.07329141089 0) (0.0009754958355 0.07321985823 0) (0.0009334325235 0.07321636306 0) (0.0009010767833 0.07321365654 0) (0.0009875066003 0.07306310829 0) (0.0009923655277 0.07298450863 0) (0.0009453954175 0.07306023977 0) (0.0009502347257 0.07298194613 0) (0.0009130025033 0.07305802874 0) (0.0009178261375 0.07297998281 0) (0.0009658910316 0.07085758173 0) (0.0009593521673 0.07077950203 0) (0.000923824531 0.07086104871 0) (0.0009172951477 0.0707830709 0) (0.0008914655864 0.07086370218 0) (0.0008849442277 0.07078582626 0) (0.000983289588 0.07109265263 0) (0.0009778637297 0.07101440461 0) (0.0009411778523 0.07109550821 0) (0.0009357600187 0.07101736208 0) (0.0009087834721 0.07109769585 0) (0.0009033722067 0.07101965163 0) (0.0009527942348 0.07070120399 0) (0.0009107578459 0.07070500575 0) (0.000878422763 0.07070793578 0) (0.0009375587136 0.07054594878 0) (0.0009302138722 0.07047199688 0) (0.000895557124 0.07055012898 0) (0.000888223114 0.07047626439 0) (0.0008632488158 0.07055333555 0) (0.0008559211619 0.07047954374 0) (-0.0007878755465 0.07355431257 0) (-0.0007825568626 0.07362644402 0) (-0.0007457718355 0.0735513551 0) (-0.0007404645134 0.07362332642 0) (-0.0007133839174 0.07354908011 0) (-0.000708084832 0.07362092041 0) (-0.0007766930496 0.07370382952 0) (-0.0007346039314 0.07370066823 0) (-0.0007022289376 0.07369821856 0) (-0.0004984322625 0.06386922347 0) (-0.0005188385106 0.06380435337 0) (-0.0005387298994 0.06388178077 0) (-0.0005591078389 0.06381699785 0) (-0.0005697269288 0.06389144471 0) (-0.0005900855103 0.06382671991 0) (-0.0007707168819 0.06301984582 0) (-0.0007918278736 0.06295620432 0) (-0.0008107717106 0.06303314418 0) (-0.0008318363861 0.06296966256 0) (-0.0008415838993 0.06304338937 0) (-0.000862612984 0.06297999489 0) (0.0005518979585 0.0680200044 0) (0.0005380486605 0.06794969745 0) (0.0005104861585 0.06802817115 0) (0.0004966384229 0.06795787876 0) (0.0004786298785 0.06803444767 0) (0.0004647866184 0.06796416981 0) (0.0005232587764 0.06787463456 0) (0.0004818680028 0.06788288855 0) (0.0004500268175 0.06788923779 0) (0.0001918279768 0.06637603947 0) (0.0001752399317 0.06630706333 0) (0.0001507926952 0.0663859076 0) (0.0001342152694 0.06631698964 0) (0.0001192257028 0.06639350744 0) (0.0001026572277 0.06632461854 0) (-0.0007283370428 0.07425060164 0) (-0.0007200983145 0.07432789701 0) (-0.0006863526407 0.07424626135 0) (-0.0006781404749 0.07432330931 0) (-0.0006540569386 0.07424292378 0) (-0.0006458666479 0.07431976799 0) (-0.0007361362253 0.07417266221 0) (-0.0006941283857 0.07416854022 0) (-0.0006618153901 0.07416537731 0) (-0.001093823627 0.06766486098 0) (-0.001089723511 0.06773886564 0) (-0.001051678944 0.06766252951 0) (-0.001047580284 0.06773653418 0) (-0.00101926131 0.06766073496 0) (-0.00101516265 0.06773473963 0) (-0.001128215731 0.06703993266 0) (-0.001123935161 0.0671181162 0) (-0.001086070836 0.06703763032 0) (-0.001081790266 0.06711581386 0) (-0.00105365164 0.06703585032 0) (-0.00104937107 0.06711403386 0) (-0.001115354982 0.0672744977 0) (-0.001111043827 0.06735268102 0) (-0.001073210193 0.06727218079 0) (-0.001068899038 0.06735036411 0) (-0.001040792559 0.06727038624 0) (-0.001036481404 0.06734856956 0) (-0.001098110467 0.0675872164 0) (-0.001055967135 0.0675848995 0) (-0.001023548045 0.06758310494 0) (-0.001106732672 0.06743086433 0) (-0.001064589445 0.06742853287 0) (-0.001032170249 0.06742675287 0) (-0.001180194717 0.06615887365 0) (-0.00113806484 0.06615630924 0) (-0.001105657217 0.06615433998 0) (-0.001169423203 0.06633775687 0) (-0.001164762405 0.06641515113 0) (-0.001127291656 0.06633522158 0) (-0.001122630965 0.06641260127 0) (-0.001094882471 0.06633326688 0) (-0.001090223236 0.06641064658 0) (-0.001132496195 0.06696176369 0) (-0.001090351406 0.06695944678 0) (-0.001057932104 0.06695768135 0) (-0.001145729417 0.06672765288 0) (-0.001141045655 0.06680560044 0) (-0.001103597871 0.06672511759 0) (-0.001098907434 0.06680318163 0) (-0.001071188579 0.06672317745 0) (-0.001066493243 0.06680131427 0) (-0.001160017338 0.06649331672 0) (-0.001117887354 0.06649076687 0) (-0.001085479838 0.06648878305 0) (-0.001150489762 0.06664958936 0) (-0.001108359884 0.06664702495 0) (-0.001075952367 0.06664504113 0) (-0.001244877216 0.06516124052 0) (-0.001239772728 0.06523935979 0) (-0.001202758806 0.06515850141 0) (-0.001197654424 0.06523660612 0) (-0.001170359526 0.06515638656 0) (-0.001165256707 0.06523447672 0) (-0.001229483966 0.06539555407 0) (-0.001187367225 0.06539278585 0) (-0.001154969614 0.06539064188 0) (-0.000192200148 0.06490609832 0) (-0.0002104692106 0.0648411544 0) (-0.0002328261161 0.06491755107 0) (-0.0002510741126 0.06485267981 0) (-0.0002640769972 0.06492635751 0) (-0.0002823085487 0.0648615444 0) (-0.001249942274 0.06508313552 0) (-0.001207823864 0.06508039641 0) (-0.001175423022 0.06507829611 0) (-0.00126006047 0.06492736239 0) (-0.001217950403 0.06492447769 0) (-0.001185559147 0.06492226094 0) (-0.0004237067237 0.06411231009 0) (-0.0004640879363 0.06412459126 0) (-0.0004951506397 0.0641340372 0) (-0.0004646377039 0.06397890034 0) (-0.0005049741627 0.06399132684 0) (-0.0005360025196 0.06400088905 0) (-0.001520290689 0.0616376271 0) (-0.001478711091 0.06163390149 0) (-0.001446726585 0.06163103228 0) (0.000933650356 0.07362587447 0) (0.000946686145 0.07351607503 0) (0.0008917420467 0.0736208634 0) (0.0009047474912 0.07351129722 0) (0.0008595031808 0.07361700538 0) (0.0008724881576 0.0735076287 0) (0.0008930833034 0.07392903707 0) (0.0009044198128 0.07385250218 0) (0.0008513505215 0.07392272843 0) (0.0008626467034 0.07384645601 0) (0.0008192485241 0.07391786442 0) (0.000830512799 0.07384181071 0) (0.0009249716874 0.07369756895 0) (0.0008830784443 0.07369242669 0) (0.0008508534002 0.07368846661 0) (0.0008817059048 0.07400255728 0) (0.0008400134504 0.07399598617 0) (0.0008079420096 0.07399091803 0) (0.001004769492 0.0727485507 0) (0.001008051709 0.072669846 0) (0.0009626003006 0.07274671672 0) (0.0009658728805 0.07266828883 0) (0.0009301637013 0.07274530709 0) (0.0009334260086 0.07266706862 0) (0.0009969365052 0.07290596933 0) (0.0009547927299 0.07290362539 0) (0.0009223751133 0.07290182236 0) (0.001010603692 0.07259086988 0) (0.0009684162598 0.07258953126 0) (0.0009359650471 0.07258851498 0) (0.00100137393 0.07140749172 0) (0.0009973287644 0.07132843256 0) (0.0009592103628 0.07140943007 0) (0.0009551773014 0.071330633 0) (0.0009267759369 0.07141091888 0) (0.0009227545555 0.07133232563 0) (0.0009886721283 0.07117135249 0) (0.0009465440252 0.07117396058 0) (0.0009141381771 0.07117597352 0) (0.001004504716 0.07148619341 0) (0.0009623306067 0.07148788423 0) (0.0009298890824 0.07148919831 0) (0.0009234502556 0.07040625547 0) (0.0008814721035 0.07041065398 0) (0.0008491825453 0.0704140352 0) (0.0009039233228 0.07022552798 0) (0.0008952083893 0.07014784282 0) (0.0008619748582 0.07023020301 0) (0.0008533019001 0.07015288167 0) (0.0008297072811 0.07023380254 0) (0.000821065467 0.07015675772 0) (0.0008549146058 0.06983872935 0) (0.0008446188718 0.06976517763 0) (0.0008130961185 0.06984445212 0) (0.0008028157974 0.06977101681 0) (0.0007809290433 0.06984885201 0) (0.0007706595536 0.06977550401 0) (0.00088519556 0.07007013798 0) (0.0008433261466 0.07007546786 0) (0.0008111190828 0.07007957674 0) (0.000865256553 0.0699154268 0) (0.0008234119275 0.06992096041 0) (0.0007912249641 0.06992522936 0) (0.0002183786311 0.06648642453 0) (0.0001773359612 0.06649627814 0) (0.0001457643873 0.06650384889 0) (-0.0002608506161 0.06466586592 0) (-0.00027941019 0.06460171063 0) (-0.000301398649 0.06467758027 0) (-0.0003199540389 0.06461343951 0) (-0.0003325896422 0.06468659019 0) (-0.0003511420527 0.06462247854 0) (-0.001382934881 0.06327894638 0) (-0.001377063573 0.06335636095 0) (-0.001340850556 0.06327572688 0) (-0.001334977686 0.063353156 0) (-0.001308477337 0.06327323352 0) (-0.001302602799 0.06335069176 0) (-0.001371414235 0.06343029607 0) (-0.001329328454 0.06342707655 0) (-0.001296955128 0.06342459776 0) (-0.001388827243 0.06320124067 0) (-0.00134675428 0.06319786103 0) (-0.001314390542 0.06319526579 0) (-0.001395405509 0.0631233506 0) (-0.001353345364 0.06311981084 0) (-0.001320991213 0.06311709915 0) (-0.001473567688 0.06218196418 0) (-0.001431504313 0.06217846809 0) (-0.001399148599 0.06217577095 0) (-0.001500472162 0.06187119474 0) (-0.001458432542 0.06186743665 0) (-0.00142609579 0.06186453574 0) (-0.0007707899334 0.07378181189 0) (-0.0007287039402 0.0737786215 0) (-0.0006963290525 0.07377615727 0) (-0.0007135531638 0.06319364296 0) (-0.0007493409172 0.0630842719 0) (-0.0007536793863 0.06320673792 0) (-0.0007894284238 0.06309748311 0) (-0.0007845467359 0.06321680874 0) (-0.0008202645519 0.06310764109 0) (0.0005308202325 0.07533492876 0) (0.0004919742749 0.07531842244 0) (0.0004620917599 0.07530572517 0) (0.000508096971 0.06779950155 0) (0.000466727436 0.06780787191 0) (0.0004349058208 0.06781430839 0) (-0.0006900534504 0.07457768709 0) (-0.0006802600537 0.07464966069 0) (-0.0006482072517 0.07457216949 0) (-0.000638455438 0.07464383316 0) (-0.0006160172057 0.07456792382 0) (-0.0006062991518 0.07463935179 0) (-0.0006692568989 0.07472655141 0) (-0.0006275044218 0.07472036449 0) (-0.0005953865724 0.07471560521 0) (-0.0007039704984 0.07446787711 0) (-0.00066207331 0.07446276113 0) (-0.0006298445939 0.07445882543 0) (-0.0007117705916 0.07440181263 0) (-0.0006698438959 0.07439694841 0) (-0.0006375903813 0.07439321789 0) (-0.0007434750683 0.07409473398 0) (-0.000701459204 0.07409071389 0) (-0.0006691382898 0.07408763832 0) (-0.0001725960571 0.06497578075 0) (-0.0002132345774 0.0649871899 0) (-0.0002444949919 0.06499596728 0) (-0.001433212702 0.06265588157 0) (-0.00142687062 0.06273354032 0) (-0.001391147764 0.06265240003 0) (-0.001384797551 0.06273017524 0) (-0.001358788926 0.062649732 0) (-0.00135243225 0.06272759455 0) (-0.001420815533 0.0628113905 0) (-0.00137873767 0.06280808365 0) (-0.001346369138 0.06280554663 0) (-0.0008515946527 0.06278096963 0) (-0.0008915778755 0.06279450051 0) (-0.0009223351154 0.06280489095 0) (-0.001439792 0.06257804977 0) (-0.001397730081 0.06257455369 0) (-0.001365372911 0.06257185654 0) (-0.001446171575 0.06250084282 0) (-0.001404109656 0.06249734674 0) (-0.001371753942 0.0624946496 0) (-0.0009340183818 0.06254021123 0) (-0.0009563467696 0.06247640382 0) (-0.0009738692241 0.06255411984 0) (-0.0009962006308 0.06249029788 0) (-0.001004523743 0.0625648154 0) (-0.001026858062 0.06250099347 0) (-0.001524812159 0.06155896467 0) (-0.001484718413 0.0615554101 0) (-0.001453876254 0.06155268029 0) (0.0007395845502 0.06907286117 0) (0.0007218513168 0.06896283429 0) (0.0006979175685 0.06907958783 0) (0.0006802057859 0.06896970644 0) (0.0006658654535 0.0690847734 0) (0.0006481718905 0.06897499383 0) (0.0004574808643 0.06755118526 0) (0.0004161324619 0.06755965741 0) (0.0003843244849 0.06756616662 0) (0.0004431177344 0.06748072184 0) (0.0004018071217 0.06748938306 0) (0.0003700293341 0.06749603771 0) (-0.0004063366194 0.07569527105 0) (-0.0003713539216 0.07575589646 0) (-0.0003692667931 0.0756750891 0) (-0.0003363862748 0.07573225517 0) (-0.0003407506337 0.07565956621 0) (-0.0003094902112 0.07571406991 0) (-0.001193730231 0.06594205385 0) (-0.001151605359 0.06593940208 0) (-0.001119202742 0.06593734547 0) (-0.001213970045 0.06562983761 0) (-0.001171854972 0.06562704027 0) (-0.001139458923 0.06562488175 0) (-0.0002419192017 0.06473130023 0) (-0.0002824829514 0.06474295644 0) (-0.0003136859539 0.06475193731 0) (-0.001278528629 0.06467101963 0) (-0.001236428255 0.06466800392 0) (-0.001204043674 0.0646656707 0) (-0.001366398687 0.0634958026 0) (-0.001324314362 0.06349258309 0) (-0.001291941037 0.0634901043 0) (-0.001358142818 0.06360345156 0) (-0.001316058494 0.06360023205 0) (-0.001283686731 0.06359773871 0) (-0.001408482785 0.06296745337 0) (-0.001402103202 0.0630454614 0) (-0.00136641149 0.06296404461 0) (-0.001360041495 0.06304193619 0) (-0.001334049421 0.06296142025 0) (-0.001327685781 0.06303923906 0) (-0.001145698603 0.06194248538 0) (-0.001185616721 0.06183375614 0) (-0.001185379911 0.0619568734 0) (-0.001225168774 0.06184849278 0) (-0.001215905068 0.06196793215 0) (-0.001255592878 0.06185982754 0) (0.0009541119595 0.07344954573 0) (0.000912137984 0.07344511774 0) (0.0008798498683 0.07344169704 0) (0.000981681314 0.07314161303 0) (0.0009395952579 0.07313839477 0) (0.0009072223871 0.07313593598 0) (0.0009724200476 0.07093590911 0) (0.0009303342666 0.07093912863 0) (0.0008979609413 0.07094160742 0) (0.0009452400515 0.07062330647 0) (0.0009032288748 0.07062737022 0) (0.0008709127541 0.07063050402 0) (-0.000538889854 0.06374061676 0) (-0.0005791532505 0.06375327577 0) (-0.000610124884 0.06376302691 0) (0.0003631407891 0.07565813961 0) (0.0003279189796 0.07563488073 0) (0.0003008257305 0.07561698961 0) (0.000397577388 0.07560317785 0) (0.0004546140174 0.07549992397 0) (0.0003613304337 0.0755815519 0) (0.0004171880916 0.07548040835 0) (0.0003334481586 0.07556491622 0) (0.0003884000358 0.075465396 0) (0.0004838878547 0.0754416411 0) (0.0004457915423 0.07542347181 0) (0.0004164852229 0.07540949443 0) (0.0001580867456 0.06623628523 0) (0.0001170921666 0.06624634241 0) (8.555817034e-05 0.06625407309 0) (0.0001418522785 0.0661708604 0) (0.0001144612612 0.06606048146 0) (0.0001008801824 0.06618100481 0) (7.349811583e-05 0.06607065493 0) (6.93641937e-05 0.06618880819 0) (4.19866025e-05 0.06607847285 0) (-0.000657498048 0.07480421004 0) (-0.0006445300071 0.07488070775 0) (-0.0006158281216 0.07479748772 0) (-0.0006029681121 0.07487335119 0) (-0.0005837744441 0.07479231671 0) (-0.0005709966459 0.07486769139 0) (-0.0006183446762 0.07502052867 0) (-0.0005951147669 0.07513212788 0) (-0.000576940381 0.07501233139 0) (-0.0005538855382 0.07512309147 0) (-0.000545090139 0.07500602578 0) (-0.0005221696388 0.07511613869 0) (-0.000630753146 0.07495406808 0) (-0.0005892701251 0.07494628096 0) (-0.000557359324 0.07494029097 0) (-0.001086109506 0.0678041202 0) (-0.00104396628 0.06780178874 0) (-0.001011547189 0.06779999418 0) (-0.001119654485 0.0671963143 0) (-0.001077509696 0.06719399739 0) (-0.0010450905 0.0671922174 0) (-0.001102421622 0.06750903308 0) (-0.00106027829 0.06750671618 0) (-0.0010278592 0.06750492162 0) (-0.00117375262 0.06626586583 0) (-0.001131621074 0.06626333054 0) (-0.001099211889 0.06626137583 0) (-0.001136775096 0.06688360927 0) (-0.00109463187 0.06688127781 0) (-0.001062212674 0.06687949781 0) (-0.001155253444 0.0665714676 0) (-0.001113123672 0.06656888863 0) (-0.00108071605 0.06656691937 0) (-0.001234627566 0.06531746421 0) (-0.001192510825 0.06531469598 0) (-0.001160113107 0.06531256658 0) (-0.001255003995 0.06500508875 0) (-0.001212885797 0.06500232052 0) (-0.001180487974 0.06500020568 0) (-0.0004447922402 0.0640433667 0) (-0.0004851466006 0.06405573507 0) (-0.00051618984 0.06406525369 0) (-0.001414689476 0.06288938581 0) (-0.001372613282 0.06288604985 0) (-0.001340246419 0.06288348371 0) (-0.0008291640296 0.06284681541 0) (-0.0008691278944 0.06286040441 0) (-0.0008998686894 0.062870853 0) (-0.001452022196 0.06242926872 0) (-0.001409971533 0.06242562707 0) (-0.001377623844 0.06242282803 0) (-0.0009782202399 0.06241326309 0) (-0.001018063694 0.06242718621 0) (-0.001048713737 0.06243789631 0) (0.0009155681935 0.07377493454 0) (0.0008737286754 0.07376936949 0) (0.0008415435345 0.0737650887 0) (0.000871116077 0.07406902223 0) (0.0008294778779 0.07406210117 0) (0.0007974497835 0.0740567851 0) (0.001001172397 0.07282741791 0) (0.00095901586 0.07282532167 0) (0.0009265893212 0.07282369348 0) (0.001012956922 0.07251300216 0) (0.0009707636931 0.07251186749 0) (0.0009383077153 0.0725109969 0) (0.001014677875 0.07244051358 0) (0.0009724800924 0.07243955372 0) (0.000940020806 0.07243882881 0) (0.000993005399 0.0712499726 0) (0.0009508638413 0.07125233318 0) (0.0009184463133 0.07125414229 0) (0.001007596672 0.07156396321 0) (0.0009654171327 0.07156550842 0) (0.0009329718469 0.07156670601 0) (0.001010100944 0.07163643559 0) (0.0009679158686 0.07163782063 0) (0.0009354652589 0.07163888716 0) (0.0009116884709 0.07029739401 0) (0.0008697258377 0.07030192349 0) (0.0008374458667 0.07030542116 0) (0.0008353894822 0.06969925027 0) (0.0007935925517 0.06970513311 0) (0.0007614408894 0.0697096494 0) (0.000875230638 0.06999281149 0) (0.000833372056 0.06999822868 0) (0.0008011726986 0.07000239576 0) (0.0004112822488 0.06733425376 0) (0.0003968119204 0.06726867044 0) (0.0003700605356 0.06734332216 0) (0.0003555946825 0.06727775337 0) (0.0003383506211 0.06735029675 0) (0.0003238893494 0.06728475705 0) (0.000427183496 0.06740632271 0) (0.0003859316995 0.06741526024 0) (0.0003541991959 0.06742213303 0) (6.288155453e-05 0.06585564908 0) (3.440851204e-05 0.06574529259 0) (2.200251512e-05 0.0658661715 0) (-6.45851812e-06 0.06575584405 0) (-9.442277661e-06 0.0658742511 0) (-3.789479709e-05 0.06576395272 0) (1.662942129e-05 0.06567636881 0) (-2.422134904e-05 0.06568699298 0) (-5.564496969e-05 0.06569515982 0) (-0.0002882917721 0.07586071916 0) (-0.0001684014385 0.075942199 0) (-0.000259809311 0.075829569 0) (-0.0001522365555 0.07590320895 0) (-0.0002379016296 0.07580560743 0) (-0.0001398019623 0.07587321669 0) (-7.762827677e-05 0.07596449214 0) (-7.381531714e-05 0.07592245652 0) (-7.088227026e-05 0.07589012147 0) (1.867565445e-05 0.07595694315 0) (9.611752832e-06 0.07591571966 0) (2.639644239e-06 0.0758840093 0) (-0.0008035659573 0.07330699453 0) (-0.0007991216981 0.07338105494 0) (-0.0007614359735 0.07330444469 0) (-0.0007569934889 0.07337846142 0) (-0.0007290283507 0.07330247543 0) (-0.0007245875347 0.07337646304 0) (-0.0008083145938 0.07322933874 0) (-0.0007661830475 0.07322680346 0) (-0.0007337754248 0.07322483419 0) (-0.0008382534852 0.07268150033 0) (-0.0008344539346 0.07275983302 0) (-0.0007960951357 0.07267944549 0) (-0.0007923006969 0.07275767626 0) (-0.0007636657156 0.07267786933 0) (-0.0007598762825 0.07275601275 0) (-0.000105575348 0.06521924392 0) (-0.000146303621 0.06523031871 0) (-0.0001776329075 0.06523884899 0) (-0.0006719484888 0.06332176066 0) (-0.0006928692257 0.06325724387 0) (-0.0007121045825 0.06333475389 0) (-0.0007330118933 0.0632702807 0) (-0.0007429943089 0.06334475204 0) (-0.0007638925629 0.06328032248 0) (0.0006140461035 0.0683448347 0) (0.0006003470814 0.06826896278 0) (0.0005725160346 0.06835236144 0) (0.0005588458514 0.06827664953 0) (0.0005405687623 0.06835814341 0) (0.0005269229428 0.06828257698 0) (0.0005866172934 0.06819626628 0) (0.000545169054 0.06820422939 0) (0.0005132840411 0.06821036047 0) (-0.0008676546635 0.07205529763 0) (-0.0008641529681 0.07213353053 0) (-0.0008254893216 0.07205340296 0) (-0.0008219861698 0.07213163585 0) (-0.0007930546836 0.07205194328 0) (-0.0007895514257 0.07213019074 0) (-0.0008420049734 0.07260316728 0) (-0.0007998447433 0.07260117069 0) (-0.0007674135485 0.07259963822 0) (-0.0009244266958 0.07080028485 0) (-0.0009208481275 0.0708784735 0) (-0.0008822699089 0.07079821546 0) (-0.0008786846663 0.07087652059 0) (-0.0008498405948 0.07079662474 0) (-0.0008462516969 0.07087503179 0) (-0.0008996932173 0.07134734554 0) (-0.0008963913335 0.07142134144 0) (-0.0008575278754 0.07134545087 0) (-0.0008542244291 0.07141946133 0) (-0.0008250916749 0.07134400574 0) (-0.0008217882286 0.0714180162 0) (-0.0008711941201 0.07197707956 0) (-0.0008290303407 0.07197517034 0) (-0.0007965958088 0.0719736961 0) (-0.0008934850789 0.07148641181 0) (-0.0008513179623 0.07148456083 0) (-0.0008188815497 0.07148314483 0) (-0.0009285180067 0.07072228928 0) (-0.0008863664376 0.07072010341 0) (-0.0008539421292 0.07071842533 0) (-0.0009577238016 0.07017511552 0) (-0.0009534782921 0.07025328475 0) (-0.0009155773442 0.07017282773 0) (-0.0009113317287 0.07025101152 0) (-0.0008831579355 0.07017107686 0) (-0.0008789108635 0.07024926064 0) (-0.0009619707674 0.0700969463 0) (-0.0009198244162 0.07009464395 0) (-0.0008874050074 0.07009289308 0) (-0.001329202951 0.06147631044 0) (-0.001387262 0.06138117149 0) (-0.001364090058 0.06148941095 0) (-0.001411059136 0.06139008387 0) (-0.001390925783 0.06149948153 0) (-0.001429365585 0.06139694627 0) (0.000751019988 0.07465250905 0) (0.0007782545076 0.07454079867 0) (0.0007100727685 0.07464226938 0) (0.0007371503756 0.07453121267 0) (0.0006785736791 0.07463439328 0) (0.0007055311273 0.07452383703 0) (0.0007099037969 0.06889166871 0) (0.0006969691134 0.06881595145 0) (0.000668284086 0.06889868633 0) (0.0006553615844 0.0688230418 0) (0.0006362685165 0.06890409011 0) (0.0006233566341 0.06882850376 0) (-0.0004847587401 0.07552099077 0) (-0.0004584644856 0.07558576847 0) (-0.0004453848851 0.07550578497 0) (-0.0004198052966 0.0755688288 0) (-0.0004150974245 0.07549408709 0) (-0.0003900664539 0.07555579783 0) (-2.12547564e-05 0.06553282868 0) (-3.862935731e-05 0.06546774716 0) (-6.203960089e-05 0.06554368542 0) (-7.940660143e-05 0.06547864753 0) (-9.341250912e-05 0.06555205579 0) (-0.0001107735779 0.06548703243 0) (-0.0003112818475 0.06449165562 0) (-0.0003518228231 0.06450339905 0) (-0.000383007924 0.06451243806 0) (-0.001288476844 0.06453158733 0) (-0.001283198684 0.06460555428 0) (-0.001246374908 0.06452858617 0) (-0.00124109831 0.06460253857 0) (-0.001213988764 0.0645262675 0) (-0.001208713517 0.06460023448 0) (-0.0003308688112 0.06442408501 0) (-0.0003714038549 0.06443584296 0) (-0.0004025844805 0.0644448965 0) (-0.001294006631 0.06445406832 0) (-0.001251904695 0.06445106716 0) (-0.001219518339 0.06444877762 0) (-0.001310498188 0.06422014146 0) (-0.001305018287 0.06429801039 0) (-0.001268402714 0.06421705296 0) (-0.001262914788 0.06429502379 0) (-0.001236021258 0.06421469063 0) (-0.001230528432 0.06429273425 0) (-0.001100436488 0.06206922189 0) (-0.001123152259 0.06200562121 0) (-0.001140186172 0.06208342106 0) (-0.001162890079 0.06201984943 0) (-0.001170761908 0.06209433453 0) (-0.001193456759 0.06203080653 0) (-0.001437150913 0.06133030927 0) (-0.0014520545 0.0613364332 0) (0.00101825784 0.07211689417 0) (0.001018303221 0.07203812565 0) (0.0009760490505 0.07211682286 0) (0.0009760945661 0.07203827282 0) (0.0009435815351 0.07211676801 0) (0.000943626867 0.07203839275 0) (0.001017000901 0.07233409844 0) (0.0009747970321 0.07233350275 0) (0.0009423323727 0.07233304005 0) (0.001017481466 0.07226888688 0) (0.0009752735743 0.07226853883 0) (0.0009428073808 0.07226826549 0) (0.001017852255 0.07196000161 0) (0.0009756473902 0.07196046919 0) (0.0009431814943 0.07196083671 0) (0.001013292984 0.0717425484 0) (0.0009711021606 0.07174374413 0) (0.0009386475774 0.07174466504 0) (0.001015113529 0.07180733537 0) (0.000972916852 0.07180832723 0) (0.0009404581892 0.07180908796 0) (0.0002838346983 0.06676687993 0) (0.0002678888556 0.06669728738 0) (0.0002426941782 0.06677629731 0) (0.0002267514605 0.06670673386 0) (0.0002110459927 0.06678354818 0) (0.0001951077504 0.06671399926 0) (-0.0005090725662 0.07545455425 0) (-0.0004691101365 0.07544096817 0) (-0.0004383693522 0.07543051813 0) (-0.0005789865723 0.07520235997 0) (-0.0005617819464 0.07527460149 0) (-0.0005378943233 0.07519271428 0) (-0.0005209042998 0.07526408782 0) (-0.000506286692 0.07518529475 0) (-0.0004894588318 0.07525600093 0) (-0.0008218579095 0.07299464759 0) (-0.0008175669324 0.07307286018 0) (-0.0007797113461 0.07299237436 0) (-0.0007754254808 0.07307048504 0) (-0.0007472920434 0.07299060893 0) (-0.0007430095152 0.07306866137 0) (-0.0008259816088 0.07291640465 0) (-0.0007838333768 0.07291416054 0) (-0.0007514109491 0.07291242422 0) (-6.809772753e-05 0.06535739791 0) (-0.000108856342 0.06536835641 0) (-0.0001402091454 0.06537679947 0) (0.0006602690444 0.06860110641 0) (0.000640418126 0.06849089104 0) (0.0006186935854 0.06860840045 0) (0.0005988759813 0.06849835962 0) (0.0005867128927 0.06861399332 0) (0.0005669211087 0.06850409795 0) (-0.0008570455056 0.07229028689 0) (-0.0008531514989 0.07236858976 0) (-0.0008148853816 0.07228827573 0) (-0.0008109932555 0.07236652036 0) (-0.0007824543989 0.07228671413 0) (-0.0007785652918 0.07236494421 0) (-0.0008493007894 0.0724467473 0) (-0.0008071422278 0.07244472159 0) (-0.0007747112452 0.07244315998 0) (-0.0009137620382 0.07103489502 0) (-0.0009102280891 0.07111315682 0) (-0.0008715968024 0.07103298578 0) (-0.0008680628533 0.07111124758 0) (-0.0008391621644 0.0710315261 0) (-0.0008356282153 0.0711097879 0) (-0.0009066958086 0.0711913895 0) (-0.0008645304667 0.07118949483 0) (-0.0008320958287 0.07118803515 0) (-0.0008822588731 0.07174253057 0) (-0.0008784872069 0.07182083434 0) (-0.0008400969744 0.0717405631 0) (-0.0008363270829 0.07181882319 0) (-0.0008076642171 0.07173904518 0) (-0.0008038959941 0.07181727614 0) (-0.00088582282 0.07166474964 0) (-0.0008436573721 0.07166286954 0) (-0.0008112211716 0.07166142441 0) (-0.0009408887577 0.07048780807 0) (-0.00093671607 0.07056597783 0) (-0.0008987406318 0.0704855494 0) (-0.0008945662756 0.07056374827 0) (-0.0008663195545 0.07048382764 0) (-0.0008621451982 0.07056202652 0) (-0.0009450761158 0.07040962385 0) (-0.0009029294463 0.07040736519 0) (-0.0008705084751 0.07040562887 0) (-0.0009790708746 0.06978505677 0) (-0.000974812053 0.06986245395 0) (-0.0009369276483 0.06978272531 0) (-0.0009326672642 0.06986013704 0) (-0.0009045084517 0.06978094531 0) (-0.0009002480676 0.06985835704 0) (-0.000970511199 0.06994062277 0) (-0.0009283663042 0.06993832043 0) (-0.0008959471076 0.06993654043 0) (-0.001340642284 0.06383052546 0) (-0.001334602263 0.06390850684 0) (-0.001298559628 0.06382727684 0) (-0.00129252117 0.06390524366 0) (-0.001266189428 0.06382476894 0) (-0.001260149619 0.06390272119 0) (-0.001352617879 0.06367530477 0) (-0.001310533661 0.0636720707 0) (-0.001278161898 0.06366957736 0) (-0.001328550591 0.06398648813 0) (-0.001286469603 0.06398321039 0) (-0.001254099509 0.06398068793 0) (-0.001316368414 0.06414227536 0) (-0.001274282633 0.06413905585 0) (-0.001241909202 0.06413659162 0) (-0.001016507893 0.06230442002 0) (-0.001039212755 0.0622407173 0) (-0.001056296292 0.06231850295 0) (-0.001078972845 0.06225488742 0) (-0.00108690325 0.06232932926 0) (-0.001109557427 0.06226578639 0) (0.0006639486337 0.074968765 0) (0.0006968374412 0.07485746933 0) (0.0006236373934 0.07495625437 0) (0.0006562361521 0.07484593085 0) (0.0005926280674 0.0749466298 0) (0.0006250065199 0.07483705508 0) (0.0007147598727 0.07479187587 0) (0.0006740124315 0.07478086862 0) (0.0006426677979 0.07477240151 0) (0.0006715560871 0.068667179 0) (0.0006299577209 0.06867432755 0) (0.0005979573521 0.06867981861 0) (0.0003570520364 0.06708846898 0) (0.0003405895933 0.06701453979 0) (0.0003158498933 0.06709762464 0) (0.0002994176395 0.06702384087 0) (0.0002841550734 0.06710467193 0) (0.000267746865 0.06703098995 0) (0.0002509757661 0.06662347799 0) (0.0002098654354 0.06663304079 0) (0.0001782428578 0.066640408 0) (0.0003241323346 0.0669427225 0) (0.0002829858827 0.06695212535 0) (0.0002513346783 0.06695936168 0) (7.97448834e-05 0.06592102563 0) (3.883274176e-05 0.06593140264 0) (7.361824966e-06 0.06593939504 0) (-2.354470364e-06 0.06560360862 0) (-4.316700137e-05 0.0656143636 0) (-7.456151865e-05 0.06562264675 0) (-0.0007950695963 0.07344646653 0) (-0.0007529480614 0.07344375653 0) (-0.000720547219 0.07344165624 0) (-0.0008130230374 0.07315120202 0) (-0.000770888154 0.07314872497 0) (-0.0007384757377 0.07314681393 0) (-0.0008302012205 0.07283819154 0) (-0.0007880530947 0.07283593287 0) (-0.0007556321234 0.07283419655 0) (-8.654784386e-05 0.06528919272 0) (-0.0001272871795 0.06530023847 0) (-0.0001586251586 0.06530872511 0) (-0.0006365887152 0.06343116396 0) (-0.000676774574 0.06344407002 0) (-0.0007076880277 0.06345401008 0) (0.0006276616276 0.06842024114 0) (0.0005861240644 0.06842773881 0) (0.0005541723168 0.06843350625 0) (0.0005736194699 0.06813027898 0) (0.0005322000695 0.06813840209 0) (0.0005003392081 0.06814464951 0) (-0.00086066957 0.07221185096 0) (-0.0008185044403 0.07220992716 0) (-0.0007860714708 0.07220843837 0) (-0.0008456598066 0.07252490636 0) (-0.000803498014 0.07252292433 0) (-0.0007710652567 0.0725214064 0) (-0.0009173059702 0.07095666242 0) (-0.0008751407344 0.07095475318 0) (-0.0008427062024 0.07095327894 0) (-0.0009031648785 0.07126963676 0) (-0.0008609995366 0.07126774209 0) (-0.0008285648986 0.07126628241 0) (-0.0008747316961 0.07189891974 0) (-0.0008325683409 0.07189695226 0) (-0.000800136934 0.07189544891 0) (-0.0008889136601 0.07159273305 0) (-0.000846744875 0.07159091118 0) (-0.0008143068999 0.07158950974 0) (-0.0009326162041 0.07064414811 0) (-0.0008904663036 0.07064193312 0) (-0.0008580436637 0.07064022593 0) (-0.0009492633678 0.0703314542 0) (-0.0009071168044 0.07032918097 0) (-0.0008746958332 0.07032744466 0) (-0.0009889701686 0.06960634198 0) (-0.0009830302518 0.06971317759 0) (-0.0009468270484 0.06960399595 0) (-0.0009408855691 0.06971084612 0) (-0.0009144079578 0.06960220139 0) (-0.000908467935 0.06970905157 0) (-0.0009925988435 0.06954107296 0) (-0.0009504557233 0.06953872693 0) (-0.0009180366328 0.06953693237 0) (-0.0009662162769 0.07001877708 0) (-0.0009240699256 0.07001647472 0) (-0.0008916506229 0.07001470929 0) (-0.001059093766 0.06829476811 0) (-0.001054813726 0.06837287882 0) (-0.001016948977 0.0682924512 0) (-0.001012667057 0.06837062016 0) (-0.0009845296745 0.06829068577 0) (-0.0009802461917 0.06836886928 0) (-0.001050670698 0.06845097597 0) (-0.001008520797 0.06844876098 0) (-0.0009760982634 0.06844703922 0) (-0.001030058982 0.06884205964 0) (-0.00102579724 0.06892025788 0) (-0.0009879125246 0.06883977185 0) (-0.0009836508883 0.06891795552 0) (-0.0009554932219 0.06883800641 0) (-0.0009512315857 0.06891619009 0) (-0.001034323955 0.06876381773 0) (-0.0009921758295 0.06876155905 0) (-0.0009597548582 0.06875982274 0) (-0.0009967152987 0.06946702472 0) (-0.00095457051 0.06946470781 0) (-0.0009221513134 0.06946292781 0) (-0.001000946583 0.06938940886 0) (-0.0009587984567 0.06938715019 0) (-0.0009263773794 0.06938542844 0) (-0.001021535709 0.06899842699 0) (-0.0009793907085 0.06899613921 0) (-0.0009469699494 0.06899437376 0) (-0.001017278867 0.06907655244 0) (-0.0009751307408 0.06907429376 0) (-0.0009427097695 0.06907255745 0) (-0.001063377249 0.06821658459 0) (-0.001021232354 0.06821428225 0) (-0.0009888131573 0.06821250225 0) (-0.001067660626 0.06813841564 0) (-0.001025515837 0.06813609873 0) (-0.0009930966401 0.06813431873 0) (-0.001299716844 0.06153757509 0) (-0.001337792129 0.06155189316 0) (-0.001367080985 0.06156291378 0) (0.0006427672588 0.07503405885 0) (0.0006026539339 0.07502092485 0) (0.000571798424 0.07501082143 0) (0.0007333722676 0.07472142427 0) (0.0006925199246 0.07471081251 0) (0.0006610959474 0.07470265039 0) (0.000793142608 0.07447474811 0) (0.0007519199327 0.0744656844 0) (0.0007202089541 0.07445871288 0) (0.0008085211107 0.0744024368 0) (0.0007671927984 0.07439386762 0) (0.0007354000513 0.07438726811 0) (0.0008200174767 0.0695894538 0) (0.0008091732413 0.06951778498 0) (0.0007782541788 0.06959555487 0) (0.0007674376441 0.06952408975 0) (0.0007461271983 0.06960026033 0) (0.0007353335708 0.0695289407 0) (0.0006840146478 0.0687401178 0) (0.0006424086812 0.06874722271 0) (0.0006104051874 0.06875268466 0) (0.0007975567867 0.06944167942 0) (0.0007558303524 0.06944804239 0) (0.0007237338795 0.06945293697 0) (0.0007858453663 0.06936493368 0) (0.0007441235134 0.06937132575 0) (0.0007120301655 0.06937624944 0) (0.0001000325368 0.07592760829 0) (8.117970614e-05 0.07588984464 0) (6.667700229e-05 0.07586079571 0) (9.739251497e-05 0.06599169817 0) (5.644133929e-05 0.06600191525 0) (2.494033921e-05 0.06600977678 0) (-0.0003510220826 0.06435455223 0) (-0.0003915287116 0.06436641193 0) (-0.0004226869603 0.06437553813 0) (-0.001299527129 0.0643760249 0) (-0.001257423525 0.06437305286 0) (-0.001225035713 0.06437076331 0) (-0.001061661276 0.0621778138 0) (-0.001101413979 0.06219199843 0) (-0.001131992628 0.06220291192 0) (0.001018025893 0.07219464448 0) (0.0009758176052 0.07219444209 0) (0.0009433506978 0.07219427071 0) (0.001016448965 0.07188170973 0) (0.0009742476773 0.07188246858 0) (0.0009417847228 0.07188304 0) (-0.0005437089903 0.07534127718 0) (-0.0005031366447 0.07532964131 0) (-0.0004719261374 0.07532069096 0) (-0.0005943954871 0.06356409843 0) (-0.0006160142425 0.06349533371 0) (-0.0006346543022 0.06357678654 0) (-0.0006562402735 0.06350812354 0) (-0.0006656230228 0.06358653766 0) (-0.0006871837045 0.0635179473 0) (-0.0005733895393 0.06363091589 0) (-0.0006136543922 0.06364357491 0) (-0.0006446260258 0.06365332606 0) (-0.001046591222 0.06852914641 0) (-0.001042511534 0.06860734597 0) (-0.001004441215 0.06852694598 0) (-0.001000360071 0.06860514554 0) (-0.0009720170129 0.06852525334 0) (-0.000967937325 0.0686034529 0) (-0.001038430283 0.06868556009 0) (-0.0009962803829 0.0686833451 0) (-0.0009638561806 0.06868165246 0) (-0.001009097962 0.06923290772 0) (-0.001005023994 0.06931112189 0) (-0.0009669479558 0.06923070729 0) (-0.0009628739875 0.06930892146 0) (-0.0009345237535 0.06922901465 0) (-0.0009304497852 0.06930722882 0) (-0.001013170156 0.06915473723 0) (-0.0009710202555 0.06915252224 0) (-0.0009385961593 0.06915081503 0) (-0.00107621 0.06798286413 0) (-0.001071944002 0.06806024669 0) (-0.001034066774 0.06798053266 0) (-0.001029799214 0.06805792978 0) (-0.001001647577 0.06797875267 0) (-0.0009973814733 0.06805614979 0) (-0.001080192786 0.06791097055 0) (-0.001038048104 0.06790863908 0) (-0.001005630469 0.06790684453 0) (-0.001346679392 0.06375254407 0) (-0.00130459528 0.06374929543 0) (-0.001272223623 0.06374678752 0) (-0.001322453981 0.06406443997 0) (-0.00128037445 0.06406116224 0) (-0.001248004355 0.06405863978 0) (-0.001274054317 0.06160020758 0) (-0.00131316102 0.06161489728 0) (-0.00134324453 0.06162620043 0) (0.0008236555372 0.07432701033 0) (0.0008383672018 0.07425173259 0) (0.0007822554923 0.07431879123 0) (0.0007969110207 0.0742438052 0) (0.0007504094159 0.07431246885 0) (0.0007650214919 0.07423771618 0) (0.000851823169 0.07418062962 0) (0.0008102926606 0.07417309603 0) (0.0007783455393 0.07416729873 0) (0.0007741095822 0.06928804248 0) (0.0007619916897 0.06921188231 0) (0.0007324060551 0.06929455093 0) (0.0007203110698 0.06921853624 0) (0.0007003264515 0.06929956191 0) (0.0006882482294 0.06922364906 0) (0.0007502046231 0.06913874927 0) (0.0007085331661 0.0691454614 0) (0.0006764779261 0.06915061786 0) (0.0003724652766 0.06715832759 0) (0.0003312496013 0.06716742508 0) (0.0002995457246 0.06717442875 0) (0.0002341375864 0.06655195477 0) (0.0001930708711 0.06656170661 0) (0.0001614812897 0.06656920466 0) (0.0003091221991 0.06687721593 0) (0.0002679803286 0.06688664788 0) (0.0002363321431 0.06689389875 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; } } // ************************************************************************* //
[ "ishantamrakat24@gmail.com" ]
ishantamrakat24@gmail.com
09a471a65f82115e79ca8a735d8a9eda5d53f367
6a3a551845bcdc56a284c3963ad3d706c064d057
/Painter/PainterView.cpp
fe871f4b824640fa791c55a5393ec25efc8c97e6
[]
no_license
Catherine0320/weekends2015
3b83604f70e3dc76d72956fdbe1fa0df517360fe
688ef3cacc9e770407b86859ea32cfcfd8386b74
refs/heads/master
2021-01-20T17:12:37.834535
2015-11-07T09:43:45
2015-11-07T09:43:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,734
cpp
// This MFC Samples source code demonstrates using MFC Microsoft Office Fluent User Interface // (the "Fluent UI") and is provided only as referential material to supplement the // Microsoft Foundation Classes Reference and related electronic documentation // included with the MFC C++ library software. // License terms to copy, use or distribute the Fluent UI are available separately. // To learn more about our Fluent UI licensing program, please visit // http://go.microsoft.com/fwlink/?LinkId=238214. // // Copyright (C) Microsoft Corporation // All rights reserved. // PainterView.cpp : implementation of the CPainterView class // #include "stdafx.h" // SHARED_HANDLERS can be defined in an ATL project implementing preview, thumbnail // and search filter handlers and allows sharing of document code with that project. #ifndef SHARED_HANDLERS #include "Painter.h" #endif #include "PainterDoc.h" #include "PainterView.h" #include <Gdiplus.h> #include "Tool.h" #include "line.h" #include "Rectangle.h" #include "Ellipse.h" #include "LineTool.h" #include "RectangleTool.h" #include "EllipseTool.h" using namespace std; using namespace Gdiplus; #ifdef _DEBUG #define new DEBUG_NEW #endif // CPainterView IMPLEMENT_DYNCREATE(CPainterView, CView) BEGIN_MESSAGE_MAP(CPainterView, CView) // Standard printing commands ON_COMMAND(ID_FILE_PRINT, &CView::OnFilePrint) ON_COMMAND(ID_FILE_PRINT_DIRECT, &CView::OnFilePrint) ON_COMMAND(ID_FILE_PRINT_PREVIEW, &CPainterView::OnFilePrintPreview) ON_WM_CONTEXTMENU() ON_WM_RBUTTONUP() ON_WM_LBUTTONDOWN() ON_WM_LBUTTONUP() // ON_WM_MOVE() ON_WM_MOUSEMOVE() ON_COMMAND(ID_BUTTON_LINE, &CPainterView::OnButtonLine) ON_UPDATE_COMMAND_UI(ID_BUTTON_LINE, &CPainterView::OnUpdateButtonLine) ON_COMMAND(ID_BUTTON_RECTANGLE, &CPainterView::OnButtonRectangle) ON_UPDATE_COMMAND_UI(ID_BUTTON_RECTANGLE, &CPainterView::OnUpdateButtonRectangle) ON_COMMAND(ID_BUTTON_ELLIPSE, &CPainterView::OnButtonEllipse) ON_UPDATE_COMMAND_UI(ID_BUTTON_ELLIPSE, &CPainterView::OnUpdateButtonEllipse) ON_COMMAND(ID_BUTTON_BORDER_COLOR, &CPainterView::OnButtonBorderColor) ON_COMMAND(ID_BUTTON_FILL_COLOR, &CPainterView::OnButtonFillColor) END_MESSAGE_MAP() // CPainterView construction/destruction CPainterView::CPainterView() : _tool(ToolTypeLine) { _tools.insert(make_pair(ToolTypeLine, shared_ptr<CLineTool>(new CLineTool))); _tools.insert(make_pair(ToolTypeRectangle, shared_ptr < CRectangleTool>(new CRectangleTool))); _tools.insert(make_pair(ToolTypeEllipse, shared_ptr < CEllipseTool>(new CEllipseTool))); } CPainterView::~CPainterView() { } BOOL CPainterView::PreCreateWindow(CREATESTRUCT& cs) { // TODO: Modify the Window class or styles here by modifying // the CREATESTRUCT cs return CView::PreCreateWindow(cs); } // CPainterView drawing void CPainterView::OnDraw(CDC* pDC) { Gdiplus::Graphics graphics(pDC->m_hDC); CRect rect; GetClientRect(rect); Gdiplus::Bitmap bitmap(rect.Width(), rect.Height(), &graphics); Gdiplus::Graphics buffer_graphics(&bitmap); Draw(buffer_graphics); graphics.DrawImage(&bitmap, rect.left, rect.top, rect.right, rect.bottom); } void CPainterView::Draw(Gdiplus::Graphics& graphics) { CPainterDoc* doc = GetDocument(); ASSERT_VALID(doc); if (!doc) return; CRect rect; GetClientRect(rect); SolidBrush BKbrush(Gdiplus::Color::White); graphics.FillRectangle(&BKbrush, 0, 0, rect.Width(), rect.Height()); auto& shapes = doc->GetShapes(); for (auto shape = shapes.begin(); shape != shapes.end(); ++shape) { (*shape)->Draw(graphics); } auto shape = _tools[_tool]->GetShape(); if (shape) { shape->Draw(graphics); } } // CPainterView printing void CPainterView::OnFilePrintPreview() { #ifndef SHARED_HANDLERS AFXPrintPreview(this); #endif } BOOL CPainterView::OnPreparePrinting(CPrintInfo* pInfo) { // default preparation return DoPreparePrinting(pInfo); } void CPainterView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/) { // TODO: add extra initialization before printing } void CPainterView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/) { // TODO: add cleanup after printing } void CPainterView::OnRButtonUp(UINT /* nFlags */, CPoint point) { ClientToScreen(&point); OnContextMenu(this, point); } void CPainterView::OnContextMenu(CWnd* /* pWnd */, CPoint point) { #ifndef SHARED_HANDLERS theApp.GetContextMenuManager()->ShowPopupMenu(IDR_POPUP_EDIT, point.x, point.y, this, TRUE); #endif } // CPainterView diagnostics #ifdef _DEBUG void CPainterView::AssertValid() const { CView::AssertValid(); } void CPainterView::Dump(CDumpContext& dc) const { CView::Dump(dc); } CPainterDoc* CPainterView::GetDocument() const // non-debug version is inline { ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CPainterDoc))); return (CPainterDoc*)m_pDocument; } #endif //_DEBUG // CPainterView message handlers void CPainterView::OnLButtonDown(UINT nFlags, CPoint point) { _down_point = point; ASSERT(_tools[_tool]); _tools[_tool]->OnLButtonDown(nFlags, point); // switch (_tool) // { // case ToolTypeLine: // { // _temp_shape = shared_ptr<CLine>(new CLine(Point(point.x, point.y), // Point(point.x, point.y))); // break; // } // case ToolTypeRectangle: // _temp_shape = shared_ptr<CRectangle>(new CRectangle(point.x, point.y, 0, 0)); // break; // case ToolTypeEllipse: // _temp_shape = shared_ptr<CEllipse>(new CEllipse(Point(point.x, point.y), Point(point.x, point.y))); // break; // default: // ASSERT(0); // } Invalidate(FALSE); UpdateWindow(); CView::OnLButtonDown(nFlags, point); } void CPainterView::OnLButtonUp(UINT nFlags, CPoint point) { auto doc = GetDocument(); if (doc == nullptr) return; if (_tools[_tool]->GetShape()) { doc->AddShape(_tools[_tool]->GetShape()); } CView::OnLButtonUp(nFlags, point); } void CPainterView::OnMouseMove(UINT nFlags, CPoint point) { ASSERT(_tools[_tool]); _tools[_tool]->OnMouseMove(nFlags, point); Invalidate(FALSE); UpdateWindow(); CView::OnMouseMove(nFlags, point); } void CPainterView::OnButtonLine() { _tool = ToolTypeLine; } void CPainterView::OnUpdateButtonLine(CCmdUI *pCmdUI) { pCmdUI->SetCheck(_tool == ToolTypeLine); } void CPainterView::OnButtonRectangle() { _tool = ToolTypeRectangle; } void CPainterView::OnUpdateButtonRectangle(CCmdUI *pCmdUI) { pCmdUI->SetCheck(_tool == ToolTypeRectangle); } void CPainterView::OnButtonEllipse() { _tool = ToolTypeEllipse; } void CPainterView::OnUpdateButtonEllipse(CCmdUI *pCmdUI) { pCmdUI->SetCheck(_tool == ToolTypeEllipse); } void CPainterView::OnButtonBorderColor() { // TODO: Add your command handler code here } void CPainterView::OnButtonFillColor() { // TODO: Add your command handler code here }
[ "gyang@phy.ecnu.edu.cn" ]
gyang@phy.ecnu.edu.cn
bfdee5ce90a99e6b74bdc8b370decd56a85f48a2
68a54357187bcd5730956184a644f8ce3bb94905
/USBHandler.h
9cc414a33c06b6487e772eba58337fbe6627e576
[]
no_license
JoshGrace/BLEMiniKeyboard
d47f371ffaa3e0dc863c9495d67ec492caf3e420
2b1a38822d1cf9c2241b3a562ff4a34581b1e05c
refs/heads/master
2021-06-29T21:02:06.433349
2019-03-29T16:24:50
2019-03-29T16:24:50
140,121,375
1
1
null
2018-08-13T22:57:20
2018-07-07T22:40:52
C++
UTF-8
C++
false
false
373
h
#ifndef USBHANDLER_H #define USBHANDLER_H #include "Keyboard.h" namespace MiniKeyboard{ class USBHandler{ public: USBHandler(); // function called the default constructor bool getConnected(); void startConnection(); void endConnection(); void sendKeyCode(char ); void sendKeyStrokes(char **); private: }; } #endif
[ "poshamazing@gmail.com" ]
poshamazing@gmail.com
2dd5f3753bae17c02f12288b952ca266446e465a
db37020d177f582143bc7b13cefcaf50778dfb77
/Алгоритмы и структуры данных/0000_0000/Программирование (Влад)/12 - Разные задачи/J.cpp
eb1ca19df337606fbb8c36719a6d51bb395aedfb
[]
no_license
IvanShevchenko135/ForCFU
308bb874b90c0f99f383a7701e97368d7b83f9ed
1358de0ea811a4d3885d79e16f807c8af09ff417
refs/heads/master
2023-04-16T18:00:09.356944
2021-04-27T11:57:03
2021-04-27T11:57:03
357,560,360
0
0
null
null
null
null
UTF-8
C++
false
false
497
cpp
#include <cstdlib> #include <iostream> #include <stdio.h> #include <cmath> #include <algorithm> #include <vector> #include <iomanip> #include <string> #include <fstream> using namespace std; int main() { int t; cin >> t; for (int i = 0; i < t; i++) { unsigned long long n, a = 3, k = 5; cin >> n; while (n > a + k) { a += k; k += 2; } if (n == a + k) { cout << n << " " << n << endl; continue; } cout << a << " " << a + k << endl; } //system("pause"); return 0; }
[ "ivanshevchenko135@gmail.com" ]
ivanshevchenko135@gmail.com
f5fa7fe63b69250d2bab1ef1c1a2a854ffe056aa
bb7ed686f19d919c0e2a381107637f1c05cb0342
/include/lexy/_detail/std.hpp
ebabe36d7b32a86912215d34100c497d071ea842
[ "BSL-1.0" ]
permissive
foonathan/lexy
8945315afd3b1afdbdabaee816570eaabadc0abb
1b31b097fa4fcaf5465f038793fe88cdc2140b71
refs/heads/main
2023-08-17T21:56:02.139707
2023-07-25T20:18:25
2023-07-25T20:18:25
201,454,592
867
59
BSL-1.0
2023-09-01T10:03:35
2019-08-09T11:27:57
C++
UTF-8
C++
false
false
2,188
hpp
// Copyright (C) 2020-2023 Jonathan Müller and lexy contributors // SPDX-License-Identifier: BSL-1.0 #ifndef LEXY_DETAIL_STD_HPP_INCLUDED #define LEXY_DETAIL_STD_HPP_INCLUDED #include <lexy/_detail/config.hpp> //=== iterator tags ===// #if defined(__GLIBCXX__) namespace std { _GLIBCXX_BEGIN_NAMESPACE_VERSION struct forward_iterator_tag; struct bidirectional_iterator_tag; _GLIBCXX_END_NAMESPACE_VERSION } // namespace std #elif defined(_LIBCPP_VERSION) _LIBCPP_BEGIN_NAMESPACE_STD struct forward_iterator_tag; struct bidirectional_iterator_tag; _LIBCPP_END_NAMESPACE_STD #else // Forward declaring things in std is not allowed, but I'm willing to take the risk. namespace std { struct forward_iterator_tag; struct bidirectional_iterator_tag; } // namespace std #endif //=== (constexpr) construct_at ===// #if !LEXY_HAS_CONSTEXPR_DTOR namespace lexy::_detail { // We don't have constexpr dtor's, so this is just a regular function. template <typename T, typename... Args> T* construct_at(T* ptr, Args&&... args) { return ::new ((void*)ptr) T(LEXY_FWD(args)...); } } // namespace lexy::_detail #elif defined(_MSC_VER) namespace lexy::_detail { // MSVC can make it constexpr if marked with an attribute given by a macro. template <typename T, typename... Args> constexpr T* construct_at(T* ptr, Args&&... args) { # if defined(_MSVC_CONSTEXPR) _MSVC_CONSTEXPR # endif return ::new ((void*)ptr) T(LEXY_FWD(args)...); } } // namespace lexy::_detail #else namespace lexy::_detail { struct _construct_at_tag {}; } // namespace lexy::_detail namespace std { // GCC only allows constexpr placement new inside a function called `std::construct_at`. // So we write our own. template <typename T, typename... Args> constexpr T* construct_at(lexy::_detail::_construct_at_tag, T* ptr, Args&&... args) { return ::new ((void*)ptr) T(LEXY_FWD(args)...); } } // namespace std namespace lexy::_detail { template <typename T, typename... Args> constexpr T* construct_at(T* ptr, Args&&... args) { return std::construct_at(lexy::_detail::_construct_at_tag{}, ptr, LEXY_FWD(args)...); } } // namespace lexy::_detail #endif #endif // LEXY_DETAIL_STD_HPP_INCLUDED
[ "git@foonathan.net" ]
git@foonathan.net
a789ed77cbc6a824819eaa74969020a425f617fd
ba4db75b9d1f08c6334bf7b621783759cd3209c7
/src_main/utils/vgui_panel_zoo/LabelDemo.cpp
31815bfda716f79a47cc197753ff9108b722d340
[]
no_license
equalent/source-2007
a27326c6eb1e63899e3b77da57f23b79637060c0
d07be8d02519ff5c902e1eb6430e028e1b302c8b
refs/heads/master
2020-03-28T22:46:44.606988
2017-03-27T18:05:57
2017-03-27T18:05:57
149,257,460
2
0
null
2018-09-18T08:52:10
2018-09-18T08:52:09
null
WINDOWS-1252
C++
false
false
1,482
cpp
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============// // // Purpose: // // $NoKeywords: $ //=============================================================================// #include "DemoPage.h" #include "vgui/IVGui.h" #include "tier1/KeyValues.h" #include <vgui_controls/Label.h> using namespace vgui; //----------------------------------------------------------------------------- // A Label is a panel class to handle the display of images and text strings. // Here we demonstrate a simple text only label. //----------------------------------------------------------------------------- class LabelDemo: public DemoPage { public: LabelDemo(Panel *parent, const char *name); ~LabelDemo(); private: Label *m_pLabel; }; //----------------------------------------------------------------------------- // Purpose: Constructor //----------------------------------------------------------------------------- LabelDemo::LabelDemo(Panel *parent, const char *name) : DemoPage(parent, name) { m_pLabel = new Label(this, "ALabel", "LabelText"); m_pLabel->SetPos(100, 100); } //----------------------------------------------------------------------------- // Purpose: Destructor //----------------------------------------------------------------------------- LabelDemo::~LabelDemo() { } Panel* LabelDemo_Create(Panel *parent) { return new LabelDemo(parent, "LabelDemo"); }
[ "sean@csnxs.uk" ]
sean@csnxs.uk
5495733cdf16a1d711f54ad8ca5d4b21ada7eedf
dce3e002c1f99805ed978db018664cbb0539cc60
/c++/ТВПиС/ТВПиС/VariableTable.h
f73e99f2aa89a42c1313b4db185d3f9d0f2dc4fc
[]
no_license
Sweet-heart-bakho/6-term
3ae16afad064c876b71bb214f55582867ec8e05e
fd77720b7282f39c517e03b53d9cfd0d5ec4fd56
refs/heads/master
2023-03-17T09:54:40.649756
2015-09-12T20:48:25
2015-09-12T20:48:25
null
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
510
h
#pragma once #include "Hash.h" #include "TValueKeeper.h" // Хеш-таблица для хранения значений TValue // и имен констант и переменных их хранящих. class VariableTable : public Hash { public: VariableTable() : Hash(9, 0, 0, 0, 0) { } ~VariableTable(); unsigned int Key1(char*); TValueKeeper* Find(char*); TValueKeeper* Push(TValueKeeper*); TValueKeeper* Push(char* name, double value, int type, int size = 0); };
[ "admin@codeserfer.com" ]
admin@codeserfer.com
c6a2f64533d9b1c98a9312891b4087bd0c27c25a
35f72ecafb4ad6b013eb629a965abd75ef0a082a
/日常/9-19/D.cpp
1af9fc5b6b1fc49ce2971f8c6ffe61a9235954ab
[]
no_license
cdegree/ACM
d8d478d789a4f57acd2f340e956d5b7a46f33f8f
42038ec0cbf99120e8416eed18b8a30dc6873947
refs/heads/master
2021-01-18T21:25:43.017457
2016-04-06T09:16:41
2016-04-06T09:16:41
29,577,653
0
0
null
null
null
null
UTF-8
C++
false
false
4,097
cpp
#include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <cctype> #include <vector> #include <stack> #include <queue> #include <map> #include <algorithm> #include <iostream> #include <string> #include <set> #define X first #define Y second #define sqr(x) (x)*(x) #pragma comment(linker,"/STACK:102400000,102400000") using namespace std; const double PI = acos(-1.0); map<int, int>::iterator it; typedef long long LL ; template<typename T> void checkmin(T &x, T y) {x = min(x, y);} template<typename T> void checkmax(T &x, T y) {x = max(x, y);} const LL inf = 1LL << 56; const int N = 1010; const int M = 1005000; struct Edge { int st, en, next; LL flow, cost, cap; } E[M]; int head[N] , nedge , now[N], node; int src, dest; int pre[N]; LL dis[N]; queue<int> q; bool vs[N]; void add_edge(int st, int en, LL cap, LL cost) { E[nedge].st = st; E[nedge].en = en; E[nedge].cap = cap; E[nedge].flow = 0; E[nedge].cost = cost; E[nedge].next = head[st]; head[st] = nedge++; E[nedge].st = en; E[nedge].en = st; E[nedge].cap = 0; E[nedge].flow = 0; E[nedge].cost = -cost; E[nedge].next = head[en]; head[en] = nedge++; } bool SPFA() { for(int i = 0; i < node; i++) dis[i] = inf; memset(vs, 0, sizeof(vs)); memset(now, -1, sizeof(now)); while(!q.empty()) q.pop(); q.push(src); dis[src] = 0; vs[src] = 1; while(!q.empty()) { int u = q.front(); q.pop(); vs[u] = 0; for(int i = head[u], v; i != -1; i = E[i].next) if(E[i].cap - E[i].flow > 0 && dis[v=E[i].en] > dis[u] + E[i].cost) { dis[v] = dis[u] + E[i].cost; now[v] = i; if(!vs[v]) { vs[v] = 1; q.push(v); } } } if(dis[dest] != inf) return true; else return false; } void MCMF(LL &flow, LL &cost) { cost = 0, flow = 0; while(SPFA()) { LL fw = inf; for(int u = dest; u != src; u = E[now[u]].st) if(fw > E[now[u]].cap - E[now[u]].flow) fw = E[now[u]].cap - E[now[u]].flow; for(int u = dest; u != src; u = E[now[u]].st) { E[now[u]].flow += fw; E[now[u] ^ 1].flow -= fw; } flow += fw; cost += fw * dis[dest]; } } void init(int _node, int _src, int _dest) { nedge = 0; node = _node; src = _src; dest = _dest; for(int i = 0; i < node; i++)head[i] = -1; } int e[N*N][2]; int gold[11], pri[N]; int main() { int T, n, m, k; scanf("%d", &T); while(T--) { scanf("%d%d", &n, &m); for(int i = 0; i < m; ++i) { scanf("%d%d", &e[i][0], &e[i][1]); } scanf("%d", &k); for(int i = 0; i < 2 * k; ++i) { scanf("%d", gold + i); } int sum = 0; for(int i = 0; i < n; ++i) { scanf("%d", pri + i); sum += pri[i]; } LL res = inf; for(int mask = 0; mask < (1 << 2 * k); ++mask) { int cnt = 0; for(int i = 0; i < 2 * k; ++i) { if((mask >> i) & 1) { ++cnt; } } if(cnt != k)continue; init(2 * n + 3, 2 * n + 1, 2 * n + 2); for(int i = 0; i < n; ++i) { add_edge(i, i + n, 1, pri[i]); } for(int i = 0; i < m; ++i) { add_edge(e[i][0] + n, e[i][1], inf, 0); add_edge(e[i][1] + n, e[i][0], inf, 0); } for(int i = 0; i < 2 * k; ++i) { if((mask >> i) & 1) { add_edge(src, gold[i], 1, 0); } else { add_edge(gold[i] + n, dest, 1, 0); } } LL cost, flow; MCMF(flow, cost); if(flow == k)res = min(res, cost); } if(res == inf) { puts("-1"); } else { printf("%d\n", sum - res); } } return 0; }
[ "316403398@qq.com" ]
316403398@qq.com
04e2b6d8586e72c3ef21b1a6b462a4430edb7337
d5a7483d5a53ab49ec9dbe6a87d27f5718ca6c05
/DungeonCrawlerV2/Store.cpp
6eeecf0024891d36538c63b66b7a2d135cdb285a
[]
no_license
JacobDominski/DungeonCrawlerV2
8b80f48dab6d309e025012144ebac3317efc75bc
83f89f868046a4e8c427f3faa5b912ea55415f92
refs/heads/master
2023-04-13T15:58:31.461706
2021-04-29T22:52:14
2021-04-29T22:52:14
333,633,473
1
1
null
null
null
null
UTF-8
C++
false
false
1,470
cpp
#include "Store.h" void Store(Player* player, std::vector<Item>* catalog) { bool quit = false; int choice; while (!quit) { choice = 0; std::cout << "Would you like to leave the Shop?\n"; do { std::cout << "\rType (Y/N): "; choice = _getch(); } while (!(choice == 89 || choice == 121 || choice == 78 || choice == 110)); if (choice == 89 || choice == 121) { quit = true; break; } DisplayItems(catalog); BuyItem(player, catalog); } } void BuyItem(Player* player, std::vector<Item>* catalog) { std::cout << "You have $" << player->GetMoney() << " and a space of " << player->GetCarryingCapacity() << std::endl; std::cout << "What Item would you like to buy? "; std::string itemName; std::getline(std::cin, itemName); int itemID = SearchItem(catalog, itemName); if (itemID == -1) { std::cout << "\nCould not find the item you wanted. Try double checking if the name is spelled correctly\n"; } else { if (player->GetMoney() >= catalog->at(itemID).cost && player->GetCarryingCapacity() >= catalog->at(itemID).weight) { player->SetMoney(player->GetMoney() - catalog->at(itemID).cost); player->SetCarryingCapacity(player->GetCarryingCapacity() - catalog->at(itemID).weight); player->AddItem(catalog->at(itemID)); std::cout << "Item Bought!\n"; } else { std::cout << "\nYou do not have enough Money and/or Space \nin your inventory. Try buying a bag to \nincrease your carrying capacity.\n"; } } }
[ "jacdomin@uat.edu" ]
jacdomin@uat.edu
e39702f25423acbf1fe5c4da1d430637ec7a37bc
e4f4ad3ee9a03640101e30351f8ef116cc491ac0
/PastFiles/Codeforces/Contest2019/Codeforces573_Div12/E.cpp
55aed44b9ae86e522f878cb17b771ec4dd49e114
[]
no_license
AppledoreM/OI
8f53a9c8dde468785ffd58d0d0cd9219ff33397f
8fc15b09ac94b1edbad84dac1da684ccff77b2ed
refs/heads/master
2022-10-17T08:58:56.126917
2022-09-28T22:00:02
2022-09-28T22:00:02
143,269,374
2
0
null
null
null
null
UTF-8
C++
false
false
2,192
cpp
#include <bits/stdc++.h> using namespace std; const int maxn = 1e5 + 10; int n,k,a[maxn]; string s; bool check1(){ int cnt0,cnt1; cnt0 = cnt1 = 0; for(int i = 1; i <= n; i++){ cnt0 += (a[i] == 0); cnt1 += (a[i] == 1); } if(cnt0 == 0 || cnt1 == 0 || k >= n) return 1; int cnt0_left, cnt1_left,cnt0_right,cnt1_right; cnt0_left = cnt0_right = cnt1_left = cnt1_right = 0; for(int i = k + 1; i <= n; i++){ cnt0_right += (a[i] == 0); cnt1_right += (a[i] == 1); } for(int i = k; i <= n; i++){ if(cnt0_left == 0 && cnt0_right == 0){ return true; } if(cnt1_left == 0 && cnt1_right == 0){ return true; } cnt0_right -= (a[i + 1] == 0); cnt1_right -= (a[i + 1] == 1); cnt0_left += (a[i - k + 1] == 0); cnt1_left += (a[i - k + 1] == 1); } return false; } bool check2(){ int cnt0_left, cnt1_left,cnt0_right,cnt1_right; cnt0_left = cnt0_right = cnt1_left = cnt1_right = 0; for(int i = k + 1; i <= n; i++){ cnt0_right += (a[i] == 0); cnt1_right += (a[i] == 1); } for(int i = k; i <= n; i++){ if(i == k || i == n){ if(2 * k >= n){ cnt0_right -= (a[i + 1] == 0); cnt1_right -= (a[i + 1] == 1); cnt0_left += (a[i - k + 1] == 0); cnt1_left += (a[i - k + 1] == 1); continue; } } if(cnt0_left == 0 && cnt1_right == 0){ } else if(cnt1_left == 0 && cnt0_right == 0){ } else return false; cnt0_right -= (a[i + 1] == 0); cnt1_right -= (a[i + 1] == 1); cnt0_left += (a[i - k + 1] == 0); cnt1_left += (a[i - k + 1] == 1); } return true; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); cin>>n>>k>>s; for(int i = 0; i < n; i++){ a[i + 1] = (s[i] - '0'); } if(check1()){ cout<<"tokitsukaze"<<endl; } else if(check2()){ cout<<"quailty"<<endl; } else{ cout<<"once again"<<endl; } return 0; }
[ "appledorem@appledorem.com" ]
appledorem@appledorem.com
46fbfb9374c0f9c0e14bc4bf328c9e89be824f19
0577f9d8438087c1ec7655e8394d2f97c494d003
/robot/Eigen/src/SVD/SVD.h
048e91ab666d8534f9e7947d704b65ec9cce32aa
[ "BSD-2-Clause" ]
permissive
RMIT-RoboCup-Standard-League/PP1-Nao-Soccer
b553242f62b96774de5120dc6eaac0d28e215a94
76a69dc15945ed2e06eeea30d5b6056f563a1e6d
refs/heads/master
2021-05-10T13:32:25.092111
2018-02-16T01:39:38
2018-02-16T01:39:38
118,477,821
8
3
null
2018-02-16T01:39:39
2018-01-22T15:45:32
C++
UTF-8
C++
false
false
19,188
h
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. Eigen itself is part of the KDE project. // // Copyright (C) 2008 Gael Guennebaud <g.gael@free.fr> // // Eigen is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 3 of the License, or (at your option) any later version. // // Alternatively, you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of // the License, or (at your option) any later version. // // Eigen is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the // GNU General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License and a copy of the GNU General Public License along with // Eigen. If not, see <http://www.gnu.org/licenses/>. #ifndef EIGEN_SVD_H #define EIGEN_SVD_H /** \ingroup SVD_Module * \nonstableyet * * \class SVD * * \brief Standard SVD decomposition of a matrix and associated features * * \param MatrixType the type of the matrix of which we are computing the SVD decomposition * * This class performs a standard SVD decomposition of a real matrix A of size \c M x \c N * with \c M \>= \c N. * * * \sa MatrixBase::SVD() */ template<typename MatrixType> class SVD { private: typedef typename MatrixType::Scalar Scalar; typedef typename NumTraits<typename MatrixType::Scalar>::Real RealScalar; enum { PacketSize = ei_packet_traits<Scalar>::size, AlignmentMask = int(PacketSize)-1, MinSize = EIGEN_SIZE_MIN(MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTime) }; typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> ColVector; typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> RowVector; typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MinSize> MatrixUType; typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, MatrixType::ColsAtCompileTime> MatrixVType; typedef Matrix<Scalar, MinSize, 1> SingularValuesType; public: SVD() {} // a user who relied on compiler-generated default compiler reported problems with MSVC in 2.0.7 SVD(const MatrixType& matrix) : m_matU(matrix.rows(), std::min(matrix.rows(), matrix.cols())), m_matV(matrix.cols(),matrix.cols()), m_sigma(std::min(matrix.rows(),matrix.cols())) { compute(matrix); } template<typename OtherDerived, typename ResultType> bool solve(const MatrixBase<OtherDerived> &b, ResultType* result) const; const MatrixUType& matrixU() const { return m_matU; } const SingularValuesType& singularValues() const { return m_sigma; } const MatrixVType& matrixV() const { return m_matV; } void compute(const MatrixType& matrix); SVD& sort(); template<typename UnitaryType, typename PositiveType> void computeUnitaryPositive(UnitaryType *unitary, PositiveType *positive) const; template<typename PositiveType, typename UnitaryType> void computePositiveUnitary(PositiveType *positive, UnitaryType *unitary) const; template<typename RotationType, typename ScalingType> void computeRotationScaling(RotationType *unitary, ScalingType *positive) const; template<typename ScalingType, typename RotationType> void computeScalingRotation(ScalingType *positive, RotationType *unitary) const; protected: /** \internal */ MatrixUType m_matU; /** \internal */ MatrixVType m_matV; /** \internal */ SingularValuesType m_sigma; }; /** Computes / recomputes the SVD decomposition A = U S V^* of \a matrix * * \note this code has been adapted from JAMA (public domain) */ template<typename MatrixType> void SVD<MatrixType>::compute(const MatrixType& matrix) { const int m = matrix.rows(); const int n = matrix.cols(); const int nu = std::min(m,n); ei_assert(m>=n && "In Eigen 2.0, SVD only works for MxN matrices with M>=N. Sorry!"); ei_assert(m>1 && "In Eigen 2.0, SVD doesn't work on 1x1 matrices"); m_matU.resize(m, nu); m_matU.setZero(); m_sigma.resize(std::min(m,n)); m_matV.resize(n,n); RowVector e(n); ColVector work(m); MatrixType matA(matrix); const bool wantu = true; const bool wantv = true; int i=0, j=0, k=0; // Reduce A to bidiagonal form, storing the diagonal elements // in s and the super-diagonal elements in e. int nct = std::min(m-1,n); int nrt = std::max(0,std::min(n-2,m)); for (k = 0; k < std::max(nct,nrt); ++k) { if (k < nct) { // Compute the transformation for the k-th column and // place the k-th diagonal in m_sigma[k]. m_sigma[k] = matA.col(k).end(m-k).norm(); if (m_sigma[k] != 0.0) // FIXME { if (matA(k,k) < 0.0) m_sigma[k] = -m_sigma[k]; matA.col(k).end(m-k) /= m_sigma[k]; matA(k,k) += 1.0; } m_sigma[k] = -m_sigma[k]; } for (j = k+1; j < n; ++j) { if ((k < nct) && (m_sigma[k] != 0.0)) { // Apply the transformation. Scalar t = matA.col(k).end(m-k).dot(matA.col(j).end(m-k)); // FIXME dot product or cwise prod + .sum() ?? t = -t/matA(k,k); matA.col(j).end(m-k) += t * matA.col(k).end(m-k); } // Place the k-th row of A into e for the // subsequent calculation of the row transformation. e[j] = matA(k,j); } // Place the transformation in U for subsequent back multiplication. if (wantu & (k < nct)) m_matU.col(k).end(m-k) = matA.col(k).end(m-k); if (k < nrt) { // Compute the k-th row transformation and place the // k-th super-diagonal in e[k]. e[k] = e.end(n-k-1).norm(); if (e[k] != 0.0) { if (e[k+1] < 0.0) e[k] = -e[k]; e.end(n-k-1) /= e[k]; e[k+1] += 1.0; } e[k] = -e[k]; if ((k+1 < m) & (e[k] != 0.0)) { // Apply the transformation. work.end(m-k-1) = matA.corner(BottomRight,m-k-1,n-k-1) * e.end(n-k-1); for (j = k+1; j < n; ++j) matA.col(j).end(m-k-1) += (-e[j]/e[k+1]) * work.end(m-k-1); } // Place the transformation in V for subsequent back multiplication. if (wantv) m_matV.col(k).end(n-k-1) = e.end(n-k-1); } } // Set up the final bidiagonal matrix or order p. int p = std::min(n,m+1); if (nct < n) m_sigma[nct] = matA(nct,nct); if (m < p) m_sigma[p-1] = 0.0; if (nrt+1 < p) e[nrt] = matA(nrt,p-1); e[p-1] = 0.0; // If required, generate U. if (wantu) { for (j = nct; j < nu; ++j) { m_matU.col(j).setZero(); m_matU(j,j) = 1.0; } for (k = nct-1; k >= 0; k--) { if (m_sigma[k] != 0.0) { for (j = k+1; j < nu; ++j) { Scalar t = m_matU.col(k).end(m-k).dot(m_matU.col(j).end(m-k)); // FIXME is it really a dot product we want ? t = -t/m_matU(k,k); m_matU.col(j).end(m-k) += t * m_matU.col(k).end(m-k); } m_matU.col(k).end(m-k) = - m_matU.col(k).end(m-k); m_matU(k,k) = Scalar(1) + m_matU(k,k); if (k-1>0) m_matU.col(k).start(k-1).setZero(); } else { m_matU.col(k).setZero(); m_matU(k,k) = 1.0; } } } // If required, generate V. if (wantv) { for (k = n-1; k >= 0; k--) { if ((k < nrt) & (e[k] != 0.0)) { for (j = k+1; j < nu; ++j) { Scalar t = m_matV.col(k).end(n-k-1).dot(m_matV.col(j).end(n-k-1)); // FIXME is it really a dot product we want ? t = -t/m_matV(k+1,k); m_matV.col(j).end(n-k-1) += t * m_matV.col(k).end(n-k-1); } } m_matV.col(k).setZero(); m_matV(k,k) = 1.0; } } // Main iteration loop for the singular values. int pp = p-1; int iter = 0; Scalar eps = ei_pow(Scalar(2),ei_is_same_type<Scalar,float>::ret ? Scalar(-23) : Scalar(-52)); while (p > 0) { int k=0; int kase=0; // Here is where a test for too many iterations would go. // This section of the program inspects for // negligible elements in the s and e arrays. On // completion the variables kase and k are set as follows. // kase = 1 if s(p) and e[k-1] are negligible and k<p // kase = 2 if s(k) is negligible and k<p // kase = 3 if e[k-1] is negligible, k<p, and // s(k), ..., s(p) are not negligible (qr step). // kase = 4 if e(p-1) is negligible (convergence). for (k = p-2; k >= -1; --k) { if (k == -1) break; if (ei_abs(e[k]) <= eps*(ei_abs(m_sigma[k]) + ei_abs(m_sigma[k+1]))) { e[k] = 0.0; break; } } if (k == p-2) { kase = 4; } else { int ks; for (ks = p-1; ks >= k; --ks) { if (ks == k) break; Scalar t = (ks != p ? ei_abs(e[ks]) : Scalar(0)) + (ks != k+1 ? ei_abs(e[ks-1]) : Scalar(0)); if (ei_abs(m_sigma[ks]) <= eps*t) { m_sigma[ks] = 0.0; break; } } if (ks == k) { kase = 3; } else if (ks == p-1) { kase = 1; } else { kase = 2; k = ks; } } ++k; // Perform the task indicated by kase. switch (kase) { // Deflate negligible s(p). case 1: { Scalar f(e[p-2]); e[p-2] = 0.0; for (j = p-2; j >= k; --j) { Scalar t(ei_hypot(m_sigma[j],f)); Scalar cs(m_sigma[j]/t); Scalar sn(f/t); m_sigma[j] = t; if (j != k) { f = -sn*e[j-1]; e[j-1] = cs*e[j-1]; } if (wantv) { for (i = 0; i < n; ++i) { t = cs*m_matV(i,j) + sn*m_matV(i,p-1); m_matV(i,p-1) = -sn*m_matV(i,j) + cs*m_matV(i,p-1); m_matV(i,j) = t; } } } } break; // Split at negligible s(k). case 2: { Scalar f(e[k-1]); e[k-1] = 0.0; for (j = k; j < p; ++j) { Scalar t(ei_hypot(m_sigma[j],f)); Scalar cs( m_sigma[j]/t); Scalar sn(f/t); m_sigma[j] = t; f = -sn*e[j]; e[j] = cs*e[j]; if (wantu) { for (i = 0; i < m; ++i) { t = cs*m_matU(i,j) + sn*m_matU(i,k-1); m_matU(i,k-1) = -sn*m_matU(i,j) + cs*m_matU(i,k-1); m_matU(i,j) = t; } } } } break; // Perform one qr step. case 3: { // Calculate the shift. Scalar scale = std::max(std::max(std::max(std::max( ei_abs(m_sigma[p-1]),ei_abs(m_sigma[p-2])),ei_abs(e[p-2])), ei_abs(m_sigma[k])),ei_abs(e[k])); Scalar sp = m_sigma[p-1]/scale; Scalar spm1 = m_sigma[p-2]/scale; Scalar epm1 = e[p-2]/scale; Scalar sk = m_sigma[k]/scale; Scalar ek = e[k]/scale; Scalar b = ((spm1 + sp)*(spm1 - sp) + epm1*epm1)/Scalar(2); Scalar c = (sp*epm1)*(sp*epm1); Scalar shift = 0.0; if ((b != 0.0) || (c != 0.0)) { shift = ei_sqrt(b*b + c); if (b < 0.0) shift = -shift; shift = c/(b + shift); } Scalar f = (sk + sp)*(sk - sp) + shift; Scalar g = sk*ek; // Chase zeros. for (j = k; j < p-1; ++j) { Scalar t = ei_hypot(f,g); Scalar cs = f/t; Scalar sn = g/t; if (j != k) e[j-1] = t; f = cs*m_sigma[j] + sn*e[j]; e[j] = cs*e[j] - sn*m_sigma[j]; g = sn*m_sigma[j+1]; m_sigma[j+1] = cs*m_sigma[j+1]; if (wantv) { for (i = 0; i < n; ++i) { t = cs*m_matV(i,j) + sn*m_matV(i,j+1); m_matV(i,j+1) = -sn*m_matV(i,j) + cs*m_matV(i,j+1); m_matV(i,j) = t; } } t = ei_hypot(f,g); cs = f/t; sn = g/t; m_sigma[j] = t; f = cs*e[j] + sn*m_sigma[j+1]; m_sigma[j+1] = -sn*e[j] + cs*m_sigma[j+1]; g = sn*e[j+1]; e[j+1] = cs*e[j+1]; if (wantu && (j < m-1)) { for (i = 0; i < m; ++i) { t = cs*m_matU(i,j) + sn*m_matU(i,j+1); m_matU(i,j+1) = -sn*m_matU(i,j) + cs*m_matU(i,j+1); m_matU(i,j) = t; } } } e[p-2] = f; iter = iter + 1; } break; // Convergence. case 4: { // Make the singular values positive. if (m_sigma[k] <= 0.0) { m_sigma[k] = m_sigma[k] < Scalar(0) ? -m_sigma[k] : Scalar(0); if (wantv) m_matV.col(k).start(pp+1) = -m_matV.col(k).start(pp+1); } // Order the singular values. while (k < pp) { if (m_sigma[k] >= m_sigma[k+1]) break; Scalar t = m_sigma[k]; m_sigma[k] = m_sigma[k+1]; m_sigma[k+1] = t; if (wantv && (k < n-1)) m_matV.col(k).swap(m_matV.col(k+1)); if (wantu && (k < m-1)) m_matU.col(k).swap(m_matU.col(k+1)); ++k; } iter = 0; p--; } break; } // end big switch } // end iterations } template<typename MatrixType> SVD<MatrixType>& SVD<MatrixType>::sort() { int mu = m_matU.rows(); int mv = m_matV.rows(); int n = m_matU.cols(); for (int i=0; i<n; ++i) { int k = i; Scalar p = m_sigma.coeff(i); for (int j=i+1; j<n; ++j) { if (m_sigma.coeff(j) > p) { k = j; p = m_sigma.coeff(j); } } if (k != i) { m_sigma.coeffRef(k) = m_sigma.coeff(i); // i.e. m_sigma.coeffRef(i) = p; // swaps the i-th and the k-th elements int j = mu; for(int s=0; j!=0; ++s, --j) std::swap(m_matU.coeffRef(s,i), m_matU.coeffRef(s,k)); j = mv; for (int s=0; j!=0; ++s, --j) std::swap(m_matV.coeffRef(s,i), m_matV.coeffRef(s,k)); } } return *this; } /** \returns the solution of \f$ A x = b \f$ using the current SVD decomposition of A. * The parts of the solution corresponding to zero singular values are ignored. * * \sa MatrixBase::svd(), LU::solve(), LLT::solve() */ template<typename MatrixType> template<typename OtherDerived, typename ResultType> bool SVD<MatrixType>::solve(const MatrixBase<OtherDerived> &b, ResultType* result) const { // unused // const int rows = m_matU.rows(); ei_assert(b.rows() == rows); Scalar maxVal = m_sigma.cwise().abs().maxCoeff(); for (int j=0; j<b.cols(); ++j) { Matrix<Scalar,MatrixUType::RowsAtCompileTime,1> aux = m_matU.transpose() * b.col(j); for (int i = 0; i <m_matU.cols(); ++i) { Scalar si = m_sigma.coeff(i); if (ei_isMuchSmallerThan(ei_abs(si),maxVal)) aux.coeffRef(i) = 0; else aux.coeffRef(i) /= si; } result->col(j) = m_matV * aux; } return true; } /** Computes the polar decomposition of the matrix, as a product unitary x positive. * * If either pointer is zero, the corresponding computation is skipped. * * Only for square matrices. * * \sa computePositiveUnitary(), computeRotationScaling() */ template<typename MatrixType> template<typename UnitaryType, typename PositiveType> void SVD<MatrixType>::computeUnitaryPositive(UnitaryType *unitary, PositiveType *positive) const { ei_assert(m_matU.cols() == m_matV.cols() && "Polar decomposition is only for square matrices"); if(unitary) *unitary = m_matU * m_matV.adjoint(); if(positive) *positive = m_matV * m_sigma.asDiagonal() * m_matV.adjoint(); } /** Computes the polar decomposition of the matrix, as a product positive x unitary. * * If either pointer is zero, the corresponding computation is skipped. * * Only for square matrices. * * \sa computeUnitaryPositive(), computeRotationScaling() */ template<typename MatrixType> template<typename UnitaryType, typename PositiveType> void SVD<MatrixType>::computePositiveUnitary(UnitaryType *positive, PositiveType *unitary) const { ei_assert(m_matU.rows() == m_matV.rows() && "Polar decomposition is only for square matrices"); if(unitary) *unitary = m_matU * m_matV.adjoint(); if(positive) *positive = m_matU * m_sigma.asDiagonal() * m_matU.adjoint(); } /** decomposes the matrix as a product rotation x scaling, the scaling being * not necessarily positive. * * If either pointer is zero, the corresponding computation is skipped. * * This method requires the Geometry module. * * \sa computeScalingRotation(), computeUnitaryPositive() */ template<typename MatrixType> template<typename RotationType, typename ScalingType> void SVD<MatrixType>::computeRotationScaling(RotationType *rotation, ScalingType *scaling) const { ei_assert(m_matU.rows() == m_matV.rows() && "Polar decomposition is only for square matrices"); Scalar x = (m_matU * m_matV.adjoint()).determinant(); // so x has absolute value 1 Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> sv(m_sigma); sv.coeffRef(0) *= x; if(scaling) scaling->lazyAssign(m_matV * sv.asDiagonal() * m_matV.adjoint()); if(rotation) { MatrixType m(m_matU); m.col(0) /= x; rotation->lazyAssign(m * m_matV.adjoint()); } } /** decomposes the matrix as a product scaling x rotation, the scaling being * not necessarily positive. * * If either pointer is zero, the corresponding computation is skipped. * * This method requires the Geometry module. * * \sa computeRotationScaling(), computeUnitaryPositive() */ template<typename MatrixType> template<typename ScalingType, typename RotationType> void SVD<MatrixType>::computeScalingRotation(ScalingType *scaling, RotationType *rotation) const { ei_assert(m_matU.rows() == m_matV.rows() && "Polar decomposition is only for square matrices"); Scalar x = (m_matU * m_matV.adjoint()).determinant(); // so x has absolute value 1 Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> sv(m_sigma); sv.coeffRef(0) *= x; if(scaling) scaling->lazyAssign(m_matU * sv.asDiagonal() * m_matU.adjoint()); if(rotation) { MatrixType m(m_matU); m.col(0) /= x; rotation->lazyAssign(m * m_matV.adjoint()); } } /** \svd_module * \returns the SVD decomposition of \c *this */ template<typename Derived> inline SVD<typename MatrixBase<Derived>::PlainMatrixType> MatrixBase<Derived>::svd() const { return SVD<PlainMatrixType>(derived()); } #endif // EIGEN_SVD_H
[ "s3583185@student.rmit.edu.au" ]
s3583185@student.rmit.edu.au