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 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
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 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
b01335e09a644337cf78aae324b58fb29e44b8e6 | 0dd57e48d58ba77c14f5c50c5de58ed5ad103c00 | /multiThread/17_thread_local2 .cpp | 84343ba3ffd3d1bd430802ebaccda5f0675aa71c | [
"MIT"
] | permissive | IgorHersht/proxygen_ih | 7dc0b0205d304c39ed37d4c9916a60f7dad2eca1 | ea03a6be1a0430b5ee48f6172425331b872ea688 | refs/heads/master | 2022-10-14T19:33:14.300830 | 2022-09-21T16:43:40 | 2022-09-21T16:43:40 | 107,905,143 | 9 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,654 | cpp | #include <string>
#include <iostream>
#include <thread>
struct MyData {
inline static std::string gName = "global"; // unique in program
inline static thread_local std::string tName = "tls"; // unique per thread
std::string lName = "local"; // for each object
//...
void print(const std::string& msg) const {
std::cout << msg << '\n';
std::cout << "- gName: " << gName << '\n';
std::cout << "- tName: " << tName << '\n';
std::cout << "- lName: " << lName << '\n';
}
};
inline thread_local MyData myThreadData; // one object per thread
void foo()
{
myThreadData.print("foo() begin:");
myThreadData.gName = "thread2 name";
myThreadData.tName = "thread2 name";
myThreadData.lName = "thread2 name";
myThreadData.print("foo() end:");
}
int main()
{
myThreadData.print("main() begin:");
myThreadData.gName = "thread1 name";
myThreadData.tName = "thread1 name";
myThreadData.lName = "thread1 name";
myThreadData.print("main() later:");
std::thread t(foo);
t.join();
myThreadData.print("main() end:");
}
/*
/home/ihersht/work/projects/clion/template/cmake-build-debug/exe_2/exe_2
main() begin:
- gName: global
- tName: tls
- lName: local
main() later:
- gName: thread1 name
- tName: thread1 name
- lName: thread1 name
foo() begin:
- gName: thread1 name
- tName: tls
- lName: local
foo() end:
- gName: thread2 name
- tName: thread2 name
- lName: thread2 name
main() end:
- gName: thread2 name
- tName: thread1 name
- lName: thread1 name
*/
| [
"noreply@github.com"
] | IgorHersht.noreply@github.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 |
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 |
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 |
1fb671d25210bd28dde019d395f518eccf47fbc3 | 26ad4cc35496d364b31396e43a863aee08ef2636 | /SDK/SoT_BP_tattoo_18_Desc_functions.cpp | 68483dee9f0760afe02340219602bb5f8aa1d0a7 | [] | no_license | cw100/SoT-SDK | ddb9b19ce6ae623299b2b02dee51c29581537ba1 | 3e6f12384c8e21ed83ef56f00030ca0506d297fb | refs/heads/master | 2020-05-05T12:09:55.938323 | 2019-03-20T14:11:57 | 2019-03-20T14:11:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 354 | cpp | // Sea of Thieves (1.4) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "SoT_BP_tattoo_18_Desc_classes.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Functions
//---------------------------------------------------------------------------
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"igromanru@yahoo.de"
] | igromanru@yahoo.de |
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 |
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 |
4f04e3b836d64f0db3058fc5f02631ad30dfea2c | 04fec4cbb69789d44717aace6c8c5490f2cdfa47 | /include/wx/mmedia/sndcodec.h | d176d753e5b8a30c6ca6d31285a95fd6b0353af6 | [] | no_license | aaryanapps/whiteTiger | 04f39b00946376c273bcbd323414f0a0b675d49d | 65ed8ffd530f20198280b8a9ea79cb22a6a47acd | refs/heads/master | 2021-01-17T12:07:15.264788 | 2010-10-11T20:20:26 | 2010-10-11T20:20:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 774 | h | // --------------------------------------------------------------------------
// Name: sndcodec.h
// Purpose:
// Date: 08/11/1999
// Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
// CVSID: $Id: sndcodec.h,v 1.5 2005/09/23 12:47:04 MR Exp $
// License: wxWindows license
// --------------------------------------------------------------------------
#ifndef _WX_SNDCODEC_H
#define _WX_SNDCODEC_H
#include "wx/defs.h"
#include "wx/mmedia/defs.h"
#include "wx/mmedia/sndbase.h"
class WXDLLIMPEXP_MMEDIA wxSoundStreamCodec: public wxSoundStream {
public:
wxSoundStreamCodec(wxSoundStream& snd_io);
~wxSoundStreamCodec();
bool StartProduction(int evt);
bool StopProduction();
wxUint32 GetBestSize() const;
protected:
wxSoundStream *m_sndio;
};
#endif
| [
"smehta@aaryanapps.com"
] | smehta@aaryanapps.com |
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 |
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 |
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 |
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 |
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 |
0229680f0f24ceb6f54356a62495510002eea648 | 4352b5c9e6719d762e6a80e7a7799630d819bca3 | /tutorials/eulerVortex.twitch/eulerVortex.cyclic.twitch.test.test/processor1/1.53/e | 535fa2e429f83e9eb742219acaf6e11569ed1d76 | [] | no_license | dashqua/epicProject | d6214b57c545110d08ad053e68bc095f1d4dc725 | 54afca50a61c20c541ef43e3d96408ef72f0bcbc | refs/heads/master | 2022-02-28T17:20:20.291864 | 2019-10-28T13:33:16 | 2019-10-28T13:33:16 | 184,294,390 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 48,961 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "1.53";
object e;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
5625
(
973.764
960.125
944.167
926.639
908.517
890.879
874.82
861.369
851.414
845.61
844.329
847.742
855.851
868.352
884.393
902.58
921.279
939.038
954.852
968.213
979.009
987.384
993.63
998.104
1001.18
1003.21
1004.49
1005.27
1005.73
1005.99
1006.14
1006.21
1006.25
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
978.945
967.172
953.238
937.804
921.744
906.044
891.706
879.678
870.786
865.625
864.53
867.649
874.978
886.207
900.518
916.616
933.042
948.531
962.245
973.774
983.049
990.217
995.544
999.349
1001.96
1003.68
1004.76
1005.43
1005.82
1006.04
1006.16
1006.22
1006.26
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
983.814
973.916
962.054
948.776
934.848
921.151
908.59
898.028
890.221
885.7
884.766
887.558
894.067
903.979
916.505
930.463
944.578
957.789
969.413
979.138
986.929
992.928
997.37
1000.53
1002.7
1004.12
1005.02
1005.57
1005.9
1006.08
1006.18
1006.23
1006.26
1006.27
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
988.198
980.093
970.257
959.117
947.322
935.635
924.86
915.77
909.04
905.144
904.352
906.806
912.489
921.074
931.811
943.644
955.493
966.496
976.118
984.129
990.523
995.428
999.05
1001.62
1003.38
1004.53
1005.26
1005.71
1005.97
1006.12
1006.2
1006.24
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
992.004
985.533
977.584
968.479
958.738
949.004
939.971
932.321
926.642
923.347
922.694
924.821
929.701
936.986
945.98
955.77
965.469
974.406
982.175
988.617
993.739
997.658
1000.54
1002.59
1003.98
1004.9
1005.47
1005.83
1006.03
1006.15
1006.22
1006.25
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
995.213
990.164
983.899
976.647
968.808
960.903
953.517
947.235
942.554
939.838
939.33
941.162
945.276
951.32
958.664
966.55
974.281
981.351
987.467
992.52
996.527
999.583
1001.83
1003.42
1004.5
1005.21
1005.66
1005.93
1006.09
1006.18
1006.23
1006.26
1006.27
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
997.857
993.998
989.176
983.541
977.392
971.14
965.26
960.236
956.483
954.317
953.962
955.529
958.924
963.808
969.637
975.809
981.802
987.248
991.941
995.807
998.866
1001.19
1002.9
1004.11
1004.93
1005.47
1005.81
1006.02
1006.14
1006.21
1006.25
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
999.99
997.1
993.471
989.198
984.498
979.683
975.131
971.226
968.308
966.651
966.446
967.767
970.497
974.323
978.808
983.496
988.011
992.096
995.604
998.49
1000.77
1002.5
1003.77
1004.67
1005.28
1005.68
1005.93
1006.08
1006.18
1006.23
1006.26
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1001.68
999.557
996.886
993.723
990.221
986.615
983.19
980.247
978.058
976.848
976.77
977.854
979.977
982.874
986.211
989.665
992.973
995.954
998.513
1000.62
1002.28
1003.54
1004.46
1005.11
1005.55
1005.84
1006.03
1006.14
1006.21
1006.24
1006.26
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1002.98
1001.46
999.539
997.255
994.716
992.09
989.591
987.444
985.862
985.023
985.029
985.884
987.469
989.583
991.987
994.456
996.814
998.936
1000.76
1002.25
1003.43
1004.33
1004.99
1005.45
1005.76
1005.97
1006.1
1006.18
1006.23
1006.26
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1003.97
1002.9
1001.55
999.946
998.155
996.299
994.531
993.018
991.919
991.361
991.408
992.046
993.182
994.669
996.346
998.062
999.699
1001.17
1002.44
1003.48
1004.3
1004.93
1005.38
1005.7
1005.92
1006.07
1006.16
1006.21
1006.25
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1004.7
1003.97
1003.04
1001.94
1000.71
999.441
998.229
997.199
996.462
996.103
996.158
996.609
997.389
998.4
999.536
1000.7
1001.81
1002.81
1003.67
1004.37
1004.93
1005.36
1005.67
1005.89
1006.04
1006.14
1006.2
1006.24
1006.26
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1005.22
1004.74
1004.12
1003.38
1002.56
1001.72
1000.91
1000.23
999.751
999.523
999.568
999.872
1000.39
1001.05
1001.8
1002.57
1003.3
1003.97
1004.54
1005.01
1005.38
1005.67
1005.87
1006.02
1006.12
1006.19
1006.23
1006.25
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1005.59
1005.27
1004.87
1004.39
1003.86
1003.31
1002.79
1002.36
1002.05
1001.91
1001.94
1002.13
1002.46
1002.89
1003.37
1003.87
1004.34
1004.77
1005.15
1005.45
1005.7
1005.88
1006.02
1006.11
1006.18
1006.22
1006.25
1006.27
1006.27
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1005.84
1005.64
1005.39
1005.08
1004.75
1004.4
1004.07
1003.8
1003.61
1003.52
1003.53
1003.65
1003.86
1004.13
1004.43
1004.75
1005.05
1005.32
1005.56
1005.75
1005.91
1006.03
1006.11
1006.18
1006.22
1006.25
1006.26
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.01
1005.88
1005.73
1005.54
1005.33
1005.12
1004.92
1004.75
1004.63
1004.57
1004.58
1004.65
1004.78
1004.94
1005.13
1005.33
1005.51
1005.68
1005.83
1005.95
1006.05
1006.13
1006.18
1006.22
1006.24
1006.26
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.12
1006.04
1005.95
1005.83
1005.71
1005.58
1005.46
1005.36
1005.28
1005.25
1005.25
1005.3
1005.37
1005.47
1005.58
1005.7
1005.81
1005.92
1006.01
1006.08
1006.14
1006.19
1006.22
1006.24
1006.26
1006.27
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.19
1006.14
1006.09
1006.02
1005.94
1005.87
1005.8
1005.74
1005.69
1005.67
1005.67
1005.7
1005.74
1005.8
1005.87
1005.94
1006
1006.07
1006.12
1006.16
1006.2
1006.23
1006.25
1006.26
1006.27
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.23
1006.2
1006.17
1006.13
1006.09
1006.04
1006
1005.97
1005.94
1005.93
1005.93
1005.94
1005.97
1006
1006.04
1006.08
1006.12
1006.16
1006.19
1006.22
1006.24
1006.25
1006.26
1006.27
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.26
1006.24
1006.22
1006.2
1006.18
1006.15
1006.13
1006.11
1006.09
1006.08
1006.08
1006.09
1006.11
1006.13
1006.15
1006.17
1006.19
1006.21
1006.23
1006.25
1006.26
1006.27
1006.27
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.27
1006.26
1006.25
1006.24
1006.23
1006.21
1006.2
1006.19
1006.18
1006.17
1006.18
1006.18
1006.19
1006.2
1006.21
1006.22
1006.23
1006.25
1006.26
1006.26
1006.27
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.28
1006.27
1006.27
1006.26
1006.25
1006.25
1006.24
1006.23
1006.23
1006.23
1006.23
1006.23
1006.23
1006.24
1006.25
1006.25
1006.26
1006.26
1006.27
1006.27
1006.28
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.28
1006.28
1006.28
1006.27
1006.27
1006.27
1006.26
1006.26
1006.26
1006.26
1006.25
1006.26
1006.26
1006.26
1006.26
1006.27
1006.27
1006.27
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.27
1006.27
1006.27
1006.27
1006.27
1006.27
1006.27
1006.27
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
)
;
boundaryField
{
emptyPatches_empt
{
type empty;
}
top_cyc
{
type cyclic;
}
bottom_cyc
{
type cyclic;
}
inlet_cyc
{
type cyclic;
}
outlet_cyc
{
type cyclic;
}
procBoundary1to0
{
type processor;
value nonuniform List<scalar>
75
(
984.64
988.206
991.493
994.407
996.913
999.018
1000.75
1002.15
1003.26
1004.12
1004.77
1005.24
1005.59
1005.83
1006
1006.1
1006.18
1006.22
1006.25
1006.27
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
)
;
}
procBoundary1to0throughoutlet_cyc
{
type processorCyclic;
value nonuniform List<scalar>
75
(
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
)
;
}
procBoundary1to3
{
type processor;
value nonuniform List<scalar>
75
(
968.508
953.1
935.238
915.748
895.69
876.232
858.554
843.76
832.797
826.364
824.877
828.536
837.365
851.053
868.719
888.874
909.732
929.663
947.509
962.662
974.958
984.535
991.701
996.847
1000.39
1002.73
1004.21
1005.12
1005.65
1005.95
1006.11
1006.2
1006.24
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
)
;
}
procBoundary1to3throughbottom_cyc
{
type processorCyclic;
value nonuniform List<scalar>
75
(
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
)
;
}
}
// ************************************************************************* //
| [
"tdg@debian"
] | tdg@debian | |
1c0d4c8fa1cca69954d04a8d3bd951620a66acf2 | b6ed2145ed73919ec42f3d34ccb67a7ecc621b3a | /algorithm/summer/nine/f.cpp | 4bcd03a7ffe691d404a6a540ff51a30939f4e67f | [] | no_license | gilsaia/college-study | 26d9813ab5e5f125618aec787c942e442b0fb630 | 66d2dda1b322077fd58abe56ba602da5260856be | refs/heads/master | 2021-06-03T06:23:05.770868 | 2019-09-22T14:22:22 | 2019-09-22T14:22:22 | 138,689,516 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 801 | cpp | #include<cstdio>
#include<algorithm>
#include<vector>
using namespace std;
int main()
{
int n;
while(~scanf("%d",&n))
{
vector<int> enmy;
for(int i=0;i<n;++i)
{
int tmp;
scanf("%d",&tmp);
enmy.push_back(tmp);
}
int ans=0,nowhei=0;
while(!enmy.empty())
{
++ans;
nowhei=0;
vector<int> toshoot;
for(int i=0;i<enmy.size();++i)
{
if(enmy[i]>=nowhei)
{
nowhei=enmy[i];
}
else
{
toshoot.push_back(enmy[i]);
}
}
enmy=toshoot;
}
printf("%d\n",ans);
}
return 0;
} | [
"794433219@qq.com"
] | 794433219@qq.com |
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 |
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 |
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 |
73c9ae73e759ee400a2d1375d44e51fc840e8927 | 5bc868bdf3cdba43954c868b802aed15e53e0ec0 | /cFont.cpp | 9a06c8e27ab228c4e5655144f8a5689ff622340f | [] | no_license | beythli/Harvest-Heights | 9e99d3444a98a5303d8ff58509de892f113e3d13 | fd15fcd9f008f6b94b3758d2de58fcf191f61c6b | refs/heads/master | 2020-09-30T10:17:19.820974 | 2019-12-11T04:37:26 | 2019-12-11T04:37:26 | 227,267,820 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,306 | cpp | /*
==========================================================================
cFont.cpp
==========================================================================
*/
//#pragma warning ( disable : 4996 )
#include "cFont.h"
using namespace std;
/*
==========================================================================
Default Constructor
==========================================================================
*/
cFont::cFont()
{
theFont = NULL;
}
/*
==========================================================================
Destructor
==========================================================================
*/
cFont::~cFont()
{
TTF_CloseFont(theFont);
}
/*
==========================================================================
Load the desiered font
==========================================================================
*/
bool cFont::loadFont(LPCSTR fontFileName, int fontSize)
{
theFont = TTF_OpenFont(fontFileName, fontSize);
if (theFont == NULL)
{
cout << " Failed to load font : " << SDL_GetError() << endl;
return false;
}
cout << "Font '" << fontFileName << "' loaded successfully" << endl;
return true;
}
/*
==========================================================================
get the pointer to the font
==========================================================================
*/
TTF_Font* cFont::getFont()
{
return theFont;
}
/*
==========================================================================
Render the text using the desired font
==========================================================================
*/
SDL_Texture* cFont::createTextTexture(SDL_Renderer* theRenderer, LPCSTR text, textType txtType, SDL_Color txtColour, SDL_Color txtBkgd)
{
SDL_Texture* theTxtTexture = NULL;
SDL_Surface* theTxtSurface = NULL;
switch (txtType)
{
case textType::solid:
{
theTxtSurface = TTF_RenderText_Solid(theFont, text, txtColour);
}
break;
case textType::blended:
{
theTxtSurface = TTF_RenderText_Blended(theFont, text, txtColour);
}
break;
case textType::shaded:
{
theTxtSurface = TTF_RenderText_Shaded(theFont, text, txtColour, txtBkgd);
}
break;
default:
break;
}
theTxtTexture = SDL_CreateTextureFromSurface(theRenderer, theTxtSurface);
SDL_FreeSurface(theTxtSurface);
return theTxtTexture;
} | [
"robert.law@gcu.ac.uk"
] | robert.law@gcu.ac.uk |
e678027480cc03a36cc298059ecc79734558468b | 084006eb442b60b82b3d85d61a3b53d21c5c8855 | /shared/Irrlicht/include/SceneParameters.h | 2dbe69f59092c21393b957c9adcb7ec1bf20f6bf | [
"XFree86-1.1",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"LicenseRef-scancode-other-permissive",
"Zlib"
] | permissive | SethRobinson/proton | 7aadcb38bc676c136dce01b8f6773fd75fa33d55 | 6b1474e75a2acf48d848c70fcb043ce8223001a9 | refs/heads/master | 2023-08-31T11:04:21.575522 | 2023-08-29T07:44:50 | 2023-08-29T07:44:50 | 142,253,855 | 81 | 31 | NOASSERTION | 2023-08-07T22:02:41 | 2018-07-25T05:55:38 | C++ | UTF-8 | C++ | false | false | 6,914 | h | // Copyright (C) 2002-2009 Nikolaus Gebhardt
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h
#ifndef __I_SCENE_PARAMETERS_H_INCLUDED__
#define __I_SCENE_PARAMETERS_H_INCLUDED__
/*! \file SceneParameters.h
\brief Header file containing all scene parameters for modifying mesh loading etc.
This file includes all parameter names which can be set using ISceneManager::getParameters()
to modify the behaviour of plugins and mesh loaders.
*/
namespace irr
{
namespace scene
{
//! Name of the parameter for changing how Irrlicht handles the ZWrite flag for transparent (blending) materials
/** The default behavior in Irrlicht is to disable writing to the
z-buffer for all really transparent, i.e. blending materials. This
avoids problems with intersecting faces, but can also break renderings.
If transparent materials should use the SMaterial flag for ZWriteEnable
just as other material types use this attribute.
Use it like this:
\code
SceneManager->getParameters()->setAttribute(scene::ALLOW_ZWRITE_ON_TRANSPARENT, true);
\endcode
**/
const c8* const ALLOW_ZWRITE_ON_TRANSPARENT = "Allow_ZWrite_On_Transparent";
//! Name of the parameter for changing the texture path of the built-in csm loader.
/** Use it like this:
\code
SceneManager->getParameters()->setAttribute(scene::CSM_TEXTURE_PATH, "path/to/your/textures");
\endcode
**/
const c8* const CSM_TEXTURE_PATH = "CSM_TexturePath";
//! Name of the parameter for changing the texture path of the built-in lmts loader.
/** Use it like this:
\code
SceneManager->getParameters()->setAttribute(scene::LMTS_TEXTURE_PATH, "path/to/your/textures");
\endcode
**/
const c8* const LMTS_TEXTURE_PATH = "LMTS_TexturePath";
//! Name of the parameter for changing the texture path of the built-in my3d loader.
/** Use it like this:
\code
SceneManager->getParameters()->setAttribute(scene::MY3D_TEXTURE_PATH, "path/to/your/textures");
\endcode
**/
const c8* const MY3D_TEXTURE_PATH = "MY3D_TexturePath";
//! Name of the parameter specifying the COLLADA mesh loading mode
/**
Specifies if the COLLADA loader should create instances of the models, lights and
cameras when loading COLLADA meshes. By default, this is set to false. If this is
set to true, the ISceneManager::getMesh() method will only return a pointer to a
dummy mesh and create instances of all meshes and lights and cameras in the collada
file by itself. Example:
\code
SceneManager->getParameters()->setAttribute(scene::COLLADA_CREATE_SCENE_INSTANCES, true);
\endcode
*/
const c8* const COLLADA_CREATE_SCENE_INSTANCES = "COLLADA_CreateSceneInstances";
//! Name of the parameter for changing the texture path of the built-in DMF loader.
/** This path is prefixed to the file names defined in the Deled file when loading
textures. This allows to alter the paths for a specific project setting.
Use it like this:
\code
SceneManager->getStringParameters()->setAttribute(scene::DMF_TEXTURE_PATH, "path/to/your/textures");
\endcode
**/
const c8* const DMF_TEXTURE_PATH = "DMF_TexturePath";
//! Name of the parameter for preserving DMF textures dir structure with built-in DMF loader.
/** If this parameter is set to true, the texture directory defined in the Deled file
is ignored, and only the texture name is used to find the proper file. Otherwise, the
texture path is also used, which allows to use a nicer media layout.
Use it like this:
\code
//this way you won't use this setting (default)
SceneManager->getParameters()->setAttribute(scene::DMF_IGNORE_MATERIALS_DIRS, false);
\endcode
\code
//this way you'll use this setting
SceneManager->getParameters()->setAttribute(scene::DMF_IGNORE_MATERIALS_DIRS, true);
\endcode
**/
const c8* const DMF_IGNORE_MATERIALS_DIRS = "DMF_IgnoreMaterialsDir";
//! Name of the parameter for setting reference value of alpha in transparent materials.
/** Use it like this:
\code
//this way you'll set alpha ref to 0.1
SceneManager->getParameters()->setAttribute(scene::DMF_ALPHA_CHANNEL_REF, 0.1);
\endcode
**/
const c8* const DMF_ALPHA_CHANNEL_REF = "DMF_AlphaRef";
//! Name of the parameter for choose to flip or not tga files.
/** Use it like this:
\code
//this way you'll choose to flip alpha textures
SceneManager->getParameters()->setAttribute(scene::DMF_FLIP_ALPHA_TEXTURES, true);
\endcode
**/
const c8* const DMF_FLIP_ALPHA_TEXTURES = "DMF_FlipAlpha";
//! Name of the parameter for changing the texture path of the built-in obj loader.
/** Use it like this:
\code
SceneManager->getParameters()->setAttribute(scene::OBJ_TEXTURE_PATH, "path/to/your/textures");
\endcode
**/
const c8* const OBJ_TEXTURE_PATH = "OBJ_TexturePath";
//! Flag to avoid loading group structures in .obj files
/** Use it like this:
\code
SceneManager->getParameters()->setAttribute(scene::OBJ_LOADER_IGNORE_GROUPS, true);
\endcode
**/
const c8* const OBJ_LOADER_IGNORE_GROUPS = "OBJ_IgnoreGroups";
//! Flag to avoid loading material .mtl file for .obj files
/** Use it like this:
\code
SceneManager->getParameters()->setAttribute(scene::OBJ_LOADER_IGNORE_MATERIAL_FILES, true);
\endcode
**/
const c8* const OBJ_LOADER_IGNORE_MATERIAL_FILES = "OBJ_IgnoreMaterialFiles";
//! Flag to ignore the b3d file's mipmapping flag
/** Instead Irrlicht's texture creation flag is used. Use it like this:
\code
SceneManager->getParameters()->setAttribute(scene::B3D_LOADER_IGNORE_MIPMAP_FLAG, true);
\endcode
**/
const c8* const B3D_LOADER_IGNORE_MIPMAP_FLAG = "B3D_IgnoreMipmapFlag";
//! Name of the parameter for changing the texture path of the built-in b3d loader.
/** Use it like this:
\code
SceneManager->getParameters()->setAttribute(scene::B3D_TEXTURE_PATH, "path/to/your/textures");
\endcode
**/
const c8* const B3D_TEXTURE_PATH = "B3D_TexturePath";
//! Flag set as parameter when the scene manager is used as editor
/** In this way special animators like deletion animators can be stopped from
deleting scene nodes for example */
const c8* const IRR_SCENE_MANAGER_IS_EDITOR = "IRR_Editor";
//! Name of the parameter for setting the length of debug normals.
/** Use it like this:
\code
SceneManager->getParameters()->setAttribute(scene::DEBUG_NORMAL_LENGTH, 1.5f);
\endcode
**/
const c8* const DEBUG_NORMAL_LENGTH = "DEBUG_Normal_Length";
//! Name of the parameter for setting the color of debug normals.
/** Use it like this:
\code
SceneManager->getParameters()->setAttributeAsColor(scene::DEBUG_NORMAL_COLOR, video::SColor(255, 255, 255, 255));
\endcode
**/
const c8* const DEBUG_NORMAL_COLOR = "DEBUG_Normal_Color";
} // end namespace scene
} // end namespace irr
#endif
| [
"seth@rtsoft.com"
] | seth@rtsoft.com |
0a9492f53a033665e9c898c1c80e86fc3f1a3b20 | ef897e834c0e4a6af19c3f349d3d0e0af0f88bb4 | /rellic/AST/Z3ConvVisitor.cpp | bc6617ced59cf574e6c14fdcf97e9b038f031e85 | [
"Apache-2.0"
] | permissive | JarLob/rellic | 587fff9fb729a28eee64bef4f5d3525e893c1c08 | bd16b1c071f17aa10ec1f44a95065e6dc13e567e | refs/heads/master | 2021-04-10T20:09:15.735199 | 2020-03-12T19:26:30 | 2020-03-12T19:26:44 | 248,961,811 | 1 | 0 | Apache-2.0 | 2020-03-21T11:26:38 | 2020-03-21T11:26:38 | null | UTF-8 | C++ | false | false | 25,159 | cpp | /*
* Copyright (c) 2018 Trail of Bits, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define GOOGLE_STRIP_LOG 1
#include <gflags/gflags.h>
#include <glog/logging.h>
#include "rellic/AST/Util.h"
#include "rellic/AST/Z3ConvVisitor.h"
namespace rellic {
namespace {
static unsigned GetZ3SortSize(z3::sort sort) {
switch (sort.sort_kind()) {
case Z3_BOOL_SORT:
return 1;
break;
case Z3_BV_SORT:
return sort.bv_size();
break;
case Z3_FLOATING_POINT_SORT: {
auto &ctx = sort.ctx();
return Z3_fpa_get_sbits(ctx, sort) + Z3_fpa_get_ebits(ctx, sort);
} break;
case Z3_UNINTERPRETED_SORT:
return 0;
break;
default:
LOG(FATAL) << "Unknown Z3 sort: " << sort;
break;
}
}
static std::string CreateZ3DeclName(clang::NamedDecl *decl) {
std::stringstream ss;
ss << std::hex << decl << std::dec;
ss << '_' << decl->getNameAsString();
return ss.str();
}
static z3::expr CreateZ3BitwiseCast(z3::expr expr, size_t src, size_t dst,
bool sign) {
CHECK(expr.is_bv()) << "z3::expr is not a bitvector!";
int64_t diff = dst - src;
// extend
if (diff > 0) {
return sign ? z3::sext(expr, diff) : z3::zext(expr, diff);
}
// truncate
if (diff < 0) {
return expr.extract(dst, 1);
}
// nothing
return expr;
}
} // namespace
Z3ConvVisitor::Z3ConvVisitor(clang::ASTContext *c_ctx, z3::context *z3_ctx)
: ast_ctx(c_ctx),
z3_ctx(z3_ctx),
z3_expr_vec(*z3_ctx),
z3_decl_vec(*z3_ctx) {}
// Inserts a `clang::Expr` <=> `z3::expr` mapping into
void Z3ConvVisitor::InsertZ3Expr(clang::Expr *c_expr, z3::expr z_expr) {
auto iter = z3_expr_map.find(c_expr);
CHECK(iter == z3_expr_map.end());
z3_expr_map[c_expr] = z3_expr_vec.size();
z3_expr_vec.push_back(z_expr);
}
// Retrieves a `z3::expr` corresponding to `c_expr`.
// The `z3::expr` needs to be created and inserted by
// `Z3ConvVisistor::InsertZ3Expr` first.
z3::expr Z3ConvVisitor::GetZ3Expr(clang::Expr *c_expr) {
auto iter = z3_expr_map.find(c_expr);
CHECK(iter != z3_expr_map.end());
return z3_expr_vec[iter->second];
}
// Inserts a `clang::ValueDecl` <=> `z3::func_decl` mapping into
void Z3ConvVisitor::InsertZ3Decl(clang::ValueDecl *c_decl,
z3::func_decl z_decl) {
auto iter = z3_decl_map.find(c_decl);
CHECK(iter == z3_decl_map.end());
z3_decl_map[c_decl] = z3_decl_vec.size();
z3_decl_vec.push_back(z_decl);
}
// Retrieves a `z3::func_decl` corresponding to `c_decl`.
// The `z3::func_decl` needs to be created and inserted by
// `Z3ConvVisistor::InsertZ3Decl` first.
z3::func_decl Z3ConvVisitor::GetZ3Decl(clang::ValueDecl *c_decl) {
auto iter = z3_decl_map.find(c_decl);
CHECK(iter != z3_decl_map.end());
return z3_decl_vec[iter->second];
}
// If `expr` is not boolean, returns a `z3::expr` that corresponds
// to the non-boolean to boolean expression cast in C. Otherwise
// returns `expr`.
z3::expr Z3ConvVisitor::Z3BoolCast(z3::expr expr) {
if (expr.is_bool()) {
return expr;
} else {
auto cast = expr != z3_ctx->num_val(0, expr.get_sort());
return cast.simplify();
}
}
void Z3ConvVisitor::InsertCExpr(z3::expr z_expr, clang::Expr *c_expr) {
auto hash = z_expr.hash();
auto iter = c_expr_map.find(hash);
CHECK(iter == c_expr_map.end())
<< "Z3 equivalent for C declaration already exists!";
c_expr_map[hash] = c_expr;
}
clang::Expr *Z3ConvVisitor::GetCExpr(z3::expr z_expr) {
auto hash = z_expr.hash();
auto iter = c_expr_map.find(hash);
CHECK(iter != c_expr_map.end()) << "No Z3 equivalent for C declaration!";
return c_expr_map[hash];
}
void Z3ConvVisitor::InsertCValDecl(z3::func_decl z_decl,
clang::ValueDecl *c_decl) {
auto id = Z3_get_func_decl_id(*z3_ctx, z_decl);
auto iter = c_decl_map.find(id);
CHECK(iter == c_decl_map.end())
<< "C equivalent for Z3 declaration already exists!";
c_decl_map[id] = c_decl;
}
clang::ValueDecl *Z3ConvVisitor::GetCValDecl(z3::func_decl z_decl) {
auto id = Z3_get_func_decl_id(*z3_ctx, z_decl);
auto iter = c_decl_map.find(id);
CHECK(iter != c_decl_map.end()) << "No C equivalent for Z3 declaration!";
return c_decl_map[id];
}
z3::sort Z3ConvVisitor::GetZ3Sort(clang::QualType type) {
// Booleans
if (type->isBooleanType()) {
return z3_ctx->bool_sort();
}
// Structures
if (type->isStructureType()) {
auto decl = clang::cast<clang::RecordType>(type)->getDecl();
auto name = decl->getNameAsString().c_str();
return z3_ctx->uninterpreted_sort(name);
}
auto bitwidth = ast_ctx->getTypeSize(type);
// Floating points
if (type->isRealFloatingType()) {
switch (bitwidth) {
case 16:
// return z3_ctx.fpa_sort<16>();
return z3::to_sort(*z3_ctx, Z3_mk_fpa_sort_16(*z3_ctx));
break;
case 32:
return z3::to_sort(*z3_ctx, Z3_mk_fpa_sort_32(*z3_ctx));
break;
case 64:
return z3::to_sort(*z3_ctx, Z3_mk_fpa_sort_64(*z3_ctx));
break;
case 128:
return z3::to_sort(*z3_ctx, Z3_mk_fpa_sort_128(*z3_ctx));
break;
default:
LOG(FATAL) << "Unsupported floating-point bitwidth!";
break;
}
}
// Default to bitvectors
return z3::to_sort(*z3_ctx, Z3_mk_bv_sort(*z3_ctx, bitwidth));
}
clang::Expr *Z3ConvVisitor::CreateLiteralExpr(z3::expr z_expr) {
DLOG(INFO) << "Creating literal clang::Expr for " << z_expr;
auto sort = z_expr.get_sort();
clang::Expr *result = nullptr;
switch (sort.sort_kind()) {
case Z3_BOOL_SORT: {
auto type = ast_ctx->UnsignedIntTy;
auto size = ast_ctx->getIntWidth(type);
llvm::APInt val(size, z_expr.bool_value() == Z3_L_TRUE ? 1 : 0);
result = CreateIntegerLiteral(*ast_ctx, val, type);
} break;
case Z3_BV_SORT: {
auto type = ast_ctx->getIntTypeForBitwidth(GetZ3SortSize(sort), 0);
auto size = ast_ctx->getIntWidth(type);
llvm::APInt val(size, Z3_get_numeral_string(z_expr.ctx(), z_expr), 10);
if (type->isCharType()) {
result = CreateCharacterLiteral(*ast_ctx, val, type);
} else {
result = CreateIntegerLiteral(*ast_ctx, val, type);
}
} break;
case Z3_FLOATING_POINT_SORT: {
auto type = ast_ctx->getRealTypeForBitwidth(GetZ3SortSize(sort));
auto size = ast_ctx->getTypeSize(type);
const llvm::fltSemantics *semantics;
switch (size) {
case 16:
semantics = &llvm::APFloat::IEEEhalf();
break;
case 32:
semantics = &llvm::APFloat::IEEEsingle();
break;
case 64:
semantics = &llvm::APFloat::IEEEdouble();
break;
case 128:
semantics = &llvm::APFloat::IEEEquad();
break;
default:
LOG(FATAL) << "Unknown Z3 floating-point sort!";
break;
}
llvm::APInt ival(size, Z3_get_numeral_string(z_expr.ctx(), z_expr), 10);
llvm::APFloat fval(*semantics, ival);
result = CreateFloatingLiteral(*ast_ctx, fval, type);
} break;
default:
LOG(FATAL) << "Unknown Z3 sort: " << sort;
break;
}
return result;
}
// Retrieves or creates`z3::expr`s from `clang::Expr`.
z3::expr Z3ConvVisitor::GetOrCreateZ3Expr(clang::Expr *c_expr) {
if (!z3_expr_map.count(c_expr)) {
TraverseStmt(c_expr);
}
return GetZ3Expr(c_expr);
}
z3::func_decl Z3ConvVisitor::GetOrCreateZ3Decl(clang::ValueDecl *c_decl) {
if (!z3_decl_map.count(c_decl)) {
TraverseDecl(c_decl);
}
auto z_decl = GetZ3Decl(c_decl);
auto id = Z3_get_func_decl_id(*z3_ctx, z_decl);
if (!c_decl_map.count(id)) {
InsertCValDecl(z_decl, c_decl);
}
return z_decl;
}
// Retrieves or creates `clang::Expr` from `z3::expr`.
clang::Expr *Z3ConvVisitor::GetOrCreateCExpr(z3::expr z_expr) {
if (!c_expr_map.count(z_expr.hash())) {
VisitZ3Expr(z_expr);
}
return GetCExpr(z_expr);
}
bool Z3ConvVisitor::VisitVarDecl(clang::VarDecl *var) {
auto name = var->getNameAsString().c_str();
DLOG(INFO) << "VisitVarDecl: " << name;
if (z3_decl_map.count(var)) {
DLOG(INFO) << "Re-declaration of " << name << "; Returning.";
return true;
}
auto z_name = CreateZ3DeclName(var);
auto z_sort = GetZ3Sort(var->getType());
auto z_const = z3_ctx->constant(z_name.c_str(), z_sort);
InsertZ3Decl(var, z_const.decl());
return true;
}
bool Z3ConvVisitor::VisitFieldDecl(clang::FieldDecl *field) {
auto name = field->getNameAsString().c_str();
DLOG(INFO) << "VisitFieldDecl: " << name;
if (z3_decl_map.count(field)) {
DLOG(INFO) << "Re-declaration of " << name << "; Returning.";
return true;
}
auto z_name = CreateZ3DeclName(field->getParent()) + "_" + name;
auto z_sort = GetZ3Sort(field->getType());
auto z_const = z3_ctx->constant(z_name.c_str(), z_sort);
InsertZ3Decl(field, z_const.decl());
return true;
}
bool Z3ConvVisitor::VisitFunctionDecl(clang::FunctionDecl *func) {
DLOG(INFO) << "VisitFunctionDecl";
LOG(FATAL) << "Unimplemented FunctionDecl visitor";
return true;
}
bool Z3ConvVisitor::VisitCStyleCastExpr(clang::CStyleCastExpr *c_cast) {
DLOG(INFO) << "VisitCStyleCastExpr";
if (z3_expr_map.count(c_cast)) {
return true;
}
// C exprs
auto c_sub = c_cast->getSubExpr();
// C types
auto t_src = c_sub->getType();
auto t_dst = c_cast->getType();
// C type sizes
auto t_src_size = ast_ctx->getTypeSize(t_src);
auto t_dst_size = ast_ctx->getTypeSize(t_dst);
// Z3 exprs
auto z_sub = GetOrCreateZ3Expr(c_sub);
auto z_cast = CreateZ3BitwiseCast(z_sub, t_src_size, t_dst_size,
t_src->isSignedIntegerType());
// Z3 cast function
// auto ZCastFunc = [this, &z_sub, &z_cast](const char *name) {
// auto s_src = z_sub.get_sort();
// auto s_dst = z_cast.get_sort();
// auto z_func = z3_ctx->function(name, s_src, s_dst);
// return z_func(z_sub);
// };
switch (c_cast->getCastKind()) {
case clang::CastKind::CK_PointerToIntegral: {
auto s_src = z_sub.get_sort();
auto s_dst = z_cast.get_sort();
auto z_func = z3_ctx->function("PtrToInt", s_src, s_dst);
z_cast = z_func(z_sub);
} break;
case clang::CastKind::CK_IntegralToPointer: {
auto s_src = z_sub.get_sort();
auto s_dst = z_cast.get_sort();
auto t_dst_opaque_ptr_val =
reinterpret_cast<uint64_t>(t_dst.getAsOpaquePtr());
auto z_ptr = z3_ctx->bv_val(t_dst_opaque_ptr_val, 8 * sizeof(void *));
auto s_ptr = z_ptr.get_sort();
auto z_func = z3_ctx->function("IntToPtr", s_ptr, s_src, s_dst);
z_cast = z_func(z_ptr, z_sub);
} break;
case clang::CastKind::CK_IntegralCast:
case clang::CastKind::CK_NullToPointer:
break;
default:
LOG(FATAL) << "Unsupported cast type: " << c_cast->getCastKindName();
break;
}
// Save
InsertZ3Expr(c_cast, z_cast);
return true;
}
bool Z3ConvVisitor::VisitImplicitCastExpr(clang::ImplicitCastExpr *c_cast) {
DLOG(INFO) << "VisitImplicitCastExpr";
if (z3_expr_map.count(c_cast)) {
return true;
}
auto c_sub = c_cast->getSubExpr();
auto z_sub = GetOrCreateZ3Expr(c_sub);
switch (c_cast->getCastKind()) {
case clang::CastKind::CK_ArrayToPointerDecay: {
CHECK(z_sub.is_bv()) << "Pointer cast operand is not a bit-vector";
auto s_ptr = GetZ3Sort(c_cast->getType());
auto s_arr = z_sub.get_sort();
auto z_func = z3_ctx->function("PtrDecay", s_arr, s_ptr);
InsertZ3Expr(c_cast, z_func(z_sub));
} break;
default:
LOG(FATAL) << "Unsupported cast type: " << c_cast->getCastKindName();
break;
}
return true;
}
bool Z3ConvVisitor::VisitArraySubscriptExpr(clang::ArraySubscriptExpr *sub) {
DLOG(INFO) << "VisitArraySubscriptExpr";
if (z3_expr_map.count(sub)) {
return true;
}
// Get base
auto z_base = GetOrCreateZ3Expr(sub->getBase());
auto base_sort = z_base.get_sort();
CHECK(base_sort.is_bv()) << "Invalid Z3 sort for base expression";
// Get index
auto z_idx = GetOrCreateZ3Expr(sub->getIdx());
auto idx_sort = z_idx.get_sort();
CHECK(idx_sort.is_bv()) << "Invalid Z3 sort for index expression";
// Get result
auto elm_sort = GetZ3Sort(sub->getType());
// Create a z_function
auto z_arr_sub = z3_ctx->function("ArraySub", base_sort, idx_sort, elm_sort);
// Create a z3 expression
InsertZ3Expr(sub, z_arr_sub(z_base, z_idx));
// Done
return true;
}
bool Z3ConvVisitor::VisitMemberExpr(clang::MemberExpr *expr) {
DLOG(INFO) << "VisitMemberExpr";
if (z3_expr_map.count(expr)) {
return true;
}
auto z_mem = GetOrCreateZ3Decl(expr->getMemberDecl())();
auto z_base = GetOrCreateZ3Expr(expr->getBase());
auto z_mem_expr = z3_ctx->function("Member", z_base.get_sort(),
z_mem.get_sort(), z_mem.get_sort());
InsertZ3Expr(expr, z_mem_expr(z_base, z_mem));
return true;
}
bool Z3ConvVisitor::VisitCallExpr(clang::CallExpr *call) {
LOG(FATAL) << "Unimplemented CallExpr visitor";
return true;
}
// Translates clang unary operators expressions to Z3 equivalents.
bool Z3ConvVisitor::VisitParenExpr(clang::ParenExpr *parens) {
DLOG(INFO) << "VisitParenExpr";
if (z3_expr_map.count(parens)) {
return true;
}
auto z_sub = GetOrCreateZ3Expr(parens->getSubExpr());
switch (z_sub.decl().decl_kind()) {
// Parens may affect semantics of C expressions
case Z3_OP_UNINTERPRETED: {
auto sort = z_sub.get_sort();
auto z_paren = z3_ctx->function("Paren", sort, sort);
InsertZ3Expr(parens, z_paren(z_sub));
} break;
// Default to ignoring the parens, Z3 should know how
// to interpret them.
default:
InsertZ3Expr(parens, z_sub);
break;
}
return true;
}
// Translates clang unary operators expressions to Z3 equivalents.
bool Z3ConvVisitor::VisitUnaryOperator(clang::UnaryOperator *c_op) {
DLOG(INFO) << "VisitUnaryOperator: "
<< c_op->getOpcodeStr(c_op->getOpcode()).str();
if (z3_expr_map.count(c_op)) {
return true;
}
// Get operand
auto operand = GetOrCreateZ3Expr(c_op->getSubExpr());
// Create z3 unary op
switch (c_op->getOpcode()) {
case clang::UO_LNot: {
InsertZ3Expr(c_op, !Z3BoolCast(operand));
} break;
case clang::UO_AddrOf: {
auto ptr_sort = GetZ3Sort(c_op->getType());
auto z_addrof = z3_ctx->function("AddrOf", operand.get_sort(), ptr_sort);
InsertZ3Expr(c_op, z_addrof(operand));
} break;
case clang::UO_Deref: {
auto elm_sort = GetZ3Sort(c_op->getType());
auto z_deref = z3_ctx->function("Deref", operand.get_sort(), elm_sort);
InsertZ3Expr(c_op, z_deref(operand));
} break;
default:
LOG(FATAL) << "Unknown clang::UnaryOperator operation!";
break;
}
return true;
}
// Translates clang binary operators expressions to Z3 equivalents.
bool Z3ConvVisitor::VisitBinaryOperator(clang::BinaryOperator *c_op) {
DLOG(INFO) << "VisitBinaryOperator: " << c_op->getOpcodeStr().str();
if (z3_expr_map.count(c_op)) {
return true;
}
// Get operands
auto lhs = GetOrCreateZ3Expr(c_op->getLHS());
auto rhs = GetOrCreateZ3Expr(c_op->getRHS());
// Create z3 binary op
switch (c_op->getOpcode()) {
case clang::BO_LAnd:
InsertZ3Expr(c_op, Z3BoolCast(lhs) && Z3BoolCast(rhs));
break;
case clang::BO_LOr:
InsertZ3Expr(c_op, Z3BoolCast(lhs) || Z3BoolCast(rhs));
break;
case clang::BO_EQ:
InsertZ3Expr(c_op, lhs == rhs);
break;
case clang::BO_NE:
InsertZ3Expr(c_op, lhs != rhs);
break;
case clang::BO_Rem:
InsertZ3Expr(c_op, z3::srem(lhs, rhs));
break;
case clang::BO_Add:
InsertZ3Expr(c_op, lhs + rhs);
break;
case clang::BO_Sub:
InsertZ3Expr(c_op, lhs - rhs);
break;
case clang::BO_And:
InsertZ3Expr(c_op, lhs & rhs);
break;
case clang::BO_Xor:
InsertZ3Expr(c_op, lhs ^ rhs);
break;
case clang::BO_Shr:
InsertZ3Expr(c_op, c_op->getLHS()->getType()->isSignedIntegerType()
? z3::ashr(lhs, rhs)
: z3::lshr(lhs, rhs));
break;
default:
LOG(FATAL) << "Unknown clang::BinaryOperator operation!";
break;
}
return true;
}
// Translates clang variable references to Z3 constants.
bool Z3ConvVisitor::VisitDeclRefExpr(clang::DeclRefExpr *c_ref) {
auto ref_decl = c_ref->getDecl();
auto ref_name = ref_decl->getNameAsString();
DLOG(INFO) << "VisitDeclRefExpr: " << ref_name;
if (z3_expr_map.count(c_ref)) {
return true;
}
auto z_const = GetOrCreateZ3Decl(ref_decl);
InsertZ3Expr(c_ref, z_const());
return true;
}
// Translates clang character literals references to Z3 numeral values.
bool Z3ConvVisitor::VisitCharacterLiteral(clang::CharacterLiteral *c_lit) {
auto c_val = c_lit->getValue();
DLOG(INFO) << "VisitCharacterLiteral: " << c_val;
if (z3_expr_map.count(c_lit)) {
return true;
}
auto z_sort = GetZ3Sort(c_lit->getType());
auto z_val = z3_ctx->num_val(c_val, z_sort);
InsertZ3Expr(c_lit, z_val);
return true;
}
// Translates clang integer literals references to Z3 numeral values.
bool Z3ConvVisitor::VisitIntegerLiteral(clang::IntegerLiteral *c_lit) {
auto c_val = c_lit->getValue().getLimitedValue();
DLOG(INFO) << "VisitIntegerLiteral: " << c_val;
if (z3_expr_map.count(c_lit)) {
return true;
}
auto z_sort = GetZ3Sort(c_lit->getType());
auto z_val = z_sort.is_bool() ? z3_ctx->bool_val(c_val != 0)
: z3_ctx->num_val(c_val, z_sort);
InsertZ3Expr(c_lit, z_val);
return true;
}
void Z3ConvVisitor::VisitZ3Expr(z3::expr z_expr) {
if (z_expr.is_app()) {
for (auto i = 0U; i < z_expr.num_args(); ++i) {
GetOrCreateCExpr(z_expr.arg(i));
}
switch (z_expr.decl().arity()) {
case 0:
VisitConstant(z_expr);
break;
case 1:
VisitUnaryApp(z_expr);
break;
case 2:
VisitBinaryApp(z_expr);
break;
default:
LOG(FATAL) << "Unexpected Z3 operation!";
break;
}
} else if (z_expr.is_quantifier()) {
LOG(FATAL) << "Unexpected Z3 quantifier!";
} else {
LOG(FATAL) << "Unexpected Z3 variable!";
}
}
void Z3ConvVisitor::VisitConstant(z3::expr z_const) {
DLOG(INFO) << "VisitConstant: " << z_const;
CHECK(z_const.is_const()) << "Z3 expression is not a constant!";
// Create C literals and variable references
auto kind = z_const.decl().decl_kind();
clang::Expr *c_expr = nullptr;
switch (kind) {
// Boolean literals
case Z3_OP_TRUE:
case Z3_OP_FALSE:
// Arithmetic numerals
case Z3_OP_ANUM:
// Bitvector numerals
case Z3_OP_BNUM:
c_expr = CreateLiteralExpr(z_const);
break;
// Internal constants handled by parent Z3 exprs
case Z3_OP_INTERNAL:
break;
// Uninterpreted constants
case Z3_OP_UNINTERPRETED:
c_expr = CreateDeclRefExpr(*ast_ctx, GetCValDecl(z_const.decl()));
break;
// Unknowns
default:
LOG(FATAL) << "Unknown Z3 constant!";
break;
}
InsertCExpr(z_const, c_expr);
}
void Z3ConvVisitor::VisitUnaryApp(z3::expr z_op) {
DLOG(INFO) << "VisitUnaryApp: " << z_op;
CHECK(z_op.is_app() && z_op.decl().arity() == 1)
<< "Z3 expression is not a unary operator!";
// Get operand
auto c_sub = GetCExpr(z_op.arg(0));
auto t_sub = c_sub->getType();
// Get z3 function declaration
auto z_func = z_op.decl();
// Create C unary operator
clang::Expr *c_op = nullptr;
switch (z_func.decl_kind()) {
case Z3_OP_NOT:
c_op = CreateNotExpr(*ast_ctx, c_sub);
break;
case Z3_OP_EXTRACT: {
CHECK(t_sub->isIntegerType()) << "Extract operand is not an integer";
auto s_size = GetZ3SortSize(z_op.get_sort());
auto t_sign = t_sub->isSignedIntegerType();
auto t_op = ast_ctx->getIntTypeForBitwidth(s_size, t_sign);
c_op = CreateCStyleCastExpr(*ast_ctx, t_op,
clang::CastKind::CK_IntegralCast, c_sub);
} break;
case Z3_OP_UNINTERPRETED: {
// Resolve opcode
auto z_func_name = z_func.name().str();
if (z_func_name == "AddrOf") {
auto t_op = ast_ctx->getPointerType(t_sub);
c_op = CreateUnaryOperator(*ast_ctx, clang::UO_AddrOf, c_sub, t_op);
} else if (z_func_name == "Deref") {
CHECK(t_sub->isPointerType()) << "Deref operand type is not a pointer";
auto t_op = t_sub->getPointeeType();
c_op = CreateUnaryOperator(*ast_ctx, clang::UO_Deref, c_sub, t_op);
} else if (z_func_name == "Paren") {
c_op = CreateParenExpr(*ast_ctx, c_sub);
} else if (z_func_name == "PtrDecay") {
CHECK(t_sub->isArrayType()) << "PtrDecay operand type is not an array";
auto t_op = ast_ctx->getArrayDecayedType(t_sub);
c_op = CreateImplicitCastExpr(
*ast_ctx, t_op, clang::CastKind::CK_ArrayToPointerDecay, c_sub);
} else if (z_func_name == "PtrToInt") {
auto s_size = GetZ3SortSize(z_op.get_sort());
auto t_op = ast_ctx->getIntTypeForBitwidth(s_size, /*sign=*/0);
c_op = CreateCStyleCastExpr(
*ast_ctx, t_op, clang::CastKind::CK_PointerToIntegral, c_sub);
} else {
LOG(FATAL) << "Unknown Z3 uninterpreted function";
}
} break;
default:
LOG(FATAL) << "Unknown Z3 unary operator!";
break;
}
// Save
InsertCExpr(z_op, c_op);
}
void Z3ConvVisitor::VisitBinaryApp(z3::expr z_op) {
DLOG(INFO) << "VisitBinaryApp: " << z_op;
CHECK(z_op.is_app() && z_op.decl().arity() == 2)
<< "Z3 expression is not a binary operator!";
// Get operands
auto lhs = GetCExpr(z_op.arg(0));
auto rhs = GetCExpr(z_op.arg(1));
// Get result type for integers
auto GetIntResultType = [this, &lhs, &rhs] {
auto lht = lhs->getType();
auto rht = rhs->getType();
auto order = ast_ctx->getIntegerTypeOrder(lht, rht);
return order < 0 ? rht : lht;
};
// Get z3 function declaration
auto z_func = z_op.decl();
// Create C binary operator
clang::Expr *c_op = nullptr;
switch (z_func.decl_kind()) {
case Z3_OP_EQ:
c_op = CreateBinaryOperator(*ast_ctx, clang::BO_EQ, lhs, rhs,
ast_ctx->BoolTy);
break;
case Z3_OP_AND: {
c_op = lhs;
for (auto i = 1U; i < z_op.num_args(); ++i) {
rhs = GetCExpr(z_op.arg(i));
c_op = CreateBinaryOperator(*ast_ctx, clang::BO_LAnd, c_op, rhs,
ast_ctx->BoolTy);
}
} break;
case Z3_OP_OR: {
c_op = lhs;
for (auto i = 1U; i < z_op.num_args(); ++i) {
rhs = GetCExpr(z_op.arg(i));
c_op = CreateBinaryOperator(*ast_ctx, clang::BO_LOr, c_op, rhs,
ast_ctx->BoolTy);
}
} break;
case Z3_OP_BADD:
c_op = CreateBinaryOperator(*ast_ctx, clang::BO_Add, lhs, rhs,
GetIntResultType());
break;
case Z3_OP_BSREM:
case Z3_OP_BSREM_I:
c_op = CreateBinaryOperator(*ast_ctx, clang::BO_Rem, lhs, rhs,
GetIntResultType());
break;
case Z3_OP_UNINTERPRETED: {
auto name = z_func.name().str();
// Resolve opcode
if (name == "ArraySub") {
auto base_type = lhs->getType()->getAs<clang::PointerType>();
CHECK(base_type) << "Operand is not a clang::PointerType";
c_op = CreateArraySubscriptExpr(*ast_ctx, lhs, rhs,
base_type->getPointeeType());
} else if (name == "Member") {
auto mem = GetCValDecl(z_op.arg(1).decl());
c_op = CreateMemberExpr(*ast_ctx, lhs, mem, mem->getType(),
/*is_arrow=*/false);
} else if (name == "IntToPtr") {
auto c_lit = clang::cast<clang::IntegerLiteral>(lhs);
auto t_dst_opaque_ptr_val = c_lit->getValue().getLimitedValue();
auto t_dst_opaque_ptr = reinterpret_cast<void *>(t_dst_opaque_ptr_val);
auto t_dst = clang::QualType::getFromOpaquePtr(t_dst_opaque_ptr);
c_op = CreateCStyleCastExpr(*ast_ctx, t_dst,
clang::CastKind::CK_IntegralToPointer, rhs);
} else {
LOG(FATAL) << "Unknown Z3 uninterpreted function";
}
} break;
// Unknowns
default:
LOG(FATAL) << "Unknown Z3 binary operator!";
break;
}
// Save
InsertCExpr(z_op, c_op);
}
} // namespace rellic | [
"marek.surovic@gmail.com"
] | marek.surovic@gmail.com |
8de03011bae8d43bfcd4f5391b93779218879756 | a127724a1ae23af66095de3ac14714305d4a5e69 | /JSBM_C++/cal_pi.cpp | bf547a6e551707619a962888216f78d63b42e5bf | [] | no_license | pengfzhou/BPGCN | a311cd7bf9440869bfaf5338f57ac14cf27045f3 | b0f65bd50486f3717ab52accda139aab4e357ac2 | refs/heads/master | 2020-09-22T19:38:41.763890 | 2020-06-26T01:11:35 | 2020-06-26T01:11:35 | 225,308,325 | 12 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 726 | cpp | #include <math.h>
#include<iostream>
#include "mpi.h"
using namespace std;
int main(int argc, char *argv[])
{
int n=10, rank, size, i;
double PI25DT = 3.141592653589793238462643;
double mypi, pi, h, sum, x;
MPI::Init(argc, argv);
size = MPI::COMM_WORLD.Get_size( );
rank = MPI::COMM_WORLD.Get_rank( );
MPI::COMM_WORLD.Bcast(&n, 1, MPI::INT, 0);
h = 1.0 / (double) n;
sum = 0.0;
for (i = rank + 1; i <= n; i += size) {
x = h * ((double)i - 0.5);
sum += (4.0 / (1.0 + x*x));
}
mypi = h * sum;
cout<<mypi<<endl;
MPI::COMM_WORLD.Reduce(&mypi, &pi, 1, MPI::DOUBLE, MPI::SUM, 0);
if (rank == 0) cout<< "pi is approximately "<< pi << ", Error is " << fabs(pi - PI25DT) << endl;
MPI::Finalize( );
return 0;
}
| [
"zhoupengfei@itp.ac.cn"
] | zhoupengfei@itp.ac.cn |
cb00f6789649136acf249c1c729f34964c0cc874 | 6e10cbb2edb9ca5c8511784eb00fc83bf7092f12 | /source/Game/Camera.cpp | 56005beb9ec5525d8d8e4529eb6153a73067e4a4 | [
"BSD-3-Clause",
"MIT"
] | permissive | tamwaiban/nextgame | 65246dfd4c18ffa54d218a9ce371fa4fc75170d6 | a2d2f21341489792bafa2519f33287a0b89927ee | refs/heads/master | 2020-11-28T11:23:59.969262 | 2014-09-24T12:24:24 | 2014-09-24T12:24:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,035 | cpp | #include "Game/Camera.h"
#include "Core/Utils.h"
#include <cstdio>
void PlayerCamera::apply_transform()
{
get_camera_vectors(&look_dir, &up, &right, transform.orientation);
frustum = ::transform(frustum_identity, transform);
}
void PlayerCamera::set_perspective(float fov, float aspect, float znear, float zfar)
{
frustum_identity = Frustum_Perspective(fov, aspect, znear, zfar);
projection = Mat4_Perspective(fov, aspect, znear, zfar);
half_plane_wh = frustum_plane_wh(fov, aspect, 1.0) / Vec2(2);
projection_ratio = ::projection_ratio(znear, zfar);
}
void ShadowCamera::apply_transform()
{
frustum = ::transform(frustum_identity, transform);
}
void ShadowCamera::set_from_sphere(const Sphere &bsphere, float zextend)
{
frustum_identity = Frustum_Shadow(bsphere, zextend);
projection = Mat4_Shadow(bsphere, zextend);
}
void get_camera_vectors(Vec3 *look_dir, Vec3 *up, Vec3 *right, const Quat &orient)
{
NG_ASSERT(look_dir != nullptr);
NG_ASSERT(up != nullptr);
NG_ASSERT(right != nullptr);
const Mat4 m = to_mat4(inverse(orient));
*right = { m[0], m[4], m[8]};
*up = { m[1], m[5], m[9]};
*look_dir = {-m[2], -m[6], -m[10]};
}
Vec3 get_walk_direction(unsigned state, const Vec3 &look_dir,
const Vec3 &right, bool strip_y)
{
constexpr float sincos_45 = 0.7071067f;
float fb_move = 0.0f;
float lr_move = 0.0f;
if (state & PCS_MOVING_FORWARD)
fb_move += 1.0f;
if (state & PCS_MOVING_BACKWARD)
fb_move -= 1.0f;
if (state & PCS_MOVING_LEFT)
lr_move -= 1.0f;
if (state & PCS_MOVING_RIGHT)
lr_move += 1.0f;
if (state & (PCS_MOVING_FORWARD | PCS_MOVING_BACKWARD) &&
state & (PCS_MOVING_LEFT | PCS_MOVING_RIGHT))
{
fb_move *= sincos_45;
lr_move *= sincos_45;
}
Vec3 fb = look_dir;
if (strip_y) {
fb.y = 0.0f;
fb = normalize(fb);
}
return fb * Vec3(fb_move) + right * Vec3(lr_move);
}
Quat mouse_rotate(const Quat &in, float x, float y, float sensitivity)
{
const Quat xq(Vec3_Y(), -x * sensitivity);
const Quat yq(Vec3_X(), -y * sensitivity);
return xq * (in * yq);
}
| [
"no.smile.face@gmail.com"
] | no.smile.face@gmail.com |
0d2ac4363c4102c68f43f5c248f342f1d6a2a732 | b2571f919ae552c4dff006be9c825184d272dd75 | /uri/1038.cpp | 75756f0a96684fa64ff455c6babf716a029b1238 | [] | no_license | juanplopes/icpc | 22877ca4ebf67138750f53293ee9af341c21ec40 | 3e65ffe9f59973714ff25f3f9bb061b98455f781 | refs/heads/master | 2020-12-25T17:35:04.254195 | 2017-10-27T23:53:25 | 2017-10-27T23:53:25 | 2,492,274 | 121 | 44 | null | null | null | null | UTF-8 | C++ | false | false | 322 | cpp | //1038
//Snack
//Misc;Beginner
#include <iostream>
#include <iomanip>
#include <cmath>
using namespace std;
int main() {
int x, y;
while(cin >> x >> y) {
double price = x==1 ? 4 : x==2 ? 4.5 : x==3 ? 5 : x==4 ? 2 : 1.5;
cout << "Total: R$ " << fixed << setprecision(2) << y*price << endl;
}
}
| [
"me@juanlopes.net"
] | me@juanlopes.net |
f70913330c4e98d6724bb184195cdcd847ba4d14 | ec9886f2347a8d62b6ca7bc1ed8bfa18141386d0 | /Clappy3/src/Subsystems/Climber.cpp | f99bfe2e052b74de7d27c90f0b30625f7b9d0afe | [] | no_license | craftgarrick04401/Clappy3 | edb5d7f0cec073ad13072deb119925d6b7f3c8d6 | ac488e9da7501992da342f929e3dcdb1d6fb4a7a | refs/heads/master | 2021-01-19T09:32:19.166722 | 2017-08-24T22:54:35 | 2017-08-24T22:54:35 | 82,125,314 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 568 | cpp | #include "Climber.h"
#include "../Commands/ControlClimbmotor.h"
#include "../RobotMap.h"
Climber::Climber() : Subsystem("Climber") {
climbMotor = RobotMap::climbMotor;
}
void Climber::InitDefaultCommand() {
// Set the default command for a subsystem here.
// SetDefaultCommand(new MySpecialCommand());
SetDefaultCommand(new ControlClimbmotor());
}
void Climber::SetMotorSpeed(double speed)
{
climbMotor->Set(speed);
}
void Climber::StopMotor()
{
climbMotor->StopMotor();
}
// Put methods for controlling this subsystem
// here. Call these from Commands.
| [
"craftgarrick04401@gmail.com"
] | craftgarrick04401@gmail.com |
93911ea4583efcf12255641ffe97c063cf615e2a | f04eca8d3952e419e3f5ab45a360393c9c331346 | /cpp/0191NumberOf1Bits.cpp | 682adebe8d03576ac1818d03f9adeb3c12a97154 | [] | no_license | diordnar/leetCode | 9c41290dc4072d81581a0506299472531cce5105 | d3b373ec49e717c6d8b259b5494b43414b9050f7 | refs/heads/master | 2021-08-10T21:46:01.704325 | 2021-01-17T11:01:44 | 2021-01-17T11:01:44 | 242,065,565 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,245 | cpp | // 191. 位1的个数
// 编写一个函数,输入是一个无符号整数,返回其二进制表达式中数字位数为 ‘1’ 的个数
//(也被称为汉明重量)。
// 示例 1:
// 输入:00000000000000000000000000001011
// 输出:3
// 解释:输入的二进制串 00000000000000000000000000001011 中,共有三位为 '1'。
// 示例 2:
// 输入:00000000000000000000000010000000
// 输出:1
// 解释:输入的二进制串 00000000000000000000000010000000 中,共有一位为 '1'。
// 示例 3:
// 输入:11111111111111111111111111111101
// 输出:31
// 解释:输入的二进制串 11111111111111111111111111111101 中,共有 31 位为 '1'。
// 来源:力扣(LeetCode)
// 链接:https://leetcode-cn.com/problems/number-of-1-bits
// 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
#include <iostream>
#include <cstdint> //c++11 uint32_t
using namespace std;
class Solution
{
public:
int hammingWeight(uint32_t n)
{
int cnt = 0;
while (n != 0)
{
n = n & (n - 1);
++cnt;
}
return cnt;
}
};
int main()
{
return 0;
} | [
"torrey.tsui@outlook.com"
] | torrey.tsui@outlook.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 | |
b91c5c14cd0d7877370228d616fbabca4f62a183 | 29be909661dd09bd4aa53a9b26a26bb07cb689fa | /leetcode/prove/levelOrder3.cpp | 6d36507b82be73e61d224696fd6a10221beaafa9 | [] | no_license | 1398978500/study | b66bb23400ba2576e362017479dfcb5802bb7d66 | e635821f59293655b94b651e9d207b6aa0f1bb68 | refs/heads/main | 2023-05-26T12:01:44.691783 | 2023-05-11T15:05:49 | 2023-05-11T15:05:49 | 540,799,753 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,765 | cpp | /*
请实现一个函数按照之字形顺序打印二叉树,即第一行按照从左到右的顺序打印,第二层按照从右到左的顺序打印,第三行再按照从左到右的顺序打印,其他行以此类推。
例如:
给定二叉树: [3,9,20,null,null,15,7],
3
/ \
9 20
/ \
15 7
返回其层次遍历结果:
[
[3],
[20,9],
[15,7]
]
提示:
节点总数 <= 1000
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector<vector<int>> levelOrder(TreeNode* root) {
vector<vector<int>> vRes;
if(root == nullptr) {
return vRes;
}
queue<TreeNode*> qNode;
qNode.emplace(root);
int iLevel = 0; // 记录第几层 根为第0层
while(!qNode.empty()) {
int len = qNode.size();
vector<int> vLevel(len, 0);
for(int i = 0; i < len; i++) {
int index = i;
// 奇数层则倒序
if((iLevel & 1) == 1) {
index = len - 1 - i;
}
// 记录当前层
auto tmp = qNode.front();
qNode.pop();
vLevel[index] = (tmp->val);
// 添加下一层节点
if(tmp->left != nullptr) {
qNode.emplace(tmp->left);
}
if(tmp->right != nullptr) {
qNode.emplace(tmp->right);
}
}
vRes.emplace_back(vLevel);
iLevel++;
}
return vRes;
}
};
| [
"1398978500@qq.com"
] | 1398978500@qq.com |
5da3dd2595be784d770e2cdf797082a6e1183b7c | b54d7fb9cd70ae13b0bbba0169fdcccbe845c8ba | /c++11/c/Base.cpp | 43776180a54bbdfb4002278cb1bb00d3c7c3796e | [] | no_license | nxjm/C11 | fc10fabaf3274c19ca44a7b98ed0735e0364f6b5 | 2c0ccbeadfabc1cf1469b0594848b393333b919e | refs/heads/master | 2020-07-01T04:14:47.521994 | 2019-08-15T15:03:09 | 2019-08-15T15:03:09 | 201,045,840 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 207 | cpp | #include "Base.h"
using namespace std;
Base::Base(){
cout << "Base::Base()" << endl;
}
Base::~Base(){
cout << "Base::~Base()" << endl;
}
void Base::func1(){
cout << "Base::func1()" << endl;
}
| [
"aut456@163.com"
] | aut456@163.com |
37d1a6bedca54ad85949370bc21708d34d697779 | fc80c9504e3392c1ed3a23b80faa09f6f49289b3 | /movie.h | 55a152085715bafc4a8876717c9c25ae9a2d15c8 | [] | no_license | Muhammadkamranlive/data-structure-project-c-file-processing | dcb030964cd135738a6c086fd2509c04ea062cd7 | 85a438f80681876910887a0f5862efbe42204027 | refs/heads/main | 2023-07-13T23:10:33.552288 | 2021-08-22T13:23:17 | 2021-08-22T13:23:17 | 398,804,553 | 2 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 3,852 | h | #include<iostream>
#include<fstream>
using namespace std;
class Movie_Node{
private:
string movie_name;
string movie_type;
string movie_release_date;
string theaters_available;
Movie_Node* next;
public:
string Getmovie_name();
string Getmovie_release_date();
string Getmovie_type();
string Gettheaters_available();
Movie_Node* Getnext();
void Setmovie_name(string movie_name);
void Setmovie_release_date(string movie_release_date);
void Settheaters_available(string theaters_available);
void Setmovie_type(string movie_type);
void Setnext(Movie_Node* next);
};
string Movie_Node::Getmovie_name(){
return this->movie_name;
}
string Movie_Node::Getmovie_release_date(){
return this->movie_release_date;
}
string Movie_Node::Getmovie_type(){
return this->movie_type;
}
string Movie_Node::Gettheaters_available(){
return this->theaters_available;
}
Movie_Node* Movie_Node::Getnext(){
return this->next;
}
void Movie_Node::Setmovie_name(string movie_name){
this->movie_name=movie_name;
}
void Movie_Node::Setmovie_release_date(string movie_release_date){
this->movie_release_date=movie_release_date;
}
void Movie_Node::Settheaters_available(string theaters_available){
this->theaters_available=theaters_available;
}
void Movie_Node::Setmovie_type(string movie_type){
this->movie_type=movie_type;
}
void Movie_Node::Setnext(Movie_Node* next){
this->next=next;
}
class Movie_list{
private:
Movie_Node* currentlocation;
public:
Movie_list();
void insert_movie_list(string,string,string,string);
void save_movie_list(string,string,string,string);
void print_movie_list();
};
Movie_list::Movie_list(){
currentlocation=NULL;
}
void Movie_list::insert_movie_list(string movie_name,string movie_release_date,string movie_type,string theaters_available){
Movie_Node* newNode= new Movie_Node();
newNode->Setmovie_name(movie_name);
newNode->Setmovie_release_date(movie_release_date);
newNode->Setmovie_type(movie_type);
newNode->Settheaters_available(theaters_available);
Movie_Node* tempNode=currentlocation;
if(tempNode!=NULL){
while(tempNode->Getnext()!=NULL){
tempNode=tempNode->Getnext();
}
tempNode->Setnext(newNode);
}
else{
currentlocation=newNode;
}
}
void Movie_list::save_movie_list(string movie_name,string movie_release_date,string movie_type,string theaters_available){
ofstream outfile;
outfile.open("movie.txt",ios::app);
if(!outfile){
cout<<"sorry rating file is not opened"<<endl;
}
else{
outfile<<movie_name<<"\t\t"<<movie_release_date<<"\t\t"<<movie_type<<"\t\t"<<theaters_available<<endl;
outfile.close();
}
}
void Movie_list::print_movie_list(){
Movie_Node* tempNode= new Movie_Node();
tempNode=currentlocation;
if(tempNode==NULL){
cout<<"sorry movie list is empty"<<endl;
}
else if(tempNode->Getnext()==NULL){
cout<<"\t\tþþþþþþþþþþþþþ Movie Records þþþþþþþþþþþþþþ\n\n\n"<<endl;
cout<<"\t\tMovie name \t\tþþþþþþ"<<tempNode->Getmovie_name()<<endl;
cout<<"\t\tMovie release date\t\tþþþþþþ"<<tempNode->Getmovie_release_date()<<endl;
cout<<"\t\tMovie type \t\tþþþþþþ"<<tempNode->Getmovie_type()<<endl;
cout<<"\t\tTheaters avaialable\t\tþþþþþþ"<<tempNode->Gettheaters_available()<<endl;
}
else{
while(tempNode!=NULL){
cout<<"\t\tþþþþþþþþþþþþþ Movie Records þþþþþþþþþþþþþþ\n\n\n"<<endl;
cout<<"\t\tMovie name \t\tþþþþþþ"<<tempNode->Getmovie_name()<<endl;
cout<<"\t\tMovie release date\t\tþþþþþþ"<<tempNode->Getmovie_release_date()<<endl;
cout<<"\t\tMovie type \t\tþþþþþþ"<<tempNode->Getmovie_type()<<endl;
cout<<"\t\tTheaters avaialable\t\tþþþþþþ"<<tempNode->Gettheaters_available()<<endl;
tempNode=tempNode->Getnext();
}
}
}
| [
"89290897+Muhammadkamranlive@users.noreply.github.com"
] | 89290897+Muhammadkamranlive@users.noreply.github.com |
d50dcb6a4584a0995dd20a4354d56b8da6dc7a81 | 6f2b6e9d77fc4dd5e1dae8ba6e5a66eb7c7ae849 | /sstd_boost/sstd/boost/hof/detail/noexcept.hpp | 621111d8eac2bc2ed41587ebe9b01c84eab54a14 | [
"BSL-1.0"
] | permissive | KqSMea8/sstd_library | 9e4e622e1b01bed5de7322c2682539400d13dd58 | 0fcb815f50d538517e70a788914da7fbbe786ce1 | refs/heads/master | 2020-05-03T21:07:01.650034 | 2019-04-01T00:10:47 | 2019-04-01T00:10:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 646 | hpp | /*=============================================================================
Copyright (c) 2016 Paul Fultz II
noexcept.hpp
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#ifndef BOOST_HOF_GUARD_DETAIL_NOEXCEPT_HPP
#define BOOST_HOF_GUARD_DETAIL_NOEXCEPT_HPP
#include <sstd/boost/hof/config.hpp>
#if BOOST_HOF_HAS_NOEXCEPT_DEDUCTION
#define BOOST_HOF_NOEXCEPT(...) noexcept(__VA_ARGS__)
#else
#define BOOST_HOF_NOEXCEPT(...)
#endif
#endif
| [
"zhaixueqiang@hotmail.com"
] | zhaixueqiang@hotmail.com |
71b4405dbdf29de691ea97320366ba817f2124c7 | cdd60a2c8d2cf4008b56dfa8016406c593591c61 | /source/common/quic/core/frames/quic_blocked_frame.h | fda4554027ac3de3dc2852db9f1ab5133c7bf129 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | juvexp/envoy | 794aa204c8b9fafd922ddf28a23191819c438416 | e7e6b61ea97b751f2c1b77cf968679dd5cbd18fe | refs/heads/master | 2021-05-12T05:18:19.481585 | 2018-04-12T15:32:01 | 2018-04-12T20:19:23 | 117,185,284 | 0 | 0 | null | 2018-01-12T03:06:38 | 2018-01-12T03:06:37 | null | UTF-8 | C++ | false | false | 1,601 | h | // Copyright 2018 Google LLC
//
// 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
//
// https://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 GFE_QUIC_CORE_FRAMES_QUIC_BLOCKED_FRAME_H_
#define GFE_QUIC_CORE_FRAMES_QUIC_BLOCKED_FRAME_H_
#include <ostream>
#include "common/quic/core/frames/quic_control_frame.h"
namespace gfe_quic {
// The BLOCKED frame is used to indicate to the remote endpoint that this
// endpoint believes itself to be flow-control blocked but otherwise ready to
// send data. The BLOCKED frame is purely advisory and optional.
// Based on SPDY's BLOCKED frame (undocumented as of 2014-01-28).
struct QUIC_EXPORT_PRIVATE QuicBlockedFrame : public QuicControlFrame {
QuicBlockedFrame();
QuicBlockedFrame(QuicControlFrameId control_frame_id, QuicStreamId stream_id);
friend QUIC_EXPORT_PRIVATE std::ostream& operator<<(
std::ostream& os,
const QuicBlockedFrame& b);
// The stream this frame applies to. 0 is a special case meaning the overall
// connection rather than a specific stream.
QuicStreamId stream_id;
};
} // namespace gfe_quic
#endif // GFE_QUIC_CORE_FRAMES_QUIC_BLOCKED_FRAME_H_
| [
"wub@google.com"
] | wub@google.com |
b987180329d41ee02414b6c18e708504f59cb719 | 2c1e5a69ca68fe185cc04c5904aa104b0ba42e32 | /src/game/ASpriteInstance.cpp | d240eec7d3ac2e166123b0f83621607827ce3db0 | [] | no_license | dogtwelve/newsiderpg | e3f8284a7cd9938156ef8d683dca7bcbd928c593 | 303566a034dca3e66cf0f29cf9eaea1d54d63e4a | refs/heads/master | 2021-01-10T13:03:31.986204 | 2010-06-27T05:36:33 | 2010-06-27T05:36:33 | 46,550,247 | 0 | 1 | null | null | null | null | UHC | C++ | false | false | 19,519 | cpp | #include "ASpriteInstance.h"
#include "ASprite.h"
/*int ASpriteInstance::x;
int ASpriteInstance::y;
int ASpriteInstance::_posX;
int ASpriteInstance::_posY;*/
#include "Macro.h"
ASpriteInstance::ASpriteInstance(ASprite* spr, int posX, int posY, ASpriteInstance* parent)
{
CameraX=0;
CameraY=0;
m_lastX = m_posX = posX;
m_lastY = m_posY = posY;
// m_flags = 0;
m_pal = 0;
m_sprite = spr;
m_nState = 0;
m_nCrtModule = 0;
m_nCrtFrame = 0;
m_nCrtAnimation = 0;
m_rect = GL_NEW int[4];
m_bLoop = true;
// m_parent = parent;
}
ASpriteInstance::~ASpriteInstance()
{
SAFE_DEL_ARRAY(m_rect);
}
////////////////////////////////////////////////////////////////////////////////////////////////////
void ASpriteInstance::SetModule(int id)
{//SangHo - 그리기 속성을 Module로 바꿔준다
//행동이 바뀌면 기존의 마지막 좌표는 초기화 시켜준다
m_lastAniX=0;
m_lastAniZ=0;
m_nState = 2;
m_nCrtAnimation = -2;//SangHo - -2 일 경우 Animation 작동하지않는다
m_nCrtModule = id;
//m_nCrtFrame = -1;//SangHo - -1 일 경우 Frame 작동하지않는다
}
////////////////////////////////////////////////////////////////////////////////////////////////////
void ASpriteInstance::SetFrame(int id)
{//SangHo - 그리기 속성을 Frame로 바꿔준다
//행동이 바뀌면 기존의 마지막 좌표는 초기화 시켜준다
m_lastAniX=0;
m_lastAniZ=0;
m_nState = 1;
m_nCrtAnimation = -2;//SangHo - -2 일 경우 Animation 작동하지않는다
m_nCrtModule = -1;//SangHo - -1 일 경우 Module 작동하지않는다
m_nCrtFrame = id;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
bool ASpriteInstance::SetAnim(int id)
{//SangHo - 그리기 속성을 Animation로 바꿔준다
//if(!m_bLoop)
//{
//m_bAnimIsOver = false;
//행동이 바뀌면 기존의 마지막 좌표는 초기화 시켜준다
m_lastAniX=0;
m_lastAniZ=0;
m_nState = 0;
m_nCrtModule = id;
m_nCrtFrame = 0;
m_nCrtAnimation = -1;//SangHo - 0대신 -1인 이유는 Paint 전에 항상 키값에 대한 업데이트를 수행해야 하므로 첫프레임을 못찍는 구조적 한계때문
is_aniDone = false;
return true;
//}
//else
//{
// if (id != m_nCrtModule)
// {
// //m_bAnimIsOver = false;
// m_nCrtModule = id;
// m_nCrtFrame = 0;
// m_nCrtAnimation = 0;
// is_aniDone = false;
// return true;
// }
//}
//return false;
}
//void ASpriteInstance::SetAniLoop(bool _loop)
void ASpriteInstance::RewindAnim(int id)
{//SangHo - id Anim 으로 교체후 초기화
//m_bAnimIsOver = false;
m_nCrtModule = id;
m_nCrtFrame = 0;
m_nCrtAnimation = 0;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
void ASpriteInstance::SetToLastFrame()
{//SangHo - Anim의 마지막 인덱스값으로 이동
m_nCrtFrame = m_sprite->GetAFrames(m_nCrtModule) - 1;
m_nCrtAnimation = m_sprite->GetAFrameTime(m_nCrtModule, m_nCrtFrame) - 1;
}
void ASpriteInstance::setAnimStop( )
{//SangHo - Anim을 재생중단후 인덱스 초기화
is_aniDone = true;
m_nCrtFrame = 0;
}
void ASpriteInstance::setCamera(int _CameraX, int _CameraY)
{//SangHo - Anim을 재생중단후 인덱스 초기화
CameraX = _CameraX;
CameraY = _CameraY;
}
bool ASpriteInstance::IsAnimEnded()
{//SangHo - Anim가 현재 재생중인지 아닌지를 알려준다
if(is_aniDone)
{
return true;
}
//if (m_bReverse)
//{
// if (m_nCrtFrame != 0)
// {
// return false;
// }
//}
else if (m_nCrtFrame != m_sprite->GetAFrames(m_nCrtModule) - 1)
{
return false;
}
int time = m_sprite->GetAFrameTime(m_nCrtModule, m_nCrtFrame);
return ((time == 0) || (m_nCrtAnimation == time - 1));
}
////////////////////////////////////////////////////////////////////////////////////////////////////
void ASpriteInstance::Get_AFrameXZ(int* tmpXZ){//그리기 전에 좌표 확인이 필요할때
m_sprite->Get_AFrameXY(tmpXZ , m_nCrtModule, m_nCrtFrame, m_posX + m_lastAniX, 0, m_flags, 0, 0);
}
void ASpriteInstance::PaintSprite(CGraphics* g,int flags)//SangHo - flags값을 넣지않을경우 0으로 간주한다
{
m_flags = flags;
PaintSprite(g);
}
void ASpriteInstance::PaintSprite(CGraphics* g,int posX,int posY,int flags)//SangHo - flags값을 넣지않을경우 0으로 간주한다
{
m_posX = posX;
m_posY = posY;
m_flags = flags;
PaintSprite(g);
}
void ASpriteInstance::PaintSprite(CGraphics* g)//SangHo - flags값에 따라 좌우상하반전 또는 90도 회전을 지원한다
{//CameraX,CameraY 는 맵 배경 스크롤에 따른 보정 수치
//const static byte FLAG_FLIP_X = 0x01;
//const static byte FLAG_FLIP_Y = 0x02;
//const static byte FLAG_ROT_90 = 0x04;
// m_flags = flags;
//m_bAnimIsOver = false;
if (m_sprite == NULL)
return;
//if ((m_flags & FLAG_DONTDRAW) != 0)
//{
// return;
//}
//if ((m_layer & 4) != 0)
//{
// return;
//}
m_sprite->changePal(m_pal);
m_sprite->SetBlendCustom(s_Blend.blendCustom,s_Blend.overWrite,s_Blend.Blend_Kind,s_Blend.Blend_Percent);
if (m_nCrtAnimation >= -1)//-2 일 경우에 에니메이션이 아닌 프레임또는 모듈을 그린다
{
m_sprite->PaintAFrame(g, m_nCrtModule, m_nCrtFrame,CameraX+ m_posX + m_lastAniX, CameraY+ (m_posY + m_posZ) + m_lastAniZ, m_flags, 0, 0);
if(!b_MoveLock){
m_posX-=m_sprite->m_nowAniX - m_lastAniX;
m_posZ-=m_sprite->m_nowAniZ - m_lastAniZ;
//갱신이 끝난 좌표에 전프레임 좌표를 뺀값만큼을 더해준다
m_lastAniX = m_sprite->m_nowAniX;
m_lastAniZ = m_sprite->m_nowAniZ;
m_stopFlag = m_sprite->m_nowFlag;
}
}
else if (m_nCrtModule >= 0) // m_nCrtModule --> module
{
// 앵커는 임시로 쓰임
m_sprite->PaintModule(g, m_nCrtModule, CameraX+ m_posX, CameraY+ (m_posY + m_posZ), m_flags, g->BOTTOM | g->HCENTER );
}
else if (m_nCrtFrame >= 0) // m_nCrtFrame --> frame
{
m_sprite->PaintFrame(g, m_nCrtFrame,CameraX+ m_posX, CameraY+ (m_posY + m_posZ), m_flags, 0, 0);
}
//m_bAnimIsOver = IsAnimEnded();
m_lastX =m_posX; //SangHo - 인스턴스의 현 좌표를 반영한다. - 몸통체크를 위해서(전좌표로 쓰인다)
m_lastY =m_posY; //SangHo - 인스턴스의 현 좌표를 반영한다. - 몸통체크를 위해서(전좌표로 쓰인다)
}
////////////////////////////////////////////////////////////////////////////////////////////////////
//SangHo - 구조적 문제 해결위해 다시제작 (2008.12.19)
bool ASpriteInstance::UpdateSpriteAnim()
{//SangHo - Animation의 현재값을 1증가시킨다.
//return true - 애니메이션 재생중
//return false - 애니메이션 종료
int _m_time = 0;//총 Time 값 (딜레이수치 디폴값은 0)
int _m_frame = 0;//총 프레임값 (프레임 맥스값)
_m_time = m_sprite->GetAFrameTime(m_nCrtModule, m_nCrtFrame); // 해당 프레임의 Time값
_m_frame = m_sprite->GetAFrames(m_nCrtModule);//m_nCrtModule 는 애니메이션 넘버
{//무결성 체크
if (m_sprite == NULL) return true;
if (m_nCrtAnimation < -1) return true;//업데이트 수행시 time 값을 무조건 ++ 시키므로 초기값은 -1, 루프후는 0으로 돌아간다
if ((m_flags & FLAG_PAUSED) != 0) return true;//일시정지시 무조건 return
}
//{//예외값 통일화 처리
// if (m_nCrtAnimation < 0)
// m_nCrtAnimation=0;
//}
{//프레임의 Time 값을 체크한다 ----- Time 값만큼 딜레이 후에 다음 프레임으로 넘어간다
m_nCrtAnimation++; //인스턴스의 time 값 1증가
if (m_nCrtAnimation < _m_time) //프레임의 타임값보다 작다면 1증가 하고 한번더 그림
if (m_nCrtAnimation == (_m_time-1) && m_nCrtFrame == (_m_frame -1) ){//&&!m_bLoop) //마지막Time 일때 다음으로 증가할 프레임이 없다면 false 가 되야한다
return false;
}else
return true;
}
{//애니의 프레임 값을 체크한다 ----- 마지막 프레임일 경우 (드로잉종료, 루프) 여부 판단
if (m_nCrtFrame < (_m_frame -1)){ //프레임 갯수(-1) 보다 현재 프레임인덱스가 작다면 프레임인덱스를 1증가 시킨다
m_nCrtAnimation=0;//프레임의 타임값 초기화
m_nCrtFrame++;//다음프레임으로
{//만약 넘어간 프레임이 마지막 프레임 & time 1 이면 미리 체크를 해줘야 한다-안그러면 마지막 프레임을 한번더 그린다
_m_time = m_sprite->GetAFrameTime(m_nCrtModule, m_nCrtFrame); // 해당 프레임의 Time값
if((m_nCrtFrame == (_m_frame -1) && _m_time == 1 )&&!m_bLoop)
return false;
else
return true;
}
}else{//업데이트 마지막 값 도달
if(m_bLoop){//루프애니메이션일 경우
m_nCrtAnimation=0;//프레임의 타임값 초기화
m_nCrtFrame = 0;//첫프레임으로
m_lastAniX=0;
m_lastAniZ=0;
//if(Move)UpdateTempXZ(APPLY_X|APPLY_Z);//루프가 돌면 최종좌표를 반영해야한다
return true;
}else{//1회성 애니메이션일 경우
return false;//////////////////////////// 에니메이션 종료 ////////////////////////////
}
}
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
int ASpriteInstance::GetCurrentAFrameOff(bool bY)
{//SangHo - 현재 Off값 구하는 부분이긴하나 활용예상부분을 모르겠음
int off = (m_sprite->_anims_af_start[m_nCrtModule] + m_nCrtFrame) * 5;
if (bY)
{
return m_sprite->_aframes[off + 3];
}
return m_sprite->_aframes[off + 2];
}
int ASpriteInstance::GetLastAFrameOff(bool bY)
{//SangHo - 마지막 Off값 구하는 부분이긴하나 활용예상부분을 모르겠음
int lastAFrame = m_sprite->GetAFrames(m_nCrtModule) - 1;
int off = (m_sprite->_anims_af_start[m_nCrtModule] + lastAFrame) * 5;
if (bY)
{
return m_sprite->_aframes[off + 3];
}
return m_sprite->_aframes[off + 2];
}
////////////////////////////////////////////////////////////////////////////////////////////////////
int* ASpriteInstance::GetRect(bool bColRect)
{//SangHo - LCD기준의 좌,상,너비,높이 4개인자값을 리턴한다.
if (m_rect == NULL)
{
m_rect = GL_NEW int[4];
}
int posX = m_posX;
int posY = m_posY;
if (m_sprite != NULL)
{
if (m_nCrtModule >= 0)
{
if (m_nCrtAnimation >= 0)
{
m_sprite->GetAFrameRect(m_rect, m_nCrtModule, m_nCrtFrame, posX, posY, m_flags, 0, 0);//bColRect
}
else
{
m_sprite->GetModuleRect(m_rect, m_nCrtModule, posX, posY);
}
}
else if (m_nCrtFrame >= 0)
{
m_sprite->GetFrameRect(m_rect, m_nCrtFrame, posX, posY, m_flags, 0, 0);//bColRect
}
}
return m_rect;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
int* ASpriteInstance::GetAbsoluteRect(bool bColRect)
{//SangHo - 원점기준의 좌,상,너비,높이 4개인자값을 리턴한다.
if (m_rect == NULL)
{
m_rect = GL_NEW int[4];
}
if (m_sprite != NULL)
{
/*if (bColRect && m_sprite->_frames_coll == NULL)
{
return NULL;
}*/
if (m_nCrtAnimation >= 0)
{
m_sprite->GetAFrameRect(m_rect, m_nCrtModule, m_nCrtFrame, 0, 0, m_flags, 0, 0);//bColRect
}
else if (m_nCrtModule >= 0)
{
m_sprite->GetModuleRect(m_rect, m_nCrtModule, 0, 0);
}
else if (m_nCrtFrame >= 0)
{
m_sprite->GetFrameRect(m_rect, m_nCrtFrame, 0, 0, m_flags, 0, 0);//bColRect
}
}
return m_rect;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
int* ASpriteInstance::GetFModuleRect(int module,int posX, int posY, int flags, int hx, int hy)
{//SangHo - 현재 인스턴스가 그리고있는 Animation Frame 의 module번째 모듈의 좌표를 리턴한다(원점기준, 하이퍼 프레임은 해당되지않음)
if (m_rect == NULL)
{
m_rect = GL_NEW int[4];
}
//System.out.println("m_nCrtFrame::::::::::"+m_nCrtFrame);
//System.out.println("GetAnimFrame(m_nCrtModule,m_nCrtFrame):"+m_sprite->GetAnimFrame(m_nCrtModule,m_nCrtFrame));
if(m_sprite != NULL)
{
m_sprite->GetFModuleRect(m_rect,GetAnimFrame(),module,posX,posY,flags,hx,hy);
return m_rect;
}
return NULL;
}
int ASpriteInstance::GetAnimFrame()
{//SangHo - 현재 인스턴스가 그리고있는 Animation Frame 의 고유Index 값을 리턴한다(Ani off값 아님)
if(m_sprite != NULL)
{
return m_sprite->GetAnimFrame(m_nCrtModule,m_nCrtFrame);
}
return 0;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
bool ASpriteInstance::IsRectCrossing(int rect1[], int rect2[])
{//SangHo - 두 면적이 충돌하였는지를 판단한다
if (rect1[0] > rect2[2]) return false;
if (rect1[2] < rect2[0]) return false;
if (rect1[1] > rect2[3]) return false;
if (rect1[3] < rect2[1]) return false;
return true;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
bool ASpriteInstance::IsPointInRect(int x, int y, int rect[])
{//SangHo - 한지점이 면적 안에 들어가있는지 아닌지를 체크한다
if (x < rect[0]) return false;
if (x > rect[2]) return false;
if (y < rect[1]) return false;
if (y > rect[3]) return false;
return true;
}
bool ASpriteInstance::SetBlendCustom(bool blendCustom, bool overWrite, int Blend_Kind,int Blend_Percent){
//SangHo - 블랜드를 지정하자마자 그리는것이 아니라 List 에 넣은뒤 정렬후에 한꺼번에 그리기때문에 값을 저장할 필요성이 있음
s_Blend.blendCustom = blendCustom;
s_Blend.overWrite = overWrite;
s_Blend.Blend_Kind = Blend_Kind;
s_Blend.Blend_Percent = Blend_Percent;
return true;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
// static int ZOOM_IN_X(int x) { return (((x)*ZOOM_X)/ZOOM_X_DIV); }
// static int ZOOM_IN_Y(int y) { return (((y)*ZOOM_Y)/ZOOM_Y_DIV); }
// static int ZOOM_OUT_X(int x) { return (((x)*ZOOM_X_DIV)/ZOOM_X); }
// static int ZOOM_OUT_Y(int y) { return (((y)*ZOOM_Y_DIV)/ZOOM_Y); }
//static int ZOOM_IN_FIXED_X(int x) { return ((((x)>>FIXED_PRECISION)*ZOOM_X)/ZOOM_X_DIV); }
//static int ZOOM_IN_FIXED_Y(int y) { return ((((y)>>FIXED_PRECISION)*ZOOM_Y)/ZOOM_Y_DIV); }
// [Sinh.2007/02/22] optimize for Triplets
// static int ZOOM_OUT_FIXED_X(int x) { return ((((x)<<FIXED_PRECISION)*ZOOM_X_DIV)/ZOOM_X); }
// static int ZOOM_OUT_FIXED_Y(int y) { return ((((y)<<FIXED_PRECISION)*ZOOM_Y_DIV)/ZOOM_Y); }
////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////▽폐소스 - SangHo/////////////////////////////////////////
///////////////////////////////////////////▽폐소스 - SangHo/////////////////////////////////////////
/*
int* ASpriteInstance::GetSpriteRect(int _m_posX, int _m_posY)
{//SangHo - _m_posX,_m_posY 을 기준점으로 가정된 좌,상,너비,높이 4개인자값을 리턴한다.
if (m_rect == NULL)
{
m_rect = GL_NEW int[4];
}
if (m_sprite != NULL)
{
if (m_nCrtAnimation >= 0)
m_sprite->GetAFrameRect(m_rect, m_nCrtModule, m_nCrtFrame, _m_posX, _m_posY, m_flags, 0, 0);
else if (m_nCrtModule >= 0)
m_sprite->GetModuleRect(m_rect, m_nCrtModule, _m_posX, _m_posY);
else if (m_nCrtFrame >= 0)
m_sprite->GetFrameRect(m_rect, m_nCrtFrame, _m_posX, _m_posY, m_flags, 0, 0);
//m_rect[1] -= m_posZ;
//m_rect[3] -= m_posZ;
return m_rect;
}
return NULL;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
void ASpriteInstance::PaintSprite_NO_ZOOM(CGraphics* g)
{//SangHo - PaintSprite로 대체
if (m_sprite == NULL)
return;
int posX = m_posX,
posY = m_posY;
for (ASpriteInstance* o = m_parent; o != NULL; o = o->m_parent)
{
posX += o->m_posX;
posY += o->m_posY;
}
posX = ( posX >>FIXED_PRECISION ) + SV_X;
posY = ( posY >>FIXED_PRECISION ) + SV_Y;
// System.out.println("PaintSprite("+posX+", "+posY+")...");
m_sprite->SetCurrentPalette(m_pal);
if (m_nCrtAnimation >= 0)
m_sprite->PaintAFrame(g, m_nCrtModule, m_nCrtFrame, posX, posY, m_flags, 0, 0);
else if (m_nCrtModule >= 0) // m_nCrtModule --> module
m_sprite->PaintModule(g, m_nCrtModule, posX, posY, m_flags);
else if (m_nCrtFrame >= 0) // m_nCrtFrame --> frame
m_sprite->PaintFrame(g, m_nCrtFrame, posX, posY, m_flags, 0, 0);
}
////////////////////////////////////////////////////////////////////////////////////////////////////
void ASpriteInstance::ApplyAnimOff()//좌표에 가중치 계산을 하는부분 쓸모없어보임
{
// if (bASSERT) DBG.ASSERT(m_sprite != NULL);
m_posX -= m_posOffX;
m_posY -= m_posOffY;
//////////
// m_sprite->GetAFrameOffset(&m_posOffX, &m_posOffY);
int off = (m_sprite->_anims_af_start[m_nCrtModule] + m_nCrtFrame) * 5;
// m_posOffX = ZOOM_OUT_FIXED_X(m_sprite->_aframes[off+2] << FIXED_PRECISION);
m_posOffX = (m_sprite->_aframes[off+2] << FIXED_PRECISION) * ZOOM_X_DIV / ZOOM_X;
if ((m_flags & FLAG_FLIP_X) != 0) m_posOffX = -m_posOffX;
// m_posOffY = ZOOM_OUT_FIXED_Y(m_sprite->_aframes[off+3] << FIXED_PRECISION);
m_posOffY = (m_sprite->_aframes[off+3] << FIXED_PRECISION) * ZOOM_Y_DIV / ZOOM_Y;
if ((m_flags & FLAG_FLIP_Y) != 0) m_posOffY = -m_posOffY;
//////////
m_posX += m_posOffX;
m_posY += m_posOffY;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
void ASpriteInstance::OnScreenTest()
{//SangHo - 사용하지 않음
// _vis = 1 + 2 + 4 + 8;
int ox = 0, oy = 0;
for (ASpriteInstance* o = m_parent; o != NULL; o = o->m_parent)
{
ox += o->m_posX;
oy += o->m_posY;
}
int* rect = GetRect(false);
rect[0] += ox - (GV_W << FIXED_PRECISION);
rect[1] += oy - (GV_H << FIXED_PRECISION);
rect[2] += ox;
rect[3] += oy;
_vis = 0;
if (rect[0] < 0 && rect[2] >= 0 && rect[1] < 0 && rect[3] >= 0)
{
_vis = 1 + 2 + 4 + 8;
}
else
{
//...
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
bool ASpriteInstance::IsOnScreen(int style)
{//SangHo - 사용하지 않음
return ((_vis & style) != 0);
}
int ASpriteInstance::getAniFrameOffY(){
int off = (m_sprite->_anims_af_start[m_nCrtModule] + m_nCrtFrame) * 5;
int m_posOffY = (m_sprite->_aframes[off+3] << FIXED_PRECISION) * ZOOM_Y_DIV / ZOOM_Y;
if ((m_flags & FLAG_FLIP_Y) != 0) m_posOffY = -m_posOffY;
return m_posOffY;
}
*/ | [
"secret5374@hotmail.com"
] | secret5374@hotmail.com |
34abf86e74d9a98f67afa7ff99dbaf7358dbd259 | 21df65712af0b9d095ccdc376a821563c9f525cb | /Source/BlueprintInsights/Public/BlueprintInsights.h | 595364bd205ae9f8046c39591cf81d221eb412a9 | [
"MIT"
] | permissive | sleepCOW/BlueprintInsights | af3cfa8b9fdb139784f9cd0721581d1e088b62ff | f2ea205f8ec3e30ee1b8a84e4cf9601493007516 | refs/heads/main | 2023-04-21T17:44:35.309672 | 2021-05-06T22:54:26 | 2021-05-06T22:54:26 | 365,052,852 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 319 | h | // Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleManager.h"
class FBlueprintInsightsModule : public IModuleInterface
{
public:
/** IModuleInterface implementation */
virtual void StartupModule() override;
virtual void ShutdownModule() override;
};
| [
"olexthelake@gmail.com"
] | olexthelake@gmail.com |
840753e7b43e6b413c8289e90d11fbc102924acd | e8c4cedaa0965aee84d3ee4b00b5b3887889dc32 | /BMH/uwbmh.cpp | d50813308abe5ae8d72da8c5bfb1a53a9fca9aed | [] | no_license | cmperezg/UWRAM | 66ebe2682bf123e3886dd7cdb3ca31aacc8d5cbf | 5084066ac120d08b5e7c78e23dcba86120b2aea3 | refs/heads/master | 2021-01-23T21:43:19.306690 | 2017-03-08T20:13:30 | 2017-03-08T20:13:30 | 59,245,092 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,969 | cpp | #include <cstdio>
#include <vector>
#include <chrono>
#include <tuple>
#include <list>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <algorithm>
#include <fstream>
#include <string>
#include <iostream>
#include "ultraword.h"
//compile: g++ uwbmh.cpp ultraword.cpp -o uwbmh -std=c++11
void printlongbits(unsigned long long int n){
long long int i;
for(i=63;i>=0;i--){
unsigned long long int mask = ((unsigned long long int)1)<<i;
unsigned long long int maskedn = n&mask;
unsigned long long int thebit = maskedn >> i;
printf("%u",(unsigned int)thebit);
if(i%8==0){
printf(" ");
}
//printf("%llu",n);
}
//printf("%llu",n);
printf("\n");
}
void printUWc(UltraWord& u){
unsigned long long int blocks[UltraWord::BLOCK_SIZE];
unsigned long long int *a = u.getBlocks();
unsigned long long int mask8 = (unsigned long long int)0xFF<<56;
int i;
int j;
for(i=0;i<UltraWord::NUM_BLOCKS;i++){
blocks[i] = a[i];
}
for(i=0;i<UltraWord::NUM_BLOCKS;i++){
for(j=0;j<(UltraWord::BLOCK_SIZE/8);j++){
printf("%c",(int)(blocks[i]>>56));
//printf("i: %d j: %d \n",i,j);
//printlongbits(blocks[i]);
blocks[i] = blocks[i]<<8;
}
}
std::cout<< std::endl;
}
std::list<int> uwbmh(std::string text, std::string pat){
std::list<int> res;
int cs = 8; //char size in bits
int cn = 8; //number of chars to pack per int
int i = 0; //charcounter
int j = 0; //int counter
int strlen = text.size();
int patlen = pat.size();
UltraWord t; //text
UltraWord p; //pattern
//pack first UW
unsigned long long int tempblocks[64]={0};
unsigned long long int temp;
int shift = 0;
//tempblocks[0] = 0;
while(i<strlen & j<UltraWord::NUM_BLOCKS){
temp = text.at(i);
shift = cn*cs - ((i%cn)+1)*cs;
tempblocks[j] = tempblocks[j] | (temp<<shift);
if((i+1)%cn == 0){
j++;
//tempblocks[j] = 0;
}
i++;
}
std::cout << "i after packing" << i << " \n";
t.setBlocks(tempblocks);
//pack pattern into UW. pattern should be shorter than 512 chars
unsigned long long int tempblocks2[64]={0};
int k=0; j=0;
while(k<patlen){
temp = pat.at(k);
shift = cn*cs - ((k%cn)+1)*cs;
std::cout<< "shift: " << shift << "\n";
tempblocks2[j] = tempblocks2[j] | (temp<<shift);
if((k+1)%cn == 0){
j++;
//tempblocks[j] = 0;
}
k++;
}
p.setBlocks(tempblocks2);
printUWc(t);
printUWc(p);
//UW window mask
UltraWord wmask;
UltraWord one;
wmask=1;
one =1;
for(j=0;j<(patlen*8)-1;j++){
wmask = (wmask<<1)|one;
}
wmask = wmask<<(UltraWord::WORD_SIZE-(patlen*8));
UltraWord testequal;
int shcount = strlen - patlen; //number of shifts needed to cover all windows
int rotcount = strlen - (UltraWord::WORD_SIZE/8); // number of rotations needed to add whole text to UW.
int count = 0; // number of shifts so far
std::cout << "shcount" << shcount << " \n";
std::cout << "rotcount" << rotcount << " \n";
bool finished = false;
UltraWord rot;
while(!finished){
//std::cout<<"printingyay! \n";
//printUWc(t);
testequal = t&wmask;
testequal = testequal-p;
if(testequal.iszeros()){
//match
res.push_back(count);
}
if(count<shcount){
t = t<<8;
if(count<rotcount){
rot = text.at(i);
t = t|rot;
}
}else{
finished = true;
}
i++;
count++;
}
return res;
}
void printResults(const std::list<int>& s){
std::cout<< "found pattern at: ";
std::list<int>::const_iterator i;
for(i=s.begin();i!=s.end();++i){
std::cout<<*i << " ";
}
std::cout<< "\n";
}
int main(){
std::ifstream infile {"lidata10.txt"};
std::string fst{std::istreambuf_iterator<char>(infile),std::istreambuf_iterator<char>()};
std::transform(fst.begin(),fst.end(),fst.begin(),::tolower);
std::string pattern = "vestibulum";
printResults(uwbmh(fst,pattern));
return 0;
}
| [
"cmperezg@DESKTOP-8VM9T77.localdomain"
] | cmperezg@DESKTOP-8VM9T77.localdomain |
c3321eef813a90b9a3521c618524cfe31a7485f8 | 71c1c86b30c1518e21728f7d5e0f09b5e602baac | /Algo_Engine/Bullseye/main.cpp | 1f9e4145f8298d2572c99fe45f5a226253d3a8bb | [] | no_license | ssh352/ronin | 3ddf360fec5f106015c6902b5107aedefe934836 | 33301b6c5e68fa9d02c7d54bc86f6b7732985fc2 | refs/heads/master | 2023-05-03T11:00:39.368460 | 2021-05-17T18:41:08 | 2021-05-17T18:41:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,700 | cpp | // ACE
#include <ace/Get_Opt.h>
// Application
#include "Application_Reactor_Thread_Pool.hpp"
#include "../ROM_Handler/Connection_Manager.hpp"
#include <ROM_Handler/Session_Control_Strategy.hpp>
#include <ROM_Handler/Session.hpp>
#include "Configurator/configuration.h"
#include <decision_engine/algo_manager.hpp>
#include <market_data/wombat_market_data_source.hpp>
#include <libdarthttp/http_server_singleton.hpp>
#include <Market_Data/Generic_DLL_Market_Data_Source.hpp>
#include "DART_Log.hpp"
#include "Decision_Engine/Volume_Profile_Data_Source.hpp"
// TODO: Excise as many platform specific dependencies
// as possible, use ACE as the platform.
// Platform SDK
#include <windows.h> // GetPrivateProfileIntA
// CRT
#include <ctime> // time_t, time (), gmtime (), strftime ()
#include <io.h> // _access
// Standard C++
#include <fstream> // std::ofstream
#include <string> // std::string
#include <iostream>
void app_invalid_param_handler(const wchar_t *expression,
const wchar_t *function,
const wchar_t *file,
unsigned int line,
uintptr_t /*reserved*/)
{
if (expression&&function&&file)
{
wchar_t widebuffer[128];
memset(widebuffer,
0,
sizeof(widebuffer));
swprintf(widebuffer,
sizeof(widebuffer)/sizeof(wchar_t),
L"%s:%d %s:%s",
file,
line,
function,
expression);
char narrowbuffer[128];
memset(narrowbuffer,
0,
sizeof(narrowbuffer));
wcstombs(narrowbuffer,
widebuffer,
sizeof(narrowbuffer));
ACE_DEBUG((LM_DEBUG,
"Invalid parameter handler invocation: %s\n",
narrowbuffer));
}
else
ACE_DEBUG((LM_DEBUG,"Invalid parameter handler invocation\n"));
}
int init_volume_profile_data() {
// Configure the volume profile data source for the VWAP algorithm
const std::string vwap_profile_dir
(CONFIGURATION::instance()->get("VWAP","VolumeProfileDirectory"));
if (vwap_profile_dir.empty()) {
DART_CRITICAL("No [VWAP]VolumeProfileDirectory INI section found\n");
return -1;
}
if (VOLUME_PROFILE_DATA_SOURCE::instance()->init
(vwap_profile_dir.c_str())==-1) {
DART_CRITICAL
("Volume profile directory (%s) doesn't exist or is not accessible\n",
vwap_profile_dir.c_str());
return -1;
}
return 0;
}
int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
HANDLE named_mutex=NULL;
named_mutex=CreateMutex(NULL,TRUE,"Global\\Bullseye");
if (named_mutex==NULL || GetLastError()==ERROR_ALREADY_EXISTS)
{
DART_CRITICAL ("Another instance of Bullseye.exe is running\n");
return 1;
}
std::string log_file_name ("bullseye");
// Set the ACE logger to use our own logger
// Create a filename based on the date:
const time_t now (time (0));
const tm *ptm = gmtime (&now);
if (ptm)
{
char time_str [64];
memset (time_str, 0, sizeof (time_str));
if (strftime (time_str, sizeof (time_str), "%Y%m%d", ptm) > 0)
{
log_file_name += '-';
log_file_name += time_str;
log_file_name += ".log";
}
}
ACE_OSTREAM_TYPE *output = new std::ofstream
(log_file_name.c_str (), std::ios::out | std::ios::app);
ACE_LOG_MSG->msg_ostream (output, true);
ACE_LOG_MSG->set_flags (ACE_Log_Msg::OSTREAM);
DART_INFO ("Bullseye v0.0.0.2 starting up\n");
// Log command line
std::string commandline(argv[0]);
for (int i=1; i<argc; ++i)
{
commandline += ' ';
commandline += argv [i];
}
DART_INFO("Command line: %s\n", commandline.c_str());
// Setup our invalid parameter handler.
_set_invalid_parameter_handler(app_invalid_param_handler);
ACE_Get_Opt opt (argc, argv, "f:t:");
const char *configfile = 0;
size_t thread_count=4;
for (int c; (c = opt ()) != -1;)
{
if (c == 'f')
configfile = opt.opt_arg ();
else if (c == 't')
thread_count=ACE_OS::atoi(opt.opt_arg());
}
if (thread_count==0)
ACE_ERROR_RETURN((LM_ERROR, "Illegal thread count\n"), 1);
if (!configfile) {
ACE_DEBUG ((LM_DEBUG, "usage: Bullseye config-file\n"));
return 1;
}
// Get port from configuration file
if (_access (configfile, 0) == -1) {
ACE_DEBUG ((LM_DEBUG, "Cannot access configfile %s\n", configfile));
return 1;
}
CONFIGURATION::instance()->filename(configfile);
if (init_volume_profile_data()!=0)
return 1;
UINT port = atoi(CONFIGURATION::instance()->get("Bullseye", "ServerPort").c_str());
if (port == 0) {
ACE_DEBUG ((LM_DEBUG,
"Cannot find ServerPort key in the Bullseye section of %s\n",
configfile));
return 1;
}
#ifdef HTTP_INTERFACE
// Startup the HTTP interface
try
{
HTTP_SERVER::instance()->init();
HTTP_SERVER::instance()->start();
}
catch (const std::exception &e)
{
std::cerr
<< "HTTP server initialization/start failed: "
<< e.what() << std::endl;
}
#endif // HTTP_INTERFACE
const std::string configsection
(CONFIGURATION::instance()->get("MarketData","Section"));
const std::string dll
(CONFIGURATION::instance()->get("MarketData","Dll"));
if (!dll.empty()
&& dart::GENERIC_MD_SOURCE::instance()->open
(dll.c_str(), configfile, configsection.c_str())==-1)
{
ACE_ERROR_RETURN((LM_ERROR,"Error opening market data source\n"),1);
}
/*
* Setup the reactor model for our application. The application architecture
* is designed for a pool of threads servicing a single reactor. The single
* reactor is set as the default singleton reactor instance for convenience,
* there is no need to pass around reactor references when setting up tasks.
* The multiple threads give concurrency to the application. The exact number
* of threads used for the reactor can be configured at application startup
* or dynamically determined based on the hardware the application is being
* run on.
*/
Application_Reactor_Thread_Pool thread_pool;
Connection_Manager *conn_mgr = CONNECTION_MANAGER::instance ();
if (conn_mgr->open () == -1)
ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("mgr.open")), 1);
// TODO: Eventually we might want to get this from the Session_Registrar, we
// could allow the Session_Registrar to make decisions about how to find
// files, etc.
Session *market_dest_session = new Session(new Client_Session_Control_Strategy);
Logon_Credentials credentials;
credentials.username = CONFIGURATION::instance()->get("Bullseye", "ClientUsername");
credentials.password = CONFIGURATION::instance()->get("Bullseye", "ClientPassword");
market_dest_session->logon_credentials(credentials);
const std::string dest
(CONFIGURATION::instance()->get ("Bullseye","OutboundHost"));
if (dest.empty())
{
DART_CRITICAL ("No outbound ROM host specified in configuration\n");
return 1;
}
const std::string destport
(CONFIGURATION::instance()->get("Bullseye","OutboundPort"));
if (destport.empty())
{
DART_CRITICAL ("No outbound ROM port specified in configuration\n");
return 1;
}
int destportnum (ACE_OS::atoi (destport.c_str()));
if (destportnum==0 || destportnum > std::numeric_limits<u_short>::max())
{
DART_CRITICAL ("Invalid outbound ROM port '%s'\n",destport.c_str());
return 1;
}
if (!conn_mgr->destination
(ACE_INET_Addr(static_cast <u_short> (destportnum), dest.c_str()),
market_dest_session))
ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("Unable to add destination\n")), 1);
// Make sure the ALGO_MANAGER Singleton is initialized
dart::Algo_Manager *algoman = dart::ALGO_MANAGER::instance();
if (algoman->open() != 0)
ACE_ERROR_RETURN((LM_ERROR,
ACE_TEXT("(%t) %s: algo_manager open failed"),
ACE_TEXT(__FUNCTION__)), -1);
algoman->set_market_data_source(dart::GENERIC_MD_SOURCE::instance());
algoman->outbound_connection(market_dest_session);
DART_DEBUG ("Spawning %d threads\n",thread_count);
if (thread_pool.activate (THR_NEW_LWP | THR_JOINABLE, thread_count) == -1)
ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("activate")), 1);
ACE_Thread_Manager::instance ()->wait ();
return 0;
}
void Session::logon_credentials(const Logon_Credentials &logon_credentials)
{
this->logon_credentials_ = logon_credentials;
}
| [
"pflynn@sumocap.com"
] | pflynn@sumocap.com |
8390fe956a8c94b49389c29ee4d9bddec91296d9 | 3008e91f81f419781def2693378af8831cac1cda | /src/bench/ecdsa.cpp | 5c2722e44893cc0c581e8b5e7d949a3ebb11f4aa | [
"MIT"
] | permissive | ZenyattaAbosom/Abosom | 475fa03038117ca94b33c246af09c57c81154ea8 | 9ffa021e92e7c6136c63a4bba0af0a1284a70d98 | refs/heads/master | 2020-12-26T08:33:45.868521 | 2020-08-16T13:46:25 | 2020-08-16T13:46:25 | 237,447,993 | 2 | 2 | MIT | 2020-06-29T16:40:26 | 2020-01-31T14:35:56 | C++ | UTF-8 | C++ | false | false | 2,034 | cpp | // Copyright (c) 2018 The Abosom Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bench.h"
#include "key.h"
static void ECDSASign(benchmark::State& state)
{
std::vector<CKey> keys;
std::vector<uint256> hashes;
for (size_t i = 0; i < 100; i++) {
CKey k;
k.MakeNewKey(false);
keys.emplace_back(k);
hashes.emplace_back(::SerializeHash((int)i));
}
// Benchmark.
size_t i = 0;
while (state.KeepRunning()) {
std::vector<unsigned char> sig;
keys[i].Sign(hashes[i], sig);
i = (i + 1) % keys.size();
}
}
static void ECDSAVerify(benchmark::State& state)
{
std::vector<CPubKey> keys;
std::vector<uint256> hashes;
std::vector<std::vector<unsigned char>> sigs;
for (size_t i = 0; i < 100; i++) {
CKey k;
k.MakeNewKey(false);
keys.emplace_back(k.GetPubKey());
hashes.emplace_back(::SerializeHash((int)i));
std::vector<unsigned char> sig;
k.Sign(hashes[i], sig);
sigs.emplace_back(sig);
}
// Benchmark.
size_t i = 0;
while (state.KeepRunning()) {
keys[i].Verify(hashes[i], sigs[i]);
i = (i + 1) % keys.size();
}
}
static void ECDSAVerify_LargeBlock(benchmark::State& state)
{
std::vector<CPubKey> keys;
std::vector<uint256> hashes;
std::vector<std::vector<unsigned char>> sigs;
for (size_t i = 0; i < 1000; i++) {
CKey k;
k.MakeNewKey(false);
keys.emplace_back(k.GetPubKey());
hashes.emplace_back(::SerializeHash((int)i));
std::vector<unsigned char> sig;
k.Sign(hashes[i], sig);
sigs.emplace_back(sig);
}
// Benchmark.
while (state.KeepRunning()) {
for (size_t i = 0; i < keys.size(); i++) {
keys[i].Verify(hashes[i], sigs[i]);
}
}
}
BENCHMARK(ECDSASign)
BENCHMARK(ECDSAVerify)
BENCHMARK(ECDSAVerify_LargeBlock)
| [
"60512811+ZenyattaAbosom@users.noreply.github.com"
] | 60512811+ZenyattaAbosom@users.noreply.github.com |
8efd143cef01cd09ee1f2f42970c1baffbec0a03 | 45679fd220f9a696d82703fe4d6b6e999953090e | /examples/SMTP/Send_Access_Token/Send_Access_Token.ino | 5083c31b515802bbf1fd6eb3fe6f2b49fb3663db | [
"MIT",
"LicenseRef-scancode-other-permissive"
] | permissive | RoSchmi/ESP-Mail-Client | cc57211cbdd143f68fd605010baf9d2e07d9a4b2 | 74a4824a9b5f0436212c1913e1d7b6adda201f6f | refs/heads/master | 2023-08-25T11:17:28.306010 | 2021-11-10T22:24:59 | 2021-11-10T22:24:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,232 | ino |
/**
*This example will log in with the SASL XOAUTH2 mechanisme using OAuth2.0 access token.
*
* Created by K. Suwatchai (Mobizt)
*
* Email: suwatchai@outlook.com
*
* Github: https://github.com/mobizt/ESP-Mail-Client
*
* Copyright (c) 2021 mobizt
*
*/
//To use send Email for Gmail to port 465 (SSL), less secure app option should be enabled. https://myaccount.google.com/lesssecureapps?pli=1
#include <Arduino.h>
#if defined(ESP32)
#include <WiFi.h>
#elif defined(ESP8266)
#include <ESP8266WiFi.h>
#endif
#include <ESP_Mail_Client.h>
//To use only SMTP functions, you can exclude the IMAP from compilation, see ESP_Mail_FS.h.
#define WIFI_SSID "<ssid>"
#define WIFI_PASSWORD "<password>"
#define SMTP_HOST "<host>"
/** The smtp port e.g.
* 25 or esp_mail_smtp_port_25
* 465 or esp_mail_smtp_port_465
* 587 or esp_mail_smtp_port_587
*/
#define SMTP_PORT 25
/* The user Email for OAuth2.0 access token */
#define AUTHOR_EMAIL "<email>"
/** The OAuth2.0 access token
* The generation, exchange and refresh of the access token are not available
* in this library.
*
* To test this using GMail, get the OAuth2.0 access token from this web site
* https://developers.google.com/oauthplayground/
*
* You can use the ESP Signer library to generate OAuth2.0 access token
* The library is available here https://github.com/mobizt/ESP-Signer
*
* 1. Select the following scope (in Step 1) from Gmail API V1
* https://mail.google.com/
* https://mail.google.com/
*
* 2. Click Authorize APIs button.
* 3. Cick Exchangeauthorization code for tokens.
* 4. From the response, look at access_token from the JSON payload node.
* 5. Copy that access token and paste to the AUTHOR_ACCESS_TOKEN value.
*
* The token will be expired in 3600 seconds (1 Hr).
* The AUTHOR_EMAIL above is the Email address that you granted to access the Gmail services.
*/
#define AUTHOR_ACCESS_TOKEN "<access token>"
/* The SMTP Session object used for Email sending */
SMTPSession smtp;
/* Callback function to get the Email sending status */
void smtpCallback(SMTP_Status status);
void setup()
{
Serial.begin(115200);
#if defined(ARDUINO_ARCH_SAMD)
while (!Serial)
;
Serial.println();
Serial.println("**** Custom built WiFiNINA firmware need to be installed.****\nTo install firmware, read the instruction here, https://github.com/mobizt/ESP-Mail-Client#install-custom-built-wifinina-firmware");
#endif
Serial.println();
Serial.print("Connecting to AP");
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
while (WiFi.status() != WL_CONNECTED)
{
Serial.print(".");
delay(200);
}
Serial.println("");
Serial.println("WiFi connected.");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
Serial.println();
/** Enable the debug via Serial port
* none debug or 0
* basic debug or 1
*
* Debug port can be changed via ESP_MAIL_DEFAULT_DEBUG_PORT in ESP_Mail_FS.h
*/
smtp.debug(1);
/* Set the callback function to get the sending results */
smtp.callback(smtpCallback);
/* Declare the session config data */
ESP_Mail_Session session;
/* Set the session config */
session.server.host_name = SMTP_HOST;
session.server.port = SMTP_PORT;
session.login.email = AUTHOR_EMAIL;
session.login.accessToken = AUTHOR_ACCESS_TOKEN;
session.login.user_domain = "mydomain.net";
/* Declare the message class */
SMTP_Message message;
/* Set the message headers */
message.sender.name = "ESP Mail";
message.sender.email = AUTHOR_EMAIL;
message.subject = "Test sending Email using Access token";
message.addRecipient("Admin", "change_this@your_mail_dot_com");
message.text.content = "This is simple plain text message";
/** The Plain text message character set e.g.
* us-ascii
* utf-8
* utf-7
* The default value is utf-8
*/
message.text.charSet = "us-ascii";
/** The content transfer encoding e.g.
* enc_7bit or "7bit" (not encoded)
* enc_qp or "quoted-printable" (encoded)
* enc_base64 or "base64" (encoded)
* enc_binary or "binary" (not encoded)
* enc_8bit or "8bit" (not encoded)
* The default value is "7bit"
*/
message.text.transfer_encoding = Content_Transfer_Encoding::enc_7bit;
/** The message priority
* esp_mail_smtp_priority_high or 1
* esp_mail_smtp_priority_normal or 3
* esp_mail_smtp_priority_low or 5
* The default value is esp_mail_smtp_priority_low
*/
message.priority = esp_mail_smtp_priority::esp_mail_smtp_priority_low;
/** The Delivery Status Notifications e.g.
* esp_mail_smtp_notify_never
* esp_mail_smtp_notify_success
* esp_mail_smtp_notify_failure
* esp_mail_smtp_notify_delay
* The default value is esp_mail_smtp_notify_never
*/
//message.response.notify = esp_mail_smtp_notify_success | esp_mail_smtp_notify_failure | esp_mail_smtp_notify_delay;
/* Connect to server with the session config */
if (!smtp.connect(&session))
return;
/* Set the custom message header */
message.addHeader("Message-ID: <abcde.fghij@gmail.com>");
/* Start sending Email and close the session */
if (!MailClient.sendMail(&smtp, &message))
Serial.println("Error sending Email, " + smtp.errorReason());
//to clear sending result log
//smtp.sendingResult.clear();
ESP_MAIL_PRINTF("Free Heap: %d\n", MailClient.getFreeHeap());
}
void loop()
{
}
/* Callback function to get the Email sending status */
void smtpCallback(SMTP_Status status)
{
/* Print the current status */
Serial.println(status.info());
/* Print the sending result */
if (status.success())
{
Serial.println("----------------");
ESP_MAIL_PRINTF("Message sent success: %d\n", status.completedCount());
ESP_MAIL_PRINTF("Message sent failled: %d\n", status.failedCount());
Serial.println("----------------\n");
struct tm dt;
for (size_t i = 0; i < smtp.sendingResult.size(); i++)
{
/* Get the result item */
SMTP_Result result = smtp.sendingResult.getItem(i);
time_t ts = (time_t)result.timestamp;
localtime_r(&ts, &dt);
ESP_MAIL_PRINTF("Message No: %d\n", i + 1);
ESP_MAIL_PRINTF("Status: %s\n", result.completed ? "success" : "failed");
ESP_MAIL_PRINTF("Date/Time: %d/%d/%d %d:%d:%d\n", dt.tm_year + 1900, dt.tm_mon + 1, dt.tm_mday, dt.tm_hour, dt.tm_min, dt.tm_sec);
ESP_MAIL_PRINTF("Recipient: %s\n", result.recipients);
ESP_MAIL_PRINTF("Subject: %s\n", result.subject);
}
Serial.println("----------------\n");
//You need to clear sending result as the memory usage will grow up as it keeps the status, timstamp and
//pointer to const char of recipients and subject that user assigned to the SMTP_Message object.
//Because of pointer to const char that stores instead of dynamic string, the subject and recipients value can be
//a garbage string (pointer points to undefind location) as SMTP_Message was declared as local variable or the value changed.
//smtp.sendingResult.clear();
}
}
| [
"k_suwatchai@hotmail.com"
] | k_suwatchai@hotmail.com |
cfffd905fa157c33f9c74349f97b2c5be9313841 | 2953124cc090a3fb1d67111895d092992b2f496e | /8_1_2/Article.cpp | fb13ec5ac671a055a07a34a6b460d4fd46a10cb6 | [] | no_license | LukasH-1849700/OGP_Oef | eaf5b99f4e6ced4d496f711e487f66b27d420fba | fb4dc65a2b148b2101c316b75588141262ea7292 | refs/heads/master | 2022-04-14T16:34:12.665206 | 2020-03-10T09:52:49 | 2020-03-10T09:52:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 453 | cpp | #include "Article.h"
#include <string>
#include <iostream>
Article::Article(const std::string& name, const double& price) : m_name{name}, m_price{price}
{}
void Article::print() const
{
std::cout << "\nName: " << m_name
<< "\nPrice: " << m_price
<< '\n';
}
std::string Article::get_name() const
{
return m_name;
}
double Article::get_price() const
{
return m_price;
}
void Article::set_price(const double& price)
{
m_price = price;
}
| [
"lukas.hotterbeekx@student.uhasselt.be"
] | lukas.hotterbeekx@student.uhasselt.be |
7f8422018c9c462bb8bb7f4235c1558a71176811 | 8583b5bfc594b994f51d24d012e92ae66bf2e5ea | /src/BabylonCpp/src/meshes/builders/tiled_box_builder.cpp | d3542b2042b2a198663a71dcb9f3b33a69987296 | [
"LicenseRef-scancode-free-unknown",
"Apache-2.0"
] | permissive | samdauwe/BabylonCpp | 84b8e51b59f04a847681a97fa6fe0a5c554e9e1f | 3dad13a666299cbcf2e2db5b24575c19743e1000 | refs/heads/master | 2022-01-09T02:49:55.057544 | 2022-01-02T19:27:12 | 2022-01-02T19:27:12 | 77,682,359 | 309 | 41 | Apache-2.0 | 2020-11-06T12:16:17 | 2016-12-30T11:29:05 | C++ | UTF-8 | C++ | false | false | 732 | cpp | #include <babylon/meshes/builders/tiled_box_builder.h>
#include <babylon/meshes/builders/mesh_builder_options.h>
#include <babylon/meshes/mesh.h>
#include <babylon/meshes/vertex_data.h>
namespace BABYLON {
MeshPtr TiledBoxBuilder::CreateTiledBox(const std::string& name, TiledBoxOptions& options,
Scene* scene)
{
const auto box = Mesh::New(name, scene);
options.sideOrientation = Mesh::_GetDefaultSideOrientation(options.sideOrientation);
box->_originalBuilderSideOrientation = *options.sideOrientation;
const auto vertexData = VertexData::CreateTiledBox(options);
vertexData->applyToMesh(*box, options.updatable);
return box;
}
} // end of namespace BABYLON
| [
"sam.dauwe@gmail.com"
] | sam.dauwe@gmail.com |
7b8b06c232fed805d0f7d92624408434b7777dfe | 1f87e5c08045479291b91770a2b2370c0db97112 | /Src/AutoGenerated/GPUPerfAPICounterGenerator/PublicCounterDefsCLGfx8_Fiji.cpp | ac8ff80adac44df1785835926b46b16c81f6ef11 | [
"MIT"
] | permissive | mstroehle/gpu_performance_api | 08a92ec9023cb84614fd46ff0217ba01f46a11e1 | a8a04214dea25d57bfe7caa1577e02c6940e73c2 | refs/heads/master | 2021-03-27T02:43:06.448132 | 2019-12-13T22:37:23 | 2019-12-13T22:47:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,042 | cpp | //==============================================================================
// Copyright (c) 2010-2019 Advanced Micro Devices, Inc. All rights reserved.
/// \author AMD Developer Tools Team
/// \file
/// \brief PublicCounterDefinitions for CLGFX8_FIJI
//==============================================================================
#include "GPACounter.h"
#include "PublicCounterDefsCLGfx8_Fiji.h"
// *** Note, this is an auto-generated file. Do not edit. Execute PublicCounterCompiler to rebuild.
#include "GPAHWCounterGfx8_Fiji.h"
namespace CLGfx8_Fiji
{
bool UpdatePublicAsicSpecificCounters(GDT_HW_GENERATION desiredGeneration, GDT_HW_ASIC_TYPE asicType, GPA_DerivedCounters& c)
{
UNREFERENCED_PARAMETER(desiredGeneration);
UNREFERENCED_PARAMETER(c); // Unreferenced if there are no ASIC specific block instance registers
if (!CounterGfx8_Fiji::MatchAsic(asicType))
{
return false;
}
CounterGfx8_Fiji::OverrideBlockInstanceCounters(asicType);
return true;
}
} // namespace CLGfx8_Fiji
| [
"christopher.hesik@amd.com"
] | christopher.hesik@amd.com |
faeccff51cf3e007e59d73cc8426f499a2f73471 | b58d9d9b12114fa967db026061cb00facfea26a5 | /catkin_wkspace/devel/include/ex/ex_srvRequest.h | 95c7eafdd2e487a610a42c88b08b684fd366106b | [] | no_license | caseroboticsclub/case-nasa | 95e11a70eb7c22912c48607b627d0e4f65e94c0b | 9dcb94129069a36f3e0bdd590d78a007a4dbaee0 | refs/heads/master | 2016-09-05T16:53:54.696811 | 2015-05-13T20:37:25 | 2015-05-13T20:37:25 | 31,144,175 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,890 | h | // Generated by gencpp from file ex/ex_srvRequest.msg
// DO NOT EDIT!
#ifndef EX_MESSAGE_EX_SRVREQUEST_H
#define EX_MESSAGE_EX_SRVREQUEST_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>
namespace ex
{
template <class ContainerAllocator>
struct ex_srvRequest_
{
typedef ex_srvRequest_<ContainerAllocator> Type;
ex_srvRequest_()
: first(0)
, second(0) {
}
ex_srvRequest_(const ContainerAllocator& _alloc)
: first(0)
, second(0) {
}
typedef int32_t _first_type;
_first_type first;
typedef int32_t _second_type;
_second_type second;
typedef boost::shared_ptr< ::ex::ex_srvRequest_<ContainerAllocator> > Ptr;
typedef boost::shared_ptr< ::ex::ex_srvRequest_<ContainerAllocator> const> ConstPtr;
}; // struct ex_srvRequest_
typedef ::ex::ex_srvRequest_<std::allocator<void> > ex_srvRequest;
typedef boost::shared_ptr< ::ex::ex_srvRequest > ex_srvRequestPtr;
typedef boost::shared_ptr< ::ex::ex_srvRequest const> ex_srvRequestConstPtr;
// constants requiring out of line definition
template<typename ContainerAllocator>
std::ostream& operator<<(std::ostream& s, const ::ex::ex_srvRequest_<ContainerAllocator> & v)
{
ros::message_operations::Printer< ::ex::ex_srvRequest_<ContainerAllocator> >::stream(s, "", v);
return s;
}
} // namespace ex
namespace ros
{
namespace message_traits
{
// BOOLTRAITS {'IsFixedSize': True, 'IsMessage': True, 'HasHeader': False}
// {'std_msgs': ['/opt/ros/indigo/share/std_msgs/cmake/../msg'], 'ex': ['/home/saruman/workspaces/ros_workspace/case_robotics/nasa/catkin_wkspace/src/ex/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< ::ex::ex_srvRequest_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::ex::ex_srvRequest_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::ex::ex_srvRequest_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::ex::ex_srvRequest_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::ex::ex_srvRequest_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct HasHeader< ::ex::ex_srvRequest_<ContainerAllocator> const>
: FalseType
{ };
template<class ContainerAllocator>
struct MD5Sum< ::ex::ex_srvRequest_<ContainerAllocator> >
{
static const char* value()
{
return "05577f62131ad26921bff0de6b2cb722";
}
static const char* value(const ::ex::ex_srvRequest_<ContainerAllocator>&) { return value(); }
static const uint64_t static_value1 = 0x05577f62131ad269ULL;
static const uint64_t static_value2 = 0x21bff0de6b2cb722ULL;
};
template<class ContainerAllocator>
struct DataType< ::ex::ex_srvRequest_<ContainerAllocator> >
{
static const char* value()
{
return "ex/ex_srvRequest";
}
static const char* value(const ::ex::ex_srvRequest_<ContainerAllocator>&) { return value(); }
};
template<class ContainerAllocator>
struct Definition< ::ex::ex_srvRequest_<ContainerAllocator> >
{
static const char* value()
{
return "\n\
int32 first\n\
int32 second\n\
";
}
static const char* value(const ::ex::ex_srvRequest_<ContainerAllocator>&) { return value(); }
};
} // namespace message_traits
} // namespace ros
namespace ros
{
namespace serialization
{
template<class ContainerAllocator> struct Serializer< ::ex::ex_srvRequest_<ContainerAllocator> >
{
template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
{
stream.next(m.first);
stream.next(m.second);
}
ROS_DECLARE_ALLINONE_SERIALIZER;
}; // struct ex_srvRequest_
} // namespace serialization
} // namespace ros
namespace ros
{
namespace message_operations
{
template<class ContainerAllocator>
struct Printer< ::ex::ex_srvRequest_<ContainerAllocator> >
{
template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::ex::ex_srvRequest_<ContainerAllocator>& v)
{
s << indent << "first: ";
Printer<int32_t>::stream(s, indent + " ", v.first);
s << indent << "second: ";
Printer<int32_t>::stream(s, indent + " ", v.second);
}
};
} // namespace message_operations
} // namespace ros
#endif // EX_MESSAGE_EX_SRVREQUEST_H
| [
"rmf61@cas.edu"
] | rmf61@cas.edu |
efb905d6e38153942431159f87a16ff8b544d05a | 1df9106e475d7f1b4de615cb4f8122cc93305b7b | /Engine/SearchHierarchy.cpp | 777be66548676111c0c616303fb993f9a85ae1f9 | [] | no_license | mcferront/anttrap-engine | 54517007911389a347e25542c928a0dd4276b730 | c284f7800becaa973101a14bf0b7ffb0d6b732b4 | refs/heads/master | 2021-06-26T08:48:59.814404 | 2019-02-16T05:37:43 | 2019-02-16T05:37:43 | 148,593,261 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,481 | cpp | #include "EnginePch.h"
#include "SearchHierarchy.h"
#include "Viewport.h"
#include "Renderer.h"
#include "RenderObject.h"
#include "Node.h"
#include "Light.h"
#include "MaterialObject.h"
void FrustumCullRenderModifier::Begin( void )
{
m_TotalRenderables = 0;
m_TotalLights = 0;
m_RenderablesCulled = 0;
m_LightsCulled = 0;
}
void FrustumCullRenderModifier::Process(
RendererDesc *pRendererDesc
)
{
Frustum frustum;
pRendererDesc->viewport.GetCamera( )->GetFrustum( &frustum );
m_Renderables.Clear( );
m_Renderables.CopyFrom( pRendererDesc->renderObjectDescs );
m_Lights.Clear( );
m_Lights.CopyFrom( pRendererDesc->lightDescs );
m_TotalRenderables += m_Renderables.GetSize( );
m_TotalLights += m_Lights.GetSize( );
pRendererDesc->renderObjectDescs.Clear( );
pRendererDesc->lightDescs.Clear( );
for ( uint32 i = 0; i < m_Renderables.GetSize( ); i++ )
{
RenderObjectDesc *pDesc = m_Renderables.GetAt( i );
if ( true == m_Renderables.GetAt( i )->pObject->IsVisible(frustum) )
pRendererDesc->renderObjectDescs.Add( pDesc );
else
++m_RenderablesCulled;
}
for ( uint32 i = 0; i < m_Lights.GetSize( ); i++ )
{
LightDesc *pDesc = m_Lights.GetPointer( i );
if ( true == pDesc->pLight->IsVisible(frustum) )
pRendererDesc->lightDescs.Add( *pDesc );
else
++m_LightsCulled;
}
}
void TransparentSortRenderModifier::Begin( void )
{
}
void TransparentSortRenderModifier::Process(
RendererDesc *pRendererDesc
)
{
m_Renderables.Clear( );
m_Renderables.CopyFrom( pRendererDesc->renderObjectDescs );
pRendererDesc->renderObjectDescs.Clear( );
uint32 i;
for ( i = 0; i < m_Renderables.GetSize( ); i++ )
{
RenderObjectDesc *pDesc = m_Renderables.GetAt( i );
if ( false == pDesc->pMaterial->HasAlpha(pRendererDesc->pPass) )
pRendererDesc->renderObjectDescs.Add( pDesc );
}
uint32 start = pRendererDesc->renderObjectDescs.GetSize( );
uint32 zNewCount = m_Renderables.GetSize( ) - start;
if ( zNewCount > m_ZOldCount )
{
m_ZOldCount = zNewCount;
m_pZOrders = (ZOrder *) realloc( m_pZOrders, zNewCount * sizeof( ZOrder ) );
}
Vector look = pRendererDesc->viewport.GetCamera( )->GetWorldTransform( )->GetLook( );
Vector cam = pRendererDesc->viewport.GetCamera( )->GetWorldTransform( )->GetTranslation( );
int index = 0;
Transform worldTransform;
//Gather up pivot distance from camera
for ( i = 0; i < m_Renderables.GetSize( ); i++ )
{
RenderObjectDesc *pDesc = pRendererDesc->renderObjectDescs.GetAt( i );
if ( true == pDesc->pMaterial->HasAlpha(pRendererDesc->pPass) )
{
pDesc->pObject->GetWorldTransform( &worldTransform );
Vector p = worldTransform.GetTranslation( );
float z = Math::DotProduct( look, p - cam );
ZOrder zOrder = { m_Renderables.GetAt( i ), z };
m_pZOrders[ index++ ] = zOrder;
}
}
//Sort by pivot distance from camera
qsort( m_pZOrders, zNewCount, sizeof( ZOrder ), ZCompare );
//Add sorted back to the end of the render list
for ( i = 0; i < zNewCount; i++ )
pRendererDesc->renderObjectDescs.Add( m_pZOrders[ i ].pObject );
}
int TransparentSortRenderModifier::ZCompare( const void *pA, const void *pB )
{
float d = ( (ZOrder *) pA )->z - ( (ZOrder *) pB )->z;
if ( d < 0 ) return 1;
if ( d > 0 ) return -1;
return 0;
}
| [
"trapper@trapzz.com"
] | trapper@trapzz.com |
b2a1d894a31c2212922660cd77d2ff7d177e584e | 4702ca170053f7ff8d83312f4f71e95b94570cd5 | /src/qt/bitcoinunits.cpp | 8bc7344e44f020805bb8dc1c3d6b027ee9bd44d2 | [
"MIT"
] | permissive | yahwehtech/izzcoin | cb0e79140228a0c9b6d9a748aeeb4dcaa019df73 | dba4cf0dcb64ac432ec506907094d973b83a4371 | refs/heads/master | 2020-03-28T14:21:08.546150 | 2018-12-21T12:25:48 | 2018-12-21T12:25:48 | 148,480,238 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,475 | cpp | // Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bitcoinunits.h"
#include <QStringList>
BitcoinUnits::BitcoinUnits(QObject *parent):
QAbstractListModel(parent),
unitlist(availableUnits())
{
}
QList<BitcoinUnits::Unit> BitcoinUnits::availableUnits()
{
QList<BitcoinUnits::Unit> unitlist;
unitlist.append(BTC);
unitlist.append(mBTC);
unitlist.append(uBTC);
return unitlist;
}
bool BitcoinUnits::valid(int unit)
{
switch(unit)
{
case BTC:
case mBTC:
case uBTC:
return true;
default:
return false;
}
}
QString BitcoinUnits::name(int unit)
{
switch(unit)
{
case BTC: return QString("IZZ");
case mBTC: return QString("mIZZ");
case uBTC: return QString::fromUtf8("μIZZ");
default: return QString("???");
}
}
QString BitcoinUnits::description(int unit)
{
switch(unit)
{
case BTC: return QString("IZZcoins");
case mBTC: return QString("Milli-IZZcoins (1 / 1,000)");
case uBTC: return QString("Micro-IZZcoins (1 / 1,000,000)");
default: return QString("???");
}
}
qint64 BitcoinUnits::factor(int unit)
{
switch(unit)
{
case BTC: return 100000000;
case mBTC: return 100000;
case uBTC: return 100;
default: return 100000000;
}
}
int BitcoinUnits::amountDigits(int unit)
{
switch(unit)
{
case BTC: return 8; // 21,000,000 (# digits, without commas)
case mBTC: return 11; // 21,000,000,000
case uBTC: return 14; // 21,000,000,000,000
default: return 0;
}
}
int BitcoinUnits::decimals(int unit)
{
switch(unit)
{
case BTC: return 8;
case mBTC: return 5;
case uBTC: return 2;
default: return 0;
}
}
QString BitcoinUnits::format(int unit, qint64 n, bool fPlus)
{
// Note: not using straight sprintf here because we do NOT want
// localized number formatting.
if(!valid(unit))
return QString(); // Refuse to format invalid unit
qint64 coin = factor(unit);
int num_decimals = decimals(unit);
qint64 n_abs = (n > 0 ? n : -n);
qint64 quotient = n_abs / coin;
qint64 remainder = n_abs % coin;
QString quotient_str = QString::number(quotient);
QString remainder_str = QString::number(remainder).rightJustified(num_decimals, '0');
// Right-trim excess zeros after the decimal point
int nTrim = 0;
for (int i = remainder_str.size()-1; i>=2 && (remainder_str.at(i) == '0'); --i)
++nTrim;
remainder_str.chop(nTrim);
if (n < 0)
quotient_str.insert(0, '-');
else if (fPlus && n > 0)
quotient_str.insert(0, '+');
return quotient_str + QString(".") + remainder_str;
}
QString BitcoinUnits::formatWithUnit(int unit, qint64 amount, bool plussign)
{
return format(unit, amount, plussign) + QString(" ") + name(unit);
}
bool BitcoinUnits::parse(int unit, const QString &value, qint64 *val_out)
{
if(!valid(unit) || value.isEmpty())
return false; // Refuse to parse invalid unit or empty string
int num_decimals = decimals(unit);
QStringList parts = value.split(".");
if(parts.size() > 2)
{
return false; // More than one dot
}
QString whole = parts[0];
QString decimals;
if(parts.size() > 1)
{
decimals = parts[1];
}
if(decimals.size() > num_decimals)
{
return false; // Exceeds max precision
}
bool ok = false;
QString str = whole + decimals.leftJustified(num_decimals, '0');
if(str.size() > 18)
{
return false; // Longer numbers will exceed 63 bits
}
qint64 retvalue = str.toLongLong(&ok);
if(val_out)
{
*val_out = retvalue;
}
return ok;
}
int BitcoinUnits::rowCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return unitlist.size();
}
QVariant BitcoinUnits::data(const QModelIndex &index, int role) const
{
int row = index.row();
if(row >= 0 && row < unitlist.size())
{
Unit unit = unitlist.at(row);
switch(role)
{
case Qt::EditRole:
case Qt::DisplayRole:
return QVariant(name(unit));
case Qt::ToolTipRole:
return QVariant(description(unit));
case UnitRole:
return QVariant(static_cast<int>(unit));
}
}
return QVariant();
}
| [
"mahesh@blockaitech.com"
] | mahesh@blockaitech.com |
3503edc017d16e319e0f78360bfcd197858aa65b | 0308a5a93cc425e35359a2c59ec677c585235a61 | /1-N string/server.cpp | 9409c918f9a6c522b877cc52cbdf6973a034782a | [] | no_license | ppzhenghua/TCP | 791d12c831f48f529b47c4766c6ee6488876dfd2 | 3da2ea38458d529fee69bf5e0033060ade1bd5ab | refs/heads/master | 2020-03-19T14:28:26.763799 | 2018-06-08T15:01:18 | 2018-06-08T15:01:18 | 136,624,461 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,306 | cpp | //
// try.cpp
// server
//
// Created by ppdfour on 2018/6/7.
// Copyright © 2018年 ppdfour. All rights reserved.
//
#include <cstring>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define SERVER_PORT 11332
#define BUFFER_SIZE 1024
#define FILE_NAME_MAX_SIZE 512
int main(void)
{
// 声明并初始化一个服务器端的socket地址结构
struct sockaddr_in server_addr;
server_addr.sin_len = sizeof(struct sockaddr_in);
server_addr.sin_family = AF_INET; //Address families AF_INET互联网地址簇
server_addr.sin_port = htons(SERVER_PORT); //主机字节序转网络字节序
server_addr.sin_addr.s_addr = inet_addr("127.0.0.1"); //10进制ip换成长整型
bzero(&(server_addr.sin_zero),8); //前8个字节置为0
//创建socket
int server_socket = socket(AF_INET, SOCK_STREAM, 0); //soket返回一个新创建的soket的描述符
if (server_socket == -1) {
perror("socket error");
return 1;
}
// int opt = 1;
// setsockopt(server_socket_fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
//绑定socket:将创建的socket绑定到本地的IP地址和端口,此socket是半相关的,只是负责侦听客户端的连接请求,并不能用于和客户端通信
int bind_result = bind(server_socket, (struct sockaddr *)&server_addr, sizeof(server_addr));
if (bind_result == -1) {
perror("bind error");
return 1;
}
// socket监听listen
if (listen(server_socket, 5) == -1) { //等待链接队列的最大长度
perror("listen error");
return 1;
}
while(1)
{
// 定义客户端的socket地址结构
struct sockaddr_in client_addr;
socklen_t client_addr_length = sizeof(client_addr);
// 接受连接请求,返回一个新的socket(描述符),这个新socket用于同连接的客户端通信
// accept函数会把连接到的客户端信息写到client_addr中
int new_server_socket_fd = accept(server_socket, (struct sockaddr*)&client_addr, &client_addr_length);
if(new_server_socket_fd < 0)
{
perror("Server Accept Failed:");
break;
}
// recv函数接收数据到缓冲区buffer中,返回值是从客户端接口copy到缓冲区的字节数
char buffer[BUFFER_SIZE];
bzero(buffer, BUFFER_SIZE);
if(recv(new_server_socket_fd, buffer, BUFFER_SIZE, 0) < 0)
{
perror("Server Recieve Data Failed:");
break;
}
// 将文件从buffer拷贝到file_name中
char file_name[FILE_NAME_MAX_SIZE+1];
bzero(file_name, FILE_NAME_MAX_SIZE+1);
strncpy(file_name, buffer, strlen(buffer)>FILE_NAME_MAX_SIZE?FILE_NAME_MAX_SIZE:strlen(buffer));
printf("%s\n", file_name);
// 打开文件并读取文件数据
char path[100]="/Users/ppdfour/ppstudy/计算机网络/homework/课设/server file/server file/server file/";
FILE *fp = fopen(strcat(path, file_name), "r");
if(NULL == fp)
{
printf("File:%s Not Found\n", file_name);
}
else
{
bzero(buffer, BUFFER_SIZE);
long int length = 0;
// 每读取一段数据,便将其发送给客户端,循环直到文件读完为止
while((length = fread(buffer, sizeof(char), BUFFER_SIZE, fp)) > 0)
{
if(send(new_server_socket_fd, buffer, length, 0) < 0)
{
printf("Send File:%s Failed./n", file_name);
break;
}
bzero(buffer, BUFFER_SIZE);
}
// 关闭文件
fclose(fp);
printf("File:%s Transfer Successful!\n", file_name);
}
// 关闭与客户端的连接
close(new_server_socket_fd);
}
// 关闭监听用的socket
close(server_socket);
return 0;
}
| [
"noreply@github.com"
] | ppzhenghua.noreply@github.com |
6679c54956504df35cdd70947060540e0c32b512 | 4a544d6903abc37953e77235395baa64115cf144 | /libcamera/SecCameraHWInterface.cpp | 322753961287cc36a4d18c3e8806bc8959d0db8c | [
"Apache-2.0"
] | permissive | randomstuffpaul/insignal_hardware_samsung_slsi_exynos4 | d5068cdaf29f0eeb5638e6150ae4e50575ad0b67 | 9f576f58e54df58fdcb17501246671f64236bf6f | refs/heads/exynos-ics | 2021-01-18T03:16:29.772870 | 2012-12-12T02:20:13 | 2012-12-12T02:20:18 | 85,834,830 | 0 | 0 | null | 2017-03-22T14:03:58 | 2017-03-22T14:03:57 | null | UTF-8 | C++ | false | false | 116,979 | cpp | /*
**
** Copyright 2008, The Android Open Source Project
** Copyright 2010, Samsung Electronics Co. LTD
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
//#define LOG_NDEBUG 0
#define LOG_TAG "CameraHardwareSec"
#include <utils/Log.h>
#include "SecCameraHWInterface.h"
#include <utils/threads.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <camera/Camera.h>
#include <media/stagefright/MetadataBufferType.h>
#define VIDEO_COMMENT_MARKER_H 0xFFBE
#define VIDEO_COMMENT_MARKER_L 0xFFBF
#define VIDEO_COMMENT_MARKER_LENGTH 4
#define JPEG_EOI_MARKER 0xFFD9
#define HIBYTE(x) (((x) >> 8) & 0xFF)
#define LOBYTE(x) ((x) & 0xFF)
#define BACK_CAMERA_AUTO_FOCUS_DISTANCES_STR "0.10,1.20,Infinity"
#define BACK_CAMERA_MACRO_FOCUS_DISTANCES_STR "0.10,0.20,Infinity"
#define BACK_CAMERA_INFINITY_FOCUS_DISTANCES_STR "0.10,1.20,Infinity"
#define FRONT_CAMERA_FOCUS_DISTANCES_STR "0.20,0.25,Infinity"
//#define USE_EGL
// This hack does two things:
// -- it sets preview to NV21 (YUV420SP)
// -- it sets gralloc to YV12
//
// The reason being: the samsung encoder understands only yuv420sp, and gralloc
// does yv12 and rgb565. So what we do is we break up the interleaved UV in
// separate V and U planes, which makes preview look good, and enabled the
// encoder as well.
//
// FIXME: Samsung needs to enable support for proper yv12 coming out of the
// camera, and to fix their video encoder to work with yv12.
// FIXME: It also seems like either Samsung's YUV420SP (NV21) or img's YV12 has
// the color planes switched. We need to figure which side is doing it
// wrong and have the respective party fix it.
namespace android {
struct addrs {
uint32_t type; // make sure that this is 4 byte.
unsigned int addr_y;
unsigned int addr_cbcr;
unsigned int buf_index;
unsigned int reserved;
};
struct addrs_cap {
unsigned int addr_y;
unsigned int width;
unsigned int height;
};
static const int INITIAL_SKIP_FRAME = 3;
static const int EFFECT_SKIP_FRAME = 1;
gralloc_module_t const* CameraHardwareSec::mGrallocHal;
CameraHardwareSec::CameraHardwareSec(int cameraId, camera_device_t *dev)
:
mCaptureInProgress(false),
mParameters(),
mFrameSizeDelta(0),
mCameraSensorName(NULL),
mUseInternalISP(false),
mSkipFrame(0),
mNotifyCb(0),
mDataCb(0),
mDataCbTimestamp(0),
mCallbackCookie(0),
mMsgEnabled(CAMERA_MSG_RAW_IMAGE),
mRecordRunning(false),
mPostViewWidth(0),
mPostViewHeight(0),
mPostViewSize(0),
mCapIndex(0),
mRecordHint(false),
mTouched(0),
mHalDevice(dev)
{
LOGV("%s :", __func__);
memset(&mCapBuffer, 0, sizeof(struct SecBuffer));
int ret = 0;
mPreviewWindow = NULL;
mSecCamera = SecCamera::createInstance();
mRawHeap = NULL;
mPreviewHeap = NULL;
for(int i = 0; i < BUFFER_COUNT_FOR_ARRAY; i++)
mRecordHeap[i] = NULL;
if (!mGrallocHal) {
ret = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, (const hw_module_t **)&mGrallocHal);
if (ret)
LOGE("ERR(%s):Fail on loading gralloc HAL", __func__);
}
ret = mSecCamera->CreateCamera(cameraId);
if (ret < 0) {
LOGE("ERR(%s):Fail on mSecCamera init", __func__);
mSecCamera->DestroyCamera();
}
initDefaultParameters(cameraId);
mExitAutoFocusThread = false;
mExitPreviewThread = false;
/* whether the PreviewThread is active in preview or stopped. we
* create the thread but it is initially in stopped state.
*/
mPreviewRunning = false;
mPreviewStartDeferred = false;
mPreviewThread = new PreviewThread(this);
mAutoFocusThread = new AutoFocusThread(this);
mPictureThread = new PictureThread(this);
#ifdef IS_FW_DEBUG
if (mUseInternalISP) {
mPrevOffset = 0;
mCurrOffset = 0;
mPrevWp = 0;
mCurrWp = 0;
mDebugVaddr = 0;
mDebugThread = new DebugThread(this);
mDebugThread->run("debugThread", PRIORITY_DEFAULT);
}
#endif
}
int CameraHardwareSec::getCameraId() const
{
return mSecCamera->getCameraId();
}
void CameraHardwareSec::initDefaultParameters(int cameraId)
{
if (mSecCamera == NULL) {
LOGE("ERR(%s):mSecCamera object is NULL", __func__);
return;
}
CameraParameters p;
CameraParameters ip;
mCameraSensorName = mSecCamera->getCameraSensorName();
if (mCameraSensorName == NULL) {
LOGE("ERR(%s):mCameraSensorName is NULL", __func__);
return;
}
LOGV("CameraSensorName: %s", mCameraSensorName);
int preview_max_width = 0;
int preview_max_height = 0;
int snapshot_max_width = 0;
int snapshot_max_height = 0;
mCameraID = cameraId;
mUseInternalISP = mSecCamera->getUseInternalISP();
if (cameraId == SecCamera::CAMERA_ID_BACK) {
if (mUseInternalISP) {
//3H2
p.set(CameraParameters::KEY_SUPPORTED_PREVIEW_SIZES,
"720x480,640x384,640x360,640x480,320x240,528x432,176x144");
p.set(CameraParameters::KEY_SUPPORTED_PICTURE_SIZES,
"3248x2436,3216x2144,3200x1920,3072x1728,2592x1944,1920x1080,1440x1080,1280x720,1232x1008,800x480,720x480,640x480");
p.set(CameraParameters::KEY_SUPPORTED_VIDEO_SIZES,
"1920x1080,1280x720,640x480,176x144");
} else {
//M5MO
p.set(CameraParameters::KEY_SUPPORTED_PREVIEW_SIZES,
"3264x2448,1920x1080,1280x720,800x480,720x480,640x480,320x240,528x432,176x144");
p.set(CameraParameters::KEY_SUPPORTED_PICTURE_SIZES,
"3264x2448,3264x1968,2048x1536,2048x1232,800x480,640x480");
}
} else {
if (mUseInternalISP) {
//6A3
p.set(CameraParameters::KEY_SUPPORTED_PREVIEW_SIZES,
"640x480,640x360,480x480,352x288,320x240,176x144");
p.set(CameraParameters::KEY_SUPPORTED_PICTURE_SIZES,
"1392x1392,1280x960,1280x720,880x720,640x480");
p.set(CameraParameters::KEY_SUPPORTED_VIDEO_SIZES,
"1280x720,640x480,176x144");
}
}
p.getSupportedPreviewSizes(mSupportedPreviewSizes);
String8 parameterString;
// If these fail, then we are using an invalid cameraId and we'll leave the
// sizes at zero to catch the error.
if (mSecCamera->getPreviewMaxSize(&preview_max_width,
&preview_max_height) < 0)
LOGE("getPreviewMaxSize fail (%d / %d)",
preview_max_width, preview_max_height);
if (mSecCamera->getSnapshotMaxSize(&snapshot_max_width,
&snapshot_max_height) < 0)
LOGE("getSnapshotMaxSize fail (%d / %d)",
snapshot_max_width, snapshot_max_height);
parameterString = CameraParameters::PIXEL_FORMAT_YUV420P;
parameterString.append(",");
parameterString.append(CameraParameters::PIXEL_FORMAT_YUV420SP);
p.set(CameraParameters::KEY_SUPPORTED_PREVIEW_FORMATS, parameterString);
p.setPreviewFormat(CameraParameters::PIXEL_FORMAT_YUV420P);
mFrameSizeDelta = 16;
p.set(CameraParameters::KEY_VIDEO_FRAME_FORMAT, CameraParameters::PIXEL_FORMAT_YUV420SP);
p.setPreviewSize(preview_max_width, preview_max_height);
p.setPictureFormat(CameraParameters::PIXEL_FORMAT_JPEG);
p.setPictureSize(snapshot_max_width, snapshot_max_height);
p.set(CameraParameters::KEY_JPEG_QUALITY, "100"); // maximum quality
p.set(CameraParameters::KEY_SUPPORTED_PICTURE_FORMATS,
CameraParameters::PIXEL_FORMAT_JPEG);
p.set(CameraParameters::KEY_PREFERRED_PREVIEW_SIZE_FOR_VIDEO, "1280x720");
#ifdef USE_FACE_DETECTION
if (mUseInternalISP) {
p.set(CameraParameters::KEY_MAX_NUM_DETECTED_FACES_HW, "5");
} else {
p.set(CameraParameters::KEY_MAX_NUM_DETECTED_FACES_HW, "0");
}
#endif
if (cameraId == SecCamera::CAMERA_ID_BACK) {
parameterString = CameraParameters::FOCUS_MODE_AUTO;
/* TODO : sensor will be support this mode */
//parameterString.append(",");
//parameterString.append(CameraParameters::FOCUS_MODE_CONTINUOUS_VIDEO);
if (mUseInternalISP) {
parameterString.append(",");
parameterString.append(CameraParameters::FOCUS_MODE_INFINITY);
parameterString.append(",");
parameterString.append(CameraParameters::FOCUS_MODE_MACRO);
parameterString.append(",");
parameterString.append(CameraParameters::FOCUS_MODE_CONTINUOUS_PICTURE);
}
p.set(CameraParameters::KEY_SUPPORTED_FOCUS_MODES,
parameterString.string());
p.set(CameraParameters::KEY_FOCUS_MODE,
CameraParameters::FOCUS_MODE_AUTO);
p.set(CameraParameters::KEY_FOCUS_DISTANCES,
BACK_CAMERA_AUTO_FOCUS_DISTANCES_STR);
#ifdef USE_TOUCH_AF
if (mUseInternalISP)
p.set(CameraParameters::KEY_MAX_NUM_FOCUS_AREAS, "1");
#endif
p.set(CameraParameters::KEY_SUPPORTED_JPEG_THUMBNAIL_SIZES,
"320x240,0x0");
p.set(CameraParameters::KEY_JPEG_THUMBNAIL_WIDTH, "320");
p.set(CameraParameters::KEY_JPEG_THUMBNAIL_HEIGHT, "240");
p.set(CameraParameters::KEY_SUPPORTED_PREVIEW_FRAME_RATES, "7,15,30");
p.setPreviewFrameRate(30);
} else {
p.set(CameraParameters::KEY_FOCUS_MODE, NULL);
p.set(CameraParameters::KEY_SUPPORTED_JPEG_THUMBNAIL_SIZES,
"160x120,0x0");
p.set(CameraParameters::KEY_JPEG_THUMBNAIL_WIDTH, "160");
p.set(CameraParameters::KEY_JPEG_THUMBNAIL_HEIGHT, "120");
p.set(CameraParameters::KEY_SUPPORTED_PREVIEW_FRAME_RATES,
"7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,50,60");
p.setPreviewFrameRate(30);
}
parameterString = CameraParameters::EFFECT_NONE;
parameterString.append(",");
parameterString.append(CameraParameters::EFFECT_MONO);
parameterString.append(",");
parameterString.append(CameraParameters::EFFECT_NEGATIVE);
parameterString.append(",");
parameterString.append(CameraParameters::EFFECT_SEPIA);
p.set(CameraParameters::KEY_SUPPORTED_EFFECTS, parameterString.string());
if (cameraId == SecCamera::CAMERA_ID_BACK) {
parameterString = CameraParameters::FLASH_MODE_ON;
parameterString.append(",");
parameterString.append(CameraParameters::FLASH_MODE_OFF);
parameterString.append(",");
parameterString.append(CameraParameters::FLASH_MODE_AUTO);
parameterString.append(",");
parameterString.append(CameraParameters::FLASH_MODE_TORCH);
p.set(CameraParameters::KEY_SUPPORTED_FLASH_MODES,
parameterString.string());
p.set(CameraParameters::KEY_FLASH_MODE,
CameraParameters::FLASH_MODE_OFF);
/* we have two ranges, 4-30fps for night mode and
* 15-30fps for all others
*/
p.set(CameraParameters::KEY_SUPPORTED_PREVIEW_FPS_RANGE, "(15000,30000)");
p.set(CameraParameters::KEY_PREVIEW_FPS_RANGE, "15000,30000");
p.set(CameraParameters::KEY_FOCAL_LENGTH, "3.43");
} else {
p.set(CameraParameters::KEY_SUPPORTED_PREVIEW_FPS_RANGE, "(7500,30000)");
p.set(CameraParameters::KEY_PREVIEW_FPS_RANGE, "7500,30000");
p.set(CameraParameters::KEY_FOCAL_LENGTH, "0.9");
}
parameterString = CameraParameters::SCENE_MODE_AUTO;
parameterString.append(",");
parameterString.append(CameraParameters::SCENE_MODE_PORTRAIT);
parameterString.append(",");
parameterString.append(CameraParameters::SCENE_MODE_LANDSCAPE);
parameterString.append(",");
parameterString.append(CameraParameters::SCENE_MODE_BEACH);
parameterString.append(",");
parameterString.append(CameraParameters::SCENE_MODE_SNOW);
parameterString.append(",");
parameterString.append(CameraParameters::SCENE_MODE_FIREWORKS);
parameterString.append(",");
parameterString.append(CameraParameters::SCENE_MODE_SPORTS);
parameterString.append(",");
parameterString.append(CameraParameters::SCENE_MODE_PARTY);
parameterString.append(",");
parameterString.append(CameraParameters::SCENE_MODE_CANDLELIGHT);
parameterString.append(",");
parameterString.append(CameraParameters::SCENE_MODE_NIGHT);
parameterString.append(",");
parameterString.append(CameraParameters::SCENE_MODE_SUNSET);
p.set(CameraParameters::KEY_SUPPORTED_SCENE_MODES,
parameterString.string());
p.set(CameraParameters::KEY_SCENE_MODE,
CameraParameters::SCENE_MODE_AUTO);
parameterString = CameraParameters::WHITE_BALANCE_AUTO;
parameterString.append(",");
parameterString.append(CameraParameters::WHITE_BALANCE_INCANDESCENT);
parameterString.append(",");
parameterString.append(CameraParameters::WHITE_BALANCE_FLUORESCENT);
parameterString.append(",");
parameterString.append(CameraParameters::WHITE_BALANCE_DAYLIGHT);
parameterString.append(",");
parameterString.append(CameraParameters::WHITE_BALANCE_CLOUDY_DAYLIGHT);
p.set(CameraParameters::KEY_SUPPORTED_WHITE_BALANCE,
parameterString.string());
p.set(CameraParameters::KEY_JPEG_THUMBNAIL_QUALITY, "100");
p.set(CameraParameters::KEY_ROTATION, 0);
p.set(CameraParameters::KEY_WHITE_BALANCE, CameraParameters::WHITE_BALANCE_AUTO);
p.set(CameraParameters::KEY_EFFECT, CameraParameters::EFFECT_NONE);
p.set("contrast", 0);
p.set("iso", "auto");
p.set("metering", "center");
p.set("wdr", 0);
ip.set("chk_dataline", 0);
if (cameraId == SecCamera::CAMERA_ID_FRONT) {
ip.set("vtmode", 0);
ip.set("blur", 0);
}
p.set(CameraParameters::KEY_HORIZONTAL_VIEW_ANGLE, "51.2");
p.set(CameraParameters::KEY_VERTICAL_VIEW_ANGLE, "39.4");
p.set(CameraParameters::KEY_EXPOSURE_COMPENSATION, "0");
p.set(CameraParameters::KEY_MAX_EXPOSURE_COMPENSATION, "4");
p.set(CameraParameters::KEY_MIN_EXPOSURE_COMPENSATION, "-4");
p.set(CameraParameters::KEY_EXPOSURE_COMPENSATION_STEP, "1");
p.set("brightness", 0);
p.set("brightness-max", 2);
p.set("brightness-min", -2);
p.set("saturation", 0);
p.set("saturation-max", 2);
p.set("saturation-min", -2);
p.set("sharpness", 0);
p.set("sharpness-max", 2);
p.set("sharpness-min", -2);
p.set("hue", 0);
p.set("hue-max", 2);
p.set("hue-min", -2);
parameterString = CameraParameters::ANTIBANDING_AUTO;
parameterString.append(",");
parameterString.append(CameraParameters::ANTIBANDING_50HZ);
parameterString.append(",");
parameterString.append(CameraParameters::ANTIBANDING_60HZ);
parameterString.append(",");
parameterString.append(CameraParameters::ANTIBANDING_OFF);
p.set(CameraParameters::KEY_SUPPORTED_ANTIBANDING,
parameterString.string());
p.set(CameraParameters::KEY_ANTIBANDING, CameraParameters::ANTIBANDING_OFF);
if (mUseInternalISP) {
p.set(CameraParameters::KEY_AUTO_EXPOSURE_LOCK_SUPPORTED, "true");
p.set(CameraParameters::KEY_AUTO_EXPOSURE_LOCK, "false");
}
if (mUseInternalISP) {
p.set(CameraParameters::KEY_AUTO_WHITEBALANCE_LOCK_SUPPORTED, "true");
p.set(CameraParameters::KEY_AUTO_WHITEBALANCE_LOCK, "false");
}
p.set(CameraParameters::KEY_RECORDING_HINT, "false");
#ifdef VIDEO_SNAPSHOT
if (mUseInternalISP)
p.set(CameraParameters::KEY_VIDEO_SNAPSHOT_SUPPORTED, "true");
#endif
if (!mUseInternalISP) {
p.set(CameraParameters::KEY_ZOOM_SUPPORTED, "true");
p.set(CameraParameters::KEY_MAX_ZOOM, ZOOM_LEVEL_MAX - 1);
p.set(CameraParameters::KEY_ZOOM_RATIOS, "31,4.0");
}
mPreviewRunning = false;
mParameters = p;
mInternalParameters = ip;
/* make sure mSecCamera has all the settings we do. applications
* aren't required to call setParameters themselves (only if they
* want to change something.
*/
setParameters(p);
}
CameraHardwareSec::~CameraHardwareSec()
{
LOGV("%s", __func__);
mSecCamera->DestroyCamera();
}
status_t CameraHardwareSec::setPreviewWindow(preview_stream_ops *w)
{
int min_bufs;
mPreviewWindow = w;
LOGV("%s: mPreviewWindow %p", __func__, mPreviewWindow);
if (!w) {
LOGE("preview window is NULL!");
return OK;
}
mPreviewLock.lock();
if (mPreviewRunning && !mPreviewStartDeferred) {
LOGI("stop preview (window change)");
stopPreviewInternal();
}
if (w->get_min_undequeued_buffer_count(w, &min_bufs)) {
LOGE("%s: could not retrieve min undequeued buffer count", __func__);
return INVALID_OPERATION;
}
if (min_bufs >= BUFFER_COUNT_FOR_GRALLOC) {
LOGE("%s: min undequeued buffer count %d is too high (expecting at most %d)", __func__,
min_bufs, BUFFER_COUNT_FOR_GRALLOC - 1);
}
LOGV("%s: setting buffer count to %d", __func__, BUFFER_COUNT_FOR_GRALLOC);
if (w->set_buffer_count(w, BUFFER_COUNT_FOR_GRALLOC)) {
LOGE("%s: could not set buffer count", __func__);
return INVALID_OPERATION;
}
int preview_width;
int preview_height;
mParameters.getPreviewSize(&preview_width, &preview_height);
int hal_pixel_format;
const char *str_preview_format = mParameters.getPreviewFormat();
LOGV("%s: preview format %s", __func__, str_preview_format);
mFrameSizeDelta = 16;
hal_pixel_format = HAL_PIXEL_FORMAT_YV12; // default
if (!strcmp(str_preview_format,
CameraParameters::PIXEL_FORMAT_RGB565)) {
hal_pixel_format = HAL_PIXEL_FORMAT_RGB_565;
mFrameSizeDelta = 0;
} else if (!strcmp(str_preview_format,
CameraParameters::PIXEL_FORMAT_RGBA8888)) {
hal_pixel_format = HAL_PIXEL_FORMAT_RGBA_8888;
mFrameSizeDelta = 0;
} else if (!strcmp(str_preview_format,
CameraParameters::PIXEL_FORMAT_YUV420SP)) {
hal_pixel_format = HAL_PIXEL_FORMAT_YCrCb_420_SP;
} else if (!strcmp(str_preview_format,
CameraParameters::PIXEL_FORMAT_YUV420P))
hal_pixel_format = HAL_PIXEL_FORMAT_YV12; // HACK
#ifdef USE_EGL
if (w->set_usage(w, GRALLOC_USAGE_SW_WRITE_OFTEN)) {
LOGE("%s: could not set usage on gralloc buffer", __func__);
return INVALID_OPERATION;
}
#else
if (w->set_usage(w, GRALLOC_USAGE_SW_WRITE_OFTEN
| GRALLOC_USAGE_HW_FIMC1 | GRALLOC_USAGE_HWC_HWOVERLAY)) {
LOGE("%s: could not set usage on gralloc buffer", __func__);
return INVALID_OPERATION;
}
#endif
if (w->set_buffers_geometry(w,
preview_width, preview_height,
hal_pixel_format)) {
LOGE("%s: could not set buffers geometry to %s",
__func__, str_preview_format);
return INVALID_OPERATION;
}
if (mPreviewRunning && mPreviewStartDeferred) {
LOGV("start/resume preview");
status_t ret = startPreviewInternal();
if (ret == OK) {
mPreviewStartDeferred = false;
mPreviewCondition.signal();
}
}
mPreviewLock.unlock();
return OK;
}
void CameraHardwareSec::setCallbacks(camera_notify_callback notify_cb,
camera_data_callback data_cb,
camera_data_timestamp_callback data_cb_timestamp,
camera_request_memory get_memory,
void *user)
{
mNotifyCb = notify_cb;
mDataCb = data_cb;
mDataCbTimestamp = data_cb_timestamp;
mGetMemoryCb = get_memory;
mCallbackCookie = user;
}
void CameraHardwareSec::enableMsgType(int32_t msgType)
{
LOGV("%s : msgType = 0x%x, mMsgEnabled before = 0x%x",
__func__, msgType, mMsgEnabled);
mMsgEnabled |= msgType;
mPreviewLock.lock();
if ((msgType & (CAMERA_MSG_PREVIEW_FRAME | CAMERA_MSG_VIDEO_FRAME)) &&
mPreviewRunning && mPreviewStartDeferred) {
LOGV("%s: starting deferred preview", __func__);
if (startPreviewInternal() == OK) {
mPreviewStartDeferred = false;
mPreviewCondition.signal();
}
}
mPreviewLock.unlock();
LOGV("%s : mMsgEnabled = 0x%x", __func__, mMsgEnabled);
}
void CameraHardwareSec::disableMsgType(int32_t msgType)
{
LOGV("%s : msgType = 0x%x, mMsgEnabled before = 0x%x",
__func__, msgType, mMsgEnabled);
mMsgEnabled &= ~msgType;
LOGV("%s : mMsgEnabled = 0x%x", __func__, mMsgEnabled);
}
bool CameraHardwareSec::msgTypeEnabled(int32_t msgType)
{
return (mMsgEnabled & msgType);
}
void CameraHardwareSec::setSkipFrame(int frame)
{
Mutex::Autolock lock(mSkipFrameLock);
if (frame < mSkipFrame)
return;
mSkipFrame = frame;
}
int CameraHardwareSec::previewThreadWrapper()
{
LOGI("%s: starting", __func__);
while (1) {
mPreviewLock.lock();
while (!mPreviewRunning) {
LOGI("%s: calling mSecCamera->stopPreview() and waiting", __func__);
mSecCamera->stopPreview();
/* signal that we're stopping */
mPreviewStoppedCondition.signal();
mPreviewCondition.wait(mPreviewLock);
LOGI("%s: return from wait", __func__);
}
mPreviewLock.unlock();
if (mExitPreviewThread) {
LOGI("%s: exiting", __func__);
mSecCamera->stopPreview();
return 0;
}
previewThread();
}
}
int CameraHardwareSec::previewThread()
{
int index;
nsecs_t timestamp;
SecBuffer previewAddr, recordAddr;
static int numArray = 0;
void *virAddr[3];
camera_frame_metadata_t fdmeta;
camera_face_t caface[5];
struct addrs *addrs;
fdmeta.faces = caface;
index = mSecCamera->getPreview(&fdmeta);
mFaceData = &fdmeta;
if (index < 0) {
LOGE("ERR(%s):Fail on SecCamera->getPreview()", __func__);
return UNKNOWN_ERROR;
}
#ifdef ZERO_SHUTTER_LAG
if (mUseInternalISP && !mRecordHint) {
mCapIndex = mSecCamera->getSnapshot();
if (mCapIndex >= 0) {
if (mSecCamera->setSnapshotFrame(mCapIndex) < 0) {
LOGE("%s: Fail qbuf, index(%d)", __func__, mCapIndex);
return INVALID_OPERATION;
}
}
}
#endif
mSkipFrameLock.lock();
if (mSkipFrame > 0) {
mSkipFrame--;
mSkipFrameLock.unlock();
LOGV("%s: index %d skipping frame", __func__, index);
if (mSecCamera->setPreviewFrame(index) < 0) {
LOGE("%s: Could not qbuff[%d]!!", __func__, index);
return UNKNOWN_ERROR;
}
return NO_ERROR;
}
mSkipFrameLock.unlock();
timestamp = systemTime(SYSTEM_TIME_MONOTONIC);
int width, height, frame_size, offset;
mSecCamera->getPreviewSize(&width, &height, &frame_size);
offset = frame_size * index;
if (mPreviewWindow && mGrallocHal && mPreviewRunning) {
if (0 != mPreviewWindow->dequeue_buffer(mPreviewWindow, &mBufferHandle[numArray], &mStride[numArray])) {
LOGE("%s: Could not dequeue gralloc buffer[%d]!!", __func__, numArray);
goto callbacks;
}
if (!mGrallocHal->lock(mGrallocHal,
*mBufferHandle[numArray],
GRALLOC_USAGE_SW_WRITE_OFTEN | GRALLOC_USAGE_YUV_ADDR,
0, 0, width, height, virAddr)) {
char *frame = ((char *)mPreviewHeap->data) + offset;
int total = frame_size + mFrameSizeDelta;
int h = 0;
char *src = frame;
/* TODO : Need to fix size of planes for supported color fmt.
Currnetly we support only YV12(3 plane) and NV21(2 plane)*/
// Y
memcpy(virAddr[0],src, width * height);
src += width * height;
if (mPreviewFmtPlane == PREVIEW_FMT_2_PLANE) {
memcpy(virAddr[1], src, width * height / 2);
} else if (mPreviewFmtPlane == PREVIEW_FMT_3_PLANE) {
// U
memcpy(virAddr[1], src, width * height / 4);
src += width * height / 4;
// V
memcpy(virAddr[2], src, width * height / 4);
}
mGrallocHal->unlock(mGrallocHal, **mBufferHandle);
}
else
LOGE("%s: could not obtain gralloc buffer", __func__);
if (mSecCamera->setPreviewFrame(index) < 0) {
LOGE("%s: Fail qbuf, index(%d)", __func__, index);
goto callbacks;
}
index = 0;
if (0 != mPreviewWindow->enqueue_buffer(mPreviewWindow, *mBufferHandle)) {
LOGE("Could not enqueue gralloc buffer!");
goto callbacks;
}
}
callbacks:
// Notify the client of a new frame.
if (mMsgEnabled & CAMERA_MSG_PREVIEW_FRAME && mPreviewRunning)
mDataCb(CAMERA_MSG_PREVIEW_FRAME, mPreviewHeap, index, NULL, mCallbackCookie);
#ifdef USE_FACE_DETECTION
if (mUseInternalISP && (mMsgEnabled & CAMERA_MSG_PREVIEW_METADATA) && mPreviewRunning)
mDataCb(CAMERA_MSG_PREVIEW_METADATA, mFaceDataHeap, 0, mFaceData, mCallbackCookie);
#endif
Mutex::Autolock lock(mRecordLock);
if (mRecordRunning == true) {
int recordingIndex = 0;
index = mSecCamera->getRecordFrame();
if (index < 0) {
LOGE("ERR(%s):Fail on SecCamera->getRecordFrame()", __func__);
return UNKNOWN_ERROR;
}
#ifdef VIDEO_SNAPSHOT
if (mUseInternalISP && mRecordHint) {
mCapIndex = mSecCamera->getSnapshot();
if (mSecCamera->setSnapshotFrame(mCapIndex) < 0) {
LOGE("%s: Fail qbuf, index(%d)", __func__, mCapIndex);
return INVALID_OPERATION;
}
}
#endif
recordingIndex = index;
mSecCamera->getRecordAddr(index, &recordAddr);
LOGV("record PhyY(0x%08x) phyC(0x%08x) ", recordAddr.phys.extP[0], recordAddr.phys.extP[1]);
if (recordAddr.phys.extP[0] == 0xffffffff || recordAddr.phys.extP[1] == 0xffffffff) {
LOGE("ERR(%s):Fail on SecCamera getRectPhyAddr Y addr = %0x C addr = %0x", __func__,
recordAddr.phys.extP[0], recordAddr.phys.extP[1]);
return UNKNOWN_ERROR;
}
addrs = (struct addrs *)(*mRecordHeap)->data;
addrs[index].type = kMetadataBufferTypeCameraSource;
addrs[index].addr_y = recordAddr.phys.extP[0];
addrs[index].addr_cbcr = recordAddr.phys.extP[1];
addrs[index].buf_index = index;
// Notify the client of a new frame.
if (mMsgEnabled & CAMERA_MSG_VIDEO_FRAME)
mDataCbTimestamp(timestamp, CAMERA_MSG_VIDEO_FRAME,
mRecordHeap[numArray], recordingIndex, mCallbackCookie);
else
mSecCamera->releaseRecordFrame(index);
}
return NO_ERROR;
}
#ifdef IS_FW_DEBUG
bool CameraHardwareSec::debugThread()
{
sleep(20);
LOGD("++ Firmware debug message starting");
mCurrWp = mIs_debug_ctrl.write_point;
mCurrOffset = mCurrWp - FIMC_IS_FW_DEBUG_REGION_ADDR;
if (mCurrWp != mPrevWp) {
*(char *)(mDebugVaddr + mCurrOffset + 1) = '\0';
if ((mCurrWp - mPrevWp) > 0) {
LOGD("%s", mDebugVaddr + mPrevOffset);
} else {
*(char *)(mDebugVaddr + FIMC_IS_FW_DEBUG_REGION_SIZE - 1) = '\0';
LOGD("%s", mDebugVaddr + mPrevOffset);
LOGD("%s", mDebugVaddr);
}
}
mPrevWp = mIs_debug_ctrl.write_point;
mPrevOffset = mPrevWp - FIMC_IS_FW_DEBUG_REGION_ADDR;
LOGD("-- Firmware debug message stop");
return true;
}
#endif
status_t CameraHardwareSec::startPreview()
{
int ret = 0;
LOGV("%s :", __func__);
Mutex::Autolock lock(mStateLock);
if (mCaptureInProgress) {
LOGE("%s : capture in progress, not allowed", __func__);
return INVALID_OPERATION;
}
mPreviewLock.lock();
if (mPreviewRunning) {
// already running
LOGE("%s : preview thread already running", __func__);
mPreviewLock.unlock();
return INVALID_OPERATION;
}
mPreviewRunning = true;
mPreviewStartDeferred = false;
if (!mPreviewWindow &&
!(mMsgEnabled & CAMERA_MSG_PREVIEW_FRAME) &&
!(mMsgEnabled & CAMERA_MSG_VIDEO_FRAME)) {
LOGI("%s : deferring", __func__);
mPreviewStartDeferred = true;
mPreviewLock.unlock();
return NO_ERROR;
}
ret = startPreviewInternal();
if (ret == OK)
mPreviewCondition.signal();
mPreviewLock.unlock();
return ret;
}
status_t CameraHardwareSec::startPreviewInternal()
{
LOGV("%s", __func__);
int width, height, frame_size;
mSecCamera->getPreviewSize(&width, &height, &frame_size);
LOGD("mPreviewHeap(fd(%d), size(%d), width(%d), height(%d))",
mSecCamera->getCameraFd(SecCamera::PREVIEW), frame_size + mFrameSizeDelta, width, height);
int ret = mSecCamera->startPreview();
LOGV("%s : mSecCamera->startPreview() returned %d", __func__, ret);
if (ret < 0) {
LOGE("ERR(%s):Fail on mSecCamera->startPreview()", __func__);
return UNKNOWN_ERROR;
}
setSkipFrame(INITIAL_SKIP_FRAME);
if (mPreviewHeap) {
mPreviewHeap->release(mPreviewHeap);
mPreviewHeap = 0;
}
for(int i=0; i<BUFFER_COUNT_FOR_ARRAY; i++){
if (mRecordHeap[i] != NULL) {
mRecordHeap[i]->release(mRecordHeap[i]);
mRecordHeap[i] = 0;
}
}
mPreviewHeap = mGetMemoryCb((int)mSecCamera->getCameraFd(SecCamera::PREVIEW),
frame_size + mFrameSizeDelta,
MAX_BUFFERS,
0); // no cookie
mFaceDataHeap = mGetMemoryCb(-1, 1, 1, 0);
mSecCamera->getPostViewConfig(&mPostViewWidth, &mPostViewHeight, &mPostViewSize);
LOGV("CameraHardwareSec: mPostViewWidth = %d mPostViewHeight = %d mPostViewSize = %d",
mPostViewWidth,mPostViewHeight,mPostViewSize);
#ifdef IS_FW_DEBUG
if (mUseInternalISP) {
int ret = mSecCamera->getDebugAddr(&mDebugVaddr);
if (ret < 0) {
LOGE("ERR(%s):Fail on SecCamera->getDebugAddr()", __func__);
return UNKNOWN_ERROR;
}
mIs_debug_ctrl.write_point = *((unsigned int *)(mDebugVaddr + FIMC_IS_FW_DEBUG_REGION_SIZE));
mIs_debug_ctrl.assert_flag = *((unsigned int *)(mDebugVaddr + FIMC_IS_FW_DEBUG_REGION_SIZE + 4));
mIs_debug_ctrl.pabort_flag = *((unsigned int *)(mDebugVaddr + FIMC_IS_FW_DEBUG_REGION_SIZE + 8));
mIs_debug_ctrl.dabort_flag = *((unsigned int *)(mDebugVaddr + FIMC_IS_FW_DEBUG_REGION_SIZE + 12));
}
#endif
return NO_ERROR;
}
void CameraHardwareSec::stopPreviewInternal()
{
LOGV("%s :", __func__);
/* request that the preview thread stop. */
if (mPreviewRunning) {
mPreviewRunning = false;
if (!mPreviewStartDeferred) {
mPreviewCondition.signal();
/* wait until preview thread is stopped */
mPreviewStoppedCondition.wait(mPreviewLock);
}
else
LOGV("%s : preview running but deferred, doing nothing", __func__);
} else
LOGI("%s : preview not running, doing nothing", __func__);
}
void CameraHardwareSec::stopPreview()
{
LOGV("%s :", __func__);
/* request that the preview thread stop. */
mPreviewLock.lock();
stopPreviewInternal();
mPreviewLock.unlock();
}
bool CameraHardwareSec::previewEnabled()
{
Mutex::Autolock lock(mPreviewLock);
LOGV("%s : %d", __func__, mPreviewRunning);
return mPreviewRunning;
}
status_t CameraHardwareSec::startRecording()
{
LOGV("%s :", __func__);
Mutex::Autolock lock(mRecordLock);
for(int i = 0; i<BUFFER_COUNT_FOR_ARRAY; i++){
if (mRecordHeap[i] != NULL) {
mRecordHeap[i]->release(mRecordHeap[i]);
mRecordHeap[i] = 0;
}
mRecordHeap[i] = mGetMemoryCb(-1, sizeof(struct addrs), MAX_BUFFERS, NULL);
if (!mRecordHeap[i]) {
LOGE("ERR(%s): Record heap[%d] creation fail", __func__, i);
return UNKNOWN_ERROR;
}
}
LOGV("mRecordHeaps alloc done");
if (mRecordRunning == false) {
if (mSecCamera->startRecord(mRecordHint) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->startRecord()", __func__);
return UNKNOWN_ERROR;
}
mRecordRunning = true;
}
return NO_ERROR;
}
void CameraHardwareSec::stopRecording()
{
LOGV("%s :", __func__);
Mutex::Autolock lock(mRecordLock);
if (mRecordRunning == true) {
if (mSecCamera->stopRecord() < 0) {
LOGE("ERR(%s):Fail on mSecCamera->stopRecord()", __func__);
return;
}
mRecordRunning = false;
}
}
bool CameraHardwareSec::recordingEnabled()
{
LOGV("%s :", __func__);
LOGV("%s : %d", __func__, mPreviewRunning);
return mRecordRunning;
}
void CameraHardwareSec::releaseRecordingFrame(const void *opaque)
{
struct addrs *addrs = (struct addrs *)opaque;
mSecCamera->releaseRecordFrame(addrs->buf_index);
}
int CameraHardwareSec::autoFocusThread()
{
int count =0;
int af_status =0 ;
LOGV("%s : starting", __func__);
/* block until we're told to start. we don't want to use
* a restartable thread and requestExitAndWait() in cancelAutoFocus()
* because it would cause deadlock between our callbacks and the
* caller of cancelAutoFocus() which both want to grab the same lock
* in CameraServices layer.
*/
mFocusLock.lock();
/* check early exit request */
if (mExitAutoFocusThread) {
mFocusLock.unlock();
LOGV("%s : exiting on request0", __func__);
return NO_ERROR;
}
mFocusCondition.wait(mFocusLock);
/* check early exit request */
if (mExitAutoFocusThread) {
mFocusLock.unlock();
LOGV("%s : exiting on request1", __func__);
return NO_ERROR;
}
mFocusLock.unlock();
/* TODO : Currently only possible auto focus at BACK caemra
We need to modify to check that sensor can support auto focus */
if (mCameraID == SecCamera::CAMERA_ID_BACK) {
LOGV("%s : calling setAutoFocus", __func__);
if (mTouched == 0) {
if (mSecCamera->setAutofocus() < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setAutofocus()", __func__);
return UNKNOWN_ERROR;
}
} else {
if (mSecCamera->setTouchAF() < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setAutofocus()", __func__);
return UNKNOWN_ERROR;
}
}
}
/* TODO */
/* This is temperary implementation.
When camera support AF blocking mode, this code will be removed
Continous AutoFocus is not need to success */
const char *focusModeStr = mParameters.get(CameraParameters::KEY_FOCUS_MODE);
int isContinousAF = !strncmp(focusModeStr, CameraParameters::FOCUS_MODE_CONTINUOUS_VIDEO, 7);
if (mUseInternalISP && !isContinousAF) {
int i, err = -1;
for (i = 0; i < 400; i++) {
usleep(10000);
af_status = mSecCamera->getAutoFocusResult();
if ((af_status & 0x2)) {
err = 0;
break;
}
}
} else {
af_status = mSecCamera->getAutoFocusResult();
}
if (af_status == 0x01) {
LOGV("%s : AF Cancelled !!", __func__);
if (mMsgEnabled & CAMERA_MSG_FOCUS)
mNotifyCb(CAMERA_MSG_FOCUS, true, 0, mCallbackCookie);
} else if (af_status == 0x02) {
LOGV("%s : AF Success !!", __func__);
if (mMsgEnabled & CAMERA_MSG_FOCUS) {
/* CAMERA_MSG_FOCUS only takes a bool. true for
* finished and false for failure. cancel is still
* considered a true result.
*/
mNotifyCb(CAMERA_MSG_FOCUS, true, 0, mCallbackCookie);
}
} else {
LOGV("%s : AF Fail !!", __func__);
LOGV("%s : mMsgEnabled = 0x%x", __func__, mMsgEnabled);
if (mMsgEnabled & CAMERA_MSG_FOCUS)
mNotifyCb(CAMERA_MSG_FOCUS, false, 0, mCallbackCookie);
}
LOGV("%s : exiting with no error", __func__);
return NO_ERROR;
}
status_t CameraHardwareSec::autoFocus()
{
LOGV("%s :", __func__);
/* signal autoFocusThread to run once */
mFocusCondition.signal();
return NO_ERROR;
}
status_t CameraHardwareSec::cancelAutoFocus()
{
LOGV("%s :", __func__);
if (mSecCamera->cancelAutofocus() < 0) {
LOGE("ERR(%s):Fail on mSecCamera->cancelAutofocus()", __func__);
return UNKNOWN_ERROR;
}
return NO_ERROR;
}
int CameraHardwareSec::save_jpeg( unsigned char *real_jpeg, int jpeg_size)
{
FILE *yuv_fp = NULL;
char filename[100], *buffer = NULL;
/* file create/open, note to "wb" */
yuv_fp = fopen("/data/camera_dump.jpeg", "wb");
if (yuv_fp == NULL) {
LOGE("Save jpeg file open error");
return -1;
}
LOGV("[BestIQ] real_jpeg size ========> %d", jpeg_size);
buffer = (char *) malloc(jpeg_size);
if (buffer == NULL) {
LOGE("Save YUV] buffer alloc failed");
if (yuv_fp)
fclose(yuv_fp);
return -1;
}
memcpy(buffer, real_jpeg, jpeg_size);
fflush(stdout);
fwrite(buffer, 1, jpeg_size, yuv_fp);
fflush(yuv_fp);
if (yuv_fp)
fclose(yuv_fp);
if (buffer)
free(buffer);
return 0;
}
void CameraHardwareSec::save_postview(const char *fname, uint8_t *buf, uint32_t size)
{
int nw;
int cnt = 0;
uint32_t written = 0;
LOGD("opening file [%s]", fname);
int fd = open(fname, O_RDWR | O_CREAT);
if (fd < 0) {
LOGE("failed to create file [%s]: %s", fname, strerror(errno));
return;
}
LOGD("writing %d bytes to file [%s]", size, fname);
while (written < size) {
nw = ::write(fd, buf + written, size - written);
if (nw < 0) {
LOGE("failed to write to file %d [%s]: %s",written,fname, strerror(errno));
break;
}
written += nw;
cnt++;
}
LOGD("done writing %d bytes to file [%s] in %d passes",size, fname, cnt);
::close(fd);
}
bool CameraHardwareSec::scaleDownYuv422(char *srcBuf, uint32_t srcWidth, uint32_t srcHeight,
char *dstBuf, uint32_t dstWidth, uint32_t dstHeight)
{
int32_t step_x, step_y;
int32_t iXsrc, iXdst;
int32_t x, y, src_y_start_pos, dst_pos, src_pos;
if (dstWidth % 2 != 0 || dstHeight % 2 != 0) {
LOGE("scale_down_yuv422: invalid width, height for scaling");
return false;
}
step_x = srcWidth / dstWidth;
step_y = srcHeight / dstHeight;
dst_pos = 0;
for (uint32_t y = 0; y < dstHeight; y++) {
src_y_start_pos = (y * step_y * (srcWidth * 2));
for (uint32_t x = 0; x < dstWidth; x += 2) {
src_pos = src_y_start_pos + (x * (step_x * 2));
dstBuf[dst_pos++] = srcBuf[src_pos ];
dstBuf[dst_pos++] = srcBuf[src_pos + 1];
dstBuf[dst_pos++] = srcBuf[src_pos + 2];
dstBuf[dst_pos++] = srcBuf[src_pos + 3];
}
}
return true;
}
bool CameraHardwareSec::YUY2toNV21(void *srcBuf, void *dstBuf, uint32_t srcWidth, uint32_t srcHeight)
{
int32_t x, y, src_y_start_pos, dst_cbcr_pos, dst_pos, src_pos;
unsigned char *srcBufPointer = (unsigned char *)srcBuf;
unsigned char *dstBufPointer = (unsigned char *)dstBuf;
dst_pos = 0;
dst_cbcr_pos = srcWidth*srcHeight;
for (uint32_t y = 0; y < srcHeight; y++) {
src_y_start_pos = (y * (srcWidth * 2));
for (uint32_t x = 0; x < (srcWidth * 2); x += 2) {
src_pos = src_y_start_pos + x;
dstBufPointer[dst_pos++] = srcBufPointer[src_pos];
}
}
for (uint32_t y = 0; y < srcHeight; y += 2) {
src_y_start_pos = (y * (srcWidth * 2));
for (uint32_t x = 0; x < (srcWidth * 2); x += 4) {
src_pos = src_y_start_pos + x;
dstBufPointer[dst_cbcr_pos++] = srcBufPointer[src_pos + 3];
dstBufPointer[dst_cbcr_pos++] = srcBufPointer[src_pos + 1];
}
}
return true;
}
int CameraHardwareSec::pictureThread()
{
LOGV("%s :", __func__);
int jpeg_size = 0;
int ret = NO_ERROR;
unsigned char *jpeg_data = NULL;
int postview_offset = 0;
unsigned char *postview_data = NULL;
unsigned char *addr = NULL;
int mPostViewWidth, mPostViewHeight, mPostViewSize;
int mThumbWidth, mThumbHeight, mThumbSize;
int cap_width, cap_height, cap_frame_size;
int JpegImageSize = 0;
mSecCamera->getPostViewConfig(&mPostViewWidth, &mPostViewHeight, &mPostViewSize);
mSecCamera->getThumbnailConfig(&mThumbWidth, &mThumbHeight, &mThumbSize);
int postviewHeapSize = mPostViewSize;
if (!mRecordRunning)
mSecCamera->getSnapshotSize(&cap_width, &cap_height, &cap_frame_size);
else
mSecCamera->getVideosnapshotSize(&cap_width, &cap_height, &cap_frame_size);
int mJpegHeapSize;
if (!mUseInternalISP)
mJpegHeapSize = cap_frame_size * SecCamera::getJpegRatio();
else
mJpegHeapSize = cap_frame_size;
LOGV("[5B] mPostViewWidth = %d mPostViewHeight = %d\n",mPostViewWidth,mPostViewHeight);
camera_memory_t *JpegHeap = mGetMemoryCb(-1, mJpegHeapSize, 1, 0);
mThumbnailHeap = new MemoryHeapBase(mThumbSize);
if (mMsgEnabled & CAMERA_MSG_RAW_IMAGE) {
int picture_size, picture_width, picture_height;
mSecCamera->getSnapshotSize(&picture_width, &picture_height, &picture_size);
int picture_format = mSecCamera->getSnapshotPixelFormat();
unsigned int thumb_addr, phyAddr;
// Modified the shutter sound timing for Jpeg capture
if (!mUseInternalISP) {
mSecCamera->setSnapshotCmd();
if (mMsgEnabled & CAMERA_MSG_SHUTTER)
mNotifyCb(CAMERA_MSG_SHUTTER, 0, 0, mCallbackCookie);
jpeg_data = mSecCamera->getJpeg(&JpegImageSize, &mThumbSize, &thumb_addr, &phyAddr);
if (jpeg_data == NULL) {
LOGE("ERR(%s):Fail on SecCamera->getJpeg()", __func__);
ret = UNKNOWN_ERROR;
}
memcpy((unsigned char *)mThumbnailHeap->base(), (unsigned char *)thumb_addr, mThumbSize);
memcpy(JpegHeap->data, jpeg_data, JpegImageSize);
} else {
if (mMsgEnabled & CAMERA_MSG_SHUTTER)
mNotifyCb(CAMERA_MSG_SHUTTER, 0, 0, mCallbackCookie);
#ifdef ZERO_SHUTTER_LAG
mSecCamera->getCaptureAddr(mCapIndex, &mCapBuffer);
if (mCapBuffer.virt.extP[0] == NULL) {
LOGE("ERR(%s):Fail on SecCamera getCaptureAddr = %0x ",
__func__, mCapBuffer.virt.extP[0]);
return UNKNOWN_ERROR;
}
scaleDownYuv422((char *)mCapBuffer.virt.extP[0], cap_width, cap_height,
(char *)mThumbnailHeap->base(), mThumbWidth, mThumbHeight);
#endif
if (mSecCamera->getSnapshotAndJpeg(&mCapBuffer, mCapIndex,
(unsigned char*)JpegHeap->data, &JpegImageSize) < 0) {
mStateLock.lock();
mCaptureInProgress = false;
mStateLock.unlock();
JpegHeap->release(JpegHeap);
return UNKNOWN_ERROR;
}
LOGI("snapshotandjpeg done");
#ifdef ZERO_SHUTTER_LAG
if (!mRecordRunning)
stopPreview();
memset(&mCapBuffer, 0, sizeof(struct SecBuffer));
#else
scaleDownYuv422((char *)mCapBuffer.virt.extP[0], cap_width, cap_height,
(char *)mThumbnailHeap->base(), mThumbWidth, mThumbHeight);
#endif
}
}
int rawHeapSize = cap_frame_size;
LOGV("mRawHeap : MemoryHeapBase(previewHeapSize(%d))", rawHeapSize);
mRawHeap = mGetMemoryCb((int)mSecCamera->getCameraFd(SecCamera::PICTURE), rawHeapSize, 1, 0);
if (!mRawHeap)
LOGE("ERR(%s): Raw heap creation fail", __func__);
if (mMsgEnabled & CAMERA_MSG_RAW_IMAGE)
mDataCb(CAMERA_MSG_RAW_IMAGE, mRawHeap, 0, NULL, mCallbackCookie);
mStateLock.lock();
mCaptureInProgress = false;
mStateLock.unlock();
if (mMsgEnabled & CAMERA_MSG_COMPRESSED_IMAGE) {
camera_memory_t *ExifHeap =
mGetMemoryCb(-1, EXIF_FILE_SIZE + mThumbSize, 1, 0);
int JpegExifSize = mSecCamera->getExif((unsigned char *)ExifHeap->data,
(unsigned char *)mThumbnailHeap->base(),
mThumbSize);
LOGV("JpegExifSize=%d", JpegExifSize);
if (JpegExifSize < 0) {
ret = UNKNOWN_ERROR;
goto out;
}
int mJpegHeapSize_out = JpegImageSize + JpegExifSize;
camera_memory_t *JpegHeap_out = mGetMemoryCb(-1, mJpegHeapSize_out, 1, 0);
unsigned char *ExifStart = (unsigned char *)JpegHeap_out->data + 2;
unsigned char *ImageStart = ExifStart + JpegExifSize;
memcpy(JpegHeap_out->data, JpegHeap->data, 2);
memcpy(ExifStart, ExifHeap->data, JpegExifSize);
memcpy(ImageStart, JpegHeap->data + 2, JpegImageSize - 2);
mDataCb(CAMERA_MSG_COMPRESSED_IMAGE, JpegHeap_out, 0, NULL, mCallbackCookie);
if (ExifHeap) {
ExifHeap->release(ExifHeap);
ExifHeap = 0;
}
if (JpegHeap_out) {
JpegHeap_out->release(JpegHeap_out);
JpegHeap_out = 0;
}
}
LOGV("%s : pictureThread end", __func__);
out:
if (JpegHeap) {
JpegHeap->release(JpegHeap);
JpegHeap = 0;
}
if (mRawHeap) {
mRawHeap->release(mRawHeap);
mRawHeap = 0;
}
if (!mUseInternalISP && !mRecordRunning)
mSecCamera->endSnapshot();
return ret;
}
status_t CameraHardwareSec::takePicture()
{
LOGV("%s :", __func__);
#ifdef ZERO_SHUTTER_LAG
if (!mUseInternalISP) {
stopPreview();
}
#else
stopPreview();
#endif
Mutex::Autolock lock(mStateLock);
if (mCaptureInProgress) {
LOGE("%s : capture already in progress", __func__);
return INVALID_OPERATION;
}
if (mPictureThread->run("CameraPictureThread", PRIORITY_DEFAULT) != NO_ERROR) {
LOGE("%s : couldn't run picture thread", __func__);
return INVALID_OPERATION;
}
mCaptureInProgress = true;
return NO_ERROR;
}
status_t CameraHardwareSec::cancelPicture()
{
LOGV("%s", __func__);
if (mPictureThread.get()) {
LOGV("%s: waiting for picture thread to exit", __func__);
mPictureThread->requestExitAndWait();
LOGV("%s: picture thread has exited", __func__);
}
return NO_ERROR;
}
bool CameraHardwareSec::CheckVideoStartMarker(unsigned char *pBuf)
{
if (!pBuf) {
LOGE("CheckVideoStartMarker() => pBuf is NULL");
return false;
}
if (HIBYTE(VIDEO_COMMENT_MARKER_H) == * pBuf && LOBYTE(VIDEO_COMMENT_MARKER_H) == *(pBuf + 1) &&
HIBYTE(VIDEO_COMMENT_MARKER_L) == *(pBuf + 2) && LOBYTE(VIDEO_COMMENT_MARKER_L) == *(pBuf + 3))
return true;
return false;
}
bool CameraHardwareSec::CheckEOIMarker(unsigned char *pBuf)
{
if (!pBuf) {
LOGE("CheckEOIMarker() => pBuf is NULL");
return false;
}
// EOI marker [FF D9]
if (HIBYTE(JPEG_EOI_MARKER) == *pBuf && LOBYTE(JPEG_EOI_MARKER) == *(pBuf + 1))
return true;
return false;
}
bool CameraHardwareSec::FindEOIMarkerInJPEG(unsigned char *pBuf, int dwBufSize, int *pnJPEGsize)
{
if (NULL == pBuf || 0 >= dwBufSize) {
LOGE("FindEOIMarkerInJPEG() => There is no contents.");
return false;
}
unsigned char *pBufEnd = pBuf + dwBufSize;
while (pBuf < pBufEnd) {
if (CheckEOIMarker(pBuf++))
return true;
(*pnJPEGsize)++;
}
return false;
}
bool CameraHardwareSec::SplitFrame(unsigned char *pFrame, int dwSize,
int dwJPEGLineLength, int dwVideoLineLength, int dwVideoHeight,
void *pJPEG, int *pdwJPEGSize,
void *pVideo, int *pdwVideoSize)
{
LOGV("===========SplitFrame Start==============");
if (NULL == pFrame || 0 >= dwSize) {
LOGE("There is no contents (pFrame=%p, dwSize=%d", pFrame, dwSize);
return false;
}
if (0 == dwJPEGLineLength || 0 == dwVideoLineLength) {
LOGE("There in no input information for decoding interleaved jpeg");
return false;
}
unsigned char *pSrc = pFrame;
unsigned char *pSrcEnd = pFrame + dwSize;
unsigned char *pJ = (unsigned char *)pJPEG;
int dwJSize = 0;
unsigned char *pV = (unsigned char *)pVideo;
int dwVSize = 0;
bool bRet = false;
bool isFinishJpeg = false;
while (pSrc < pSrcEnd) {
// Check video start marker
if (CheckVideoStartMarker(pSrc)) {
int copyLength;
if (pSrc + dwVideoLineLength <= pSrcEnd)
copyLength = dwVideoLineLength;
else
copyLength = pSrcEnd - pSrc - VIDEO_COMMENT_MARKER_LENGTH;
// Copy video data
if (pV) {
memcpy(pV, pSrc + VIDEO_COMMENT_MARKER_LENGTH, copyLength);
pV += copyLength;
dwVSize += copyLength;
}
pSrc += copyLength + VIDEO_COMMENT_MARKER_LENGTH;
} else {
// Copy pure JPEG data
int size = 0;
int dwCopyBufLen = dwJPEGLineLength <= pSrcEnd-pSrc ? dwJPEGLineLength : pSrcEnd - pSrc;
if (FindEOIMarkerInJPEG((unsigned char *)pSrc, dwCopyBufLen, &size)) {
isFinishJpeg = true;
size += 2; // to count EOF marker size
} else {
if ((dwCopyBufLen == 1) && (pJPEG < pJ)) {
unsigned char checkBuf[2] = { *(pJ - 1), *pSrc };
if (CheckEOIMarker(checkBuf))
isFinishJpeg = true;
}
size = dwCopyBufLen;
}
memcpy(pJ, pSrc, size);
dwJSize += size;
pJ += dwCopyBufLen;
pSrc += dwCopyBufLen;
}
if (isFinishJpeg)
break;
}
if (isFinishJpeg) {
bRet = true;
if (pdwJPEGSize)
*pdwJPEGSize = dwJSize;
if (pdwVideoSize)
*pdwVideoSize = dwVSize;
} else {
LOGE("DecodeInterleaveJPEG_WithOutDT() => Can not find EOI");
bRet = false;
if (pdwJPEGSize)
*pdwJPEGSize = 0;
if (pdwVideoSize)
*pdwVideoSize = 0;
}
LOGV("===========SplitFrame end==============");
return bRet;
}
int CameraHardwareSec::decodeInterleaveData(unsigned char *pInterleaveData,
int interleaveDataSize,
int yuvWidth,
int yuvHeight,
int *pJpegSize,
void *pJpegData,
void *pYuvData)
{
if (pInterleaveData == NULL)
return false;
bool ret = true;
unsigned int *interleave_ptr = (unsigned int *)pInterleaveData;
unsigned char *jpeg_ptr = (unsigned char *)pJpegData;
unsigned char *yuv_ptr = (unsigned char *)pYuvData;
unsigned char *p;
int jpeg_size = 0;
int yuv_size = 0;
int i = 0;
LOGV("decodeInterleaveData Start~~~");
while (i < interleaveDataSize) {
if ((*interleave_ptr == 0xFFFFFFFF) || (*interleave_ptr == 0x02FFFFFF) ||
(*interleave_ptr == 0xFF02FFFF)) {
// Padding Data
interleave_ptr++;
i += 4;
} else if ((*interleave_ptr & 0xFFFF) == 0x05FF) {
// Start-code of YUV Data
p = (unsigned char *)interleave_ptr;
p += 2;
i += 2;
// Extract YUV Data
if (pYuvData != NULL) {
memcpy(yuv_ptr, p, yuvWidth * 2);
yuv_ptr += yuvWidth * 2;
yuv_size += yuvWidth * 2;
}
p += yuvWidth * 2;
i += yuvWidth * 2;
// Check End-code of YUV Data
if ((*p == 0xFF) && (*(p + 1) == 0x06)) {
interleave_ptr = (unsigned int *)(p + 2);
i += 2;
} else {
ret = false;
break;
}
} else {
// Extract JPEG Data
if (pJpegData != NULL) {
memcpy(jpeg_ptr, interleave_ptr, 4);
jpeg_ptr += 4;
jpeg_size += 4;
}
interleave_ptr++;
i += 4;
}
}
if (ret) {
if (pJpegData != NULL) {
// Remove Padding after EOI
for (i = 0; i < 3; i++) {
if (*(--jpeg_ptr) != 0xFF) {
break;
}
jpeg_size--;
}
*pJpegSize = jpeg_size;
}
// Check YUV Data Size
if (pYuvData != NULL) {
if (yuv_size != (yuvWidth * yuvHeight * 2)) {
ret = false;
}
}
}
LOGV("decodeInterleaveData End~~~");
return ret;
}
status_t CameraHardwareSec::dump(int fd) const
{
const size_t SIZE = 256;
char buffer[SIZE];
String8 result;
const Vector<String16> args;
if (mSecCamera != 0) {
mSecCamera->dump(fd);
mParameters.dump(fd, args);
mInternalParameters.dump(fd, args);
snprintf(buffer, 255, " preview running(%s)\n", mPreviewRunning?"true": "false");
result.append(buffer);
} else
result.append("No camera client yet.\n");
write(fd, result.string(), result.size());
return NO_ERROR;
}
bool CameraHardwareSec::isSupportedPreviewSize(const int width,
const int height) const
{
unsigned int i;
for (i = 0; i < mSupportedPreviewSizes.size(); i++) {
if (mSupportedPreviewSizes[i].width == width &&
mSupportedPreviewSizes[i].height == height)
return true;
}
return false;
}
bool CameraHardwareSec::getVideosnapshotSize(int *width, int *height)
{
unsigned int i;
Vector<Size> pictureSizes, videoSizes;
int ratio = FRM_RATIO(*width, *height);
mParameters.getSupportedPictureSizes(pictureSizes);
mParameters.getSupportedVideoSizes(videoSizes);
for (i = 0; i < pictureSizes.size(); i++) {
if (FRM_RATIO(pictureSizes[i].width, pictureSizes[i].height) == ratio) {
if (mRecordHint) {
if (pictureSizes[i].width <= videoSizes[0].width) {
*width = pictureSizes[i].width;
*height = pictureSizes[i].height;
LOGV("%s(width(%d), height(%d))", __func__, *width, *height);
return true;
}
} else {
*width = pictureSizes[i].width;
*height = pictureSizes[i].height;
LOGV("%s(width(%d), height(%d))", __func__, *width, *height);
return true;
}
}
}
return false;
}
status_t CameraHardwareSec::setParameters(const CameraParameters& params)
{
LOGV("%s :", __func__);
status_t ret = NO_ERROR;
const char *new_record_hint_str = params.get(CameraParameters::KEY_RECORDING_HINT);
const char *curr_record_hint_str = mParameters.get(CameraParameters::KEY_RECORDING_HINT);
LOGV("new_record_hint_str: %s", new_record_hint_str);
if (new_record_hint_str) {
if (strncmp(new_record_hint_str, curr_record_hint_str, 5)) {
mRecordHint = !strncmp(new_record_hint_str, "true", 4);
if (mSecCamera->setMode(mRecordHint) < 0) {
LOGE("ERR(%s):fail on mSecCamera->setMode(%d)", __func__, mRecordHint);
ret = UNKNOWN_ERROR;
} else {
mParameters.set(CameraParameters::KEY_RECORDING_HINT, new_record_hint_str);
}
if (mUseInternalISP) {
if (mSecCamera->initSetParams() < 0) {
LOGE("ERR(%s):fail on mSecCamera->initSetParams()", __func__);
ret = UNKNOWN_ERROR;
}
}
}
}
/* if someone calls us while picture thread is running, it could screw
* up the sensor quite a bit so return error. we can't wait because
* that would cause deadlock with the callbacks
*/
mStateLock.lock();
if (mCaptureInProgress) {
mStateLock.unlock();
LOGE("%s : capture in progress, not allowed", __func__);
return UNKNOWN_ERROR;
}
mStateLock.unlock();
// preview size
int new_preview_width = 0;
int new_preview_height = 0;
int new_preview_format = 0;
params.getPreviewSize(&new_preview_width, &new_preview_height);
if (mUseInternalISP) {
int videosnapshot_width = new_preview_width;
int videosnapshot_height = new_preview_height;
if (!getVideosnapshotSize(&videosnapshot_width, &videosnapshot_height)) {
LOGE("ERR(%s):fail on getVideosnapshotSize(width(%d), height(%d))",
__func__, videosnapshot_width, videosnapshot_height);
ret = UNKNOWN_ERROR;
}
if (mSecCamera->setVideosnapshotSize(videosnapshot_width, videosnapshot_height) < 0) {
LOGE("ERR(%s):fail on mSecCamera->setVideosnapshotSize(width(%d), height(%d))",
__func__, videosnapshot_width, videosnapshot_height);
ret = UNKNOWN_ERROR;
}
}
const char *new_str_preview_format = params.getPreviewFormat();
LOGV("%s : new_preview_width x new_preview_height = %dx%d, format = %s",
__func__, new_preview_width, new_preview_height, new_str_preview_format);
if (0 < new_preview_width && 0 < new_preview_height &&
new_str_preview_format != NULL &&
isSupportedPreviewSize(new_preview_width, new_preview_height)) {
mFrameSizeDelta = 16;
if (!strcmp(new_str_preview_format,
CameraParameters::PIXEL_FORMAT_RGB565)) {
new_preview_format = V4L2_PIX_FMT_RGB565;
mFrameSizeDelta = 0;
}
else if (!strcmp(new_str_preview_format,
CameraParameters::PIXEL_FORMAT_RGBA8888)) {
new_preview_format = V4L2_PIX_FMT_RGB32;
mFrameSizeDelta = 0;
}
else if (!strcmp(new_str_preview_format,
CameraParameters::PIXEL_FORMAT_YUV420SP)) {
new_preview_format = V4L2_PIX_FMT_NV21;
mPreviewFmtPlane = PREVIEW_FMT_2_PLANE;
}
else if (!strcmp(new_str_preview_format,
CameraParameters::PIXEL_FORMAT_YUV420P)) {
new_preview_format = V4L2_PIX_FMT_YVU420;
mPreviewFmtPlane = PREVIEW_FMT_3_PLANE;
}
else if (!strcmp(new_str_preview_format, "yuv420sp_custom"))
new_preview_format = V4L2_PIX_FMT_NV12T;
else if (!strcmp(new_str_preview_format, "yuv422i"))
new_preview_format = V4L2_PIX_FMT_YUYV;
else if (!strcmp(new_str_preview_format, "yuv422p"))
new_preview_format = V4L2_PIX_FMT_YUV422P;
else
new_preview_format = V4L2_PIX_FMT_NV21; //for 3rd party
int current_preview_width, current_preview_height, current_frame_size;
mSecCamera->getPreviewSize(¤t_preview_width,
¤t_preview_height,
¤t_frame_size);
int current_pixel_format = mSecCamera->getPreviewPixelFormat();
if (current_preview_width != new_preview_width ||
current_preview_height != new_preview_height ||
current_pixel_format != new_preview_format) {
if (mSecCamera->setPreviewSize(new_preview_width, new_preview_height,
new_preview_format) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setPreviewSize(width(%d), height(%d), format(%d))",
__func__, new_preview_width, new_preview_height, new_preview_format);
ret = UNKNOWN_ERROR;
} else {
if (mPreviewWindow) {
if (mPreviewRunning && !mPreviewStartDeferred) {
LOGE("ERR(%s): preview is running, cannot change size and format!", __func__);
ret = INVALID_OPERATION;
}
LOGV("%s: mPreviewWindow (%p) set_buffers_geometry", __func__, mPreviewWindow);
LOGV("%s: mPreviewWindow->set_buffers_geometry (%p)", __func__,
mPreviewWindow->set_buffers_geometry);
mPreviewWindow->set_buffers_geometry(mPreviewWindow,
new_preview_width, new_preview_height,
V4L2_PIX_2_HAL_PIXEL_FORMAT(new_preview_format));
LOGV("%s: DONE mPreviewWindow (%p) set_buffers_geometry", __func__, mPreviewWindow);
}
mParameters.setPreviewSize(new_preview_width, new_preview_height);
mParameters.setPreviewFormat(new_str_preview_format);
}
}
} else {
LOGE("%s: Invalid preview size(%dx%d)",
__func__, new_preview_width, new_preview_height);
ret = INVALID_OPERATION;
}
// picture size
int new_picture_width = 0;
int new_picture_height = 0;
params.getPictureSize(&new_picture_width, &new_picture_height);
LOGV("%s : new_picture_width x new_picture_height = %dx%d", __func__, new_picture_width, new_picture_height);
int current_picture_width, current_picture_height, current_picture_size;
mSecCamera->getSnapshotSize(¤t_picture_width, ¤t_picture_height, ¤t_picture_size);
if (new_picture_width != current_picture_width ||
new_picture_height != current_picture_height) {
if (mSecCamera->setSnapshotSize(new_picture_width, new_picture_height) < 0) {
LOGE("ERR(%s):fail on mSecCamera->setSnapshotSize(width(%d), height(%d))",
__func__, new_picture_width, new_picture_height);
ret = UNKNOWN_ERROR;
} else {
#ifdef ZERO_SHUTTER_LAG
mSecCamera->stopSnapshot();
if (mUseInternalISP && !mRecordHint && mPreviewRunning){
mSecCamera->startSnapshot(NULL);
}
#endif
mParameters.setPictureSize(new_picture_width, new_picture_height);
}
}
// picture format
const char *new_str_picture_format = params.getPictureFormat();
LOGV("%s : new_str_picture_format %s", __func__, new_str_picture_format);
if (new_str_picture_format != NULL) {
int new_picture_format = 0;
if (!strcmp(new_str_picture_format, CameraParameters::PIXEL_FORMAT_RGB565))
new_picture_format = V4L2_PIX_FMT_RGB565;
else if (!strcmp(new_str_picture_format, CameraParameters::PIXEL_FORMAT_RGBA8888))
new_picture_format = V4L2_PIX_FMT_RGB32;
else if (!strcmp(new_str_picture_format, CameraParameters::PIXEL_FORMAT_YUV420SP))
new_picture_format = V4L2_PIX_FMT_NV21;
else if (!strcmp(new_str_picture_format, "yuv420sp_custom"))
new_picture_format = V4L2_PIX_FMT_NV12T;
else if (!strcmp(new_str_picture_format, "yuv420p"))
new_picture_format = V4L2_PIX_FMT_YUV420;
else if (!strcmp(new_str_picture_format, "yuv422i"))
new_picture_format = V4L2_PIX_FMT_YUYV;
else if (!strcmp(new_str_picture_format, "uyv422i_custom")) //Zero copy UYVY format
new_picture_format = V4L2_PIX_FMT_UYVY;
else if (!strcmp(new_str_picture_format, "uyv422i")) //Non-zero copy UYVY format
new_picture_format = V4L2_PIX_FMT_UYVY;
else if (!strcmp(new_str_picture_format, CameraParameters::PIXEL_FORMAT_JPEG))
new_picture_format = V4L2_PIX_FMT_YUYV;
else if (!strcmp(new_str_picture_format, "yuv422p"))
new_picture_format = V4L2_PIX_FMT_YUV422P;
else
new_picture_format = V4L2_PIX_FMT_NV21; //for 3rd party
if (mSecCamera->setSnapshotPixelFormat(new_picture_format) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setSnapshotPixelFormat(format(%d))", __func__, new_picture_format);
ret = UNKNOWN_ERROR;
} else
mParameters.setPictureFormat(new_str_picture_format);
}
// JPEG image quality
int new_jpeg_quality = params.getInt(CameraParameters::KEY_JPEG_QUALITY);
LOGV("%s : new_jpeg_quality %d", __func__, new_jpeg_quality);
/* we ignore bad values */
if (new_jpeg_quality >=1 && new_jpeg_quality <= 100) {
if (mSecCamera->setJpegQuality(new_jpeg_quality) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setJpegQuality(quality(%d))", __func__, new_jpeg_quality);
ret = UNKNOWN_ERROR;
} else
mParameters.set(CameraParameters::KEY_JPEG_QUALITY, new_jpeg_quality);
}
// JPEG thumbnail size
int new_jpeg_thumbnail_width = params.getInt(CameraParameters::KEY_JPEG_THUMBNAIL_WIDTH);
int new_jpeg_thumbnail_height= params.getInt(CameraParameters::KEY_JPEG_THUMBNAIL_HEIGHT);
if (0 <= new_jpeg_thumbnail_width && 0 <= new_jpeg_thumbnail_height) {
if (mSecCamera->setJpegThumbnailSize(new_jpeg_thumbnail_width, new_jpeg_thumbnail_height) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setJpegThumbnailSize(width(%d), height(%d))", __func__, new_jpeg_thumbnail_width, new_jpeg_thumbnail_height);
ret = UNKNOWN_ERROR;
} else {
mParameters.set(CameraParameters::KEY_JPEG_THUMBNAIL_WIDTH, new_jpeg_thumbnail_width);
mParameters.set(CameraParameters::KEY_JPEG_THUMBNAIL_HEIGHT, new_jpeg_thumbnail_height);
}
}
// JPEG thumbnail quality
int new_jpeg_thumbnail_quality = params.getInt(CameraParameters::KEY_JPEG_THUMBNAIL_QUALITY);
LOGV("%s : new_jpeg_thumbnail_quality %d", __func__, new_jpeg_thumbnail_quality);
/* we ignore bad values */
if (new_jpeg_thumbnail_quality >=1 && new_jpeg_thumbnail_quality <= 100) {
if (mSecCamera->setJpegThumbnailQuality(new_jpeg_thumbnail_quality) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setJpegThumbnailQuality(quality(%d))",
__func__, new_jpeg_thumbnail_quality);
ret = UNKNOWN_ERROR;
} else
mParameters.set(CameraParameters::KEY_JPEG_THUMBNAIL_QUALITY, new_jpeg_thumbnail_quality);
}
// frame rate
int new_frame_rate = params.getPreviewFrameRate();
/* ignore any fps request, we're determine fps automatically based
* on scene mode. don't return an error because it causes CTS failure.
*/
if (mRecordHint) {
if (new_frame_rate) {
if (mUseInternalISP && (mSecCamera->setFrameRate(new_frame_rate) < 0)){
LOGE("ERR(%s):Fail on mSecCamera->setFrameRate(%d)", __func__, new_frame_rate);
ret = UNKNOWN_ERROR;
} else {
mParameters.setPreviewFrameRate(new_frame_rate);
}
}
}
// rotation
int new_rotation = params.getInt(CameraParameters::KEY_ROTATION);
LOGV("%s : new_rotation %d", __func__, new_rotation);
if (0 <= new_rotation) {
LOGV("%s : set orientation:%d", __func__, new_rotation);
if (mSecCamera->setExifOrientationInfo(new_rotation) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setExifOrientationInfo(%d)", __func__, new_rotation);
ret = UNKNOWN_ERROR;
} else
mParameters.set(CameraParameters::KEY_ROTATION, new_rotation);
}
// zoom
int new_zoom = params.getInt(CameraParameters::KEY_ZOOM);
int current_zoom = mParameters.getInt(CameraParameters::KEY_ZOOM);
LOGV("%s : new_zoom %d", __func__, new_zoom);
if (0 <= new_zoom) {
if (new_zoom != current_zoom) {
if (mSecCamera->setZoom(new_zoom) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setZoom(zoom(%d))", __func__, new_zoom);
ret = UNKNOWN_ERROR;
} else {
mParameters.set(CameraParameters::KEY_ZOOM, new_zoom);
}
}
}
// brightness
int new_brightness = params.getInt("brightness");
int max_brightness = params.getInt("brightness-max");
int min_brightness = params.getInt("brightness-min");
LOGV("%s : new_brightness %d", __func__, new_brightness);
if ((min_brightness <= new_brightness) &&
(max_brightness >= new_brightness)) {
if (mSecCamera->setBrightness(new_brightness) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setBrightness(brightness(%d))", __func__, new_brightness);
ret = UNKNOWN_ERROR;
} else {
mParameters.set("brightness", new_brightness);
}
}
// saturation
int new_saturation = params.getInt("saturation");
int max_saturation = params.getInt("saturation-max");
int min_saturation = params.getInt("saturation-min");
LOGV("%s : new_saturation %d", __func__, new_saturation);
if ((min_saturation <= new_saturation) &&
(max_saturation >= new_saturation)) {
if (mSecCamera->setSaturation(new_saturation) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setSaturation(saturation(%d))", __func__, new_saturation);
ret = UNKNOWN_ERROR;
} else {
mParameters.set("saturation", new_saturation);
}
}
// sharpness
int new_sharpness = params.getInt("sharpness");
int max_sharpness = params.getInt("sharpness-max");
int min_sharpness = params.getInt("sharpness-min");
LOGV("%s : new_sharpness %d", __func__, new_sharpness);
if ((min_sharpness <= new_sharpness) &&
(max_sharpness >= new_sharpness)) {
if (mSecCamera->setSharpness(new_sharpness) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setSharpness(sharpness(%d))", __func__, new_sharpness);
ret = UNKNOWN_ERROR;
} else {
mParameters.set("sharpness", new_sharpness);
}
}
// hue
int new_hue = params.getInt("hue");
int max_hue = params.getInt("hue-max");
int min_hue = params.getInt("hue-min");
LOGV("%s : new_hue %d", __func__, new_hue);
if ((min_hue <= new_hue) &&
(max_hue >= new_hue)) {
if (mSecCamera->setHue(new_hue) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setHue(hue(%d))", __func__, new_hue);
ret = UNKNOWN_ERROR;
} else {
mParameters.set("hue", new_hue);
}
}
// exposure
int new_exposure_compensation = params.getInt(CameraParameters::KEY_EXPOSURE_COMPENSATION);
int max_exposure_compensation = params.getInt(CameraParameters::KEY_MAX_EXPOSURE_COMPENSATION);
int min_exposure_compensation = params.getInt(CameraParameters::KEY_MIN_EXPOSURE_COMPENSATION);
LOGV("%s : new_exposure_compensation %d", __func__, new_exposure_compensation);
if ((min_exposure_compensation <= new_exposure_compensation) &&
(max_exposure_compensation >= new_exposure_compensation)) {
if (mSecCamera->setExposure(new_exposure_compensation) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setExposure(exposure(%d))", __func__, new_exposure_compensation);
ret = UNKNOWN_ERROR;
} else {
mParameters.set(CameraParameters::KEY_EXPOSURE_COMPENSATION, new_exposure_compensation);
}
}
const char *new_AE_lock = params.get(CameraParameters::KEY_AUTO_EXPOSURE_LOCK);
const char *old_AE_lock = mParameters.get(CameraParameters::KEY_AUTO_EXPOSURE_LOCK);
if ((new_AE_lock != NULL) && mUseInternalISP && mPreviewRunning) {
if (strncmp(new_AE_lock, old_AE_lock, 4)) {
int ae_value = !strncmp(new_AE_lock, "true", 4);
if (mSecCamera->setAutoExposureLock(ae_value) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setExposureLock", __func__);
ret = UNKNOWN_ERROR;
} else {
mParameters.set(CameraParameters::KEY_AUTO_EXPOSURE_LOCK, new_AE_lock);
}
}
}
// ISO
const char *new_iso_str = params.get("iso");
LOGV("%s : new_iso_str %s", __func__, new_iso_str);
if (new_iso_str != NULL) {
int new_iso = -1;
if (!strcmp(new_iso_str, "auto")) {
new_iso = ISO_AUTO;
} else if (!strcmp(new_iso_str, "50")) {
new_iso = ISO_50;
} else if (!strcmp(new_iso_str, "100")) {
new_iso = ISO_100;
} else if (!strcmp(new_iso_str, "200")) {
new_iso = ISO_200;
} else if (!strcmp(new_iso_str, "400")) {
new_iso = ISO_400;
} else if (!strcmp(new_iso_str, "800")) {
new_iso = ISO_800;
} else if (!strcmp(new_iso_str, "1600")) {
new_iso = ISO_1600;
} else {
LOGE("ERR(%s):Invalid iso value(%s)", __func__, new_iso_str);
ret = UNKNOWN_ERROR;
}
if (0 <= new_iso) {
if (mSecCamera->setISO(new_iso) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setISO(iso(%d))", __func__, new_iso);
ret = UNKNOWN_ERROR;
} else {
mParameters.set("iso", new_iso_str);
}
}
}
// Metering
const char *new_metering_str = params.get("metering");
LOGV("%s : new_metering_str %s", __func__, new_metering_str);
if (new_metering_str != NULL) {
int new_metering = -1;
if (!strcmp(new_metering_str, "center")) {
new_metering = METERING_CENTER;
} else if (!strcmp(new_metering_str, "spot")) {
new_metering = METERING_SPOT;
} else if (!strcmp(new_metering_str, "matrix")) {
new_metering = METERING_MATRIX;
} else {
LOGE("ERR(%s):Invalid metering value(%s)", __func__, new_metering_str);
ret = UNKNOWN_ERROR;
}
if (0 <= new_metering) {
if (mSecCamera->setMetering(new_metering) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setMetering(metering(%d))", __func__, new_metering);
ret = UNKNOWN_ERROR;
} else {
mParameters.set("metering", new_metering_str);
}
}
}
// AFC
const char *new_antibanding_str = params.get(CameraParameters::KEY_ANTIBANDING);
LOGV("%s : new_antibanding_str %s", __func__, new_antibanding_str);
if (new_antibanding_str != NULL) {
int new_antibanding = -1;
if (!strcmp(new_antibanding_str, CameraParameters::ANTIBANDING_AUTO)) {
if (mUseInternalISP)
new_antibanding = IS_AFC_AUTO;
else
new_antibanding = ANTI_BANDING_AUTO;
} else if (!strcmp(new_antibanding_str, CameraParameters::ANTIBANDING_50HZ)) {
if (mUseInternalISP)
new_antibanding = IS_AFC_MANUAL_50HZ;
else
new_antibanding = ANTI_BANDING_50HZ;
} else if (!strcmp(new_antibanding_str, CameraParameters::ANTIBANDING_60HZ)) {
if (mUseInternalISP)
new_antibanding = IS_AFC_MANUAL_60HZ;
else
new_antibanding = ANTI_BANDING_60HZ;
} else if (!strcmp(new_antibanding_str, CameraParameters::ANTIBANDING_OFF)) {
if (mUseInternalISP)
new_antibanding = IS_AFC_DISABLE;
else
new_antibanding = ANTI_BANDING_OFF;
} else {
LOGE("ERR(%s):Invalid antibanding value(%s)", __func__, new_antibanding_str);
ret = UNKNOWN_ERROR;
}
if (0 <= new_antibanding) {
if (mSecCamera->setAntiBanding(new_antibanding) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setAntiBanding(antibanding(%d))", __func__, new_antibanding);
ret = UNKNOWN_ERROR;
} else {
mParameters.set(CameraParameters::KEY_ANTIBANDING, new_antibanding_str);
}
}
}
// scene mode
const char *new_scene_mode_str = params.get(CameraParameters::KEY_SCENE_MODE);
const char *current_scene_mode_str = mParameters.get(CameraParameters::KEY_SCENE_MODE);
// fps range
int new_min_fps = 0;
int new_max_fps = 0;
int current_min_fps, current_max_fps;
params.getPreviewFpsRange(&new_min_fps, &new_max_fps);
mParameters.getPreviewFpsRange(¤t_min_fps, ¤t_max_fps);
/* our fps range is determined by the sensor, reject any request
* that isn't exactly what we're already at.
* but the check is performed when requesting only changing fps range
*/
if (new_scene_mode_str && current_scene_mode_str) {
if (!strcmp(new_scene_mode_str, current_scene_mode_str)) {
if ((new_min_fps != current_min_fps) || (new_max_fps != current_max_fps)) {
LOGW("%s : requested new_min_fps = %d, new_max_fps = %d not allowed",
__func__, new_min_fps, new_max_fps);
/* TODO : We need policy for fps. */
LOGW("%s : current_min_fps = %d, current_max_fps = %d",
__func__, current_min_fps, current_max_fps);
//ret = UNKNOWN_ERROR;
}
}
} else {
/* Check basic validation if scene mode is different */
if ((new_min_fps > new_max_fps) ||
(new_min_fps < 0) || (new_max_fps < 0))
ret = UNKNOWN_ERROR;
}
const char *new_flash_mode_str = params.get(CameraParameters::KEY_FLASH_MODE);
const char *new_focus_mode_str = params.get(CameraParameters::KEY_FOCUS_MODE);
const char *new_white_str = params.get(CameraParameters::KEY_WHITE_BALANCE);
// fps range is (15000,30000) by default.
mParameters.set(CameraParameters::KEY_SUPPORTED_PREVIEW_FPS_RANGE, "(15000,30000)");
mParameters.set(CameraParameters::KEY_PREVIEW_FPS_RANGE, "15000,30000");
if ((new_scene_mode_str != NULL) && (current_scene_mode_str != NULL) && strncmp(new_scene_mode_str, current_scene_mode_str, 5)) {
int new_scene_mode = -1;
if (!strcmp(new_scene_mode_str, CameraParameters::SCENE_MODE_AUTO)) {
new_scene_mode = SCENE_MODE_NONE;
} else {
// defaults for non-auto scene modes
new_focus_mode_str = CameraParameters::FOCUS_MODE_AUTO;
new_flash_mode_str = CameraParameters::FLASH_MODE_OFF;
new_white_str = CameraParameters::WHITE_BALANCE_AUTO;
mParameters.set(CameraParameters::KEY_WHITE_BALANCE, new_white_str);
if (!strcmp(new_scene_mode_str, CameraParameters::SCENE_MODE_PORTRAIT)) {
new_scene_mode = SCENE_MODE_PORTRAIT;
if (mCameraID == SecCamera::CAMERA_ID_BACK)
new_flash_mode_str = CameraParameters::FLASH_MODE_AUTO;
} else if (!strcmp(new_scene_mode_str, CameraParameters::SCENE_MODE_LANDSCAPE)) {
new_scene_mode = SCENE_MODE_LANDSCAPE;
} else if (!strcmp(new_scene_mode_str, CameraParameters::SCENE_MODE_SPORTS)) {
new_scene_mode = SCENE_MODE_SPORTS;
} else if (!strcmp(new_scene_mode_str, CameraParameters::SCENE_MODE_PARTY)) {
new_scene_mode = SCENE_MODE_PARTY_INDOOR;
if (mCameraID == SecCamera::CAMERA_ID_BACK)
new_flash_mode_str = CameraParameters::FLASH_MODE_AUTO;
} else if ((!strcmp(new_scene_mode_str, CameraParameters::SCENE_MODE_BEACH)) ||
(!strcmp(new_scene_mode_str, CameraParameters::SCENE_MODE_SNOW))) {
new_scene_mode = SCENE_MODE_BEACH_SNOW;
} else if (!strcmp(new_scene_mode_str, CameraParameters::SCENE_MODE_SUNSET)) {
new_scene_mode = SCENE_MODE_SUNSET;
} else if (!strcmp(new_scene_mode_str, CameraParameters::SCENE_MODE_NIGHT)) {
new_scene_mode = SCENE_MODE_NIGHTSHOT;
mParameters.set(CameraParameters::KEY_SUPPORTED_PREVIEW_FPS_RANGE, "(4000,30000)");
mParameters.set(CameraParameters::KEY_PREVIEW_FPS_RANGE, "4000,30000");
} else if (!strcmp(new_scene_mode_str, CameraParameters::SCENE_MODE_FIREWORKS)) {
new_scene_mode = SCENE_MODE_FIREWORKS;
} else if (!strcmp(new_scene_mode_str, CameraParameters::SCENE_MODE_CANDLELIGHT)) {
new_scene_mode = SCENE_MODE_CANDLE_LIGHT;
} else {
LOGE("%s::unmatched scene_mode(%s)",
__func__, new_scene_mode_str); //action, night-portrait, theatre, steadyphoto
ret = UNKNOWN_ERROR;
}
}
if (0 <= new_scene_mode) {
if (mSecCamera->setSceneMode(new_scene_mode) < 0) {
LOGE("%s::mSecCamera->setSceneMode(%d) fail", __func__, new_scene_mode);
ret = UNKNOWN_ERROR;
} else {
mParameters.set(CameraParameters::KEY_SCENE_MODE, new_scene_mode_str);
}
}
}
// focus mode
/* TODO : currently only posible focus modes at BACK camera */
if ((new_focus_mode_str != NULL) && (mCameraID == SecCamera::CAMERA_ID_BACK)) {
int new_focus_mode = -1;
if (!strcmp(new_focus_mode_str,
CameraParameters::FOCUS_MODE_AUTO)) {
new_focus_mode = FOCUS_MODE_AUTO;
mParameters.set(CameraParameters::KEY_FOCUS_DISTANCES,
BACK_CAMERA_AUTO_FOCUS_DISTANCES_STR);
} else if (!strcmp(new_focus_mode_str,
CameraParameters::FOCUS_MODE_MACRO)) {
new_focus_mode = FOCUS_MODE_MACRO;
mParameters.set(CameraParameters::KEY_FOCUS_DISTANCES,
BACK_CAMERA_MACRO_FOCUS_DISTANCES_STR);
} else if (!strcmp(new_focus_mode_str,
CameraParameters::FOCUS_MODE_INFINITY)) {
new_focus_mode = FOCUS_MODE_INFINITY;
mParameters.set(CameraParameters::KEY_FOCUS_DISTANCES,
BACK_CAMERA_INFINITY_FOCUS_DISTANCES_STR);
} else if (!strcmp(new_focus_mode_str,
CameraParameters::FOCUS_MODE_CONTINUOUS_VIDEO) ||
!strcmp(new_focus_mode_str,
CameraParameters::FOCUS_MODE_CONTINUOUS_PICTURE)) {
new_focus_mode = FOCUS_MODE_CONTINOUS;
} else {
/* TODO */
/* This is temperary implementation.
When camera support all AF mode, this code will be changing */
LOGE("%s::unmatched focus_mode(%s)", __func__, new_focus_mode_str);
ret = UNKNOWN_ERROR;
}
if (0 <= new_focus_mode) {
if (mSecCamera->setFocusMode(new_focus_mode) < 0) {
LOGE("%s::mSecCamera->setFocusMode(%d) fail", __func__, new_focus_mode);
ret = UNKNOWN_ERROR;
} else {
mParameters.set(CameraParameters::KEY_FOCUS_MODE, new_focus_mode_str);
}
}
}
// flash..
if (new_flash_mode_str != NULL) {
int new_flash_mode = -1;
if (!strcmp(new_flash_mode_str, CameraParameters::FLASH_MODE_OFF))
new_flash_mode = FLASH_MODE_OFF;
else if (!strcmp(new_flash_mode_str, CameraParameters::FLASH_MODE_AUTO))
new_flash_mode = FLASH_MODE_AUTO;
else if (!strcmp(new_flash_mode_str, CameraParameters::FLASH_MODE_ON))
new_flash_mode = FLASH_MODE_ON;
else if (!strcmp(new_flash_mode_str, CameraParameters::FLASH_MODE_TORCH))
new_flash_mode = FLASH_MODE_TORCH;
else {
LOGE("%s::unmatched flash_mode(%s)", __func__, new_flash_mode_str); //red-eye
ret = UNKNOWN_ERROR;
}
if (0 <= new_flash_mode) {
if (mSecCamera->setFlashMode(new_flash_mode) < 0) {
LOGE("%s::mSecCamera->setFlashMode(%d) fail", __func__, new_flash_mode);
ret = UNKNOWN_ERROR;
} else {
mParameters.set(CameraParameters::KEY_FLASH_MODE, new_flash_mode_str);
}
}
}
// whitebalance
LOGV("%s : new_white_str %s", __func__, new_white_str);
if ((new_scene_mode_str != NULL) && !strcmp(new_scene_mode_str, CameraParameters::SCENE_MODE_AUTO)) {
if (new_white_str != NULL) {
int new_white = -1;
if (!strcmp(new_white_str, CameraParameters::WHITE_BALANCE_AUTO)) {
new_white = WHITE_BALANCE_AUTO;
} else if (!strcmp(new_white_str,
CameraParameters::WHITE_BALANCE_DAYLIGHT)) {
new_white = WHITE_BALANCE_SUNNY;
} else if (!strcmp(new_white_str,
CameraParameters::WHITE_BALANCE_CLOUDY_DAYLIGHT)) {
new_white = WHITE_BALANCE_CLOUDY;
} else if (!strcmp(new_white_str,
CameraParameters::WHITE_BALANCE_FLUORESCENT)) {
new_white = WHITE_BALANCE_FLUORESCENT;
} else if (!strcmp(new_white_str,
CameraParameters::WHITE_BALANCE_INCANDESCENT)) {
new_white = WHITE_BALANCE_TUNGSTEN;
} else {
LOGE("ERR(%s):Invalid white balance(%s)", __func__, new_white_str); //twilight, shade, warm_flourescent
ret = UNKNOWN_ERROR;
}
if (0 <= new_white) {
if (mSecCamera->setWhiteBalance(new_white) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setWhiteBalance(white(%d))", __func__, new_white);
ret = UNKNOWN_ERROR;
} else {
mParameters.set(CameraParameters::KEY_WHITE_BALANCE, new_white_str);
}
}
}
}
const char *new_AWB_lock = params.get(CameraParameters::KEY_AUTO_WHITEBALANCE_LOCK);
const char *old_AWB_lock = mParameters.get(CameraParameters::KEY_AUTO_WHITEBALANCE_LOCK);
if (new_AWB_lock != NULL && mUseInternalISP && mPreviewRunning) {
if (strncmp(new_AWB_lock, old_AWB_lock, 4)) {
int awb_value = !strncmp(new_AWB_lock, "true", 4);
if (mSecCamera->setAutoWhiteBalanceLock(awb_value) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setoAutoWhiteBalanceLock()", __func__);
ret = UNKNOWN_ERROR;
} else {
mParameters.set(CameraParameters::KEY_AUTO_WHITEBALANCE_LOCK, new_AWB_lock);
}
}
}
const char *new_touch_rect_str = params.get(CameraParameters::KEY_FOCUS_AREAS);
LOGV("Touched rect is '%s'", new_touch_rect_str);
if (new_touch_rect_str != NULL) {
int left = 0, top = 0, right = 0, bottom = 0, touched = 0;
int objx, objy;
char *end;
char delim = ',';
left = (int)strtol(new_touch_rect_str+1, &end, 10);
if (*end != delim) {
LOGE("Cannot find '%c' in str=%s", delim, new_touch_rect_str);
return -1;
}
top = (int)strtol(end+1, &end, 10);
if (*end != delim) {
LOGE("Cannot find '%c' in str=%s", delim, new_touch_rect_str);
return -1;
}
right = (int)strtol(end+1, &end, 10);
if (*end != delim) {
LOGE("Cannot find '%c' in str=%s", delim, new_touch_rect_str);
return -1;
}
bottom = (int)strtol(end+1, &end, 10);
if (*end != delim) {
LOGE("Cannot find '%c' in str=%s", delim, new_touch_rect_str);
return -1;
}
touched = (int)strtol(end+1, &end, 10);
if (*end != ')') {
LOGE("Cannot find ')' in str=%s", new_touch_rect_str);
return -1;
}
/* TODO : Converting axis and Calcurating center of rect. Because driver need (x, y) point. */
objx = (int)((1023 * (left + 1000)) / 2000) + 97;
objy = (int)((1023 * (top + 1000)) / 2000) + 128;
mTouched = touched;
mSecCamera->setObjectPosition(objx, objy);
}
// image effect
const char *new_image_effect_str = params.get(CameraParameters::KEY_EFFECT);
if (new_image_effect_str != NULL) {
int new_image_effect = -1;
if (!strcmp(new_image_effect_str, CameraParameters::EFFECT_NONE)) {
new_image_effect = IMAGE_EFFECT_NONE;
} else if (!strcmp(new_image_effect_str, CameraParameters::EFFECT_MONO)) {
new_image_effect = IMAGE_EFFECT_BNW;
} else if (!strcmp(new_image_effect_str, CameraParameters::EFFECT_SEPIA)) {
new_image_effect = IMAGE_EFFECT_SEPIA;
} else if (!strcmp(new_image_effect_str, CameraParameters::EFFECT_AQUA))
new_image_effect = IMAGE_EFFECT_AQUA;
else if (!strcmp(new_image_effect_str, CameraParameters::EFFECT_NEGATIVE)) {
new_image_effect = IMAGE_EFFECT_NEGATIVE;
} else {
//posterize, whiteboard, blackboard, solarize
LOGE("ERR(%s):Invalid effect(%s)", __func__, new_image_effect_str);
ret = UNKNOWN_ERROR;
}
if (new_image_effect >= 0) {
if (mSecCamera->setImageEffect(new_image_effect) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setImageEffect(effect(%d))", __func__, new_image_effect);
ret = UNKNOWN_ERROR;
} else {
const char *old_image_effect_str = mParameters.get(CameraParameters::KEY_EFFECT);
if (old_image_effect_str) {
if (strcmp(old_image_effect_str, new_image_effect_str)) {
setSkipFrame(EFFECT_SKIP_FRAME);
}
}
mParameters.set(CameraParameters::KEY_EFFECT, new_image_effect_str);
}
}
}
//contrast
const char *new_contrast_str = params.get("contrast");
LOGV("%s : new_contrast_str %s", __func__, new_contrast_str);
if (new_contrast_str != NULL) {
int new_contrast = -1;
if (!strcmp(new_contrast_str, "auto")) {
if (mUseInternalISP)
new_contrast = IS_CONTRAST_AUTO;
else
LOGW("WARN(%s):Invalid contrast value (%s)", __func__, new_contrast_str);
} else if (!strcmp(new_contrast_str, "-2")) {
if (mUseInternalISP)
new_contrast = IS_CONTRAST_MINUS_2;
else
new_contrast = CONTRAST_MINUS_2;
} else if (!strcmp(new_contrast_str, "-1")) {
if (mUseInternalISP)
new_contrast = IS_CONTRAST_MINUS_1;
else
new_contrast = CONTRAST_MINUS_1;
} else if (!strcmp(new_contrast_str, "0")) {
if (mUseInternalISP)
new_contrast = IS_CONTRAST_DEFAULT;
else
new_contrast = CONTRAST_DEFAULT;
} else if (!strcmp(new_contrast_str, "1")) {
if (mUseInternalISP)
new_contrast = IS_CONTRAST_PLUS_1;
else
new_contrast = CONTRAST_PLUS_1;
} else if (!strcmp(new_contrast_str, "2")) {
if (mUseInternalISP)
new_contrast = IS_CONTRAST_PLUS_2;
else
new_contrast = CONTRAST_PLUS_2;
} else {
LOGE("ERR(%s):Invalid contrast value(%s)", __func__, new_contrast_str);
ret = UNKNOWN_ERROR;
}
if (0 <= new_contrast) {
if (mSecCamera->setContrast(new_contrast) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setContrast(contrast(%d))", __func__, new_contrast);
ret = UNKNOWN_ERROR;
} else {
mParameters.set("contrast", new_contrast_str);
}
}
}
//WDR
int new_wdr = params.getInt("wdr");
LOGV("%s : new_wdr %d", __func__, new_wdr);
if (0 <= new_wdr) {
if (mSecCamera->setWDR(new_wdr) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setWDR(%d)", __func__, new_wdr);
ret = UNKNOWN_ERROR;
}
}
//anti shake
int new_anti_shake = mInternalParameters.getInt("anti-shake");
if (0 <= new_anti_shake) {
if (mSecCamera->setAntiShake(new_anti_shake) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setWDR(%d)", __func__, new_anti_shake);
ret = UNKNOWN_ERROR;
}
}
// gps latitude
const char *new_gps_latitude_str = params.get(CameraParameters::KEY_GPS_LATITUDE);
if (mSecCamera->setGPSLatitude(new_gps_latitude_str) < 0) {
LOGE("%s::mSecCamera->setGPSLatitude(%s) fail", __func__, new_gps_latitude_str);
ret = UNKNOWN_ERROR;
} else {
if (new_gps_latitude_str) {
mParameters.set(CameraParameters::KEY_GPS_LATITUDE, new_gps_latitude_str);
} else {
mParameters.remove(CameraParameters::KEY_GPS_LATITUDE);
}
}
// gps longitude
const char *new_gps_longitude_str = params.get(CameraParameters::KEY_GPS_LONGITUDE);
if (mSecCamera->setGPSLongitude(new_gps_longitude_str) < 0) {
LOGE("%s::mSecCamera->setGPSLongitude(%s) fail", __func__, new_gps_longitude_str);
ret = UNKNOWN_ERROR;
} else {
if (new_gps_longitude_str) {
mParameters.set(CameraParameters::KEY_GPS_LONGITUDE, new_gps_longitude_str);
} else {
mParameters.remove(CameraParameters::KEY_GPS_LONGITUDE);
}
}
// gps altitude
const char *new_gps_altitude_str = params.get(CameraParameters::KEY_GPS_ALTITUDE);
if (mSecCamera->setGPSAltitude(new_gps_altitude_str) < 0) {
LOGE("%s::mSecCamera->setGPSAltitude(%s) fail", __func__, new_gps_altitude_str);
ret = UNKNOWN_ERROR;
} else {
if (new_gps_altitude_str) {
mParameters.set(CameraParameters::KEY_GPS_ALTITUDE, new_gps_altitude_str);
} else {
mParameters.remove(CameraParameters::KEY_GPS_ALTITUDE);
}
}
// gps timestamp
const char *new_gps_timestamp_str = params.get(CameraParameters::KEY_GPS_TIMESTAMP);
if (mSecCamera->setGPSTimeStamp(new_gps_timestamp_str) < 0) {
LOGE("%s::mSecCamera->setGPSTimeStamp(%s) fail", __func__, new_gps_timestamp_str);
ret = UNKNOWN_ERROR;
} else {
if (new_gps_timestamp_str) {
mParameters.set(CameraParameters::KEY_GPS_TIMESTAMP, new_gps_timestamp_str);
} else {
mParameters.remove(CameraParameters::KEY_GPS_TIMESTAMP);
}
}
// gps processing method
const char *new_gps_processing_method_str = params.get(CameraParameters::KEY_GPS_PROCESSING_METHOD);
if (mSecCamera->setGPSProcessingMethod(new_gps_processing_method_str) < 0) {
LOGE("%s::mSecCamera->setGPSProcessingMethod(%s) fail", __func__, new_gps_processing_method_str);
ret = UNKNOWN_ERROR;
} else {
if (new_gps_processing_method_str) {
mParameters.set(CameraParameters::KEY_GPS_PROCESSING_METHOD, new_gps_processing_method_str);
} else {
mParameters.remove(CameraParameters::KEY_GPS_PROCESSING_METHOD);
}
}
// Recording size
/* TODO */
/* GED application don't set different recording size before recording button is pushed */
int new_recording_width = 0;
int new_recording_height = 0;
params.getVideoSize(&new_recording_width, &new_recording_height);
LOGV("new_recording_width (%d) new_recording_height (%d)",
new_recording_width, new_recording_height);
int current_recording_width, current_recording_height;
mParameters.getVideoSize(¤t_recording_width, ¤t_recording_height);
LOGV("current_recording_width (%d) current_recording_height (%d)",
current_recording_width, current_recording_height);
if (current_recording_width != new_recording_width ||
current_recording_height != new_recording_height) {
if (0 < new_recording_width && 0 < new_recording_height) {
if (mSecCamera->setRecordingSize(new_recording_width, new_recording_height) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setRecordingSize(width(%d), height(%d))",
__func__, new_recording_width, new_recording_height);
ret = UNKNOWN_ERROR;
}
mParameters.setVideoSize(new_recording_width, new_recording_height);
}
}
//gamma
const char *new_gamma_str = mInternalParameters.get("video_recording_gamma");
if (new_gamma_str != NULL) {
int new_gamma = -1;
if (!strcmp(new_gamma_str, "off"))
new_gamma = GAMMA_OFF;
else if (!strcmp(new_gamma_str, "on"))
new_gamma = GAMMA_ON;
else {
LOGE("%s::unmatched gamma(%s)", __func__, new_gamma_str);
ret = UNKNOWN_ERROR;
}
if (0 <= new_gamma) {
if (mSecCamera->setGamma(new_gamma) < 0) {
LOGE("%s::mSecCamera->setGamma(%d) fail", __func__, new_gamma);
ret = UNKNOWN_ERROR;
}
}
}
//slow ae
const char *new_slow_ae_str = mInternalParameters.get("slow_ae");
if (new_slow_ae_str != NULL) {
int new_slow_ae = -1;
if (!strcmp(new_slow_ae_str, "off"))
new_slow_ae = SLOW_AE_OFF;
else if (!strcmp(new_slow_ae_str, "on"))
new_slow_ae = SLOW_AE_ON;
else {
LOGE("%s::unmatched slow_ae(%s)", __func__, new_slow_ae_str);
ret = UNKNOWN_ERROR;
}
if (0 <= new_slow_ae) {
if (mSecCamera->setSlowAE(new_slow_ae) < 0) {
LOGE("%s::mSecCamera->setSlowAE(%d) fail", __func__, new_slow_ae);
ret = UNKNOWN_ERROR;
}
}
}
/*Camcorder fix fps*/
int new_sensor_mode = mInternalParameters.getInt("cam_mode");
if (0 <= new_sensor_mode) {
if (mSecCamera->setSensorMode(new_sensor_mode) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setSensorMode(%d)", __func__, new_sensor_mode);
ret = UNKNOWN_ERROR;
}
} else {
new_sensor_mode=0;
}
/*Shot mode*/
int new_shot_mode = mInternalParameters.getInt("shot_mode");
if (0 <= new_shot_mode) {
if (mSecCamera->setShotMode(new_shot_mode) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setShotMode(%d)", __func__, new_shot_mode);
ret = UNKNOWN_ERROR;
}
} else {
new_shot_mode=0;
}
// chk_dataline
int new_dataline = mInternalParameters.getInt("chk_dataline");
if (0 <= new_dataline) {
if (mSecCamera->setDataLineCheck(new_dataline) < 0) {
LOGE("ERR(%s):Fail on mSecCamera->setDataLineCheck(%d)", __func__, new_dataline);
ret = UNKNOWN_ERROR;
}
}
LOGV("%s return ret = %d", __func__, ret);
return ret;
}
CameraParameters CameraHardwareSec::getParameters() const
{
LOGV("%s :", __func__);
return mParameters;
}
status_t CameraHardwareSec::sendCommand(int32_t command, int32_t arg1, int32_t arg2)
{
/* TODO */
/* CAMERA_CMD_START_FACE_DETECTION and CAMERA_CMD_STOP_FACE_DETECTION
for Face Detection */
if(command == CAMERA_CMD_START_FACE_DETECTION) {
if (mSecCamera->setFaceDetect(FACE_DETECTION_ON) < 0) {
LOGE("ERR(%s): Fail on mSecCamera->startFaceDetection()", __func__);
return BAD_VALUE;
} else {
return NO_ERROR;
}
}
if(command == CAMERA_CMD_STOP_FACE_DETECTION) {
if (mSecCamera->setFaceDetect(FACE_DETECTION_OFF) < 0) {
LOGE("ERR(%s): Fail on mSecCamera->stopFaceDetection()", __func__);
return BAD_VALUE;
} else {
return NO_ERROR;
}
}
return BAD_VALUE;
}
void CameraHardwareSec::release()
{
LOGV("%s", __func__);
/* shut down any threads we have that might be running. do it here
* instead of the destructor. we're guaranteed to be on another thread
* than the ones below. if we used the destructor, since the threads
* have a reference to this object, we could wind up trying to wait
* for ourself to exit, which is a deadlock.
*/
if (mPreviewThread != NULL) {
/* this thread is normally already in it's threadLoop but blocked
* on the condition variable or running. signal it so it wakes
* up and can exit.
*/
mPreviewThread->requestExit();
mExitPreviewThread = true;
mPreviewRunning = true; /* let it run so it can exit */
mPreviewCondition.signal();
mPreviewThread->requestExitAndWait();
mPreviewThread.clear();
}
if (mAutoFocusThread != NULL) {
/* this thread is normally already in it's threadLoop but blocked
* on the condition variable. signal it so it wakes up and can exit.
*/
mFocusLock.lock();
mAutoFocusThread->requestExit();
mExitAutoFocusThread = true;
mFocusCondition.signal();
mFocusLock.unlock();
mAutoFocusThread->requestExitAndWait();
mAutoFocusThread.clear();
}
if (mPictureThread != NULL) {
mPictureThread->requestExitAndWait();
mPictureThread.clear();
}
#ifdef IS_FW_DEBUG
if (mDebugThread != NULL) {
mDebugThread->requestExitAndWait();
mDebugThread.clear();
}
#endif
if (mRawHeap) {
mRawHeap->release(mRawHeap);
mRawHeap = 0;
}
if (mPreviewHeap) {
mPreviewHeap->release(mPreviewHeap);
mPreviewHeap = 0;
}
for(int i = 0; i < BUFFER_COUNT_FOR_ARRAY; i++) {
if (mRecordHeap[i]) {
mRecordHeap[i]->release(mRecordHeap[i]);
mRecordHeap[i] = 0;
}
}
/* close after all the heaps are cleared since those
* could have dup'd our file descriptor.
*/
mSecCamera->DestroyCamera();
}
static CameraInfo sCameraInfo[] = {
{
CAMERA_FACING_BACK,
90, /* orientation */
},
{
CAMERA_FACING_FRONT,
90, /* orientation */
}
};
status_t CameraHardwareSec::storeMetaDataInBuffers(bool enable)
{
// FIXME:
// metadata buffer mode can be turned on or off.
// Samsung needs to fix this.
if (!enable) {
LOGE("Non-metadata buffer mode is not supported!");
return INVALID_OPERATION;
}
return OK;
}
/** Close this device */
static camera_device_t *g_cam_device;
static int HAL_camera_device_close(struct hw_device_t* device)
{
LOGI("%s", __func__);
if (device) {
camera_device_t *cam_device = (camera_device_t *)device;
delete static_cast<CameraHardwareSec *>(cam_device->priv);
free(cam_device);
g_cam_device = 0;
}
return 0;
}
static inline CameraHardwareSec *obj(struct camera_device *dev)
{
return reinterpret_cast<CameraHardwareSec *>(dev->priv);
}
/** Set the preview_stream_ops to which preview frames are sent */
static int HAL_camera_device_set_preview_window(struct camera_device *dev,
struct preview_stream_ops *buf)
{
LOGV("%s", __func__);
return obj(dev)->setPreviewWindow(buf);
}
/** Set the notification and data callbacks */
static void HAL_camera_device_set_callbacks(struct camera_device *dev,
camera_notify_callback notify_cb,
camera_data_callback data_cb,
camera_data_timestamp_callback data_cb_timestamp,
camera_request_memory get_memory,
void* user)
{
LOGV("%s", __func__);
obj(dev)->setCallbacks(notify_cb, data_cb, data_cb_timestamp,
get_memory,
user);
}
/**
* The following three functions all take a msg_type, which is a bitmask of
* the messages defined in include/ui/Camera.h
*/
/**
* Enable a message, or set of messages.
*/
static void HAL_camera_device_enable_msg_type(struct camera_device *dev, int32_t msg_type)
{
LOGV("%s", __func__);
obj(dev)->enableMsgType(msg_type);
}
/**
* Disable a message, or a set of messages.
*
* Once received a call to disableMsgType(CAMERA_MSG_VIDEO_FRAME), camera
* HAL should not rely on its client to call releaseRecordingFrame() to
* release video recording frames sent out by the cameral HAL before and
* after the disableMsgType(CAMERA_MSG_VIDEO_FRAME) call. Camera HAL
* clients must not modify/access any video recording frame after calling
* disableMsgType(CAMERA_MSG_VIDEO_FRAME).
*/
static void HAL_camera_device_disable_msg_type(struct camera_device *dev, int32_t msg_type)
{
LOGV("%s", __func__);
obj(dev)->disableMsgType(msg_type);
}
/**
* Query whether a message, or a set of messages, is enabled. Note that
* this is operates as an AND, if any of the messages queried are off, this
* will return false.
*/
static int HAL_camera_device_msg_type_enabled(struct camera_device *dev, int32_t msg_type)
{
LOGV("%s", __func__);
return obj(dev)->msgTypeEnabled(msg_type);
}
/**
* Start preview mode.
*/
static int HAL_camera_device_start_preview(struct camera_device *dev)
{
LOGV("%s", __func__);
return obj(dev)->startPreview();
}
/**
* Stop a previously started preview.
*/
static void HAL_camera_device_stop_preview(struct camera_device *dev)
{
LOGV("%s", __func__);
obj(dev)->stopPreview();
}
/**
* Returns true if preview is enabled.
*/
static int HAL_camera_device_preview_enabled(struct camera_device *dev)
{
LOGV("%s", __func__);
return obj(dev)->previewEnabled();
}
/**
* Request the camera HAL to store meta data or real YUV data in the video
* buffers sent out via CAMERA_MSG_VIDEO_FRAME for a recording session. If
* it is not called, the default camera HAL behavior is to store real YUV
* data in the video buffers.
*
* This method should be called before startRecording() in order to be
* effective.
*
* If meta data is stored in the video buffers, it is up to the receiver of
* the video buffers to interpret the contents and to find the actual frame
* data with the help of the meta data in the buffer. How this is done is
* outside of the scope of this method.
*
* Some camera HALs may not support storing meta data in the video buffers,
* but all camera HALs should support storing real YUV data in the video
* buffers. If the camera HAL does not support storing the meta data in the
* video buffers when it is requested to do do, INVALID_OPERATION must be
* returned. It is very useful for the camera HAL to pass meta data rather
* than the actual frame data directly to the video encoder, since the
* amount of the uncompressed frame data can be very large if video size is
* large.
*
* @param enable if true to instruct the camera HAL to store
* meta data in the video buffers; false to instruct
* the camera HAL to store real YUV data in the video
* buffers.
*
* @return OK on success.
*/
static int HAL_camera_device_store_meta_data_in_buffers(struct camera_device *dev, int enable)
{
LOGV("%s", __func__);
return obj(dev)->storeMetaDataInBuffers(enable);
}
/**
* Start record mode. When a record image is available, a
* CAMERA_MSG_VIDEO_FRAME message is sent with the corresponding
* frame. Every record frame must be released by a camera HAL client via
* releaseRecordingFrame() before the client calls
* disableMsgType(CAMERA_MSG_VIDEO_FRAME). After the client calls
* disableMsgType(CAMERA_MSG_VIDEO_FRAME), it is the camera HAL's
* responsibility to manage the life-cycle of the video recording frames,
* and the client must not modify/access any video recording frames.
*/
static int HAL_camera_device_start_recording(struct camera_device *dev)
{
LOGV("%s", __func__);
return obj(dev)->startRecording();
}
/**
* Stop a previously started recording.
*/
static void HAL_camera_device_stop_recording(struct camera_device *dev)
{
LOGV("%s", __func__);
obj(dev)->stopRecording();
}
/**
* Returns true if recording is enabled.
*/
static int HAL_camera_device_recording_enabled(struct camera_device *dev)
{
LOGV("%s", __func__);
return obj(dev)->recordingEnabled();
}
/**
* Release a record frame previously returned by CAMERA_MSG_VIDEO_FRAME.
*
* It is camera HAL client's responsibility to release video recording
* frames sent out by the camera HAL before the camera HAL receives a call
* to disableMsgType(CAMERA_MSG_VIDEO_FRAME). After it receives the call to
* disableMsgType(CAMERA_MSG_VIDEO_FRAME), it is the camera HAL's
* responsibility to manage the life-cycle of the video recording frames.
*/
static void HAL_camera_device_release_recording_frame(struct camera_device *dev,
const void *opaque)
{
LOGV("%s", __func__);
obj(dev)->releaseRecordingFrame(opaque);
}
/**
* Start auto focus, the notification callback routine is called with
* CAMERA_MSG_FOCUS once when focusing is complete. autoFocus() will be
* called again if another auto focus is needed.
*/
static int HAL_camera_device_auto_focus(struct camera_device *dev)
{
LOGV("%s", __func__);
return obj(dev)->autoFocus();
}
/**
* Cancels auto-focus function. If the auto-focus is still in progress,
* this function will cancel it. Whether the auto-focus is in progress or
* not, this function will return the focus position to the default. If
* the camera does not support auto-focus, this is a no-op.
*/
static int HAL_camera_device_cancel_auto_focus(struct camera_device *dev)
{
LOGV("%s", __func__);
return obj(dev)->cancelAutoFocus();
}
/**
* Take a picture.
*/
static int HAL_camera_device_take_picture(struct camera_device *dev)
{
LOGV("%s", __func__);
return obj(dev)->takePicture();
}
/**
* Cancel a picture that was started with takePicture. Calling this method
* when no picture is being taken is a no-op.
*/
static int HAL_camera_device_cancel_picture(struct camera_device *dev)
{
LOGV("%s", __func__);
return obj(dev)->cancelPicture();
}
/**
* Set the camera parameters. This returns BAD_VALUE if any parameter is
* invalid or not supported.
*/
static int HAL_camera_device_set_parameters(struct camera_device *dev,
const char *parms)
{
LOGV("%s", __func__);
String8 str(parms);
CameraParameters p(str);
return obj(dev)->setParameters(p);
}
/** Return the camera parameters. */
char *HAL_camera_device_get_parameters(struct camera_device *dev)
{
LOGV("%s", __func__);
String8 str;
CameraParameters parms = obj(dev)->getParameters();
str = parms.flatten();
return strdup(str.string());
}
static void HAL_camera_device_put_parameters(struct camera_device *dev, char *parms)
{
LOGV("%s", __func__);
free(parms);
}
/**
* Send command to camera driver.
*/
static int HAL_camera_device_send_command(struct camera_device *dev,
int32_t cmd, int32_t arg1, int32_t arg2)
{
LOGV("%s", __func__);
return obj(dev)->sendCommand(cmd, arg1, arg2);
}
/**
* Release the hardware resources owned by this object. Note that this is
* *not* done in the destructor.
*/
static void HAL_camera_device_release(struct camera_device *dev)
{
LOGV("%s", __func__);
obj(dev)->release();
}
/**
* Dump state of the camera hardware
*/
static int HAL_camera_device_dump(struct camera_device *dev, int fd)
{
LOGV("%s", __func__);
return obj(dev)->dump(fd);
}
static int HAL_getNumberOfCameras()
{
LOGV("%s", __func__);
int cam_fd;
static struct v4l2_input input;
cam_fd = open(CAMERA_DEV_NAME, O_RDONLY);
if (cam_fd < 0) {
LOGE("ERR(%s):Cannot open %s (error : %s)", __func__, CAMERA_DEV_NAME, strerror(errno));
return -1;
}
input.index = 0;
while (ioctl(cam_fd, VIDIOC_ENUMINPUT, &input) == 0) {
LOGI("Name of input channel[%d] is %s", input.index, input.name);
input.index++;
}
close(cam_fd);
return --input.index;
}
static int HAL_getCameraInfo(int cameraId, struct camera_info *cameraInfo)
{
LOGV("%s", __func__);
memcpy(cameraInfo, &sCameraInfo[cameraId], sizeof(CameraInfo));
return 0;
}
#define SET_METHOD(m) m : HAL_camera_device_##m
static camera_device_ops_t camera_device_ops = {
SET_METHOD(set_preview_window),
SET_METHOD(set_callbacks),
SET_METHOD(enable_msg_type),
SET_METHOD(disable_msg_type),
SET_METHOD(msg_type_enabled),
SET_METHOD(start_preview),
SET_METHOD(stop_preview),
SET_METHOD(preview_enabled),
SET_METHOD(store_meta_data_in_buffers),
SET_METHOD(start_recording),
SET_METHOD(stop_recording),
SET_METHOD(recording_enabled),
SET_METHOD(release_recording_frame),
SET_METHOD(auto_focus),
SET_METHOD(cancel_auto_focus),
SET_METHOD(take_picture),
SET_METHOD(cancel_picture),
SET_METHOD(set_parameters),
SET_METHOD(get_parameters),
SET_METHOD(put_parameters),
SET_METHOD(send_command),
SET_METHOD(release),
SET_METHOD(dump),
};
#undef SET_METHOD
static int HAL_camera_device_open(const struct hw_module_t* module,
const char *id,
struct hw_device_t** device)
{
LOGV("%s", __func__);
int cameraId = atoi(id);
if (cameraId < 0 || cameraId >= HAL_getNumberOfCameras()) {
LOGE("Invalid camera ID %s", id);
return -EINVAL;
}
if (g_cam_device) {
if (obj(g_cam_device)->getCameraId() == cameraId) {
LOGV("returning existing camera ID %s", id);
goto done;
} else {
LOGE("Cannot open camera %d. camera %d is already running!",
cameraId, obj(g_cam_device)->getCameraId());
return -ENOSYS;
}
}
g_cam_device = (camera_device_t *)malloc(sizeof(camera_device_t));
if (!g_cam_device)
return -ENOMEM;
g_cam_device->common.tag = HARDWARE_DEVICE_TAG;
g_cam_device->common.version = 1;
g_cam_device->common.module = const_cast<hw_module_t *>(module);
g_cam_device->common.close = HAL_camera_device_close;
g_cam_device->ops = &camera_device_ops;
LOGI("%s: open camera %s", __func__, id);
g_cam_device->priv = new CameraHardwareSec(cameraId, g_cam_device);
done:
*device = (hw_device_t *)g_cam_device;
LOGI("%s: opened camera %s (%p)", __func__, id, *device);
return 0;
}
static hw_module_methods_t camera_module_methods = {
open : HAL_camera_device_open
};
extern "C" {
struct camera_module HAL_MODULE_INFO_SYM = {
common : {
tag : HARDWARE_MODULE_TAG,
version_major : 1,
version_minor : 0,
id : CAMERA_HARDWARE_MODULE_ID,
name : "orion camera HAL",
author : "Samsung Corporation",
methods : &camera_module_methods,
},
get_number_of_cameras : HAL_getNumberOfCameras,
get_camera_info : HAL_getCameraInfo
};
}
}; // namespace android
| [
"hs1218.kang@samsung.com"
] | hs1218.kang@samsung.com |
33275a6a86851c175c8c82563bb5e49310113140 | a23938d907b86eb75bfdc2596ff81f28af9b5ad5 | /week1/insertsort.cpp | 0b41b092fd1639b4dc02b1acf8a24eb38e9b4a65 | [] | no_license | jip174/cs325--Analysis-of-Algorithms | a97ffd1babfbbb51e770c473bc344e0e5d86345a | 05db55984485fbd3dd1e3d1afa43522a0f48e2a7 | refs/heads/main | 2023-05-08T04:58:56.971695 | 2021-05-20T16:56:31 | 2021-05-20T16:56:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,631 | cpp |
#include <iostream>
#include <fstream>
/****Reference: https://www.geeksforgeeks.org/insertion-sort/ ****/
void insertSort(int myArray[], int size){
for (int i = 1; i < (size - 1); i++)
{
int key = myArray[i]; //key is the value we are trying to find
int j = i - 1; //j is the value we are comparing key
while (j >= 0 && myArray[j] > key)
{
myArray[j + 1] = myArray[j]; //move it one position ahead
j = j - 1; //decreemnt it to look at the one below
}
myArray[j + 1] = key;
}
}
void printArr(std::ostream &stream, int arr[], int n) {
for (int i = 0; i < (n - 1); i++) {
stream << arr[i] << " ";
}
stream << arr[n - 1];
stream << std::endl;
}
int main()
{
//std::size_t size;
std::ifstream inFile;
std::ofstream insertfile("insert.txt");
inFile.open("data.txt");
if (!inFile)
{
std::cout << "File not found." << std::endl;
}
int x;
int num = 0;
while (inFile >> x) //get file size
{
num++;
}
std::cout << num << std::endl;
inFile.clear();
inFile.seekg(0);
int *myArray = new int[num]; //dynamically allocate an array
int i = 0;
while (inFile >> x) //store in array
{
myArray[i] = x;
i++;
}
inFile.close();
std::cout << "Before sort: " << std::endl;
for (int i = 0; i < num; i++)
{
std::cout << myArray[i] << " ";
}
std::cout << std::endl;
insertSort(myArray, num);
std::cout << "After sort: " << std::endl;
for (int i = 0; i < num; i++)
{
std::cout << myArray[i] << " ";
}
printArr(insertfile, myArray, num);
inFile.close();
std::cout << std::endl;
return 0;
} | [
"noreply@github.com"
] | jip174.noreply@github.com |
a4d5e84ca0e3d3572e77114be30bb860515d2935 | fd7d1350eefac8a9bbd952568f074284663f2794 | /dds/DCPS/transport/multicast/MulticastSessionFactory.cpp | 095de1944f9986babe7b3b1737a6996729509fbf | [
"MIT"
] | permissive | binary42/OCI | 4ceb7c4ed2150b4edd0496b2a06d80f623a71a53 | 08191bfe4899f535ff99637d019734ed044f479d | refs/heads/master | 2020-06-02T08:58:51.021571 | 2015-09-06T03:25:05 | 2015-09-06T03:25:05 | 41,980,019 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 346 | cpp | /*
* $Id: MulticastSessionFactory.cpp 4223 2011-02-04 23:01:46Z mitza $
*
*
* Distributed under the OpenDDS License.
* See: http://www.opendds.org/license.html
*/
#include "MulticastSessionFactory.h"
namespace OpenDDS {
namespace DCPS {
MulticastSessionFactory::~MulticastSessionFactory()
{
}
} // namespace DCPS
} // namespace OpenDDS
| [
"jimbolysses@gmail.com"
] | jimbolysses@gmail.com |
0912b7242ab2c9aef01b7d74f36dc5fc579df36e | 09f1fc62f8bd413b16a96d4f7d69858ebd90e690 | /InterviewStreet Interview/toSend/solve.cpp | b310e2724cd0475820186ff9d1c3649a7184da96 | [] | no_license | shivam043/Random_Contests | f2f493011e4d29450f8bf63c53be091e514243fa | 6a89da5f889f500f2f5af5dc5978c07f28aee1cd | refs/heads/master | 2021-01-01T19:44:54.990947 | 2013-12-09T18:22:03 | 2013-12-09T18:22:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,984 | cpp | //Name : Shinchan Nohara
//Age : 5 years
//Organisation : Kasukabe Defense Force
#include <iostream>
#include <ctime>
#include <vector>
#include <list>
#include <queue>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <cassert>
#include <utility>
#include <sstream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <cstring>
#include <climits>
#include <iterator>
#include <fstream>
using namespace std;
typedef long long int64;
typedef vector<int> vi;
typedef string ST;
typedef stringstream SS;
typedef vector< vector<int> > vvi;
typedef pair<int,int> ii;
typedef vector<string> vs;
/*
#ifdef __cplusplus
#undef __cplusplus
#define __cplusplus 199712L
#endif
#if __cplusplus > 199711L // for g++0x, value of __cplusplus must be greater thana 199711L.
#define tr(i, c) for(auto i = begin(c); i != end(c); i++)
#else
#define tr(i, c) for(typeof((c).begin()) i = (c).begin(); i != (c).end(); i++)
#endif
*/
#define DEBUG(x) cout << #x << " = " << x << "\n"
#define endl ("\n")
#define tr(i, c) for(__typeof((c).begin()) i = (c).begin(); i != (c).end(); i++)
#define PI M_PI
#define E M_E
#define ep 1e-9
#define Sf scanf
#define Pf printf
#define forn(i, n) for(int i = 0, lets_stop_here = (int)n; i < lets_stop_here; i++)
#define forab(i, a, b) for(int i = a, lets_stop_here = (int)b; i <= lets_stop_here; i++)
#define rep(i, a, b) for(int i = a, lets_stop_here = (int)b; i >= lets_stop_here; i--)
#define all(c) (c).begin(), (c).end()
#define CL(a, b) memset(a, b, sizeof(a))
#define mp make_pair
#define pb push_back
#define present(x, c) ((c).find(x) != (c).end()) //map & set//
#define cpresent(x, c) (find( (c).begin(), (c).end(), x) != (c).end()) //vector & list//
#define read(n) scanf("%d", &n)
#define write(n) printf("%d ", n)
#define writeln(n) printf("%d\n", n)
// a^x mod m
int64 pow(int64 a, int64 x, int64 m) {
if(x == 0)
return 1ll;
int64 ret = pow(a, x/2, m);
ret = (ret*ret)%m;
if(x % 2 == 1)
ret = (ret * a) % m;
return ret;
}
/* h*(k^x) + m*y = d y <- [-inf, inf]
* => h*(k^x) = d (mod m)
* find x using discrete logarithm
*/
int64 solve(int64 h, int64 k, int64 m, int64 d) {
int64 n = (int64)sqrt(m + 0.0) + 1;
int64 ret = -1LL;
map <int64, int64> vals;
vals.clear();
int64 kn = pow(k, n, m); // kn = k^n
int64 cur = (h*kn) % m; // cur = h * (k^n)
for(int64 p = 1; p <= n; p++) {
if(vals.find(cur) == vals.end())
vals[cur] = p;
cur = (cur * kn) % m; // cur = h * (k^n)^p
}
cur = d; // cur = d
for(int64 q = 0; q <= n; q++) {
if(vals.find(cur) != vals.end()) {
if(ret < 0)
ret = vals[cur]*n - q;
else
ret = min(ret, vals[cur]*n-q);
}
cur = (cur * k) % m; // cur = d * k^q
}
return ret;
}
int main()
{
int64 h, k, m, d;
cin >> h >> k >> m >> d;
cout << solve(h, k, m, d) << endl;
return 0;
}
| [
"abhiranjan.kumar00@gmail.com"
] | abhiranjan.kumar00@gmail.com |
7e9c82771dee32d491f2da50a322eca28525f148 | 4f842edb9d575d33c07f93a46a79865d7f78208f | /or_planning/local_planner/teb_test.cpp | 5493f273cba263f81415f0199a15db45205ebea5 | [] | no_license | SiChiTong/OrchardRover | 3e3e6e8a33ecb9022661d28318c93faa602be4ce | 7c1a9b612ba64e35c6a6a4d6679289763f3adf2f | refs/heads/master | 2023-06-10T09:44:19.477025 | 2021-06-29T02:50:04 | 2021-06-29T02:50:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,254 | cpp | //
// Created by cxn on 2020/7/21.
//
#include <interactive_markers/interactive_marker_server.h>
#include <visualization_msgs/Marker.h>
#include "include/obstacle.h"
#include "include/local_visualization.h"
#include "include/robot_footprint_model.h"
#include "timed_elastic_band/include/teb_optimal.h"
#include "timed_elastic_band/proto/timed_elastic_band.pb.h"
using namespace or_local_planner;
TebOptimalPtr planner;
std::vector<ObstaclePtr> obst_vector;
LocalVisualizationPtr visual;
ViaPointContainer via_points;
unsigned int no_fixed_obstacles;
void CB_mainCycle(const ros::TimerEvent &e);
void CB_publishCycle(const ros::TimerEvent &e);
void CreateInteractiveMarker(const double &init_x, const double &init_y, unsigned int id, std::string frame,
interactive_markers::InteractiveMarkerServer *marker_server,
interactive_markers::InteractiveMarkerServer::FeedbackCallback feedback_cb);
void CB_obstacle_marker(const visualization_msgs::InteractiveMarkerFeedbackConstPtr &feedback);
int main(int argc, char **argv) {
ros::init(argc, argv, "test_optim_node");
ros::NodeHandle nh;
or_local_planner::Config param_config_;
std::string full_path = ros::package::getPath("or_planning") +
"/local_planner/timed_elastic_band/config/timed_elastic_band.prototxt";
or_common::ReadProtoFromTextFile(full_path.c_str(), ¶m_config_);
ros::Timer cycle_timer = nh.createTimer(ros::Duration(0.025), CB_mainCycle);
ros::Timer publish_timer = nh.createTimer(ros::Duration(0.1), CB_publishCycle);
interactive_markers::InteractiveMarkerServer marker_server("marker_obstacles");
obst_vector.emplace_back(std::make_shared<PointObstacle>(-3, 1));
obst_vector.emplace_back(std::make_shared<PointObstacle>(6, 2));
obst_vector.emplace_back(std::make_shared<PointObstacle>(0, 0.1));
obst_vector.emplace_back(std::make_shared<PointObstacle>(-4, 1));
obst_vector.emplace_back(std::make_shared<PointObstacle>(5, 2));
obst_vector.emplace_back(std::make_shared<PointObstacle>(1, 0.1));
obst_vector.emplace_back(std::make_shared<PointObstacle>(-3, 2));
obst_vector.emplace_back(std::make_shared<PointObstacle>(5, 3));
obst_vector.emplace_back(std::make_shared<PointObstacle>(4, 0));
obst_vector.emplace_back(std::make_shared<PointObstacle>(4, 1));
obst_vector.emplace_back(std::make_shared<PointObstacle>(3, 2));
obst_vector.emplace_back(std::make_shared<PointObstacle>(2, 2));
std::string map_frame;
for (unsigned int i = 0; i < obst_vector.size(); ++i) {
std::shared_ptr<PointObstacle> pobst = std::dynamic_pointer_cast<PointObstacle>(obst_vector.at(i));
if (pobst) {
CreateInteractiveMarker(pobst->Position().coeff(0), pobst->Position().coeff(1),
i, "odom", &marker_server, &CB_obstacle_marker);
}
}
marker_server.applyChanges();
// Setup visualization
visual = LocalVisualizationPtr(new LocalVisualization(nh, "odom"));
RobotFootprintModelPtr model = std::make_shared<PointRobotFootprint>();
planner = TebOptimalPtr(new TebOptimal(param_config_, &obst_vector, model, visual, &via_points));
no_fixed_obstacles = (unsigned int) obst_vector.size();
ros::spin();
return 0;
}
void CreateInteractiveMarker(const double &init_x, const double &init_y, unsigned int id, std::string frame,
interactive_markers::InteractiveMarkerServer *marker_server,
interactive_markers::InteractiveMarkerServer::FeedbackCallback feedback_cb) {
// create an interactive marker for our server
visualization_msgs::InteractiveMarker i_marker;
i_marker.header.frame_id = frame;
i_marker.header.stamp = ros::Time::now();
std::ostringstream oss;
//oss << "obstacle" << id;
oss << id;
i_marker.name = oss.str();
i_marker.description = "Obstacle";
i_marker.pose.position.x = init_x;
i_marker.pose.position.y = init_y;
// create a grey box marker
visualization_msgs::Marker box_marker;
box_marker.type = visualization_msgs::Marker::CUBE;
box_marker.id = id;
box_marker.scale.x = 0.2;
box_marker.scale.y = 0.2;
box_marker.scale.z = 0.2;
box_marker.color.r = 100;
box_marker.color.g = 0.5;
box_marker.color.b = 0.5;
box_marker.color.a = 1.0;
// create a non-interactive control which contains the box
visualization_msgs::InteractiveMarkerControl box_control;
box_control.always_visible = 1;
box_control.markers.push_back(box_marker);
// add the control to the interactive marker
i_marker.controls.push_back(box_control);
// create a control which will move the box, rviz will insert 2 arrows
visualization_msgs::InteractiveMarkerControl move_control;
move_control.name = "move_x";
move_control.orientation.w = sqrt(2) / 2;
move_control.orientation.x = 0;
move_control.orientation.y = sqrt(2) / 2;
move_control.orientation.z = 0;
move_control.interaction_mode = visualization_msgs::InteractiveMarkerControl::MOVE_PLANE;
// add the control to the interactive marker
i_marker.controls.push_back(move_control);
// add the interactive marker to our collection
marker_server->insert(i_marker);
marker_server->setCallback(i_marker.name, feedback_cb);
}
// Planning loop
void CB_mainCycle(const ros::TimerEvent &e) {
auto start_pose = DataConverter::LocalConvertCData(-4, 0, 0);
auto end_pose = DataConverter::LocalConvertCData(4, 0, 0);
planner->Optimal(DataBase(start_pose.first, start_pose.second), DataBase(end_pose.first, end_pose.second));
}
// Visualization loop
void CB_publishCycle(const ros::TimerEvent &e) {
planner->Visualize();
}
void CB_obstacle_marker(const visualization_msgs::InteractiveMarkerFeedbackConstPtr &feedback) {
std::stringstream ss(feedback->marker_name);
unsigned int index;
ss >> index;
if (index >= no_fixed_obstacles)
return;
PointObstacle *pobst = dynamic_cast<PointObstacle *>(obst_vector.at(index).get());
pobst->Position() = Eigen::Vector2d(feedback->pose.position.x, feedback->pose.position.y);
} | [
"1344618323@qq.com"
] | 1344618323@qq.com |
c66c133bc27deafb6555d55cebb332c6c86afa3e | 145f9616480e621b5ec5f16c21d4dcf4b7be27da | /entities/Nexus.hpp | b2e5492222d01733f786181a0139ebed1b122fe2 | [] | no_license | DavidSaxon/Advanced-Evolutionary-Tatics-LD24 | 4821eaf8b6fc7068fe3ca3059435b9312d852da5 | c5a7ed6390780e972cc062f5b60877f7efa0218d | refs/heads/master | 2016-09-05T20:27:56.842691 | 2012-08-26T23:29:44 | 2012-08-26T23:29:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 721 | hpp | /*********************************************************\
| The nexus is where the units for each team are produced |
\*********************************************************/
#ifndef _NEXUS_H_
#define _NEXUS_H_
#include <iostream>
#include <math.h>
#include "../Entity.hpp"
using namespace std;
class Nexus : public Entity {
private:
//VARIABLES
GLuint* bodyTex; //the main texture of the nexus
GLuint* colourTex; //the nexus colour texture
public:
//CONSTRUCTOR
Nexus(int x, int y, bool p, GLuint* tb, GLuint* tc);
//DESTRUCTOR
~Nexus();
//FUNCTIONS
/*update the nexus*/
void update();
/*draw the nexus*/
void draw(int offsetX, int offsetY);
};
#endif
| [
"david.saxon@windowslive.com"
] | david.saxon@windowslive.com |
7aa91f11a1fb967837827b172be297465f3fa4b4 | 22658e2f8e87cf0567bce0fa99108fc7d9cd24a6 | /src/segmenter/cws_module/lexicon_feature_layer.h | 9e6c049bad42239356e35164431509bb059d2a86 | [] | no_license | zldeng/sequence-labeling-by-nn | 78c4c18d1d1ff6b99296d3f7a094eca2d616902c | 6436f3b93dda8f0a97631408f4a8db8920bd3cfc | refs/heads/master | 2021-06-17T18:03:59.349615 | 2017-02-12T08:20:45 | 2017-02-12T08:20:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,212 | h | #ifndef SLNN_SEGMENTER_CWS_MODULE_LEXICON_FEATURE_LAYER_H_
#define SLNN_SEGMENTER_CWS_MODULE_LEXICON_FEATURE_LAYER_H_
#include "lexicon_feature.h"
#include "dynet/dynet.h"
#include "dynet/expr.h"
namespace slnn{
class LexiconFeatureLayer
{
public :
LexiconFeatureLayer(dynet::Model *dynet_m, unsigned start_here_dict_size, unsigned start_here_dim,
unsigned pass_here_dict_size, unsigned pass_here_dim,
unsigned end_here_dict_size, unsigned end_here_dim);
LexiconFeatureLayer(dynet::Model *dynet_m, const LexiconFeature &lexicon_feature);
void new_graph(dynet::ComputationGraph &cg);
dynet::expr::Expression build_lexicon_feature(const LexiconFeatureData &lexicon_feature);
void build_lexicon_feature(const LexiconFeatureDataSeq &lexicon_feature_seq,
std::vector<dynet::expr::Expression> &lexicon_feature_exprs);
private:
dynet::LookupParameter start_here_lookup_param;
dynet::LookupParameter pass_here_lookup_param;
dynet::LookupParameter end_here_lookup_param;
dynet::ComputationGraph *pcg;
};
inline
void LexiconFeatureLayer::new_graph(dynet::ComputationGraph &cg)
{
pcg = &cg;
}
inline
dynet::expr::Expression LexiconFeatureLayer::build_lexicon_feature(const LexiconFeatureData &lexicon_feature_data)
{
return dynet::expr::concatenate({
dynet::expr::lookup(*pcg, start_here_lookup_param, lexicon_feature_data.get_start_here_feature_index()),
dynet::expr::lookup(*pcg, pass_here_lookup_param, lexicon_feature_data.get_pass_here_feature_index()),
dynet::expr::lookup(*pcg, end_here_lookup_param, lexicon_feature_data.get_end_here_feature_index())
});
}
inline
void LexiconFeatureLayer::build_lexicon_feature(const LexiconFeatureDataSeq &lexicon_feature_seq,
std::vector<dynet::expr::Expression> &lexicon_feature_exprs)
{
using std::swap;
size_t seq_len = lexicon_feature_seq.size();
std::vector<dynet::expr::Expression> tmp_lexicon_feature_exprs(seq_len);
for( size_t i = 0; i < seq_len; ++i )
{
tmp_lexicon_feature_exprs[i] = build_lexicon_feature(lexicon_feature_seq[i]);
}
swap(lexicon_feature_exprs, tmp_lexicon_feature_exprs);
}
} // end of namespace slnn
#endif | [
"readonlyfile@hotmail.com"
] | readonlyfile@hotmail.com |
42803c8ca3a13f1b82c74fbd7a41e2b64c622961 | 7ff782c3a22da72588e457c5bc7cf6507652de03 | /ECore/ECore/src/EFrustum.cpp | d0b499ea5120959498ceb9c2dbb0db10c80059b5 | [] | no_license | bingxue102685/E3D | 7804ac643cbae1863982c7ed1330c31433cf1d56 | ef4ee5d2da116e50fe53ca19fd35e70a45a56d7e | refs/heads/master | 2020-08-23T20:34:20.113058 | 2019-11-08T04:46:33 | 2019-11-08T04:46:33 | 216,702,285 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,750 | cpp | #include "EFrustum.h"
#include "ECore.h"
namespace E3D
{
EFrustum::EFrustum(CAMERA_TYPE mode, const EVector4D &pos, const EVector4D &dir, const EVector4D &target, EFloat nearZ, EFloat farZ,
EFloat fieldofview, EFloat viewportWidth, EFloat viewportHeight)
{
camMode = mode;
position = pos;
dirction = dir;
camTarget = target;
clip_z_near = nearZ;
clip_z_far = farZ;
fov = fieldofview;
viewport_width = viewportWidth;
viewport_height = viewportHeight;
camUp = EVector4D::UNIT_Y;
camRight = EVector4D::UNIT_X;
camLook = EVector4D::UNIT_Z;
mWorldToCamera = EMatrix44::IDENTITY;
mCameraToPerspective = EMatrix44::IDENTITY;
mPerspectiveToScreen = EMatrix44::IDENTITY;
viewport_center_X = (viewport_width - 1) * 0.5f;
viewport_center_Y = (viewport_height - 1) * 0.5f;
aspect_ratio = viewport_width / viewport_height;
viewplane_width = 2.0f;
viewplane_height = 2.0f / aspect_ratio;
EFloat tan_fow_div2 = tan(Degree2Radian(fov * 0.5f));
view_dist = 0.5 * viewplane_width / tan_fow_div2;
//相机坐标系
EVector4D point = EVector4D::ZERO;
//右裁剪面
EVector4D normalR = EVector4D(-view_dist, 0, viewplane_width * 0.5f);
clip_plane_R = EPlane3D(point, normalR);
//左裁剪面
EVector4D normalL = EVector4D(view_dist, 0, viewplane_width * 0.5f);
clip_plane_L = EPlane3D(point, normalL);
//上裁剪面
EVector4D normalT = EVector4D(0, -view_dist, viewplane_height * 0.5f);
clip_plane_T = EPlane3D(point, normalT);
//下裁剪面
EVector4D normalB = EVector4D(0, view_dist, viewplane_height * 0.5f);
clip_plane_B = EPlane3D(point, normalB);
mPerspectiveToScreen = EMatrix44(
view_dist, 0, 0, 0,
0, view_dist * aspect_ratio, 0, 0,
0, 0, 1, 1,
0, 0, 0, 0);
}
} | [
"zhanghongjie@ztgame.com"
] | zhanghongjie@ztgame.com |
91f55d620d6e02020f4969328e44b7debbf3c8ec | 4487c896b6844cc41824f8e4a55fedb8dc1f6e4f | /cpp/Graph/euler_path_and_cycle.cpp | bba9c7094aa1d308033c780134b39ea2b6be3fbd | [] | no_license | arjan-bal/competitive-coding-library | 3ba2db1d3a740e7e96aab978207aa949904f1186 | 7df28eabff6d178d13133413998a400171d4b858 | refs/heads/master | 2023-07-21T10:00:01.797981 | 2023-07-16T19:53:42 | 2023-07-16T19:53:42 | 197,349,165 | 19 | 9 | null | null | null | null | UTF-8 | C++ | false | false | 1,427 | cpp | /*
Finds Euler Path / Cycle in O(M + N)
Remember to call reset before finding answer
Path will be present in ans
ans will contain the edge ids of the path
*/
int n, m;
vector<pair<int, int>> edges;
vector<bool> used;
vector<int> ans, pos;
vector<int> adj[N];
void reset()
{
ans.clear();
pos.assign(n + 1, 0);
used.assign(m, 0);
}
// returns other side of edge
int getOther(int id, int v)
{
return edges[id].first ^ edges[id].second ^ v;
}
// finds euler path/cycle ending at v
// for cycle check that oddCount in checkEuler is 0
void dfs(int v)
{
// need to keep pos array since we might
// visit v again, wouldn't want to start over
while(pos[v] < (int)adj[v].size()) {
int id = adj[v][pos[v]];
pos[v]++;
if (used[id]) continue;
used[id] = 1;
dfs(getOther(id, v));
ans.pb(id);
}
}
vector<int> getVertices(int ending, vector<int> edges)
{
vector<int> path;
reverse(all(edges));
int cur = ending;
ans.pb(cur);
for (auto i : edges) {
cur = getOther(i, cur);
path.pb(cur);
}
reverse(all(path));
return path;
}
void checkEuler(int src)
{
int oddCount = 0;
for (int i = 1; i <= n; ++i) {
bool parity = 0;
for (auto j : adj[i]) {
parity ^= !used[j];
}
if (parity && i != src) ++oddCount;
}
if (oddCount > 1) return ;
// oddCount of 1 => src is definately odd parity
// since sum of degrees of all vertices is even = 2 * |E|
// oddCount 0 => Euler Cycle
dfs(src);
} | [
"arjan.bal@nutanix.com"
] | arjan.bal@nutanix.com |
986fccaaae054309393b5bbb2ab6a655997af6fa | 27e3f7528bf006126311cf9473cd85f373f6e3dd | /ui/ozone/platform/wayland/host/wayland_connection.cc | 48e7674ae918efb5c81a5e86395ac453c801d68b | [
"BSD-3-Clause"
] | permissive | yuanhui-yang/chromium | 7f1d6c17880290613fedef862f53d52237a0601b | d181eb08e0cf84f6399ef38205f86519914b8f06 | refs/heads/master | 2023-03-10T00:49:57.143282 | 2020-05-07T07:29:03 | 2020-05-07T07:29:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,154 | cc | // Copyright 2016 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 "ui/ozone/platform/wayland/host/wayland_connection.h"
#include <xdg-shell-client-protocol.h>
#include <xdg-shell-unstable-v6-client-protocol.h>
#include <algorithm>
#include <memory>
#include <utility>
#include "base/bind.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/message_loop/message_loop_current.h"
#include "base/strings/string_util.h"
#include "base/threading/thread_task_runner_handle.h"
#include "mojo/public/cpp/system/platform_handle.h"
#include "ui/events/ozone/layout/keyboard_layout_engine_manager.h"
#include "ui/gfx/swap_result.h"
#include "ui/ozone/platform/wayland/common/wayland_object.h"
#include "ui/ozone/platform/wayland/host/wayland_buffer_manager_host.h"
#include "ui/ozone/platform/wayland/host/wayland_cursor.h"
#include "ui/ozone/platform/wayland/host/wayland_drm.h"
#include "ui/ozone/platform/wayland/host/wayland_event_source.h"
#include "ui/ozone/platform/wayland/host/wayland_input_method_context.h"
#include "ui/ozone/platform/wayland/host/wayland_output_manager.h"
#include "ui/ozone/platform/wayland/host/wayland_pointer.h"
#include "ui/ozone/platform/wayland/host/wayland_shm.h"
#include "ui/ozone/platform/wayland/host/wayland_touch.h"
#include "ui/ozone/platform/wayland/host/wayland_window.h"
#include "ui/ozone/platform/wayland/host/wayland_zwp_linux_dmabuf.h"
namespace ui {
namespace {
constexpr uint32_t kMaxCompositorVersion = 4;
constexpr uint32_t kMaxGtkPrimarySelectionDeviceManagerVersion = 1;
constexpr uint32_t kMaxLinuxDmabufVersion = 3;
constexpr uint32_t kMaxSeatVersion = 4;
constexpr uint32_t kMaxShmVersion = 1;
constexpr uint32_t kMaxXdgShellVersion = 1;
constexpr uint32_t kMaxDeviceManagerVersion = 3;
constexpr uint32_t kMaxWpPresentationVersion = 1;
constexpr uint32_t kMaxTextInputManagerVersion = 1;
constexpr uint32_t kMinWlDrmVersion = 2;
constexpr uint32_t kMinWlOutputVersion = 2;
} // namespace
WaylandConnection::WaylandConnection() = default;
WaylandConnection::~WaylandConnection() = default;
bool WaylandConnection::Initialize() {
static const wl_registry_listener registry_listener = {
&WaylandConnection::Global,
&WaylandConnection::GlobalRemove,
};
display_.reset(wl_display_connect(nullptr));
if (!display_) {
LOG(ERROR) << "Failed to connect to Wayland display";
return false;
}
registry_.reset(wl_display_get_registry(display_.get()));
if (!registry_) {
LOG(ERROR) << "Failed to get Wayland registry";
return false;
}
// Now that the connection with the display server has been properly
// estabilished, initialize the wayland event source.
DCHECK(!event_source_);
event_source_ = std::make_unique<WaylandEventSource>(display_.get());
wl_registry_add_listener(registry_.get(), ®istry_listener, this);
while (!wayland_output_manager_ ||
!wayland_output_manager_->IsOutputReady()) {
wl_display_roundtrip(display_.get());
}
buffer_manager_host_ = std::make_unique<WaylandBufferManagerHost>(this);
if (!compositor_) {
LOG(ERROR) << "No wl_compositor object";
return false;
}
if (!shm_) {
LOG(ERROR) << "No wl_shm object";
return false;
}
if (!shell_v6_ && !shell_) {
LOG(ERROR) << "No Wayland shell found";
return false;
}
// When we are running tests with weston in headless mode, the seat is not
// announced.
if (!seat_)
LOG(WARNING) << "No wl_seat object. The functionality may suffer.";
return true;
}
void WaylandConnection::ScheduleFlush() {
// When we are in tests, the message loop is set later when the
// initialization of the OzonePlatform complete. Thus, just
// flush directly. This doesn't happen in normal run.
if (!base::MessageLoopCurrentForUI::IsSet()) {
Flush();
} else if (!scheduled_flush_) {
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE,
base::BindOnce(&WaylandConnection::Flush, base::Unretained(this)));
scheduled_flush_ = true;
}
}
void WaylandConnection::SetCursorBitmap(const std::vector<SkBitmap>& bitmaps,
const gfx::Point& location) {
if (!cursor_)
return;
cursor_->UpdateBitmap(bitmaps, location, serial_);
}
int WaylandConnection::GetKeyboardModifiers() const {
int modifiers = 0;
if (keyboard_)
modifiers = keyboard_->modifiers();
return modifiers;
}
void WaylandConnection::StartDrag(const ui::OSExchangeData& data,
int operation) {
if (!dragdrop_data_source_)
dragdrop_data_source_ = data_device_manager_->CreateSource();
dragdrop_data_source_->Offer(data);
dragdrop_data_source_->SetAction(operation);
data_device_->StartDrag(dragdrop_data_source_->data_source(), data);
}
void WaylandConnection::FinishDragSession(uint32_t dnd_action,
WaylandWindow* source_window) {
if (source_window)
source_window->OnDragSessionClose(dnd_action);
data_device_->ResetSourceData();
dragdrop_data_source_.reset();
}
void WaylandConnection::DeliverDragData(const std::string& mime_type,
std::string* buffer) {
data_device_->DeliverDragData(mime_type, buffer);
}
void WaylandConnection::RequestDragData(
const std::string& mime_type,
base::OnceCallback<void(const std::vector<uint8_t>&)> callback) {
data_device_->RequestDragData(mime_type, std::move(callback));
}
bool WaylandConnection::IsDragInProgress() {
// |data_device_| can be null when running on headless weston.
if (!data_device_)
return false;
return data_device_->IsDragEntered() || drag_data_source();
}
void WaylandConnection::ResetPointerFlags() {
if (pointer_)
pointer_->ResetFlags();
}
void WaylandConnection::Flush() {
wl_display_flush(display_.get());
scheduled_flush_ = false;
}
void WaylandConnection::UpdateInputDevices(wl_seat* seat,
uint32_t capabilities) {
DCHECK(seat);
DCHECK(event_source_);
auto has_pointer = capabilities & WL_SEAT_CAPABILITY_POINTER;
auto has_keyboard = capabilities & WL_SEAT_CAPABILITY_KEYBOARD;
auto has_touch = capabilities & WL_SEAT_CAPABILITY_TOUCH;
if (!has_pointer) {
pointer_.reset();
cursor_.reset();
wayland_cursor_position_.reset();
} else if (wl_pointer* pointer = wl_seat_get_pointer(seat)) {
pointer_ = std::make_unique<WaylandPointer>(
pointer, this, event_source_->GetDispatchCallback());
cursor_ = std::make_unique<WaylandCursor>(pointer_.get(), this);
wayland_cursor_position_ = std::make_unique<WaylandCursorPosition>();
} else {
LOG(ERROR) << "Failed to get wl_pointer from seat";
}
if (!has_keyboard) {
keyboard_.reset();
} else if (wl_keyboard* keyboard = wl_seat_get_keyboard(seat)) {
auto* layout_engine =
KeyboardLayoutEngineManager::GetKeyboardLayoutEngine();
keyboard_ = std::make_unique<WaylandKeyboard>(
keyboard, this, layout_engine, event_source_->GetDispatchCallback());
} else {
LOG(ERROR) << "Failed to get wl_keyboard from seat";
}
if (!has_touch) {
touch_.reset();
} else if (wl_touch* touch = wl_seat_get_touch(seat)) {
touch_ = std::make_unique<WaylandTouch>(
touch, this, event_source_->GetDispatchCallback());
} else {
LOG(ERROR) << "Failed to get wl_touch from seat";
}
}
void WaylandConnection::EnsureDataDevice() {
if (!data_device_manager_ || !seat_)
return;
DCHECK(!data_device_);
wl_data_device* data_device = data_device_manager_->GetDevice();
data_device_ = std::make_unique<WaylandDataDevice>(this, data_device);
if (primary_selection_device_manager_) {
primary_selection_device_ = std::make_unique<GtkPrimarySelectionDevice>(
this, primary_selection_device_manager_->GetDevice());
}
clipboard_ = std::make_unique<WaylandClipboard>(
data_device_manager_.get(), data_device_.get(),
primary_selection_device_manager_.get(), primary_selection_device_.get());
}
// static
void WaylandConnection::Global(void* data,
wl_registry* registry,
uint32_t name,
const char* interface,
uint32_t version) {
static const wl_seat_listener seat_listener = {
&WaylandConnection::Capabilities,
&WaylandConnection::Name,
};
static const xdg_wm_base_listener shell_listener = {
&WaylandConnection::Ping,
};
static const zxdg_shell_v6_listener shell_v6_listener = {
&WaylandConnection::PingV6,
};
WaylandConnection* connection = static_cast<WaylandConnection*>(data);
if (!connection->compositor_ && strcmp(interface, "wl_compositor") == 0) {
connection->compositor_ = wl::Bind<wl_compositor>(
registry, name, std::min(version, kMaxCompositorVersion));
connection->compositor_version_ = version;
if (!connection->compositor_)
LOG(ERROR) << "Failed to bind to wl_compositor global";
} else if (!connection->subcompositor_ &&
strcmp(interface, "wl_subcompositor") == 0) {
connection->subcompositor_ = wl::Bind<wl_subcompositor>(registry, name, 1);
if (!connection->subcompositor_)
LOG(ERROR) << "Failed to bind to wl_subcompositor global";
} else if (!connection->shm_ && strcmp(interface, "wl_shm") == 0) {
wl::Object<wl_shm> shm =
wl::Bind<wl_shm>(registry, name, std::min(version, kMaxShmVersion));
connection->shm_ = std::make_unique<WaylandShm>(shm.release(), connection);
if (!connection->shm_)
LOG(ERROR) << "Failed to bind to wl_shm global";
} else if (!connection->seat_ && strcmp(interface, "wl_seat") == 0) {
connection->seat_ =
wl::Bind<wl_seat>(registry, name, std::min(version, kMaxSeatVersion));
if (!connection->seat_) {
LOG(ERROR) << "Failed to bind to wl_seat global";
return;
}
wl_seat_add_listener(connection->seat_.get(), &seat_listener, connection);
connection->EnsureDataDevice();
} else if (!connection->shell_v6_ &&
strcmp(interface, "zxdg_shell_v6") == 0) {
// Check for zxdg_shell_v6 first.
connection->shell_v6_ = wl::Bind<zxdg_shell_v6>(
registry, name, std::min(version, kMaxXdgShellVersion));
if (!connection->shell_v6_) {
LOG(ERROR) << "Failed to bind to zxdg_shell_v6 global";
return;
}
zxdg_shell_v6_add_listener(connection->shell_v6_.get(), &shell_v6_listener,
connection);
} else if (!connection->shell_v6_ && !connection->shell_ &&
strcmp(interface, "xdg_wm_base") == 0) {
connection->shell_ = wl::Bind<xdg_wm_base>(
registry, name, std::min(version, kMaxXdgShellVersion));
if (!connection->shell_) {
LOG(ERROR) << "Failed to bind to xdg_wm_base global";
return;
}
xdg_wm_base_add_listener(connection->shell_.get(), &shell_listener,
connection);
} else if (base::EqualsCaseInsensitiveASCII(interface, "wl_output")) {
if (version < kMinWlOutputVersion) {
LOG(ERROR)
<< "Unable to bind to the unsupported wl_output object with version= "
<< version << ". Minimum supported version is "
<< kMinWlOutputVersion;
return;
}
wl::Object<wl_output> output = wl::Bind<wl_output>(registry, name, version);
if (!output) {
LOG(ERROR) << "Failed to bind to wl_output global";
return;
}
if (!connection->wayland_output_manager_) {
connection->wayland_output_manager_ =
std::make_unique<WaylandOutputManager>();
}
connection->wayland_output_manager_->AddWaylandOutput(name,
output.release());
} else if (!connection->data_device_manager_ &&
strcmp(interface, "wl_data_device_manager") == 0) {
wl::Object<wl_data_device_manager> data_device_manager =
wl::Bind<wl_data_device_manager>(
registry, name, std::min(version, kMaxDeviceManagerVersion));
if (!data_device_manager) {
LOG(ERROR) << "Failed to bind to wl_data_device_manager global";
return;
}
connection->data_device_manager_ =
std::make_unique<WaylandDataDeviceManager>(
data_device_manager.release(), connection);
connection->EnsureDataDevice();
} else if (!connection->primary_selection_device_manager_ &&
strcmp(interface, "gtk_primary_selection_device_manager") == 0) {
wl::Object<gtk_primary_selection_device_manager> manager =
wl::Bind<gtk_primary_selection_device_manager>(
registry, name, kMaxGtkPrimarySelectionDeviceManagerVersion);
connection->primary_selection_device_manager_ =
std::make_unique<GtkPrimarySelectionDeviceManager>(manager.release(),
connection);
} else if (!connection->zwp_dmabuf_ &&
(strcmp(interface, "zwp_linux_dmabuf_v1") == 0)) {
wl::Object<zwp_linux_dmabuf_v1> zwp_linux_dmabuf =
wl::Bind<zwp_linux_dmabuf_v1>(
registry, name, std::min(version, kMaxLinuxDmabufVersion));
connection->zwp_dmabuf_ = std::make_unique<WaylandZwpLinuxDmabuf>(
zwp_linux_dmabuf.release(), connection);
} else if (!connection->presentation_ &&
(strcmp(interface, "wp_presentation") == 0)) {
connection->presentation_ =
wl::Bind<wp_presentation>(registry, name, kMaxWpPresentationVersion);
} else if (!connection->text_input_manager_v1_ &&
strcmp(interface, "zwp_text_input_manager_v1") == 0) {
connection->text_input_manager_v1_ = wl::Bind<zwp_text_input_manager_v1>(
registry, name, std::min(version, kMaxTextInputManagerVersion));
if (!connection->text_input_manager_v1_) {
LOG(ERROR) << "Failed to bind to zwp_text_input_manager_v1 global";
return;
}
} else if (!connection->drm_ && (strcmp(interface, "wl_drm") == 0) &&
version >= kMinWlDrmVersion) {
auto wayland_drm = wl::Bind<struct wl_drm>(registry, name, version);
connection->drm_ =
std::make_unique<WaylandDrm>(wayland_drm.release(), connection);
}
connection->ScheduleFlush();
}
// static
void WaylandConnection::GlobalRemove(void* data,
wl_registry* registry,
uint32_t name) {
WaylandConnection* connection = static_cast<WaylandConnection*>(data);
// The Wayland protocol distinguishes global objects by unique numeric names,
// which the WaylandOutputManager uses as unique output ids. But, it is only
// possible to figure out, what global object is going to be removed on the
// WaylandConnection::GlobalRemove call. Thus, whatever unique |name| comes,
// it's forwarded to the WaylandOutputManager, which checks if such a global
// output object exists and removes it.
if (connection->wayland_output_manager_)
connection->wayland_output_manager_->RemoveWaylandOutput(name);
}
// static
void WaylandConnection::Capabilities(void* data,
wl_seat* seat,
uint32_t capabilities) {
WaylandConnection* self = static_cast<WaylandConnection*>(data);
DCHECK(self);
self->UpdateInputDevices(seat, capabilities);
self->ScheduleFlush();
}
// static
void WaylandConnection::Name(void* data, wl_seat* seat, const char* name) {}
// static
void WaylandConnection::PingV6(void* data,
zxdg_shell_v6* shell_v6,
uint32_t serial) {
WaylandConnection* connection = static_cast<WaylandConnection*>(data);
zxdg_shell_v6_pong(shell_v6, serial);
connection->ScheduleFlush();
}
// static
void WaylandConnection::Ping(void* data, xdg_wm_base* shell, uint32_t serial) {
WaylandConnection* connection = static_cast<WaylandConnection*>(data);
xdg_wm_base_pong(shell, serial);
connection->ScheduleFlush();
}
} // namespace ui
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
7df9523a01bf9a54c740cd7ba7310730e06575b8 | 0e4599175e153ed73ed26b9226f28a01928bfde0 | /rf_pipelines_internals.hpp | c67befe0c9ec10faf84e5665922185a81d702a7a | [] | no_license | dstndstn/rf_pipelines | 8d1250eefa5133a22e38f0b62bbd304a9f9f5b72 | af1e9e1df73dc5e8912471481bd5036a8d6a826c | refs/heads/master | 2021-01-11T20:35:18.958563 | 2017-02-21T17:06:20 | 2017-02-21T17:06:20 | 79,148,402 | 0 | 0 | null | 2017-01-16T18:48:13 | 2017-01-16T18:48:13 | null | UTF-8 | C++ | false | false | 9,764 | hpp | #ifndef _RF_PIPELINES_INTERNALS_HPP
#define _RF_PIPELINES_INTERNALS_HPP
#if (__cplusplus < 201103) && !defined(__GXX_EXPERIMENTAL_CXX0X__)
#error "This source file needs to be compiled with C++0x support (g++ -std=c++0x)"
#endif
#include <cmath>
#include <cstring>
#include <sstream>
#include <stdexcept>
#include <sys/time.h>
#include <thread>
#include <condition_variable>
#include "rf_pipelines.hpp"
// Branch predictor hint
#ifndef _unlikely
#define _unlikely(cond) (__builtin_expect(cond,0))
#endif
// rf_assert(): like assert, but throws an exception in order to work smoothly with python.
#define rf_assert(cond) rf_assert2(cond, __LINE__)
#define rf_assert2(cond,line) \
do { \
if (_unlikely(!(cond))) { \
const char *msg = "rf_pipelines: assertion '" __STRING(cond) "' failed (" __FILE__ ":" __STRING(line) ")\n"; \
throw std::runtime_error(msg); \
} \
} while (0)
namespace rf_pipelines {
#if 0
}; // pacify emacs c-mode
#endif
//
// A note for the future: if rf_pipelines is ever made multithreaded, then there are
// some race conditions related to the output_tracker which will need to be fixed. The
// basename_set should be protected by a lock, and we also probably want a lock to
// protect the wi_transform::output_output_tracker pointer itself. We may also want the
// output_tracker to create a lockfile in the output directory.
//
struct outdir_manager {
std::string outdir; // can be an empty string, otherwise includes trailing slash
bool clobber_ok = true;
std::set<std::string> basename_set;
// Constructor creates the output directory.
outdir_manager(const std::string &outdir, bool clobber_ok);
// Returns the full pathname, throws exception if filename has already been written in this pipeline run.
std::string add_file(const std::string &basename);
void write_per_substream_json_file(int isubstream, const Json::Value &data, int verbosity);
static bool is_json_basename(const std::string &basename);
};
struct plot_group {
std::string name;
int nt_per_pix = 0;
int ny = 0;
bool is_empty = true;
int64_t curr_it0 = 0;
int64_t curr_it1 = 0;
Json::Value files;
plot_group(const std::string &name_, int nt_per_pix_, int ny_) :
name(name_), nt_per_pix(nt_per_pix_), ny(ny_)
{
if (nt_per_pix < 1)
throw std::runtime_error("rf_pipelines::plot_group: nt_per_pix must be >= 1");
if (ny < 1)
throw std::runtime_error("rf_pieplines::plot_group: ny must be >= 1");
}
};
// -------------------------------------------------------------------------------------------------
//
// log_2(2^n) -> n
inline bool is_power_of_two(int n)
{
rf_assert(n >= 1);
return (n & (n-1)) == 0;
}
struct integer_log2_lookup_table {
int nmax;
std::vector<int> v;
integer_log2_lookup_table(int nmax)
{
rf_assert((nmax > 0) && is_power_of_two(nmax));
this->v = std::vector<int> (nmax+1,-1);
for (int i = 0; (1<<i) <= nmax; i++)
v[1<<i] = i;
}
// Caller must check 0 <= n <= nmax.
// If n is not a power of two, then (-1) will be returnd.
inline int operator()(int n) { return v[n]; }
};
// Compile-time integer-valued log_2()
template<unsigned int D, typename std::enable_if<(D==1),int>::type = 0>
inline constexpr int IntegerLog2() { return 0; }
template<unsigned int D, typename std::enable_if<(D>1 && (D%2)==0),int>::type = 0>
inline constexpr int IntegerLog2() { return IntegerLog2<(D/2)>() + 1; }
// -------------------------------------------------------------------------------------------------
//
// timing_thread (general-purpose timing thread), and transform_timing_thread (subclass for timing wi_transforms).
class timing_thread_pool {
public:
const int nthreads;
timing_thread_pool(int nthreads);
typedef struct timeval time_t;
time_t start_timer();
double stop_timer(const time_t &start_time);
// Helper function called by timing_thread.
int get_and_increment_thread_id();
protected:
std::mutex lock;
std::condition_variable cond0;
std::condition_variable cond1;
std::condition_variable cond2;
double total_dt = 0.0;
int threads_so_far = 0;
int ix0 = 0;
int ix1 = 0;
int ix2 = 0;
};
class timing_thread {
public:
const std::shared_ptr<timing_thread_pool> pool;
const bool pinned_to_core;
const int thread_id;
const int nthreads;
static void _thread_main(timing_thread *t);
virtual ~timing_thread() { }
protected:
timing_thread(const std::shared_ptr<timing_thread_pool> &pool, bool pin_to_core);
virtual void thread_body() = 0;
timing_thread_pool::time_t start_time;
bool timer_is_running = false;
// Thread-collective: all threads wait at a barrier, then initialize their local timers.
void start_timer();
// Thread-collective: the returned time is the average taken over all threads.
// If 'name' is non-null, then timing will be announced on thread ID zero.
double stop_timer(const char *name=nullptr);
};
struct transform_timing_thread : public timing_thread
{
const int nfreq;
const int nt_chunk;
const int stride;
const int num_chunks = 16;
float *intensity = nullptr;
float *weights = nullptr;
std::vector<std::shared_ptr<wi_transform>> transform_list;
int ntransforms = 0;
transform_timing_thread(const std::shared_ptr<timing_thread_pool> &pool, int nfreq, int nt_chunk, int stride,
const std::vector<std::shared_ptr<wi_transform>> &transform_list);
~transform_timing_thread();
// Noncopyable
transform_timing_thread(const transform_timing_thread &) = delete;
transform_timing_thread &operator=(const transform_timing_thread &) = delete;
virtual void thread_top(); // default thread_top(): prints nfreq, nt_chunk, stride on thread_id 0
virtual void thread_body() override; // overrides timing_thread::thread_body(), times transforms in transform_list
virtual void thread_bottom() {} // optional: if the timing thread should do anything else, it can go here
};
// Can be called for any subclass T of timing_thread (including T=transform_timing_thread)
template<typename T, typename... Args>
std::thread spawn_timing_thread(Args... args)
{
timing_thread *t = new T(args...);
return std::thread(timing_thread::_thread_main, t);
}
// -------------------------------------------------------------------------------------------------
// Non-inline helper functions (more to come?)
extern bool file_exists(const std::string &filename);
extern void makedirs(const std::string &dirname);
extern std::vector<std::string> listdir(const std::string &dirname);
// The "wrms_hack_for_testing" is explained in test-cpp-python-equivalence.py
extern void _wrms_hack_for_testing1(std::vector<float> &mean_hint, const float *intensity, const float *weights, int nfreq, int nt, int stride, int niter, double sigma, bool two_pass);
extern void _wrms_hack_for_testing2(float &mean, float &rms, const float *intensity, const float *weights, int nfreq, int nt, int stride, const std::vector<float> &mean_hint);
// Inlines follow...
template<typename T>
inline T square(T x)
{
return x*x;
}
inline double uniform_rand()
{
return (rand() + 0.5) / (RAND_MAX + 1.0);
}
inline double uniform_rand(double lo, double hi)
{
return lo + (hi-lo)*uniform_rand();
}
inline ssize_t randint(ssize_t lo, ssize_t hi)
{
rf_assert(lo < hi);
ssize_t ret = lo + (ssize_t)((hi-lo)*uniform_rand());
ret = std::max(ret, lo); // should be redundant
ret = std::min(ret, hi-1); // should be redundant
return ret;
}
inline double dist(double x, double y)
{
return fabs(x-y);
}
inline double reldist(double x, double y)
{
return fabs(x-y) / (fabs(x) + fabs(y));
}
// round up m to nearest multiple of n
inline ssize_t round_up(ssize_t m, ssize_t n)
{
rf_assert(m >= 0);
rf_assert(n > 0);
return ((m+n-1)/n) * n;
}
inline ssize_t gcd(ssize_t m, ssize_t n)
{
if (m < n)
std::swap(m, n);
if (n < 0)
throw std::runtime_error("gcd() called with negative argument");
while (n > 0) {
ssize_t d = m % n;
m = n;
n = d;
}
return m;
}
template<typename T>
inline std::string stringify(const T &x)
{
std::stringstream ss;
ss << x;
return ss.str();
}
inline bool startswith(const std::string &str, const std::string &prefix)
{
return std::equal(prefix.begin(), prefix.end(), str.begin());
}
inline bool endswith(const std::string &str, const std::string &suffix)
{
return std::equal(suffix.rbegin(), suffix.rend(), str.rbegin());
}
template<typename T, typename... Args>
std::unique_ptr<T> make_unique(Args&& ...args)
{
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}
template<typename T>
inline T *aligned_alloc(size_t nelts)
{
if (nelts == 0)
return NULL;
// align to 64-byte cache lines
void *p = NULL;
if (posix_memalign(&p, 64, nelts * sizeof(T)) != 0)
throw std::runtime_error("couldn't allocate memory");
memset(p, 0, nelts * sizeof(T));
return reinterpret_cast<T *> (p);
}
// std::vector doesn't provide a member function which guarantees deallocation!
template<typename T> static inline void deallocate(std::vector<T> &v)
{
std::vector<T> w;
v.swap(w);
}
inline double time_diff(const struct timeval &tv1, const struct timeval &tv2)
{
return (tv2.tv_sec - tv1.tv_sec) + 1.0e-6 * (tv2.tv_usec - tv1.tv_usec);
}
inline struct timeval get_time()
{
struct timeval ret;
if (gettimeofday(&ret, NULL) < 0)
throw std::runtime_error("gettimeofday() failed");
return ret;
}
} // namespace rf_pipelines
#endif // _RF_PIPELINES_INTERNALS_HPP
| [
"kmsmith@perimeterinstitute.ca"
] | kmsmith@perimeterinstitute.ca |
05a797e483524df9b76026b3bc8e9e3e214f89ce | f3e813535f75fb461e2306f1ad18596ac233e758 | /odb_api_bundle-0.17.6-Source/eckit/src/eckit/io/DblBuffer.cc | c1de63c9b901bb787d47a15f09a1f8c329d93b2b | [
"Apache-2.0"
] | permissive | vyesubabu/metview | 47f9de3eb5f1bf418e513ed306aa2279635b79c7 | 74c2b9bc28673001fd02e00194e92c53a897fb62 | refs/heads/master | 2021-05-17T16:42:41.697859 | 2018-04-09T15:08:19 | 2018-04-09T15:08:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,208 | cc | /*
* (C) Copyright 1996-2017 ECMWF.
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
* In applying this licence, ECMWF does not waive the privileges and immunities
* granted to it by virtue of its status as an intergovernmental organisation nor
* does it submit to any jurisdiction.
*/
#include "eckit/thread/AutoLock.h"
#include "eckit/io/Buffer.h"
#include "eckit/log/Bytes.h"
#include "eckit/io/DblBuffer.h"
#include "eckit/log/Log.h"
#include "eckit/thread/MutexCond.h"
#include "eckit/log/Progress.h"
#include "eckit/thread/Thread.h"
#include "eckit/thread/ThreadControler.h"
#include "eckit/log/Timer.h"
#include "eckit/runtime/Monitor.h"
//-----------------------------------------------------------------------------
namespace eckit {
//-----------------------------------------------------------------------------
class DblBufferError : public Exception {
public:
DblBufferError(const std::string& what)
{
reason(std::string("Double buffer error: ") + what);
}
};
struct OneBuffer {
MutexCond cond_;
bool full_;
long length_;
char* buffer_;
OneBuffer():
full_(false), length_(0), buffer_(0) {}
};
class DblBufferTask : public Thread {
DblBuffer& owner_;
DataHandle& out_;
Length estimate_;
OneBuffer* buffers_;
long parent_;
public:
DblBufferTask(DataHandle&, DblBuffer&, OneBuffer*, const Length&, long parent);
virtual void run();
};
DblBuffer::DblBuffer(long count, long size, TransferWatcher& watcher):
count_(count),
bufSize_(size),
error_(false),
restart_(false),
restartFrom_(0),
watcher_(watcher)
{
Log::info() << "Double buffering: " <<
count_ << " buffers of " << Bytes(size) << " is " << Bytes(count * size)
<< std::endl;
}
DblBuffer::~DblBuffer()
{
}
inline void DblBuffer::error(const std::string& why)
{
AutoLock<Mutex> lock(mutex_);
error_ = true;
why_ = why;
}
inline bool DblBuffer::error()
{
AutoLock<Mutex> lock(mutex_);
return error_;
}
void DblBuffer::restart(RestartTransfer& retry)
{
AutoLock<Mutex> lock(mutex_);
Log::warning() << "Retrying transfer from " << retry.from()
<< " (" << Bytes(retry.from()) << ")" << std::endl;
error_ = true;
restart_ = true;
restartFrom_ = retry.from();
}
Length DblBuffer::copy(DataHandle& in, DataHandle& out)
{
Timer timer("Double buffer");
in.compress();
Length estimate = in.openForRead(); AutoClose c1(in);
out.openForWrite(estimate); AutoClose c2(out);
Length total = estimate;
bool more = true;
while (more)
{
more = false;
try {
Length copied = copy(in, out, estimate);
Log::info() << "Copied: " << copied << ", estimate: " << estimate << std::endl;
ASSERT(copied == estimate);
}
catch (RestartTransfer& retry)
{
Log::warning() << "Retrying transfer from " << retry.from() << " (" << Bytes(retry.from()) << ")" << std::endl;
in.restartReadFrom(retry.from());
out.restartWriteFrom(retry.from());
estimate = total - retry.from();
more = true;
}
}
Log::info() << "Transfer rate " << Bytes(estimate, timer) << std::endl;
return total;
}
Length DblBuffer::copy(DataHandle& in, DataHandle& out, const Length& estimate)
{
Buffer bigbuf(count_ * bufSize_);
OneBuffer* buffers = new OneBuffer[count_];
char *addr = bigbuf;
for (int j = 0; j < count_; j++)
{
buffers[j].buffer_ = addr;
addr += bufSize_;
}
Progress progress("Reading data", 0, estimate);
error_ = false;
inBytes_ = outBytes_ = 0;
ThreadControler thread(new DblBufferTask(out, *this, buffers, estimate, Monitor::instance().self()), false);
thread.start();
int i = 0;
Timer reader("Double buffer reader");
double rate = 0;
double first = 0;
watcher_.watch(0, 0);
while (!error())
{
Log::message() << "Wait " << i << std::endl;
AutoLock<MutexCond> lock(buffers[i].cond_);
while (buffers[i].full_)
buffers[i].cond_.wait();
if (error())
break;
Log::message() << "Read " << i << std::endl;
try {
double x = reader.elapsed();
buffers[i].length_ = in.read(buffers[i].buffer_, bufSize_);
double s = reader.elapsed() - x;
Log::status() << Bytes(estimate) << " at " << Bytes(buffers[i].length_ / s) << "/s" << std::endl;
rate += s;
if (first == 0) first = rate;
watcher_.watch(buffers[i].buffer_, buffers[i].length_);
}
catch (RestartTransfer& retry)
{
Log::warning() << "RestartTransfer: Exiting reader thread" << std::endl;
buffers[i].length_ = -1;
restart(retry);
}
catch (std::exception& e)
{
Log::error() << "** " << e.what()
<< " Caught in " << Here() << std::endl;
Log::error() << "** Exception is handled" << std::endl;
buffers[i].length_ = -1;
error(e.what());
}
Log::message() << "" << std::endl;
buffers[i].full_ = true;
if (buffers[i].length_ == 0)
{
buffers[i].cond_.signal();
break;
}
if (buffers[i].length_ < 0)
{
ASSERT(error());
Log::warning() << "Read error... " << why_ << std::endl;
buffers[i].cond_.signal();
break;
}
inBytes_ += buffers[i].length_;
progress(inBytes_);
buffers[i].cond_.signal();
i++;
i %= count_;
}
Log::info() << "Read done " << Bytes(inBytes_) << std::endl;
Log::info() << "Read rate " << Bytes(inBytes_ / rate) << "/s" << std::endl;
if (first != rate)
Log::info() << "Read rate no mount " << Bytes(inBytes_ / (rate - first)) << "/s" << std::endl;
thread.wait();
delete[] buffers;
if (error_) {
if (restart_) throw RestartTransfer(restartFrom_);
throw DblBufferError(why_);
}
PANIC(inBytes_ != outBytes_);
return inBytes_;
}
DblBufferTask::DblBufferTask(DataHandle& out, DblBuffer& owner, OneBuffer* buffers,
const Length& estimate,
long parent):
Thread(false),
owner_(owner),
out_(out),
estimate_(estimate),
buffers_(buffers),
parent_(parent)
{
}
void DblBufferTask::run()
{
Monitor::instance().parent(parent_);
Log::status() << "Double buffering " << Bytes(estimate_) << std::endl;
Progress progress("Writing data", 0, estimate_);
int i = 0;
Timer writer("Double buffer writer");
double rate = 0;
double first = 0;
while (!owner_.error())
{
Log::message() << "Wait " << i << std::endl;
AutoLock<MutexCond> lock(buffers_[i].cond_);
while (!buffers_[i].full_)
buffers_[i].cond_.wait();
if (owner_.error())
break;
if (buffers_[i].length_ == 0)
break;
long length = -1;
Log::message() << "Write " << i << std::endl;
try {
double x = writer.elapsed();
length = out_.write(buffers_[i].buffer_, buffers_[i].length_);
double s = writer.elapsed() - x;
Log::status() << Bytes(buffers_[i].length_ / s) << "/s" << std::endl;
rate += s;
if (first == 0) first = rate;
ASSERT(length == buffers_[i].length_);
}
catch (RestartTransfer& retry)
{
Log::warning() << "RestartTransfer: Exiting writer thread" << std::endl;
length = -1;
owner_.restart(retry);
}
catch (std::exception& e)
{
Log::error() << "** " << e.what() << " Caught in " <<
Here() << std::endl;
Log::error() << "** Exception is handled" << std::endl;
length = -1;
owner_.error(e.what());
}
Log::message() << "" << std::endl;
buffers_[i].full_ = false;
if (length < 0)
{
ASSERT(owner_.error());
buffers_[i].cond_.signal();
break;
}
ASSERT(length == buffers_[i].length_);
owner_.outBytes_ += length;
progress(owner_.outBytes_);
buffers_[i].cond_.signal();
i++;
i %= owner_.count_;
}
Log::info() << "Write done " << Bytes(owner_.outBytes_) << std::endl;
Log::info() << "Write rate " << Bytes(owner_.outBytes_ / rate) << "/s" << std::endl;
if (rate != first)
Log::info() << "Write rate no mount " << Bytes(owner_.outBytes_ / (rate - first)) << "/s" << std::endl;
}
//-----------------------------------------------------------------------------
} // namespace eckit
| [
"Xin.L.Zhang@noaa.gov"
] | Xin.L.Zhang@noaa.gov |
41a4e1a6888895cd1ad3598b03cfba6c87b0d730 | 805109c841a3431bc6f543ee9b3ab3da07b5460d | /isSymmetric/isSymmetric/main.cpp | 25a72199327febe5bb1193e7c57eaaaa4ab4d95a | [] | no_license | jingninc/algorithm | bc4f8e3ecd845596e418c297bf11da917e868241 | 481406c8d5763585ff645a85db26f9deb5376cab | refs/heads/master | 2016-09-05T16:12:32.324491 | 2015-02-02T19:00:23 | 2015-02-02T19:00:23 | 30,202,500 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,023 | cpp | //
// main.cpp
// isSymmetric
//
// Created by JINGNING CAO on 1/11/15.
// Copyright (c) 2015 JINGNING CAO. All rights reserved.
//
#include <iostream>
#include <vector>
#include <stack>
#include <queue>
#include <sstream>
#include <unordered_set>
#include <unordered_map>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
bool isSame(TreeNode* root1, TreeNode* root2){
if (!root1 && !root2) return true;
if (!root1 || !root2) return false;
if (root1->val != root2->val) return false;
return isSame(root1->left, root2->right) && isSame(root1->right, root2->left);
}
bool isSymmetric(TreeNode *root) {
if (!root) return true;
return isSame(root->left, root->right);
}
int main(int argc, const char * argv[]) {
// insert code here...
std::cout << "Hello, World!\n";
return 0;
}
| [
"caojn909224@gmail.com"
] | caojn909224@gmail.com |
c9f91e48cc34f6391c014a70285b9fa3f0020fc1 | 7942bdac0f71f9b6abb2dc085393172f3bbc4d02 | /src/httpserver.cpp | 7318278ded2e7a6b520088c8f751bf404c9c7346 | [
"MIT"
] | permissive | Nabbers/BitTrivia | cae20b1d0528279dba0b4ed5044b863637df1700 | 23c5d2d35c3bd6377578c21380acf67e2573d45b | refs/heads/master | 2020-03-17T07:52:51.134148 | 2018-05-17T15:23:41 | 2018-05-17T15:23:41 | 133,416,353 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,417 | cpp | // Copyright (c) 2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "httpserver.h"
#include "chainparamsbase.h"
#include "compat.h"
#include "util.h"
#include "netbase.h"
#include "rpc/protocol.h" // For HTTP status codes
#include "sync.h"
#include "ui_interface.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <signal.h>
#include <event2/event.h>
#include <event2/http.h>
#include <event2/thread.h>
#include <event2/buffer.h>
#include <event2/util.h>
#include <event2/keyvalq_struct.h>
#ifdef EVENT__HAVE_NETINET_IN_H
#include <netinet/in.h>
#ifdef _XOPEN_SOURCE_EXTENDED
#include <arpa/inet.h>
#endif
#endif
#include <boost/algorithm/string/case_conv.hpp> // for to_lower()
#include <boost/foreach.hpp>
#include <boost/scoped_ptr.hpp>
/** Maximum size of http request (request line + headers) */
static const size_t MAX_HEADERS_SIZE = 8192;
/** HTTP request work item */
class HTTPWorkItem : public HTTPClosure
{
public:
HTTPWorkItem(HTTPRequest* req, const std::string &path, const HTTPRequestHandler& func):
req(req), path(path), func(func)
{
}
void operator()()
{
func(req.get(), path);
}
boost::scoped_ptr<HTTPRequest> req;
private:
std::string path;
HTTPRequestHandler func;
};
/** Simple work queue for distributing work over multiple threads.
* Work items are simply callable objects.
*/
template <typename WorkItem>
class WorkQueue
{
private:
/** Mutex protects entire object */
CWaitableCriticalSection cs;
CConditionVariable cond;
/* XXX in C++11 we can use std::unique_ptr here and avoid manual cleanup */
std::deque<WorkItem*> queue;
bool running;
size_t maxDepth;
int numThreads;
/** RAII object to keep track of number of running worker threads */
class ThreadCounter
{
public:
WorkQueue &wq;
ThreadCounter(WorkQueue &w): wq(w)
{
boost::lock_guard<boost::mutex> lock(wq.cs);
wq.numThreads += 1;
}
~ThreadCounter()
{
boost::lock_guard<boost::mutex> lock(wq.cs);
wq.numThreads -= 1;
wq.cond.notify_all();
}
};
public:
WorkQueue(size_t maxDepth) : running(true),
maxDepth(maxDepth),
numThreads(0)
{
}
/*( Precondition: worker threads have all stopped
* (call WaitExit)
*/
~WorkQueue()
{
while (!queue.empty()) {
delete queue.front();
queue.pop_front();
}
}
/** Enqueue a work item */
bool Enqueue(WorkItem* item)
{
boost::unique_lock<boost::mutex> lock(cs);
if (queue.size() >= maxDepth) {
return false;
}
queue.push_back(item);
cond.notify_one();
return true;
}
/** Thread function */
void Run()
{
ThreadCounter count(*this);
while (true) {
WorkItem* i = 0;
{
boost::unique_lock<boost::mutex> lock(cs);
while (running && queue.empty())
cond.wait(lock);
if (!running)
break;
i = queue.front();
queue.pop_front();
}
(*i)();
delete i;
}
}
/** Interrupt and exit loops */
void Interrupt()
{
boost::unique_lock<boost::mutex> lock(cs);
running = false;
cond.notify_all();
}
/** Wait for worker threads to exit */
void WaitExit()
{
boost::unique_lock<boost::mutex> lock(cs);
while (numThreads > 0){
cond.wait(lock);
}
}
/** Return current depth of queue */
size_t Depth()
{
boost::unique_lock<boost::mutex> lock(cs);
return queue.size();
}
};
struct HTTPPathHandler
{
HTTPPathHandler() {}
HTTPPathHandler(std::string prefix, bool exactMatch, HTTPRequestHandler handler):
prefix(prefix), exactMatch(exactMatch), handler(handler)
{
}
std::string prefix;
bool exactMatch;
HTTPRequestHandler handler;
};
/** HTTP module state */
//! libevent event loop
static struct event_base* eventBase = 0;
//! HTTP server
struct evhttp* eventHTTP = 0;
//! List of subnets to allow RPC connections from
static std::vector<CSubNet> rpc_allow_subnets;
//! Work queue for handling longer requests off the event loop thread
static WorkQueue<HTTPClosure>* workQueue = 0;
//! Handlers for (sub)paths
std::vector<HTTPPathHandler> pathHandlers;
//! Bound listening sockets
std::vector<evhttp_bound_socket *> boundSockets;
/** Check if a network address is allowed to access the HTTP server */
static bool ClientAllowed(const CNetAddr& netaddr)
{
if (!netaddr.IsValid())
return false;
BOOST_FOREACH (const CSubNet& subnet, rpc_allow_subnets)
if (subnet.Match(netaddr))
return true;
return false;
}
/** Initialize ACL list for HTTP server */
static bool InitHTTPAllowList()
{
rpc_allow_subnets.clear();
CNetAddr localv4;
CNetAddr localv6;
LookupHost("127.0.0.1", localv4, false);
LookupHost("::1", localv6, false);
rpc_allow_subnets.push_back(CSubNet(localv4, 8)); // always allow IPv4 local subnet
rpc_allow_subnets.push_back(CSubNet(localv6)); // always allow IPv6 localhost
if (mapMultiArgs.count("-rpcallowip")) {
const std::vector<std::string>& vAllow = mapMultiArgs["-rpcallowip"];
BOOST_FOREACH (std::string strAllow, vAllow) {
CSubNet subnet;
LookupSubNet(strAllow.c_str(), subnet);
if (!subnet.IsValid()) {
uiInterface.ThreadSafeMessageBox(
strprintf("Invalid -rpcallowip subnet specification: %s. Valid are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24).", strAllow),
"", CClientUIInterface::MSG_ERROR);
return false;
}
rpc_allow_subnets.push_back(subnet);
}
}
std::string strAllowed;
BOOST_FOREACH (const CSubNet& subnet, rpc_allow_subnets)
strAllowed += subnet.ToString() + " ";
LogPrint("http", "Allowing HTTP connections from: %s\n", strAllowed);
return true;
}
/** HTTP request method as string - use for logging only */
static std::string RequestMethodString(HTTPRequest::RequestMethod m)
{
switch (m) {
case HTTPRequest::GET:
return "GET";
break;
case HTTPRequest::POST:
return "POST";
break;
case HTTPRequest::HEAD:
return "HEAD";
break;
case HTTPRequest::PUT:
return "PUT";
break;
default:
return "unknown";
}
}
/** HTTP request callback */
static void http_request_cb(struct evhttp_request* req, void* arg)
{
std::unique_ptr<HTTPRequest> hreq(new HTTPRequest(req));
LogPrint("http", "Received a %s request for %s from %s\n",
RequestMethodString(hreq->GetRequestMethod()), hreq->GetURI(), hreq->GetPeer().ToString());
// Early address-based allow check
if (!ClientAllowed(hreq->GetPeer())) {
hreq->WriteReply(HTTP_FORBIDDEN);
return;
}
// Early reject unknown HTTP methods
if (hreq->GetRequestMethod() == HTTPRequest::UNKNOWN) {
hreq->WriteReply(HTTP_BADMETHOD);
return;
}
// Find registered handler for prefix
std::string strURI = hreq->GetURI();
std::string path;
std::vector<HTTPPathHandler>::const_iterator i = pathHandlers.begin();
std::vector<HTTPPathHandler>::const_iterator iend = pathHandlers.end();
for (; i != iend; ++i) {
bool match = false;
if (i->exactMatch)
match = (strURI == i->prefix);
else
match = (strURI.substr(0, i->prefix.size()) == i->prefix);
if (match) {
path = strURI.substr(i->prefix.size());
break;
}
}
// Dispatch to worker thread
if (i != iend) {
std::unique_ptr<HTTPWorkItem> item(new HTTPWorkItem(hreq.release(), path, i->handler));
assert(workQueue);
if (workQueue->Enqueue(item.get()))
item.release(); /* if true, queue took ownership */
else
item->req->WriteReply(HTTP_INTERNAL, "Work queue depth exceeded");
} else {
hreq->WriteReply(HTTP_NOTFOUND);
}
}
/** Callback to reject HTTP requests after shutdown. */
static void http_reject_request_cb(struct evhttp_request* req, void*)
{
LogPrint("http", "Rejecting request while shutting down\n");
evhttp_send_error(req, HTTP_SERVUNAVAIL, NULL);
}
/** Event dispatcher thread */
static void ThreadHTTP(struct event_base* base, struct evhttp* http)
{
RenameThread("bittrivia-http");
LogPrint("http", "Entering http event loop\n");
event_base_dispatch(base);
// Event loop will be interrupted by InterruptHTTPServer()
LogPrint("http", "Exited http event loop\n");
}
/** Bind HTTP server to specified addresses */
static bool HTTPBindAddresses(struct evhttp* http)
{
int defaultPort = GetArg("-rpcport", BaseParams().RPCPort());
std::vector<std::pair<std::string, uint16_t> > endpoints;
// Determine what addresses to bind to
if (!mapArgs.count("-rpcallowip")) { // Default to loopback if not allowing external IPs
endpoints.push_back(std::make_pair("::1", defaultPort));
endpoints.push_back(std::make_pair("127.0.0.1", defaultPort));
if (mapArgs.count("-rpcbind")) {
LogPrintf("WARNING: option -rpcbind was ignored because -rpcallowip was not specified, refusing to allow everyone to connect\n");
}
} else if (mapArgs.count("-rpcbind")) { // Specific bind address
const std::vector<std::string>& vbind = mapMultiArgs["-rpcbind"];
for (std::vector<std::string>::const_iterator i = vbind.begin(); i != vbind.end(); ++i) {
int port = defaultPort;
std::string host;
SplitHostPort(*i, port, host);
endpoints.push_back(std::make_pair(host, port));
}
} else { // No specific bind address specified, bind to any
endpoints.push_back(std::make_pair("::", defaultPort));
endpoints.push_back(std::make_pair("0.0.0.0", defaultPort));
}
// Bind addresses
for (std::vector<std::pair<std::string, uint16_t> >::iterator i = endpoints.begin(); i != endpoints.end(); ++i) {
LogPrint("http", "Binding RPC on address %s port %i\n", i->first, i->second);
evhttp_bound_socket *bind_handle = evhttp_bind_socket_with_handle(http, i->first.empty() ? NULL : i->first.c_str(), i->second);
if (bind_handle) {
boundSockets.push_back(bind_handle);
} else {
LogPrintf("Binding RPC on address %s port %i failed.\n", i->first, i->second);
}
}
return !boundSockets.empty();
}
/** Simple wrapper to set thread name and run work queue */
static void HTTPWorkQueueRun(WorkQueue<HTTPClosure>* queue)
{
RenameThread("bittrivia-httpworker");
queue->Run();
}
/** libevent event log callback */
static void libevent_log_cb(int severity, const char *msg)
{
#ifndef EVENT_LOG_WARN
// EVENT_LOG_WARN was added in 2.0.19; but before then _EVENT_LOG_WARN existed.
# define EVENT_LOG_WARN _EVENT_LOG_WARN
#endif
if (severity >= EVENT_LOG_WARN) // Log warn messages and higher without debug category
LogPrintf("libevent: %s\n", msg);
else
LogPrint("libevent", "libevent: %s\n", msg);
}
bool InitHTTPServer()
{
struct evhttp* http = 0;
struct event_base* base = 0;
if (!InitHTTPAllowList())
return false;
if (GetBoolArg("-rpcssl", false)) {
uiInterface.ThreadSafeMessageBox(
"SSL mode for RPC (-rpcssl) is no longer supported.",
"", CClientUIInterface::MSG_ERROR);
return false;
}
// Redirect libevent's logging to our own log
event_set_log_callback(&libevent_log_cb);
#if LIBEVENT_VERSION_NUMBER >= 0x02010100
// If -debug=libevent, set full libevent debugging.
// Otherwise, disable all libevent debugging.
if (LogAcceptCategory("libevent"))
event_enable_debug_logging(EVENT_DBG_ALL);
else
event_enable_debug_logging(EVENT_DBG_NONE);
#endif
#ifdef WIN32
evthread_use_windows_threads();
#else
evthread_use_pthreads();
#endif
base = event_base_new(); // XXX RAII
if (!base) {
LogPrintf("Couldn't create an event_base: exiting\n");
return false;
}
/* Create a new evhttp object to handle requests. */
http = evhttp_new(base); // XXX RAII
if (!http) {
LogPrintf("couldn't create evhttp. Exiting.\n");
event_base_free(base);
return false;
}
evhttp_set_timeout(http, GetArg("-rpcservertimeout", DEFAULT_HTTP_SERVER_TIMEOUT));
evhttp_set_max_headers_size(http, MAX_HEADERS_SIZE);
evhttp_set_max_body_size(http, MAX_SIZE);
evhttp_set_gencb(http, http_request_cb, NULL);
if (!HTTPBindAddresses(http)) {
LogPrintf("Unable to bind any endpoint for RPC server\n");
evhttp_free(http);
event_base_free(base);
return false;
}
LogPrint("http", "Initialized HTTP server\n");
int workQueueDepth = std::max((long)GetArg("-rpcworkqueue", DEFAULT_HTTP_WORKQUEUE), 1L);
LogPrintf("HTTP: creating work queue of depth %d\n", workQueueDepth);
workQueue = new WorkQueue<HTTPClosure>(workQueueDepth);
eventBase = base;
eventHTTP = http;
return true;
}
boost::thread threadHTTP;
bool StartHTTPServer()
{
LogPrint("http", "Starting HTTP server\n");
int rpcThreads = std::max((long)GetArg("-rpcthreads", DEFAULT_HTTP_THREADS), 1L);
LogPrintf("HTTP: starting %d worker threads\n", rpcThreads);
threadHTTP = boost::thread(boost::bind(&ThreadHTTP, eventBase, eventHTTP));
for (int i = 0; i < rpcThreads; i++)
boost::thread(boost::bind(&HTTPWorkQueueRun, workQueue));
return true;
}
void InterruptHTTPServer()
{
LogPrint("http", "Interrupting HTTP server\n");
if (eventHTTP) {
// Unlisten sockets
BOOST_FOREACH (evhttp_bound_socket *socket, boundSockets) {
evhttp_del_accept_socket(eventHTTP, socket);
}
// Reject requests on current connections
evhttp_set_gencb(eventHTTP, http_reject_request_cb, NULL);
}
if (workQueue)
workQueue->Interrupt();
}
void StopHTTPServer()
{
LogPrint("http", "Stopping HTTP server\n");
if (workQueue) {
LogPrint("http", "Waiting for HTTP worker threads to exit\n");
#ifndef WIN32
// ToDo: Disabling WaitExit() for Windows platforms is an ugly workaround for the wallet not
// closing during a repair-restart. It doesn't hurt, though, because threadHTTP.timed_join
// below takes care of this and sends a loopbreak.
workQueue->WaitExit();
#endif
delete workQueue;
}
if (eventBase) {
LogPrint("http", "Waiting for HTTP event thread to exit\n");
// Give event loop a few seconds to exit (to send back last RPC responses), then break it
// Before this was solved with event_base_loopexit, but that didn't work as expected in
// at least libevent 2.0.21 and always introduced a delay. In libevent
// master that appears to be solved, so in the future that solution
// could be used again (if desirable).
// (see discussion in https://github.com/bitcoin/bitcoin/pull/6990)
#if BOOST_VERSION >= 105000
if (!threadHTTP.try_join_for(boost::chrono::milliseconds(2000))) {
#else
if (!threadHTTP.timed_join(boost::posix_time::milliseconds(2000))) {
#endif
LogPrintf("HTTP event loop did not exit within allotted time, sending loopbreak\n");
event_base_loopbreak(eventBase);
threadHTTP.join();
}
}
if (eventHTTP) {
evhttp_free(eventHTTP);
eventHTTP = 0;
}
if (eventBase) {
event_base_free(eventBase);
eventBase = 0;
}
LogPrint("http", "Stopped HTTP server\n");
}
struct event_base* EventBase()
{
return eventBase;
}
static void httpevent_callback_fn(evutil_socket_t, short, void* data)
{
// Static handler: simply call inner handler
HTTPEvent *self = ((HTTPEvent*)data);
self->handler();
if (self->deleteWhenTriggered)
delete self;
}
HTTPEvent::HTTPEvent(struct event_base* base, bool deleteWhenTriggered, const boost::function<void(void)>& handler):
deleteWhenTriggered(deleteWhenTriggered), handler(handler)
{
ev = event_new(base, -1, 0, httpevent_callback_fn, this);
assert(ev);
}
HTTPEvent::~HTTPEvent()
{
event_free(ev);
}
void HTTPEvent::trigger(struct timeval* tv)
{
if (tv == NULL)
event_active(ev, 0, 0); // immediately trigger event in main thread
else
evtimer_add(ev, tv); // trigger after timeval passed
}
HTTPRequest::HTTPRequest(struct evhttp_request* req) : req(req),
replySent(false)
{
}
HTTPRequest::~HTTPRequest()
{
if (!replySent) {
// Keep track of whether reply was sent to avoid request leaks
LogPrintf("%s: Unhandled request\n", __func__);
WriteReply(HTTP_INTERNAL, "Unhandled request");
}
// evhttpd cleans up the request, as long as a reply was sent.
}
std::pair<bool, std::string> HTTPRequest::GetHeader(const std::string& hdr)
{
const struct evkeyvalq* headers = evhttp_request_get_input_headers(req);
assert(headers);
const char* val = evhttp_find_header(headers, hdr.c_str());
if (val)
return std::make_pair(true, val);
else
return std::make_pair(false, "");
}
std::string HTTPRequest::ReadBody()
{
struct evbuffer* buf = evhttp_request_get_input_buffer(req);
if (!buf)
return "";
size_t size = evbuffer_get_length(buf);
/** Trivial implementation: if this is ever a performance bottleneck,
* internal copying can be avoided in multi-segment buffers by using
* evbuffer_peek and an awkward loop. Though in that case, it'd be even
* better to not copy into an intermediate string but use a stream
* abstraction to consume the evbuffer on the fly in the parsing algorithm.
*/
const char* data = (const char*)evbuffer_pullup(buf, size);
if (!data) // returns NULL in case of empty buffer
return "";
std::string rv(data, size);
evbuffer_drain(buf, size);
return rv;
}
void HTTPRequest::WriteHeader(const std::string& hdr, const std::string& value)
{
struct evkeyvalq* headers = evhttp_request_get_output_headers(req);
assert(headers);
evhttp_add_header(headers, hdr.c_str(), value.c_str());
}
/** Closure sent to main thread to request a reply to be sent to
* a HTTP request.
* Replies must be sent in the main loop in the main http thread,
* this cannot be done from worker threads.
*/
void HTTPRequest::WriteReply(int nStatus, const std::string& strReply)
{
assert(!replySent && req);
// Send event to main http thread to send reply message
struct evbuffer* evb = evhttp_request_get_output_buffer(req);
assert(evb);
evbuffer_add(evb, strReply.data(), strReply.size());
HTTPEvent* ev = new HTTPEvent(eventBase, true,
boost::bind(evhttp_send_reply, req, nStatus, (const char*)NULL, (struct evbuffer *)NULL));
ev->trigger(0);
replySent = true;
req = 0; // transferred back to main thread
}
CService HTTPRequest::GetPeer()
{
evhttp_connection* con = evhttp_request_get_connection(req);
CService peer;
if (con) {
// evhttp retains ownership over returned address string
const char* address = "";
uint16_t port = 0;
evhttp_connection_get_peer(con, (char**)&address, &port);
peer = LookupNumeric(address, port);
}
return peer;
}
std::string HTTPRequest::GetURI()
{
return evhttp_request_get_uri(req);
}
HTTPRequest::RequestMethod HTTPRequest::GetRequestMethod()
{
switch (evhttp_request_get_command(req)) {
case EVHTTP_REQ_GET:
return GET;
break;
case EVHTTP_REQ_POST:
return POST;
break;
case EVHTTP_REQ_HEAD:
return HEAD;
break;
case EVHTTP_REQ_PUT:
return PUT;
break;
default:
return UNKNOWN;
break;
}
}
void RegisterHTTPHandler(const std::string &prefix, bool exactMatch, const HTTPRequestHandler &handler)
{
LogPrint("http", "Registering HTTP handler for %s (exactmatch %d)\n", prefix, exactMatch);
pathHandlers.push_back(HTTPPathHandler(prefix, exactMatch, handler));
}
void UnregisterHTTPHandler(const std::string &prefix, bool exactMatch)
{
std::vector<HTTPPathHandler>::iterator i = pathHandlers.begin();
std::vector<HTTPPathHandler>::iterator iend = pathHandlers.end();
for (; i != iend; ++i)
if (i->prefix == prefix && i->exactMatch == exactMatch)
break;
if (i != iend)
{
LogPrint("http", "Unregistering HTTP handler for %s (exactmatch %d)\n", prefix, exactMatch);
pathHandlers.erase(i);
}
}
| [
"jackmcnabb@hotmail.co.uk"
] | jackmcnabb@hotmail.co.uk |
7bb33e8e29aa12bbd8e0f7992fb5bb5ae4b1dfdd | 84864f862dec9171e958920f2c8e7c920fcef056 | /LeetCode/713. Subarray Product Less Than K.cpp | ff6b96061e138b56241d0fc64e348c43513df334 | [] | no_license | Orcuslc/Learning | 7704950f8c09232dadbbde81ed82ddc0ca65172d | ffa856febd85235d17358178f1e288ffae7856cb | refs/heads/master | 2020-03-26T11:59:54.093395 | 2018-05-29T04:19:36 | 2018-05-29T04:19:36 | 47,269,920 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 430 | cpp | class Solution {
public:
int numSubarrayProductLessThanK(vector<int>& nums, int k) {
int res = (nums[0] < k);
for(int i = 1; i < nums.size(); i++) {
int local = nums[i];
res += (local < k);
for(int j = i-1; j >= 0; j--) {
local *= nums[j];
if(local >= k) break;
else res++;
}
}
return res;
}
}; | [
"orcuslc@hotmail.com"
] | orcuslc@hotmail.com |
0e699652f693c6acb0c99dbadeb3bd2cd1ff9d1e | 92642c8c20ed4fec0c25689677c57321965c8984 | /Source/UnrealFlecs/Private/UnrealFlecsModule.cpp | 7252457de1ec197947402069921eab1baaddc868 | [
"MIT"
] | permissive | Junho2009/UnrealFlecsQuickstart | 6dd94ded960acf722b066b461aa1363984a73862 | 53ecc500b6946fa115f61a73232ca66de942c355 | refs/heads/master | 2023-04-11T15:06:56.569526 | 2021-03-23T20:46:48 | 2021-03-23T20:46:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 652 | cpp | // Copyright 2021 Red J
#include "UnrealFlecs/Public/UnrealFlecsModule.h"
#include "Modules/ModuleManager.h"
#include "Modules/ModuleInterface.h"
IMPLEMENT_GAME_MODULE(FUnrealFlecsModule, UnrealFlecs);
DEFINE_LOG_CATEGORY(UnrealFlecs);
#define LOCTEXT_NAMESPACE "UnrealFlecs"
void FUnrealFlecsModule::StartupModule()
{
UE_LOG(UnrealFlecs, Warning, TEXT("UnrealFlecs module has started!"));
}
void FUnrealFlecsModule::ShutdownModule()
{
UE_LOG(UnrealFlecs, Warning, TEXT("UnrealFlecs module has shut down"));
}
#undef LOCTEXT_NAMESPACE
// Add default functionality here for any IUnrealFlecsModule functions that are not pure virtual.
| [
"jtferson@gmail.com"
] | jtferson@gmail.com |
9a6d1a67672a196b5eeb5432d5b981f58f8d9120 | a7c0adc8dbc22051f8a262428b2bf88045df5c14 | /linkedListD.cpp | 78123ce34597abaac6f1563fa3e7eac91dd9aba7 | [] | no_license | vishnuganta22/datastructures | c2dc9e9f1c88789f9e96e8e45963c66e29f6f400 | f948e3896b6ee7e1a6808d8e1c908b9403a63147 | refs/heads/main | 2023-08-29T09:58:35.663789 | 2021-10-25T21:01:38 | 2021-10-25T21:01:38 | 371,284,216 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,860 | cpp | #include <iostream>
using namespace std;
struct Node{
int data;
Node* next;
Node* prev;
};
class LinkedList{
private:
Node* head;
int size;
public:
LinkedList(){
head = NULL;
size = 0;
}
void insertAtHead(int data){
Node* temp = new Node;
temp->data = data;
temp->prev = NULL;
temp->next = NULL;
if(head == NULL){
head = temp;
}else{
head->prev = temp;
temp->next = head;
head = temp;
}
size++;
}
void insertAtTail(int data){
Node* temp = new Node;
temp->data = data;
temp->prev = NULL;
temp->next = NULL;
if(head == NULL){
head = temp;
}else{
Node* curr = head;
while(curr->next != NULL){
curr = curr->next;
}
curr->next = temp;
temp->prev = curr;
}
size++;
}
void print(){
if(head != NULL){
Node* curr = head;
while(curr != NULL){
cout<<curr->data<<" ";
curr = curr->next;
}
cout<<endl;
}
}
void printInReverse(){
if(head != NULL){
Node* curr = head;
while(curr->next != NULL){
curr = curr->next;
}
while(curr != NULL){
cout<<curr->data<<" ";
curr = curr->prev;
}
cout<<endl;
}
}
int getSize(){
return size;
}
};
int main(){
LinkedList* list = new LinkedList();
list->insertAtHead(7);
list->insertAtHead(9);
list->insertAtTail(8);
list->insertAtHead(2);
list->insertAtTail(1);
list->print();
list->printInReverse();
} | [
"noreply@github.com"
] | vishnuganta22.noreply@github.com |
c30175c73150bd4a68391bbf9deaa0d5eaef4d8f | 8164dd9ec33a14acdeda6c148c33de5ff30c91ae | /src/CreationalPattern/AbstractFactory/AbstractFactory/AbstractFactory.h | 91ba1444de31dbbd007e4239c80f0d584a1e829a | [] | no_license | kingdekong/Design-Patterns | a4ff6d5e91d5d401f8de5b2943a2de2d25d3f805 | cf0dc873d92f45d3457405b5dc670f290974eac6 | refs/heads/master | 2020-03-29T08:37:34.061320 | 2018-09-21T08:56:23 | 2018-09-21T08:56:23 | 149,719,919 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 376 | h | #ifndef _HEADER_AbstractFactory_
#define _HEADER_AbstractFactory_
#include "AbstractProductA.h"
#include "AbstractProductB.h"
class AbstractFactory
{
public:
AbstractFactory();
virtual ~AbstractFactory();
virtual AbstractProductA* createProductA() = 0;
virtual AbstractProductB* createProductB() = 0;
private:
};
#endif // !_HEADER_AbstractFactory_
| [
"degang_jin@htc.com"
] | degang_jin@htc.com |
966a687fbf16ccecd1868235111e975406465cb8 | 613f88ac75206a18b2ed4b1220974f046268e27d | /server.cpp | d6163edb6c42607f7031ffc0f718c15bd3823414 | [] | no_license | serenityFX/Web_server_boost_asio_CPP | 6bca8e4334f9808de2db83b7e730c0deae83e496 | ecacf8ebcddf9079f7244706ea347dd5552cd9eb | refs/heads/master | 2021-01-10T04:17:46.074767 | 2016-02-22T14:56:50 | 2016-02-22T14:56:50 | 52,224,321 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,351 | cpp | #include "server.h"
#include <boost/thread/thread.hpp>
#include <boost/bind.hpp>
#include <boost/shared_ptr.hpp>
#include <vector>
namespace http {
namespace server3 {
server::server(const std::string& address, const std::string& port,
const std::string& doc_root, std::size_t thread_pool_size)
: thread_pool_size_(thread_pool_size),
signals_(io_service_),
acceptor_(io_service_),
new_connection_(),
request_handler_(doc_root)
{
// Register to handle the signals that indicate when the server should exit.
// It is safe to register for the same signal multiple times in a program,
// provided all registration for the specified signal is made through Asio.
signals_.add(SIGINT);
signals_.add(SIGTERM);
#if defined(SIGQUIT)
signals_.add(SIGQUIT);
#endif // defined(SIGQUIT)
signals_.async_wait(boost::bind(&server::handle_stop, this));
// Open the acceptor with the option to reuse the address (i.e. SO_REUSEADDR).
boost::asio::ip::tcp::resolver resolver(io_service_);
boost::asio::ip::tcp::resolver::query query(address, port);
boost::asio::ip::tcp::endpoint endpoint = *resolver.resolve(query);
acceptor_.open(endpoint.protocol());
acceptor_.set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
acceptor_.bind(endpoint);
acceptor_.listen();
start_accept();
}
void server::run()
{
// Create a pool of threads to run all of the io_services.
std::vector<boost::shared_ptr<boost::thread> > threads;
for (std::size_t i = 0; i < thread_pool_size_; ++i)
{
boost::shared_ptr<boost::thread> thread(new boost::thread(
boost::bind(&boost::asio::io_service::run, &io_service_)));
threads.push_back(thread);
}
// Wait for all threads in the pool to exit.
for (std::size_t i = 0; i < threads.size(); ++i)
threads[i]->join();
}
void server::start_accept()
{
new_connection_.reset(new connection(io_service_, request_handler_));
acceptor_.async_accept(new_connection_->socket(),
boost::bind(&server::handle_accept, this,
boost::asio::placeholders::error));
}
void server::handle_accept(const boost::system::error_code& e)
{
if (!e)
{
new_connection_->start();
}
start_accept();
}
void server::handle_stop()
{
io_service_.stop();
}
} // namespace server3
} // namespace http
| [
"victoryagudaev@gmail.com"
] | victoryagudaev@gmail.com |
634d3ac4e756bfd74c994500c2ba71c4260ddc9e | 2360305c0a9d7a4a642144aa1e44a93d45c0dca4 | /src/osinterface/OSVirtualScreen.h | cb7b9421a34dfaae4c28bbdd6cb5ea23df78a9be | [] | no_license | vdods/os-controls | 96e4fcefac1143d841291e20bbc35b84e6af5abc | 4ce5dbcebbf855f6e036f5d42db85c60d9d74de4 | refs/heads/master | 2021-06-06T12:42:13.958298 | 2014-09-19T01:16:22 | 2014-09-19T01:16:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,121 | h | // Copyright (c) 2010 - 2014 Leap Motion. All rights reserved. Proprietary and confidential.
#pragma once
#include "OSScreen.h"
#include "OSCursor.h"
#include <vector>
#include <mutex>
class OSCursor;
class OSVirtualScreenListener {
public:
OSVirtualScreenListener(void) {}
virtual ~OSVirtualScreenListener(void) {}
virtual void OnChange(void) = 0;
};
class OSVirtualScreen :
public ContextMember,
public OSScreenBase
{
public:
OSVirtualScreen();
virtual ~OSVirtualScreen();
static OSVirtualScreen* New(void);
std::vector<OSScreen> Screens() const {
std::lock_guard<std::mutex> lock(m_mutex);
return m_screens;
}
OSScreen PrimaryScreen() const;
OSScreen ClosestScreen(const OSPoint& position) const;
protected:
virtual std::vector<OSScreen> GetScreens() const = 0;
void Update();
private:
OSRect ComputeBounds(const std::vector<OSScreen>& screens);
OSPoint ClipPosition(const OSPoint& position, uint32_t* index) const;
mutable std::mutex m_mutex;
std::vector<OSScreen> m_screens;
AutoRequired<OSCursor> m_cursor;
};
| [
"jmarsden@leapmotion.com"
] | jmarsden@leapmotion.com |
dab18ee9db940a1acbb7d73001415c7ea54cabb4 | 15cec5616a1c10924ebfd7d1db2134dbcc4e5598 | /atcoder.jp/abc054/abc054_a/Main.cpp | 92a499ef1c9847f8d34ef796680775a49ef09dc7 | [] | no_license | shuto1441/atcoder_archive | 2c474a379b6b3df8783504335cc678b3e45fc0e8 | 8c3cc31ebe39746e26f8fdef4f6ac289d34f91a0 | refs/heads/main | 2023-07-11T00:03:38.661106 | 2021-08-21T11:16:28 | 2021-08-21T11:16:28 | 397,816,573 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 282 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
if(a==1&&b!=1)
cout<<"Alice"<<endl;
else if(a!=1&&b==1)
cout<<"Bob"<<endl;
else if(a==b)
cout<<"Draw"<<endl;
else if(a>b)
cout<<"Alice"<<endl;
else
cout<<"Bob"<<endl;
}
| [
"shuto1441@gmail.com"
] | shuto1441@gmail.com |
4ad20458f9bffd0ec6ef965b916ff0d51803e74e | edfaf7367f0298cc921c96b9e783df41a952f0f5 | /5766.cpp | 0fd584731d9b71ae134c1b5abd1627edd222acd0 | [] | no_license | urrburu/baekjoon-algo | 4993beabc68cc97b6ea19a3deed2607e9df1e0ed | 5090a9f7395e53dbcf423e1c1cc1a966b19996e3 | refs/heads/master | 2021-11-09T22:39:01.096357 | 2021-11-03T11:38:26 | 2021-11-03T11:38:26 | 190,715,020 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 555 | cpp | #include<iostream>
#include<queue>
using namespace std;
int main() {
int n, m;
while (1) {
cin >> n >> m; int point[10001] = { 0, };
if (n == 0 && m == 0)break;
for (int i = 0; i < n * m; ++i) {
int tmp; cin >> tmp; point[tmp]++;
}
priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>> > pq;
for (int i = 1; i < 10001; ++i) {
pq.push({ -point[i],i });
}
pq.pop();
int tar = pq.top().first;
while (pq.top().first == tar) {
cout << pq.top().second << " ";
pq.pop();
}
cout << "\n";
}
} | [
"bbs4614@naver.com"
] | bbs4614@naver.com |
0acf788079782aa4a7c56e41f1e13a0013fdf498 | e8a562e13ca47764ba96cb47b9e0c477447a6296 | /graph/shortest_path/sol/correct.cpp | 3eb1d9701f62de8ffb5a1a5bda028dc56d04c8ac | [
"Apache-2.0"
] | permissive | yosupo06/library-checker-problems | 0600700ee39a7b32fdec635076d75ee270c0e636 | 9d8930c908153adc3bd3f50999d782c89f666725 | refs/heads/master | 2023-08-22T19:59:02.303444 | 2023-08-10T07:58:08 | 2023-08-10T07:58:08 | 189,480,738 | 440 | 129 | Apache-2.0 | 2023-09-12T08:39:13 | 2019-05-30T20:49:42 | C++ | UTF-8 | C++ | false | false | 1,215 | cpp | #include <vector>
#include <queue>
#include <utility>
#include <stdint.h>
#include <algorithm>
#include "../fastio.h"
#define INF 1000000000000000000
template<typename T> using pqueue_inv = std::priority_queue<T, std::vector<T>, std::greater<T> >;
int main() {
int n = ri();
int m = ri();
int s = ri();
int t = ri();
std::vector<std::vector<std::pair<int, int> > > hen(n);
for (int i = 0; i < m; i++) {
int a = ri();
int b = ri();
int c = ri();
hen[a].push_back({b, c});
}
std::vector<int64_t> dist(n, INF);
std::vector<int> from(n, -1);
pqueue_inv<std::pair<int64_t, int> > que;
que.push({dist[s] = 0, s});
while (que.size()) {
auto i = que.top();
que.pop();
if (i.first != dist[i.second]) continue;
for (auto j : hen[i.second]) if (dist[j.first] > i.first + j.second)
que.push({dist[j.first] = i.first + j.second, j.first}), from[j.first] = i.second;
}
if (dist[t] == INF) println("-1");
else {
std::vector<int> path;
for (int cur = t; cur != -1; cur = from[cur]) path.push_back(cur);
std::reverse(path.begin(), path.end());
println(dist[t], ' ', path.size() - 1);
for (int i = 0; i + 1 < (int) path.size(); i++) println(path[i], ' ', path[i + 1]);
}
return 0;
}
| [
"rin20042004@gmail.com"
] | rin20042004@gmail.com |
4a6dbe6d34bc83a5aea452c028b75bc5aebc81bf | bdeb62dc7c23535b3be863c3cea2c88f43c13420 | /Codes/Q12.CPP | 73542c5f826ef4568e6dd97e2aabd960d27d8174 | [
"MIT"
] | permissive | Shetty073/Cpp-practical-codes | 4cf9b7bec6c6eb802abc6b78e1f676111e77f49a | 13a9b169f10579985606456af564148c57c514f1 | refs/heads/master | 2020-05-15T12:52:36.571661 | 2019-04-24T13:43:01 | 2019-04-24T13:43:01 | 182,280,995 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 612 | cpp | #include <iostream.h>
#include <conio.h>
class Cities
{
char city[30];
public:
void read();
void display();
};
void Cities::read()
{
cin.getline(city,30);
}
void Cities::display()
{
if(city[0] == 'B' || city[0] == 'C'|| city[0] == 'b'|| city[0] == 'c')
{
cout<<city<<" ";
}
}
void main()
{
clrscr();
cout<<"Enter the name of the cities: ";
Cities c[5];
for(int i=0; i<5; i++)
{
c[i].read();
}
cout<<"Cities with name starting from 'B' or 'C': ";
for(i = 0; i < 5; i++)
{
c[i].display();
}
getch();
}
| [
"30448930+Shetty073@users.noreply.github.com"
] | 30448930+Shetty073@users.noreply.github.com |
5c2bf4968ccf50621b80a917ba0f8bdbabd41e62 | 2d209723d1a723df319d60c3805aa598f0677f6f | /include/AttributeInfo.h | f9470a91307bb00eaa9eb59dfbce271d81b2100d | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | HDFGroup/psh5x | d81bcf7a4b92cc59b43ef0e3c508de53e2193eb9 | 4d1521ed79cd894b34329ab019213bd783721e6b | refs/heads/master | 2020-05-18T11:20:23.635946 | 2015-07-15T20:57:53 | 2015-07-15T20:57:53 | 39,159,932 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,828 | h | #pragma once
extern "C" {
#include "H5Apublic.h"
#include "H5Opublic.h"
}
namespace PSH5X
{
public ref class AttributeInfo
{
public:
property System::String^ AttributeName
{
System::String^ get() { return m_attribute_name; }
}
property bool CreationOrderIsValid
{
bool get() { return (m_corder_valid > 0); }
}
property long long CreationOrder
{
long long get() { return safe_cast<long long>(m_corder); }
}
property System::String^ AttributeNameCharacterSet
{
System::String^ get() { return m_cset; }
}
property hsize_t DataSizeBytes
{
hsize_t get() { return m_data_size; }
}
AttributeInfo(System::String^ name, H5A_info_t* info)
{
m_attribute_name = name;
m_corder_valid = info->corder_valid;
m_corder = info->corder;
switch (info->cset)
{
case H5T_CSET_ASCII:
m_cset = gcnew System::String("ASCII");
break;
case H5T_CSET_UTF8:
m_cset = gcnew System::String("UTF-8");
break;
default:
m_cset = gcnew System::String("UNKNOWN");
break;
}
m_data_size = info->data_size;
}
~AttributeInfo()
{
delete m_attribute_name;
delete m_cset;
}
private:
System::String^ m_attribute_name;
hbool_t m_corder_valid;
int64_t m_corder;
System::String^ m_cset;
hsize_t m_data_size;
};
} | [
"gheber@bc1736a7-42db-4d61-a5e1-31a1cdc50de3"
] | gheber@bc1736a7-42db-4d61-a5e1-31a1cdc50de3 |
90bd3848b8ed8fbda73fad84955ef0cc1c131fc8 | 87e3fdaf3d40618eb980e1af6cd5909cfab548e3 | /BeTrains/inc/Controller/Controller.h | 202f2adcb110a45e8fa56d6b65613f68fa3594b4 | [] | no_license | bartbru/BeTrains.Bada | e768cf769cad0f8d539dbe56722a88d395682553 | 7493c459130c93286248dc94ccc83156b1ab355c | refs/heads/master | 2016-09-06T16:08:47.658844 | 2010-11-21T18:53:37 | 2010-11-21T18:53:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 225 | h | /*
* Controller.h
*
* Created on: 21-nov-2010
* Author: Bart Bruynooghe
*/
#ifndef CONTROLLER_H_
#define CONTROLLER_H_
class Controller {
public:
Controller();
virtual ~Controller();
};
#endif /* CONTROLLER_H_ */
| [
"bart.bruynooghe@gmail.com"
] | bart.bruynooghe@gmail.com |
b4a18719106625fdfbe4d4657023363a11d69a32 | faa8eb80660a7d6fff4d365fde1bab2528bab234 | /src/graphics.cpp | ccc4f3de4184b01802faf19045b285b9250b3461 | [
"MIT"
] | permissive | qwook/spine | 54aad04d552a6bf79b9083a62423439abf6af33a | 7a6aa696a3ce97629b46c682745d208bfcc70341 | refs/heads/master | 2020-04-16T08:13:28.719409 | 2013-03-27T20:19:07 | 2013-03-27T20:19:07 | 7,635,849 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,550 | cpp | /*
Copyright (C) 2013 Henry Tran
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.
*/
/* Welcome to Suburbia. */
#include "imath.h"
#include "ifilesystem.h"
#include "iclient.h"
#include "graphics.h"
#include <iostream>
#include <string>
#include <map>
#include <stdio.h>
#include <cmath>
#define GLEW_STATIC
#include <GL/glew.h>
#include <GL/glfw.h>
#include "imagedata.h"
#include "fonts.h"
std::map<std::string, GLuint> shaders;
std::map<std::string, GLuint> programs;
std::map<std::string, Material> materials;
Font *test;
void MousePressedCallback(int i, int b)
{
if (b == 0) {
client->mouseDown(i);
}
else if (b == 1) {
client->mouseUp(i);
}
}
void CGraphicsModule::initDriver( short width, short height )
{
offsetX = 0;
offsetY = 0;
this->width = width;
this->height = height;
if (!glfwInit()) {
printf("Failed to start GLFW.");
exit(1);
}
#ifdef USE_OPENGL_3
glfwOpenWindowHint( GLFW_OPENGL_VERSION_MAJOR, 3 );
glfwOpenWindowHint( GLFW_OPENGL_VERSION_MINOR, 2 );
glfwOpenWindowHint( GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE );
#endif
glfwOpenWindowHint( GLFW_WINDOW_NO_RESIZE, GL_TRUE );
glfwOpenWindow( width, height, 0, 0, 0, 0, 8, 0, GLFW_WINDOW );
glfwSetWindowTitle( "Spine" );
const GLubyte* version = glGetString(GL_VERSION);
const GLubyte* renderer = glGetString(GL_RENDERER);
const GLubyte* vendor = glGetString(GL_VENDOR);
const GLubyte* glslvers = glGetString(GL_SHADING_LANGUAGE_VERSION);
printf("Version: %s\nRenderer: %s\nVendor: %s\nGLSLVersion: %s\n", version, renderer, vendor, glslvers);
glewExperimental = GL_TRUE;
if (glewInit() != GLEW_OK) {
printf( "Error loading glew!" );
exit(1);
} else {
printf( "Using GLEW: %s %d\n", glewGetString(GLEW_VERSION), glewIsSupported("GL_ARB_fragment_program") );
}
// Compile all the shaders.
DirectoryList list = filesystem->getDirectoryList("./shaders/");
for (DirectoryList::iterator i = list.begin(); i != list.end(); ++i) {
char name[50];
char exten[10];
util->getFileName(name, (*i).c_str());
util->getFileExtension(exten, (*i).c_str());
Buffer buffer;
File *file = filesystem->open((*i).c_str());
file->readBuffer(&buffer);
if (strcmp(exten, ".fsh") == 0) {
const char *c_str = buffer.data;
GLuint fragmentShader = glCreateShader( GL_FRAGMENT_SHADER );
glShaderSource( fragmentShader, 1, &c_str, NULL );
glCompileShader( fragmentShader );
shaders[name] = fragmentShader;
GLint status;
glGetShaderiv( fragmentShader, GL_COMPILE_STATUS, &status );
if (status == GL_TRUE) {
printf("Loaded fragment shader: %s (%d)\n", name, fragmentShader);
} else {
char buffer[512];
glGetShaderInfoLog( fragmentShader, 512, NULL, buffer );
printf("Error loading fragment shader: %s (%d)\n", name, fragmentShader);
printf("%s\n", buffer);
}
} else if (strcmp(exten, ".vsh") == 0) {
const char *c_str = buffer.data;
GLuint vertexShader = glCreateShader( GL_VERTEX_SHADER );
glShaderSource( vertexShader, 1, &c_str, NULL );
glCompileShader( vertexShader );
shaders[name] = vertexShader;
GLint status;
glGetShaderiv( vertexShader, GL_COMPILE_STATUS, &status );
if (status == GL_TRUE) {
printf("Loaded vertex shader: %s (%d)\n", name, vertexShader);
} else {
char buffer[512];
glGetShaderInfoLog( vertexShader, 512, NULL, buffer );
printf("Error loading vertex shader: %s (%d)\n", name, vertexShader);
printf("%s\n", buffer);
}
}
delete file;
}
// Compile all the programs.
for (DirectoryList::iterator i = list.begin(); i != list.end(); ++i) {
char exten[10];
util->getFileExtension(exten, (*i).c_str());
if (strcmp(exten, ".kv") == 0) {
char name[50];
util->getFileName(name, (*i).c_str());
util->getFileNameNoExtension(name, name);
Buffer buffer;
File *file = filesystem->open((*i).c_str());
file->readBuffer(&buffer);
KeyValue *kv = util->parseKeyValue(&buffer);
GLuint shaderProgram = glCreateProgram();
KeyValue *shadermembers = kv->getMember("shaders");
if (shadermembers != NULL) {
unsigned int b = 0;
KeyValue *member = shadermembers->getMember(b);
while ((member = shadermembers->getMember(b)) != NULL) {
glAttachShader( shaderProgram, shaders[member->getString()] );
b++;
}
}
KeyValue *fragdatamembers = kv->getMember("fragdata");
if (fragdatamembers != NULL) {
unsigned int b = 0;
KeyValue *member = fragdatamembers->getMember(b);
while ((member = fragdatamembers->getMember(b)) != NULL) {
glBindFragDataLocation( shaderProgram, b, member->getString().c_str());
b++;
}
}
glLinkProgram( shaderProgram );
glUseProgram( shaderProgram );
GLint posAttrib = glGetAttribLocation( shaderProgram, "position" );
glEnableVertexAttribArray( posAttrib );
glVertexAttribPointer( posAttrib, 2, GL_FLOAT, GL_FALSE, 0, 0 );
programs[name] = shaderProgram;
printf("Loaded program: %s (%d)\n", name, shaderProgram);
kv->release();
file->release();
}
}
glEnable(GL_TEXTURE_2D);
glEnable(GL_BLEND);
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LESS);
glBlendEquation( GL_FUNC_ADD );
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
loadMaterial("disttex.tga");
loadMaterial("8.tga");
// load default textures
ImageData white(1, 1);
white.setPixel(0, 0, Color(255, 255, 255));
loadMaterial("white", &white);
ImageData black(1, 1);
black.setPixel(0, 0, Color(0, 0, 0));
loadMaterial("black", &black);
glfwSetMouseButtonCallback(&MousePressedCallback);
}
Font *CGraphicsModule::loadFont(const char *fontFile, int size)
{
return new Font(fontFile, size, 128, 128);
}
void CGraphicsModule::drawText( Font *font, const char *text, Vector2Df pos ) {
font->drawString(text, pos);
}
Material CGraphicsModule::loadMaterial(const char *matName, ImageData *data) {
Material material = materials[matName];
if (material.mat) {
return useMaterial(matName);
}
GLuint textureID;
glGenTextures( 1, &textureID );
glActiveTexture(GL_TEXTURE0);
glBindTexture( GL_TEXTURE_2D, textureID );
unsigned int format = GL_RGBA;
unsigned int level = 0;
glTexImage2D( GL_TEXTURE_2D, level, format,
data->width, data->height, 0, format,
GL_UNSIGNED_BYTE, (void*) data->data );
glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST );
glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST );
glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE );
glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE );
Material ret = { (unsigned int)textureID, data->width, data->height };
materials[matName] = ret;
return ret;
}
Material CGraphicsModule::loadMaterial(const char *matName) {
Material material = materials[matName];
if (material.mat) {
return useMaterial(matName);
}
GLuint textureID;
glGenTextures( 1, &textureID );
GLFWimage teximg; // Use intermediate GLFWimage to get width and height
if(!glfwReadImage(matName, &teximg, GLFW_NO_RESCALE_BIT))
printf("I/O error %s", "Failed to load distance texture from TGA file.");
glActiveTexture(GL_TEXTURE0);
glBindTexture( GL_TEXTURE_2D, textureID );
glfwLoadTextureImage2D( &teximg, 0 );
unsigned int width = teximg.Width, height = teximg.Height;
// The special shader used to render this texture performs its own minification
// and magnification. Specify nearest neighbor sampling to avoid trampling
// over the distance values split over two channels as 8.8 fixed-point data.
glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST );
glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST );
glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE );
glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE );
glfwFreeImage(&teximg); // Clean up the malloc()'ed data pointer
Material ret = { (unsigned int)textureID, width, height };
materials[matName] = ret;
return ret;
}
Material CGraphicsModule::useMaterial(const char *matName) {
Material material = materials[matName];
if (material.mat) {
glActiveTexture(GL_TEXTURE0);
glBindTexture( GL_TEXTURE_2D, material.mat );
return material;
}
Material ret = {0, 0, 0};
return ret;
}
Material CGraphicsModule::useMaterial(unsigned int mat) {
glActiveTexture(GL_TEXTURE0);
glBindTexture( GL_TEXTURE_2D, mat );
int width, height;
glGetTexLevelParameteriv(GL_TEXTURE_2D, 0, GL_TEXTURE_WIDTH, &width);
glGetTexLevelParameteriv(GL_TEXTURE_2D, 0, GL_TEXTURE_HEIGHT, &height);
Material ret = { (unsigned int)mat, (unsigned int)width, (unsigned int)height };
return ret;
}
unsigned int CGraphicsModule::useProgram(const char *programName) {
GLuint program = programs[programName];
if (program) {
glUseProgram(program);
return program;
}
return 0;
}
unsigned int CGraphicsModule::useProgram(unsigned int program) {
glUseProgram(program);
return program;
}
void CGraphicsModule::setProgramVar1f(unsigned int program, const char *var, float i) {
GLint location = glGetUniformLocation( program, var );
glUniform1f( location, i );
}
void CGraphicsModule::setProgramVar1i(unsigned int program, const char *var, int i) {
GLint location = glGetUniformLocation( program, var );
glUniform1i( location, i );
}
void CGraphicsModule::drawQuad(float x, float y, float width, float height) {
glBegin( GL_QUADS );
glTexCoord2f( 0.0f, 1.0f );
glVertex2f( x+offsetX, y+height+offsetY );
glTexCoord2f( 1.0f, 1.0f );
glVertex2f( x+width+offsetX, y+height+offsetY );
glTexCoord2f( 1.0f, 0.0f );
glVertex2f( x+width+offsetX, y+offsetY );
glTexCoord2f( 0.0f, 0.0f );
glVertex2f( x+offsetX, y+offsetY );
glEnd();
}
void CGraphicsModule::drawQuadUV(float x, float y, float width, float height, float u1, float u2, float v1, float v2) {
glBegin( GL_QUADS );
glTexCoord2f( u1, v2 );
glVertex2f( x+offsetX, y+height+offsetY );
glTexCoord2f( v1, v2 );
glVertex2f( x+width+offsetX, y+height+offsetY );
glTexCoord2f( v1, u2 );
glVertex2f( x+width+offsetX, y+offsetY );
glTexCoord2f( u1, u2 );
glVertex2f( x+offsetX, y+offsetY );
glEnd();
}
void CGraphicsModule::setColor(unsigned char r, unsigned char g, unsigned char b, unsigned char a) {
glColor4f((float)r/255.0f, (float)g/255.0f, (float)b/255.0f, (float)a/255.0f);
}
void CGraphicsModule::init( IModuleManager* modulemanager ) {
}
void CGraphicsModule::release() {
glfwTerminate();
}
bool CGraphicsModule::isWindowOpen() {
if ( glfwGetKey( GLFW_KEY_ESC ) == GLFW_PRESS ) {
return false;
}
if ( !glfwGetWindowParam( GLFW_OPENED ) ) {
return false;
}
return true;
}
void CGraphicsModule::clear() {
glClearColor(1.0f, 1.0f, 1.0f, 0.0f);
glColorMask( GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE );
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glDepthMask(true);
glMatrixMode( GL_PROJECTION );
glLoadIdentity();
glOrtho(0.0f, 1.0f*getWidth(), 1.0f*getHeight(), 0.0f, 0.0f, 1.0f);
//glOrtho(0.0f, 1.0f*800, 0.0f, 1.0f*600, -1.0f, 100.0f);
//gluPerspective( 45.0f, (GLfloat)800/(GLfloat)600, 1.0f, 100.0f );
//glViewport( 0, 0, 640, 480 );
glDepthMask(false);
glMatrixMode( GL_MODELVIEW );
glLoadIdentity();
offsetX = 0;
offsetY = 0;
while ( scissorStack.size() > 0 ) {
popScissor();
}
}
void CGraphicsModule::setCursorVisible( bool visible ) {
if ( visible ) {
glfwEnable( GLFW_MOUSE_CURSOR );
} else {
glfwDisable( GLFW_MOUSE_CURSOR );
}
}
Vector2Df CGraphicsModule::getCursorPos() {
int x, y;
glfwGetMousePos(&x, &y);
return Vector2Df((float)x, (float)y);
}
void CGraphicsModule::update() {
glfwSwapBuffers();
}
void CGraphicsModule::pushScissor(bool enable, int x, int y, int width, int height, bool offset) {
int cutx = 0;
int cuty = 0;
int cutwidth = 0;
int cutheight = 0;
int nX = x;
int nY = y;
int nWidth = width;
int nHeight = height;
if ( enable ) {
glEnable(GL_SCISSOR_TEST);
if ( scissorStack.size() > 0 ) {
Scissor s = *scissorStack.end()--;
if ( x < s.x ) {
cutx = s.x - x;
}
if ( y < s.y ) {
cuty = s.y - y;
}
if ( x + width > s.x + s.width ) {
cutwidth = (x + width) - (s.x + s.width);
}
if ( y + height > s.y + s.height ) {
cutheight = (y + height) - (s.y + s.height);
}
}
nX = x - cutx;
nY = getHeight() - y - cuty - height;
nWidth = width - cutx - cutwidth;
nHeight = height - cuty - cutheight;
glScissor(nX, nY, nWidth, nHeight);
} else {
glDisable(GL_SCISSOR_TEST);
}
if (offset == true) {
offsetX += x;
offsetY += y;
}
scissorStack.push_back(Scissor(enable, nX, nY, nWidth, nHeight, offset, x, y));
}
void CGraphicsModule::popScissor(){
if ( scissorStack.size() > 0 ) {
Scissor s = *scissorStack.rbegin();
if ( s.offset == true ) {
offsetX -= s.ox;
offsetY -= s.oy;
}
}
scissorStack.pop_back();
if ( scissorStack.size() > 0 ) {
Scissor s = *scissorStack.end()--;
if ( s.enable ) {
glEnable(GL_SCISSOR_TEST);
glScissor(s.x, s.y, s.width, s.height);
} else {
glDisable(GL_SCISSOR_TEST);
}
} else {
glDisable(GL_SCISSOR_TEST);
}
}
short CGraphicsModule::getWidth() {
return width;
}
short CGraphicsModule::getHeight() {
return height;
}
extern "C" IModule * SPINE_DLLEXPORT loadModule() {
graphics = new CGraphicsModule();
return graphics;
}
extern "C" void SPINE_DLLEXPORT unloadModule() {
delete (CGraphicsModule *)graphics;
} | [
"henrytran@Henrys-MacBook-Pro.local"
] | henrytran@Henrys-MacBook-Pro.local |
6b695cc28041be97e4306445e0d6f96f5f85605a | 2e8f4cdb4468af7673882ec017824c2203a47af7 | /src/phony/fwk/smgr.hpp | 84f0c3cbfc9a9856c9ec29494db27645e706ff19 | [] | no_license | tuttlem/phony | 7cd43a71c53c1a1f88dc952d0be996038bdb5ad4 | 111f3a3a75774dbaffb9c4bb09b718aa10849c04 | refs/heads/master | 2023-04-14T18:44:40.353300 | 2023-04-08T05:30:42 | 2023-04-08T05:30:42 | 3,051,334 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,777 | hpp |
#ifndef __phony_smgr_hpp_
#define __phony_smgr_hpp_
namespace phony {
class sound_effect {
public:
sound_effect(void);
sound_effect(Mix_Chunk *sound);
virtual ~sound_effect(void);
Mix_Chunk* chunk(void);
private:
Mix_Chunk *_chunk;
};
class music_piece {
public:
music_piece(void);
music_piece(Mix_Music *sound);
virtual ~music_piece(void);
Mix_Music* music(void);
private:
Mix_Music *_music;
};
/** Centralises sound and music management for the application */
class sound_manager : public singleton_manager<sound_manager> {
public:
const bool load_sound_from_wav(const std::string &key, const std::string &filename);
const bool load_music_from_wav(const std::string &key, const std::string &filename);
void toggle_music(void);
void stop_music(void);
const bool music_playing(void);
void play_sound(const std::string &key);
void play_music(const std::string &key);
/** Removes and destroys all sounds from the store */
virtual void clear(void);
private:
std::map<std::string, std::unique_ptr<sound_effect>> _sounds;
std::map<std::string, std::unique_ptr<music_piece>> _musics;
};
inline sound_effect::sound_effect(void) : _chunk(nullptr) { }
inline sound_effect::sound_effect(Mix_Chunk *sound) : _chunk(sound) { }
inline Mix_Chunk* sound_effect::chunk() { return _chunk; }
inline music_piece::music_piece(void) : _music(nullptr) { }
inline music_piece::music_piece(Mix_Music *sound) : _music(sound) { }
inline Mix_Music* music_piece::music() { return _music; }
}
#endif //__phony_smgr_hpp_
| [
"tuttlem@gmail.com"
] | tuttlem@gmail.com |
85c56c178f93eef6a252193f31f930f52782225c | 42f60ea81e9dd9f85c592254c53e46fffe4f3df4 | /10_days_of_stats/Day7/Spearman's Rank Correlation Coefficient/solution.cpp | 1681812d45ea7a261c91d7ba09ad73d53baa7326 | [] | no_license | KARTHEEKCIC/Hackerrank_solutions | a009a66b5724521688f0c9d016cc2182c37caaf2 | f907264f2e6aca41c18e7b38ebaed6ba467f01e7 | refs/heads/master | 2022-07-07T22:03:17.578971 | 2022-06-25T14:53:05 | 2022-06-25T14:53:05 | 140,273,590 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 768 | cpp | #include <iostream>
#include <cmath>
#include <iomanip>
#include <algorithm>
#include <vector>
using namespace std;
struct Data {
double X, Y;
int rX, rY;
};
bool X_comp(Data d1, Data d2) {
return d1.X<d2.X;
}
bool Y_comp(Data d1, Data d2) {
return d1.Y<d2.Y;
}
int main() {
int n;
cin>>n;
Data d[n];
for(int i=0 ; i<n ; i++) {
cin>>d[i].X;
d[i].rX=0;
}
for(int i=0 ; i<n ; i++) {
cin>>d[i].Y;
d[i].rY=0;
}
sort(d,d+n,X_comp);
for(int i=0 ; i<n ; i++) {
d[i].rX = i+1;
}
sort(d,d+n,Y_comp);
for(int i=0 ; i<n ; i++) {
d[i].rY = i+1;
}
double sp_rank=0;
for(int i=0 ; i<n ; i++) {
sp_rank+=pow(d[i].rX-d[i].rY,2);
}
sp_rank = 1-(6*sp_rank/((n)*(pow(n,2)-1)));
cout<<fixed<<setprecision(3)<<sp_rank<<endl;
return 0;
}
| [
"bkartheekreddy@gmail.com"
] | bkartheekreddy@gmail.com |
bc3855660fdcae2d560f1c77afc36a2519a46c49 | 31ef235aec8599f703ebcd2636040b199bb5c2ca | /forTesting.cpp | f8b1982d541e1c9d1389d08f65d2556873264e2b | [] | no_license | dachev1919/cpp03_2020 | fc74af0cfefd9073bb2744494a903a8518f61c8d | 7015a9f6a6215753648d6398368fa51b00e63942 | refs/heads/master | 2022-12-15T09:37:52.043989 | 2020-09-15T19:02:54 | 2020-09-15T19:02:54 | 295,822,103 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,941 | cpp | package com.company;
import java.io.*;
import java.util.*;
import static java.lang.Math.*;
// імпортування статичних змінних і методів класу Math
public class Main {
public static void main(String[] args) {
Main prog = new Main();
prog.run();
}
private static void date(){
// Инициализация объекта date
Date date = new Date();
// Вывод текущей даты с использованием toString()
System.out.printf("%1$s %2$td %2$tB %2$tY", "Дата:", date);
}
private void print(double a, double b, double t) {
System.out.println("a = "+a);
System.out.println("b = "+b);
System.out.println("t = "+t);
double y = exp(-b * t) * sin(a * t + b) - sqrt(abs(b * t + a));
System.out.println("y = exp(-b * t) * sin(a * t + b) - sqrt(abs(b * t + a))");
System.out.println("y = "+y);
}
private double calcSquare(double x){
return x * x;
}
private void primer(){
Scanner sc = new Scanner(System.in);
System.out.printf("------------------------------------------------");
System.out.printf("\na - ");
double a = sc.nextDouble();
System.out.printf("b - ");
double b = sc.nextDouble();
System.out.printf("t - ");
double t = sc.nextDouble();
double s = b * sin(calcSquare((a*t)) * cos(2 * t)) -1;
System.out.println("s = b * sin(calcSquare((a*t)) * cos(2 * t)) -1");
System.out.println("s = "+s);
}
private void run() {
Scanner s = new Scanner(System.in);
System.out.printf("a - ");
double a = s.nextDouble();
System.out.printf("b - ");
double b = s.nextDouble();
System.out.printf("t - ");
double t = s.nextDouble();
print(a, b, t);
primer();
date();
}
}
| [
"dachev1919@gmail.com"
] | dachev1919@gmail.com |
ea722b027a178c31ef3d8a3c84a0467c29be10e9 | a9a7f08ebf49cf514f84f24492eea340e0efbb78 | /tests/auto/md/topologybuilder/topologybuildertest.h | 11b22c1f232c5709977f7de9715ba51ed7665e11 | [
"BSD-3-Clause"
] | permissive | soplwang/chemkit | d535e91ddd2cea733554eef647dd488049dc0429 | 8d8e150160d44a4c770e343a22dee9e462b10694 | refs/heads/master | 2021-01-15T22:56:45.583833 | 2012-07-13T20:00:07 | 2012-07-13T20:00:07 | 3,108,867 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,093 | h | /******************************************************************************
**
** Copyright (C) 2009-2012 Kyle Lutz <kyle.r.lutz@gmail.com>
** All rights reserved.
**
** This file is a part of the chemkit project. For more information
** see <http://www.chemkit.org>.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
**
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
** * Neither the name of the chemkit project nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
******************************************************************************/
#ifndef TOPOLOGYBUILDERTEST_H
#define TOPOLOGYBUILDERTEST_H
#include <QtTest>
class TopologyBuilderTest : public QObject
{
Q_OBJECT
private slots:
void phenol();
};
#endif // TOPOLOGYBUILDERTEST_H
| [
"kyle.r.lutz@gmail.com"
] | kyle.r.lutz@gmail.com |
81aef4ef388b4fd92c0e9c89a97c1937abf6cf96 | b461fdf61932e694ad51fff61ee628cfef1f6b4e | /atmega8l/ReflowingHandler.h | af01e17b0b59199168e8ca3381303fda81296fbf | [] | no_license | AtomSoftTech/awreflow2 | 32127399493f42d1763ac64d49be021d880af8d4 | 05d1e8bbc982c020c1324d6d42512c102c96a78c | refs/heads/master | 2020-12-03T07:52:26.016207 | 2015-07-12T09:24:50 | 2015-07-12T09:24:50 | 39,167,938 | 1 | 0 | null | 2015-07-16T00:30:06 | 2015-07-16T00:30:04 | null | UTF-8 | C++ | false | false | 4,950 | h | /*
* Andy's Workshop Reflow Controller ATMega328p firmware
* Copyright (c) 2015 Andy Brown. http://www.andybrown.me.uk
* Please see website for licensing terms.
*/
#pragma once
namespace awreflow {
/*
* Handler for the reflowing state
*/
class ReflowingHandler {
protected:
enum class ActionTaken : uint8_t {
NOTHING,
UPDATED,
STOP
};
ActionButton& _actionButton;
OvenControl& _oven;
ReflowProfile _profile;
Pid _pid;
int16_t _desiredTemperature;
int16_t _temperatureStep;
uint16_t _currentTime;
uint16_t _currentRegion;
uint32_t _lastTick;
bool paused;
UiReflowingDisplay _display;
protected:
ActionTaken reflow();
void calcTemperatureStep();
public:
ReflowingHandler(TemperatureSensor& temperatureSensor,ActionButton& actionButton,OvenControl& oven);
~ReflowingHandler();
ProgramState loop();
};
/*
* Constructor
*/
inline ReflowingHandler::ReflowingHandler(TemperatureSensor& temperatureSensor,ActionButton& actionButton,OvenControl& oven)
: _actionButton(actionButton),
_oven(oven),
_display(temperatureSensor) {
uint16_t p,i,d;
// set up the PID class
p=Eeprom::Reader::Reader::constant(Eeprom::Location::PROPORTIONAL);
i=Eeprom::Reader::Reader::constant(Eeprom::Location::INTEGER);
d=Eeprom::Reader::Reader::constant(Eeprom::Location::DERIVATIVE);
_pid.setup(p,i,d);
// get the appropriate profile
if(static_cast<ReflowProfileName>(Eeprom::Reader::readByte(Eeprom::Location::PROFILE))==ReflowProfileName::LEADED)
_profile=ReflowProfile::leaded();
else
_profile=ReflowProfile::leadFree();
_desiredTemperature=25; // all profiles start at 25
_currentTime=0;
_currentRegion=0;
_lastTick=MillisecondTimer::millis();
calcTemperatureStep();
}
/*
* Destructor
*/
inline ReflowingHandler::~ReflowingHandler() {
// turn off the oven
_oven.setDutyCycle(0,false);
}
/*
* Main Loop
*/
inline ProgramState ReflowingHandler::loop() {
do {
// main loops
_display.loop();
_actionButton.loop();
} while(reflow()!=ActionTaken::STOP && !_actionButton.isPressed());
// back to the start
return ProgramState::REMOTING;
}
/*
* Program logic for the reflow. Return true if we updated during this call or false
* if it was too soon (we update once per second).
*/
inline ReflowingHandler::ActionTaken ReflowingHandler::reflow() {
uint8_t dutyCycle;
// get the current sensor state
const TemperatureSensor::Response& lastTemperature(_display.getTemperatureSensor().getLastTemperature());
// do nothing if we're back before a second has elapsed or we're too early and the first
// temperature reading as not yet been taken
if(!MillisecondTimer::hasTimedOut(_lastTick,1000) || lastTemperature.status==TemperatureSensor::Status::UNKNOWN)
return ActionTaken::NOTHING;
// if there's been a hardware failure in the temperature sensor then bail out
if(lastTemperature.status!=TemperatureSensor::Status::OK)
return ActionTaken::STOP;
// reset for the next update (now, not after we've burned some cycles doing our update)
_lastTick=MillisecondTimer::millis();
// if we're in the first second and we are below the starting temperature then auto-pause
// until we've heated up to the starting temperature (25 degrees)
if(_currentTime || lastTemperature.celsius>=_desiredTemperature) {
// get the current region out of PROGMEM
ReflowRegion region=_profile.getRegion(_currentRegion);
// update seconds and see if we've hit the end
if(region.endingTime==_currentTime) {
// we have hit the ending time of the current region. if this is the last region
// then the whole process has completed
_currentRegion++;
if(_currentRegion==_profile.regionCount)
return ActionTaken::STOP;
// we're in a new region. set up the parameters for this leg.
calcTemperatureStep();
}
// update time and desired temperature
_currentTime++;
_desiredTemperature+=_temperatureStep;
}
// run the PID algorithm and set the relay PWM value from the output
dutyCycle=_pid.loop(_desiredTemperature,lastTemperature.celsius);
_oven.setDutyCycle(dutyCycle,false);
// update the display
_display.setStatus(_currentTime,_desiredTemperature,dutyCycle);
// continue
return ActionTaken::UPDATED;
}
/*
* Calculate the temperature step value
*/
inline void ReflowingHandler::calcTemperatureStep() {
ReflowRegion region=_profile.getRegion(_currentRegion);
_temperatureStep=(region.endingTemperature-_desiredTemperature)/(region.endingTime-_currentTime);
}
}
| [
"andy@andybrown.me.uk"
] | andy@andybrown.me.uk |
f4f1551168dcd821b42785879854c3ebdba98ba6 | f693dd89335702ee88a7748506cc91b7973408ba | /cpp/ebisu/utils/streamers/set.hpp | 04c22e417fef6b0617ac361fd7393a4da303ac6c | [] | no_license | patefacio/cpp_ebisu | 7aecaeb6be870e3bc05ba6efab99f126ee991652 | 6b54fe1e9e169301d69c8bedab7baac76e18e5fc | refs/heads/master | 2021-01-22T00:13:09.736723 | 2017-10-04T19:28:43 | 2017-10-04T19:28:43 | 24,698,632 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 657 | hpp | #ifndef __EBISU_UTILS_STREAMERS_SET_HPP__
#define __EBISU_UTILS_STREAMERS_SET_HPP__
#include "ebisu/utils/streamers/streamers.hpp"
#include <iosfwd>
#include <set>
namespace ebisu {
namespace utils {
namespace streamers {
// custom <FcbBeginNamespace set>
//! Support for streaming std::list
template <typename T, typename PR, typename ALLOC>
inline std::ostream& operator<<(std::ostream& out,
std::set<T, PR, ALLOC> const& l) {
return print_scalar_collection(out, l);
}
// end <FcbBeginNamespace set>
} // namespace streamers
} // namespace utils
} // namespace ebisu
#endif // __EBISU_UTILS_STREAMERS_SET_HPP__
| [
"dbdavidson@yahoo.com"
] | dbdavidson@yahoo.com |
6ce40a61b9934fbfc4041b41b7b5f2ece1f308d0 | 370086b6bbe0120b2158c3c96216e3f3e7fccea9 | /1-semester/1 HomeTask/1-7/1-7.cpp | 6f38961539e45c85a33ff70f2fb207b5819147cb | [] | no_license | kbatoev/SpbSU-Homeworks | 67c2e33aa4b1b9e66f878d20a15c7220bb10fe33 | c4df40b86a326bbf726e7fdf6d4cf5a18fda252b | refs/heads/master | 2020-04-15T17:27:56.142568 | 2017-05-25T14:51:40 | 2017-05-25T14:51:40 | 30,765,810 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 542 | cpp | #include <stdio.h>
int main() {
const int first = 2;
const int maxSize = 10000;
bool array[maxSize];
for (int i = 0; i < maxSize; i++)
array[i] = true;
int number = 0;
printf("Enter number, that is more than 2 :\n");
scanf("%d", &number);
for (int i = first; i <= number; i++)
if (array[i])
for (int j = 2 * i; j <= number; j += i)
array[j] = false;
printf("All prime numbers from 2 to entered number are:\n");
for (int i = first; i <= number; i++)
if (array[i])
printf("%d ", i);
printf("\n");
return 0;
} | [
"kbatoev@mail.ru"
] | kbatoev@mail.ru |
f8eb820e525bdabae85caa9edb1c37fe5c54f97f | 9fb6548b22463f0f5afd42e9b9186e0785c1b28e | /src/error/BianFuErrorListener.h | ad39d0c7c0db087c72ec9d7a7e5157bbd0c0dc68 | [] | no_license | lingfeishengtian/BianFu | 39e4d27ee0b7d5bee5bfb3d543353b03a464af9c | b629f489567585299571607ee1af27a26ad7c3d0 | refs/heads/master | 2022-06-13T15:02:08.460508 | 2020-05-04T20:12:17 | 2020-05-04T20:12:17 | 221,089,012 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,262 | h | //
// Created by Hunter Han on 2020-04-28.
//
#include "antlr4-runtime.h"
#ifndef BIANFU_BIANFUERRORLISTENER_H
#define BIANFU_BIANFUERRORLISTENER_H
class BianFuErrorListener : public antlr4::BaseErrorListener{
public:
~BianFuErrorListener() override;
void
syntaxError(antlr4::Recognizer *recognizer, antlr4::Token *offendingSymbol, size_t line, size_t charPositionInLine,
const std::string &msg, std::exception_ptr e) override;
void reportAmbiguity(antlr4::Parser *recognizer, const antlr4::dfa::DFA &dfa, size_t startIndex, size_t stopIndex,
bool exact, const antlrcpp::BitSet &ambigAlts, antlr4::atn::ATNConfigSet *configs) override;
void reportAttemptingFullContext(antlr4::Parser *recognizer, const antlr4::dfa::DFA &dfa, size_t startIndex,
size_t stopIndex, const antlrcpp::BitSet &conflictingAlts,
antlr4::atn::ATNConfigSet *configs) override;
void reportContextSensitivity(antlr4::Parser *recognizer, const antlr4::dfa::DFA &dfa, size_t startIndex,
size_t stopIndex, size_t prediction, antlr4::atn::ATNConfigSet *configs) override;
};
#endif //BIANFU_BIANFUERRORLISTENER_H
| [
"hunter.han@gmail.com"
] | hunter.han@gmail.com |
7c8a8f5ee8f7da45da330e08825e007017abaceb | 38250ff21c465a0197638fe496f2c968ff37ecc3 | /PageRank/directed_adjacencylist.cpp | 98806aecedb6342b97f234740dfcbec62c375a9c | [] | no_license | LoshyyMahad/CLion | 09660a1a63763c7ab3fe8f70447cfb04d5191945 | f0325ddf2454d1ee464980a31e68d5e76c2c7057 | refs/heads/master | 2021-07-08T11:06:01.632427 | 2017-10-06T10:45:49 | 2017-10-06T10:45:49 | 105,991,647 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,007 | cpp | //
// Created by Loshyy Mahad on 06/10/2017.
//
#include <iostream>
#include <fstream>
#include <ctime>
#include <vector>
#include "directed_adjacencylist.h"
/* - - - - - - - - - - - - - - - - - VARIABLES - - - - - - - - - - - - - - - - - - - - */
//Graph graph;
/* - - - - - - - - - - - - - - - - - FUNCTIONS - - - - - - - - - - - - - - - - - - - - */
/**
* Initialize the graph
* @param number_nodes
* @param number_edges
*/
Graph* graph_init(long number_nodes, long number_edges, long offset){
Graph* graph = new Graph();
//Initialize arrays and variables
graph->graph_in = new long[number_nodes];
graph->graph_out = new long[number_nodes];
graph->graph_degree_in = new long[number_nodes];
graph->graph_degree_out = new long[number_nodes];
graph->neighbours_in = new long[number_edges];
graph->neighbours_out = new long[number_edges];
graph->last_neighbor_in = new long[number_nodes];
graph->last_neighbor_out = new long[number_nodes];
//Set default values for arrays
memset(graph->graph_in, -1, sizeof(long)*number_nodes);
memset(graph->graph_out, -1, sizeof(long)*number_nodes);
memset(graph->neighbours_in, -1, sizeof(long)*number_edges);
memset(graph->neighbours_out, -1, sizeof(long)*number_edges);
memset(graph->graph_degree_in, 0, sizeof(long)*number_nodes);
memset(graph->graph_degree_out, 0, sizeof(long)*number_nodes);
memset(graph->last_neighbor_out, 0, sizeof(long)*number_nodes);
memset(graph->last_neighbor_in, 0, sizeof(long)*number_nodes);
//Set important data for interact with arrays
graph->number_edges = number_edges;
graph->number_nodes = number_nodes;
graph->offset = offset;
return graph;
}
/**
* Free the memory used by the graph
*/
void graph_deinit(Graph* graph){
//Free the memory used for arrays
delete [] graph->graph_in;
delete [] graph->graph_out;
delete [] graph->graph_degree_in;
delete [] graph->graph_degree_out;
delete [] graph->neighbours_in;
delete [] graph->neighbours_out;
delete [] graph->last_neighbor_in;
delete [] graph->last_neighbor_out;
delete graph;
}
/**
* Configure the graph and load data from file
* @param name file name
* @return
*/
Graph* graph_load_file(char* name){
fstream input;
Graph* graph;
long number_nodes=0;
long number_edges=0;
long offset = 0;
input.open(name);
//If the file can't be opened, return false
if(!input)
return NULL;
//Compute size of the graph and get the offset between the index for arrays and the ID of nodes
graph_compute_size(input, number_nodes, number_edges, offset);
//Initialize graph with the obtained size of the graph
graph = graph_init(number_nodes, number_edges, offset);
//Compute degree of each node
graph_compute_degree_array(graph, input);
//Set indexes of each node
graph_set_nodes(graph);
//Load data onto the data structure
graph_load_data(graph, input);
input.close();
return graph;
}
/**
* Add edge to the graph (in one directions A-->B, not B-->A)
* @param node
* @param neighbour
* @return
*/
bool graph_add_edge_in(Graph* graph, long node, long neighbour){
//If arrays are not initialized or node is the same as the given neighbour, then stop the function
if(graph->graph_in == NULL || graph->neighbours_in == NULL || node == neighbour)
return false;
//Get correct index of the node
long index = node;
//Get first index of node's neighbours
long first_neighbour = graph->graph_in[index];
//Search the correct position of the given neighbour
for(int i=first_neighbour;i<graph->graph_degree_in[index]+first_neighbour;i++){
//If edge already exists, return false (not added)
if(graph->neighbours_in[i] == neighbour){
graph->graph_degree_in[node] -= 1; //Duplicate, then I reduce the degree
return false;
}
//If empty spot, then assign the neighbour and stop the function
if(graph->neighbours_in[i] < 0) {
graph->neighbours_in[i] = neighbour;
return true;
}
//Keep array ordered, therefore swap the given neighbour with the least bigger neighbour node (?)
//After that, arrays elements must be fixed to their new places
if(graph->neighbours_in[i] > neighbour){
swap(graph->neighbours_in[i], neighbour);
}
}
//Element not inserted into the array, is space finished?
return false;
}
/**
* Compute the array with the degree of each node
* @param file
* @return
*/
bool graph_compute_degree_array(Graph* graph, fstream &file){
//If array for the graph degree is not initialized, return false
if(graph->graph_degree_in == NULL && graph->graph_degree_out == NULL)
return false;
file_reset(file);
long nodeA;
long nodeB;
while(file>>nodeA>>nodeB){
nodeA -= graph->offset;
nodeB -= graph->offset;
//If nodeA is different from nodeB, then increase the degree of the nodeA
if(nodeA != nodeB) {
graph->graph_degree_out[nodeA]++;
graph->graph_degree_in[nodeB]++;
}
}
return true;
}
/**
* Add edge to the graph (in one directions A-->B, not B-->A)
* @param node
* @param neighbour
* @return
*/
bool graph_add_edge_out(Graph* graph, long node, long neighbour){
//If arrays are not initialized or node is the same as the given neighbour, then stop the function
if(graph->graph_out == NULL || graph->neighbours_out == NULL || node == neighbour)
return false;
//Get correct index of the node
long index = node;
//Get first index of node's neighbours
long first_neighbour = graph->graph_out[index];
//Search the correct position of the given neighbour
for(int i=first_neighbour;i<graph->graph_degree_out[index]+first_neighbour;i++){
//If edge already exists, return false (not added)
if(graph->neighbours_out[i] == neighbour){
graph->graph_degree_out[node] -= 1; //Duplicate, then I reduce the degree
return false;
}
//If empty spot, then assign the neighbour and stop the function
if(graph->neighbours_out[i] < 0) {
graph->neighbours_out[i] = neighbour;
return true;
}
//Keep array ordered, therefore swap the given neighbour with the least bigger neighbour node (?)
//After that, arrays elements must be fixed to their new places
if(graph->neighbours_out[i] > neighbour){
swap(graph->neighbours_out[i], neighbour);
}
}
//Element not inserted into the array, is space finished?
return false;
}
/**
* Compute the size of the graph by looking the ID of nodes and the number of rows (without considering self loops)
* It may count more edges, in this case some space will be allocated but not used
* @param file
* @return
*/
bool graph_compute_size(fstream &file, long &number_nodes, long &number_edges, long &offset){
if(!file)
return false;
file_reset(file);
long nodeA;
long nodeB;
long min_id = LONG_MAX;
long max_id = 0;
// Count how many couples there are in the file
while(file>>nodeA>>nodeB){
if(nodeA!=nodeB)
number_edges+=1;
nodeA < min_id ? min_id = nodeA : NULL;
nodeB < min_id ? min_id = nodeB : NULL;
nodeA > max_id ? max_id = nodeA : NULL;
nodeB > max_id ? max_id = nodeB : NULL;
}
number_nodes = max_id - min_id + 1;
number_edges = number_edges;
offset = min_id;
return true;
}
/**
* Print the edges of the graph without duplicates or self loops
*/
void graph_print(Graph* graph){
for(int i=0;i<graph->number_nodes;i++){
long node = i;
long first_neighbour = graph->graph_out[i];
for(int j=first_neighbour;j<graph->graph_degree_out[i]+first_neighbour;j++){
if(node < graph->neighbours_out[j])
cout << (node+graph->offset) << " " << (graph->neighbours_out[j]+graph->offset) << endl;
}
}
}
/* - - - - - - - - - - - - - - - - - AUXILIARY FUNCTIONS - - - - - - - - - - - - - - - - - - - - */
/**
* Configure the indexes of each node in order to get the first neighbour on the contiguous array
* @return
*/
bool graph_set_nodes(Graph* graph){
if(graph->graph_in == NULL || graph->neighbours_in == NULL || graph->graph_degree_in == NULL || graph->number_nodes<=0)
return false;
if(graph->graph_out == NULL || graph->neighbours_out == NULL || graph->graph_degree_out == NULL)
return false;
graph->graph_in[0] = 0;
graph->graph_out[0] = 0;
for(int i=1;i<graph->number_nodes;i++){
graph->graph_in[i] = graph->graph_in[i-1] + graph->graph_degree_in[i-1];
graph->graph_out[i] = graph->graph_out[i-1] + graph->graph_degree_out[i-1];
}
return true;
}
void swap(long &a, long &b){
long tmp = a;
a = b;
b = tmp;
}
/**
* Bring the file pointer to the beginning
* @param file
*/
void file_reset(fstream &file){
file.clear();
file.seekg(0, file.beg);
}
/**
* Load the whole file into the structure
* @param file
* @return
*/
bool graph_load_data(Graph* graph, fstream &file){
file_reset(file);
long nodeA;
long nodeB;
while(file>>nodeA>>nodeB){
nodeA -= graph->offset;
nodeB -= graph->offset;
//cout << nodeA << " " << nodeB << endl;
//Direct graph --> I have to add the edge to one node
//graph_add_edge_out(graph, nodeA, nodeB);
//graph_add_edge_in(graph, nodeB, nodeA);
fast_graph_add_edge_out(graph, nodeA, nodeB);
fast_graph_add_edge_in(graph, nodeB, nodeA);
}
return true;
}
bool fast_graph_add_edge_out(Graph* graph, long node, long neighbour){
//If arrays are not initialized or node is the same as the given neighbour, then stop the function
if(graph->graph_out == NULL || graph->neighbours_out == NULL || node == neighbour)
return false;
if(graph->last_neighbor_out[node] >= graph->graph_degree_out[node])
return false;
long first_available_spot = graph->last_neighbor_out[node] + graph->graph_out[node];
graph->neighbours_out[first_available_spot] = neighbour;
graph->last_neighbor_out[node]++;
return true;
}
bool fast_graph_add_edge_in(Graph* graph, long node, long neighbour){
//If arrays are not initialized or node is the same as the given neighbour, then stop the function
if(graph->graph_in == NULL || graph->neighbours_in == NULL || node == neighbour)
return false;
if(graph->last_neighbor_in[node] >= graph->graph_degree_in[node])
return false;
long first_available_spot = graph->last_neighbor_in[node] + graph->graph_in[node];
graph->neighbours_in[first_available_spot] = neighbour;
graph->last_neighbor_in[node]++;
return true;
}
| [
"noreply@github.com"
] | LoshyyMahad.noreply@github.com |
49041f3de27a7e9efce11ee41df5911472ec4bec | 674a19eae7fc0d5f98c8b8a8b87b093d17e79480 | /src/olac/Arguments.cpp | 3f5023653209b6c227299bf4eb199a73d07c1fc8 | [] | no_license | citiral/Ola | f6d6ebac0433ca7d7c4d92e7ad0bb0c81af584c0 | 7f39546a2c5ee7d9b6da8cbf09cb5245b5a536f5 | refs/heads/master | 2021-01-18T23:19:12.550577 | 2016-07-18T12:01:56 | 2016-07-18T12:01:56 | 41,514,192 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,819 | cpp | //
// Created by Citiral on 8/11/2015.
//
#include "Arguments.h"
#include "defines.h"
namespace olac {
Arguments::Arguments() {
}
void Arguments::parseArguments(int count, char** args) {
//loop over each argument
for (int i = 0 ; i < count ; i++)
{
//get the name of the argument
std::string name = args[i];
//if the argument starts with '--', remove the dashes
if (name[0] == '-' && name[1] == '-') {
name = name.substr(2, std::string::npos);
}//if the argument starts with '-', remove the dash and expand it
else if (name[0] == '-' && name[1] != '-') {
//remove the dashes from the name
name = name.substr(1, std::string::npos);
//if it has an expansion, expand it
auto expansion = _argumentExpansions.find(name);
if (expansion != _argumentExpansions.end())
name = expansion->second;
}//if the argument doesn't start with '-', it is an argumentless value
else if (name[0] != '-') {
_argumentlessValues.push_back(name);
continue;
}
//now look up the type of the argument
auto typeIter = _argumentTypes.find(name);
//if it has no type, throw a warning and skip it
if (typeIter == _argumentTypes.end()) {
WARNING("Unknown argument " << name);
continue;
}
//get the actual type value
ArgumentType type = typeIter->second;
switch (type) {
case ArgumentType::Flag:
_argumentValues[name] = "true";
break;
case ArgumentType::Value:
//if this is the last argument, throw a warning
if (i == count - 1) {
WARNING("Expected value after argument " << name);
continue;
}
_argumentValues[name] = args[i+1];
i++;
break;
}
}
}
std::string Arguments::getArgumentValue(std::string name) {
return _argumentValues[name];
}
std::string Arguments::getArgumentlessValue(u32 index) {
return _argumentlessValues[index];
}
bool Arguments::argumentValueEquals(std::string name, std::string value) {
return _argumentValues[name].compare(value) == 0;
}
bool Arguments::argumentlessValueEquals(u32 index, std::string value) {
return _argumentlessValues[index].compare(value) == 0;
}
u32 Arguments::getArgumentlessValuesCount() {
return _argumentlessValues.size();
}
void Arguments::registerArgumentType(std::string name, ArgumentType type) {
_argumentTypes[name] = type;
}
void Arguments::registerArgumentExpansion(std::string shortname, std::string longname) {
_argumentExpansions[shortname] = longname;
}
void Arguments::registerRequiredArgument(std::string name) {
_requiredArguments.push_front(name);
}
bool Arguments::checkValidity() {
bool validity = true;
//for each required argument
for (std::string& name : _requiredArguments) {
//if there is no value for it, set the validity to false and throw a warning about the missing argument
if (_argumentValues.find(name) == _argumentValues.end()) {
validity = false;
WARNING("Missing required argument " << name);
}
}
return validity;
}
} | [
"olivier4@telenet.be"
] | olivier4@telenet.be |
c270b17e44001db987279226b5422228c7ba07e5 | e27f9d4c48355b5ea6d562aae35b7ca46ed3fc1c | /src/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp | 7d772901e7f41f3b6975e59096594318c720e929 | [
"NCSA"
] | permissive | dongAxis/clang-700.0.72 | 67c4bb38b77e63da966e5dbd4e6ea7b6725b2484 | 513e64095d87e15954b41a22da367552a1c4dcc4 | refs/heads/master | 2021-01-10T12:17:26.230788 | 2016-02-04T04:29:53 | 2016-02-04T04:29:53 | 51,051,978 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,693 | cpp | //===-- DWARFDebugFrame.h - Parsing of .debug_frame -------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "llvm/DebugInfo/DWARF/DWARFDebugFrame.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/DataTypes.h"
#include "llvm/Support/Dwarf.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/raw_ostream.h"
#include <string>
#include <vector>
using namespace llvm;
using namespace dwarf;
/// \brief Abstract frame entry defining the common interface concrete
/// entries implement.
class llvm::FrameEntry {
public:
enum FrameKind {FK_CIE, FK_FDE};
FrameEntry(FrameKind K, uint64_t Offset, uint64_t Length)
: Kind(K), Offset(Offset), Length(Length) {}
virtual ~FrameEntry() {
}
FrameKind getKind() const { return Kind; }
virtual uint64_t getOffset() const { return Offset; }
/// \brief Parse and store a sequence of CFI instructions from Data,
/// starting at *Offset and ending at EndOffset. If everything
/// goes well, *Offset should be equal to EndOffset when this method
/// returns. Otherwise, an error occurred.
virtual void parseInstructions(DataExtractor Data, uint32_t *Offset,
uint32_t EndOffset);
/// \brief Dump the entry header to the given output stream.
virtual void dumpHeader(raw_ostream &OS) const = 0;
/// \brief Dump the entry's instructions to the given output stream.
virtual void dumpInstructions(raw_ostream &OS) const;
protected:
const FrameKind Kind;
/// \brief Offset of this entry in the section.
uint64_t Offset;
/// \brief Entry length as specified in DWARF.
uint64_t Length;
/// An entry may contain CFI instructions. An instruction consists of an
/// opcode and an optional sequence of operands.
typedef std::vector<uint64_t> Operands;
struct Instruction {
Instruction(uint8_t Opcode)
: Opcode(Opcode)
{}
uint8_t Opcode;
Operands Ops;
};
std::vector<Instruction> Instructions;
/// Convenience methods to add a new instruction with the given opcode and
/// operands to the Instructions vector.
void addInstruction(uint8_t Opcode) {
Instructions.push_back(Instruction(Opcode));
}
void addInstruction(uint8_t Opcode, uint64_t Operand1) {
Instructions.push_back(Instruction(Opcode));
Instructions.back().Ops.push_back(Operand1);
}
void addInstruction(uint8_t Opcode, uint64_t Operand1, uint64_t Operand2) {
Instructions.push_back(Instruction(Opcode));
Instructions.back().Ops.push_back(Operand1);
Instructions.back().Ops.push_back(Operand2);
}
};
// See DWARF standard v3, section 7.23
const uint8_t DWARF_CFI_PRIMARY_OPCODE_MASK = 0xc0;
const uint8_t DWARF_CFI_PRIMARY_OPERAND_MASK = 0x3f;
void FrameEntry::parseInstructions(DataExtractor Data, uint32_t *Offset,
uint32_t EndOffset) {
while (*Offset < EndOffset) {
uint8_t Opcode = Data.getU8(Offset);
// Some instructions have a primary opcode encoded in the top bits.
uint8_t Primary = Opcode & DWARF_CFI_PRIMARY_OPCODE_MASK;
if (Primary) {
// If it's a primary opcode, the first operand is encoded in the bottom
// bits of the opcode itself.
uint64_t Op1 = Opcode & DWARF_CFI_PRIMARY_OPERAND_MASK;
switch (Primary) {
default: llvm_unreachable("Impossible primary CFI opcode");
case DW_CFA_advance_loc:
case DW_CFA_restore:
addInstruction(Primary, Op1);
break;
case DW_CFA_offset:
addInstruction(Primary, Op1, Data.getULEB128(Offset));
break;
}
} else {
// Extended opcode - its value is Opcode itself.
switch (Opcode) {
default: llvm_unreachable("Invalid extended CFI opcode");
case DW_CFA_nop:
case DW_CFA_remember_state:
case DW_CFA_restore_state:
case DW_CFA_GNU_window_save:
// No operands
addInstruction(Opcode);
break;
case DW_CFA_set_loc:
// Operands: Address
addInstruction(Opcode, Data.getAddress(Offset));
break;
case DW_CFA_advance_loc1:
// Operands: 1-byte delta
addInstruction(Opcode, Data.getU8(Offset));
break;
case DW_CFA_advance_loc2:
// Operands: 2-byte delta
addInstruction(Opcode, Data.getU16(Offset));
break;
case DW_CFA_advance_loc4:
// Operands: 4-byte delta
addInstruction(Opcode, Data.getU32(Offset));
break;
case DW_CFA_restore_extended:
case DW_CFA_undefined:
case DW_CFA_same_value:
case DW_CFA_def_cfa_register:
case DW_CFA_def_cfa_offset:
// Operands: ULEB128
addInstruction(Opcode, Data.getULEB128(Offset));
break;
case DW_CFA_def_cfa_offset_sf:
// Operands: SLEB128
addInstruction(Opcode, Data.getSLEB128(Offset));
break;
case DW_CFA_offset_extended:
case DW_CFA_register:
case DW_CFA_def_cfa:
case DW_CFA_val_offset:
// Operands: ULEB128, ULEB128
addInstruction(Opcode, Data.getULEB128(Offset),
Data.getULEB128(Offset));
break;
case DW_CFA_offset_extended_sf:
case DW_CFA_def_cfa_sf:
case DW_CFA_val_offset_sf:
// Operands: ULEB128, SLEB128
addInstruction(Opcode, Data.getULEB128(Offset),
Data.getSLEB128(Offset));
break;
case DW_CFA_def_cfa_expression:
case DW_CFA_expression:
case DW_CFA_val_expression:
// TODO: implement this
report_fatal_error("Values with expressions not implemented yet!");
}
}
}
}
namespace {
/// \brief DWARF Common Information Entry (CIE)
class CIE : public FrameEntry {
public:
// CIEs (and FDEs) are simply container classes, so the only sensible way to
// create them is by providing the full parsed contents in the constructor.
CIE(uint64_t Offset, uint64_t Length, uint8_t Version,
SmallString<8> Augmentation, uint64_t CodeAlignmentFactor,
int64_t DataAlignmentFactor, uint64_t ReturnAddressRegister)
: FrameEntry(FK_CIE, Offset, Length), Version(Version),
Augmentation(std::move(Augmentation)),
CodeAlignmentFactor(CodeAlignmentFactor),
DataAlignmentFactor(DataAlignmentFactor),
ReturnAddressRegister(ReturnAddressRegister) {}
~CIE() {
}
uint64_t getCodeAlignmentFactor() const { return CodeAlignmentFactor; }
int64_t getDataAlignmentFactor() const { return DataAlignmentFactor; }
void dumpHeader(raw_ostream &OS) const override {
OS << format("%08x %08x %08x CIE",
(uint32_t)Offset, (uint32_t)Length, DW_CIE_ID)
<< "\n";
OS << format(" Version: %d\n", Version);
OS << " Augmentation: \"" << Augmentation << "\"\n";
OS << format(" Code alignment factor: %u\n",
(uint32_t)CodeAlignmentFactor);
OS << format(" Data alignment factor: %d\n",
(int32_t)DataAlignmentFactor);
OS << format(" Return address column: %d\n",
(int32_t)ReturnAddressRegister);
OS << "\n";
}
static bool classof(const FrameEntry *FE) {
return FE->getKind() == FK_CIE;
}
private:
/// The following fields are defined in section 6.4.1 of the DWARF standard v3
uint8_t Version;
SmallString<8> Augmentation;
uint64_t CodeAlignmentFactor;
int64_t DataAlignmentFactor;
uint64_t ReturnAddressRegister;
};
/// \brief DWARF Frame Description Entry (FDE)
class FDE : public FrameEntry {
public:
// Each FDE has a CIE it's "linked to". Our FDE contains is constructed with
// an offset to the CIE (provided by parsing the FDE header). The CIE itself
// is obtained lazily once it's actually required.
FDE(uint64_t Offset, uint64_t Length, int64_t LinkedCIEOffset,
uint64_t InitialLocation, uint64_t AddressRange,
CIE *Cie)
: FrameEntry(FK_FDE, Offset, Length), LinkedCIEOffset(LinkedCIEOffset),
InitialLocation(InitialLocation), AddressRange(AddressRange),
LinkedCIE(Cie) {}
~FDE() {
}
CIE *getLinkedCIE() const { return LinkedCIE; }
void dumpHeader(raw_ostream &OS) const override {
OS << format("%08x %08x %08x FDE ",
(uint32_t)Offset, (uint32_t)Length, (int32_t)LinkedCIEOffset);
OS << format("cie=%08x pc=%08x...%08x\n",
(int32_t)LinkedCIEOffset,
(uint32_t)InitialLocation,
(uint32_t)InitialLocation + (uint32_t)AddressRange);
}
static bool classof(const FrameEntry *FE) {
return FE->getKind() == FK_FDE;
}
private:
/// The following fields are defined in section 6.4.1 of the DWARF standard v3
uint64_t LinkedCIEOffset;
uint64_t InitialLocation;
uint64_t AddressRange;
CIE *LinkedCIE;
};
/// \brief Types of operands to CF instructions.
enum OperandType {
OT_Unset,
OT_None,
OT_Address,
OT_Offset,
OT_FactoredCodeOffset,
OT_SignedFactDataOffset,
OT_UnsignedFactDataOffset,
OT_Register,
OT_Expression
};
} // end anonymous namespace
/// \brief Initialize the array describing the types of operands.
static ArrayRef<OperandType[2]> getOperandTypes() {
static OperandType OpTypes[DW_CFA_restore+1][2];
#define DECLARE_OP2(OP, OPTYPE0, OPTYPE1) \
do { \
OpTypes[OP][0] = OPTYPE0; \
OpTypes[OP][1] = OPTYPE1; \
} while (0)
#define DECLARE_OP1(OP, OPTYPE0) DECLARE_OP2(OP, OPTYPE0, OT_None)
#define DECLARE_OP0(OP) DECLARE_OP1(OP, OT_None)
DECLARE_OP1(DW_CFA_set_loc, OT_Address);
DECLARE_OP1(DW_CFA_advance_loc, OT_FactoredCodeOffset);
DECLARE_OP1(DW_CFA_advance_loc1, OT_FactoredCodeOffset);
DECLARE_OP1(DW_CFA_advance_loc2, OT_FactoredCodeOffset);
DECLARE_OP1(DW_CFA_advance_loc4, OT_FactoredCodeOffset);
DECLARE_OP1(DW_CFA_MIPS_advance_loc8, OT_FactoredCodeOffset);
DECLARE_OP2(DW_CFA_def_cfa, OT_Register, OT_Offset);
DECLARE_OP2(DW_CFA_def_cfa_sf, OT_Register, OT_SignedFactDataOffset);
DECLARE_OP1(DW_CFA_def_cfa_register, OT_Register);
DECLARE_OP1(DW_CFA_def_cfa_offset, OT_Offset);
DECLARE_OP1(DW_CFA_def_cfa_offset_sf, OT_SignedFactDataOffset);
DECLARE_OP1(DW_CFA_def_cfa_expression, OT_Expression);
DECLARE_OP1(DW_CFA_undefined, OT_Register);
DECLARE_OP1(DW_CFA_same_value, OT_Register);
DECLARE_OP2(DW_CFA_offset, OT_Register, OT_UnsignedFactDataOffset);
DECLARE_OP2(DW_CFA_offset_extended, OT_Register, OT_UnsignedFactDataOffset);
DECLARE_OP2(DW_CFA_offset_extended_sf, OT_Register, OT_SignedFactDataOffset);
DECLARE_OP2(DW_CFA_val_offset, OT_Register, OT_UnsignedFactDataOffset);
DECLARE_OP2(DW_CFA_val_offset_sf, OT_Register, OT_SignedFactDataOffset);
DECLARE_OP2(DW_CFA_register, OT_Register, OT_Register);
DECLARE_OP2(DW_CFA_expression, OT_Register, OT_Expression);
DECLARE_OP2(DW_CFA_val_expression, OT_Register, OT_Expression);
DECLARE_OP1(DW_CFA_restore, OT_Register);
DECLARE_OP1(DW_CFA_restore_extended, OT_Register);
DECLARE_OP0(DW_CFA_remember_state);
DECLARE_OP0(DW_CFA_restore_state);
DECLARE_OP0(DW_CFA_GNU_window_save);
DECLARE_OP1(DW_CFA_GNU_args_size, OT_Offset);
DECLARE_OP0(DW_CFA_nop);
#undef DECLARE_OP0
#undef DECLARE_OP1
#undef DECLARE_OP2
return ArrayRef<OperandType[2]>(&OpTypes[0], DW_CFA_restore+1);
}
static ArrayRef<OperandType[2]> OpTypes = getOperandTypes();
/// \brief Print \p Opcode's operand number \p OperandIdx which has
/// value \p Operand.
static void printOperand(raw_ostream &OS, uint8_t Opcode, unsigned OperandIdx,
uint64_t Operand, uint64_t CodeAlignmentFactor,
int64_t DataAlignmentFactor) {
assert(OperandIdx < 2);
OperandType Type = OpTypes[Opcode][OperandIdx];
switch (Type) {
case OT_Unset:
OS << " Unsupported " << (OperandIdx ? "second" : "first") << " operand to";
if (const char *OpcodeName = CallFrameString(Opcode))
OS << " " << OpcodeName;
else
OS << format(" Opcode %x", Opcode);
break;
case OT_None:
break;
case OT_Address:
OS << format(" %" PRIx64, Operand);
break;
case OT_Offset:
// The offsets are all encoded in a unsigned form, but in practice
// consumers use them signed. It's most certainly legacy due to
// the lack of signed variants in the first Dwarf standards.
OS << format(" %+" PRId64, int64_t(Operand));
break;
case OT_FactoredCodeOffset: // Always Unsigned
if (CodeAlignmentFactor)
OS << format(" %" PRId64, Operand * CodeAlignmentFactor);
else
OS << format(" %" PRId64 "*code_alignment_factor" , Operand);
break;
case OT_SignedFactDataOffset:
if (DataAlignmentFactor)
OS << format(" %" PRId64, int64_t(Operand) * DataAlignmentFactor);
else
OS << format(" %" PRId64 "*data_alignment_factor" , int64_t(Operand));
break;
case OT_UnsignedFactDataOffset:
if (DataAlignmentFactor)
OS << format(" %" PRId64, Operand * DataAlignmentFactor);
else
OS << format(" %" PRId64 "*data_alignment_factor" , Operand);
break;
case OT_Register:
OS << format(" reg%" PRId64, Operand);
break;
case OT_Expression:
OS << " expression";
break;
}
}
void FrameEntry::dumpInstructions(raw_ostream &OS) const {
uint64_t CodeAlignmentFactor = 0;
int64_t DataAlignmentFactor = 0;
const CIE *Cie = dyn_cast<CIE>(this);
if (!Cie)
Cie = cast<FDE>(this)->getLinkedCIE();
if (Cie) {
CodeAlignmentFactor = Cie->getCodeAlignmentFactor();
DataAlignmentFactor = Cie->getDataAlignmentFactor();
}
for (const auto &Instr : Instructions) {
uint8_t Opcode = Instr.Opcode;
if (Opcode & DWARF_CFI_PRIMARY_OPCODE_MASK)
Opcode &= DWARF_CFI_PRIMARY_OPCODE_MASK;
OS << " " << CallFrameString(Opcode) << ":";
for (unsigned i = 0; i < Instr.Ops.size(); ++i)
printOperand(OS, Opcode, i, Instr.Ops[i], CodeAlignmentFactor,
DataAlignmentFactor);
OS << '\n';
}
}
DWARFDebugFrame::DWARFDebugFrame() {
}
DWARFDebugFrame::~DWARFDebugFrame() {
}
static void LLVM_ATTRIBUTE_UNUSED dumpDataAux(DataExtractor Data,
uint32_t Offset, int Length) {
errs() << "DUMP: ";
for (int i = 0; i < Length; ++i) {
uint8_t c = Data.getU8(&Offset);
errs().write_hex(c); errs() << " ";
}
errs() << "\n";
}
void DWARFDebugFrame::parse(DataExtractor Data) {
uint32_t Offset = 0;
DenseMap<uint32_t, CIE *> CIEs;
while (Data.isValidOffset(Offset)) {
uint32_t StartOffset = Offset;
bool IsDWARF64 = false;
uint64_t Length = Data.getU32(&Offset);
uint64_t Id;
if (Length == UINT32_MAX) {
// DWARF-64 is distinguished by the first 32 bits of the initial length
// field being 0xffffffff. Then, the next 64 bits are the actual entry
// length.
IsDWARF64 = true;
Length = Data.getU64(&Offset);
}
// At this point, Offset points to the next field after Length.
// Length is the structure size excluding itself. Compute an offset one
// past the end of the structure (needed to know how many instructions to
// read).
// TODO: For honest DWARF64 support, DataExtractor will have to treat
// offset_ptr as uint64_t*
uint32_t EndStructureOffset = Offset + static_cast<uint32_t>(Length);
// The Id field's size depends on the DWARF format
Id = Data.getUnsigned(&Offset, IsDWARF64 ? 8 : 4);
bool IsCIE = ((IsDWARF64 && Id == DW64_CIE_ID) || Id == DW_CIE_ID);
if (IsCIE) {
// Note: this is specifically DWARFv3 CIE header structure. It was
// changed in DWARFv4. We currently don't support reading DWARFv4
// here because LLVM itself does not emit it (and LLDB doesn't
// support it either).
uint8_t Version = Data.getU8(&Offset);
const char *Augmentation = Data.getCStr(&Offset);
uint64_t CodeAlignmentFactor = Data.getULEB128(&Offset);
int64_t DataAlignmentFactor = Data.getSLEB128(&Offset);
uint64_t ReturnAddressRegister = Data.getULEB128(&Offset);
auto Cie = make_unique<CIE>(StartOffset, Length, Version,
StringRef(Augmentation), CodeAlignmentFactor,
DataAlignmentFactor, ReturnAddressRegister);
CIEs[StartOffset] = Cie.get();
Entries.emplace_back(std::move(Cie));
} else {
// FDE
uint64_t CIEPointer = Id;
uint64_t InitialLocation = Data.getAddress(&Offset);
uint64_t AddressRange = Data.getAddress(&Offset);
Entries.emplace_back(new FDE(StartOffset, Length, CIEPointer,
InitialLocation, AddressRange,
CIEs[CIEPointer]));
}
Entries.back()->parseInstructions(Data, &Offset, EndStructureOffset);
if (Offset != EndStructureOffset) {
std::string Str;
raw_string_ostream OS(Str);
OS << format("Parsing entry instructions at %lx failed", StartOffset);
report_fatal_error(Str);
}
}
}
void DWARFDebugFrame::dump(raw_ostream &OS) const {
OS << "\n";
for (const auto &Entry : Entries) {
Entry->dumpHeader(OS);
Entry->dumpInstructions(OS);
OS << "\n";
}
}
| [
"amo260@gmail.com"
] | amo260@gmail.com |
6abf6227d890fad8a0906312eb37109426622ba4 | c465968827df5b1b716f3ba2e3c3628985b8f125 | /src/Cubpack++/Code/E2interf.cpp | e163886808fe1474d7a2e55698f73b2c34359ca2 | [] | no_license | F-Feng/ResearchCode | 17a5733574c7169b08f671892ea02522b818bd66 | f0fa4d949c500d1c3e8d76a0102116f216b7b244 | refs/heads/master | 2021-06-11T03:29:30.082341 | 2015-09-04T14:58:57 | 2015-09-04T14:58:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,475 | cpp | /////////////////////////////////////////////////////////
// //
// Cubpack++ //
// //
// A Package For Automatic Cubature //
// //
// Authors : Ronald Cools //
// Dirk Laurie //
// Luc Pluym //
// //
/////////////////////////////////////////////////////////
///////////
//File E2interf.c
// History:
// (date) (version)
// 19 Aug 1994 V0.1 (first limited distribution)
// 25 Jun 1996 V0.2 (detect degenerate regions)
// 1 Aug 1996 V1.0 (paper accepted by ACM TOMS)
////////////////
#include "E2interf.h"
#include "E2adapt.h"
///////////////////////
PLANE::PLANE()
{
StoreAtomic(new Plane,new PlaneAdaptive);
}
//////////////////////////////////////////////
PLANE::PLANE(const Point& Center)
{
StoreAtomic(new Plane(Center),new PlaneAdaptive);
}
//////////////////////////////////////////////
PLANE::PLANE(const Point& Center, real ScaleX, real ScaleY)
{
Error((ScaleX <= 0)||(ScaleY <= 0),"A PLANE has zero or negative Scale.");
StoreAtomic(new Plane(Center,ScaleX, ScaleY),new PlaneAdaptive);
}
///////////////////////////////////////////////
| [
"Kyle@melissa7.wei.com"
] | Kyle@melissa7.wei.com |
b745c6a66ee0580393dc83807fa99027e361e7f5 | 99f1550e0a3c2e21088e2ffc72bc5dadabb1188f | /ui/UISDK/Src/Base/Message/imessage.cpp | d478cabd00058be048e24ccc4528b3b0c6158ebd | [] | no_license | flymolon/UI2017 | 0d0bb1c173e015e7fe26ada47358b4581f3b0e29 | e7182b19d9227abe6d3f91600e85d13c85917e71 | refs/heads/master | 2020-04-11T01:42:49.336393 | 2017-02-12T04:15:19 | 2017-02-12T04:15:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,320 | cpp | #include "stdafx.h"
#include "message.h"
namespace UI
{
IMessage::IMessage(E_BOOL_CREATE_IMPL b)
{
if (b)
m_pImpl = new Message(this);
else
m_pImpl = NULL;
}
IMessage::~IMessage()
{
SAFE_DELETE(m_pImpl);
}
Message* IMessage::GetImpl()
{
return m_pImpl;
}
BOOL IMessage::ProcessMessage(UIMSG* pMsg, int nMsgMapID, bool bDoHook)
{
UI::UIMSG* pOldMsg = NULL;
if (m_pImpl)
pOldMsg = m_pImpl->GetCurMsg();
BOOL bRet = virtualProcessMessage(pMsg, nMsgMapID, bDoHook);
if (m_pImpl)
m_pImpl->SetCurMsg(pOldMsg);
return bRet;
}
void IMessage::Release()
{
this->virtual_delete_this();
}
BOOL IMessage::IsMsgHandled()const
{
return m_pImpl->IsMsgHandled();
}
void IMessage::SetMsgHandled(BOOL b)
{
m_pImpl->SetMsgHandled(b);
}
UIMSG* IMessage::GetCurMsg()
{
return m_pImpl->GetCurMsg();
}
void IMessage::SetCurMsg(UIMSG* p)
{
m_pImpl->SetCurMsg(p);
}
BOOL IMessage::DoHook(UIMSG* pMsg, int nMsgMapID)
{
return m_pImpl->DoHook(pMsg, nMsgMapID);
}
BOOL IMessage::virtualProcessMessage(UIMSG* pMsg, int nMsgMapID, bool bDoHook)
{
return FALSE;
}
void IMessage::virtual_delete_this()
{
delete this;
}
// BOOL IMessage::DoHook(UIMSG* pMsg, int nMsgMapID)
// {
// return m_pImpl->DoHook(pMsg, nMsgMapID);
// }
void IMessage::ClearNotify()
{
return m_pImpl->ClearNotify();
}
void IMessage::SetNotify(IMessage* pObj, int nMsgMapID)
{
return m_pImpl->SetNotify(pObj, nMsgMapID);
}
void IMessage::CopyNotifyTo(IMessage* pObjCopyTo)
{
if (NULL == pObjCopyTo)
return;
return m_pImpl->CopyNotifyTo(pObjCopyTo);
}
long IMessage::DoNotify(UIMSG* pMsg)
{
return m_pImpl->DoNotify(pMsg);
}
IMessage* IMessage::GetNotifyObj()
{
return m_pImpl->GetNotifyObj();
}
void IMessage::AddHook(IMessage* pObj, int nMsgMapIDToHook, int nMsgMapIDToNotify )
{
if (NULL == pObj)
return;
return m_pImpl->AddHook(pObj/*->GetMessageImpl()*/, nMsgMapIDToHook, nMsgMapIDToNotify);
}
void IMessage::RemoveHook(IMessage* pObj, int nMsgMapIDToHook, int nMsgMapIDToNotify )
{
if (NULL == pObj)
return;
return m_pImpl->RemoveHook(pObj/*->GetMessageImpl()*/, nMsgMapIDToHook, nMsgMapIDToNotify);
}
void IMessage::RemoveHook(IMessage* pObj)
{
if (!pObj)
return;
return m_pImpl->RemoveHook(pObj/*->GetMessageImpl()*/);
}
void IMessage::ClearHook()
{
return m_pImpl->ClearHook();
}
void IMessage::AddDelayRef(void** pp)
{
if (!m_pImpl)
{
m_pImpl = new Message(this);
}
return m_pImpl->AddDelayRef(pp);
}
void IMessage::RemoveDelayRef(void** pp)
{
if (m_pImpl)
m_pImpl->RemoveDelayRef(pp);
}
void* IMessage::QueryInterface(REFIID iid)
{
return (void*)UISendMessage(this, UI_MSG_QUERYINTERFACE, (WPARAM)&iid);
}
MessageProxy::MessageProxy(IMessage* p)
: m_pImpl(p->GetImpl())
{
}
MessageProxy::~MessageProxy()
{
}
BOOL MessageProxy::IsMsgHandled()const
{
return m_pImpl->IsMsgHandled();
}
void MessageProxy::SetMsgHandled(BOOL b)
{
return m_pImpl->SetMsgHandled(b);
}
UIMSG* MessageProxy::GetCurMsg()
{
return m_pImpl->GetCurMsg();
}
void MessageProxy::SetCurMsg(UIMSG* p)
{
m_pImpl->SetCurMsg(p);
}
BOOL MessageProxy::DoHook(UIMSG* pMsg, int nMsgMapID)
{
return m_pImpl->DoHook(pMsg, nMsgMapID);
}
} | [
"libo30@lenovo.com"
] | libo30@lenovo.com |
c4d969f43ed693d96d7f3f6a4063241d6d88f7da | 90c95fd7a5687b1095bf499892b8c9ba40f59533 | /sprout/math/not_equal_to.hpp | 7a75c183127cad2dbd0a3f1f4c73b056ecd05dff | [
"BSL-1.0"
] | permissive | CreativeLabs0X3CF/Sprout | af60a938fd12e8439a831d4d538c4c48011ca54f | f08464943fbe2ac2030060e6ff20e4bb9782cd8e | refs/heads/master | 2021-01-20T17:03:24.630813 | 2016-08-15T04:44:46 | 2016-08-15T04:44:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,058 | hpp | /*=============================================================================
Copyright (c) 2011-2016 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_MATH_NOT_EQUAL_TO_HPP
#define SPROUT_MATH_NOT_EQUAL_TO_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/math/equal_to.hpp>
#include <sprout/type_traits/enabler_if.hpp>
namespace sprout {
namespace math {
//
// not_equal_to
//
template<
typename T, typename U,
typename sprout::enabler_if<std::is_arithmetic<T>::value && std::is_arithmetic<U>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR bool
not_equal_to(T x, U y) {
return !sprout::math::equal_to(x, y);
}
} // namespace math
} // namespace sprout
#endif // #ifndef SPROUT_MATH_NOT_EQUAL_TO_HPP
| [
"bolero.murakami@gmail.com"
] | bolero.murakami@gmail.com |
6788bd59c3d185ed6a885843aaa7cb4d35488af0 | cf31cf192c3ebba2b180fd0d5385c6ca0a76acf3 | /LogMaker/FunctionTracer/call_cust.cpp | d9bb67489635527a24a128b400fe0e65ec2fb473 | [
"MIT"
] | permissive | pranjalsingh008/secREtary | fe0a66249589b7344096f49d68b954ac23750dc1 | c590085c1883a45103b7d8d075b3af75a54ef6fc | refs/heads/master | 2023-03-23T21:53:15.720718 | 2021-03-18T05:12:35 | 2021-03-18T05:12:35 | 255,242,523 | 0 | 0 | MIT | 2020-04-13T05:49:35 | 2020-04-13T05:49:34 | null | UTF-8 | C++ | false | false | 7,573 | cpp |
#include "pin.H"
#include <iostream>
#include <fstream>
/* ===================================================================== */
/* Global Variables */
/* ===================================================================== */
std::ofstream TraceFile;
std::vector<string> calls_list;
std::map<std::string, int> countMap;
/* ===================================================================== */
/* Commandline Switches */
/* ===================================================================== */
KNOB<string> KnobOutputFile(KNOB_MODE_WRITEONCE, "pintool", "o", "calltrace.out", "specify trace file name");
KNOB<BOOL> KnobPrintArgs(KNOB_MODE_WRITEONCE, "pintool", "a", "0", "print call arguments ");
KNOB<BOOL> KnobAllCalls(KNOB_MODE_WRITEONCE, "pintool", "c", "0", "print all calls ");
/* ===================================================================== */
/* Print Help Message */
/* ===================================================================== */
INT32 Usage()
{
cerr << "This tool produces a call trace." << endl << endl;
cerr << KNOB_BASE::StringKnobSummary() << endl;
return -1;
}
string invalid = "$";
/* ===================================================================== */
const string *Target2String(ADDRINT target)
{
string name = RTN_FindNameByAddress(target);
if (name == "")
return &invalid;
else
return new string(name);
}
/* ===================================================================== */
VOID do_call_args(const string *s, ADDRINT arg0)
{
TraceFile << *s << "(" << arg0 << ",...)" << endl;
}
/* ===================================================================== */
VOID do_call_args_indirect(ADDRINT target, BOOL taken, ADDRINT arg0)
{
if( !taken ) return;
const string *s = Target2String(target);
do_call_args(s, arg0);
if (s != &invalid)
delete s;
}
/* ===================================================================== */
VOID do_call(const string *s)
{
// Here we check for _Exit because that's the last call happening before the binary teminates.
if(*s != "_Exit")
calls_list.push_back(*s);
else if(*s == "_Exit"){
for(unsigned int i = 0; i < calls_list.size();i++)
{
string ser = calls_list[i];
//Switch cases for parsing the list we have
switch (ser[0])
{
case '.':
break;
case '_':
break;
case '$':
break;
case '(':
break;
case '#':
break;
case '@':
break;
default:
//cout << ser[0] << endl;
//TraceFile << ser << endl;
auto result = countMap.insert(std::pair<std::string, int>(ser, 1));
if (result.second == false)
result.first->second++;
break;
}
}
if ( std::find(calls_list.begin(), calls_list.end(), "ptrace@plt") != calls_list.end() )
{
cout << "================Analysis Complete================"<<endl;
cout << "PTRACE detected" <<endl;
cout << "======================Stats ====================="<<endl;
}
for (auto & elem : countMap){
// If frequency count is greater than 1 then its a duplicate element
if (elem.second >= 1){
std::cout << elem.first << " was called " << elem.second << " times."<< std::endl;
}
}
}
}
/* ===================================================================== */
VOID do_call_indirect(ADDRINT target, BOOL taken)
{
if( !taken ) return;
const string *s = Target2String(target);
do_call( s );
if (s != &invalid)
delete s;
}
/* ===================================================================== */
VOID Trace(TRACE trace, VOID *v)
{
const BOOL print_args = KnobPrintArgs.Value();
for (BBL bbl = TRACE_BblHead(trace); BBL_Valid(bbl); bbl = BBL_Next(bbl))
{
INS tail = BBL_InsTail(bbl);
if( INS_IsCall(tail) )
{
if( INS_IsDirectBranchOrCall(tail) )
{
const ADDRINT target = INS_DirectBranchOrCallTargetAddress(tail);
if( print_args )
{
INS_InsertPredicatedCall(tail, IPOINT_BEFORE, AFUNPTR(do_call_args),
IARG_PTR, Target2String(target), IARG_FUNCARG_CALLSITE_VALUE, 0, IARG_END);
}
else
{
INS_InsertPredicatedCall(tail, IPOINT_BEFORE, AFUNPTR(do_call),
IARG_PTR, Target2String(target), IARG_END);
}
}
else
{
if( print_args )
{
INS_InsertCall(tail, IPOINT_BEFORE, AFUNPTR(do_call_args_indirect),
IARG_BRANCH_TARGET_ADDR, IARG_BRANCH_TAKEN, IARG_FUNCARG_CALLSITE_VALUE, 0, IARG_END);
}
else
{
INS_InsertCall(tail, IPOINT_BEFORE, AFUNPTR(do_call_indirect),
IARG_BRANCH_TARGET_ADDR, IARG_BRANCH_TAKEN, IARG_END);
}
}
}
else
{
// sometimes code is not in an image
RTN rtn = TRACE_Rtn(trace);
// also track stup jumps into share libraries
if( RTN_Valid(rtn) && !INS_IsDirectBranchOrCall(tail) && ".plt" == SEC_Name( RTN_Sec( rtn ) ))
{
if( print_args )
{
INS_InsertCall(tail, IPOINT_BEFORE, AFUNPTR(do_call_args_indirect),
IARG_BRANCH_TARGET_ADDR, IARG_BRANCH_TAKEN, IARG_FUNCARG_CALLSITE_VALUE, 0, IARG_END);
}
else
{
INS_InsertCall(tail, IPOINT_BEFORE, AFUNPTR(do_call_indirect),
IARG_BRANCH_TARGET_ADDR, IARG_BRANCH_TAKEN, IARG_END);
}
}
}
}
}
/* ===================================================================== */
VOID Fini(INT32 code, VOID *v)
{
TraceFile << "# eof" << endl;
TraceFile.close();
}
/* ===================================================================== */
/* Main */
/* ===================================================================== */
int main(int argc, char *argv[])
{
PIN_InitSymbols();
if( PIN_Init(argc,argv) )
{
return Usage();
}
TraceFile.open(KnobOutputFile.Value().c_str());
TraceFile << hex;
TraceFile.setf(ios::showbase);
string trace_header = string("#\n"
"# Call Trace Generated By Pin\n"
"#\n");
TraceFile.write(trace_header.c_str(),trace_header.size());
TRACE_AddInstrumentFunction(Trace, 0);
PIN_AddFiniFunction(Fini, 0);
// Never returns
PIN_StartProgram();
return 0;
}
/* ===================================================================== */
/* eof */
/* ===================================================================== */
| [
"kssuraj15@gmail.com"
] | kssuraj15@gmail.com |
9006a4faa45ebc490ef330fc34675fb7ad654667 | 9919439e5f02eb2d219929a10d43ab72a603c299 | /helpers.h | 7f15596d3f7ab6f036b0dc6376c9777f6cabd12a | [] | no_license | maneyko/leetcode | 9b23dd0774ce1276c9b8cd45b8a5dbd1f13473f0 | 51696526120306917e751403d0bd575819d0bab7 | refs/heads/master | 2020-05-25T01:11:36.142689 | 2019-06-03T02:31:53 | 2019-06-03T02:31:53 | 187,548,100 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 997 | h | #ifndef HELPERS_H
#define HELPERS_H
#include <iostream>
#include <vector>
using std::cout;
using std::endl;
using std::vector;
void print_ivec(vector<int>& vec) {
cout << "[";
for (int i = 0; i < vec.size(); i++) {
cout << vec[i];
if (i < vec.size()-1)
cout << ", ";
else
cout << "]" << endl;
}
}
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
ListNode* create_SLL(vector<int>& vec) {
ListNode *head = new ListNode(vec[0]);
ListNode *l_iter = head;
for (int i = 1; i < vec.size(); i++) {
l_iter->next = new ListNode(vec[i]);
l_iter = l_iter->next;
}
return head;
}
void print_SLL(ListNode* l1) {
ListNode *l1_iter = l1;
cout << "(";
while (l1_iter) {
cout << l1_iter->val;
if (l1_iter->next)
cout << " -> ";
else
cout << ")" << endl;
l1_iter = l1_iter->next;
}
}
#endif
| [
"pmaneyko@gmail.com"
] | pmaneyko@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.